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