Last active
February 24, 2026 13:12
-
-
Save lineargraph/103a457bad5e1c6a0f7844451d69a70e to your computer and use it in GitHub Desktop.
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
| <svg xmlns="http://www.w3.org/2000/svg" width="40" height="14" viewBox="-10 1 40 14"> | |
| <g class="big-leads"> | |
| <polyline mask="url(#cut-stripes)" fill="none" id="letter-N" points="1.5 14 1.5 2 8.5 14 8.5 2" stroke="#00838C" stroke-linejoin="round" stroke-linecap="round" /> | |
| <polyline id="letter-E" fill="none" stroke="#00838C" points="17 2 11 2 11 14 17 14" stroke-linejoin="round" stroke-linecap="round" /> | |
| </g> | |
| <g class="small-leads"> | |
| <polyline id="letter-N-small" points="12 9.5 12 14 9 9.5 9 14" fill="none" stroke="#00838C" stroke-linejoin="round" stroke-linecap="round" /> | |
| <polyline id="letter-E-small" points="17 14 14 14 14 11.75 17 11.75 14 11.75 14 9.5 17 9.5" stroke="#00838C" fill="none" stroke-linejoin="round" stroke-linecap="round" /> | |
| </g> | |
| <polyline id="letter-A" fill="none" stroke="#00838C" points="19.5 14 23.5 2 27.5 14" stroke-linecap="round" stroke-linejoin="round" /> | |
| <defs> | |
| <mask id="cut-A"> | |
| <rect width="1000" height="1000" x="-100" y="-100" fill="white" /> | |
| <polyline stroke="black" fill="none" points="19.5 14 23.5 2 27.5 14" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> | |
| <polygon stroke="black" fill="black" points="23.5 2 23.5 5 200 5 200 2" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> | |
| <polyline class="E-cut" fill="none" stroke="black" points="10.5 0 10.5 14" /> | |
| <polyline class="E-cut" fill="none" stroke="black" points="11.5 4 11.5 6" /> | |
| </mask> | |
| <mask id="cut-stripes"> | |
| <rect width="1000" height="1000" x="-100" y="-100" fill="white" /> | |
| <rect width="1000" height="9" x="0" y="0" fill="black" /> | |
| </mask> | |
| </defs> | |
| <g id="stripes" mask="url(#cut-A)"> | |
| <g> | |
| <line x1="-10" x2="26" y1="2" y2="2" stroke="#00838C" /> | |
| <line x1="-10" x2="26" stroke="#00838C" y1="5" y2="5" stroke-width="1" /> | |
| </g> | |
| <line x1="-10" x2="26" stroke="#00838C" y1="8" y2="8" /> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment