Files
aso/frontend/dashboard/src/theme/overrides/Typography.ts
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

19 lines
398 B
TypeScript
Executable File

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)
}
}
}
};
}