Radio

The Radio component is a UI element that allows users to select one option from a set of mutually exclusive options.

import { RadioProvider } from '@ariakit/react'
import { Radio } from 'welcome-ui/Radio'
const Example = () => {
return (
<RadioProvider defaultValue="one">
<Radio label="One" value="one" />
<Radio label="Two" value="two" />
</RadioProvider>
)
}
export default Example