icon.njk 225 B

12345
  1. {% macro svg(name, width = 16, height = 16, color = 'currentColor') %}
  2. <svg class="bi" width="{{ width }}" height="{{ height }}" fill="currentColor">
  3. <use xlink:href="/icons/icons.svg#{{ name }}"/>
  4. </svg>
  5. {% endmacro %}