UNPKG

react-native-flex-grid

Version:

🎨 A react-native flexbox grid similar to bootstap's web grid.

16 lines • 656 B
import React from 'react'; import { View } from 'react-native'; export declare interface ContainerProps extends React.ComponentProps<typeof View> { /** Fluid Container */ fluid?: boolean; /** No Padding */ noPadding?: boolean; /** Element to render - defaults to View */ Element?: React.ElementType; /** style */ style?: React.ComponentProps<typeof View>['style']; } /** Container [Bootstrap Docs](https://getbootstrap.com/docs/5.0/layout/containers) */ declare const Container: ({ style, fluid, Element, noPadding, ...rest }: ContainerProps) => JSX.Element; export default Container; //# sourceMappingURL=Container.d.ts.map