elementa-icons 1.58.0 → 1.59.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, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray } from '@/src/icons/food-beverage';
78
+ import { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray1 } from '@/src/icons/food-beverage';
79
79
  // !SECTION: Food & Beverage
80
80
  // SECTION: Gaming
81
81
  // !SECTION: Gaming
@@ -137,7 +137,7 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
137
137
  // SECTION: Science Fiction
138
138
  // !SECTION: Science Fiction
139
139
  // SECTION: Security & Privacy
140
- import { Fingerprint, Logout } from '@/src/icons/security-privacy';
140
+ import { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker } from '@/src/icons/security-privacy';
141
141
  // !SECTION: Security & Privacy
142
142
  // SECTION: Shapes, Symbols & Punctuation
143
143
  import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation';
@@ -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, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
262
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray1 };
263
263
  // !SECTION: Food & Beverage
264
264
  // SECTION: Gaming
265
265
  // !SECTION: Gaming
@@ -321,7 +321,7 @@ export { Delete, Refresh };
321
321
  // SECTION: Science Fiction
322
322
  // !SECTION: Science Fiction
323
323
  // SECTION: Security & Privacy
324
- export { Fingerprint, Logout };
324
+ export { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker };
325
325
  // !SECTION: Security & Privacy
326
326
  // SECTION: Shapes, Symbols & Punctuation
327
327
  export { Shapes, TrackLine };
@@ -9,5 +9,5 @@ import GreenTea from '@/src/icons/food-beverage/GreenTea';
9
9
  import Grocery from '@/src/icons/food-beverage/Grocery';
10
10
  import Plate1 from '@/src/icons/food-beverage/Plate1';
11
11
  import PotatoChips from '@/src/icons/food-beverage/PotatoChips';
12
- import ServiceTray from '@/src/icons/food-beverage/ServiceTray1';
13
- export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
12
+ import ServiceTray1 from '@/src/icons/food-beverage/ServiceTray1';
13
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray1 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an ID card.
4
+ */
5
+ declare const IdCard: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default IdCard;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a locker.
4
+ */
5
+ declare const Locker: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Locker;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a locker chest.
4
+ */
5
+ declare const LockerChest: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default LockerChest;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const LockerCircle: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default LockerCircle;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const WorldLocker: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default WorldLocker;
@@ -1,6 +1,11 @@
1
1
  /**
2
2
  * This file exports all icons in the "Security & Privacy" category.
3
3
  */
4
+ import IdCard from '@/src/icons/security-privacy/IdCard';
4
5
  import Fingerprint from '@/src/icons/security-privacy/Fingerprint';
6
+ import Locker from '@/src/icons/security-privacy/Locker';
7
+ import LockerChest from '@/src/icons/security-privacy/LockerChest';
8
+ import LockerCircle from '@/src/icons/security-privacy/LockerCircle';
5
9
  import Logout from '@/src/icons/security-privacy/Logout';
6
- export { Fingerprint, Logout };
10
+ import WorldLocker from '@/src/icons/security-privacy/WorldLocker';
11
+ export { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker };
@@ -19,7 +19,7 @@ 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, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray } from '@/src/icons/food-beverage';
22
+ import { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray1 } 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';
@@ -35,7 +35,7 @@ import { Mic } from '@/src/icons/music-audio';
35
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
- import { Fingerprint, Logout } from '@/src/icons/security-privacy';
38
+ import { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker } 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';
@@ -65,7 +65,7 @@ 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, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray };
68
+ export { BeerMug, Cake, Cutlery, DineInTable1, EatenApple, EggsBasket, FoodTiffin, GreenTea, Grocery, Plate1, PotatoChips, ServiceTray1 };
69
69
  export { Palm };
70
70
  export { Balloon, Confetti, GiftBox, HotelBoard };
71
71
  export { Appliances, BroomBucket, FourBurners1, GasCylinder, RockingChair, Sofa, Tv, Utilities };
@@ -81,7 +81,7 @@ export { Mic };
81
81
  export { Fire, WaterDrops, WaterPlant };
82
82
  export { Flag };
83
83
  export { Delete, Refresh };
84
- export { Fingerprint, Logout };
84
+ export { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker };
85
85
  export { Shapes, TrackLine };
86
86
  export { Discount, ShoppingBags, ShoppingCart, Wishlist1, Wishlist2 };
87
87
  export { AddFriend, AddFriends, Friends, Memes };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.58.0",
3
+ "version": "1.59.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -113,7 +113,7 @@ import {
113
113
  Grocery,
114
114
  Plate1,
115
115
  PotatoChips,
116
- ServiceTray
116
+ ServiceTray1
117
117
  } from '@/src/icons/food-beverage';
118
118
  // !SECTION: Food & Beverage
119
119
  // SECTION: Gaming
@@ -203,7 +203,15 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
203
203
  // SECTION: Science Fiction
204
204
  // !SECTION: Science Fiction
205
205
  // SECTION: Security & Privacy
206
- import { Fingerprint, Logout } from '@/src/icons/security-privacy';
206
+ import {
207
+ IdCard,
208
+ Fingerprint,
209
+ Locker,
210
+ LockerChest,
211
+ LockerCircle,
212
+ Logout,
213
+ WorldLocker
214
+ } from '@/src/icons/security-privacy';
207
215
  // !SECTION: Security & Privacy
208
216
  // SECTION: Shapes, Symbols & Punctuation
209
217
  import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation';
@@ -389,7 +397,7 @@ export {
389
397
  Grocery,
390
398
  Plate1,
391
399
  PotatoChips,
392
- ServiceTray
400
+ ServiceTray1
393
401
  };
394
402
  // !SECTION: Food & Beverage
395
403
  // SECTION: Gaming
@@ -461,7 +469,15 @@ export { Delete, Refresh };
461
469
  // SECTION: Science Fiction
462
470
  // !SECTION: Science Fiction
463
471
  // SECTION: Security & Privacy
464
- export { Fingerprint, Logout };
472
+ export {
473
+ IdCard,
474
+ Fingerprint,
475
+ Locker,
476
+ LockerChest,
477
+ LockerCircle,
478
+ Logout,
479
+ WorldLocker
480
+ };
465
481
  // !SECTION: Security & Privacy
466
482
  // SECTION: Shapes, Symbols & Punctuation
467
483
  export { Shapes, TrackLine };