npm install @marmoui/uiyarn add @marmoui/uipnpm add @marmoui/uibun add @marmoui/uiimport { RadioGroup, Radio } from '@marmoui/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.