You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
489 B

import * as React from 'react';
import { BsPrefixOnlyProps } from './helpers';
export interface TableProps extends BsPrefixOnlyProps, React.TableHTMLAttributes<HTMLTableElement> {
striped?: boolean | string;
bordered?: boolean;
borderless?: boolean;
hover?: boolean;
size?: string;
variant?: string;
responsive?: boolean | string;
}
declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
export default Table;