elementa-icons 1.28.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 +14 -0
- package/dist/icons/astronomy/index.js +2 -0
- package/dist/icons/automotive/Gear.js +14 -0
- package/dist/icons/automotive/ToolBox.js +14 -0
- package/dist/icons/automotive/index.js +3 -0
- 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 +6 -0
- package/dist/types/icons/astronomy/Rocket.d.ts +6 -0
- package/dist/types/icons/astronomy/index.d.ts +2 -0
- package/dist/types/icons/automotive/Gear.d.ts +6 -0
- package/dist/types/icons/automotive/ToolBox.d.ts +6 -0
- package/dist/types/icons/automotive/index.d.ts +3 -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 +6 -0
- package/package.json +1 -1
- package/src/index.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -15,10 +15,13 @@ import { DogPaw } from '@/src/icons/animals/';
|
|
|
15
15
|
import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
|
|
16
16
|
// !SECTION: Arrows & Direction
|
|
17
17
|
// SECTION: Astronomy
|
|
18
|
+
import { Rocket } from '@/src/icons/astronomy/';
|
|
18
19
|
// !SECTION: Astronomy
|
|
19
20
|
// SECTION: Automotive
|
|
21
|
+
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
20
22
|
// !SECTION: Automotive
|
|
21
23
|
// SECTION: Buildings
|
|
24
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
22
25
|
// !SECTION: Buildings
|
|
23
26
|
// SECTION: Business
|
|
24
27
|
// !SECTION: Business
|
|
@@ -182,10 +185,13 @@ export { DogPaw };
|
|
|
182
185
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
183
186
|
// !SECTION: Arrows & Direction
|
|
184
187
|
// SECTION: Astronomy
|
|
188
|
+
export { Rocket };
|
|
185
189
|
// !SECTION: Astronomy
|
|
186
190
|
// SECTION: Automotive
|
|
191
|
+
export { Gear, ToolBox };
|
|
187
192
|
// !SECTION: Automotive
|
|
188
193
|
// SECTION: Buildings
|
|
194
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
189
195
|
// !SECTION: Buildings
|
|
190
196
|
// SECTION: Business
|
|
191
197
|
// !SECTION: Business
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { DogPaw } from '@/src/icons/animals/';
|
|
5
5
|
import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
|
|
6
|
+
import { Rocket } from '@/src/icons/astronomy/';
|
|
7
|
+
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
8
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
6
9
|
import { DiamondRing } from '@/src/icons/clothing-fashion';
|
|
7
10
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
8
11
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -32,6 +35,9 @@ import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-contro
|
|
|
32
35
|
import { Info, TickCloud } from '@/src/icons/status-notifications';
|
|
33
36
|
export { DogPaw };
|
|
34
37
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
38
|
+
export { Rocket };
|
|
39
|
+
export { Gear, ToolBox };
|
|
40
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
35
41
|
export { DiamondRing };
|
|
36
42
|
export { Airpods, Devices, USBACable };
|
|
37
43
|
export { Add, Cut, Copy, Edit, Paste };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -24,10 +24,13 @@ import {
|
|
|
24
24
|
} from '@/src/icons/arrows-directions';
|
|
25
25
|
// !SECTION: Arrows & Direction
|
|
26
26
|
// SECTION: Astronomy
|
|
27
|
+
import { Rocket } from '@/src/icons/astronomy/';
|
|
27
28
|
// !SECTION: Astronomy
|
|
28
29
|
// SECTION: Automotive
|
|
30
|
+
import { Gear, ToolBox } from '@/src/icons/automotive/';
|
|
29
31
|
// !SECTION: Automotive
|
|
30
32
|
// SECTION: Buildings
|
|
33
|
+
import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
|
|
31
34
|
// !SECTION: Buildings
|
|
32
35
|
// SECTION: Business
|
|
33
36
|
// !SECTION: Business
|
|
@@ -233,10 +236,13 @@ export {
|
|
|
233
236
|
};
|
|
234
237
|
// !SECTION: Arrows & Direction
|
|
235
238
|
// SECTION: Astronomy
|
|
239
|
+
export { Rocket };
|
|
236
240
|
// !SECTION: Astronomy
|
|
237
241
|
// SECTION: Automotive
|
|
242
|
+
export { Gear, ToolBox };
|
|
238
243
|
// !SECTION: Automotive
|
|
239
244
|
// SECTION: Buildings
|
|
245
|
+
export { Cityline, Home1, Home2, Home3 };
|
|
240
246
|
// !SECTION: Buildings
|
|
241
247
|
// SECTION: Business
|
|
242
248
|
// !SECTION: Business
|