@xsolla/xui-icons-currency 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 +32 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @xsolla/xui-icons-currency
2
+
3
+ Icons for Xsolla virtual currency types.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @xsolla/xui-icons-currency
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { XsollaGold, XsollaPoint } from '@xsolla/xui-icons-currency';
15
+
16
+ function App() {
17
+ return (
18
+ <>
19
+ <XsollaGold size={24} />
20
+ <XsollaPoint size={24} color="blue" />
21
+ </>
22
+ );
23
+ }
24
+ ```
25
+
26
+ ## Available Icons
27
+
28
+ - `BaseIcon`
29
+ - `PlayTime`
30
+ - `XsollaGold`
31
+ - `XsollaPoint`
32
+ - `XsollaTicket`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-icons-currency",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "main": "./web/index.js",
5
5
  "module": "./web/index.mjs",
6
6
  "types": "./web/index.d.ts",