import type { NotificationInterface } from '#hooks';
export type NotificationIconProps = {
type: NotificationInterface['type'];
};
export const NotificationIcon = ({ type }: NotificationIconProps) => {
switch (type) {
case 'error':
return (
);
case 'info':
return (
);
case 'success':
return (
);
case 'warning':
return (
);
}
};