13 lines
397 B
Plaintext
13 lines
397 B
Plaintext
|
|
<Checkbox
|
||
|
|
label="Fully wrapped"
|
||
|
|
defaultChecked
|
||
|
|
// to demonstrate the focus outline
|
||
|
|
slotProps={{ action: { className: checkboxClasses.focusVisible } }}
|
||
|
|
/>
|
||
|
|
<Checkbox
|
||
|
|
label="Input wrapped"
|
||
|
|
defaultChecked
|
||
|
|
sx={{ [`& > .${checkboxClasses.checkbox}`]: { position: 'relative' } }}
|
||
|
|
// to demonstrate the focus outline
|
||
|
|
slotProps={{ action: { className: checkboxClasses.focusVisible } }}
|
||
|
|
/>
|