elementa-icons 1.38.0 → 1.39.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/files-folders/HomeDocuments.js +14 -0
- package/dist/icons/files-folders/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/files-folders/HomeDocuments.d.ts +6 -0
- package/dist/types/icons/files-folders/index.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -67,6 +67,7 @@ import { OpenBook } from '@/src/icons/education';
|
|
|
67
67
|
// SECTION: Energy
|
|
68
68
|
// !SECTION: Energy
|
|
69
69
|
// SECTION: Files & Folders
|
|
70
|
+
import { HomeDocuments } from '@/src/icons/files-folders';
|
|
70
71
|
// !SECTION: Files & Folders
|
|
71
72
|
// SECTION: Film & Video
|
|
72
73
|
// !SECTION: Film & Video
|
|
@@ -243,6 +244,7 @@ export { OpenBook };
|
|
|
243
244
|
// SECTION: Energy
|
|
244
245
|
// !SECTION: Energy
|
|
245
246
|
// SECTION: Files & Folders
|
|
247
|
+
export { HomeDocuments };
|
|
246
248
|
// !SECTION: Files & Folders
|
|
247
249
|
// SECTION: Film & Video
|
|
248
250
|
// !SECTION: Film & Video
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon.
|
|
4
|
+
*/
|
|
5
|
+
declare const HomeDocuments: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default HomeDocuments;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
|
15
15
|
import { Siren } from '@/src/icons/disaster-crisis';
|
|
16
16
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
17
17
|
import { OpenBook } from '@/src/icons/education';
|
|
18
|
+
import { HomeDocuments } from '@/src/icons/files-folders';
|
|
18
19
|
import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
|
|
19
20
|
import { Palm } from '@/src/icons/hands';
|
|
20
21
|
import { Balloon, GiftBox } from '@/src/icons/holidays';
|
|
@@ -53,6 +54,7 @@ export { Airpods, Devices, USBACable };
|
|
|
53
54
|
export { Siren };
|
|
54
55
|
export { Add, Cut, Copy, Edit, Paste };
|
|
55
56
|
export { OpenBook };
|
|
57
|
+
export { HomeDocuments };
|
|
56
58
|
export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
|
|
57
59
|
export { Palm };
|
|
58
60
|
export { Balloon, GiftBox };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -84,6 +84,7 @@ import { OpenBook } from '@/src/icons/education';
|
|
|
84
84
|
// SECTION: Energy
|
|
85
85
|
// !SECTION: Energy
|
|
86
86
|
// SECTION: Files & Folders
|
|
87
|
+
import { HomeDocuments } from '@/src/icons/files-folders';
|
|
87
88
|
// !SECTION: Files & Folders
|
|
88
89
|
// SECTION: Film & Video
|
|
89
90
|
// !SECTION: Film & Video
|
|
@@ -308,6 +309,7 @@ export { OpenBook };
|
|
|
308
309
|
// SECTION: Energy
|
|
309
310
|
// !SECTION: Energy
|
|
310
311
|
// SECTION: Files & Folders
|
|
312
|
+
export { HomeDocuments };
|
|
311
313
|
// !SECTION: Files & Folders
|
|
312
314
|
// SECTION: Film & Video
|
|
313
315
|
// !SECTION: Film & Video
|