import { styled } from "@mui/material"; export const SideMenuContentPanel = styled('div')(({ theme }) => ({ width: '100%', height: '100%', overflowX: 'hidden', overflowY: 'auto', backgroundColor: theme.palette.background.paper, "& .MuiAccordion-root": { boxShadow: 'none !important', minWidth: '254px !important', } })) export const SideMenuContentChildren = styled('div')(() => ({ padding: '0px 20px', }))