Thomas G. Lopes
some updates
3df1e9f
raw
history blame
382 Bytes
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);
}