react-bootstrap-v5
Version:
Bootstrap 4 components built with React
8 lines (7 loc) • 356 B
TypeScript
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
export interface ContainerProps extends BsPrefixPropsWithChildren {
fluid?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
}
declare type Container = BsPrefixRefForwardingComponent<'div', ContainerProps>;
declare const Container: Container;
export default Container;