UNPKG

@blueprintjs/core

Version:
24 lines (23 loc) 866 B
import * as React from "react"; import { AbstractPureComponent2, IElementRefProps } from "../../common"; export declare type HTMLTableProps = IHTMLTableProps; /** @deprecated use HTMLTableProps */ export interface IHTMLTableProps extends React.TableHTMLAttributes<HTMLTableElement>, IElementRefProps<HTMLTableElement> { /** Enables borders between rows and cells. */ bordered?: boolean; /** Use small, condensed appearance. */ condensed?: boolean; /** Enables hover styles on row. */ interactive?: boolean; /** * Use small, condensed appearance for this element and all child elements. * * @deprecated */ small?: boolean; /** Use an alternate background color on odd rows. */ striped?: boolean; } export declare class HTMLTable extends AbstractPureComponent2<HTMLTableProps> { render(): JSX.Element; }