Radio Group

Installation
PNPM
pnpm add @leafygreen-ui/radio-group
Yarn
yarn add @leafygreen-ui/radio-group
NPM
npm install @leafygreen-ui/radio-group
Example
import { Radio, RadioGroup } from '@leafygreen-ui/radio-group';
<RadioGroup
className="my-radio-group"
variant="default"
onChange={event => console.log('hi')}
value="option-1"
name="name-of-input-group"
>
<Radio className="my-radio" value="option-1">
Label Text Goes Here
</Radio>
</RadioGroup>;
Properties
darkMode | boolean | Determines whether or not the component appears in dark mode | false |
name | string | Sets the name of the input group | |
value | string, number | Sets the radio that will appear checked on page load, also makes the component a controlled component | |
className | string | Adds a className to the root element. | '' |
onChange | function | The event handler function for the 'onchange' event. Receives the associated event object as the first argument. | () => {} |
children | node | Can be any node; however, any <Radio /> components, will be treated as belonging to the <RadioGroup /> compound component, and will receive internal state from <RadioGroup /> | |
size | 'xsmall', 'small', 'default' | Sets the size for the Radios. Use of xsmall should be limited to only Charts | default |
Any other properties will be spread on the root element.
Radio
Example
<Radio className="my-radio" value="option-1" disabled={true}>
Label Text Goes Here
</Radio>
Properties
value (Required) | string, number | Every <Radio /> needs a value prop. | |
className | string | Adds a className to the label | '' |
disabled | boolean | Indicates whether or not the radio can be clicked by a user | false |
children | node | Text that appears adjacent to the radio input; label text. | |
default | boolean | If <RadioGroup /> is uncontrolled, the default property makes this Radio checked on the initial render. | |
checked | boolean | Determines if <Radio /> will appear checked | false |
| ... | native input attributes | Any other props will be spread on the root input element | |