{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "checkbox-group-tailwind",
  "type": "registry:item",
  "title": "Checkbox Group (Tailwind)",
  "description": "A set of checkboxes with shared state management for selecting multiple options.",
  "files": [
    {
      "path": "registry/brook/tailwind/ui/checkbox-group.tsx",
      "content": "\"use client\";\n\nimport { CheckboxGroup } from \"@base-ui/react/checkbox-group\";\nimport { cn } from \"@/lib/utils\";\n\nfunction CheckboxGroupRoot({ className, ...props }: CheckboxGroup.Props) {\n  return <CheckboxGroup className={cn(\"flex flex-col gap-3\", className)} data-slot=\"checkbox-group-root\" {...props} />;\n}\n\nexport { CheckboxGroupRoot as CheckboxGroup };\n",
      "type": "registry:file",
      "target": "~/components/ui/checkbox-group/checkbox-group.tsx"
    }
  ]
}