@semiont/react-ui 0.2.30-build.47 → 0.2.30-build.49

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/react-ui",
3
- "version": "0.2.30-build.47",
3
+ "version": "0.2.30-build.49",
4
4
  "description": "React components and hooks for Semiont",
5
5
  "main": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.mts",
@@ -18,6 +18,7 @@
18
18
  "files": [
19
19
  "dist",
20
20
  "translations",
21
+ "public",
21
22
  "README.md"
22
23
  ],
23
24
  "scripts": {
Binary file
@@ -0,0 +1,20 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="semiontGradient" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" style="stop-color:#00FFFF;stop-opacity:1" />
5
+ <stop offset="100%" style="stop-color:#0080FF;stop-opacity:1" />
6
+ </linearGradient>
7
+ <style>
8
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&amp;display=swap');
9
+ </style>
10
+ </defs>
11
+ <!-- Dark background circle -->
12
+ <rect width="512" height="512" fill="#1a1a1a"/>
13
+ <!-- S letter in Orbitron font with gradient -->
14
+ <text x="256" y="380"
15
+ font-family="'Orbitron', sans-serif"
16
+ font-weight="900"
17
+ font-size="380"
18
+ text-anchor="middle"
19
+ fill="url(#semiontGradient)">S</text>
20
+ </svg>
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Semiont",
3
+ "short_name": "Semiont",
4
+ "icons": [
5
+ {
6
+ "src": "/favicons/android-chrome-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png"
9
+ },
10
+ {
11
+ "src": "/favicons/android-chrome-512x512.png",
12
+ "sizes": "512x512",
13
+ "type": "image/png"
14
+ }
15
+ ],
16
+ "theme_color": "#1a1a1a",
17
+ "background_color": "#1a1a1a",
18
+ "display": "standalone"
19
+ }