@xsolla/xui-icons 0.96.0 → 0.97.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.
Files changed (2) hide show
  1. package/README.md +47 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # @xsolla/xui-icons
2
+
3
+ General-purpose UI icons built on Lucide, wrapped in the XUI Icon primitive.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @xsolla/xui-icons
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { Check, Search, ShoppingCart } from '@xsolla/xui-icons';
15
+
16
+ function App() {
17
+ return (
18
+ <>
19
+ <Check size={24} color="green" />
20
+ <Search size={20} />
21
+ <ShoppingCart size={24} color="blue" />
22
+ </>
23
+ );
24
+ }
25
+ ```
26
+
27
+ ## Available Icons
28
+
29
+ - `Check`
30
+ - `X`
31
+ - `Copy`
32
+ - `Eye`
33
+ - `EyeOff`
34
+ - `ArrowLeft`
35
+ - `ArrowRight`
36
+ - `Settings`
37
+ - `Minus`
38
+ - `AlertCircle`
39
+ - `CreditCard`
40
+ - `Menu`
41
+ - `Bell`
42
+ - `User`
43
+ - `Search`
44
+ - `Home`
45
+ - `ShoppingCart`
46
+ - `Upload`
47
+ - `File`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-icons",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "main": "./web/index.js",
5
5
  "types": "./web/index.d.ts",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "build:native": "PLATFORM=native tsup"
9
9
  },
10
10
  "dependencies": {
11
- "@xsolla/xui-primitives-core": "0.96.0",
11
+ "@xsolla/xui-primitives-core": "0.97.0",
12
12
  "lucide-react": "^0.470.0"
13
13
  },
14
14
  "peerDependencies": {