https://i.sstatic.net/PbWJf.png
The issue at hand is clear. Even when the user clicks outside of the checkbox, it will still alter the box value.
The objective is to eliminate that gap.
<FormControlLabel
style={{ height: "25px" }}
control={<Checkbox size="small" style={{ width: "20px" }} />}
label={
<Box component="div" fontSize={10}>
label
</Box>
}
/>
It should be noted that the width: "20px"
does not have any impact.