UNPKG

native-base

Version:

Essential cross-platform UI components for React Native

5 lines (4 loc) 388 B
import type { SpaceType as ThemeSpaceType } from '../components/types'; declare type SpaceType = 'gutter' | '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | ThemeSpaceType; declare const getSpacedChildren: (children: JSX.Element[] | JSX.Element, space: undefined | SpaceType, axis: 'X' | 'Y', reverse: string, divider: JSX.Element | undefined) => any; export default getSpacedChildren;