pnpm dlx shadcn@latest add @saturation/toggle-groupimport {
ToggleGroup,
ToggleGroupItem,
} from "@/components/ui/toggle-group"<ToggleGroup type="single">
<ToggleGroupItem value="a">A</ToggleGroupItem>
<ToggleGroupItem value="b">B</ToggleGroupItem>
</ToggleGroup>| Prop | Type | Default | Description |
|---|---|---|---|
type* | "single" | "multiple" | — | Whether single or multiple items can be pressed. |
value | string | string[] | — | The controlled value. |
onValueChange | (value: string | string[]) => void | — | Event handler for value changes. |