elementa-icons 1.30.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
@@ -21,6 +21,7 @@ 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
26
27
  // !SECTION: Business
@@ -190,6 +191,7 @@ export { Rocket };
190
191
  export { Gear, ToolBox };
191
192
  // !SECTION: Automotive
192
193
  // SECTION: Buildings
194
+ export { Cityline, Home1, Home2, Home3 };
193
195
  // !SECTION: Buildings
194
196
  // SECTION: Business
195
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 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 };
@@ -5,6 +5,7 @@ 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/';
8
9
  import { DiamondRing } from '@/src/icons/clothing-fashion';
9
10
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
10
11
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -36,6 +37,7 @@ export { DogPaw };
36
37
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
37
38
  export { Rocket };
38
39
  export { Gear, ToolBox };
40
+ export { Cityline, Home1, Home2, Home3 };
39
41
  export { DiamondRing };
40
42
  export { Airpods, Devices, USBACable };
41
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.30.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
@@ -30,6 +30,7 @@ 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
35
36
  // !SECTION: Business
@@ -241,6 +242,7 @@ export { Rocket };
241
242
  export { Gear, ToolBox };
242
243
  // !SECTION: Automotive
243
244
  // SECTION: Buildings
245
+ export { Cityline, Home1, Home2, Home3 };
244
246
  // !SECTION: Buildings
245
247
  // SECTION: Business
246
248
  // !SECTION: Business