@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.
18 lines (13 loc) • 438 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/PricingTable/
*/
import typeof PricingTableItemType from "./PricingTableItem";
import type { Globals } from "../common/common.js.flow";
export type Props = {|
...Globals,
+children: React$Node, // TODO: Type this propperly
+defaultActiveElement?: number,
|};
declare export default React$ComponentType<Props>;
declare export var PricingTableItem: PricingTableItemType;