@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.
49 lines (46 loc) • 905 B
TypeScript
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import type * as Common from "../common/types";
export type Size = "small" | "medium" | "large";
type Name =
| "AirHelp"
| "AirHelpPlus"
| "Alipay"
| "Amex"
| "Axa"
| "AxaAssistance"
| "Booking"
| "BusinessInsider"
| "ChinaUnionPay"
| "DailyExpress"
| "DinersClub"
| "Discover"
| "IATA"
| "JCB"
| "MailOnline"
| "Maestro"
| "MaestroShort"
| "MasterCard"
| "MasterCardShort"
| "MIR"
| "Mirror"
| "NewYorkTimes"
| "NortonSecured"
| "PayPal"
| "RentalCars"
| "Sofort"
| "TravelPulse"
| "Trustly"
| "UsaToday"
| "Visa"
| "VisaHQ"
| "Zooz"
| "Elo"
| "KiwiGuarantee"
| "KiwiGuaranteeFull"
| "KiwiGuaranteeInline";
export interface Props extends Common.Globals {
readonly name: Name;
readonly size?: Size;
readonly grayScale?: boolean;
}