Add support for react-native-svg ^15.0.0 (#1929)

This commit is contained in:
Wojciech Maj
2024-02-27 10:13:42 +01:00
committed by GitHub
parent ab3a31367a
commit 28ec03ebc8
4 changed files with 8 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ Implementation of the lucide icon library for React Native applications.
## Installation
First, ensure that you have `react-native-svg` (version between 12 and 14) installed. Then, install the package:
First, ensure that you have `react-native-svg` (version between 12 and 15) installed. Then, install the package:
```sh
yarn add lucide-react-native

View File

@@ -54,7 +54,7 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-native": "^0.73.1",
"react-native-svg": "^14.1.0",
"react-native-svg": "^15.0.0",
"rollup": "^4.9.2",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^4.8.4",
@@ -64,6 +64,6 @@
"peerDependencies": {
"react": "^16.5.1 || ^17.0.0 || ^18.0.0",
"react-native": "*",
"react-native-svg": "^12.0.0 || ^13.0.0 || ^14.0.0"
"react-native-svg": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0"
}
}