mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
10 lines
430 B
XML
10 lines
430 B
XML
|
<svg x="0" y="0" width="300" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||
|
<defs>
|
||
|
<linearGradient id="gradient" x1="0" y1="0" y2="300" gradientUnits="userSpaceOnUse">
|
||
|
<stop offset="0" stop-color="yellow"></stop>
|
||
|
<stop offset="1" stop-color="blue"></stop>
|
||
|
</linearGradient>
|
||
|
</defs>
|
||
|
<rect x="0" y="0" width="300" height="300" fill="url(#gradient)"></rect>
|
||
|
</svg>
|