elementa-icons 1.52.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/Telephone1.js +3 -5
- 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 +2 -2
- 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 +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
@@ -16,7 +16,7 @@ import { HammerNail } from '@/src/icons/construction';
|
|
|
16
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';
|
|
@@ -62,7 +62,7 @@ export { HammerNail };
|
|
|
62
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
|
@@ -88,7 +88,7 @@ import { Siren } from '@/src/icons/disaster-crisis';
|
|
|
88
88
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
89
89
|
// !SECTION: Editing & Creation
|
|
90
90
|
// SECTION: Education
|
|
91
|
-
import { OpenBook } from '@/src/icons/education';
|
|
91
|
+
import { GraduationHat, OpenBook } from '@/src/icons/education';
|
|
92
92
|
// !SECTION: Education
|
|
93
93
|
// SECTION: Emoji & Emoticons
|
|
94
94
|
// !SECTION: Emoji & Emoticons
|
|
@@ -355,7 +355,7 @@ export { Siren };
|
|
|
355
355
|
export { Add, Cut, Copy, Edit, Paste };
|
|
356
356
|
// !SECTION: Editing & Creation
|
|
357
357
|
// SECTION: Education
|
|
358
|
-
export { OpenBook };
|
|
358
|
+
export { OpenBook, GraduationHat };
|
|
359
359
|
// !SECTION: Education
|
|
360
360
|
// SECTION: Emoji & Emoticons
|
|
361
361
|
// !SECTION: Emoji & Emoticons
|