{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "textarea", "type": "registry:ui", "dependencies": ["@ark-ui/react"], "files": [ { "path": "./src/components/ui/textarea.tsx", "content": "\"use client\"\n\nimport * as React from \"react\"\n\nimport { createAnatomy } from \"@ark-ui/react/anatomy\"\nimport { type HTMLArkProps, ark } from \"@ark-ui/react/factory\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst anatomy = createAnatomy(\"textarea\").parts(\"root\")\nconst parts = anatomy.build()\n\nconst Textarea = React.forwardRef<\n HTMLTextAreaElement,\n HTMLArkProps<\"textarea\">\n>(({ className, ...props }, ref) => {\n return (\n \n )\n})\nTextarea.displayName = \"Textarea\"\n\nexport { Textarea }\n", "type": "registry:ui" } ] }