elementa-icons 1.50.0 → 1.52.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.
Files changed (33) hide show
  1. package/dist/icons/animals/index.js +3 -0
  2. package/dist/icons/astronomy/index.js +3 -0
  3. package/dist/icons/automotive/index.js +3 -0
  4. package/dist/icons/buildings/index.js +3 -0
  5. package/dist/icons/business/index.js +3 -0
  6. package/dist/icons/charts-graphs/index.js +3 -0
  7. package/dist/icons/devices-hardware/Laptop1.js +14 -0
  8. package/dist/icons/devices-hardware/Router.js +14 -0
  9. package/dist/icons/devices-hardware/Smartwatch.js +14 -0
  10. package/dist/icons/devices-hardware/Telephone1.js +16 -0
  11. package/dist/icons/devices-hardware/Telephone2.js +14 -0
  12. package/dist/icons/devices-hardware/index.js +6 -1
  13. package/dist/icons/time-calendar/CalendarEvent.js +14 -0
  14. package/dist/icons/time-calendar/index.js +2 -1
  15. package/dist/index.esm.js +1 -1
  16. package/dist/index.js +4 -4
  17. package/dist/types/icons/animals/index.d.ts +3 -0
  18. package/dist/types/icons/astronomy/index.d.ts +3 -0
  19. package/dist/types/icons/automotive/index.d.ts +3 -0
  20. package/dist/types/icons/buildings/index.d.ts +3 -0
  21. package/dist/types/icons/business/index.d.ts +3 -0
  22. package/dist/types/icons/charts-graphs/index.d.ts +3 -0
  23. package/dist/types/icons/devices-hardware/Laptop1.d.ts +6 -0
  24. package/dist/types/icons/devices-hardware/Router.d.ts +6 -0
  25. package/dist/types/icons/devices-hardware/Smartwatch.d.ts +6 -0
  26. package/dist/types/icons/devices-hardware/Telephone1.d.ts +6 -0
  27. package/dist/types/icons/devices-hardware/Telephone2.d.ts +6 -0
  28. package/dist/types/icons/devices-hardware/index.d.ts +6 -1
  29. package/dist/types/icons/time-calendar/CalendarEvent.d.ts +6 -0
  30. package/dist/types/icons/time-calendar/index.d.ts +2 -1
  31. package/dist/types/index.d.ts +4 -4
  32. package/package.json +1 -1
  33. package/src/index.ts +22 -4
package/dist/index.js CHANGED
@@ -53,7 +53,7 @@ import { HammerNail } from '@/src/icons/construction';
53
53
  // SECTION: Design
54
54
  // !SECTION: Design
55
55
  // SECTION: Devices & Hardware
56
- import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
56
+ import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
57
57
  // !SECTION: Devices & Hardware
58
58
  // SECTION: Disaster & Crisis
59
59
  import { Siren } from '@/src/icons/disaster-crisis';
@@ -160,7 +160,7 @@ import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/
160
160
  import { Description } from '@/src/icons/text-formatting';
161
161
  // !SECTION: Text Formatting
162
162
  // SECTION: Time & Calendar
163
- import { Calendar, Clock } from '@/src/icons/time-calendar';
163
+ import { Calendar, CalendarEvent, Clock } from '@/src/icons/time-calendar';
164
164
  // !SECTION: Time & Calendar
165
165
  // SECTION: Toggle
166
166
  // !SECTION: Toggle
@@ -237,7 +237,7 @@ export { HammerNail };
237
237
  // SECTION: Design
238
238
  // !SECTION: Design
239
239
  // SECTION: Devices & Hardware
240
- export { Airpods, Devices, USBACable };
240
+ export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
241
241
  // !SECTION: Devices & Hardware
242
242
  // SECTION: Disaster & Crisis
243
243
  export { Siren };
@@ -344,7 +344,7 @@ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
344
344
  export { Description };
345
345
  // !SECTION: Text Formatting
346
346
  // SECTION: Time & Calendar
