@jdcfe/yep-react
Version:
一套移动端的React组件库
15 lines (14 loc) • 473 B
TypeScript
import * as React from 'react';
export interface WhiteSpaceProps {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
onClick?: () => void;
size: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
}
declare function WhiteSpace(props: WhiteSpaceProps): JSX.Element;
declare namespace WhiteSpace {
var defaultProps: Partial<WhiteSpaceProps>;
var HorizontalWhiteSpace: typeof import("./HorizontalWhiteSpace").default;
}
export default WhiteSpace;