Vertical and horizontal
The same group, two orientations. An error string adds a helper line under the group.
tsx
<RadioGroup
label="Plan"
name="plan"
defaultValue="growth"
options={[
{ label: 'Starter', value: 'starter' },
{ label: 'Growth', value: 'growth' },
{ label: 'Scale', value: 'scale' },
]}
/>
<RadioGroup label="Billing" name="billing" orientation="horizontal"
options={[{ label: 'Monthly', value: 'm' }, { label: 'Yearly', value: 'y' }]} />