18 lines
836 B
XML
18 lines
836 B
XML
|
|
<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- Chart bars -->
|
||
|
|
<rect x="15" y="35" width="8" height="15" fill="url(#grad2)" rx="2"/>
|
||
|
|
<rect x="25" y="25" width="8" height="25" fill="url(#grad2)" rx="2"/>
|
||
|
|
<rect x="35" y="20" width="8" height="30" fill="url(#grad2)" rx="2"/>
|
||
|
|
<!-- Trend line -->
|
||
|
|
<polyline points="19,42 29,32 39,27" stroke="#667eea" stroke-width="2" fill="none"/>
|
||
|
|
<!-- Data points -->
|
||
|
|
<circle cx="19" cy="42" r="2" fill="#764ba2"/>
|
||
|
|
<circle cx="29" cy="32" r="2" fill="#764ba2"/>
|
||
|
|
<circle cx="39" cy="27" r="2" fill="#764ba2"/>
|
||
|
|
</svg>
|