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.

16 lines (12 loc) 388 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/featureicon/ */ import * as Common from "../common/common"; type Name = "TicketFlexi" | "TicketSaver" | "TicketStandard"; export interface Props extends Common.Global { readonly name: Name; readonly alt?: string; } declare const FeatureIcon: React.FunctionComponent<Props>; export { FeatureIcon, FeatureIcon as default };