mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 07:04:20 +00:00
22 lines
391 B
TypeScript
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>
|
|
)
|
|
}
|