24 lines
696 B
JavaScript
24 lines
696 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Placeholder } from '@wordpress/components';
|
|
import { IconAllReviews } from '@woocommerce/block-components/icons';
|
|
|
|
const NoCategoryReviewsPlaceholder = () => {
|
|
return (
|
|
<Placeholder
|
|
className="wc-block-all-reviews"
|
|
icon={ <IconAllReviews className="block-editor-block-icon" /> }
|
|
label={ __( 'All Reviews', 'woo-gutenberg-products-block' ) }
|
|
>
|
|
{ __(
|
|
'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.',
|
|
'woo-gutenberg-products-block'
|
|
) }
|
|
</Placeholder>
|
|
);
|
|
};
|
|
|
|
export default NoCategoryReviewsPlaceholder;
|