@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.
101 lines (97 loc) • 1.98 kB
Flow
// @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 =
| "Accommodation"
| "AirHelp"
| "AirportShuttle"
| "AirportTransport"
| "AirportTransportTaxi"
| "AppQRCode"
| "BaggageDrop"
| "Boarding"
| "BoardingPass"
| "BusinessTravel"
| "CabinBaggage"
| "Chatbot"
| "CompassCollectPoints"
| "CompassDemoted"
| "CompassEmailAdventurer"
| "CompassEmailCaptain"
| "CompassEmailPromoted"
| "CompassEmailPromotedCaptain"
| "CompassEmailScout"
| "CompassPoints"
| "CompassSaveOnBooking"
| "CompassTravelPlan"
| "DesktopSearch"
| "EnjoyApp"
| "Error"
| "Error404"
| "EVisa"
| "FastTrack"
| "FastTrackMan"
| "FareLock"
| "FareLockSuccess"
| "Feedback"
| "GroundTransport404"
| "Help"
| "Improve"
| "Insurance"
| "InviteAFriend"
| "Login"
| "Lounge"
| "Mailbox"
| "Meal"
| "MobileApp"
| "Money"
| "MusicalInstruments"
| "NetVerify"
| "NoBookings"
| "NoFavoriteFlights"
| "Nomad"
| "NomadNeutral"
| "NoNotification"
| "NoResults"
| "Offline"
| "OnlineCheckIn"
| "OpenSearch"
| "Parking"
| "Pets"
| "PlaceholderAirport"
| "PlaceholderDestination"
| "PlaceholderHotel"
| "PlaceholderTours"
| "PlaneAndMoney"
| "PlaneDelayed"
| "PriorityBoarding"
| "Rating"
| "ReferAFriend"
| "RentalCar"
| "Seating"
| "SpecialAssistance"
| "SportsEquipment"
| "Success"
| "TicketFlexi"
| "Time"
| "TimelineBoarding"
| "TimelineDropBaggage"
| "TimelineLeave"
| "TimelinePick"
| "Tours"
| "Train"
| "TransportBus"
| "TransportTaxi"
| "WomanWithPhone";
export type Props = {|
+size?: "extraSmall" | "small" | "medium" | "large" | "display",
+name: Name,
+alt?: string,
...Globals,
...spaceAfter,
|};
declare export default React.ComponentType<Props>;