UNPKG

@themesberg/react-bootstrap

Version:

Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React

8 lines (7 loc) 356 B
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;