/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Icon, button } from '@wordpress/icons'; export const BLOCK_TITLE: string = __( 'Add to Cart Button', 'woo-gutenberg-products-block' ); export const BLOCK_ICON: JSX.Element = ( ); export const BLOCK_DESCRIPTION: string = __( 'Display a call to action button which either adds the product to the cart, or links to the product page.', 'woo-gutenberg-products-block' ); export const BLOCK_NAME = 'woocommerce/product-button';