@xsolla/xui-icons-base 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.
- package/README.md +50 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# @xsolla/xui-icons-base
|
|
2
|
+
|
|
3
|
+
Comprehensive XUI icon library covering UI, files, media, communication, and more categories.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
yarn add @xsolla/xui-icons-base
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```tsx
|
|
14
|
+
import { Check, Search, Wallet } from '@xsolla/xui-icons-base';
|
|
15
|
+
|
|
16
|
+
function App() {
|
|
17
|
+
return (
|
|
18
|
+
<>
|
|
19
|
+
<Check size={24} />
|
|
20
|
+
<Search size={20} color="grey" />
|
|
21
|
+
<Wallet size={24} color="blue" />
|
|
22
|
+
</>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Available Icons
|
|
28
|
+
|
|
29
|
+
- `BaseIcon`
|
|
30
|
+
- `Footer`
|
|
31
|
+
- `GameDescription`
|
|
32
|
+
- `GridFour`
|
|
33
|
+
- `GridFourt`
|
|
34
|
+
- `GridThree`
|
|
35
|
+
- `GridTwoHr`
|
|
36
|
+
- `GridTwoVr`
|
|
37
|
+
- `Header`
|
|
38
|
+
- `LeadBlock`
|
|
39
|
+
- `SidebarLeft`
|
|
40
|
+
- `SidebarRight`
|
|
41
|
+
- `Slider`
|
|
42
|
+
- `ViewBoard`
|
|
43
|
+
- `ViewColumn`
|
|
44
|
+
- `ViewList`
|
|
45
|
+
- `ViewTable`
|
|
46
|
+
- `ViewTimeline`
|
|
47
|
+
- `Bookmark`
|
|
48
|
+
- `BookmarkAdd`
|
|
49
|
+
|
|
50
|
+
...and 380 more. See `src/index.ts` for the full list.
|