17 lines
389 B
TypeScript
17 lines
389 B
TypeScript
import { Theme } from '@mui/material/styles';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export default function Popover(theme: Theme) {
|
|
return {
|
|
MuiPopover: {
|
|
styleOverrides: {
|
|
paper: {
|
|
boxShadow: theme.customShadows.dropdown,
|
|
borderRadius: Number(theme.shape.borderRadius) * 1.5,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|