After importing material-ui into my react app, I was able to change the color and size of a checkbox as shown. However, I am having trouble changing the icon's border radius. How can I achieve this?
import FormGroup from '@mui/material/FormGroup';
import FormControlLabel from '@mui/material/FormControlLabel';
import Checkbox from '@mui/material/Checkbox';
const StyledCheckBox = () => {
return <div>
<FormGroup>
<StyledFormControlLabel
control={
<Checkbox
sx={{
'& .MuiSvgIcon-root': {
fontSize: 70,
borderRadius: 20
}
}}
/>
}
label="Villa"
/>
</FormGroup>
</div>