import React from 'react'; import { StyleSheet, View } from 'react-native'; import { getConfig } from '../../../utils/grid'; export declare interface RowProps extends React.ComponentProps { /** Gutter size -- [Bootstrap Gutters](https://getbootstrap.com/docs/5.0/layout/gutters/) */ gx?: 0 | 1 | 2 | 3 | 4 | 5; /** Direction */ dir?: 'ltr' | 'rtl'; /** Element to render - defaults to View */ Element?: React.ElementType; /** style */ style?: React.ComponentProps['style']; } const styles = StyleSheet.create({ row: { flexDirection: 'row', flexWrap: 'wrap', }, rtl: { flexDirection: 'row-reverse', }, }); /** Row */ const Row = ({ style, gx = 4, dir = 'ltr', Element = View, ...rest }: RowProps) => ( ); export default Row;