@ng-icons/lets-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.
Files changed (32) hide show
  1. package/README.md +344 -0
  2. package/duotone/index.d.ts +223 -0
  3. package/duotone-line/index.d.ts +176 -0
  4. package/esm2022/duotone/index.mjs +224 -0
  5. package/esm2022/duotone/ng-icons-lets-icons-duotone.mjs +5 -0
  6. package/esm2022/duotone-line/index.mjs +177 -0
  7. package/esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs +5 -0
  8. package/esm2022/fill/index.mjs +232 -0
  9. package/esm2022/fill/ng-icons-lets-icons-fill.mjs +5 -0
  10. package/esm2022/index.mjs +3 -0
  11. package/esm2022/light/index.mjs +435 -0
  12. package/esm2022/light/ng-icons-lets-icons-light.mjs +5 -0
  13. package/esm2022/ng-icons-lets-icons.mjs +5 -0
  14. package/esm2022/regular/index.mjs +481 -0
  15. package/esm2022/regular/ng-icons-lets-icons-regular.mjs +5 -0
  16. package/fesm2022/ng-icons-lets-icons-duotone-line.mjs +183 -0
  17. package/fesm2022/ng-icons-lets-icons-duotone-line.mjs.map +1 -0
  18. package/fesm2022/ng-icons-lets-icons-duotone.mjs +230 -0
  19. package/fesm2022/ng-icons-lets-icons-duotone.mjs.map +1 -0
  20. package/fesm2022/ng-icons-lets-icons-fill.mjs +238 -0
  21. package/fesm2022/ng-icons-lets-icons-fill.mjs.map +1 -0
  22. package/fesm2022/ng-icons-lets-icons-light.mjs +441 -0
  23. package/fesm2022/ng-icons-lets-icons-light.mjs.map +1 -0
  24. package/fesm2022/ng-icons-lets-icons-regular.mjs +487 -0
  25. package/fesm2022/ng-icons-lets-icons-regular.mjs.map +1 -0
  26. package/fesm2022/ng-icons-lets-icons.mjs +7 -0
  27. package/fesm2022/ng-icons-lets-icons.mjs.map +1 -0
  28. package/fill/index.d.ts +231 -0
  29. package/index.d.ts +2 -0
  30. package/light/index.d.ts +434 -0
  31. package/package.json +56 -0
  32. package/regular/index.d.ts +480 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@ng-icons/lets-icons",
3
+ "version": "1.0.0",
4
+ "repository": {
5
+ "url": "https://github.com/ng-icons/ng-icons"
6
+ },
7
+ "homepage": "https://ng-icons.github.io/ng-icons/",
8
+ "license": "CC BY 4.0",
9
+ "dependencies": {
10
+ "tslib": "^2.2.0"
11
+ },
12
+ "module": "fesm2022/ng-icons-lets-icons.mjs",
13
+ "typings": "index.d.ts",
14
+ "exports": {
15
+ "./package.json": {
16
+ "default": "./package.json"
17
+ },
18
+ ".": {
19
+ "types": "./index.d.ts",
20
+ "esm2022": "./esm2022/ng-icons-lets-icons.mjs",
21
+ "esm": "./esm2022/ng-icons-lets-icons.mjs",
22
+ "default": "./fesm2022/ng-icons-lets-icons.mjs"
23
+ },
24
+ "./duotone": {
25
+ "types": "./duotone/index.d.ts",
26
+ "esm2022": "./esm2022/duotone/ng-icons-lets-icons-duotone.mjs",
27
+ "esm": "./esm2022/duotone/ng-icons-lets-icons-duotone.mjs",
28
+ "default": "./fesm2022/ng-icons-lets-icons-duotone.mjs"
29
+ },
30
+ "./duotone-line": {
31
+ "types": "./duotone-line/index.d.ts",
32
+ "esm2022": "./esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs",
33
+ "esm": "./esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs",
34
+ "default": "./fesm2022/ng-icons-lets-icons-duotone-line.mjs"
35
+ },
36
+ "./fill": {
37
+ "types": "./fill/index.d.ts",
38
+ "esm2022": "./esm2022/fill/ng-icons-lets-icons-fill.mjs",
39
+ "esm": "./esm2022/fill/ng-icons-lets-icons-fill.mjs",
40
+ "default": "./fesm2022/ng-icons-lets-icons-fill.mjs"
41
+ },
42
+ "./light": {
43
+ "types": "./light/index.d.ts",
44
+ "esm2022": "./esm2022/light/ng-icons-lets-icons-light.mjs",
45
+ "esm": "./esm2022/light/ng-icons-lets-icons-light.mjs",
46
+ "default": "./fesm2022/ng-icons-lets-icons-light.mjs"
47
+ },
48
+ "./regular": {
49
+ "types": "./regular/index.d.ts",
50
+ "esm2022": "./esm2022/regular/ng-icons-lets-icons-regular.mjs",
51
+ "esm": "./esm2022/regular/ng-icons-lets-icons-regular.mjs",
52
+ "default": "./fesm2022/ng-icons-lets-icons-regular.mjs"
53
+ }
54
+ },
55
+ "sideEffects": false
56
+ }