Files
aso/frontend/client-portal/src/theme/overrides/SvgIcon.ts
2022-11-03 09:51:22 +07:00

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