Files
aso/frontend/hospital-portal/src/theme/overrides/Radio.ts
2026-02-04 14:39:20 +07:00

22 lines
435 B
TypeScript

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
}
}
}
}
}
};
}