@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.
29 lines (24 loc) • 787 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/table/
*/
import type { Globals } from "../common/common.js.flow";
import typeof TableBodyType from "./TableBody/index.js.flow";
import typeof TableCellType from "./TableCell/index.js.flow";
import typeof TableHeadType from "./TableHead/index.js.flow";
import typeof TableRowType from "./TableRow/index.js.flow";
export type Props = {|
+compact?: boolean,
+children: React$Node,
...Globals,
|};
export type State = {|
showShadows: boolean,
showLeft: boolean,
showRight: boolean,
|};
declare export default React$ComponentType<Props>;
declare export var TableBody: TableBodyType;
declare export var TableCell: TableCellType;
declare export var TableHead: TableHeadType;
declare export var TableRow: TableRowType;