Toggle Group
A set of two-state buttons that can be toggled on or off.
Made by imskyleenInstallation
When to use
Toggle Group operates as a segmented control, allowing users to filter or adjust the display of content within the current view. Unlike tabs that navigate between distinct content areas, segmented controls modify how existing content is presented. Content is typically shared across different segments, with the control determining what's visible or how it's formatted.
Use Toggle Group when:
- Filtering or adjusting a single content view
- Toggling between different presentations of the same data
- Content is shared across segments (list vs. grid, day vs. week vs. month)
- Making formatting choices (bold, italic, underline)
- The view context remains the same, just filtered or adjusted
Don't use Toggle Group when:
- Navigating between completely different content areas (use Tabs instead)
- Each option shows unique, non-overlapping content
- The interaction triggers a full content change rather than a filter/adjustment
Usage
<ToggleGroup>
<ToggleGroupItem>A</ToggleGroupItem>
<ToggleGroupItem>B</ToggleGroupItem>
<ToggleGroupItem>C</ToggleGroupItem>
</ToggleGroup>Interaction states
A segment is transparent at rest, so it takes the two archetypes from Interaction states according to whether it is the chosen one:
| rest | hover | held | |
|---|---|---|---|
| Unselected | transparent | accent wash | accent-pressed |
| Selected | selected fill | selected-hover | selected-pressed |
The hover is scoped to unselected segments, so the chosen one steps its own fill instead of taking a wash on
top of it. Selection looks the same whether the group is single-select or multiple, and the transition is
colour only — nothing moves, and it is dropped under prefers-reduced-motion.
Examples
Multiple
Outline Variant
The outline variant provides a bordered container around the toggle group, ideal for segmented controls that filter or adjust content.
Attached Mode
Vertical Orientation
Shifting Layout
Each segment paints its own selection, so a group whose surrounding layout resizes between selections has nothing to re-measure and nothing to chase — the selected segment is simply where it was.
Combined with Tabs
This example demonstrates the key difference between tabs (navigation) and toggle groups (filtering). Tabs navigate between different content areas, while toggle groups filter or adjust content within each tab's view.
Props
Registry Props
ToggleGroup
Prop
Type
ToggleGroupItem
Prop
Type
Keyboard interactions
| Key | Action |
|---|---|
Tab into the group | Focus lands on the currently-pressed item, or the first item if none. |
ArrowLeft / ArrowRight | Moves between items (horizontal). |
ArrowUp / ArrowDown | Moves between items (vertical). |
Space / Enter | Toggles the focused item. |
Home / End | Jumps to first / last item. |
Accessibility
- The container carries
role="group"and each item is anaria-pressedtoggle button (Base UI native semantics). - Focus is roving — only one item is tabbable at a time, and arrow keys move focus between items.
- Provide an accessible group label — either
aria-labelonToggleGroupor a visible heading witharia-labelledby— otherwise the purpose of the group isn't announced. - Omit
multiplefor single-selection filters (like/dislike, sort direction) and passmultiplefor independent switches (text formatting, feature flags).value/defaultValueare always arrays.
Credits
- We use Base UI for the toggle group component.
- We take our inspiration from Shadcn UI for the toggle group style.
Recent changes
- v1.2.0Pin shipped dependency floors to the version we develop against. Registry items now declare ranges like `^5.1.9` (the actual installed version) instead of collapsing to `^5.0.0`, so consumers start on the known-tested baseline while caret semantics still allow any compatible release within the same major.#133
- v1.1.0Theme docs refresh, readability pass on semantic foregrounds, and consumer-facing Base UI regression fixes.#121
- v1.0.0Post-Base-UI polish. Public API unchanged.#116
- v1.0.0Migrate every Radix-based primitive to `@base-ui/react@^1.4.0` (Base UI).#114
- v0.3.0Add theme-provider component to the registry with documentation and tests. Includes playground type improvements (export RegistryItem, remove as-const boilerplate) and docs site dark mode border color fix.#109