ComponentsRadioRadio Radio inputs allow users to select one option from a list. It should be used inside a RadioGroup component. PreviewCodeSwitch themeMutedBaseCopy codeRadio groupOption 1Option 2Option 3import { Radio, RadioGroup } from '@vtex/shoreline' export default function Example() { return ( <RadioGroup label="Radio group"> <Radio value="1">Option 1</Radio> <Radio value="2">Option 2</Radio> <Radio value="3">Option 3</Radio> </RadioGroup> ) } Required props valueThe value of the radiotypestringdefaultnull Optional props errorWether is disabledtypebooleandefaultfalsePopoverTriggerBest Practices