@xsolla/xui-icons-payment 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 +48 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # @xsolla/xui-icons-payment
2
+
3
+ Payment method card-scheme icons (Visa, Mastercard, PayPal, etc.).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @xsolla/xui-icons-payment
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { Visa, Mastercard, Paypal } from '@xsolla/xui-icons-payment';
15
+
16
+ function App() {
17
+ return (
18
+ <>
19
+ <Visa width={48} height={32} />
20
+ <Mastercard width={48} height={32} />
21
+ <Paypal width={48} height={32} />
22
+ </>
23
+ );
24
+ }
25
+ ```
26
+
27
+ ## Available Icons
28
+
29
+ - `PaymentIcon`
30
+ - `AmericanExpress`
31
+ - `Aura`
32
+ - `CartesBancaires`
33
+ - `Cirrus`
34
+ - `Dankort`
35
+ - `Dinersclub`
36
+ - `Discover`
37
+ - `Elo`
38
+ - `Hipercard`
39
+ - `Jcb`
40
+ - `Maestro`
41
+ - `Mastercard`
42
+ - `Mir`
43
+ - `Naranja`
44
+ - `Paypal`
45
+ - `Sodexo`
46
+ - `Uatp`
47
+ - `Unionpay`
48
+ - `Visa`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-icons-payment",
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
  "exports": {