Utility
AI
Terminal
Installation
pnpm dlx shadcn@latest add https://termcn.dev/r/checkbox-group.json
Usage
import { CheckboxGroup } from "@/components/ui/checkbox-group";<CheckboxGroup
label="Select toppings"
options={[
{ value: "cheese", label: "Extra Cheese" },
{ value: "pepperoni", label: "Pepperoni" },
{ value: "mushrooms", label: "Mushrooms" },
]}
onChange={(values) => {}}
/>API Reference
CheckboxGroup
| Prop | Type | Default |
|---|---|---|
label | string | undefined |
options | CheckboxGroupOption[] | required |
value | string[] | undefined |
onChange | (values: string[]) => void | undefined |
min | number | undefined |
max | number | undefined |