UNPKG

react-bootstrap-v5

Version:

Bootstrap 4 components built with React

18 lines (17 loc) 603 B
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers'; declare type RowColWidth = number | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | 'auto'; declare type RowColumns = RowColWidth | { cols?: RowColWidth; }; export interface RowProps extends BsPrefixPropsWithChildren { noGutters?: boolean; xs?: RowColumns; sm?: RowColumns; md?: RowColumns; lg?: RowColumns; xl?: RowColumns; xxl?: RowColumns; } declare type Row = BsPrefixRefForwardingComponent<'div', RowProps>; declare const Row: Row; export default Row;