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) 532 B
// @flow // 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"; declare module "@kiwicom/orbit-components/lib/ThemeProvider"; interface Props { readonly theme: ThemeShape; readonly dictionary?: Translations; readonly children: React.ReactNode; } declare const ThemeProvider: React.FunctionComponent<Props>; export { ThemeProvider, ThemeProvider as default };