@salvoravida/reapop
Version:
A simple & customizable notifications system for React
10 lines (9 loc) • 313 B
TypeScript
/// <reference types="react" />
import { Notification } from '../reducers/notifications/types';
import { Theme } from '..';
declare type Props = {
notification: Notification;
theme?: Theme;
};
declare const NotificationIcon: (props: Props) => JSX.Element | null;
export default NotificationIcon;