UNPKG

199 BTypeScriptView Raw
1import React from 'react';
2export interface NoticeBarPropsType {
3 mode?: 'closable' | 'link';
4 onClick?: () => void;
5 icon?: React.ReactElement<any>;
6 action?: React.ReactElement<any>;
7}