galaxy-charts 0.0.7 → 0.0.9
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.
- package/README.md +25 -3
- package/dist/galaxy-charts.css +1 -1
- package/dist/galaxy-charts.js +1223 -1214
- package/dist/galaxy-charts.svg +2 -8
- package/dist/galaxy-charts.umd.cjs +50 -50
- package/dist/galaxy-charts.xml +2 -2
- package/package.json +12 -9
- package/dist/galaxy-charts.txt +0 -21
package/dist/galaxy-charts.svg
CHANGED
|
@@ -2,12 +2,6 @@
|
|
|
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
4
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 100 100" class="size-6">
|
|
5
|
-
<
|
|
6
|
-
|
|
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)"/>
|
|
5
|
+
<circle cx="50" cy="50" r="45" stroke="#E30A17" stroke-width="5" fill="#FFFFFF"/>
|
|
6
|
+
<path d="M 50,5 A 45,45 0 0,1 95,50 L 50,50 Z" fill="#E30A17"/>
|
|
13
7
|
</svg>
|