type ArrowProps = { direction: 'left' | 'right', onClick?: () => void } export const Arrow = ({ direction, onClick }: ArrowProps) => { return ( ) }