elementa-icons 1.35.0 → 1.37.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
@@ -42,6 +42,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
42
42
  // SECTION: Coding
43
43
  // !SECTION: Coding
44
44
  // SECTION: Communication
45
+ import { ElectricPlug } from '@/src/icons/communication';
45
46
  // !SECTION: Communication
46
47
  // SECTION: Connectivity
47
48
  // !SECTION: Connectivity
@@ -53,6 +54,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
53
54
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
54
55
  // !SECTION: Devices & Hardware
55
56
  // SECTION: Disaster & Crisis
57
+ import { Siren } from '@/src/icons/disaster-crisis';
56
58
  // !SECTION: Disaster & Crisis
57
59
  // SECTION: Editing & Creation
58
60
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -215,6 +217,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
215
217
  // SECTION: Coding
216
218
  // !SECTION: Coding
217
219
  // SECTION: Communication
220
+ export { ElectricPlug };
218
221
  // !SECTION: Communication
219
222
  // SECTION: Connectivity
220
223
  // !SECTION: Connectivity
@@ -226,6 +229,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
226
229
  export { Airpods, Devices, USBACable };
227
230
  // !SECTION: Devices & Hardware
228
231
  // SECTION: Disaster & Crisis
232
+ export { Siren };
229
233
  // !SECTION: Disaster & Crisis
230
234
  // SECTION: Editing & Creation
231
235
  export { Add, Cut, Copy, Edit, Paste };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const ElectricPlug: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ElectricPlug;
@@ -0,0 +1,2 @@
1
+ import ElectricPlug from '@/src/icons/communication/ElectricPlug';
2
+ export { ElectricPlug };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a Siren icon.
4
+ */
5
+ declare const Siren: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Siren;
@@ -0,0 +1,2 @@
1
+ import Siren from '@/src/icons/disaster-crisis/Siren';
2
+ export { Siren };
@@ -10,7 +10,9 @@ import { Briefcase, CareerGrowth } from '@/src/icons/business/';
10
10
  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
+ import { ElectricPlug } from '@/src/icons/communication';
13
14
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
15
+ import { Siren } from '@/src/icons/disaster-crisis';
14
16
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
15
17
  import { OpenBook } from '@/src/icons/education';
16
18
  import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
@@ -45,7 +47,9 @@ export { Briefcase, CareerGrowth };
45
47
  export { PieChart, Stocks };
46
48
  export { Puzzle };
47
49
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
50
+ export { ElectricPlug };
48
51
  export { Airpods, Devices, USBACable };
52
+ export { Siren };
49
53
  export { Add, Cut, Copy, Edit, Paste };
50
54
  export { OpenBook };
51
55
  export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.35.0",
3
+ "version": "1.37.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "build:watch": "rollup -c -w",
38
38
  "prepublishOnly": "npm run build",
39
39
  "publish:npm": "npm publish --access public",
40
- "svgr": "svgr src/icons/*.svg --template src/lib/template.js --expand-props none --ignore-existing"
40
+ "svgr": "svgr src/icons/*.svg --stdin-filepath .prettierrc --template src/lib/template.js --expand-props none --ignore-existing"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": "^19.1.0"
package/src/index.ts CHANGED
@@ -59,6 +59,7 @@ import {
59
59
  // SECTION: Coding
60
60
  // !SECTION: Coding
61
61
  // SECTION: Communication
62
+ import { ElectricPlug } from '@/src/icons/communication';
62
63
  // !SECTION: Communication
63
64
  // SECTION: Connectivity
64
65
  // !SECTION: Connectivity
@@ -70,6 +71,7 @@ import {
70
71
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
71
72
  // !SECTION: Devices & Hardware
72
73
  // SECTION: Disaster & Crisis
74
+ import { Siren } from '@/src/icons/disaster-crisis';
73
75
  // !SECTION: Disaster & Crisis
74
76
  // SECTION: Editing & Creation
75
77
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -274,6 +276,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
274
276
  // SECTION: Coding
275
277
  // !SECTION: Coding
276
278
  // SECTION: Communication
279
+ export { ElectricPlug };
277
280
  // !SECTION: Communication
278
281
  // SECTION: Connectivity
279
282
  // !SECTION: Connectivity
@@ -285,6 +288,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
285
288
  export { Airpods, Devices, USBACable };
286
289
  // !SECTION: Devices & Hardware
287
290
  // SECTION: Disaster & Crisis
291
+ export { Siren };
288
292
  // !SECTION: Disaster & Crisis
289
293
  // SECTION: Editing & Creation
290
294
  export { Add, Cut, Copy, Edit, Paste };