UNPKG

@whitemordred/react-native-bootstrap5

Version:

A complete React Native library that replicates Bootstrap 5.3 with 100% feature parity, full theming support, CSS variables, and dark/light mode

26 lines 632 B
import React from 'react'; import { ViewStyle } from 'react-native'; interface ContainerProps { children: React.ReactNode; fluid?: boolean; style?: ViewStyle; } interface RowProps { children: React.ReactNode; style?: ViewStyle; noGutters?: boolean; } interface ColProps { children: React.ReactNode; xs?: number; sm?: number; md?: number; lg?: number; xl?: number; style?: ViewStyle; } export declare const Container: React.FC<ContainerProps>; export declare const Row: React.FC<RowProps>; export declare const Col: React.FC<ColProps>; export {}; //# sourceMappingURL=Grid.d.ts.map