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