{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "text-field-readonly-example",
  "title": "Text Field Readonly",
  "description": "text-field-readonly-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/input",
    "https://intentui.com/r/text-field"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/text-field/text-field-readonly-example.tsx",
      "content": "'use client'\n\nimport { Label } from '@/components/ui/field'\nimport { Input } from '@/components/ui/input'\nimport { TextField } from '@/components/ui/text-field'\n\nexport default function TextFieldReadonlyDemo() {\n  return (\n    <TextField isReadOnly name=\"name\">\n      <Label>Name</Label>\n      <Input />\n    </TextField>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/text-field-readonly-example/page.tsx"
    }
  ],
  "type": "registry:page"
}