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