UNPKG

824 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}
15/**
16 * HTML table component.
17 *
18 * @see https://blueprintjs.com/docs/#core/components/html-table
19 */
20export declare class HTMLTable extends AbstractPureComponent2<HTMLTableProps> {
21 render(): JSX.Element;
22}