UNPKG

react-conventions

Version:

An open source set of React components that implement Ambassador's Design and UX patterns.

27 lines (23 loc) 471 B
import React from 'react' import RadioGroup from 'react-conventions/lib/Radio/RadioGroup' const options = [ { value: 'option_1', label: 'Option 1' },{ value: 'option_2', label: 'Option 2' },{ value: 'option_3', label: 'Option 3' } ]; const ExampleRadioLeft = () => ( <RadioGroup label="Radio left label" name="left-radio-group" options={options} labelPosition='left'> </RadioGroup> ) export default ExampleRadioLeft