@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
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>;