elementa-icons 1.58.0 → 1.60.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
@@ -130,14 +130,14 @@ import { Flag } from '@/src/icons/political';
130
130
  // SECTION: Religion
131
131
  // !SECTION: Religion
132
132
  // SECTION: Saving & Data Management
133
- import { Delete, Refresh } from '@/src/icons/saving-data-management';
133
+ import { DataTransferVertical1, Delete, Import, Refresh } from '@/src/icons/saving-data-management';
134
134
  // !SECTION: Saving & Data Management
135
135
  // SECTION: Science
136
136
  // !SECTION: Science
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
@@ -314,14 +314,14 @@ export { Flag };
314
314
  // SECTION: Religion
315
315
  // !SECTION: Religion
316
316
  // SECTION: Saving & Data Management
317
- export { Delete, Refresh };
317
+ export { DataTransferVertical1, Delete, Import, Refresh };
318
318
  // !SECTION: Saving & Data Management
319
319
  // SECTION: Science
320
320
  // !SECTION: Science
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 SVG icon.
4
+ */
5
+ declare const DataTransferVertical1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default DataTransferVertical1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Import: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Import;
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * This file exports all icons in the "Saving & Data Management" category.
3
3
  */
4
+ import DataTransferVertical1 from '@/src/icons/saving-data-management/DataTransferVertical1';
4
5
  import Delete from '@/src/icons/saving-data-management/Delete';
6
+ import Import from '@/src/icons/saving-data-management/Import';
5
7
  import Refresh from '@/src/icons/saving-data-management/Refresh';
6
- export { Delete, Refresh };
8
+ export { DataTransferVertical1, Delete, Import, Refresh };
@@ -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';
@@ -34,8 +34,8 @@ import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
34
34
  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
- import { Delete, Refresh } from '@/src/icons/saving-data-management';
38
- import { Fingerprint, Logout } from '@/src/icons/security-privacy';
37
+ import { DataTransferVertical1, Delete, Import, Refresh } from '@/src/icons/saving-data-management';
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 };
@@ -80,8 +80,8 @@ export { Bitcoin, CreditCards, Wallet };
80
80
  export { Mic };
81
81
  export { Fire, WaterDrops, WaterPlant };
82
82
  export { Flag };
83
- export { Delete, Refresh };
84
- export { Fingerprint, Logout };
83
+ export { DataTransferVertical1, Delete, Import, Refresh };
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.60.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
@@ -196,14 +196,27 @@ import { Flag } from '@/src/icons/political';
196
196
  // SECTION: Religion
197
197
  // !SECTION: Religion
198
198
  // SECTION: Saving & Data Management
199
- import { Delete, Refresh } from '@/src/icons/saving-data-management';
199
+ import {
200
+ DataTransferVertical1,
201
+ Delete,
202
+ Import,
203
+ Refresh
204
+ } from '@/src/icons/saving-data-management';
200
205
  // !SECTION: Saving & Data Management
201
206
  // SECTION: Science
202
207
  // !SECTION: Science
203
208
  // SECTION: Science Fiction
204
209
  // !SECTION: Science Fiction
205
210
  // SECTION: Security & Privacy
206
- import { Fingerprint, Logout } from '@/src/icons/security-privacy';
211
+ import {
212
+ IdCard,
213
+ Fingerprint,
214
+ Locker,
215
+ LockerChest,
216
+ LockerCircle,
217
+ Logout,
218
+ WorldLocker
219
+ } from '@/src/icons/security-privacy';
207
220
  // !SECTION: Security & Privacy
208
221
  // SECTION: Shapes, Symbols & Punctuation
209
222
  import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation';
@@ -389,7 +402,7 @@ export {
389
402
  Grocery,
390
403
  Plate1,
391
404
  PotatoChips,
392
- ServiceTray
405
+ ServiceTray1
393
406
  };
394
407
  // !SECTION: Food & Beverage
395
408
  // SECTION: Gaming
@@ -454,14 +467,22 @@ export { Flag };
454
467
  // SECTION: Religion
455
468
  // !SECTION: Religion
456
469
  // SECTION: Saving & Data Management
457
- export { Delete, Refresh };
470
+ export { DataTransferVertical1, Delete, Import, Refresh };
458
471
  // !SECTION: Saving & Data Management
459
472
  // SECTION: Science
460
473
  // !SECTION: Science
461
474
  // SECTION: Science Fiction
462
475
  // !SECTION: Science Fiction
463
476
  // SECTION: Security & Privacy
464
- export { Fingerprint, Logout };
477
+ export {
478
+ IdCard,
479
+ Fingerprint,
480
+ Locker,
481
+ LockerChest,
482
+ LockerCircle,
483
+ Logout,
484
+ WorldLocker
485
+ };
465
486
  // !SECTION: Security & Privacy
466
487
  // SECTION: Shapes, Symbols & Punctuation
467
488
  export { Shapes, TrackLine };