2021-09-16 12:16:21 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { Icon, button } from '@wordpress/icons';
|
|
|
|
import { registerFeaturePluginBlockType } from '@woocommerce/block-settings';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import attributes from './attributes';
|
|
|
|
import { Edit, Save } from './edit';
|
|
|
|
import metadata from './block.json';
|
|
|
|
|
|
|
|
registerFeaturePluginBlockType( metadata, {
|
|
|
|
icon: {
|
2021-12-10 14:32:44 +00:00
|
|
|
src: (
|
|
|
|
<Icon
|
|
|
|
icon={ button }
|
|
|
|
className="wc-block-editor-components-block-icon"
|
|
|
|
/>
|
|
|
|
),
|
2021-09-16 12:16:21 +00:00
|
|
|
},
|
|
|
|
attributes,
|
|
|
|
edit: Edit,
|
|
|
|
save: Save,
|
|
|
|
} );
|