@xsolla/xui-logos-xsolla 0.95.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 +29 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # @xsolla/xui-logos-xsolla
2
+
3
+ The official Xsolla brand logo component with colour and variant options.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @xsolla/xui-logos-xsolla
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { Xsolla } from '@xsolla/xui-logos-xsolla';
15
+
16
+ function App() {
17
+ return (
18
+ <>
19
+ <Xsolla />
20
+ <Xsolla variant="icon" color="black" size="md" />
21
+ <Xsolla color="white" />
22
+ </>
23
+ );
24
+ }
25
+ ```
26
+
27
+ ## Available Logos
28
+
29
+ - `Xsolla` — supports `variant` (`"full"` | `"icon"`), `color` (`"brand"` | `"black"` | `"white"`), and `size` props
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-logos-xsolla",
3
- "version": "0.95.0",
3
+ "version": "0.97.0",
4
4
  "main": "./web/index.js",
5
5
  "types": "./web/index.d.ts",
6
6
  "exports": {