// ==============================|| OVERRIDES - CHECKBOX ||============================== // export default function Checkbox(theme) { const checkboxSize = "2rem" return { MuiCheckbox: { styleOverrides: { root: { color: theme.palette.secondary[300], svg: { width: checkboxSize, height: checkboxSize, } } } } }; }