UNPKG

@geezee/react-ui

Version:

Modern and minimalist React UI library.

9 lines (8 loc) 293 B
import React from 'react'; import { Notification } from './use-notifications'; export declare type NotificationItemProps = Notification & { id: string; destroy?: (id: string) => void; }; declare const NotificationItem: React.FC<NotificationItemProps>; export default NotificationItem;