mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
276 B
XML
9 lines
276 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<filter id="f" x="0" y="0" width="100%" height="100%">
|
||
|
<feGaussianBlur in="SourceGraphic" stdDeviation="0.1"/>
|
||
|
</filter>
|
||
|
<g filter="url(#f)">
|
||
|
<rect x="0" y="0" width="100" height="100" style="fill: lime;"/>
|
||
|
</g>
|
||
|
</svg>
|