UNPKG

416 BTypeScriptView Raw
1import * as React from 'react';
2import { WingBlankPropsType } from './PropsType';
3export interface WingBlankProps extends WingBlankPropsType {
4 prefixCls?: string;
5 className?: string;
6 style?: React.CSSProperties;
7}
8export default class WingBlank extends React.Component<WingBlankProps, any> {
9 static defaultProps: {
10 prefixCls: string;
11 size: string;
12 };
13 render(): JSX.Element;
14}