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.

12 lines 340 B
import * as React from "react"; import defaultTheme from "../../defaultTheme"; export const ThemeContext = /*#__PURE__*/React.createContext(defaultTheme); const ThemeProvider = ({ children, theme }) => { return /*#__PURE__*/React.createElement(ThemeContext.Provider, { value: theme }, children); }; export default ThemeProvider;