@ng-icons/heroicons 12.2.0 → 12.3.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 +7 -4
- package/bundles/ng-icons-heroicons.umd.js +927 -927
- package/bundles/ng-icons-heroicons.umd.js.map +1 -1
- package/esm2015/outline.js +231 -703
- package/esm2015/solid.js +231 -734
- package/fesm2015/ng-icons-heroicons.js +460 -1435
- package/fesm2015/ng-icons-heroicons.js.map +1 -1
- package/ng-icons-heroicons.metadata.json +1 -1
- package/outline.d.ts +230 -230
- package/package.json +1 -1
- package/solid.d.ts +230 -230
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Ng Icons
|
|
2
2
|
|
|
3
|
-
The all
|
|
3
|
+
The all-in-one icon library for Angular. This allows you to use icons from multiple icon sets with a single icon component.
|
|
4
4
|
|
|
5
|
-
Currently we support the following libraries:
|
|
5
|
+
Currently, we support the following libraries:
|
|
6
6
|
|
|
7
7
|
- [Heroicons](https://heroicons.com/)
|
|
8
8
|
- [Feather Icons](https://feathericons.com/)
|
|
@@ -15,7 +15,7 @@ Got suggestions for additional iconsets? Create an issue and we can consider add
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
-
Ng Icons
|
|
18
|
+
Ng Icons consists of multiple packages:
|
|
19
19
|
|
|
20
20
|
- `@ng-icons/core` - This contains the icon component and the `NgIconsModule` that is used to register the icons you want to include in your application.
|
|
21
21
|
- `@ng-icons/heroicons` - The Heroicons iconset including both outline and solid variants.
|
|
@@ -65,4 +65,7 @@ You can then use the icon in your templates:
|
|
|
65
65
|
<ng-icon name="feather-airplay"></ng-icon>
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
| Name | Type | Description |
|
|
69
|
+
| ----------- | ---------------- | ------------------------------------ |
|
|
70
|
+
| size | string | Define the size of the icon. |
|
|
71
|
+
| strokeWidth | string \| number | Define the stroke-width of the icon. |
|