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

22 lines
435 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Radio(theme: Theme) {
return {
MuiRadio: {
styleOverrides: {
root: {
padding: theme.spacing(1),
svg: {
fontSize: 24,
'&[font-size=small]': {
fontSize: 20
}
}
}
}
}
};
}