File "no-reviews-placeholder.js"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/no-reviews-placeholder.js
File size: 684 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { __ } from '@wordpress/i18n';
import { Placeholder } from '@wordpress/components';
import { Icon, discussion } from '@woocommerce/icons';

const NoCategoryReviewsPlaceholder = () => {
	return (
		<Placeholder
			className="wc-block-all-reviews"
			icon={
				<Icon
					srcElement={ discussion }
					className="block-editor-block-icon"
				/>
			}
			label={ __( 'All Reviews', 'woocommerce' ) }
		>
			{ __(
				'This block shows a list of all product reviews. Your store does not have any reviews yet, but they will show up here when it does.',
				'woocommerce'
			) }
		</Placeholder>
	);
};

export default NoCategoryReviewsPlaceholder;