The Radio component is controlled component input field that handles user events.
For more on controlled components [see here](https://reactjs.org/docs/forms.html#controlled-components)

All props, except for `extend`, will be passed through.

### Default example

```jsx live=true
() => {
	const [checked, setChecked] = React.useState(false);
	return <Radio
		checked={checked}
		name="my-radio-group"
		onChange={(e) => {
			setChecked(e.target.checked)
		}}
	/>
}
```
