Dashboard sipadu mbip
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.

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