@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
10 lines (9 loc) • 458 B
TypeScript
import * as React from "react";
import type { Props } from "./types";
declare const Table: ({ children, striped, compact, dataTest, id, type, }: Props) => React.JSX.Element;
export default Table;
export { default as TableHead } from "./TableHead";
export { default as TableBody } from "./TableBody";
export { default as TableFooter } from "./TableFooter";
export { default as TableRow } from "./TableRow";
export { default as TableCell } from "./TableCell";