MuiRadioGroup#

@palmyralabs/rt-forms-mui · form/MuiRadioGroup.tsx

Overview#

Grouped radio buttons. MUI RadioGroup + Radio + FormControlLabel.

Props — IRadioGroupDefinition & RadioProps#

Common field props plus:

Prop Type Purpose
options Array<{ value, label }> Radio entries
flexDirection 'row' | 'column'? Layout orientation

Plus MUI RadioProps (color, size, …).

Example#

<MuiRadioGroup
  attribute="delivery"
  label="Delivery option"
  flexDirection="row"
  options={[
    { value: 'STANDARD',  label: 'Standard (3–5 days)' },
    { value: 'EXPRESS',   label: 'Express (1–2 days)' },
    { value: 'OVERNIGHT', label: 'Overnight' },
  ]}
/>