/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { SHOP_URL } from '@woocommerce/block-settings'; import { Icon, cart } from '@woocommerce/icons'; 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' ) }

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