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/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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a laptop.
4
+ */
5
+ declare const Laptop1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Laptop1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a router.
4
+ */
5
+ declare const Router: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Router;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a smartwatch.
4
+ */
5
+ declare const Smartwatch: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Smartwatch;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a telephone.
4
+ */
5
+ declare const Telephone1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Telephone1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a telephone.
4
+ */
5
+ declare const Telephone2: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Telephone2;
@@ -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 };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.51.0",
3
+ "version": "1.52.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
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 { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
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 { Airpods, Devices, USBACable };
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 };