UNPKG

@uiw/react-native

Version:
8 lines (7 loc) 283 B
import React from 'react'; import { ViewProps } from 'react-native'; export interface SpacingProps extends ViewProps { size?: 'small' | 'default' | 'large' | number; type?: 'horizontal' | 'vertical'; } export default function Spacing(props: SpacingProps): React.JSX.Element;