elementa-icons 1.34.0 → 1.35.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';
@@ -206,6 +207,7 @@ export { Briefcase, CareerGrowth };
206
207
  export { PieChart, Stocks };
207
208
  // !SECTION: Charts & Graphs
208
209
  // SECTION: Childhood
210
+ export { Puzzle };
209
211
  // !SECTION: Childhood
210
212
  // SECTION: Clothing & Fashion
211
213
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
@@ -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 };
@@ -8,6 +8,7 @@ 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';
12
13
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
13
14
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -42,6 +43,7 @@ export { Gear, ToolBox };
42
43
  export { Cityline, Home1, Home2, Home3 };
43
44
  export { Briefcase, CareerGrowth };
44
45
  export { PieChart, Stocks };
46
+ export { Puzzle };
45
47
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
46
48
  export { Airpods, Devices, USBACable };
47
49
  export { Add, Cut, Copy, Edit, Paste };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.34.0",
3
+ "version": "1.35.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 {
@@ -265,6 +266,7 @@ export { Briefcase, CareerGrowth };
265
266
  export { PieChart, Stocks };
266
267
  // !SECTION: Charts & Graphs
267
268
  // SECTION: Childhood
269
+ export { Puzzle };
268
270
  // !SECTION: Childhood
269
271
  // SECTION: Clothing & Fashion
270
272
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };