elementa-icons 1.43.0 → 1.45.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
@@ -104,6 +104,7 @@ import { Loudspeaker } from '@/src/icons/marketing';
104
104
  // SECTION: Mathematics
105
105
  // !SECTION: Mathematics
106
106
  // SECTION: Media Playback
107
+ import MediaPlayback from '@/src/icons/media-playback/MediaPlayback';
107
108
  // !SECTION: Media Playback
108
109
  // SECTION: Medical & Health
109
110
  import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health';
@@ -175,7 +176,7 @@ import { Checklist, Notepad } from '@/src/icons/writing';
175
176
  import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
176
177
  // !SECTION: User Interface Controls
177
178
  // SECTION: Status & Notifications
178
- import { Info, TickCloud } from '@/src/icons/status-notifications';
179
+ import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
179
180
  // !SECTION: Status & Notifications
180
181
  // SECTION: Layout & Grid
181
182
  // !SECTION: Layout & Grid
@@ -285,6 +286,7 @@ export { Loudspeaker };
285
286
  // SECTION: Mathematics
286
287
  // !SECTION: Mathematics
287
288
  // SECTION: Media Playback
289
+ export { MediaPlayback };
288
290
  // !SECTION: Media Playback
289
291
  // SECTION: Medical & Health
290
292
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
@@ -356,8 +358,8 @@ export { Checklist, Notepad };
356
358
  export { Cancel, Check, Filter, Search };
357
359
  // !SECTION: User Interface Controls
358
360
  // SECTION: Status & Notifications
361
+ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
359
362
  // !SECTION: Status & Notifications
360
- export { Info, TickCloud };
361
363
  // SECTION: Layout & Grid
362
364
  // !SECTION: Layout & Grid
363
365
  // SECTION: Activities
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const MediaPlayback: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default MediaPlayback;
@@ -0,0 +1,2 @@
1
+ import MediaPlayback from '@/src/icons/media-playback/MediaPlayback';
2
+ export { MediaPlayback };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Checkpoint: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Checkpoint;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const RefreshWithTick: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default RefreshWithTick;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const TickSquare: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default TickSquare;
@@ -1,6 +1,9 @@
1
1
  /**
2
2
  * This file exports all icons in the "Status & Notifications" category.
3
3
  */
4
+ import Checkpoint from '@/src/icons/status-notifications/Checkpoint';
4
5
  import Info from '@/src/icons/status-notifications/Info';
6
+ import RefreshWithTick from '@/src/icons/status-notifications/RefreshWithTick';
5
7
  import TickCloud from '@/src/icons/status-notifications/TickCloud';
6
- export { Info, TickCloud };
8
+ import TickSquare from '@/src/icons/status-notifications/TickSquare';
9
+ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
@@ -26,6 +26,7 @@ import { FavoriteFilled, FavoriteOutline } from '@/src/icons/interactions';
26
26
  import { PinOnHand, World1 } from '@/src/icons/location-maps';
27
27
  import { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube } from '@/src/icons/logos';
28
28
  import { Loudspeaker } from '@/src/icons/marketing';
29
+ import MediaPlayback from '@/src/icons/media-playback/MediaPlayback';
29
30
  import { Brain, FirstAid, HeartCare, HeartTrackLine, Pills } from '@/src/icons/medical-health';
30
31
  import { Bitcoin, CreditCards, Wallet } from '@/src/icons/money';
31
32
  import { Mic } from '@/src/icons/music-audio';
@@ -43,7 +44,7 @@ import { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parkin
43
44
  import { MetalBriefcase } from '@/src/icons/travel-hotel';
44
45
  import { Checklist, Notepad } from '@/src/icons/writing';
45
46
  import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
46
- import { Info, TickCloud } from '@/src/icons/status-notifications';
47
+ import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
47
48
  export { DogPaw };
48
49
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
49
50
  export { Rocket };
@@ -69,6 +70,7 @@ export { FavoriteFilled, FavoriteOutline };
69
70
  export { PinOnHand, World1 };
70
71
  export { Discord, Facebook, Instagram, LinkedIn, Reddit, Twitter, YouTube };
71
72
  export { Loudspeaker };
73
+ export { MediaPlayback };
72
74
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
73
75
  export { Bitcoin, CreditCards, Wallet };
74
76
  export { Mic };
@@ -86,4 +88,4 @@ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parkin
86
88
  export { MetalBriefcase };
87
89
  export { Checklist, Notepad };
88
90
  export { Cancel, Check, Filter, Search };
89
- export { Info, TickCloud };
91
+ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.43.0",
3
+ "version": "1.45.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -137,6 +137,7 @@ import { Loudspeaker } from '@/src/icons/marketing';
137
137
  // SECTION: Mathematics
138
138
  // !SECTION: Mathematics
139
139
  // SECTION: Media Playback
140
+ import MediaPlayback from '@/src/icons/media-playback/MediaPlayback';
140
141
  // !SECTION: Media Playback
141
142
  // SECTION: Medical & Health
142
143
  import {
@@ -230,7 +231,13 @@ import {
230
231
  } from '@/src/icons/user-interface-controls';
231
232
  // !SECTION: User Interface Controls
232
233
  // SECTION: Status & Notifications
233
- import { Info, TickCloud } from '@/src/icons/status-notifications';
234
+ import {
235
+ Checkpoint,
236
+ Info,
237
+ RefreshWithTick,
238
+ TickCloud,
239
+ TickSquare
240
+ } from '@/src/icons/status-notifications';
234
241
  // !SECTION: Status & Notifications
235
242
  // SECTION: Layout & Grid
236
243
  // !SECTION: Layout & Grid
@@ -358,6 +365,7 @@ export { Loudspeaker };
358
365
  // SECTION: Mathematics
359
366
  // !SECTION: Mathematics
360
367
  // SECTION: Media Playback
368
+ export { MediaPlayback };
361
369
  // !SECTION: Media Playback
362
370
  // SECTION: Medical & Health
363
371
  export { Brain, FirstAid, HeartCare, HeartTrackLine, Pills };
@@ -440,8 +448,8 @@ export { Checklist, Notepad };
440
448
  export { Cancel, Check, Filter, Search };
441
449
  // !SECTION: User Interface Controls
442
450
  // SECTION: Status & Notifications
451
+ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
443
452
  // !SECTION: Status & Notifications
444
- export { Info, TickCloud };
445
453
  // SECTION: Layout & Grid
446
454
  // !SECTION: Layout & Grid
447
455
  // SECTION: Activities