Spaces:
Runtime error
Runtime error
| "use client" | |
| import { Toaster as Sonner } from "sonner" | |
| export function Toaster() { | |
| return ( | |
| <Sonner | |
| theme="dark" | |
| className="toaster group" | |
| toastOptions={{ | |
| classNames: { | |
| toast: "group toast group-[.toaster]:bg-card group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg", | |
| description: "group-[.toast]:text-muted-foreground", | |
| actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground", | |
| cancelButton: "group-[.toast]:bg-muted group-[.toast]:text-muted-foreground", | |
| }, | |
| }} | |
| /> | |
| ) | |
| } | |