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/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
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Cityline: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Cityline;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Home1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Home1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Home2: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Home2;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Home3: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Home3;
@@ -0,0 +1,5 @@
1
+ import Cityline from '@/src/icons/buildings/Cityline';
2
+ import Home1 from '@/src/icons/buildings/Home1';
3
+ import Home2 from '@/src/icons/buildings/Home2';
4
+ import Home3 from '@/src/icons/buildings/Home3';
5
+ export { Cityline, Home1, Home2, Home3 };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.28.0",
3
+ "version": "1.31.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,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