@ivao/atmosphere-react 0.0.1-next.0 → 0.1.0-next.2

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 CHANGED
@@ -1,21 +1,25 @@
1
- # Contribute
2
- ## Create new components
3
- ### Color convert guide
4
-
5
- The fuselage color changed after atmodash was created.
6
-
7
- The table provided below helps you to convert the old color to the new one.
8
-
9
- | Old color | New color |
10
- |-----------|-----------|
11
- | 50 | 200 |
12
- | 100 | 250 |
13
- | 150 | 400 |
14
- | 200 | 450 |
15
- | 300 | 500 |
16
- | 400 | 550 |
17
- | 500 | 600 |
18
- | 600 | 700 |
19
- | 700 | 800 |
20
- | 800 | 900 |
21
- | 900 | 950 |
1
+ # Atmosphere Component Library by IVAO
2
+
3
+ ## React
4
+
5
+ ### Requirements
6
+
7
+ React version: > 18.3
8
+
9
+ ### How to install
10
+
11
+ ```bash
12
+ npm i @ivao/atmosphere-react
13
+ ```
14
+
15
+ ```bash
16
+ pnpm add @ivao/atmosphere-react
17
+ ```
18
+
19
+ ### Configure
20
+
21
+ Import our CSS by adding this line to your index file.
22
+
23
+ ```typescript
24
+ import '@ivao/atmosphere-react/dist/styles/index.css';
25
+ ```