Skip to content

Instantly share code, notes, and snippets.

@Princesseuh
Created October 2, 2024 15:54
Show Gist options
  • Save Princesseuh/9c583c141229713bd4d596fcc75964dc to your computer and use it in GitHub Desktop.
Save Princesseuh/9c583c141229713bd4d596fcc75964dc to your computer and use it in GitHub Desktop.
<!-- Usage -->
<svg width="26px" height="26px">
<title>Some Title</title>
<use xlink:href="#icon:arrow-up" width="26px" height="26px"></use>
</svg>
<!-- Definitions, somewhere in the HTML -->
<svg style="position: absolute; width: 0; height: 0; overflow: hidden">
<symbol
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
aria-hidden="true"
id="icon:arrow-up"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M11 20V7.825l-5.6 5.6L4 12l8-8l8 8l-1.4 1.425l-5.6-5.6V20z"
></path>
</svg>
</symbol>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment