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.

14 lines (11 loc) 443 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import type * as Common from "../common/types"; export type Indent = "none" | "small" | "medium" | "large" | "XLarge" | "XXLarge"; export type Align = "left" | "center" | "right"; export interface Props extends Common.SpaceAfter { indent?: Indent; type?: "solid" | "dashed" | "dotted" | "double" | "none"; color?: string; align?: Align; }