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.

15 lines (12 loc) 445 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import type * as Common from "../common/types"; type Sizes = "extraSmall" | "small" | "medium" | "large" | "display"; export interface Props extends Common.Globals { readonly size?: Sizes; readonly title?: string; readonly description?: string; readonly primary?: string; readonly secondary?: string; readonly ariaLabelledby?: string; }