@updevs/icons 1.0.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 ADDED
@@ -0,0 +1,27 @@
1
+ # @updevs/icons
2
+
3
+ This is a helper library to make [heroicons](https://github.com/tailwindlabs/heroicons) available on angular.
4
+
5
+ ## Usage:
6
+
7
+ ### Import module
8
+
9
+ ```ts
10
+ import { UpdIconsModule } from '@updevs/icons';
11
+
12
+ /// ...
13
+
14
+ imports: [
15
+ /// ...
16
+ UpdIconsModule
17
+ ]
18
+ ```
19
+
20
+ ### Icon usage
21
+
22
+ ```html
23
+
24
+ <upd-icon name="academic-cap" color="#ddd89a" type="outline"></upd-icon>
25
+ <upd-icon name="adjustments-vertical"></upd-icon>
26
+ <upd-icon name="adjustments-horizontal" size="small"></upd-icon>
27
+ ```
@@ -0,0 +1,4 @@
1
+ import { IconModel } from '../../lib/icon/icon.model';
2
+ export declare const icons: {
3
+ [key: string]: IconModel;
4
+ };