8 lines
577 B
XML
8 lines
577 B
XML
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'>
|
|
<mask id="check" mask-type="luminance">
|
|
<rect x="0" y="0" width="200" height="200" fill="white" />
|
|
<polyline points='30,70 90,130 160,30' fill='none' stroke='black' stroke-width='40' stroke-linecap='round' stroke-linejoin='round' />
|
|
</mask>
|
|
<circle cx='100' cy='100' r='60' fill='none' stroke='white' stroke-width='20' mask='url(#check)' />
|
|
<polyline points='30,70 90,130 160,30' fill='none' stroke='white' stroke-width='20' stroke-linecap='round' stroke-linejoin='round' />
|
|
</svg> |