Skip to content

Instantly share code, notes, and snippets.

@alexcarpenter
Created April 13, 2016 15:06
Show Gist options
  • Save alexcarpenter/ee333fb3c620dd0471c89ddd223247d2 to your computer and use it in GitHub Desktop.
Save alexcarpenter/ee333fb3c620dd0471c89ddd223247d2 to your computer and use it in GitHub Desktop.
{% macro sprite(id, viewBox, classes) %}
{% set viewBox = viewBox or "0 0 1 1"%}
<span class='sprite -{{id}} {{classes}}'>
<svg viewBox="{{viewBox}}"><use xlink:href='images/icons.svg#{{id}}' /></use></svg>
</span>
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment