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

19 lines
398 B
TypeScript

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Typography(theme: Theme) {
return {
MuiTypography: {
styleOverrides: {
paragraph: {
marginBottom: theme.spacing(2)
},
gutterBottom: {
marginBottom: theme.spacing(1)
}
}
}
};
}