galaxy-charts 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,13 @@
1
1
  <?xml version="1.0" standalone="no"?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
3
  "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
5
- <path stroke-linecap="round" stroke-linejoin="round" fill="red" d="M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5V6Z" />
6
- <path stroke-linecap="round" stroke-linejoin="round" fill="white" d="M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3v7.5Z" />
7
- </svg>
8
-
4
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 100 100" class="size-6">
5
+ <defs>
6
+ <linearGradient id="redGradient" x1="0%" y1="0%" x2="100%" y2="100%">
7
+ <stop offset="0%" style="stop-color:#C8102E;stop-opacity:1" />
8
+ <stop offset="100%" style="stop-color:#FF5F5F;stop-opacity:1" />
9
+ </linearGradient>
10
+ </defs>
11
+ <circle cx="50" cy="50" r="45" stroke="url(#redGradient)" stroke-width="5" fill="#FFFFFF"/>
12
+ <path d="M 50,5 A 45,45 0 0,1 95,50 L 50,50 Z" fill="url(#redGradient)"/>
13
+ </svg>