elementa-icons 1.59.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/icons/saving-data-management/DataTransferVertical1.js +16 -0
- package/dist/icons/saving-data-management/Import.js +14 -0
- package/dist/icons/saving-data-management/index.js +3 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/types/icons/saving-data-management/DataTransferVertical1.d.ts +6 -0
- package/dist/types/icons/saving-data-management/Import.d.ts +6 -0
- package/dist/types/icons/saving-data-management/index.d.ts +3 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +7 -2
package/dist/index.js
CHANGED
|
@@ -130,7 +130,7 @@ 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
|
|
@@ -314,7 +314,7 @@ 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
|
|
@@ -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;
|
|
@@ -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 };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ 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';
|
|
37
|
+
import { DataTransferVertical1, Delete, Import, Refresh } from '@/src/icons/saving-data-management';
|
|
38
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';
|
|
@@ -80,7 +80,7 @@ export { Bitcoin, CreditCards, Wallet };
|
|
|
80
80
|
export { Mic };
|
|
81
81
|
export { Fire, WaterDrops, WaterPlant };
|
|
82
82
|
export { Flag };
|
|
83
|
-
export { Delete, Refresh };
|
|
83
|
+
export { DataTransferVertical1, Delete, Import, Refresh };
|
|
84
84
|
export { IdCard, Fingerprint, Locker, LockerChest, LockerCircle, Logout, WorldLocker };
|
|
85
85
|
export { Shapes, TrackLine };
|
|
86
86
|
export { Discount, ShoppingBags, ShoppingCart, Wishlist1, Wishlist2 };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -196,7 +196,12 @@ import { Flag } from '@/src/icons/political';
|
|
|
196
196
|
// SECTION: Religion
|
|
197
197
|
// !SECTION: Religion
|
|
198
198
|
// SECTION: Saving & Data Management
|
|
199
|
-
import {
|
|
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
|
|
@@ -462,7 +467,7 @@ export { Flag };
|
|
|
462
467
|
// SECTION: Religion
|
|
463
468
|
// !SECTION: Religion
|
|
464
469
|
// SECTION: Saving & Data Management
|
|
465
|
-
export { Delete, Refresh };
|
|
470
|
+
export { DataTransferVertical1, Delete, Import, Refresh };
|
|
466
471
|
// !SECTION: Saving & Data Management
|
|
467
472
|
// SECTION: Science
|
|
468
473
|
// !SECTION: Science
|