Files
2025-08-20 17:42:45 +02:00

30 lines
601 B
TypeScript

"use client";
import { Toaster } from "react-hot-toast";
export default function ToasterProvider() {
return (
<Toaster
position="top-right"
toastOptions={{
style: {
background: "#11131c",
color: "#fff",
border: "1px solid #2a2f3a",
},
success: {
iconTheme: {
primary: "#22c55e", // green
secondary: "#11131c",
},
},
error: {
iconTheme: {
primary: "#ef4444", // red
secondary: "#11131c",
},
},
}}
/>
);
}