blob: 9a5becaa9d7fa51ea61e6a4d82d2bfd9cf3376f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
<defs>
<radialGradient id="a" cx="0" cy="0" r="1">
<stop offset="0" stop-color="#ddf"/>
<stop offset="1" stop-color="#46b"/>
</radialGradient>
</defs>
<g stroke="#024" stroke-width="2">
<path d="M44 14l1 2v25l-1 1H4l-1-1V18v0l1-6 1-2h17l2 2v1l1 1z" fill="url(#a)"/>
<path d="M3 18h21l1-1v-3" fill="none"/>
</g>
</svg>
|