type ArrowsProps = { className?: string; prevClassName?: string; nextClassName?: string; onPrev?: () => void; onNext?: () => void; }; const Arrows = ({ className, prevClassName, nextClassName, onPrev, onNext, }: ArrowsProps) => (
); export default Arrows;