UNPKG

@findify/react-components

Version:
7 lines (5 loc) 270 B
import { createElement, useMemo } from 'react'; export default (defaultTheme) => (Component) => ({ theme = {}, ...props }) => { const _theme = useMemo(() => ({ ...defaultTheme, ...theme }), [theme]); return createElement(Component, { ...props, theme: _theme }); };