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 (10 loc) 285 B
// @flow import * as React from "react"; export type Context = {| +basis?: number | string, +hasError?: boolean, +desktopRadio?: boolean, +isContent?: boolean, |}; export type PricingTableContextType = React.Context<Context>; declare export default PricingTableContextType;