{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "card-with-form",
  "registryDependencies": [
    "https://taki-ui.com/r/button.json",
    "https://taki-ui.com/r/card.json",
    "https://taki-ui.com/r/input.json",
    "https://taki-ui.com/r/label.json",
    "https://taki-ui.com/r/select.json"
  ],
  "files": [
    {
      "path": "registry/new-york/examples/card-with-form.tsx",
      "content": "import * as React from \"react\"\n\nimport { Button } from \"@/registry/new-york/ui/button\"\nimport {\n  Card,\n  CardContent,\n  CardDescription,\n  CardFooter,\n  CardHeader,\n  CardTitle,\n} from \"@/registry/new-york/ui/card\"\nimport { Input } from \"@/registry/new-york/ui/input\"\nimport { Label } from \"@/registry/new-york/ui/label\"\nimport { Select, SelectItem } from \"@/registry/new-york/ui/select\"\n\nexport default function CardWithForm() {\n  return (\n    <Card className=\"w-[350px]\">\n      <CardHeader>\n        <CardTitle>Create project</CardTitle>\n        <CardDescription>Deploy your new project in one-click.</CardDescription>\n      </CardHeader>\n      <CardContent>\n        <form>\n          <div className=\"grid w-full items-center gap-6\">\n            <div className=\"flex flex-col gap-3\">\n              <Label htmlFor=\"name\">Name</Label>\n              <Input id=\"name\" placeholder=\"Name of your project\" />\n            </div>\n            <div className=\"flex flex-col gap-3\">\n              <Select label=\"Framework\" className=\"w-full\">\n                <SelectItem id=\"next\">Next.js</SelectItem>\n                <SelectItem id=\"sveltekit\">SvelteKit</SelectItem>\n                <SelectItem id=\"astro\">Astro</SelectItem>\n                <SelectItem id=\"nuxt\">Nuxt.js</SelectItem>\n              </Select>\n            </div>\n          </div>\n        </form>\n      </CardContent>\n      <CardFooter className=\"flex justify-between\">\n        <Button variant=\"outline\">Cancel</Button>\n        <Button>Deploy</Button>\n      </CardFooter>\n    </Card>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}