elementa-icons 1.37.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
@@ -102,6 +102,7 @@ import { Loudspeaker } from '@/src/icons/marketing/';
102
102
  // SECTION: Media Playback
103
103
  // !SECTION: Media Playback
104
104
  // SECTION: Medical & Health
105
+ import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
105
106
  // !SECTION: Medical & Health
106
107
  // SECTION: Money
107
108
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
@@ -277,6 +278,7 @@ export { Loudspeaker };
277
278
  // SECTION: Media Playback
278
279
  // !SECTION: Media Playback
279
280
  // SECTION: Medical & Health
281
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
280
282
  // !SECTION: Medical & Health
281
283
  // SECTION: Money
282
284
  export { Bitcoin, CreditCards, Wallet };
@@ -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 };
@@ -22,6 +22,7 @@ import { Appliances, Sofa } from '@/src/icons/household';
22
22
  import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
23
23
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
24
24
  import { Loudspeaker } from '@/src/icons/marketing/';
25
+ import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health/';
25
26
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
26
27
  import { Mic } from '@/src/icons/music-audio';
27
28
  import { Fire } from '@/src/icons/nature-environment';
@@ -59,6 +60,7 @@ export { Appliances, Sofa };
59
60
  export { FavoriteFilled, FavoriteOutline };
60
61
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
61
62
  export { Loudspeaker };
63
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
62
64
  export { Bitcoin, CreditCards, Wallet };
63
65
  export { Mic };
64
66
  export { Fire };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.37.0",
3
+ "version": "1.38.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -135,6 +135,13 @@ import { Loudspeaker } from '@/src/icons/marketing/';
135
135
  // SECTION: Media Playback
136
136
  // !SECTION: Media Playback
137
137
  // SECTION: Medical & Health
138
+ import {
139
+ Brain,
140
+ FirstAid,
141
+ HeartCare,
142
+ HeartTrackLine,
143
+ Pills
144
+ } from '@/src/icons/medical-health/';
138
145
  // !SECTION: Medical & Health
139
146
  // SECTION: Money
140
147
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
@@ -344,6 +351,7 @@ export { Loudspeaker };
344
351
  // SECTION: Media Playback
345
352
  // !SECTION: Media Playback
346
353
  // SECTION: Medical & Health
354
+ export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
347
355
  // !SECTION: Medical & Health
348
356
  // SECTION: Money
349
357
  export { Bitcoin, CreditCards, Wallet };