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

14 lines
283 B
JavaScript

// ==============================|| OVERRIDES - CHECKBOX ||============================== //
export default function Checkbox(theme) {
return {
MuiCheckbox: {
styleOverrides: {
root: {
color: theme.palette.secondary[300]
}
}
}
};
}