Estoy usando el elemento Tipografía de Material UI. Tiene una clase css MuiTypography-h1. Quiero que esté deshabilitado en todos los lugares de la base de código, es decir, globalmente.
<Typography variant="h1" sx={{ width: '100px', height: '55px', fontSize: '20px', fontWeight: 500, lineHeight: '1.2', WebkitLineClamp: 4, WebkitBoxOrient: 'vertical', marginTop: '11px', }} > Title </Typography>puede usar makeTheme y luego generar un estilo para todas las etiquetas tipográficas en la aplicación: consulte la documentación aquí: https://mui.com/customization/theming/
import { createMuiTheme } from '@material-ui/core/styles' const theme = createMuiTheme({ typography: { body1: { fontWeight: 500, fontSize: 18, color: "green" } } }) export default theme;