elementa-icons 1.30.0 → 1.31.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/astronomy/Rocket.js +1 -3
- package/dist/icons/automotive/Gear.js +3 -5
- package/dist/icons/automotive/ToolBox.js +1 -3
- package/dist/icons/buildings/Cityline.js +13 -0
- package/dist/icons/buildings/Home1.js +14 -0
- package/dist/icons/buildings/Home2.js +16 -0
- package/dist/icons/buildings/Home3.js +14 -0
- package/dist/icons/buildings/index.js +5 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/buildings/Cityline.d.ts +6 -0
- package/dist/types/icons/buildings/Home1.d.ts +6 -0
- package/dist/types/icons/buildings/Home2.d.ts +6 -0
- package/dist/types/icons/buildings/Home3.d.ts +6 -0
- package/dist/types/icons/buildings/index.d.ts +5 -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
|
@@ -21,6 +21,7 @@ import { Rocket } from '@/src/icons/astronomy/';
|
|
|
21
21
|
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
22
22
|
// !SECTION: Automotive
|
|
23
23
|
// SECTION: Buildings
|
|
24
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
24
25
|
// !SECTION: Buildings
|
|
25
26
|
// SECTION: Business
|
|
26
27
|
// !SECTION: Business
|
|
@@ -190,6 +191,7 @@ export { Rocket };
|
|
|
190
191
|
export { Gear, ToolBox };
|
|
191
192
|
// !SECTION: Automotive
|
|
192
193
|
// SECTION: Buildings
|
|
194
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
193
195
|
// !SECTION: Buildings
|
|
194
196
|
// SECTION: Business
|
|
195
197
|
// !SECTION: Business
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { DogPaw } from '@/src/icons/animals/';
|
|
|
5
5
|
import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
|
|
6
6
|
import { Rocket } from '@/src/icons/astronomy/';
|
|
7
7
|
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
8
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
8
9
|
import { DiamondRing } from '@/src/icons/clothing-fashion';
|
|
9
10
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
10
11
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -36,6 +37,7 @@ export { DogPaw };
|
|
|
36
37
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
37
38
|
export { Rocket };
|
|
38
39
|
export { Gear, ToolBox };
|
|
40
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
39
41
|
export { DiamondRing };
|
|
40
42
|
export { Airpods, Devices, USBACable };
|
|
41
43
|
export { Add, Cut, Copy, Edit, Paste };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -30,6 +30,7 @@ import { Rocket } from '@/src/icons/astronomy/';
|
|
|
30
30
|
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
31
31
|
// !SECTION: Automotive
|
|
32
32
|
// SECTION: Buildings
|
|
33
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
33
34
|
// !SECTION: Buildings
|
|
34
35
|
// SECTION: Business
|
|
35
36
|
// !SECTION: Business
|
|
@@ -241,6 +242,7 @@ export { Rocket };
|
|
|
241
242
|
export { Gear, ToolBox };
|
|
242
243
|
// !SECTION: Automotive
|
|
243
244
|
// SECTION: Buildings
|
|
245
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
244
246
|
// !SECTION: Buildings
|
|
245
247
|
// SECTION: Business
|
|
246
248
|
// !SECTION: Business
|