@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.
16 lines (12 loc) • 460 B
TypeScript
// Type definitions for @kiwicom/orbit-components
// Project: http://github.com/kiwicom/orbit
import * as React from "react";
import { Translations } from "../Dictionary";
import { ThemeShape } from "../defaultTheme";
interface Props {
readonly theme: ThemeShape;
readonly dictionary?: Translations;
readonly children: React.ReactNode;
}
declare const ThemeProvider: React.FunctionComponent<Props>;
export { ThemeProvider, ThemeProvider as default };