UNPKG

@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.

26 lines (22 loc) 570 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/illustration/ */ import * as React from "react"; import type { Globals } from "../common/common.js.flow"; import type { spaceAfter } from "../common/getSpacingToken/index"; type Name = | "BGYFastTrack" | "BUDFastTrack" | "MRSSmartPass" | "NCEFastTrack" | "PRGSmartPass" | "VCESmartPass"; export type Props = {| +size?: "extraSmall" | "small" | "medium" | "large" | "display", +name: Name, +alt?: string, ...Globals, ...spaceAfter, |}; declare export default React.ComponentType<Props>;