{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "input-controlled-example",
  "title": "Input Controlled",
  "description": "input-controlled-example",
  "registryDependencies": [
    "https://intentui.com/r/input",
    "https://intentui.com/r/text"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/input/input-controlled-example.tsx",
      "content": "'use client'\n\nimport { useState } from 'react'\nimport { Input } from '@/components/ui/input'\nimport { Text } from '@/components/ui/text'\n\nexport default function InputControlledDemo() {\n  const [text, setText] = useState('')\n  return (\n    <div>\n      <Input aria-label=\"Name\" value={text} onChange={(e) => setText(e.target.value)} />\n      {text && <Text className=\"mt-6\">{text}</Text>}\n    </div>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/input-controlled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}