27 lines
493 B
TypeScript
27 lines
493 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { Icon, button } from '@wordpress/icons';
|
|
import { registerBlockType } from '@wordpress/blocks';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import attributes from './attributes';
|
|
import { Edit, Save } from './edit';
|
|
import './style.scss';
|
|
|
|
registerBlockType( 'woocommerce/proceed-to-checkout-block', {
|
|
icon: {
|
|
src: (
|
|
<Icon
|
|
icon={ button }
|
|
className="wc-block-editor-components-block-icon"
|
|
/>
|
|
),
|
|
},
|
|
attributes,
|
|
edit: Edit,
|
|
save: Save,
|
|
} );
|