UNPKG

348 BTypeScriptView Raw
1import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
2export interface ContainerProps extends BsPrefixPropsWithChildren {
3 fluid?: boolean | 'sm' | 'md' | 'lg' | 'xl';
4}
5declare type Container = BsPrefixRefForwardingComponent<'div', ContainerProps>;
6declare const Container: Container;
7export default Container;