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