2021-09-21 12:20:42 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { Icon, button } from '@wordpress/icons';
|
2022-08-15 05:45:15 +00:00
|
|
|
import { registerBlockType } from '@wordpress/blocks';
|
2021-09-21 12:20:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import attributes from './attributes';
|
|
|
|
import { Edit, Save } from './edit';
|
|
|
|
|
2022-08-15 05:45:15 +00:00
|
|
|
registerBlockType( 'woocommerce/proceed-to-checkout-block', {
|
2021-09-21 12:20:42 +00:00
|
|
|
icon: {
|
2021-12-10 14:32:44 +00:00
|
|
|
src: (
|
|
|
|
<Icon
|
|
|
|
icon={ button }
|
|
|
|
className="wc-block-editor-components-block-icon"
|
|
|
|
/>
|
|
|
|
),
|
2021-09-21 12:20:42 +00:00
|
|
|
},
|
|
|
|
attributes,
|
|
|
|
edit: Edit,
|
|
|
|
save: Save,
|
|
|
|
} );
|