{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "checkbox-group",
  "title": "Checkbox Group",
  "description": "Provides shared state to a series of checkboxes, so a set of checkboxes (or checkbox cards) can be driven by one value array.",
  "dependencies": [
    "@base-ui/react@^1.6.0"
  ],
  "registryDependencies": [
    "@nx-ui/utils"
  ],
  "files": [
    {
      "path": "components/ui/checkbox-group.tsx",
      "content": "\"use client\"\n\nimport { CheckboxGroup as CheckboxGroupPrimitive } from \"@base-ui/react/checkbox-group\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction CheckboxGroup({ className, ...props }: CheckboxGroupPrimitive.Props) {\n  return (\n    <CheckboxGroupPrimitive\n      data-slot=\"checkbox-group\"\n      className={cn(\"flex w-full flex-col gap-3\", className)}\n      {...props}\n    />\n  )\n}\n\nexport { CheckboxGroup }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}