inspannings-monitor/components/ui/sonner.tsx

51 lines
1.4 KiB
TypeScript

"use client";
import {
CircleCheckIcon,
InfoIcon,
Loader2Icon,
OctagonXIcon,
TriangleAlertIcon,
} from "lucide-react";
import { useTheme } from "@/components/theme-provider";
import { Toaster as Sonner, type ToasterProps } from "sonner";
const Toaster = ({ ...props }: ToasterProps) => {
const { resolvedTheme } = useTheme();
return (
<Sonner
theme={resolvedTheme === "light" ? "light" : "dark"}
className="toaster group"
icons={{
success: <CircleCheckIcon className="size-4" />,
info: <InfoIcon className="size-4" />,
warning: <TriangleAlertIcon className="size-4" />,
error: <OctagonXIcon className="size-4" />,
loading: <Loader2Icon className="size-4 animate-spin" />,
}}
style={
{
"--normal-bg": "var(--popover)",
"--normal-text": "var(--popover-foreground)",
"--normal-border": "var(--border)",
"--success-bg": "var(--success)",
"--success-text": "var(--primary-foreground)",
"--warning-bg": "var(--warning)",
"--warning-text": "var(--foreground)",
"--error-bg": "var(--destructive)",
"--error-text": "var(--primary-foreground)",
"--border-radius": "var(--radius)",
} as React.CSSProperties
}
toastOptions={{
classNames: {
toast: "cn-toast",
},
}}
{...props}
/>
);
};
export { Toaster };