I am trying to modify the root styles of a Checkbox component, but it is not working as expected. Here is my code:
<CheckboxItem
onChange={()}
checked={isChecked}
label="Show Checkbox"
classes={{ root: classes.checkbox }}
/>
className={{ root: classes.checkbox }}
Unfortunately, I am encountering an error with this approach. Any help would be greatly appreciated. Thank you.