mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
14 lines
455 B
TypeScript
14 lines
455 B
TypeScript
import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface TableProps extends BsPrefixAndClassNameOnlyProps {
|
|
striped?: boolean;
|
|
bordered?: boolean;
|
|
borderless?: boolean;
|
|
hover?: boolean;
|
|
size?: string;
|
|
variant?: string;
|
|
responsive?: boolean | string;
|
|
}
|
|
declare type Table = BsPrefixRefForwardingComponent<'table', TableProps>;
|
|
declare const Table: Table;
|
|
export default Table;
|