CheckboxGroup
Multiple checkbox selection component.
Usage
<CheckboxGroup label="Interests" name="interests" options={[ { value: "tech", label: "Technology" }, { value: "design", label: "Design" }, { value: "music", label: "Music" }, ]}/>Props
| Prop | Type | Description |
|---|---|---|
label | string | Group label text |
name | string | Input name attribute |
options | array | Array of { value, label } objects |
value | array | Array of selected values |