UNPKG

866 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 /**
13 * Use small, condensed appearance for this element and all child elements.
14 *
15 * @deprecated
16 */
17 small?: boolean;
18 /** Use an alternate background color on odd rows. */
19 striped?: boolean;
20}
21export declare class HTMLTable extends AbstractPureComponent2<HTMLTableProps> {
22 render(): JSX.Element;
23}