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.

25 lines (19 loc) 863 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; import * as Common from "../common/common"; type Sizes = "extraSmall" | "small" | "medium" | "large" | "display"; export interface Props extends Common.Global { readonly size?: Sizes; readonly title?: string; readonly desciption?: string; readonly primary?: string; readonly secondary?: string; readonly ariaLabelledby?: string; } declare const SmartPassIllustration: React.FunctionComponent<Props>; export declare const SmartPassV1: typeof SmartPassIllustration; export declare const SmartPassV2: typeof SmartPassIllustration; export declare const SmartPassV3: typeof SmartPassIllustration; export declare const SmartPassV4: typeof SmartPassIllustration; export declare const SmartPassV5: typeof SmartPassIllustration;