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