@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.
83 lines (79 loc) • 1.55 kB
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/illustration/
*/
import type { Globals } from "../common/common.js.flow";
import type { spaceAfter } from "../common/getSpacingToken/index";
type Name =
| "Accommodation"
| "AirHelp"
| "AirportTransport"
| "AirportTransportTaxi"
| "AirportShuttle"
| "AppQRCode"
| "BaggageDrop"
| "BGYFastTrack"
| "Boarding"
| "BoardingPass"
| "BUDFastTrack"
| "BusinessTravel"
| "CabinBaggage"
| "DesktopSearch"
| "EnjoyApp"
| "Error"
| "Error404"
| "FastTrack"
| "Feedback"
| "Help"
| "Improve"
| "Insurance"
| "InviteAFriend"
| "Login"
| "Lounge"
| "Mailbox"
| "Meal"
| "MobileApp"
| "Money"
| "MusicalInstruments"
| "NCEFastTrack"
| "NetVerify"
| "NoBookings"
| "NoFavoriteFlights"
| "Nomad"
| "NomadNeutral"
| "NoNotification"
| "NoResults"
| "Offline"
| "OnlineCheckIn"
| "OpenSearch"
| "Parking"
| "Pets"
| "PlaceholderAirport"
| "PlaceholderDestination"
| "PlaceholderHotel"
| "PlaceholderTours"
| "PlaneAndMoney"
| "PriorityBoarding"
| "Rating"
| "ReferAFriend"
| "RentalCar"
| "Seating"
| "SpecialAssistance"
| "SportsEquipment"
| "Success"
| "Time"
| "TimelineBoarding"
| "TimelineDropBaggage"
| "TimelineLeave"
| "TimelinePick"
| "Tours"
| "Train"
| "TransportBus"
| "TransportTaxi";
export type Props = {|
+size?: "small" | "medium" | "large" | "display",
+name: Name,
...Globals,
...spaceAfter,
|};
declare export default React$ComponentType<Props>;