@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
63 lines (59 loc) • 1.2 kB
Flow
// @flow
import type { Globals } from "../common/common.js.flow";
import defaultTokens from "../defaultTokens";
import type { spaceAfter } from "../common/getSpacingToken/index";
type Name =
| "Accommodation"
| "AirHelp"
| "AirportTransport"
| "AirportTransportTaxi"
| "BoardingPass"
| "CabinBaggage"
| "EnjoyApp"
| "FastTrack"
| "Feedback"
| "Help"
| "Improve"
| "Insurance"
| "InviteAFriend"
| "Login"
| "Lounge"
| "Mailbox"
| "Meal"
| "Money"
| "MusicalInstruments"
| "NetVerify"
| "NoBookings"
| "NoFavoriteFlights"
| "NoNotification"
| "Offline"
| "OnlineCheckIn"
| "OpenSearch"
| "Parking"
| "Pets"
| "PlaceholderAirport"
| "PlaceholderDestination"
| "PlaceholderHotel"
| "PlaneAndMoney"
| "PriorityBoarding"
| "Rating"
| "ReferAFriend"
| "RentalCar"
| "Seating"
| "SpecialAssistance"
| "SportsEquipment"
| "Time"
| "TimelineBoarding"
| "TimelineDropBaggage"
| "TimelineLeave"
| "TimelinePick"
| "Tours"
| "Train";
export type Props = {|
+size?: "small" | "medium",
+name: Name,
...Globals,
+theme?: typeof defaultTokens,
...spaceAfter,
|};
declare export default React$ComponentType<Props>;