2021-10-19 11:23:33 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2022-02-01 16:54:38 +00:00
|
|
|
import { Icon, payment } from '@wordpress/icons';
|
2022-08-15 05:45:15 +00:00
|
|
|
import { registerBlockType } from '@wordpress/blocks';
|
2021-10-19 11:23:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { Edit, Save } from './edit';
|
|
|
|
|
2022-08-15 05:45:15 +00:00
|
|
|
registerBlockType( 'woocommerce/cart-express-payment-block', {
|
2021-10-19 11:23:33 +00:00
|
|
|
icon: {
|
2021-12-10 14:32:44 +00:00
|
|
|
src: (
|
|
|
|
<Icon
|
2022-02-01 16:54:38 +00:00
|
|
|
icon={ payment }
|
2021-12-10 14:32:44 +00:00
|
|
|
className="wc-block-editor-components-block-icon"
|
|
|
|
/>
|
|
|
|
),
|
2021-10-19 11:23:33 +00:00
|
|
|
},
|
|
|
|
edit: Edit,
|
|
|
|
save: Save,
|
|
|
|
} );
|