npm install @thrivecart/uiyarn add @thrivecart/uipnpm add @thrivecart/uibun add @thrivecart/uiimport { RadioGroup, Radio } from '@thrivecart/ui';Simple radio group with options
<RadioGroup defaultValue="email">
<Radio value="email" label="Email" />
<Radio value="sms" label="SMS" />
<Radio value="push" label="Push Notification" />
</RadioGroup>Pre-select the most common option to reduce user effort.
Radio buttons work best when all options are visible without scrolling.
For yes/no, on/off choices, use a Checkbox or Switch instead.
If there are more than 5-7 options, use a Select dropdown.
role="radiogroup" on the container.