elementa-icons 1.51.0 → 1.53.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/devices-hardware/Laptop1.js +14 -0
- package/dist/icons/devices-hardware/Router.js +14 -0
- package/dist/icons/devices-hardware/Smartwatch.js +14 -0
- package/dist/icons/devices-hardware/Telephone1.js +14 -0
- package/dist/icons/devices-hardware/Telephone2.js +14 -0
- package/dist/icons/devices-hardware/index.js +6 -1
- package/dist/icons/education/GraduationHat.js +16 -0
- package/dist/icons/education/index.js +2 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +4 -4
- package/dist/types/icons/devices-hardware/Laptop1.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Router.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Smartwatch.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Telephone1.d.ts +6 -0
- package/dist/types/icons/devices-hardware/Telephone2.d.ts +6 -0
- package/dist/types/icons/devices-hardware/index.d.ts +6 -1
- package/dist/types/icons/education/GraduationHat.d.ts +6 -0
- package/dist/types/icons/education/index.d.ts +2 -1
- package/dist/types/index.d.ts +4 -4
- package/package.json +1 -1
- package/src/index.ts +22 -4
package/dist/index.js
CHANGED
|
@@ -53,7 +53,7 @@ import { HammerNail } from '@/src/icons/construction';
|
|
|
53
53
|
// SECTION: Design
|
|
54
54
|
// !SECTION: Design
|
|
55
55
|
// SECTION: Devices & Hardware
|
|
56
|
-
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
56
|
+
import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
|
|
57
57
|
// !SECTION: Devices & Hardware
|
|
58
58
|
// SECTION: Disaster & Crisis
|
|
59
59
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
@@ -62,7 +62,7 @@ import { Siren } from '@/src/icons/disaster-crisis';
|
|
|
62
62
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
63
63
|
// !SECTION: Editing & Creation
|
|
64
64
|
// SECTION: Education
|
|
65
|
-
import { OpenBook } from '@/src/icons/education';
|
|
65
|
+
import { GraduationHat, OpenBook } from '@/src/icons/education';
|
|
66
66
|
// !SECTION: Education
|
|
67
67
|
// SECTION: Emoji & Emoticons
|
|
68
68
|
// !SECTION: Emoji & Emoticons
|
|
@@ -237,7 +237,7 @@ export { HammerNail };
|
|
|
237
237
|
// SECTION: Design
|
|
238
238
|
// !SECTION: Design
|
|
239
239
|
// SECTION: Devices & Hardware
|
|
240
|
-
export { Airpods, Devices, USBACable };
|
|
240
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
|
241
241
|
// !SECTION: Devices & Hardware
|
|
242
242
|
// SECTION: Disaster & Crisis
|
|
243
243
|
export { Siren };
|
|
@@ -246,7 +246,7 @@ export { Siren };
|
|
|
246
246
|
export { Add, Cut, Copy, Edit, Paste };
|
|
247
247
|
// !SECTION: Editing & Creation
|
|
248
248
|
// SECTION: Education
|
|
249
|
-
export { OpenBook };
|
|
249
|
+
export { OpenBook, GraduationHat };
|
|
250
250
|
// !SECTION: Education
|
|
251
251
|
// SECTION: Emoji & Emoticons
|
|
252
252
|
// !SECTION: Emoji & Emoticons
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import Airpods from '@/src/icons/devices-hardware/Airpods';
|
|
2
2
|
import Devices from '@/src/icons/devices-hardware/Devices';
|
|
3
|
+
import Laptop1 from '@/src/icons/devices-hardware/Laptop1';
|
|
4
|
+
import Router from '@/src/icons/devices-hardware/Router';
|
|
5
|
+
import Smartwatch from '@/src/icons/devices-hardware/Smartwatch';
|
|
6
|
+
import Telephone1 from '@/src/icons/devices-hardware/Telephone1';
|
|
7
|
+
import Telephone2 from '@/src/icons/devices-hardware/Telephone2';
|
|
3
8
|
import USBACable from '@/src/icons/devices-hardware/USBACable';
|
|
4
|
-
export { Airpods, Devices, USBACable };
|
|
9
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon.
|
|
4
|
+
*/
|
|
5
|
+
declare const GraduationHat: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default GraduationHat;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -13,10 +13,10 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
|
|
|
13
13
|
import { ElectricPlug } from '@/src/icons/communication';
|
|
14
14
|
import { CloudSaas } from '@/src/icons/connectivity';
|
|
15
15
|
import { HammerNail } from '@/src/icons/construction';
|
|
16
|
-
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
16
|
+
import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
|
|
17
17
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
18
18
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
19
|
-
import { OpenBook } from '@/src/icons/education';
|
|
19
|
+
import { GraduationHat, OpenBook } from '@/src/icons/education';
|
|
20
20
|
import { HomeDocuments } from '@/src/icons/files-folders';
|
|
21
21
|
import { Clapperboard, ComedyMasks } from '@/src/icons/film-video';
|
|
22
22
|
import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
|
|
@@ -59,10 +59,10 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
|
59
59
|
export { ElectricPlug };
|
|
60
60
|
export { CloudSaas };
|
|
61
61
|
export { HammerNail };
|
|
62
|
-
export { Airpods, Devices, USBACable };
|
|
62
|
+
export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
|
|
63
63
|
export { Siren };
|
|
64
64
|
export { Add, Cut, Copy, Edit, Paste };
|
|
65
|
-
export { OpenBook };
|
|
65
|
+
export { OpenBook, GraduationHat };
|
|
66
66
|
export { HomeDocuments };
|
|
67
67
|
export { Clapperboard, ComedyMasks };
|
|
68
68
|
export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -70,7 +70,16 @@ import { HammerNail } from '@/src/icons/construction';
|
|
|
70
70
|
// SECTION: Design
|
|
71
71
|
// !SECTION: Design
|
|
72
72
|
// SECTION: Devices & Hardware
|
|
73
|
-
import {
|
|
73
|
+
import {
|
|
74
|
+
Airpods,
|
|
75
|
+
Devices,
|
|
76
|
+
Laptop1,
|
|
77
|
+
Router,
|
|
78
|
+
Smartwatch,
|
|
79
|
+
Telephone1,
|
|
80
|
+
Telephone2,
|
|
81
|
+
USBACable
|
|
82
|
+
} from '@/src/icons/devices-hardware';
|
|
74
83
|
// !SECTION: Devices & Hardware
|
|
75
84
|
// SECTION: Disaster & Crisis
|
|
76
85
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
@@ -79,7 +88,7 @@ import { Siren } from '@/src/icons/disaster-crisis';
|
|
|
79
88
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
80
89
|
// !SECTION: Editing & Creation
|
|
81
90
|
// SECTION: Education
|
|
82
|
-
import { OpenBook } from '@/src/icons/education';
|
|
91
|
+
import { GraduationHat, OpenBook } from '@/src/icons/education';
|
|
83
92
|
// !SECTION: Education
|
|
84
93
|
// SECTION: Emoji & Emoticons
|
|
85
94
|
// !SECTION: Emoji & Emoticons
|
|
@@ -328,7 +337,16 @@ export { HammerNail };
|
|
|
328
337
|
// SECTION: Design
|
|
329
338
|
// !SECTION: Design
|
|
330
339
|
// SECTION: Devices & Hardware
|
|
331
|
-
export {
|
|
340
|
+
export {
|
|
341
|
+
Airpods,
|
|
342
|
+
Devices,
|
|
343
|
+
Laptop1,
|
|
344
|
+
Router,
|
|
345
|
+
Smartwatch,
|
|
346
|
+
Telephone1,
|
|
347
|
+
Telephone2,
|
|
348
|
+
USBACable
|
|
349
|
+
};
|
|
332
350
|
// !SECTION: Devices & Hardware
|
|
333
351
|
// SECTION: Disaster & Crisis
|
|
334
352
|
export { Siren };
|
|
@@ -337,7 +355,7 @@ export { Siren };
|
|
|
337
355
|
export { Add, Cut, Copy, Edit, Paste };
|
|
338
356
|
// !SECTION: Editing & Creation
|
|
339
357
|
// SECTION: Education
|
|
340
|
-
export { OpenBook };
|
|
358
|
+
export { OpenBook, GraduationHat };
|
|
341
359
|
// !SECTION: Education
|
|
342
360
|
// SECTION: Emoji & Emoticons
|
|
343
361
|
// !SECTION: Emoji & Emoticons
|