elementa-icons 1.34.0 → 1.36.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
@@ -34,6 +34,7 @@ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
34
34
  import { PieChart, Stocks } from '@/src/icons/charts-graphs';
35
35
  // !SECTION: Charts & Graphs
36
36
  // SECTION: Childhood
37
+ import { Puzzle } from '@/src/icons/childhood/';
37
38
  // !SECTION: Childhood
38
39
  // SECTION: Clothing & Fashion
39
40
  import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
@@ -41,6 +42,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
41
42
  // SECTION: Coding
42
43
  // !SECTION: Coding
43
44
  // SECTION: Communication
45
+ import { ElectricPlug } from '@/src/icons/communication';
44
46
  // !SECTION: Communication
45
47
  // SECTION: Connectivity
46
48
  // !SECTION: Connectivity
@@ -206,6 +208,7 @@ export { Briefcase, CareerGrowth };
206
208
  export { PieChart, Stocks };
207
209
  // !SECTION: Charts & Graphs
208
210
  // SECTION: Childhood
211
+ export { Puzzle };
209
212
  // !SECTION: Childhood
210
213
  // SECTION: Clothing & Fashion
211
214
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
@@ -213,6 +216,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
213
216
  // SECTION: Coding
214
217
  // !SECTION: Coding
215
218
  // SECTION: Communication
219
+ export { ElectricPlug };
216
220
  // !SECTION: Communication
217
221
  // SECTION: Connectivity
218
222
  // !SECTION: Connectivity
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Puzzle: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Puzzle;
@@ -0,0 +1,2 @@
1
+ import Puzzle from '@/src/icons/childhood/Puzzle';
2
+ export { Puzzle };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const ElectricPlug: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ElectricPlug;
@@ -0,0 +1,2 @@
1
+ import ElectricPlug from '@/src/icons/communication/ElectricPlug';
2
+ export { ElectricPlug };
@@ -8,7 +8,9 @@ import { Gear, ToolBox } from '@/src/icons/automotive/';
8
8
  import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
9
9
  import { Briefcase, CareerGrowth } from '@/src/icons/business/';
10
10
  import { PieChart, Stocks } from '@/src/icons/charts-graphs';
11
+ import { Puzzle } from '@/src/icons/childhood/';
11
12
  import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
13
+ import { ElectricPlug } from '@/src/icons/communication';
12
14
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
13
15
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
14
16
  import { OpenBook } from '@/src/icons/education';
@@ -42,7 +44,9 @@ export { Gear, ToolBox };
42
44
  export { Cityline, Home1, Home2, Home3 };
43
45
  export { Briefcase, CareerGrowth };
44
46
  export { PieChart, Stocks };
47
+ export { Puzzle };
45
48
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
49
+ export { ElectricPlug };
46
50
  export { Airpods, Devices, USBACable };
47
51
  export { Add, Cut, Copy, Edit, Paste };
48
52
  export { OpenBook };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.34.0",
3
+ "version": "1.36.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -43,6 +43,7 @@ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
43
43
  import { PieChart, Stocks } from '@/src/icons/charts-graphs';
44
44
  // !SECTION: Charts & Graphs
45
45
  // SECTION: Childhood
46
+ import { Puzzle } from '@/src/icons/childhood/';
46
47
  // !SECTION: Childhood
47
48
  // SECTION: Clothing & Fashion
48
49
  import {
@@ -58,6 +59,7 @@ import {
58
59
  // SECTION: Coding
59
60
  // !SECTION: Coding
60
61
  // SECTION: Communication
62
+ import { ElectricPlug } from '@/src/icons/communication';
61
63
  // !SECTION: Communication
62
64
  // SECTION: Connectivity
63
65
  // !SECTION: Connectivity
@@ -265,6 +267,7 @@ export { Briefcase, CareerGrowth };
265
267
  export { PieChart, Stocks };
266
268
  // !SECTION: Charts & Graphs
267
269
  // SECTION: Childhood
270
+ export { Puzzle };
268
271
  // !SECTION: Childhood
269
272
  // SECTION: Clothing & Fashion
270
273
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
@@ -272,6 +275,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
272
275
  // SECTION: Coding
273
276
  // !SECTION: Coding
274
277
  // SECTION: Communication
278
+ export { ElectricPlug };
275
279
  // !SECTION: Communication
276
280
  // SECTION: Connectivity
277
281
  // !SECTION: Connectivity