EnteDrawer.tsx 263 B

12345678910
  1. import { Drawer, styled } from "@mui/material";
  2. export const EnteDrawer = styled(Drawer)(({ theme }) => ({
  3. "& .MuiPaper-root": {
  4. maxWidth: "375px",
  5. width: "100%",
  6. scrollbarWidth: "thin",
  7. padding: theme.spacing(1),
  8. },
  9. }));