Last active
April 16, 2016 19:08
-
-
Save sdurandeu/6750d928e73dedd9842e8d1fdcaabb80 to your computer and use it in GitHub Desktop.
Use SVGs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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