Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

21 wiersze
501 B

  1. // ==============================|| OVERRIDES - FormHelperText ||============================== //
  2. export default function FormHelperText() {
  3. const fontSize = "1rem"
  4. const fontWeight = 600
  5. const lineHeight = 1
  6. return {
  7. MuiFormHelperText: {
  8. styleOverrides: {
  9. root: {
  10. fontSize: fontSize,
  11. fontWeight: fontWeight,
  12. lineHeight: lineHeight,
  13. },
  14. }
  15. }
  16. };
  17. }