@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
14 lines (13 loc) • 459 B
TypeScript
import type { PropsFor } from "../../types.js";
export type TableProps = PropsFor<"table", {
/** Hide outer left table border */
noBorder?: boolean;
/** Indicates whether table includes vertical headers */
vertical?: boolean;
}>;
/**
* Table component (table element)
* @visibleName Table
*/
declare const Table: import("react").ForwardRefExoticComponent<TableProps & import("react").RefAttributes<HTMLTableElement>>;
export default Table;