You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 line
414 B

  1. // ==============================|| OVERRIDES - CHECKBOX ||============================== //
  2. export default function Checkbox(theme) {
  3. const checkboxSize = "2rem"
  4. return {
  5. MuiCheckbox: {
  6. styleOverrides: {
  7. root: {
  8. color: theme.palette.secondary[300],
  9. svg: {
  10. width: checkboxSize,
  11. height: checkboxSize,
  12. }
  13. }
  14. }
  15. }
  16. };
  17. }