UNPKG

625 BTypeScriptView Raw
1import * as React from "react";
2export interface HTMLTableProps extends React.TableHTMLAttributes<HTMLTableElement>, React.RefAttributes<HTMLTableElement> {
3 /** Enable borders between rows and cells. */
4 bordered?: boolean;
5 /** Use compact appearance with less padding. */
6 compact?: boolean;
7 /** Enable hover styles on rows. */
8 interactive?: boolean;
9 /** Use an alternate background color on odd-numbered rows. */
10 striped?: boolean;
11}
12/**
13 * HTML table component.
14 *
15 * @see https://blueprintjs.com/docs/#core/components/html-table
16 */
17export declare const HTMLTable: React.FC<HTMLTableProps>;