elementa-icons 1.36.0 → 1.38.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
@@ -54,6 +54,7 @@ import { ElectricPlug } from '@/src/icons/communication';
54
54
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
55
55
  // !SECTION: Devices & Hardware
56
56
  // SECTION: Disaster & Crisis
57
+ import { Siren } from '@/src/icons/disaster-crisis';
57
58
  // !SECTION: Disaster & Crisis
58
59
  // SECTION: Editing & Creation
59
60
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -101,6 +102,7 @@ import { Loudspeaker } from '@/src/icons/marketing/';
101
102
  // SECTION: Media Playback
102
103
  // !SECTION: Media Playback
103
104
  // SECTION: Medical & Health
105
+ import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
104
106
  // !SECTION: Medical & Health
105
107
  // SECTION: Money
106
108
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
@@ -228,6 +230,7 @@ export { ElectricPlug };
228
230
  export { Airpods, Devices, USBACable };
229
231
  // !SECTION: Devices & Hardware
230
232
  // SECTION: Disaster & Crisis
233
+ export { Siren };
231
234
  // !SECTION: Disaster & Crisis
232
235
  // SECTION: Editing & Creation
233
236
  export { Add, Cut, Copy, Edit, Paste };
@@ -275,6 +278,7 @@ export { Loudspeaker };
275
278
  // SECTION: Media Playback
276
279
  // !SECTION: Media Playback
277
280
  // SECTION: Medical & Health
281
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
278
282
  // !SECTION: Medical & Health
279
283
  // SECTION: Money
280
284
  export { Bitcoin, CreditCards, Wallet };
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Brain: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Brain;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const FirstAid: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default FirstAid;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const HeartCare: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default HeartCare;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const HeartTrackLine: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default HeartTrackLine;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Pills: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Pills;
@@ -0,0 +1,6 @@
1
+ import Brain from '@/src/icons/medical-health/Brain';
2
+ import FirstAid from '@/src/icons/medical-health/FirstAid';
3
+ import HeartCare from '@/src/icons/medical-health/HeartCare';
4
+ import HeartTrackLine from '@/src/icons/medical-health/HeartTrackLine';
5
+ import Pills from '@/src/icons/medical-health/Pills';
6
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
@@ -12,6 +12,7 @@ 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
14
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
15
+ import { Siren } from '@/src/icons/disaster-crisis';
15
16
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
16
17
  import { OpenBook } from '@/src/icons/education';
17
18
  import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
@@ -21,6 +22,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
21
22
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
22
23
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
23
24
  import { Loudspeaker } from '@/src/icons/marketing/';
25
+ import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
24
26
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
25
27
  import { Mic } from '@/src/icons/music-audio';
26
28
  import { Fire } from '@/src/icons/nature-environment';
@@ -48,6 +50,7 @@ export { Puzzle };
48
50
  export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
49
51
  export { ElectricPlug };
50
52
  export { Airpods, Devices, USBACable };
53
+ export { Siren };
51
54
  export { Add, Cut, Copy, Edit, Paste };
52
55
  export { OpenBook };
53
56
  export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
@@ -57,6 +60,7 @@ export { Appliances, Sofa };
57
60
  export { FavoriteFilled, FavoriteOutline };
58
61
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
59
62
  export { Loudspeaker };
63
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
60
64
  export { Bitcoin, CreditCards, Wallet };
61
65
  export { Mic };
62
66
  export { Fire };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.36.0",
3
+ "version": "1.38.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
@@ -71,6 +71,7 @@ import { ElectricPlug } from '@/src/icons/communication';
71
71
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
72
72
  // !SECTION: Devices & Hardware
73
73
  // SECTION: Disaster & Crisis
74
+ import { Siren } from '@/src/icons/disaster-crisis';
74
75
  // !SECTION: Disaster & Crisis
75
76
  // SECTION: Editing & Creation
76
77
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
@@ -134,6 +135,13 @@ import { Loudspeaker } from '@/src/icons/marketing/';
134
135
  // SECTION: Media Playback
135
136
  // !SECTION: Media Playback
136
137
  // SECTION: Medical & Health
138
+ import {
139
+ Brain,
140
+ FirstAid,
141
+ HeartCare,
142
+ HeartTrackLine,
143
+ Pills
144
+ } from '@/src/icons/medical-health/';
137
145
  // !SECTION: Medical & Health
138
146
  // SECTION: Money
139
147
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
@@ -287,6 +295,7 @@ export { ElectricPlug };
287
295
  export { Airpods, Devices, USBACable };
288
296
  // !SECTION: Devices & Hardware
289
297
  // SECTION: Disaster & Crisis
298
+ export { Siren };
290
299
  // !SECTION: Disaster & Crisis
291
300
  // SECTION: Editing & Creation
292
301
  export { Add, Cut, Copy, Edit, Paste };
@@ -342,6 +351,7 @@ export { Loudspeaker };
342
351
  // SECTION: Media Playback
343
352
  // !SECTION: Media Playback
344
353
  // SECTION: Medical & Health
354
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
345
355
  // !SECTION: Medical & Health
346
356
  // SECTION: Money
347
357
  export { Bitcoin, CreditCards, Wallet };