2024-02-06 00:54:08 +01:00
|
|
|
import { useTheme } from "next-themes";
|
|
|
|
import { Toaster as Sonner } from "sonner";
|
|
|
|
|
|
|
|
type ToasterProps = React.ComponentProps<typeof Sonner>;
|
|
|
|
|
|
|
|
const Toaster = ({ ...props }: ToasterProps) => {
|
|
|
|
const { theme = "system" } = useTheme();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Sonner
|
|
|
|
theme={theme as ToasterProps["theme"]}
|
|
|
|
className="toaster group"
|
|
|
|
toastOptions={{
|
|
|
|
classNames: {
|
|
|
|
toast:
|
|
|
|
"group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
|
|
|
description: "group-[.toast]:text-muted-foreground",
|
2024-04-10 00:49:14 +02:00
|
|
|
actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary",
|
2024-02-06 00:54:08 +01:00
|
|
|
cancelButton:
|
|
|
|
"group-[.toast]:bg-muted group-[.toast]:text-muted-foreground",
|
2024-05-04 21:54:50 +02:00
|
|
|
closeButton:
|
|
|
|
"group-[.toast]:bg-secondary border-primary border-[1px]",
|
2024-02-06 00:54:08 +01:00
|
|
|
success:
|
|
|
|
"group toast group-[.toaster]:bg-success group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
2024-04-10 00:49:14 +02:00
|
|
|
error:
|
|
|
|
"group toast group-[.toaster]:bg-danger group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
2024-02-06 00:54:08 +01:00
|
|
|
},
|
|
|
|
}}
|
|
|
|
{...props}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export { Toaster };
|