24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { Icon, customPostType } from '@wordpress/icons';
|
|
import { registerFeaturePluginBlockType } from '@woocommerce/block-settings';
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { Edit, Save } from './edit';
|
|
import metadata from './block.json';
|
|
|
|
registerFeaturePluginBlockType( metadata, {
|
|
icon: {
|
|
src: (
|
|
<Icon
|
|
icon={ customPostType }
|
|
className="wc-block-editor-components-block-icon"
|
|
/>
|
|
),
|
|
},
|
|
edit: Edit,
|
|
save: Save,
|
|
} );
|