/** * External dependencies */ import { registerBlockType } from '@wordpress/blocks'; import { Icon, button } from '@wordpress/icons'; /** * Internal dependencies */ import metadata from './block.json'; import edit from './edit'; registerBlockType( metadata, { icon: { src: ( ), }, attributes: { ...metadata.attributes, }, edit, save() { return null; }, } );