import { Toaster as Sonner, type ToasterProps } from "sonner" import { CircleCheckIcon, InfoIcon, TriangleAlertIcon, OctagonXIcon, Loader2Icon } from "lucide-react" import { useTheme } from "./theme-provider" const themeMap = { "Automatic": "system", "Dark": "dark", "Light": "light", } const Toaster = ({ ...props }: ToasterProps) => { const { theme = "Automatic" } = useTheme() return ( ), info: ( ), warning: ( ), error: ( ), loading: ( ), }} style={ { "--normal-bg": "var(--surface-gray-1)", "--normal-text": "var(--text-ink-gray-8)", "--normal-border": "var(--outline-gray-1)", "--border-radius": "var(--radius)", } as React.CSSProperties } toastOptions={{ classNames: { toast: "cn-toast", }, }} {...props} /> ) } export { Toaster }