blob: 45ed05d658ff79c61ac9ff91b3fcb81cac9cb39c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
viewBox="0 0 40 40"
height="40"
width="40">
<defs>
<linearGradient id="linearGradient"
gradientUnits="userSpaceOnUse"
x1="0"
y1="0"
x2="40"
y2="40">
<stop offset="0" stop-color="#ffffff"/>
<stop offset="1" stop-color="#6451a0"/>
</linearGradient>
</defs>
<g>
<rect
y="0"
x="0"
height="40"
width="40"
fill="url(#linearGradient)"/>
</g>
</svg>
|