@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.
15 lines (11 loc) • 334 B
Flow
// @flow
/*
DOCUMENTATION: https://orbit.kiwi/components/orbitprovider/
*/
import * as React from "react";
import type { Theme } from "../defaultTheme.js.flow";
export type Props = {|
+theme: {| ...Theme |}, // allow other sub objects with spread
+children: React.Node,
|};
declare export default React.ComponentType<Props>;