{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "textarea-uncontrolled-example",
  "title": "Textarea Uncontrolled",
  "description": "textarea-uncontrolled-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/text-field",
    "https://intentui.com/r/textarea"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/textarea/textarea-uncontrolled-example.tsx",
      "content": "'use client'\n\nimport { Label } from '@/components/ui/field'\nimport { TextField } from '@/components/ui/text-field'\nimport { Textarea } from '@/components/ui/textarea'\n\nexport default function TextareaUncontrolledDemo() {\n  return (\n    <TextField defaultValue=\"Brooklyn New York, USA\" name=\"address\">\n      <Label>Address</Label>\n      <Textarea />\n    </TextField>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/textarea-uncontrolled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}