web3-mq-react
Version:
web3-mq-react-components
10 lines (9 loc) • 359 B
TypeScript
import React from 'react';
export declare type NotificationShowType = 'list' | 'modal';
export declare type NotificationListProps = {
EmptyContaniner?: React.ReactNode;
className?: string;
Notification?: React.ComponentType<any>;
style?: React.CSSProperties;
};
export declare const NotificationList: React.FC<NotificationListProps>;