@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 (14 loc) • 319 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/featureicon/
*/
import type { Globals } from "../common/common.js.flow";
export type Name =
| "TicketFlexi"
| "TicketSaver"
| "TicketStandard";
export type Props = {|
+name: Name,
...Globals,
|};
declare export default React$ComponentType<Props>;