Files
shadcn-ui/apps/v4/examples/base/sonner-with-description.tsx
2026-01-14 09:25:14 +04:00

19 lines
377 B
TypeScript

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