/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { cart } from '@woocommerce/icons'; import { Icon } from '@wordpress/icons'; import { registerFeaturePluginBlockType } from '@woocommerce/block-settings'; /** * Internal dependencies */ import edit from './edit'; const settings = { apiVersion: 2, title: __( 'Mini Cart', 'woo-gutenberg-products-block' ), icon: { src: ( ), }, category: 'woocommerce', keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ], description: __( 'Display a mini cart widget.', 'woo-gutenberg-products-block' ), supports: { html: false, multiple: false, color: true, }, example: { attributes: { isPreview: true, }, }, attributes: { isPreview: { type: 'boolean', default: false, save: false, }, addToCartBehaviour: { type: 'string', default: 'none', }, }, edit, save() { return null; }, }; registerFeaturePluginBlockType( 'woocommerce/mini-cart', settings );