/** * External dependencies */ import { filledCart } from '@woocommerce/icons'; import { Icon } from '@wordpress/icons'; import { registerBlockType } from '@wordpress/blocks'; /** * Internal dependencies */ import { Edit, Save } from './edit'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore -- TypeScript expects some required properties which we already // registered in PHP. registerBlockType( 'woocommerce/filled-mini-cart-contents-block', { icon: { src: ( ), }, edit: Edit, save: Save, } );