import Typography from '@mui/material/Typography'; import {useTheme} from '@mui/material/styles'; import Button from '@mui/material/Button'; import Box from '@mui/material/Box'; interface Props { Icon: JSX.Element; title: string; onClick: () => void; active: boolean; } const DrawerMenuItem = ({Icon, title, onClick, active}: Props) => { const theme = useTheme(); return ( ); }; export default DrawerMenuItem;