Search documentation

Search components and pages

Toggle Group

A set of two-state buttons that can be toggled on or off.

01

Installation

Add the toggle group component with the shadcn CLI.

bash
npx shadcn@latest add https://swiss.ui.unsanity.ai/r/toggle-group.json
02

Usage

tsx
import { ToggleGroup } from "@/components/ui/toggle-group"
03

Examples

Default

import { BoldIcon, ItalicIcon, UnderlineIcon } from "lucide-react"

import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group"

<ToggleGroup defaultValue={["bold"]}>
  <ToggleGroupItem value="bold" aria-label="Bold">
    <BoldIcon />
  </ToggleGroupItem>
  <ToggleGroupItem value="italic" aria-label="Italic">
    <ItalicIcon />
  </ToggleGroupItem>
  <ToggleGroupItem value="underline" aria-label="Underline">
    <UnderlineIcon />
  </ToggleGroupItem>
</ToggleGroup>