{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "form",
  "files": [
    {
      "path": "src/components/ui/form/form.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"form\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<form data-slot=\"form\" class={cn(\"flex flex-col gap-6\", className)} {...props}>\n  <slot />\n</form>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/form/index.ts",
      "content": "export { default as Form } from \"./form.astro\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}