fix: enhance notification className to support additional styles

This commit is contained in:
Piyush Gupta
2025-11-13 02:36:06 +05:30
parent b942d5b8e5
commit 7d57f29894

View File

@@ -68,7 +68,7 @@ export const createNotification = (
autoClose: toastProps.autoClose || 15000,
theme: "dark",
type: myProps?.type || "info",
className: "pointer-events-auto"
className: `pointer-events-auto ${toastProps.className}`
});
export const NotificationContainer = () => (