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) 350 B
// @flow import * as React from "react"; import type { spaceAfter } from "../../common/getSpacingToken/index.js.flow"; import type { Status } from "../index.js.flow"; export type Props = {| +label?: React.Node, +offset?: number, +type: Status, +children: React.Node, ...spaceAfter, |}; declare export default React.ComponentType<Props>;