@cebus/react-radio
v0.0.1
Published
A radio button component that allows a user to select a single option from a set.
Downloads
16
Readme
RadioButton
The RadioButton component allows a user to select a single option from a set.
Use
- Install the @cebus/react-radio component.
Using NPM
npm install @cebus/react-radio
Using Yarn
yarn add @cebus/react-radio
Install the @cebus/react-provider and our theme tokens from @cebus/react-theme
Set up the provider in your app:
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}
- Integrate the Radio component.
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
import { RadioRadioGroupList, Radio } from '@cebus/react-radio'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<RadioGroup>
<Radio value="1" label="Value 1" />
<Radio value="2" label="Value 2" />
<Radio value="3" label="Value 3" />
</RadioGroup>
<Provider>
)
}
API
The Radio API extends off of FluentUI.