UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

14 lines (13 loc) 318 B
/// <reference types="react" /> import React from 'react'; interface NoticeBarPropsType { mode?: 'closable' | 'link'; onClick?: () => void; icon?: React.ReactNode; style?: {}; className?: string; prefixCls?: string; marqueeProps?: {}; styles?: any; } export default NoticeBarPropsType;