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