import { CustomNotificationProps, NotificationProps } from '../../notifications/NotificationWrapper'; import { debugData } from '../../../utils/debugData'; export const debugCustomNotification = () => { debugData([ { action: 'customNotify', data: { title: 'Success', description: 'Notification description', type: 'success', }, }, ]); debugData([ { action: 'customNotify', data: { title: 'Info', description: 'Notification description', type: 'info', }, }, ]); debugData([ { action: 'customNotify', data: { title: 'Error', description: 'Notification description', type: 'error', }, }, ]); debugData([ { action: 'customNotify', data: { title: 'Custom icon success', description: 'Notification description', type: 'success', icon: 'microchip', }, }, ]); };