react-native-flex-grid
Version:
🎨 A react-native flexbox grid similar to bootstap's web grid.
16 lines • 621 B
TypeScript
import React from 'react';
import { View } from 'react-native';
export declare interface RowProps extends React.ComponentProps<typeof View> {
/** 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<typeof View>['style'];
}
/** Row */
declare const Row: ({ style, gx, dir, Element, ...rest }: RowProps) => JSX.Element;
export default Row;
//# sourceMappingURL=Row.d.ts.map