actions
Undo Action
toast.warning("Item deleted", {
actions: [
{
text: "Undo",
callback: ({ id }) => toast.dismiss(id),
},
],
});
Click the button below to trigger a toast:
Multiple Actions
toast.info("Unsaved changes", {
actions: [{ text: "Save" }, { text: "Discard", className: "text-red-500" }],
});
Click the button below to trigger a toast: