Files
aso/frontend/dashboard/src/theme/overrides/Paper.ts
2023-07-03 11:39:08 +07:00

27 lines
511 B
TypeScript

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Paper(theme: Theme) {
return {
MuiPaper: {
defaultProps: {
elevation: 0,
},
variants: [
{
props: { variant: 'outlined' },
style: { borderColor: theme.palette.grey[500_12] },
},
],
styleOverrides: {
root: {
backgroundImage: 'none',
},
},
},
};
}