mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 00:05:07 +00:00
20 lines
379 B
TypeScript
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
|