{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-drawer-2",
  "description": "Bottom drawer without drag bar",
  "registryDependencies": [
    "@coss/button",
    "@coss/drawer"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-drawer-2.tsx",
      "content": "import { Button } from \"@/registry/default/ui/button\";\nimport {\n  Drawer,\n  DrawerClose,\n  DrawerDescription,\n  DrawerFooter,\n  DrawerHeader,\n  DrawerPopup,\n  DrawerTitle,\n  DrawerTrigger,\n} from \"@/registry/default/ui/drawer\";\n\nexport default function Particle() {\n  return (\n    <Drawer>\n      <DrawerTrigger render={<Button variant=\"outline\" />}>\n        Open drawer\n      </DrawerTrigger>\n      <DrawerPopup>\n        <DrawerHeader className=\"text-center\">\n          <DrawerTitle>Notifications</DrawerTitle>\n          <DrawerDescription>\n            This is the description of the drawer.\n          </DrawerDescription>\n        </DrawerHeader>\n        <DrawerFooter\n          className=\"justify-center sm:justify-center\"\n          variant=\"bare\"\n        >\n          <DrawerClose render={<Button variant=\"outline\" />}>Close</DrawerClose>\n        </DrawerFooter>\n      </DrawerPopup>\n    </Drawer>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "categories": [
    "drawer"
  ],
  "type": "registry:block"
}