17 lines
281 B
TypeScript
Raw Normal View History

2024-02-18 01:44:48 -05:00
// ** MUI Imports
import { Theme } from '@mui/material/styles'
const Typography = (theme: Theme) => {
return {
MuiTypography: {
styleOverrides: {
gutterBottom: {
marginBottom: theme.spacing(2)
}
}
}
}
}
export default Typography