import { RadioProps, radioClasses } from '@mui/material/Radio' import { Theme } from '@mui/material/styles' export function radio(theme: Theme): Record { return { // CHECKBOX, RADIO, SWITCH MuiFormControlLabel: { styleOverrides: { label: { ...theme.typography.body2, }, }, }, MuiRadio: { styleOverrides: { root: ({ ownerState }: { ownerState: RadioProps }) => { const { color } = ownerState return { padding: theme.spacing(1), ...(color === 'default' && { [`&.${radioClasses.checked}`]: { color: theme.palette.text.primary, }, }), [`&.${radioClasses.disabled}`]: { color: theme.palette.action.disabled, }, } }, }, }, } }