UNPKG

fictoan-react

Version:

A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.

17 lines (16 loc) 768 B
import React from "react"; import { CommonAndHTMLProps } from '../Element/constants'; export interface TableCustomProps { bordersFor?: "rows" | "columns" | "both"; alignText?: "left" | "right" | "centre" | "center"; isStriped?: boolean; highlightRowOnHover?: boolean; isFullWidth?: boolean; caption?: string; summary?: string; hasColSpan?: boolean; } export type TableElementType = HTMLTableElement; export type TableProps = Omit<CommonAndHTMLProps<TableElementType>, keyof TableCustomProps> & TableCustomProps; export declare const Table: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLTableElement>, keyof TableCustomProps> & TableCustomProps & React.RefAttributes<HTMLTableElement>>; //# sourceMappingURL=Table.d.ts.map