UNPKG

572 BTypeScriptView Raw
1import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
2declare type RowColWidth = number | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12';
3declare type RowColumns = RowColWidth | {
4 cols?: RowColWidth;
5};
6export interface RowProps extends BsPrefixPropsWithChildren {
7 noGutters?: boolean;
8 xs?: RowColumns;
9 sm?: RowColumns;
10 md?: RowColumns;
11 lg?: RowColumns;
12 xl?: RowColumns;
13}
14declare type Row = BsPrefixRefForwardingComponent<'div', RowProps>;
15declare const Row: Row;
16export default Row;