23 lines
No EOL
617 B
XML
23 lines
No EOL
617 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
|
<style>
|
|
.circle {
|
|
stroke: #4a5568;
|
|
fill: none;
|
|
}
|
|
.checkmark {
|
|
stroke: #4a5568;
|
|
fill: none;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
.circle {
|
|
stroke: #e2e8f0;
|
|
}
|
|
.checkmark {
|
|
stroke: #e2e8f0;
|
|
}
|
|
}
|
|
</style>
|
|
<rect width="32" height="32" fill="transparent"/>
|
|
<circle class="circle" cx="16" cy="16" r="13" stroke-width="2"/>
|
|
<path class="checkmark" d="M10 16l4 4 8-8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg> |