Form controls
Checkbox, Switch, and RadioGroup for boolean and single-choice fields.
Primitives · fixture-only
Switch for settings toggles
Switch for on/off preferences that take effect immediately — not form submission.
Workshop: Settings pages, feature flags, notification preferences.
Fixture data only — behaviour matches production chrome
RadioGroup for exclusive choice
RadioGroup when exactly one option must be selected from a small set.
Workshop: Export format picker, approval decision type, density mode.
Avoid: RadioGroup for boolean fields — use Switch or Checkbox instead.
Fixture data only — behaviour matches production chrome
Checkbox
Boolean fields — checked, unchecked, and disabled.
Switch
On/off toggles for settings and feature flags.
States
RadioGroup
Single-choice fields — mutually exclusive options.