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.

17 lines (13 loc) 363 B
// @flow /* DOCUMENTATION: https://orbit.kiwi/components/radio/ */ import type { Globals } from "../common/common.js.flow"; export type Type = "default" | "legroom" | "selected" | "unavailable"; export type Size = "medium" | "small"; export type Props = {| +type?: Type, +size?: Size, ...Globals, |}; declare export default React$ComponentType<Props>;