UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

11 lines (10 loc) 748 B
"use client"; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; 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 (_jsxs(ToastProvider, { children: [toasts.map(function ({ id, title, description, action, ...props }) { return (_jsxs(Toast, { ...props, children: [_jsxs("div", { className: "grid gap-1", children: [title && _jsx(ToastTitle, { children: title }), description && (_jsx(ToastDescription, { children: description }))] }), action, _jsx(ToastClose, {})] }, id)); }), _jsx(ToastViewport, {})] })); }