{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "toast-with-action-demo", "registryDependencies": [ "https://reusables.vercel.app/r/notify" ], "files": [ { "path": "registry/example/toast-with-action-demo.tsx", "content": "\"use client\"\n\nimport { toast } from \"@/packages/notify/src\"\n\nimport { Button } from \"@/components/ui/button\"\n\nexport default function ToastWithActionDemo() {\n return (\n
\n \n toast.push({\n status: \"default\",\n description:\n \"The Evil Rabbit jumped over the fence. The Evil Rabbit jumped over the fence again.\",\n actions: {\n primary: {\n label: \"Undo\",\n onClick: () => console.log(\"Undo!\"),\n },\n dismiss: {\n label: \"Dismiss\",\n },\n },\n duration: 10000,\n })\n }\n >\n Toast With Actions\n \n
\n )\n}\n", "type": "registry:example", "target": "components/toast-with-action-demo.tsx" } ], "type": "registry:example" }