UNPKG

@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.

13 lines (9 loc) 277 B
/* DOCUMENTATION: https://orbit.kiwi/components/featureicon/ */ import type * as Common from "../common/types"; type Name = "TicketFlexi" | "TicketSaver" | "TicketStandard"; export interface Props extends Common.Globals { readonly name: Name; readonly alt?: string; }