elementa-icons 1.30.0 → 1.32.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
@@ -21,8 +21,10 @@ import { Rocket } from '@/src/icons/astronomy/';
21
21
  import { Gear, ToolBox } from '@/src/icons/automotive/';
22
22
  // !SECTION: Automotive
23
23
  // SECTION: Buildings
24
+ import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
24
25
  // !SECTION: Buildings
25
26
  // SECTION: Business
27
+ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
26
28
  // !SECTION: Business
27
29
  // SECTION: Camping
28
30
  // !SECTION: Camping
@@ -190,8 +192,10 @@ export { Rocket };
190
192
  export { Gear, ToolBox };
191
193
  // !SECTION: Automotive
192
194
  // SECTION: Buildings
195
+ export { Cityline, Home1, Home2, Home3 };
193
196
  // !SECTION: Buildings
194
197
  // SECTION: Business
198
+ export { Briefcase, CareerGrowth };
195
199
  // !SECTION: Business
196
200
  // SECTION: Camping
197
201
  // !SECTION: Camping
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Briefcase: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Briefcase;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const CareerGrowth: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CareerGrowth;
@@ -0,0 +1,3 @@
1
+ import Briefcase from '@/src/icons/business/Briefcase';
2
+ import CareerGrowth from '@/src/icons/business/CareerGrowth';
3
+ export { Briefcase, CareerGrowth };
@@ -5,6 +5,8 @@ import { DogPaw } from '@/src/icons/animals/';
5
5
  import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
6
6
  import { Rocket } from '@/src/icons/astronomy/';
7
7
  import { Gear, ToolBox } from '@/src/icons/automotive/';
8
+ import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
9
+ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
8
10
  import { DiamondRing } from '@/src/icons/clothing-fashion';
9
11
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
10
12
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -36,6 +38,8 @@ export { DogPaw };
36
38
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
37
39
  export { Rocket };
38
40
  export { Gear, ToolBox };
41
+ export { Cityline, Home1, Home2, Home3 };
42
+ export { Briefcase, CareerGrowth };
39
43
  export { DiamondRing };
40
44
  export { Airpods, Devices, USBACable };
41
45
  export { Add, Cut, Copy, Edit, Paste };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.30.0",
3
+ "version": "1.32.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -30,8 +30,10 @@ import { Rocket } from '@/src/icons/astronomy/';
30
30
  import { Gear, ToolBox } from '@/src/icons/automotive/';
31
31
  // !SECTION: Automotive
32
32
  // SECTION: Buildings
33
+ import { Cityline, Home1, Home2, Home3 } from '@/src/icons/buildings/';
33
34
  // !SECTION: Buildings
34
35
  // SECTION: Business
36
+ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
35
37
  // !SECTION: Business
36
38
  // SECTION: Camping
37
39
  // !SECTION: Camping
@@ -241,8 +243,10 @@ export { Rocket };
241
243
  export { Gear, ToolBox };
242
244
  // !SECTION: Automotive
243
245
  // SECTION: Buildings
246
+ export { Cityline, Home1, Home2, Home3 };
244
247
  // !SECTION: Buildings
245
248
  // SECTION: Business
249
+ export { Briefcase, CareerGrowth };
246
250
  // !SECTION: Business
247
251
  // SECTION: Camping
248
252
  // !SECTION: Camping