HOME


Mini Shell 1.0
DIR: /home/otwalrll/feedafricafarm.com/wp-content/themes/blocksy/static/js/options/options/
Upload File :
Current File : /home/otwalrll/feedafricafarm.com/wp-content/themes/blocksy/static/js/options/options/ct-spacer.js
import { Fragment, createElement, Component } from '@wordpress/element'
import classnames from 'classnames'

const Spacer = ({
	option: { height = 10, attr: { class: className, ...attr } = {} },
}) => (
	<div
		className={classnames('ct-spacer', className)}
		{...attr}
		style={{
			height: `${height}px`,
		}}
	/>
)

Spacer.renderingConfig = { design: 'none' }

export default Spacer