{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "toast-component1",
  "title": "Toast",
  "description": "Toast built with shadcn/ui.",
  "files": [
    {
      "path": "contents/components/toast/1/index.tsx",
      "content": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport { toast } from \"sonner\";\n\nexport default function Example() {\n  return (\n    <Button\n      variant=\"outline\"\n      onClick={() => {\n        toast(\"Scheduled: Catch up\", {\n          description: \"Friday, February 10, 2023 at 5:57 PM\",\n        });\n      }}\n    >\n      Show Toast\n    </Button>\n  );\n}\n\n",
      "type": "registry:component",
      "target": "components/toast-component1.tsx"
    }
  ],
  "type": "registry:component"
}