@wfp/ui
Version:
WFP UI Kit
15 lines (12 loc) • 469 B
TypeScript
import * as React from 'react';
import { NotificationKind, NotificationType } from '../utils';
declare namespace NotificationIcon {
interface NotificationIconProps extends React.HTMLProps<NotificationIcon> {
iconDescription: string
kind: NotificationKind
notificationType?: NotificationType
subtitle?: React.ReactNode
}
}
declare class NotificationIcon extends React.Component<NotificationIcon.NotificationIconProps>{ }
export = NotificationIcon