/** * External dependencies */ import { registerExperimentalBlockType } from '@woocommerce/block-settings'; /** * Internal dependencies */ import sharedConfig from '../shared/config'; import attributes from './attributes'; import edit from './edit'; import { BLOCK_TITLE as title, BLOCK_ICON as icon, BLOCK_DESCRIPTION as description, } from './constants'; const blockConfig = { title, description, icon: { src: icon, foreground: '#874FB9', }, attributes, edit, }; registerExperimentalBlockType( 'woocommerce/product-stock-indicator', { ...sharedConfig, ...blockConfig, } );