347
- export { Calendar, Clock };
347
+ export { Calendar, CalendarEvent, Clock };
348
348
  // !SECTION: Time & Calendar
349
349
  // SECTION: Toggle
350
350
  // !SECTION: Toggle
@@ -1,2 +1,5 @@
1
+ /**
2
+ * This file exports all icons in the "Animals" category.
3
+ */
1
4
  import DogPaw from '@/src/icons/animals/DogPaw';
2
5
  export { DogPaw };
@@ -1,2 +1,5 @@
1
+ /**
2
+ * This file exports all icons in the "Astronomy" category.
3
+ */
1
4
  import Rocket from '@/src/icons/astronomy/Rocket';
2
5
  export { Rocket };
@@ -1,3 +1,6 @@
1
+ /**
2
+ * This file exports all icons in the "Automotive" category.
3
+ */
1
4
  import Gear from '@/src/icons/automotive/Gear';
2
5
  import ToolBox from '@/src/icons/automotive/ToolBox';
3
6
  export { Gear, ToolBox };
@@ -1,3 +1,6 @@
1
+ /**
2
+ * This file exports all icons in the "Buildings" category.
3
+ */
1
4
  import Cityline from '@/src/icons/buildings/Cityline';
2
5
  import Home1 from '@/src/icons/buildings/Home1';
3
6
  import Home2 from '@/src/icons/buildings/Home2';
@@ -1,3 +1,6 @@
1
+ /**
2
+ * This file exports all icons in the "Business" category.
3
+ */
1
4
  import Briefcase from '@/src/icons/business/Briefcase';
2
5
  import CareerGrowth from '@/src/icons/business/CareerGrowth';
3
6
  export { Briefcase, CareerGrowth };
@@ -1,3 +1,6 @@
1
+ /**
2
+ * This file exports all icons in the "Charts & Graphs" category.
3
+ */
1
4
  import PieChart from '@/src/icons/charts-graphs/PieChart';
2
5
  import Stocks from '@/src/icons/charts-graphs/Stocks';
3
6
  export { PieChart, Stocks };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a laptop.
4
+ */
5
+ declare const Laptop1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Laptop1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a router.
4
+ */
5
+ declare const Router: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Router;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a smartwatch.
4
+ */
5
+ declare const Smartwatch: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Smartwatch;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a telephone.
4
+ */
5
+ declare const Telephone1: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Telephone1;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a telephone.
4
+ */
5
+ declare const Telephone2: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Telephone2;
@@ -1,4 +1,9 @@
1
1
  import Airpods from '@/src/icons/devices-hardware/Airpods';
2
2
  import Devices from '@/src/icons/devices-hardware/Devices';
3
+ import Laptop1 from '@/src/icons/devices-hardware/Laptop1';
4
+ import Router from '@/src/icons/devices-hardware/Router';
5
+ import Smartwatch from '@/src/icons/devices-hardware/Smartwatch';
6
+ import Telephone1 from '@/src/icons/devices-hardware/Telephone1';
7
+ import Telephone2 from '@/src/icons/devices-hardware/Telephone2';
3
8
  import USBACable from '@/src/icons/devices-hardware/USBACable';
4
- export { Airpods, Devices, USBACable };
9
+ export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const CalendarEvent: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CalendarEvent;
@@ -2,5 +2,6 @@
2
2
  * This file exports all icons in the "Time & Calendar" category.
3
3
  */
4
4
  import Calendar from '@/src/icons/time-calendar/Calendar';
5
+ import CalendarEvent from '@/src/icons/time-calendar/CalendarEvent';
5
6
  import Clock from '@/src/icons/time-calendar/Clock';
6
- export { Calendar, Clock };
7
+ export { Calendar, CalendarEvent, Clock };
@@ -13,7 +13,7 @@ import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt }
13
13
  import { ElectricPlug } from '@/src/icons/communication';
14
14
  import { CloudSaas } from '@/src/icons/connectivity';
15
15
  import { HammerNail } from '@/src/icons/construction';
