Segmented Control
Ruled segmented control for mutually exclusive options: mono uppercase segments split by strokes, ink selected segment, yellow hover. Controlled or uncontrolled, typed values.
brutalist/ui/segmented-controlSource
"use client";
import { useRef, useState, type KeyboardEvent, type ReactNode } from "react";
import { cn } from "@/lib/utils";
export interface SegmentedControlOption<T extends string> {
value: T;
label: ReactNode;
}
export interface SegmentedControlProps<T extends string> {
label: string;
options: SegmentedControlOption<T>[];
value?: T;
defaultValue?: T;
onChange?: (value: T) => void;
size?: "sm" | "md";
className?: string;
}
/** Single-choice segmented control (radio group) with arrow-key navigation. */
export function SegmentedControl<T extends string>({ label, options, value, defaultValue, onChange, size = "md", className }: SegmentedControlProps<T>) {
const [inner, setInner] = useState<T | undefined>(defaultValue ?? options[0]?.value);
const current = value ?? inner;
const refs = useRef<(HTMLButtonElement | null)[]>([]);
const select = (v: T) => {
setInner(v);
onChange?.(v);
};
function onKeyDown(e: KeyboardEvent<HTMLDivElement>) {
const delta = e.key === "ArrowRight" || e.key === "ArrowDown" ? 1 : e.key === "ArrowLeft" || e.key === "ArrowUp" ? -1 : 0;
if (!delta) return;
e.preventDefault();
const idx = options.findIndex((o) => o.value === current);
const next = options[(idx + delta + options.length) % options.length];
if (!next) return;
select(next.value);
refs.current[options.indexOf(next)]?.focus();
}
return (
<div role="radiogroup" aria-label={label} onKeyDown={onKeyDown} className={cn("da-stroke inline-flex bg-da-surface text-da-surface-fg shadow-da-sm", className)}>
{options.map((o, i) => {
const checked = o.value === current;
return (
<button
key={o.value}
ref={(el) => {
refs.current[i] = el;
}}
type="button"
role="radio"
aria-checked={checked}
tabIndex={checked ? 0 : -1}
onClick={() => select(o.value)}
className={cn(
"da-focus da-transition flex items-center gap-2 font-da-mono font-bold tracking-da-label uppercase",
size === "sm" ? "h-8 px-3 text-[11px]" : "h-11 px-5 text-xs",
i > 0 && "da-stroke-l",
checked ? "bg-da-fg text-da-bg" : "hover:bg-da-primary hover:text-da-primary-fg",
)}
>
{o.label}
</button>
);
})}
</div>
);
}
export default SegmentedControl;
modules/brutalist/ui/segmented-control/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| label* | string | — | Accessible name of the group. |
| options* | { value: T; label: ReactNode }[] | — | Segments. |
| value / defaultValue | T | — | Controlled / initial value. |
| onChange | (value: T) => void | — | Change handler. |
| size | "sm" | "md" | "md" | Height preset. |
| className | string | — | Classes on the group. |
Other button variants in Brutalist
Button
Pressable button with 6 variants (primary, secondary, ink, outline, ghost, danger), 4 sizes, icons, loading state and link mode (href). Hard shadow collapses on hover/press.
Copy Button
Code field with an attached yellow copy button that flips to green 'Copied' with a check; optional secret masking for API keys and custom display text for commands.
Split Button
Yellow primary action glued to a chevron trigger that opens a ruled dropdown of secondary actions with descriptions (Radix DropdownMenu). Both halves flip to ink on hover.
Button in other art directions
Button
Pill button with 5 variants (primary→accent gradient, frosted glass, solid ink, ghost, danger), 4 sizes, icons, loading state and link mode. Lifts on hover with a slight overshoot.
Icon Button
Round frosted icon button with a tooltip; optional toggle mode (aria-pressed) that swaps the icon and fills with the gradient or danger color — ideal for call controls.
Record Button
Record toggle pill: red dot inside a soft halo that morphs into a stop square with a pulsing ring and a running mm:ss timer while recording.
Shine Button
Gradient pill button with a glossy top highlight and a bright light sweep crossing it on hover or keyboard focus (CSS only); renders an anchor when href is set. Two sizes.
Button
Compact button with 6 variants (indigo primary with inner highlight, ink secondary, outline, ghost, danger, link), 4 sizes, icons, keyboard-shortcut hint, loading state and link mode.
Loading Button
Async action button that morphs through pending (spinner), success (green check) and error (red cross) states, then resets; all labels share one grid cell so the width never jumps.
Shortcut Button
Button displaying its keyboard shortcut as keycaps; pressing the shortcut anywhere on the page clicks it (ignored while typing in a field). Primary, secondary and ghost styles.
Toggle Group
Single-choice segmented toolbar on a muted track with a raised active segment (Radix ToggleGroup): text, icon-only or mixed options, two sizes, controlled or uncontrolled.
Arrow Link
Text link with an ↗ that nudges up-right on hover and an ink underline that wipes in from the left; optional mono index prefix; scales from inline to display size.
Button
Square monochrome button: ink primary, outlined (inverts on hover), ghost and underline (signal-colored underline) variants; three sizes and an optional trailing glyph.
Icon Button
Square icon-only button with a hairline border (darkens on hover), ghost or solid ink variant; required label for aria-label and title.
Text Toggle
Typographic toggle: options are plain mono words separated by slashes; the active one is ink with a signal underline, others muted — radio semantics with arrow keys.
Button
Corporate button: 6px radius, five variants (blue primary, bordered white secondary, ghost, danger, link), three sizes, leading/trailing icons.
Button Group
Attached segmented button group with shared borders (radio semantics) — for period pickers and view switchers. Selected segment gets a surface-2 fill and bold label.
Icon Button
Square icon-only button (secondary, ghost, primary, danger) with required aria-label, title tooltip and optional count/dot badge.
Loading Button
Async action button: idle → spinner + “Processing…” (aria-busy, width locked) → green check “Sent” for 2s → idle. Default simulates a 1.4s payment run.
Arrow Button
Link-button with a round arrow badge at its end: on hover the badge grows and the arrow turns from ↗ to →, a signature call-to-action for the DA.
Button
Soft pill button: sage primary, sage-tint soft, terracotta clay, outlined ink and ghost variants; three sizes, icons, gentle hover.
Icon Button
Round icon-only button in soft sage, sage, cream (with shadow) or ghost; required label used for aria-label and title.
Segmented
Pill segmented control on a sand track: the selected pill is cream with a soft shadow and slides with a sliding indicator; radio semantics with arrow keys.
Button
Friendly pill button: six variants (periwinkle primary, soft lavender, outline, ghost, danger, ink), three sizes, left/right icons, loading spinner and link mode, with a tiny bounce on hover.
Fab
Floating action button: a big round periwinkle “+” that rotates into “×” and fans out labelled pastel speed-dial actions with a staggered bounce; closes on Escape or outside click.
Icon Button
Round pastel icon button in six tones (neutral, peach, mint, lavender, butter, primary) and three sizes, with optional red counter bubble and a springy press.
Toggle Chips
Row of pill toggle chips with emoji; selected chips fill periwinkle and show a popping check. Multiple or single selection, controlled or not.