UNPKG

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