import { createElement, RawHTML } from '@wordpress/element' import { __, sprintf } from 'ct-i18n' const RatingPreview = ({ product }) => { const width = (parseFloat(product?.average_rating) / 5) * 100 + '%' return (
{sprintf( __('Rated %s out of 5', 'blocksy-companion'), product?.average_rating )}
) } export default RatingPreview