antd-mobile-alita
Version:
基于 React 的移动设计规范实现
15 lines (14 loc) • 416 B
TypeScript
import * as React from 'react';
import { WingBlankPropsType } from './PropsType';
export interface WingBlankProps extends WingBlankPropsType {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
}
export default class WingBlank extends React.Component<WingBlankProps, any> {
static defaultProps: {
prefixCls: string;
size: string;
};
render(): JSX.Element;
}