16
- import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
16
+ import { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable } from '@/src/icons/devices-hardware';
17
17
  import { Siren } from '@/src/icons/disaster-crisis';
18
18
  import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
19
19
  import { OpenBook } from '@/src/icons/education';
@@ -42,7 +42,7 @@ import { AddFriend, AddFriends, Friends, Memes } from '@/src/icons/social-people
42
42
  import { Basketball, Dart } from '@/src/icons/sports';
43
43
  import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
44
44
  import { Description } from '@/src/icons/text-formatting';
45
- import { Calendar, Clock } from '@/src/icons/time-calendar';
45
+ import { Calendar, CalendarEvent, Clock } from '@/src/icons/time-calendar';
46
46
  import { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram } from '@/src/icons/transportation';
47
47
  import { MetalBriefcase } from '@/src/icons/travel-hotel';
48
48
  import { Checklist, Notepad } from '@/src/icons/writing';
@@ -59,7 +59,7 @@ export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
59
59
  export { ElectricPlug };
60
60
  export { CloudSaas };
61
61
  export { HammerNail };
62
- export { Airpods, Devices, USBACable };
62
+ export { Airpods, Devices, Laptop1, Router, Smartwatch, Telephone1, Telephone2, USBACable };
63
63
  export { Siren };
64
64
  export { Add, Cut, Copy, Edit, Paste };
65
65
  export { OpenBook };
@@ -88,7 +88,7 @@ export { AddFriend, AddFriends, Friends, Memes };
88
88
  export { Basketball, Dart };
89
89
  export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
90
90
  export { Description };
91
- export { Calendar, Clock };
91
+ export { Calendar, CalendarEvent, Clock };
92
92
  export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
93
93
  export { MetalBriefcase };
94
94
  export { Checklist, Notepad };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.50.0",
3
+ "version": "1.52.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -70,7 +70,16 @@ import { HammerNail } from '@/src/icons/construction';
70
70
  // SECTION: Design
71
71
  // !SECTION: Design
72
72
  // SECTION: Devices & Hardware
73
- import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
73
+ import {
74
+ Airpods,
75
+ Devices,
76
+ Laptop1,
77
+ Router,
78
+ Smartwatch,
79
+ Telephone1,
80
+ Telephone2,
81
+ USBACable
82
+ } from '@/src/icons/devices-hardware';
74
83
  // !SECTION: Devices & Hardware
75
84
  // SECTION: Disaster & Crisis
76
85
  import { Siren } from '@/src/icons/disaster-crisis';
@@ -225,7 +234,7 @@ import {
225
234
  import { Description } from '@/src/icons/text-formatting';
226
235
  // !SECTION: Text Formatting
227
236
  // SECTION: Time & Calendar
228
- import { Calendar, Clock } from '@/src/icons/time-calendar';
237
+ import { Calendar, CalendarEvent, Clock } from '@/src/icons/time-calendar';
229
238
  // !SECTION: Time & Calendar
230
239
  // SECTION: Toggle
231
240
  // !SECTION: Toggle
@@ -328,7 +337,16 @@ export { HammerNail };
328
337
  // SECTION: Design
329
338
  // !SECTION: Design
330
339
  // SECTION: Devices & Hardware
331
- export { Airpods, Devices, USBACable };
340
+ export {
341
+ Airpods,
342
+ Devices,
343
+ Laptop1,
344
+ Router,
345
+ Smartwatch,
346
+ Telephone1,
347
+ Telephone2,
348
+ USBACable
349
+ };
332
350
  // !SECTION: Devices & Hardware
333
351
  // SECTION: Disaster & Crisis
334
352
  export { Siren };
@@ -452,7 +470,7 @@ export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
452
470
  export { Description };
453
471
  // !SECTION: Text Formatting
454
472
  // SECTION: Time & Calendar
455
- export { Calendar, Clock };
473
+ export { Calendar, CalendarEvent, Clock };
456
474
  // !SECTION: Time & Calendar
457
475
  // SECTION: Toggle
458
476
  // !SECTION: Toggle