Files
atst/templates/components/label.html

9 lines
239 B
HTML

{% from "components/icon.html" import Icon %}
{% macro Label(icon, text, type=None, classes="") -%}
<span class='label {% if type %}label--{{ type }}{% endif %} {{ classes }}'>
{{ Icon(icon) }} {{ text }}
</span>
{%- endmacro %}