/**
* 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';
registerFeaturePluginBlockType( 'woocommerce/checkout-actions-block', {
icon: {
src: (
<Icon
icon={ button }
className="wc-block-editor-components-block-icon"
/>
),
},
attributes,
edit: Edit,
save: Save,
} );