{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "drawer-without-notch-example",
  "title": "Drawer Without Notch",
  "description": "drawer-without-notch-example",
  "registryDependencies": [
    "https://intentui.com/r/button",
    "https://intentui.com/r/drawer"
  ],
  "files": [
    {
      "path": "src/components/examples/overlays/drawer/drawer-without-notch-example.tsx",
      "content": "'use client'\n\nimport { Button } from '@/components/ui/button'\nimport {\n  Drawer,\n  DrawerClose,\n  DrawerContent,\n  DrawerDescription,\n  DrawerFooter,\n  DrawerHeader,\n  DrawerTitle,\n} from '@/components/ui/drawer'\n\nexport default function DrawerWithoutNotchDemo() {\n  return (\n    <Drawer>\n      <Button intent=\"outline\">Open</Button>\n      <DrawerContent notch={false}>\n        <DrawerHeader>\n          <DrawerTitle>The Beatles</DrawerTitle>\n          <DrawerDescription>\n            The Beatles were an English rock band formed in Liverpool in 1960, comprising John\n            Lennon, Paul McCartney, George Harrison and Ringo Starr.\n          </DrawerDescription>\n        </DrawerHeader>\n        <DrawerFooter className=\"justify-center\">\n          <DrawerClose isCircle className=\"w-full\">\n            Close\n          </DrawerClose>\n        </DrawerFooter>\n      </DrawerContent>\n    </Drawer>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/drawer-without-notch-example/page.tsx"
    }
  ],
  "type": "registry:page"
}