Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
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. }