custom/plugins/DmfManuTheme/src/Resources/views/storefront/component/review/point.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/review/point.html.twig' %}
  2. {% block component_review_point %}
  3.     {% if size is not defined %}
  4.         {% set size = 'xs' %}
  5.     {% endif %}
  6.     <span class="product-review-point">
  7.         {% if type == 'half' %}
  8.             <div class="point-container">
  9.                 <div class="point-rating point-partial-placeholder">
  10.                     {% sw_icon 'star-empty' style { 'color': 'light', 'size': size, 'pack': 'default' } %}
  11.                 </div>
  12.                 <div class="point-rating point-partial" style="clip-path: inset(0 {{ (1 - left) * 100 }}% 0 0)">
  13.                     {% sw_icon 'star-filled' style { 'color': 'review', 'size': size, 'pack': 'default' } %}
  14.                 </div>
  15.             </div>
  16.         {% elseif type == 'blank' %}
  17.             {% sw_icon 'star-empty' style { 'color': 'light', 'size': size, 'pack': 'default' } %}
  18.         {% else %}
  19.             {% sw_icon 'star-filled' style { 'color': 'review', 'size': size, 'pack': 'default' } %}
  20.         {% endif %}
  21.     </span>
  22. {% endblock %}