Skip to content

Instantly share code, notes, and snippets.

@ps-team
Created March 15, 2016 11:51
Show Gist options
  • Save ps-team/83c0c1f6b6ca8467b669 to your computer and use it in GitHub Desktop.
Save ps-team/83c0c1f6b6ca8467b669 to your computer and use it in GitHub Desktop.
<body>
<!-- svg file -->
<svg style="display: none;" aria-hidden="true">
<symbol id="icon-twitter" ...><path ...></path></symbol>
<symbol id="icon-instagram" ...><path ...></path></symbol>
</svg>
<!-- svg use case, twitter icon -->
<svg xmlns="http://www.w3.org/2000/svg" class="icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg>
<!-- svg use case, instagram icon -->
<svg xmlns="http://www.w3.org/2000/svg" class="icon-instagram">
<use xlink:href="#icon-instagram"></use>
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment