/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { SHOP_URL } from '@woocommerce/block-settings'; import { cart } from '@woocommerce/icons'; import { Icon } from '@wordpress/icons'; /** * Internal dependencies */ import './style.scss'; const EmptyCart = () => { return (
{ __( 'Your cart is empty!', 'woo-gutenberg-products-block' ) }

{ __( "Checkout is not available whilst your cart is empty—please take a look through our store and come back when you're ready to place an order.", 'woo-gutenberg-products-block' ) }

{ SHOP_URL && ( { __( 'Browse store', 'woo-gutenberg-products-block' ) } ) }
); }; export default EmptyCart;