I'm currently having trouble changing the size of a checkbox to a custom one using Material UI. The code is the following
<Checkbox
label="Check this box"
onChange={() => dispatch(switchCompleted())}
checked={status.showCompleted}
style={{
color: "#00e676",
width: 36,
height: 36
}}
/>
I also tried using size: 'medium' but the size of the checkbox stays small. Does anyone know how to solve this?