icon.html.twig 400 B

123456789101112
  1. <svg
  2. id="{{ id|default(random()) }}"
  3. class="icon{% if classes is defined %}{{ ' ' ~ classes }}{% endif %}"
  4. width="{{ width|default('24') }}"
  5. height="{{ height|default('24') }}"
  6. fill="none"
  7. stroke="currentColor"
  8. stroke-width="2"
  9. stroke-linecap="round"
  10. stroke-linejoin="round">
  11. <use xlink:href="{{ asset('icons') }}/feather-sprite.svg#{{ icon }}"/>
  12. </svg>