UNPKG

447 BTypeScriptView Raw
1// @flow
2// Type definitions for @kiwicom/orbit-components
3// Project: http://github.com/kiwicom/orbit-components
4
5import { Tokens } from "@kiwicom/orbit-design-tokens";
6
7declare module "@kiwicom/orbit-components/theme";
8
9export interface ThemeShape {
10 readonly orbit: Tokens;
11 readonly transitions?: boolean;
12 readonly rtl?: boolean;
13}
14
15export type ThemeType = {
16 theme: ThemeShape;
17};
18
19declare const Theme: ThemeShape;
20export default Theme;