Skip to content

Instantly share code, notes, and snippets.

@sdurandeu
Last active April 16, 2016 19:08
Show Gist options
  • Select an option

  • Save sdurandeu/6750d928e73dedd9842e8d1fdcaabb80 to your computer and use it in GitHub Desktop.

Select an option

Save sdurandeu/6750d928e73dedd9842e8d1fdcaabb80 to your computer and use it in GitHub Desktop.
Use SVGs
<!-- Definition -->
<svg style="display: none" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="bank-icon">
<path d="M512 480v-32h-32v-192h32v-32h-96v32h32v192h-96v-192h32v-32h-96v32h32v192h-96v-192h32v-32h-96v32h32v192h-96v-192h32v-32h-96v32h32v192h-32v32h-32v32h544v-32h-32z"></path>
<path d="M256 0h32l256 160v32h-544v-32l256-160z"></path>
</symbol>
</svg>
<!-- Usage -->
<div class="col col-20">
<svg class="bank-icon" viewBox="0 0 544 512">
<use xlink:href="#bank-icon" />
</svg>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment