elementa-icons 1.51.0 → 1.52.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/dist/icons/devices-hardware/Laptop1.js +14 -0
- package/dist/icons/devices-hardware/Router.js +14 -0
- package/dist/icons/devices-hardware/Smartwatch.js +14 -0
- package/dist/icons/devices-hardware/Telephone1.js +16 -0
- package/dist/icons/devices-hardware/Telephone2.js +14 -0
- package/dist/icons/devices-hardware/index.js +6 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/types/icons/devices-hardware/Laptop1.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Router.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Smartwatch.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Telephone1.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Telephone2.d.ts +6 -0
- package/dist/types/icons/devices-hardware/index.d.ts +6 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +20 -2
package/dist/index.js
CHANGED
|
@@ -53,7 +53,7 @@ import { HammerNail } from '@/src/icons/construction';
|
|
|
53
53
|
// SECTION: Design
|
|
54
54
|
// !SECTION: Design
|
|
55
55
|
// SECTION: Devices & Hardware
|
|
56
|
-
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
56
|
+
import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
|
|
57
57
|
// !SECTION: Devices & Hardware
|
|
58
58
|
// SECTION: Disaster & Crisis
|
|
59
59
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
@@ -237,7 +237,7 @@ export { HammerNail };
|
|
|
237
237
|
// SECTION: Design
|
|
238
238
|
// !SECTION: Design
|
|
239
239
|
// SECTION: Devices & Hardware
|
|
240
|
-
export { Airpods, Devices, USBACable };
|
|
240
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
|
241
241
|
// !SECTION: Devices & Hardware
|
|
242
242
|
// SECTION: Disaster & Crisis
|
|
243
243
|
export { Siren };
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import Airpods from '@/src/icons/devices-hardware/Airpods';
|
|
2
2
|
import Devices from '@/src/icons/devices-hardware/Devices';
|
|
3
|
+
import Laptop1 from '@/src/icons/devices-hardware/Laptop1';
|
|
4
|
+
import Router from '@/src/icons/devices-hardware/Router';
|
|
5
|
+
import Smartwatch from '@/src/icons/devices-hardware/Smartwatch';
|
|
6
|
+
import Telephone1 from '@/src/icons/devices-hardware/Telephone1';
|
|
7
|
+
import Telephone2 from '@/src/icons/devices-hardware/Telephone2';
|
|
3
8
|
import USBACable from '@/src/icons/devices-hardware/USBACable';
|
|
4
|
-
export { Airpods, Devices, USBACable };
|
|
9
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
|
|
|
13
13
|
import { ElectricPlug } from '@/src/icons/communication';
|
|
14
14
|
import { CloudSaas } from '@/src/icons/connectivity';
|
|
15
15
|
import { HammerNail } from '@/src/icons/construction';
|
|
16
|
-
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
16
|
+
import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
|
|
17
17
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
18
18
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
19
19
|
import { OpenBook } from '@/src/icons/education';
|
|
@@ -59,7 +59,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
|
59
59
|
export { ElectricPlug };
|
|
60
60
|
export { CloudSaas };
|
|
61
61
|
export { HammerNail };
|
|
62
|
-
export { Airpods, Devices, USBACable };
|
|
62
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
|
63
63
|
export { Siren };
|
|
64
64
|
export { Add, Cut, Copy, Edit, Paste };
|
|
65
65
|
export { OpenBook };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -70,7 +70,16 @@ import { HammerNail } from '@/src/icons/construction';
|
|
|
70
70
|
// SECTION: Design
|
|
71
71
|
// !SECTION: Design
|
|
72
72
|
// SECTION: Devices & Hardware
|
|
73
|
-
import {
|
|
73
|
+
import {
|
|
74
|
+
Airpods,
|
|
75
|
+
Devices,
|
|
76
|
+
Laptop1,
|
|
77
|
+
Router,
|
|
78
|
+
Smartwatch,
|
|
79
|
+
Telephone1,
|
|
80
|
+
Telephone2,
|
|
81
|
+
USBACable
|
|
82
|
+
} from '@/src/icons/devices-hardware';
|
|
74
83
|
// !SECTION: Devices & Hardware
|
|
75
84
|
// SECTION: Disaster & Crisis
|
|
76
85
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
@@ -328,7 +337,16 @@ export { HammerNail };
|
|
|
328
337
|
// SECTION: Design
|
|
329
338
|
// !SECTION: Design
|
|
330
339
|
// SECTION: Devices & Hardware
|
|
331
|
-
export {
|
|
340
|
+
export {
|
|
341
|
+
Airpods,
|
|
342
|
+
Devices,
|
|
343
|
+
Laptop1,
|
|
344
|
+
Router,
|
|
345
|
+
Smartwatch,
|
|
346
|
+
Telephone1,
|
|
347
|
+
Telephone2,
|
|
348
|
+
USBACable
|
|
349
|
+
};
|
|
332
350
|
// !SECTION: Devices & Hardware
|
|
333
351
|
// SECTION: Disaster & Crisis
|
|
334
352
|
export { Siren };
|