File "InspectorAdvancedControls.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/blocks/grid/components/InspectorAdvancedControls.js
File
size: 533 B (533 B bytes)
MIME-type: text/x-java
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
import { InspectorAdvancedControls } from '@wordpress/block-editor';
import HTMLAnchor from '../../../components/html-anchor';
import BlockLabel from '../../../extend/inspector-control/controls/block-label';
export default ( { anchor, blockLabel, setAttributes } ) => {
return (
<InspectorAdvancedControls>
<HTMLAnchor anchor={ anchor } setAttributes={ setAttributes } />
<BlockLabel
value={ blockLabel }
onChange={ ( value ) => setAttributes( { blockLabel: value } ) }
/>
</InspectorAdvancedControls>
);
};