1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-18 10:26:04 +01:00
upscayl/renderer/components/ui/toaster.tsx

34 lines
785 B
TypeScript
Raw Normal View History

2024-04-21 16:04:59 +02:00
import {
Toast,
ToastClose,
ToastDescription,
ToastProvider,
ToastTitle,
ToastViewport,
2024-04-22 09:55:44 +02:00
} from "@/components/ui/toast";
import { useToast } from "@/components/ui/use-toast";
2024-04-21 16:04:59 +02:00
export function Toaster() {
2024-04-22 09:55:44 +02:00
const { toasts } = useToast();
2024-04-21 16:04:59 +02:00
return (
<ToastProvider>
{toasts.map(function ({ id, title, description, action, ...props }) {
return (
<Toast key={id} {...props}>
<div className="grid gap-1">
{title && <ToastTitle>{title}</ToastTitle>}
{description && (
<ToastDescription>{description}</ToastDescription>
)}
</div>
{action}
<ToastClose />
</Toast>
2024-04-22 09:55:44 +02:00
);
2024-04-21 16:04:59 +02:00
})}
<ToastViewport />
</ToastProvider>
2024-04-22 09:55:44 +02:00
);
2024-04-21 16:04:59 +02:00
}