aboutsummaryrefslogtreecommitdiff
path: root/src/_includes/icon.njk
blob: d0137da8e56bc0ba145cf34329aab1b49b241874 (plain)
1
2
3
4
5
6
{% macro icon(name, stroke = 2, width = 24) %}
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-{{ name }}" width="{{ width }}" height="{{ width }}" viewBox="0 0 24 24" stroke-width="{{ stroke }}" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
  <path stroke="none" d="M0 0h24v24H0z" fill="none"/>
  {{ collections.icons | first }}
</svg>
{% endmacro %}