import { Drawer, Title } from '@mantine/core'; import { DashboardSidebar } from '../../Wrappers/Sidebar/Sidebar'; interface MobileRibbonSidebarDrawerProps { onClose: () => void; opened: boolean; location: 'left' | 'right'; } export const MobileRibbonSidebarDrawer = ({ location, ...props }: MobileRibbonSidebarDrawerProps) => ( {location} sidebar} style={{ display: 'flex', justifyContent: 'center', }} {...props} > );