elementa-icons 1.33.0 → 1.34.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/clothing-fashion/CombScissors.js +1 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -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/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -31,6 +31,7 @@ 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
|
|
36
37
|
// !SECTION: Childhood
|
|
@@ -202,6 +203,7 @@ export { Briefcase, CareerGrowth };
|
|
|
202
203
|
// SECTION: Charity
|
|
203
204
|
// !SECTION: Charity
|
|
204
205
|
// SECTION: Charts & Graphs
|
|
206
|
+
export { PieChart, Stocks };
|
|
205
207
|
// !SECTION: Charts & Graphs
|
|
206
208
|
// SECTION: Childhood
|
|
207
209
|
// !SECTION: Childhood
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ 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';
|
|
10
11
|
import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
|
|
11
12
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
12
13
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -40,6 +41,7 @@ export { Rocket };
|
|
|
40
41
|
export { Gear, ToolBox };
|
|
41
42
|
export { Cityline, Home1, Home2, Home3 };
|
|
42
43
|
export { Briefcase, CareerGrowth };
|
|
44
|
+
export { PieChart, Stocks };
|
|
43
45
|
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
44
46
|
export { Airpods, Devices, USBACable };
|
|
45
47
|
export { Add, Cut, Copy, Edit, Paste };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -40,6 +40,7 @@ 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
|
|
45
46
|
// !SECTION: Childhood
|
|
@@ -261,6 +262,7 @@ export { Briefcase, CareerGrowth };
|
|
|
261
262
|
// SECTION: Charity
|
|
262
263
|
// !SECTION: Charity
|
|
263
264
|
// SECTION: Charts & Graphs
|
|
265
|
+
export { PieChart, Stocks };
|
|
264
266
|
// !SECTION: Charts & Graphs
|
|
265
267
|
// SECTION: Childhood
|
|
266
268
|
// !SECTION: Childhood
|