antd-mobile
Version:
基于 React 的移动设计规范实现
15 lines (14 loc) • 404 B
TypeScript
/// <reference types="react" />
import React from 'react';
import NoticeBarProps from './PropsType';
export default class NoticeBar extends React.Component<NoticeBarProps, any> {
static defaultProps: {
prefixCls: string;
mode: string;
icon: JSX.Element;
onClick(): void;
};
constructor(props: any);
onClick: () => void;
render(): JSX.Element | null;
}