Javier
UI Functional, next fixing automations
d725335
Raw
History Blame Contribute Delete
458 Bytes
import { Toaster as Sonner } from "sonner"
function Toaster() {
return (
<Sonner
theme="dark"
position="bottom-right"
toastOptions={{
classNames: {
toast:
"!bg-popover !border-border !text-foreground !rounded-lg !font-sans !shadow-2xl",
description: "!text-muted-foreground",
actionButton: "!bg-primary !text-primary-foreground",
},
}}
/>
)
}
export { Toaster }