2021-09-16 12:16:21 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2023-07-27 08:08:29 +00:00
|
|
|
import { Icon } from '@wordpress/icons';
|
2022-08-15 05:45:15 +00:00
|
|
|
import { registerBlockType } from '@wordpress/blocks';
|
2021-09-16 12:16:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2023-07-27 08:08:29 +00:00
|
|
|
import expressIcon from '../../../cart-checkout-shared/icon';
|
2021-09-16 12:16:21 +00:00
|
|
|
import { Edit, Save } from './edit';
|
|
|
|
|
2022-08-15 05:45:15 +00:00
|
|
|
registerBlockType( 'woocommerce/checkout-express-payment-block', {
|
2021-09-16 12:16:21 +00:00
|
|
|
icon: {
|
2021-12-10 14:32:44 +00:00
|
|
|
src: (
|
|
|
|
<Icon
|
2023-07-27 08:08:29 +00:00
|
|
|
style={ { fill: 'none' } } // this is needed for this particular svg
|
|
|
|
icon={ expressIcon }
|
2021-12-10 14:32:44 +00:00
|
|
|
className="wc-block-editor-components-block-icon"
|
|
|
|
/>
|
|
|
|
),
|
2021-09-16 12:16:21 +00:00
|
|
|
},
|
|
|
|
edit: Edit,
|
|
|
|
save: Save,
|
|
|
|
} );
|