UNPKG

@wordpress/block-editor

Version:
10 lines (8 loc) 295 B
/** * Internal dependencies */ import { __experimentalUseGradient } from './use-gradient'; export const withGradient = ( WrappedComponent ) => ( props ) => { const { gradientValue } = __experimentalUseGradient(); return <WrappedComponent { ...props } gradientValue={ gradientValue } />; };