Last active
August 29, 2016 22:24
-
-
Save vm6ej04/6c666c5f3a8140f039408b7a6bf24545 to your computer and use it in GitHub Desktop.
SVG Sprite template
This file contains 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
<!-- FILENAME.SVG --> | |
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<defs> | |
<symbol id="CUSTOM_ID" viewBox="0 0 WIDTH HEIGHT"> | |
<title>TITLE</title> | |
<!-- IT'S EASIEST TO MAKE A COMPOUND PATH AND OPTIMIZED FOR SIMPLICITY --> | |
<path fill="currentColor" class="CUSTOM_CLASS" d=""/> <!-- currentColor will be determined by parent's color --> | |
</symbol> | |
<symbol id="CUSTOM_ID" viewBox="0 0 WIDTH HEIGHT"> | |
<title>TITLE</title> | |
<path fill="currentColor" class="CUSTOM_CLASS" d=""/> | |
</symbol> | |
</defs> | |
</svg> | |
<!--USAGE in HTML --> | |
<svg role="img" title="TITLE"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/RELATIVE/PATH/TO/FILE/FILENAME.svg#symbolID"></use></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment