mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import * as React from 'react';
|
|
|
|
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface ContainerProps {
|
|
fluid?: boolean | 'sm' | 'md' | 'lg' | 'xl';
|
|
}
|
|
|
|
declare class Container<
|
|
As extends React.ElementType = 'div'
|
|
> extends BsPrefixComponent<As, ContainerProps> {}
|
|
|
|
export default Container;
|