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.

15 lines (11 loc) 249 B
// @flow import type { Tokens } from "@kiwicom/orbit-design-tokens/lib/index"; export type Theme = {| +orbit: Tokens, +transitions?: boolean, +rtl?: boolean, |}; export type ThemeProps = {| theme: Theme, |}; declare export default Theme;