import { TextControl, SelectControl } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; const UnitControl = ({ label, value, unit = 'px', onValueChange, onUnitChange, options = [ { label: 'px', value: 'px' }, { label: 'em', value: 'em' }, { label: '%', value: '%' }, { label: 'rem', value: 'rem' }, ], style = {}, }) => { return (