mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
19 lines
310 B
TypeScript
19 lines
310 B
TypeScript
// ** MUI Imports
|
|
import { Theme } from '@mui/material/styles'
|
|
|
|
const Popover = (theme: Theme) => {
|
|
return {
|
|
MuiPopover: {
|
|
styleOverrides: {
|
|
root: {
|
|
'& .MuiPopover-paper': {
|
|
boxShadow: theme.shadows[6]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Popover
|