@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.
19 lines (15 loc) • 450 B
Flow
// @flow
import type { Globals } from "../common/common.js.flow";
import TableBody from "./TableBody/index";
import TableHead from "./TableHead/index";
export type Props = {|
+compact?: boolean,
+children: Array<React$Element<typeof TableHead> | React$Element<typeof TableBody>>,
...Globals,
|};
export type State = {|
showShadows: boolean,
showLeft: boolean,
showRight: boolean,
|};
declare export default React$ComponentType<Props>;