23 lines
461 B
TypeScript
Executable File
23 lines
461 B
TypeScript
Executable File
import { Theme } from '@mui/material/styles';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export default function SvgIcon(theme: Theme) {
|
|
return {
|
|
MuiSvgIcon: {
|
|
styleOverrides: {
|
|
fontSizeSmall: {
|
|
width: 20,
|
|
height: 20,
|
|
fontSize: 'inherit'
|
|
},
|
|
fontSizeLarge: {
|
|
width: 32,
|
|
height: 32,
|
|
fontSize: 'inherit'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|