RadioButtonGroup
Not to be confused with a radio input (opens in a new tab), a RadioButtonGroup lets a user make a temporary, inconsequential selection outside of a normal form. Almost like a tab (opens in a new tab), except without hiding/showing content.
Usage
✅ Good uses of this:
- Altering the display of other elements on the page
- Simple mutually-exlusive filters
❌ DO NOT use this when:
- Collecting form input (use a proper radio (opens in a new tab) or select (opens in a new tab) instead)
- Hiding/showing content (use tabs (opens in a new tab) instead)
- Navigating (use navigation (opens in a new tab) instead)