import { Toaster as Sonner, type ToasterProps } from "sonner" import { CircleCheckIcon, InfoIcon, Loader2Icon, OctagonXIcon, TriangleAlertIcon, } from "lucide-react" import type { CSSProperties } from "react" const Toaster = ({ ...props }: ToasterProps) => { return ( , info: , warning: , error: , loading: , }} style={ { "--normal-bg": "var(--popover)", "--normal-text": "var(--popover-foreground)", "--normal-border": "var(--border)", "--border-radius": "var(--radius)", WebkitAppRegion: "no-drag", } as CSSProperties } toastOptions={{ classNames: { toast: "cn-toast [-webkit-app-region:no-drag]", }, }} {...props} /> ) } export { Toaster }