Utility
Terminal
█
checkbox-group-demo █
Loading preview... █
█
█
█
█
█
█
█
█
█
█
█
█
█
█
█Installation
$ pnpm dlx shadcn@latest add @termcn/opentui/checkbox-group
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 | - |
options | CheckboxGroupOption[] | required |
value | string[] | - |
onChange | (values: string[]) => void | - |
min | number | - |
max | number | - |