@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 (13 loc) • 499 B
TypeScript
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import type * as React from "react";
import type * as Common from "../../common/types";
import type { Spacing } from "../../Stack/types";
export interface Props extends Common.Globals {
readonly label?: React.ReactNode;
readonly value: React.ReactNode;
readonly icon?: React.ReactNode;
readonly direction?: "row" | "column";
readonly spacing?: Spacing;
readonly size?: "normal" | "large";
}