elementa-icons 1.32.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/business/Briefcase.js +1 -3
- package/dist/icons/business/CareerGrowth.js +1 -3
- 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/Beard.js +14 -0
- package/dist/icons/clothing-fashion/CombScissors.js +14 -0
- package/dist/icons/clothing-fashion/Hanger.js +14 -0
- package/dist/icons/clothing-fashion/Necklace.js +14 -0
- package/dist/icons/clothing-fashion/SkinCare.js +14 -0
- package/dist/icons/clothing-fashion/Tshirt.js +14 -0
- package/dist/icons/clothing-fashion/index.js +7 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +4 -2
- 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/clothing-fashion/Beard.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/CombScissors.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/Hanger.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/Necklace.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/SkinCare.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/Tshirt.d.ts +6 -0
- package/dist/types/icons/clothing-fashion/index.d.ts +7 -1
- package/dist/types/index.d.ts +4 -2
- package/package.json +1 -1
- package/src/index.ts +12 -2
package/dist/index.js
CHANGED
|
@@ -31,11 +31,12 @@ 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
|
|
37
38
|
// SECTION: Clothing & Fashion
|
|
38
|
-
import { DiamondRing } from '@/src/icons/clothing-fashion';
|
|
39
|
+
import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
|
|
39
40
|
// !SECTION: Clothing & Fashion
|
|
40
41
|
// SECTION: Coding
|
|
41
42
|
// !SECTION: Coding
|
|
@@ -202,11 +203,12 @@ 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
|
|
208
210
|
// SECTION: Clothing & Fashion
|
|
209
|
-
export { DiamondRing };
|
|
211
|
+
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
210
212
|
// !SECTION: Clothing & Fashion
|
|
211
213
|
// SECTION: Coding
|
|
212
214
|
// !SECTION: Coding
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a {auto-generated}.
|
|
4
|
+
*/
|
|
5
|
+
declare const Hanger: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default Hanger;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon of a {auto-generated}.
|
|
4
|
+
*/
|
|
5
|
+
declare const Tshirt: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default Tshirt;
|
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import Beard from '@/src/icons/clothing-fashion/Beard';
|
|
2
|
+
import CombScissors from '@/src/icons/clothing-fashion/CombScissors';
|
|
1
3
|
import DiamondRing from '@/src/icons/clothing-fashion/DiamondRing';
|
|
2
|
-
|
|
4
|
+
import Hanger from '@/src/icons/clothing-fashion/Hanger';
|
|
5
|
+
import Necklace from '@/src/icons/clothing-fashion/Necklace';
|
|
6
|
+
import SkinCare from '@/src/icons/clothing-fashion/SkinCare';
|
|
7
|
+
import Tshirt from '@/src/icons/clothing-fashion/Tshirt';
|
|
8
|
+
export { Beard, CombScissors, Hanger, DiamondRing, Necklace, SkinCare, Tshirt };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7,7 +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 {
|
|
10
|
+
import { PieChart, Stocks } from '@/src/icons/charts-graphs';
|
|
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';
|
|
13
14
|
import { OpenBook } from '@/src/icons/education';
|
|
@@ -40,7 +41,8 @@ export { Rocket };
|
|
|
40
41
|
export { Gear, ToolBox };
|
|
41
42
|
export { Cityline, Home1, Home2, Home3 };
|
|
42
43
|
export { Briefcase, CareerGrowth };
|
|
43
|
-
export {
|
|
44
|
+
export { PieChart, Stocks };
|
|
45
|
+
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
44
46
|
export { Airpods, Devices, USBACable };
|
|
45
47
|
export { Add, Cut, Copy, Edit, Paste };
|
|
46
48
|
export { OpenBook };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -40,11 +40,20 @@ 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
|
|
46
47
|
// SECTION: Clothing & Fashion
|
|
47
|
-
import {
|
|
48
|
+
import {
|
|
49
|
+
Beard,
|
|
50
|
+
CombScissors,
|
|
51
|
+
DiamondRing,
|
|
52
|
+
Hanger,
|
|
53
|
+
Necklace,
|
|
54
|
+
SkinCare,
|
|
55
|
+
Tshirt
|
|
56
|
+
} from '@/src/icons/clothing-fashion';
|
|
48
57
|
// !SECTION: Clothing & Fashion
|
|
49
58
|
// SECTION: Coding
|
|
50
59
|
// !SECTION: Coding
|
|
@@ -253,11 +262,12 @@ export { Briefcase, CareerGrowth };
|
|
|
253
262
|
// SECTION: Charity
|
|
254
263
|
// !SECTION: Charity
|
|
255
264
|
// SECTION: Charts & Graphs
|
|
265
|
+
export { PieChart, Stocks };
|
|
256
266
|
// !SECTION: Charts & Graphs
|
|
257
267
|
// SECTION: Childhood
|
|
258
268
|
// !SECTION: Childhood
|
|
259
269
|
// SECTION: Clothing & Fashion
|
|
260
|
-
export { DiamondRing };
|
|
270
|
+
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
261
271
|
// !SECTION: Clothing & Fashion
|
|
262
272
|
// SECTION: Coding
|
|
263
273
|
// !SECTION: Coding
|