@lobehub/icons-rn 1.0.2 → 1.0.3

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 +13 -0
  2. package/package.json +3 -5
package/README.md CHANGED
@@ -43,6 +43,19 @@ yarn add @lobehub/icons-rn
43
43
  # or
44
44
  pnpm add @lobehub/icons-rn
45
45
  ```
46
+
47
+ ### Peer Dependencies
48
+
49
+ This package requires the following peer dependencies:
50
+
51
+ ```bash
52
+ npm install react-native-svg
53
+ # or
54
+ yarn add react-native-svg
55
+ # or
56
+ pnpm add react-native-svg
57
+ ```
58
+
46
59
  #### Optional: Gradient Support
47
60
 
48
61
  For gradient background support in Avatar components, install `react-native-linear-gradient`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons-rn",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Popular AI / LLM Model Brand Icons for React Native and Expo",
5
5
  "keywords": [
6
6
  "lobehub",
@@ -30,12 +30,10 @@
30
30
  "files": [
31
31
  "dist"
32
32
  ],
33
- "dependencies": {
34
- "react-native-svg": "^15.12.0"
35
- },
36
33
  "peerDependencies": {
37
34
  "react": ">=16.8.0",
38
35
  "react-native": ">=0.76.9",
39
- "react-native-linear-gradient": ">=2.8.0"
36
+ "react-native-linear-gradient": ">=2.8.0",
37
+ "react-native-svg": ">=15.8.0"
40
38
  }
41
39
  }