mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +00:00

examples are not considered a feature of ThorVG; hence, they are excluded from the src directory. This change allows developers to concentrate more effectively on the core ThorVG sources for practical usages.
9 lines
420 B
XML
9 lines
420 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
<stop offset="0%" stop-color="#00bc9b" />
|
|
<stop offset="100%" stop-color="#5eaefd" />
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="47" stroke="url(#gradient)" stroke-width="6" fill="none" transform='rotate(90 50 50)'/>
|
|
</svg>
|