Files
shadcn-ui/apps/v4/examples/base/sonner-description.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

22 lines
391 B
TypeScript

"use client"
import { toast } from "sonner"
import { Button } from "@/styles/base-nova/ui/button"
export function SonnerDescription() {
return (
<Button
onClick={() =>
toast("Event has been created", {
description: "Monday, January 3rd at 6:00pm",
})
}
variant="outline"
className="w-fit"
>
Show Toast
</Button>
)
}