@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.
33 lines (27 loc) • 620 B
Flow
// @flow
import type { ReactComponentStyled } from "styled-components";
import type { Globals } from "../common/common.js.flow";
export type Name =
| "AirHelp"
| "Amex"
| "AxaAssistance"
| "DinersClub"
| "JCB"
| "Maestro"
| "MasterCard"
| "MIR"
| "NewYorkTimes"
| "NortonSecured"
| "TravelPulse"
| "Visa"
| "VisaHQ"
| "Zooz";
export type Size = "small" | "medium" | "large";
export type Props = {|
+name: Name,
+size?: Size,
+grayScale?: boolean,
...Globals,
|};
declare export default React$ComponentType<Props>;
declare export var StyledServiceLogo: ReactComponentStyled<any>;