@telepat/ideon 0.1.0
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 +149 -0
- package/dist/deleteConfirmationFlow-JVQD3YU4.js +51 -0
- package/dist/ideon.d.ts +1 -0
- package/dist/ideon.js +8420 -0
- package/dist/preview/app-assets/favicon-ZM13UXfJ.svg +15 -0
- package/dist/preview/app-assets/index-FIB5ZtVD.js +219 -0
- package/dist/preview/app-assets/index-NfIf2cKW.css +1 -0
- package/dist/preview/index.html +14 -0
- package/package.json +98 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="64" height="64" viewBox="0 0 64 64"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Ideon favicon">
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="favBg" x1="8" y1="8" x2="56" y2="56" gradientUnits="userSpaceOnUse">
|
|
5
|
+
<stop offset="0" stop-color="#0B2A4A"/>
|
|
6
|
+
<stop offset="0.52" stop-color="#165DAA"/>
|
|
7
|
+
<stop offset="1" stop-color="#36A7E6"/>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
|
|
11
|
+
<rect x="4" y="4" width="56" height="56" rx="16" fill="url(#favBg)"/>
|
|
12
|
+
<path d="M22 15h20" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
|
|
13
|
+
<path d="M32 15v34" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
|
|
14
|
+
<path d="M22 49h20" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
|
|
15
|
+
</svg>
|