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/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
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Rocket: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Rocket;
@@ -0,0 +1,2 @@
1
+ import Rocket from '@/src/icons/astronomy/Rocket';
2
+ export { Rocket };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Gear: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Gear;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const ToolBox: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ToolBox;
@@ -0,0 +1,3 @@
1
+ import Gear from '@/src/icons/automotive/Gear';
2
+ import ToolBox from '@/src/icons/automotive/ToolBox';
3
+ export { Gear, ToolBox };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.28.0",
3
+ "version": "1.30.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
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