Files
aso/frontend/hospital-portal/src/theme/overrides/Paper.ts
2026-02-04 14:39:20 +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',
},
},
},
};
}