elementa-icons 1.38.0 → 1.41.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
@@ -47,6 +47,7 @@ import { ElectricPlug } from '@/src/icons/communication';
47
47
  // SECTION: Connectivity
48
48
  // !SECTION: Connectivity
49
49
  // SECTION: Construction
50
+ import { HammerNail } from '@/src/icons/construction';
50
51
  // !SECTION: Construction
51
52
  // SECTION: Design
52
53
  // !SECTION: Design
@@ -67,6 +68,7 @@ import { OpenBook } from '@/src/icons/education';
67
68
  // SECTION: Energy
68
69
  // !SECTION: Energy
69
70
  // SECTION: Files & Folders
71
+ import { HomeDocuments } from '@/src/icons/files-folders';
70
72
  // !SECTION: Files & Folders
71
73
  // SECTION: Film & Video
72
74
  // !SECTION: Film & Video
@@ -88,6 +90,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
88
90
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
89
91
  // !SECTION: Interactions
90
92
  // SECTION: Location & Maps
93
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
91
94
  // !SECTION: Location & Maps
92
95
  // SECTION: Logos
93
96
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
@@ -223,6 +226,7 @@ export { ElectricPlug };
223
226
  // SECTION: Connectivity
224
227
  // !SECTION: Connectivity
225
228
  // SECTION: Construction
229
+ export { HammerNail };
226
230
  // !SECTION: Construction
227
231
  // SECTION: Design
228
232
  // !SECTION: Design
@@ -243,6 +247,7 @@ export { OpenBook };
243
247
  // SECTION: Energy
244
248
  // !SECTION: Energy
245
249
  // SECTION: Files & Folders
250
+ export { HomeDocuments };
246
251
  // !SECTION: Files & Folders
247
252
  // SECTION: Film & Video
248
253
  // !SECTION: Film & Video
@@ -264,6 +269,7 @@ export { Appliances, Sofa };
264
269
  export { FavoriteFilled, FavoriteOutline };
265
270
  // !SECTION: Interactions
266
271
  // SECTION: Location & Maps
272
+ export { PinOnHand, World1 };
267
273
  // !SECTION: Location & Maps
268
274
  // SECTION: Logistics
269
275
  // !SECTION: Logistics
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const HammerNail: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default HammerNail;
@@ -0,0 +1,2 @@
1
+ import HammerNail from '@/src/icons/construction/HammerNail';
2
+ export { HammerNail };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const HomeDocuments: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default HomeDocuments;
@@ -0,0 +1,2 @@
1
+ import HomeDocuments from '@/src/icons/files-folders/HomeDocuments';
2
+ export { HomeDocuments };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const PinOnHand: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default PinOnHand;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const World1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default World1;
@@ -0,0 +1,3 @@
1
+ import PinOnHand from '@/src/icons/location-maps/PinOnHand';
2
+ import World1 from '@/src/icons/location-maps/World1';
3
+ export { PinOnHand, World1 };
@@ -11,15 +11,18 @@ import { PieChart, Stocks } from '@/src/icons/charts-graphs';
11
11
  import { Puzzle } from '@/src/icons/childhood/';
12
12
  import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
13
13
  import { ElectricPlug } from '@/src/icons/communication';
14
+ import { HammerNail } from '@/src/icons/construction';
14
15
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
15
16
  import { Siren } from '@/src/icons/disaster-crisis';
16
17
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
17
18
  import { OpenBook } from '@/src/icons/education';
19
+ import { HomeDocuments } from '@/src/icons/files-folders';
18
20
  import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
19
21
  import { Palm } from '@/src/icons/hands';
20
22
  import { Balloon, GiftBox } from '@/src/icons/holidays';
21
23
  import { Appliances, Sofa } from '@/src/icons/household';
22
24
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
25
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
23
26
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
24
27
  import { Loudspeaker } from '@/src/icons/marketing/';
25
28
  import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
@@ -49,15 +52,18 @@ export { PieChart, Stocks };
49
52
  export { Puzzle };
50
53
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
51
54
  export { ElectricPlug };
55
+ export { HammerNail };
52
56
  export { Airpods, Devices, USBACable };
53
57
  export { Siren };
54
58
  export { Add, Cut, Copy, Edit, Paste };
55
59
  export { OpenBook };
60
+ export { HomeDocuments };
56
61
  export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
57
62
  export { Palm };
58
63
  export { Balloon, GiftBox };
59
64
  export { Appliances, Sofa };
60
65
  export { FavoriteFilled, FavoriteOutline };
66
+ export { PinOnHand, World1 };
61
67
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
62
68
  export { Loudspeaker };
63
69
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.38.0",
3
+ "version": "1.41.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -64,6 +64,7 @@ import { ElectricPlug } from '@/src/icons/communication';
64
64
  // SECTION: Connectivity
65
65
  // !SECTION: Connectivity
66
66
  // SECTION: Construction
67
+ import { HammerNail } from '@/src/icons/construction';
67
68
  // !SECTION: Construction
68
69
  // SECTION: Design
69
70
  // !SECTION: Design
@@ -84,6 +85,7 @@ import { OpenBook } from '@/src/icons/education';
84
85
  // SECTION: Energy
85
86
  // !SECTION: Energy
86
87
  // SECTION: Files & Folders
88
+ import { HomeDocuments } from '@/src/icons/files-folders';
87
89
  // !SECTION: Files & Folders
88
90
  // SECTION: Film & Video
89
91
  // !SECTION: Film & Video
@@ -113,6 +115,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
113
115
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
114
116
  // !SECTION: Interactions
115
117
  // SECTION: Location & Maps
118
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
116
119
  // !SECTION: Location & Maps
117
120
  // SECTION: Logos
118
121
  import {
@@ -288,6 +291,7 @@ export { ElectricPlug };
288
291
  // SECTION: Connectivity
289
292
  // !SECTION: Connectivity
290
293
  // SECTION: Construction
294
+ export { HammerNail };
291
295
  // !SECTION: Construction
292
296
  // SECTION: Design
293
297
  // !SECTION: Design
@@ -308,6 +312,7 @@ export { OpenBook };
308
312
  // SECTION: Energy
309
313
  // !SECTION: Energy
310
314
  // SECTION: Files & Folders
315
+ export { HomeDocuments };
311
316
  // !SECTION: Files & Folders
312
317
  // SECTION: Film & Video
313
318
  // !SECTION: Film & Video
@@ -337,6 +342,7 @@ export { Appliances, Sofa };
337
342
  export { FavoriteFilled, FavoriteOutline };
338
343
  // !SECTION: Interactions
339
344
  // SECTION: Location & Maps
345
+ export { PinOnHand, World1 };
340
346
  // !SECTION: Location & Maps
341
347
  // SECTION: Logistics
342
348
  // !SECTION: Logistics