{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "drawer-basic-example",
  "title": "Drawer Basic",
  "description": "drawer-basic-example",
  "registryDependencies": [
    "https://intentui.com/r/button",
    "https://intentui.com/r/drawer",
    "https://intentui.com/r/field",
    "https://intentui.com/r/input",
    "https://intentui.com/r/text-field"
  ],
  "files": [
    {
      "path": "src/components/examples/overlays/drawer/drawer-basic-example.tsx",
      "content": "'use client'\n\nimport { buttonStyles } from '@/components/ui/button'\nimport {\n  Drawer,\n  DrawerBody,\n  DrawerClose,\n  DrawerContent,\n  DrawerDescription,\n  DrawerFooter,\n  DrawerHeader,\n  DrawerTitle,\n  DrawerTrigger,\n} from '@/components/ui/drawer'\nimport { Label } from '@/components/ui/field'\nimport { Input } from '@/components/ui/input'\nimport { TextField } from '@/components/ui/text-field'\n\nexport default function DrawerBasicDemo() {\n  return (\n    <Drawer>\n      <DrawerTrigger className={buttonStyles({ intent: 'outline' })}>Login</DrawerTrigger>\n      <DrawerContent>\n        <DrawerHeader>\n          <DrawerTitle>Login</DrawerTitle>\n          <DrawerDescription>\n            Please enter your credentials to access your account.\n          </DrawerDescription>\n        </DrawerHeader>\n        <DrawerBody className=\"space-y-4\">\n          <TextField>\n            <Label>Email</Label>\n            <Input type=\"email\" placeholder=\"john.doe@example.com\" />\n          </TextField>\n          <TextField>\n            <Label>Password</Label>\n            <Input type=\"password\" placeholder=\"••••••••••••\" />\n          </TextField>\n        </DrawerBody>\n        <DrawerFooter>\n          <DrawerClose className=\"w-full\">Login</DrawerClose>\n        </DrawerFooter>\n      </DrawerContent>\n    </Drawer>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/drawer-basic-example/page.tsx"
    }
  ],
  "type": "registry:page"
}