import { Notification } from '@arco-design/web-vue'; import { IconLoading } from '@arco-design/web-vue/es/icon'; export function showExportNotification(label: string, id: '') { Notification.warning({ id, showIcon: false, closable: true, content: () => (

{label}

), duration: 3000, class: 'px-16px py-9px w-400px rounded-2px bg-#F0EDFF', }); }