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.

19 lines (14 loc) 412 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import { Tokens } from "@kiwicom/orbit-design-tokens"; export interface ThemeShape { readonly orbit: Tokens; readonly transitions?: boolean; readonly lockScrolling?: boolean; readonly rtl?: boolean; } export type ThemeType = { theme: ThemeShape; }; declare const Theme: ThemeShape; export default Theme;