Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/options/options/
?? Go up: /home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/options
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