blob: b02d3a8ee288bdb5e50f024d31072642233678ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--
This image is licensed under a Creative Commons Attribution-ShareAlike 4.0 International license.
See more at <https://creativecommons.org/licenses/by-sa/4.0/>.
-->
<svg height="96" width="96" xmlns="http://www.w3.org/2000/svg">
<!-- masks -->
<mask id="strike">
<circle cx="48" cy="48" fill="white" r="36" />
<polygon fill="black" points="96,0 96,96 0,96" />
</mask>
<mask id="foreground">
<circle cx="48" cy="48" fill="white" r="36" />
<circle cx="48" cy="48" fill="black" r="24" />
<polygon fill="black" points="96,0 96,48 48,48" />
<polyline mask="url(#strike)" points="96,0 0,96" stroke="white" stroke-width="24" />
</mask>
<!-- fills -->
<rect fill="#01CD93" height="96" width="96" x="0" y="0" />
<rect fill="#00291B" height="96" mask="url(#foreground)" width="96" x="0" y="0" />
</svg>
|