22 lines
435 B
TypeScript
Executable File
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|