elementa-icons 1.33.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/icons/charts-graphs/PieChart.js +14 -0
- package/dist/icons/charts-graphs/Stocks.js +14 -0
- package/dist/icons/charts-graphs/index.js +3 -0
- package/dist/icons/childhood/Puzzle.js +14 -0
- package/dist/icons/childhood/index.js +2 -0
- package/dist/icons/clothing-fashion/CombScissors.js +1 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.js +4 -0
- package/dist/types/icons/charts-graphs/PieChart.d.ts +6 -0
- package/dist/types/icons/charts-graphs/Stocks.d.ts +6 -0
- package/dist/types/icons/charts-graphs/index.d.ts +3 -0
- package/dist/types/icons/childhood/Puzzle.d.ts +6 -0
- package/dist/types/icons/childhood/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
|
@@ -31,8 +31,10 @@ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
|
|
|
31
31
|
// SECTION: Charity
|
|
32
32
|
// !SECTION: Charity
|
|
33
33
|
// SECTION: Charts & Graphs
|
|
34
|
+
import { PieChart, Stocks } from '@/src/icons/charts-graphs';
|
|
34
35
|
// !SECTION: Charts & Graphs
|
|
35
36
|
// SECTION: Childhood
|
|
37
|
+
import { Puzzle } from '@/src/icons/childhood/';
|
|
36
38
|
// !SECTION: Childhood
|
|
37
39
|
// SECTION: Clothing & Fashion
|
|
38
40
|
import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
|
|
@@ -202,8 +204,10 @@ export { Briefcase, CareerGrowth };
|
|
|
202
204
|
// SECTION: Charity
|
|
203
205
|
// !SECTION: Charity
|
|
204
206
|
// SECTION: Charts & Graphs
|
|
207
|
+
export { PieChart, Stocks };
|
|
205
208
|
// !SECTION: Charts & Graphs
|
|
206
209
|
// SECTION: Childhood
|
|
210
|
+
export { Puzzle };
|
|
207
211
|
// !SECTION: Childhood
|
|
208
212
|
// SECTION: Clothing & Fashion
|
|
209
213
|
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ import { Rocket } from '@/src/icons/astronomy/';
|
|
|
7
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
|
+
import { PieChart, Stocks } from '@/src/icons/charts-graphs';
|
|
11
|
+
import { Puzzle } from '@/src/icons/childhood/';
|
|
10
12
|
import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
|
|
11
13
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
12
14
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -40,6 +42,8 @@ export { Rocket };
|
|
|
40
42
|
export { Gear, ToolBox };
|
|
41
43
|
export { Cityline, Home1, Home2, Home3 };
|
|
42
44
|
export { Briefcase, CareerGrowth };
|
|
45
|
+
export { PieChart, Stocks };
|
|
46
|
+
export { Puzzle };
|
|
43
47
|
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
44
48
|
export { Airpods, Devices, USBACable };
|
|
45
49
|
export { Add, Cut, Copy, Edit, Paste };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -40,8 +40,10 @@ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
|
|
|
40
40
|
// SECTION: Charity
|
|
41
41
|
// !SECTION: Charity
|
|
42
42
|
// SECTION: Charts & Graphs
|
|
43
|
+
import { PieChart, Stocks } from '@/src/icons/charts-graphs';
|
|
43
44
|
// !SECTION: Charts & Graphs
|
|
44
45
|
// SECTION: Childhood
|
|
46
|
+
import { Puzzle } from '@/src/icons/childhood/';
|
|
45
47
|
// !SECTION: Childhood
|
|
46
48
|
// SECTION: Clothing & Fashion
|
|
47
49
|
import {
|
|
@@ -261,8 +263,10 @@ export { Briefcase, CareerGrowth };
|
|
|
261
263
|
// SECTION: Charity
|
|
262
264
|
// !SECTION: Charity
|
|
263
265
|
// SECTION: Charts & Graphs
|
|
266
|
+
export { PieChart, Stocks };
|
|
264
267
|
// !SECTION: Charts & Graphs
|
|
265
268
|
// SECTION: Childhood
|
|
269
|
+
export { Puzzle };
|
|
266
270
|
// !SECTION: Childhood
|
|
267
271
|
// SECTION: Clothing & Fashion
|
|
268
272
|
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|