UNPKG

372 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3export interface ContainerProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
4 fluid?: boolean | string | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
5}
6declare const Container: BsPrefixRefForwardingComponent<'div', ContainerProps>;
7export default Container;