{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "toast-progress-demo", "registryDependencies": [ "https://reusables.vercel.app/r/notify" ], "files": [ { "path": "registry/example/toast-progress-demo.tsx", "content": "\"use client\"\n\nimport { toast } from \"@/packages/notify/src\"\n\nimport { Button } from \"@/components/ui/button\"\n\nexport default function ToastProgressDemo() {\n return (\n
\n \n toast.info(\"Toast with progress\", {\n hideProgressBar: false,\n })\n }\n >\n Show Progress\n \n\n \n toast.info(\"Toast without progress\", {\n hideProgressBar: true,\n })\n }\n >\n Hide Progress\n \n
\n )\n}\n", "type": "registry:example", "target": "components/toast-progress-demo.tsx" } ], "type": "registry:example" }