| 1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * External dependencies
- */
- import { getCategories, setCategories } from '@wordpress/blocks';
- import { __ } from '@wordpress/i18n';
- import { woo, atom, Icon } from '@woocommerce/icons';
- /**
- * Internal dependencies
- */
- import '../css/editor.scss';
- import '../css/style.scss';
- import './filters/block-list-block';
- import './filters/get-block-attributes';
- setCategories( [
- ...getCategories().filter(
- ( { slug } ) =>
- slug !== 'woocommerce' && slug !== 'woocommerce-product-elements'
- ),
- {
- slug: 'woocommerce',
- title: __( 'WooCommerce', 'woocommerce' ),
- icon: <Icon srcElement={ woo } />,
- },
- {
- slug: 'woocommerce-product-elements',
- title: __(
- 'WooCommerce Product Elements',
- 'woocommerce'
- ),
- icon: <Icon srcElement={ atom } style={ { fill: '#874FB9' } } />,
- },
- ] );
|