diff --git a/src/components/NextBtn.tsx b/src/components/NextBtn.tsx new file mode 100644 index 0000000..48a4c46 --- /dev/null +++ b/src/components/NextBtn.tsx @@ -0,0 +1,17 @@ +import twFocusClass from "@/utils/twFocusClass"; +import React, { ButtonHTMLAttributes, FC } from "react"; + +interface Props extends ButtonHTMLAttributes {} + +const NextBtn: FC = ({ className = "w-10 h-10 text-lg", ...args }) => { + return ( + + ); +}; + +export default NextBtn;