controlled
Theme
- Light mode
- Dark mode
- Colored mode
toast.success("Light theme applied.", {
theme: "light",
});
Click the button below to trigger a toast:
toast.success("Dark theme applied.", {
theme: "dark",
});
Click the button below to trigger a toast:
toast.success("Colored theme applied.", {
theme: "colored",
});
Click the button below to trigger a toast:
Title
- Title Show
- Title Hide
toast.success("Show toast With title", {
title: true,
});
Click the button below to trigger a toast:
toast.success("Show toast Without title", {
title: false,
});
Click the button below to trigger a toast:
CLose
- Closable
- autoClose
toast.success("Show toast With close button", {
closable: true,
});
Click the button below to trigger a toast:
toast.success("This toast won't auto close", {
closable: true,
autoClose: false,
});
Click the button below to trigger a toast:
Progress
- progress
toast.success("Show toast without progress bar.", {
progress: false,
closable: true,
});
Click the button below to trigger a toast: