UNPKG

723 BTypeScriptView Raw
1import * as React from "react";
2import { AbstractPureComponent2, IElementRefProps } from "../../common";
3export declare type HTMLTableProps = IHTMLTableProps;
4/** @deprecated use HTMLTableProps */
5export interface IHTMLTableProps extends React.TableHTMLAttributes<HTMLTableElement>, IElementRefProps<HTMLTableElement> {
6 /** Enables borders between rows and cells. */
7 bordered?: boolean;
8 /** Use small, condensed appearance. */
9 condensed?: boolean;
10 /** Enables hover styles on row. */
11 interactive?: boolean;
12 /** Use an alternate background color on odd rows. */
13 striped?: boolean;
14}
15export declare class HTMLTable extends AbstractPureComponent2<HTMLTableProps> {
16 render(): JSX.Element;
17}