UNPKG

330 BTypeScriptView Raw
1import { BsPrefixComponent } from './helpers';
2
3export interface TableProps {
4 striped?: boolean;
5 bordered?: boolean;
6 borderless?: boolean;
7 hover?: boolean;
8 size?: string;
9 variant?: string;
10 responsive?: boolean | string;
11}
12
13declare class Table extends BsPrefixComponent<'table', TableProps> {}
14
15export default Table;