mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-09-13 02:23:33 -06:00
first commit
This commit is contained in:
23
components/ui/toaster.tsx
Normal file
23
components/ui/toaster.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport } from "@/components/ui/toast"
|
||||
import { useToast } from "@/components/ui/use-toast"
|
||||
|
||||
export function Toaster() {
|
||||
const { toasts } = useToast()
|
||||
|
||||
return (
|
||||
<ToastProvider>
|
||||
{toasts.map(({ id, title, description, action, ...props }) => (
|
||||
<Toast key={id} {...props} className="bg-white border-primary">
|
||||
{title && <ToastTitle className="font-vollkorn">{title}</ToastTitle>}
|
||||
{description && <ToastDescription className="font-open-sans">{description}</ToastDescription>}
|
||||
{action}
|
||||
<ToastClose />
|
||||
</Toast>
|
||||
))}
|
||||
<ToastViewport />
|
||||
</ToastProvider>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user