Comparing version 6.6.0 to 6.7.0
{ | ||
"name": "iconoir", | ||
"version": "6.6.0", | ||
"version": "6.7.0", | ||
"description": "The biggest open source icon library with tons of free icons.", | ||
@@ -12,3 +12,3 @@ "type": "module", | ||
"type": "git", | ||
"url": "git+https://github.com/lucaburgio/iconoir.git" | ||
"url": "git+https://github.com/iconoir-icons/iconoir.git" | ||
}, | ||
@@ -32,2 +32,3 @@ "keywords": [ | ||
"@svgr/cli": "^5.5.0", | ||
"@types/svg-parser": "^2.0.3", | ||
"eslint": "^8.0.0", | ||
@@ -38,5 +39,7 @@ "eslint-config-prettier": "^8.3.0", | ||
"generate-template-files": "^3.2.0", | ||
"hast-util-to-html": "^8.0.4", | ||
"listr2": "^3.12.2", | ||
"prettier": "^2.4.1", | ||
"semver": "^7.3.5", | ||
"prettier": "^2.4.1" | ||
"svg-parser": "^2.0.4" | ||
}, | ||
@@ -43,0 +46,0 @@ "scripts": { |
@@ -56,2 +56,6 @@ # Iconoir | ||
## Vue | ||
A Vue library is available to install under the name `@iconoir/vue`. For more details, see the package [README](./packages/iconoir-vue). | ||
## Flutter | ||
@@ -88,4 +92,37 @@ | ||
## Swift Package | ||
To add `Iconoir-swift` to your Xcode project, follow these steps: | ||
1. In Xcode, open your project and navigate to *File* > *Swift Packages* > *Add Package Dependency...* | ||
2. Enter the repository URL: `https://github.com/iconoir-icons/iconoir-swift.git` | ||
3. Choose the branch or version you want to add, and click *Next*. | ||
4. Select the target where you want to use the package, then click *Finish*. | ||
### UIKit | ||
```swift | ||
import UIKit | ||
import Iconoir | ||
let imageView = UIImageView(image: Iconoir.bell.asUIImage) | ||
``` | ||
### SwiftUI | ||
```swift | ||
import SwiftUI | ||
import Iconoir | ||
struct ContentView: View { | ||
var body: some View { | ||
Iconoir.bell.asImage | ||
.foregroundColor(.blue) | ||
.font(.system(size: 24)) | ||
} | ||
} | ||
``` | ||
## License | ||
MIT License |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3088116
127
13