import { Toaster, type AddToastProps } from "melt/builders"; | |
export type ToastData = { | |
title: string; | |
description: string; | |
variant: "success" | "warning" | "error"; | |
}; | |
export const toaster = new Toaster<ToastData>({}); | |
export function addToast(args: AddToastProps<ToastData>) { | |
toaster.addToast(args); | |
} | |
export function removeToast(id: string) { | |
toaster.removeToast(id); | |
} | |