UNPKG

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