import DrawerLib, { DrawerProps as LibDrawerProps } from "@mui/material/Drawer"; import { FC } from "react"; export type DrawerProps = LibDrawerProps; const Drawer: FC = (props) => { return ; }; export default Drawer;