Created
October 2, 2024 15:54
-
-
Save Princesseuh/9c583c141229713bd4d596fcc75964dc to your computer and use it in GitHub Desktop.
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
<!-- 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