UNPKG

279 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface ContainerProps {
6 fluid?: boolean;
7}
8
9declare class Container<
10 As extends React.ElementType = 'div'
11> extends BsPrefixComponent<As, ContainerProps> {}
12
13export default Container;