Files
react-test/docs/data/joy/components/radio-button/RadioFocus.tsx.preview

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
421 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<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>