2024-02-18 01:44:48 -05:00

20 lines
379 B
TypeScript

// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Menu = (theme: Theme) => {
return {
MuiMenu: {
styleOverrides: {
root: {
'& .MuiMenu-paper': {
borderRadius: 5,
boxShadow: theme.palette.mode === 'light' ? theme.shadows[8] : theme.shadows[9]
}
}
}
}
}
}
export default Menu