UNPKG

@jdcfe/yep-react

Version:

一套移动端的React组件库

18 lines (17 loc) 488 B
import * as React from 'react'; export interface HorizontalWhiteSpaceProps { prefixCls?: string; className?: string; style?: React.CSSProperties; onClick: () => void; size: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } export default class HorizontalWhiteSpace extends React.PureComponent<HorizontalWhiteSpaceProps> { static defaultProps: { prefixCls: string; style: {}; size: string; onClick: () => null; }; render(): JSX.Element; }