@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.
20 lines (19 loc) • 956 B
TypeScript
/// <reference types="react" />
import { StyledTableRow } from "./TableRow";
import { StyledTableCell } from "./TableCell";
import { StyledTableBody } from "./TableBody";
import { StyledTableHead } from "./TableHead";
import type { Props, Type } from "./types";
declare const StyledTable: import("styled-components").StyledComponent<"table", import("styled-components").DefaultTheme, {
type: Type;
striped?: boolean | undefined;
compact?: boolean | undefined;
}, never>;
declare const Table: ({ children, striped, compact, dataTest, id, type, }: Props) => 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";
export { StyledTable, StyledTableCell, StyledTableBody, StyledTableRow, StyledTableHead };