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-title.js
import { Fragment, createElement, Component } from '@wordpress/element'

const Title = ({
	option: { label = '', desc = '', attr = {}, variation = 'simple' },
	labelEnd = null,
}) => (
	<Fragment>
		<div
			className="ct-title"
			{...{
				'data-type': variation,
				...(attr || {}),
			}}>
			<h3>
				{label}
				{labelEnd}
			</h3>
			{desc && (
				<div
					className="ct-option-description"
					dangerouslySetInnerHTML={{
						__html: desc,
					}}
				/>
			)}
		</div>
	</Fragment>
)

Title.renderingConfig = { design: 'none' }

export default Title