34 lines
694 B
TypeScript
34 lines
694 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { registerBlockType, type BlockConfiguration } from '@wordpress/blocks';
|
|
import { InnerBlocks } from '@wordpress/block-editor';
|
|
import { Icon } from '@wordpress/icons';
|
|
import { totals } from '@woocommerce/icons';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import edit from './edit';
|
|
import metadata from './block.json';
|
|
import attributes from './attributes';
|
|
|
|
registerBlockType(
|
|
metadata as BlockConfiguration,
|
|
{
|
|
icon: {
|
|
src: (
|
|
<Icon
|
|
icon={ totals }
|
|
className="wc-block-editor-components-block-icon"
|
|
/>
|
|
),
|
|
},
|
|
edit,
|
|
save() {
|
|
return <InnerBlocks.Content />;
|
|
},
|
|
attributes,
|
|
} as unknown as Partial< BlockConfiguration >
|
|
);
|