elementa-icons 1.55.0 → 1.58.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
@@ -75,7 +75,7 @@ import { HomeDocuments } from '@/src/icons/files-folders';
75
75
  import { Clapperboard, ComedyMasks } from '@/src/icons/film-video';
76
76
  // !SECTION: Film & Video
77
77
  // SECTION: Food & Beverage
78
- import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
78
+ import { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray } from '@/src/icons/food-beverage';
79
79
  // !SECTION: Food & Beverage
80
80
  // SECTION: Gaming
81
81
  // !SECTION: Gaming
@@ -89,7 +89,7 @@ import { Balloon, Confetti, GiftBox, HotelBoard } from '@/src/icons/holidays';
89
89
  import { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities } from '@/src/icons/household';
90
90
  // !SECTION: Household
91
91
  // SECTION: Interactions
92
- import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
92
+ import { FavoriteFilled, FavoriteOutline, Thought } from '@/src/icons/interactions';
93
93
  // !SECTION: Interactions
94
94
  // SECTION: Location & Maps
95
95
  import { PinOnHand, World1 } from '@/src/icons/location-maps';
@@ -151,7 +151,7 @@ import { AddFriend, AddFriends, Friends, Memes } from '@/src/icons/social-people
151
151
  // SECTION: Spinners
152
152
  // !SECTION: Spinners
153
153
  // SECTION: Sports
154
- import { Basketball, Dart } from '@/src/icons/sports';
154
+ import { Badminton, Basketball, Dart } from '@/src/icons/sports';
155
155
  // !SECTION: Sports
156
156
  // SECTION: Status & Notifications
157
157
  import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
@@ -259,7 +259,7 @@ export { HomeDocuments };
259
259
  export { Clapperboard, ComedyMasks };
260
260
  // !SECTION: Film & Video
261
261
  // SECTION: Food & Beverage
262
- export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
262
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
263
263
  // !SECTION: Food & Beverage
264
264
  // SECTION: Gaming
265
265
  // !SECTION: Gaming
@@ -273,7 +273,7 @@ export { Balloon, Confetti, GiftBox, HotelBoard };
273
273
  export { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities };
274
274
  // !SECTION: Household
275
275
  // SECTION: Interactions
276
- export { FavoriteFilled, FavoriteOutline };
276
+ export { FavoriteFilled, FavoriteOutline, Thought };
277
277
  // !SECTION: Interactions
278
278
  // SECTION: Location & Maps
279
279
  export { PinOnHand, World1 };
@@ -335,7 +335,7 @@ export { AddFriend, AddFriends, Friends, Memes };
335
335
  // SECTION: Spinners
336
336
  // !SECTION: Spinners
337
337
  // SECTION: Sports
338
- export { Basketball, Dart };
338
+ export { Badminton, Basketball, Dart };
339
339
  // !SECTION: Sports
340
340
  // SECTION: Status & Notifications
341
341
  export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a dine-in table.
4
+ */
5
+ declare const DineInTable1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default DineInTable1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an egg basket.
4
+ */
5
+ declare const EggsBasket: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default EggsBasket;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a grocery bag.
4
+ */
5
+ declare const Grocery: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Grocery;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a plate.
4
+ */
5
+ declare const Plate1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Plate1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const ServiceTray1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ServiceTray1;
@@ -1,8 +1,13 @@
1
1
  import BeerMug from '@/src/icons/food-beverage/BeerMug';
2
2
  import Cake from '@/src/icons/food-beverage/Cake';
3
3
  import Cutlery from '@/src/icons/food-beverage/Cutlery';
4
+ import DineInTable1 from '@/src/icons/food-beverage/DineInTable1';
4
5
  import EatenApple from '@/src/icons/food-beverage/EatenApple';
6
+ import EggsBasket from '@/src/icons/food-beverage/EggsBasket';
5
7
  import FoodTiffin from '@/src/icons/food-beverage/FoodTiffin';
6
8
  import GreenTea from '@/src/icons/food-beverage/GreenTea';
9
+ import Grocery from '@/src/icons/food-beverage/Grocery';
10
+ import Plate1 from '@/src/icons/food-beverage/Plate1';
7
11
  import PotatoChips from '@/src/icons/food-beverage/PotatoChips';
8
- export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
12
+ import ServiceTray from '@/src/icons/food-beverage/ServiceTray1';
13
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Thought: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Thought;
@@ -3,4 +3,5 @@
3
3
  */
4
4
  import FavoriteFilled from '@/src/icons/interactions/FavoriteFilled';
5
5
  import FavoriteOutline from '@/src/icons/interactions/FavoriteOutline';
6
- export { FavoriteFilled, FavoriteOutline };
6
+ import Thought from '@/src/icons/interactions/Thought';
7
+ export { FavoriteFilled, FavoriteOutline, Thought };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a person smashing a shuttle.
4
+ */
5
+ declare const Badminton: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Badminton;
@@ -1,3 +1,4 @@
1
+ import Badminton from '@/src/icons/sports/Badminton';
1
2
  import Basketball from '@/src/icons/sports/Basketball';
2
3
  import Dart from '@/src/icons/sports/Dart';
