mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 03:54:25 +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.
20 lines
514 B
XML
20 lines
514 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs
|
|
id="defs4">
|
|
<linearGradient
|
|
id="linearGradient1"
|
|
x1="0"
|
|
y1="0"
|
|
x2="0.2"
|
|
y2="0.2"
|
|
spreadMethod="reflect">
|
|
<stop
|
|
style="stop-color:#ff0000;stop-opacity:1;"
|
|
offset="0"/>
|
|
<stop
|
|
style="stop-color:#0000ff;stop-opacity:1;"
|
|
offset="1"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="0" y="0" width="100" height="100" fill="url(#linearGradient1)"/>
|
|
</svg>
|