elementa-icons 1.27.0 → 1.30.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 +16 -0
- package/dist/icons/astronomy/index.js +2 -0
- package/dist/icons/automotive/Gear.js +16 -0
- package/dist/icons/automotive/ToolBox.js +16 -0
- package/dist/icons/automotive/index.js +3 -0
- package/dist/icons/marketing/Loudspeaker.js +14 -0
- package/dist/icons/marketing/index.js +2 -0
- package/dist/icons/writing/Checklist.js +1 -3
- package/dist/icons/writing/Notepad.js +1 -3
- 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/marketing/Loudspeaker.d.ts +6 -0
- package/dist/types/icons/marketing/index.d.ts +2 -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,8 +15,10 @@ 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
|
|
22
24
|
// !SECTION: Buildings
|
|
@@ -87,6 +89,7 @@ import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from
|
|
|
87
89
|
// SECTION: Logistics
|
|
88
90
|
// !SECTION: Logistics
|
|
89
91
|
// SECTION: Marketing
|
|
92
|
+
import { Loudspeaker } from '@/src/icons/marketing/';
|
|
90
93
|
// !SECTION: Marketing
|
|
91
94
|
// SECTION: Mathematics
|
|
92
95
|
// !SECTION: Mathematics
|
|
@@ -181,8 +184,10 @@ export { DogPaw };
|
|
|
181
184
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
182
185
|
// !SECTION: Arrows & Direction
|
|
183
186
|
// SECTION: Astronomy
|
|
187
|
+
export { Rocket };
|
|
184
188
|
// !SECTION: Astronomy
|
|
185
189
|
// SECTION: Automotive
|
|
190
|
+
export { Gear, ToolBox };
|
|
186
191
|
// !SECTION: Automotive
|
|
187
192
|
// SECTION: Buildings
|
|
188
193
|
// !SECTION: Buildings
|
|
@@ -253,6 +258,7 @@ export { FavoriteFilled, FavoriteOutline };
|
|
|
253
258
|
export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
|
|
254
259
|
// !SECTION: Logos
|
|
255
260
|
// SECTION: Marketing
|
|
261
|
+
export { Loudspeaker };
|
|
256
262
|
// !SECTION: Marketing
|
|
257
263
|
// SECTION: Mathematics
|
|
258
264
|
// !SECTION: Mathematics
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
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/';
|
|
6
8
|
import { DiamondRing } from '@/src/icons/clothing-fashion';
|
|
7
9
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
8
10
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -13,6 +15,7 @@ import { Balloon, GiftBox } from '@/src/icons/holidays';
|
|
|
13
15
|
import { Appliances, Sofa } from '@/src/icons/household';
|
|
14
16
|
import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
|
|
15
17
|
import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
|
|
18
|
+
import { Loudspeaker } from '@/src/icons/marketing/';
|
|
16
19
|
import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
|
|
17
20
|
import { Mic } from '@/src/icons/music-audio';
|
|
18
21
|
import { Fire } from '@/src/icons/nature-environment';
|
|
@@ -31,6 +34,8 @@ import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-contro
|
|
|
31
34
|
import { Info, TickCloud } from '@/src/icons/status-notifications';
|
|
32
35
|
export { DogPaw };
|
|
33
36
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
37
|
+
export { Rocket };
|
|
38
|
+
export { Gear, ToolBox };
|
|
34
39
|
export { DiamondRing };
|
|
35
40
|
export { Airpods, Devices, USBACable };
|
|
36
41
|
export { Add, Cut, Copy, Edit, Paste };
|
|
@@ -41,6 +46,7 @@ export { Balloon, GiftBox };
|
|
|
41
46
|
export { Appliances, Sofa };
|
|
42
47
|
export { FavoriteFilled, FavoriteOutline };
|
|
43
48
|
export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
|
|
49
|
+
export { Loudspeaker };
|
|
44
50
|
export { Bitcoin, CreditCards, Wallet };
|
|
45
51
|
export { Mic };
|
|
46
52
|
export { Fire };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -24,8 +24,10 @@ 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
|
|
31
33
|
// !SECTION: Buildings
|
|
@@ -112,6 +114,7 @@ import {
|
|
|
112
114
|
// SECTION: Logistics
|
|
113
115
|
// !SECTION: Logistics
|
|
114
116
|
// SECTION: Marketing
|
|
117
|
+
import { Loudspeaker } from '@/src/icons/marketing/';
|
|
115
118
|
// !SECTION: Marketing
|
|
116
119
|
// SECTION: Mathematics
|
|
117
120
|
// !SECTION: Mathematics
|
|
@@ -232,8 +235,10 @@ export {
|
|
|
232
235
|
};
|
|
233
236
|
// !SECTION: Arrows & Direction
|
|
234
237
|
// SECTION: Astronomy
|
|
238
|
+
export { Rocket };
|
|
235
239
|
// !SECTION: Astronomy
|
|
236
240
|
// SECTION: Automotive
|
|
241
|
+
export { Gear, ToolBox };
|
|
237
242
|
// !SECTION: Automotive
|
|
238
243
|
// SECTION: Buildings
|
|
239
244
|
// !SECTION: Buildings
|
|
@@ -312,6 +317,7 @@ export { FavoriteFilled, FavoriteOutline };
|
|
|
312
317
|
export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
|
|
313
318
|
// !SECTION: Logos
|
|
314
319
|
// SECTION: Marketing
|
|
320
|
+
export { Loudspeaker };
|
|
315
321
|
// !SECTION: Marketing
|
|
316
322
|
// SECTION: Mathematics
|
|
317
323
|
// !SECTION: Mathematics
|