import { IconArrowBarLeft, IconArrowBarRight } from '@tabler/icons-react'; interface Props { onClick: any; side: 'left' | 'right'; } export const CloseSidebarButton = ({ onClick, side }: Props) => { return ( <>
> ); }; export const OpenSidebarButton = ({ onClick, side }: Props) => { return ( ); };