mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
547 B
XML
14 lines
547 B
XML
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/licenses/publicdomain/
|
||
|
-->
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
|
<linearGradient id="g" gradientUnits="objectBoundingBox" x2="0" y2="1">
|
||
|
<stop stop-color="lime" offset="0"/>
|
||
|
<stop stop-color="lime" stop-opacity="0" offset="1"/>
|
||
|
</linearGradient>
|
||
|
<circle cx="125" cy="125" r="125" id="circle" fill="lime"/>
|
||
|
<rect x="250" y="0" width="250" height="500" fill="url(#g)"/>
|
||
|
</svg>
|