UNPKG

@nutui/nutui-react-taro

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

10 lines (9 loc) 477 B
import { default as React, FunctionComponent } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface SpaceProps extends BasicComponent { direction: 'horizontal' | 'vertical'; align: 'start' | 'end' | 'center' | 'baseline'; justify: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'stretch'; wrap: boolean; } export declare const Space: FunctionComponent<Partial<SpaceProps> & React.HTMLAttributes<HTMLDivElement>>;