import React from "react"; import { NotificationProvider } from "@pankod/refine-core"; import { notification } from "antd"; import { UndoableNotification } from "@components/undoableNotification"; export const notificationProvider: NotificationProvider = { open: ({ key, message, description, type, cancelMutation, undoableTimeout, }) => { if (type === "progress") { notification.open({ key, description: ( ), message: null, duration: 0, closeIcon: <>, }); } else { notification.open({ key, description: message, message: description ?? null, type, }); } }, close: (key) => notification.destroy(key), };