27 lines
511 B
TypeScript
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',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|