templates/includes/cards/partials/label.html.twig line 1

Open in your IDE?
  1. {% if not position|default() %}
  2.     {% set position = 'relative' %}
  3. {% endif %}
  4. <span
  5.     class="{{ position }} flex items-center px-3 py-2 text-xs text-blue text-center bg-gray-100 rounded-full whitespace-nowrap">
  6.     {% if (labelIcon|default()) %}
  7.         {{ icon.getThumbnail('sector-card-icon-small').html({
  8.             pictureAttributes: {class: 'mr-2'},
  9.         }) | raw }}
  10.     {% endif %}
  11.     {{ label | trans }}
  12. </span>