UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

14 lines (13 loc) 387 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export interface WhiteSpaceProps { style?: StyleProp<ViewStyle>; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } declare class WhiteSpace extends React.Component<WhiteSpaceProps, any> { static defaultProps: { size: string; }; render(): React.JSX.Element; } export default WhiteSpace;