Files
aso/frontend/dashboard/src/theme/overrides/ControlLabel.ts
Linksehat Staging Server ce024c2bcd merge
2023-05-08 08:50:15 +07:00

30 lines
579 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function ControlLabel(theme: Theme) {
return {
MuiFormControlLabel: {
styleOverrides: {
label: {
...theme.typography.body2
}
}
},
MuiFormHelperText: {
styleOverrides: {
root: {
marginTop: theme.spacing(1)
}
}
},
MuiFormLabel: {
styleOverrides: {
root: {
color: theme.palette.text.disabled
}
}
}
};
}