Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Created June 14, 2018 10:27
Show Gist options
  • Save knorthfield/3eeddfc2ad530afdbf278d2cb3b55006 to your computer and use it in GitHub Desktop.
Save knorthfield/3eeddfc2ad530afdbf278d2cb3b55006 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg">
<symbol id="calculator" viewBox="0 0 48 48">
<path class="icon-primary" style="fill: var(--icon-primary-color, black)" d="..."></path>
<path class="icon-accent" style="fill: var(--icon-accent-color, gray)" d="..."></path>
</symbol>
</svg>
<style>
.icon {
--icon-primary-color: DarkBlue;
--icon-accent-color: DeepSkyBlue;
}
.icon-primary { fill: #ff6600; }
</style>
<svg class="icon"><use xlink:href="icons.svg#calculator"></use></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment