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) 212 B
// @flow import type { Tokens } from "@kiwicom/orbit-design-tokens"; export type Theme = {| +orbit: Tokens, +rtl: boolean, |}; export type ThemeProps = {| theme: Theme, |}; declare export default Theme;