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/icons/childhood/Puzzle.js +14 -0
- package/dist/icons/childhood/index.js +2 -0
- package/dist/icons/communication/ElectricPlug.js +14 -0
- package/dist/icons/communication/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +4 -0
- package/dist/types/icons/childhood/Puzzle.d.ts +6 -0
- package/dist/types/icons/childhood/index.d.ts +2 -0
- package/dist/types/icons/communication/ElectricPlug.d.ts +6 -0
- package/dist/types/icons/communication/index.d.ts +2 -0
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
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
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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
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
|