{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "toast-with-description-demo", "registryDependencies": [ "https://reusables.vercel.app/r/notify" ], "files": [ { "path": "registry/example/toast-with-description-demo.tsx", "content": "\"use client\"\n\nimport { toast } from \"@/packages/notify/src\"\n\nimport { Button } from \"@/components/ui/button\"\n\nexport default function ToastWithDescriptionDemo() {\n return (\n \n toast.info(\"Event has been created\", {\n description:\n \"We've created your event and sent invitations to your guests.\",\n duration: 5000,\n position: \"bottom-right\",\n })\n }\n >\n Show Toast with Description\n \n )\n}\n", "type": "registry:example", "target": "components/toast-with-description-demo.tsx" } ], "type": "registry:example" }