elementa-icons 1.28.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/index.esm.js +1 -1
- package/dist/index.js +4 -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/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/index.ts +4 -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
|
|
@@ -182,8 +184,10 @@ export { DogPaw };
|
|
|
182
184
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
183
185
|
// !SECTION: Arrows & Direction
|
|
184
186
|
// SECTION: Astronomy
|
|
187
|
+
export { Rocket };
|
|
185
188
|
// !SECTION: Astronomy
|
|
186
189
|
// SECTION: Automotive
|
|
190
|
+
export { Gear, ToolBox };
|
|
187
191
|
// !SECTION: Automotive
|
|
188
192
|
// SECTION: Buildings
|
|
189
193
|
// !SECTION: Buildings
|
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';
|
|
@@ -32,6 +34,8 @@ import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-contro
|
|
|
32
34
|
import { Info, TickCloud } from '@/src/icons/status-notifications';
|
|
33
35
|
export { DogPaw };
|
|
34
36
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
37
|
+
export { Rocket };
|
|
38
|
+
export { Gear, ToolBox };
|
|
35
39
|
export { DiamondRing };
|
|
36
40
|
export { Airpods, Devices, USBACable };
|
|
37
41
|
export { Add, Cut, Copy, Edit, Paste };
|
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
|
|
@@ -233,8 +235,10 @@ export {
|
|
|
233
235
|
};
|
|
234
236
|
// !SECTION: Arrows & Direction
|
|
235
237
|
// SECTION: Astronomy
|
|
238
|
+
export { Rocket };
|
|
236
239
|
// !SECTION: Astronomy
|
|
237
240
|
// SECTION: Automotive
|
|
241
|
+
export { Gear, ToolBox };
|
|
238
242
|
// !SECTION: Automotive
|
|
239
243
|
// SECTION: Buildings
|
|
240
244
|
// !SECTION: Buildings
|