You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
638 B
17 lines
638 B
import twFocusClass from "@/utils/twFocusClass";
|
|
import React, { ButtonHTMLAttributes, FC } from "react";
|
|
|
|
interface Props extends ButtonHTMLAttributes<HTMLButtonElement> {}
|
|
|
|
const NextBtn: FC<Props> = ({ className = "w-10 h-10 text-lg", ...args }) => {
|
|
return (
|
|
<button
|
|
className={`NextBtn ${className} bg-white dark:bg-neutral-900 border border-neutral-200 dark:border-neutral-6000 dark:hover:border-neutral-500 rounded-full inline-flex items-center justify-center hover:border-neutral-300 ${twFocusClass()}`}
|
|
{...args}
|
|
>
|
|
<i className="las la-angle-right"></i>
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export default NextBtn;
|