14 lines
421 B
Plaintext
14 lines
421 B
Plaintext
|
|
<FormControl>
|
||
|
|
<FormLabel>Focus</FormLabel>
|
||
|
|
<RadioGroup name="radio-buttons-group-focus">
|
||
|
|
<Radio value="default" label="Default" />
|
||
|
|
<Radio
|
||
|
|
value="relative"
|
||
|
|
label="Position relative"
|
||
|
|
sx={{ [`& .${radioClasses.radio}`]: { position: 'relative' } }}
|
||
|
|
/>
|
||
|
|
</RadioGroup>
|
||
|
|
<FormHelperText>
|
||
|
|
Select an option and use keyboard ↑↓ to see the focus outline
|
||
|
|
</FormHelperText>
|
||
|
|
</FormControl>
|