UNPKG

@viktorvojtek/react-native-simple-components

Version:

Collection of essential UI components based on react-native components

8 lines (7 loc) 281 B
import React from 'react'; import type { StackProps } from './Stack'; type Props = { flexDirection?: 'column' | 'column-reverse'; } & Omit<StackProps, 'flexDirection'>; declare const StackY: ({ flexDirection, ...restProps }: Props) => React.JSX.Element; export default StackY;