UNPKG

@viktorvojtek/react-native-simple-components

Version:

Collection of essential UI components based on react-native components

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