@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.
19 lines (16 loc) • 443 B
TypeScript
/*
DOCUMENTATION: https://orbit.kiwi/components/airportillustration/
*/
import type * as Common from "../common/types";
type Name =
| "BGYFastTrack"
| "BUDFastTrack"
| "MRSSmartPass"
| "NCEFastTrack"
| "PRGSmartPass"
| "VCESmartPass";
export interface Props extends Common.Globals, Common.SpaceAfter {
readonly size?: "extraSmall" | "small" | "medium" | "large" | "display";
readonly name: Name;
readonly alt?: string;
}