@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
10 lines (9 loc) • 394 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;
}>;
declare const Table: import("react").ForwardRefExoticComponent<TableProps & import("react").RefAttributes<HTMLTableElement>>;
export default Table;