@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.
14 lines (13 loc) • 400 B
TypeScript
import { defaultTokens } from "@kiwicom/orbit-design-tokens";
export interface Theme {
readonly orbit: typeof defaultTokens;
readonly transitions?: boolean;
readonly lockScrolling?: boolean;
readonly lockScrollingBarGap?: boolean;
readonly rtl?: boolean;
}
declare const defaultTheme: Theme;
export interface ThemeProps {
readonly theme: Theme;
}
export default defaultTheme;