elementa-icons 1.52.0 → 1.55.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/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
@@ -83,7 +83,7 @@ import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips }
83
83
  import { Palm } from '@/src/icons/hands';
84
84
  // !SECTION: Hands
85
85
  // SECTION: Holidays
86
- import { Balloon, GiftBox } from '@/src/icons/holidays';
86
+ import { Balloon, Confetti, GiftBox, HotelBoard } from '@/src/icons/holidays';
87
87
  // !SECTION: Holidays
88
88
  // SECTION: Household
89
89
  import { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities } from '@/src/icons/household';
@@ -118,7 +118,7 @@ import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
118
118
  import { Mic } from '@/src/icons/music-audio';
119
119
  // !SECTION: Music & Audio
120
120
  // SECTION: Nature & Environment
121
- import { Fire } from '@/src/icons/nature-environment';
121
+ import { Fire, WaterDrops, WaterPlant } from '@/src/icons/nature-environment';
122
122
  // !SECTION: Nature & Environment
123
123
  // SECTION: Numbers
124
124
  // !SECTION: Numbers
@@ -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
@@ -267,7 +267,7 @@ export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips }
267
267
  export { Palm };
268
268
  // !SECTION: Hands
269
269
  // SECTION: Holidays
270
- export { Balloon, GiftBox };
270
+ export { Balloon, Confetti, GiftBox, HotelBoard };
271
271
  // !SECTION: Holidays
272
272
  // SECTION: Household
273
273
  export { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities };
@@ -302,7 +302,7 @@ export { Bitcoin, CreditCards, Wallet };
302
302
  export { Mic };
303
303
  // !SECTION: Music & Audio
304
304
  // SECTION: Nature & Environment
305
- export { Fire };
305
+ export { Fire, WaterDrops, WaterPlant };
306
306
  // !SECTION: Nature & Environment
307
307
  // SECTION: Numbers
308
308
  // !SECTION: Numbers
@@ -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;
@@ -1,2 +1,3 @@
1
+ import GraduationHat from '@/src/icons/education/GraduationHat';
1
2
  import OpenBook from '@/src/icons/education/OpenBook';
2
- export { OpenBook };
3
+ export { GraduationHat, OpenBook };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a confetti icon.
4
+ */
5
+ declare const Confetti: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Confetti;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a hotel board icon.
4
+ */
5
+ declare const HotelBoard: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default HotelBoard;
@@ -1,3 +1,5 @@
1
1
  import Balloon from '@/src/icons/holidays/Balloon';
2
+ import Confetti from '@/src/icons/holidays/Confetti';
2
3
  import GiftBox from '@/src/icons/holidays/GiftBox';
3
- export { Balloon, GiftBox };
4
+ import HotelBoard from '@/src/icons/holidays/HotelBoard';
5
+ export { Balloon, Confetti, GiftBox, HotelBoard };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders water drops..
4
+ */
5
+ declare const WaterDrops: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default WaterDrops;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an icon of watering plant.
4
+ */
5
+ declare const WaterPlant: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default WaterPlant;
@@ -1,2 +1,4 @@
1
1
  import Fire from '@/src/icons/nature-environment/Fire';
2
- export { Fire };
2
+ import WaterDrops from '@/src/icons/nature-environment/WaterDrops';
3
+ import WaterPlant from '@/src/icons/nature-environment/WaterPlant';
4
+ export { Fire, WaterDrops, WaterPlant };
@@ -16,12 +16,12 @@ 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';
23
23
  import { Palm } from '@/src/icons/hands';
24
- import { Balloon, GiftBox } from '@/src/icons/holidays';
24
+ import { Balloon, Confetti, GiftBox, HotelBoard } from '@/src/icons/holidays';
25
25
  import { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities } from '@/src/icons/household';
26
26
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
27
27
  import { PinOnHand, World1 } from '@/src/icons/location-maps';
@@ -32,7 +32,7 @@ import MediaPlayback from '@/src/icons/media-playback/MediaPlayback';
32
32
  import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health';
33
33
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
34
34
  import { Mic } from '@/src/icons/music-audio';
35
- import { Fire } from '@/src/icons/nature-environment';
35
+ import { Fire, WaterDrops, WaterPlant } from '@/src/icons/nature-environment';
36
36
  import { Flag } from '@/src/icons/political';
37
37
  import { Delete, Refresh } from '@/src/icons/saving-data-management';
38
38
  import { Fingerprint, Logout } from '@/src/icons/security-privacy';
@@ -62,12 +62,12 @@ 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 };
69
69
  export { Palm };
70
- export { Balloon, GiftBox };
70
+ export { Balloon, Confetti, GiftBox, HotelBoard };
71
71
  export { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities };
72
72
  export { FavoriteFilled, FavoriteOutline };
73
73
  export { PinOnHand, World1 };
@@ -78,7 +78,7 @@ export { MediaPlayback };
78
78
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
79
79
  export { Bitcoin, CreditCards, Wallet };
80
80
  export { Mic };
81
- export { Fire };
81
+ export { Fire, WaterDrops, WaterPlant };
82
82
  export { Flag };
83
83
  export { Delete, Refresh };
84
84
  export { Fingerprint, Logout };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.52.0",
3
+ "version": "1.55.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
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
@@ -117,7 +117,7 @@ import {
117
117
  import { Palm } from '@/src/icons/hands';
118
118
  // !SECTION: Hands
119
119
  // SECTION: Holidays
120
- import { Balloon, GiftBox } from '@/src/icons/holidays';
120
+ import { Balloon, Confetti, GiftBox, HotelBoard } from '@/src/icons/holidays';
121
121
  // !SECTION: Holidays
122
122
  // SECTION: Household
123
123
  import {
@@ -175,7 +175,7 @@ import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
175
175
  import { Mic } from '@/src/icons/music-audio';
176
176
  // !SECTION: Music & Audio
177
177
  // SECTION: Nature & Environment
178
- import { Fire } from '@/src/icons/nature-environment';
178
+ import { Fire, WaterDrops, WaterPlant } from '@/src/icons/nature-environment';
179
179
  // !SECTION: Nature & Environment
180
180
  // SECTION: Numbers
181
181
  // !SECTION: Numbers
@@ -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
@@ -384,7 +384,7 @@ export {
384
384
  export { Palm };
385
385
  // !SECTION: Hands
386
386
  // SECTION: Holidays
387
- export { Balloon, GiftBox };
387
+ export { Balloon, Confetti, GiftBox, HotelBoard };
388
388
  // !SECTION: Holidays
389
389
  // SECTION: Household
390
390
  export {
@@ -428,7 +428,7 @@ export { Bitcoin, CreditCards, Wallet };
428
428
  export { Mic };
429
429
  // !SECTION: Music & Audio
430
430
  // SECTION: Nature & Environment
431
- export { Fire };
431
+ export { Fire, WaterDrops, WaterPlant };
432
432
  // !SECTION: Nature & Environment
433
433
  // SECTION: Numbers
434
434
  // !SECTION: Numbers