kcscDev/egovframe-template-simple-r.../src/themes/overrides/Checkbox.js

14 lines
283 B
JavaScript
Raw Normal View History

2024-01-31 07:28:08 +00:00
// ==============================|| OVERRIDES - CHECKBOX ||============================== //
export default function Checkbox(theme) {
return {
MuiCheckbox: {
styleOverrides: {
root: {
color: theme.palette.secondary[300]
}
}
}
};
}