Created
May 12, 2023 07:29
-
-
Save jwahdatehagh/a91efbdca06dc23733c7c576b89567ae 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
<svg viewBox="0 0 8 8"> | |
<rect width="8" height="8" fill="#000" /> | |
<g | |
fill="transparent" | |
stroke="white" | |
stroke-width="0.04" | |
transform="translate(4, 4)" | |
> | |
<use href="#infinity" /> | |
<use href="#infinity" transform="rotate(45)" /> | |
<use href="#infinity" transform="rotate(90)" /> | |
<use href="#infinity" transform="rotate(135)" /> | |
</g> | |
<defs> | |
<path id="drop" d="M 1 0 | |
A 1 1, 0, 1, 1, 0 1 | |
L 0 0 Z" | |
/> | |
<g id="infinity" transform="rotate(-45)"> | |
<use href="#drop" /> | |
<use href="#drop" transform="rotate(180)" /> | |
</g> | |
</defs> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment