elementa-icons 1.46.0 → 1.47.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
@@ -45,6 +45,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
45
45
  import { ElectricPlug } from '@/src/icons/communication';
46
46
  // !SECTION: Communication
47
47
  // SECTION: Connectivity
48
+ import { CloudSaas } from '@/src/icons/connectivity';
48
49
  // !SECTION: Connectivity
49
50
  // SECTION: Construction
50
51
  import { HammerNail } from '@/src/icons/construction';
@@ -227,6 +228,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
227
228
  export { ElectricPlug };
228
229
  // !SECTION: Communication
229
230
  // SECTION: Connectivity
231
+ export { CloudSaas };
230
232
  // !SECTION: Connectivity
231
233
  // SECTION: Construction
232
234
  export { HammerNail };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const CloudSaas: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CloudSaas;
@@ -0,0 +1,2 @@
1
+ import CloudSaas from '@/src/icons/connectivity/CloudSaas';
2
+ export { CloudSaas };
@@ -11,6 +11,7 @@ import { PieChart, Stocks } from '@/src/icons/charts-graphs';
11
11
  import { Puzzle } from '@/src/icons/childhood';
12
12
  import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
13
13
  import { ElectricPlug } from '@/src/icons/communication';
14
+ import { CloudSaas } from '@/src/icons/connectivity';
14
15
  import { HammerNail } from '@/src/icons/construction';
15
16
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
16
17
  import { Siren } from '@/src/icons/disaster-crisis';
@@ -55,6 +56,7 @@ export { PieChart, Stocks };
55
56
  export { Puzzle };
56
57
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
57
58
  export { ElectricPlug };
59
+ export { CloudSaas };
58
60
  export { HammerNail };
59
61
  export { Airpods, Devices, USBACable };
60
62
  export { Siren };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.46.0",
3
+ "version": "1.47.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -62,6 +62,7 @@ import {
62
62
  import { ElectricPlug } from '@/src/icons/communication';
63
63
  // !SECTION: Communication
64
64
  // SECTION: Connectivity
65
+ import { CloudSaas } from '@/src/icons/connectivity';
65
66
  // !SECTION: Connectivity
66
67
  // SECTION: Construction
67
68
  import { HammerNail } from '@/src/icons/construction';
@@ -304,6 +305,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
304
305
  export { ElectricPlug };
305
306
  // !SECTION: Communication
306
307
  // SECTION: Connectivity
308
+ export { CloudSaas };
307
309
  // !SECTION: Connectivity
308
310
  // SECTION: Construction
309
311
  export { HammerNail };