elementa-icons 1.39.0 → 1.42.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
@@ -89,6 +90,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
89
90
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
90
91
  // !SECTION: Interactions
91
92
  // SECTION: Location & Maps
93
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
92
94
  // !SECTION: Location & Maps
93
95
  // SECTION: Logos
94
96
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
@@ -134,6 +136,7 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
134
136
  import { Fingerprint, Logout } from '@/src/icons/security-privacy';
135
137
  // !SECTION: Security & Privacy
136
138
  // SECTION: Shapes, Symbols & Punctuation
139
+ import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
137
140
  // !SECTION: Shapes, Symbols & Punctuation
138
141
  // SECTION: Shopping
139
142
  import { Discount, ShoppingCart } from '@/src/icons/shopping/';
@@ -224,6 +227,7 @@ export { ElectricPlug };
224
227
  // SECTION: Connectivity
225
228
  // !SECTION: Connectivity
226
229
  // SECTION: Construction
230
+ export { HammerNail };
227
231
  // !SECTION: Construction
228
232
  // SECTION: Design
229
233
  // !SECTION: Design
@@ -266,6 +270,7 @@ export { Appliances, Sofa };
266
270
  export { FavoriteFilled, FavoriteOutline };
267
271
  // !SECTION: Interactions
268
272
  // SECTION: Location & Maps
273
+ export { PinOnHand, World1 };
269
274
  // !SECTION: Location & Maps
270
275
  // SECTION: Logistics
271
276
  // !SECTION: Logistics
@@ -311,6 +316,7 @@ export { Delete, Refresh };
311
316
  export { Fingerprint, Logout };
312
317
  // !SECTION: Security & Privacy
313
318
  // SECTION: Shapes, Symbols & Punctuation
319
+ export { Shapes, TrackLine };
314
320
  // !SECTION: Shapes, Symbols & Punctuation
315
321
  // SECTION: Shopping
316
322
  export { Discount, ShoppingCart };
@@ -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 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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Shapes: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Shapes;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a track line.
4
+ */
5
+ declare const TrackLine: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default TrackLine;
@@ -0,0 +1,3 @@
1
+ import Shapes from '@/src/icons/shapes-symbols-punctuation/Shapes';
2
+ import TrackLine from '@/src/icons/shapes-symbols-punctuation/TrackLine';
3
+ export { Shapes, TrackLine };
@@ -11,6 +11,7 @@ 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';
@@ -21,6 +22,7 @@ import { Palm } from '@/src/icons/hands';
21
22
  import { Balloon, GiftBox } from '@/src/icons/holidays';
22
23
  import { Appliances, Sofa } from '@/src/icons/household';
23
24
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
25
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
24
26
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
25
27
  import { Loudspeaker } from '@/src/icons/marketing/';
26
28
  import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
@@ -30,6 +32,7 @@ import { Fire } from '@/src/icons/nature-environment';
30
32
  import { Flag } from '@/src/icons/political';
31
33
  import { Delete, Refresh } from '@/src/icons/saving-data-management';
32
34
  import { Fingerprint, Logout } from '@/src/icons/security-privacy';
35
+ import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
33
36
  import { Discount, ShoppingCart } from '@/src/icons/shopping/';
34
37
  import { AddFriend, AddFriends } from '@/src/icons/social-people';
35
38
  import { Basketball, Dart } from '@/src/icons/sports';
@@ -50,6 +53,7 @@ export { PieChart, Stocks };
50
53
  export { Puzzle };
51
54
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
52
55
  export { ElectricPlug };
56
+ export { HammerNail };
53
57
  export { Airpods, Devices, USBACable };
54
58
  export { Siren };
55
59
  export { Add, Cut, Copy, Edit, Paste };
@@ -60,6 +64,7 @@ export { Palm };
60
64
  export { Balloon, GiftBox };
61
65
  export { Appliances, Sofa };
62
66
  export { FavoriteFilled, FavoriteOutline };
67
+ export { PinOnHand, World1 };
63
68
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
64
69
  export { Loudspeaker };
65
70
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
@@ -69,6 +74,7 @@ export { Fire };
69
74
  export { Flag };
70
75
  export { Delete, Refresh };
71
76
  export { Fingerprint, Logout };
77
+ export { Shapes, TrackLine };
72
78
  export { Discount, ShoppingCart };
73
79
  export { AddFriend, AddFriends };
74
80
  export { Basketball, Dart };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.39.0",
3
+ "version": "1.42.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
@@ -114,6 +115,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
114
115
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
115
116
  // !SECTION: Interactions
116
117
  // SECTION: Location & Maps
118
+ import { PinOnHand, World1 } from '@/src/icons/location-maps';
117
119
  // !SECTION: Location & Maps
118
120
  // SECTION: Logos
119
121
  import {
@@ -173,6 +175,7 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
173
175
  import { Fingerprint, Logout } from '@/src/icons/security-privacy';
174
176
  // !SECTION: Security & Privacy
175
177
  // SECTION: Shapes, Symbols & Punctuation
178
+ import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
176
179
  // !SECTION: Shapes, Symbols & Punctuation
177
180
  // SECTION: Shopping
178
181
  import { Discount, ShoppingCart } from '@/src/icons/shopping/';
@@ -289,6 +292,7 @@ export { ElectricPlug };
289
292
  // SECTION: Connectivity
290
293
  // !SECTION: Connectivity
291
294
  // SECTION: Construction
295
+ export { HammerNail };
292
296
  // !SECTION: Construction
293
297
  // SECTION: Design
294
298
  // !SECTION: Design
@@ -339,6 +343,7 @@ export { Appliances, Sofa };
339
343
  export { FavoriteFilled, FavoriteOutline };
340
344
  // !SECTION: Interactions
341
345
  // SECTION: Location & Maps
346
+ export { PinOnHand, World1 };
342
347
  // !SECTION: Location & Maps
343
348
  // SECTION: Logistics
344
349
  // !SECTION: Logistics
@@ -384,6 +389,7 @@ export { Delete, Refresh };
384
389
  export { Fingerprint, Logout };
385
390
  // !SECTION: Security & Privacy
386
391
  // SECTION: Shapes, Symbols & Punctuation
392
+ export { Shapes, TrackLine };
387
393
  // !SECTION: Shapes, Symbols & Punctuation
388
394
  // SECTION: Shopping
389
395
  export { Discount, ShoppingCart };