3
- export { Basketball, Dart };
4
+ export { Badminton, Basketball, Dart };
@@ -19,11 +19,11 @@ import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
19
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
- import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
22
+ import { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray } from '@/src/icons/food-beverage';
23
23
  import { Palm } from '@/src/icons/hands';
24
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
- import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
26
+ import { FavoriteFilled, FavoriteOutline, Thought } from '@/src/icons/interactions';
27
27
  import { PinOnHand, World1 } from '@/src/icons/location-maps';
28
28
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
29
29
  import { Loudspeaker } from '@/src/icons/marketing';
@@ -39,7 +39,7 @@ import { Fingerprint, Logout } from '@/src/icons/security-privacy';
39
39
  import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation';
40
40
  import { Discount, ShoppingBags, ShoppingCart, Wishlist1, Wishlist2 } from '@/src/icons/shopping';
41
41
  import { AddFriend, AddFriends, Friends, Memes } from '@/src/icons/social-people';
42
- import { Basketball, Dart } from '@/src/icons/sports';
42
+ import { Badminton, Basketball, Dart } from '@/src/icons/sports';
43
43
  import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
44
44
  import { Description } from '@/src/icons/text-formatting';
45
45
  import { Calendar, CalendarEvent, Clock } from '@/src/icons/time-calendar';
@@ -65,11 +65,11 @@ export { Add, Cut, Copy, Edit, Paste };
65
65
  export { OpenBook, GraduationHat };
66
66
  export { HomeDocuments };
67
67
  export { Clapperboard, ComedyMasks };
68
- export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
68
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
69
69
  export { Palm };
70
70
  export { Balloon, Confetti, GiftBox, HotelBoard };
71
71
  export { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities };
72
- export { FavoriteFilled, FavoriteOutline };
72
+ export { FavoriteFilled, FavoriteOutline, Thought };
73
73
  export { PinOnHand, World1 };
74
74
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
75
75
  export { Loudspeaker };
@@ -85,7 +85,7 @@ export { Fingerprint, Logout };
85
85
  export { Shapes, TrackLine };
86
86
  export { Discount, ShoppingBags, ShoppingCart, Wishlist1, Wishlist2 };
87
87
  export { AddFriend, AddFriends, Friends, Memes };
88
- export { Basketball, Dart };
88
+ export { Badminton, Basketball, Dart };
89
89
  export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
90
90
  export { Description };
91
91
  export { Calendar, CalendarEvent, Clock };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.55.0",
3
+ "version": "1.58.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -105,10 +105,15 @@ import {
105
105
  BeerMug,
106
106
  Cake,
107
107
  Cutlery,
108
+ DineInTable1,
108
109
  EatenApple,
110
+ EggsBasket,
109
111
  FoodTiffin,
110
112
  GreenTea,
111
- PotatoChips
113
+ Grocery,
114
+ Plate1,
115
+ PotatoChips,
116
+ ServiceTray
112
117
  } from '@/src/icons/food-beverage';
113
118
  // !SECTION: Food & Beverage
114
119
  // SECTION: Gaming
@@ -132,7 +137,11 @@ import {
132
137
  } from '@/src/icons/household';
133
138
  // !SECTION: Household
134
139
  // SECTION: Interactions
135
- import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
140
+ import {
141
+ FavoriteFilled,
142
+ FavoriteOutline,
143
+ Thought
144
+ } from '@/src/icons/interactions';
136
145
  // !SECTION: Interactions
137
146
  // SECTION: Location & Maps
138
147
  import { PinOnHand, World1 } from '@/src/icons/location-maps';
@@ -219,7 +228,7 @@ import {
219
228
  // SECTION: Spinners
220
229
  // !SECTION: Spinners
221
230
  // SECTION: Sports
222
- import { Basketball, Dart } from '@/src/icons/sports';
231
+ import { Badminton, Basketball, Dart } from '@/src/icons/sports';
223
232
  // !SECTION: Sports
224
233
  // SECTION: Status & Notifications
225
234
  import {
@@ -372,10 +381,15 @@ export {
372
381
  BeerMug,
373
382
  Cake,
374
383
  Cutlery,
384
+ DineInTable1,
375
385
  EatenApple,
386
+ EggsBasket,
376
387
  FoodTiffin,
377
388
  GreenTea,
378
- PotatoChips
389
+ Grocery,
390
+ Plate1,
391
+ PotatoChips,
392
+ ServiceTray
379
393
  };
380
394
  // !SECTION: Food & Beverage
381
395
  // SECTION: Gaming
@@ -399,7 +413,7 @@ export {
399
413
  };
400
414
  // !SECTION: Household
401
415
  // SECTION: Interactions
402
- export { FavoriteFilled, FavoriteOutline };
416
+ export { FavoriteFilled, FavoriteOutline, Thought };
403
417
  // !SECTION: Interactions
404
418
  // SECTION: Location & Maps
405
419
  export { PinOnHand, World1 };
@@ -461,7 +475,7 @@ export { AddFriend, AddFriends, Friends, Memes };
461
475
  // SECTION: Spinners
462
476
  // !SECTION: Spinners
463
477
  // SECTION: Sports
464
- export { Basketball, Dart };
478
+ export { Badminton, Basketball, Dart };
465
479
  // !SECTION: Sports
466
480
  // SECTION: Status & Notifications
467
481
  export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };