1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | type RowColWidth = number | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | 'auto';
|
4 | type RowColumns = RowColWidth | {
|
5 | cols?: RowColWidth;
|
6 | };
|
7 | export interface RowProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
8 | xs?: RowColumns;
|
9 | sm?: RowColumns;
|
10 | md?: RowColumns;
|
11 | lg?: RowColumns;
|
12 | xl?: RowColumns;
|
13 | xxl?: RowColumns;
|
14 | [key: string]: any;
|
15 | }
|
16 | declare const Row: BsPrefixRefForwardingComponent<'div', RowProps>;
|
17 | export default Row;
|