metal-icons 0.1.7 → 0.1.9

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/CHANGELOG.md ADDED
@@ -0,0 +1,97 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.9] - 2023-11-18
11
+
12
+ ### Fixed
13
+
14
+ - Fixed issues with module build.
15
+
16
+ ## [0.1.8] - 2023-11-18
17
+
18
+ ### Added
19
+
20
+ - Added Chevron Right
21
+ - Added Chevron Up
22
+ - Added Chevrons Down
23
+ - Added Chevrons Left
24
+ - Added Chevrons Right
25
+ - Added Chevrons Up
26
+
27
+ ## [0.1.7] - 2023-11-12
28
+
29
+ ### Fixed
30
+
31
+ - Fixed an issue with the small outline variant of the Building icon.
32
+
33
+ ## [0.1.6] - 2023-11-12
34
+
35
+ ### Fixed
36
+
37
+ - Fixed issues with module build.
38
+
39
+ ## [0.1.5] - 2023-11-12
40
+
41
+ ### Added
42
+
43
+ - Added Briefcase icons.
44
+ - Added Building icons.
45
+ - Added Bulb icons.
46
+ - Added Calendar icons.
47
+ - Added Camera icons.
48
+ - Added Cash icons.
49
+ - Added Chart Bar icons.
50
+ - Added Chat icon sets.
51
+ - Added Check icons.
52
+ - Added Chevron Down icons.
53
+
54
+ ## [0.1.4] - 2023-11-11
55
+
56
+ ### Added
57
+
58
+ - Added `.codesandbox` tasks and `.devcontainer` config files.
59
+ - Added At icons.
60
+ - Added Battery icons.
61
+ - Added Book Closed icons.
62
+ - Added Book Open icons.
63
+ - Added Beaker and Bell icons.
64
+ - Added Bookmark and Bookmark Plus icons.
65
+
66
+ ## [0.1.3] - 2023-11-04
67
+
68
+ ### Added
69
+
70
+ - Added Arrow Down Left icons.
71
+ - Added Arrow Down Right icons.
72
+ - Added Arrow Down icons.
73
+ - Added Arrow Left icons.
74
+ - Added Arrow Right icons.
75
+ - Added Arrow Up Left icons.
76
+ - Added Arrow Up Right icons.
77
+ - Added Arrow Up icons.
78
+
79
+ ## [0.1.2] - 2023-11-02
80
+
81
+ ### Added
82
+
83
+ - Added Align Top icons.
84
+ - Added Align Bottom icons.
85
+
86
+ ## [0.1.1] - 2023-11-02
87
+
88
+ ### Added
89
+
90
+ - Added Alert icon.
91
+ - Added this changelog file to the project.
92
+ - Added license file.
93
+
94
+ ### Changed
95
+
96
+ - Updated Rollup configuration so that inputs point to all types of icons.
97
+ - Updated `package.json` configuration so that exports point to each set individually.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Metal Icons
2
2
 
3
- v0.1.7
3
+ v0.1.9
4
4
 
5
5
  A flexible set of icons built for React.
6
6
 
@@ -448,6 +448,80 @@ const SvgChevronDown = props => /*#__PURE__*/React.createElement("svg", _extends
448
448
  d: "M3.235 5.205a.75.75 0 0 1 1.06.03L8 9.158l3.705-3.923a.75.75 0 0 1 1.09 1.03l-4.25 4.5a.75.75 0 0 1-1.09 0l-4.25-4.5a.75.75 0 0 1 .03-1.06Z"
449
449
  }));
450
450
 
451
+ const SvgChevronLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
452
+ xmlns: "http://www.w3.org/2000/svg",
453
+ width: 16,
454
+ height: 16,
455
+ fill: "currentColor"
456
+ }, props), /*#__PURE__*/React.createElement("path", {
457
+ fillRule: "evenodd",
458
+ d: "M10.795 3.235a.75.75 0 0 1-.03 1.06L6.842 8l3.923 3.705a.75.75 0 0 1-1.03 1.09l-4.5-4.25a.75.75 0 0 1 0-1.09l4.5-4.25a.75.75 0 0 1 1.06.03Z"
459
+ }));
460
+
461
+ const SvgChevronRight = props => /*#__PURE__*/React.createElement("svg", _extends({
462
+ xmlns: "http://www.w3.org/2000/svg",
463
+ width: 16,
464
+ height: 16,
465
+ fill: "currentColor"
466
+ }, props), /*#__PURE__*/React.createElement("path", {
467
+ fillRule: "evenodd",
468
+ d: "M5.205 3.235a.75.75 0 0 0 .03 1.06L9.158 8l-3.923 3.705a.75.75 0 0 0 1.03 1.09l4.5-4.25a.75.75 0 0 0 0-1.09l-4.5-4.25a.75.75 0 0 0-1.06.03Z"
469
+ }));
470
+
471
+ const SvgChevronUp = props => /*#__PURE__*/React.createElement("svg", _extends({
472
+ xmlns: "http://www.w3.org/2000/svg",
473
+ width: 16,
474
+ height: 16,
475
+ fill: "currentColor"
476
+ }, props), /*#__PURE__*/React.createElement("path", {
477
+ fillRule: "evenodd",
478
+ d: "M3.235 10.795a.75.75 0 0 0 1.06-.03L8 6.842l3.705 3.923a.75.75 0 0 0 1.09-1.03l-4.25-4.5a.75.75 0 0 0-1.09 0l-4.25 4.5a.75.75 0 0 0 .03 1.06Z"
479
+ }));
480
+
481
+ const SvgChevronsDown = props => /*#__PURE__*/React.createElement("svg", _extends({
482
+ xmlns: "http://www.w3.org/2000/svg",
483
+ width: 16,
484
+ height: 16,
485
+ fill: "currentColor"
486
+ }, props), /*#__PURE__*/React.createElement("path", {
487
+ d: "M5.3 3.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02L8 6.148 5.3 3.24Z"
488
+ }), /*#__PURE__*/React.createElement("path", {
489
+ d: "M5.3 8.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.752.752 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02L8 11.148 5.3 8.24Z"
490
+ }));
491
+
492
+ const SvgChevronsLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
493
+ xmlns: "http://www.w3.org/2000/svg",
494
+ width: 16,
495
+ height: 16,
496
+ fill: "currentColor"
497
+ }, props), /*#__PURE__*/React.createElement("path", {
498
+ d: "M7.76 5.3a.75.75 0 0 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.749.749 0 1 0 1.02-1.1L4.852 8 7.76 5.3Z"
499
+ }), /*#__PURE__*/React.createElement("path", {
500
+ d: "M12.76 5.3a.75.75 0 0 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.748.748 0 0 0 1.213-.29.75.75 0 0 0-.193-.81L9.852 8l2.908-2.7Z"
501
+ }));
502
+
503
+ const SvgChevronsRight = props => /*#__PURE__*/React.createElement("svg", _extends({
504
+ xmlns: "http://www.w3.org/2000/svg",
505
+ width: 16,
506
+ height: 16,
507
+ fill: "currentColor"
508
+ }, props), /*#__PURE__*/React.createElement("path", {
509
+ d: "M3.24 5.3a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1L6.148 8 3.24 5.3Z"
510
+ }), /*#__PURE__*/React.createElement("path", {
511
+ d: "M8.24 5.3a.75.75 0 0 1 1.02-1.1l3.5 3.25a.749.749 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1L11.148 8 8.24 5.3Z"
512
+ }));
513
+
514
+ const SvgChevronsUp = props => /*#__PURE__*/React.createElement("svg", _extends({
515
+ xmlns: "http://www.w3.org/2000/svg",
516
+ width: 16,
517
+ height: 16,
518
+ fill: "currentColor"
519
+ }, props), /*#__PURE__*/React.createElement("path", {
520
+ d: "M5.3 7.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.749.749 0 1 1-1.1 1.02L8 4.852 5.3 7.76Z"
521
+ }), /*#__PURE__*/React.createElement("path", {
522
+ d: "M5.3 12.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.748.748 0 0 1-.29 1.213.75.75 0 0 1-.81-.193L8 9.852 5.3 12.76Z"
523
+ }));
524
+
451
525
  const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
452
526
  xmlns: "http://www.w3.org/2000/svg",
453
527
  width: 16,
@@ -459,4 +533,4 @@ const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
459
533
  d: "M.659 1.659A2.25 2.25 0 0 1 2.25 1h4.379a2.25 2.25 0 0 1 1.591.66l1.121 1.12c.14.14.331.22.53.22h3.879A2.25 2.25 0 0 1 16 5.25v7.5A2.25 2.25 0 0 1 13.75 15H2.25A2.25 2.25 0 0 1 0 12.75v-9.5c0-.597.237-1.169.659-1.591ZM1.5 7v5.749a.75.75 0 0 0 .75.75h11.5a.75.75 0 0 0 .75-.75V7h-13Zm13-1.5h-13V3.25a.75.75 0 0 1 .75-.75h4.379c.199 0 .39.08.53.22L8.28 3.84a2.25 2.25 0 0 0 1.591.659h3.879a.75.75 0 0 1 .75.75V5.5Z"
460
534
  }));
461
535
 
462
- export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgFolder as Folder };
536
+ export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgChevronsDown as ChevronsDown, SvgChevronsLeft as ChevronsLeft, SvgChevronsRight as ChevronsRight, SvgChevronsUp as ChevronsUp, SvgFolder as Folder };
@@ -428,6 +428,80 @@ const SvgChevronDown = props => /*#__PURE__*/React.createElement("svg", _extends
428
428
  d: "M3.235 5.205a.75.75 0 0 1 1.06.03L8 9.158l3.705-3.923a.75.75 0 0 1 1.09 1.03l-4.25 4.5a.75.75 0 0 1-1.09 0l-4.25-4.5a.75.75 0 0 1 .03-1.06Z"
429
429
  }));
430
430
 
431
+ const SvgChevronLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
432
+ xmlns: "http://www.w3.org/2000/svg",
433
+ width: 16,
434
+ height: 16,
435
+ fill: "currentColor"
436
+ }, props), /*#__PURE__*/React.createElement("path", {
437
+ fillRule: "evenodd",
438
+ d: "M10.795 3.235a.75.75 0 0 1-.03 1.06L6.842 8l3.923 3.705a.75.75 0 0 1-1.03 1.09l-4.5-4.25a.75.75 0 0 1 0-1.09l4.5-4.25a.75.75 0 0 1 1.06.03Z"
439
+ }));
440
+
441
+ const SvgChevronRight = props => /*#__PURE__*/React.createElement("svg", _extends({
442
+ xmlns: "http://www.w3.org/2000/svg",
443
+ width: 16,
444
+ height: 16,
445
+ fill: "currentColor"
446
+ }, props), /*#__PURE__*/React.createElement("path", {
447
+ fillRule: "evenodd",
448
+ d: "M5.205 3.235a.75.75 0 0 0 .03 1.06L9.158 8l-3.923 3.705a.75.75 0 0 0 1.03 1.09l4.5-4.25a.75.75 0 0 0 0-1.09l-4.5-4.25a.75.75 0 0 0-1.06.03Z"
449
+ }));
450
+
451
+ const SvgChevronUp = props => /*#__PURE__*/React.createElement("svg", _extends({
452
+ xmlns: "http://www.w3.org/2000/svg",
453
+ width: 16,
454
+ height: 16,
455
+ fill: "currentColor"
456
+ }, props), /*#__PURE__*/React.createElement("path", {
457
+ fillRule: "evenodd",
458
+ d: "M3.235 10.795a.75.75 0 0 0 1.06-.03L8 6.842l3.705 3.923a.75.75 0 0 0 1.09-1.03l-4.25-4.5a.75.75 0 0 0-1.09 0l-4.25 4.5a.75.75 0 0 0 .03 1.06Z"
459
+ }));
460
+
461
+ const SvgChevronsDown = props => /*#__PURE__*/React.createElement("svg", _extends({
462
+ xmlns: "http://www.w3.org/2000/svg",
463
+ width: 16,
464
+ height: 16,
465
+ fill: "currentColor"
466
+ }, props), /*#__PURE__*/React.createElement("path", {
467
+ d: "M5.3 3.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02L8 6.148 5.3 3.24Z"
468
+ }), /*#__PURE__*/React.createElement("path", {
469
+ d: "M5.3 8.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.752.752 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02L8 11.148 5.3 8.24Z"
470
+ }));
471
+
472
+ const SvgChevronsLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
473
+ xmlns: "http://www.w3.org/2000/svg",
474
+ width: 16,
475
+ height: 16,
476
+ fill: "currentColor"
477
+ }, props), /*#__PURE__*/React.createElement("path", {
478
+ d: "M7.76 5.3a.75.75 0 0 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.749.749 0 1 0 1.02-1.1L4.852 8 7.76 5.3Z"
479
+ }), /*#__PURE__*/React.createElement("path", {
480
+ d: "M12.76 5.3a.75.75 0 0 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.748.748 0 0 0 1.213-.29.75.75 0 0 0-.193-.81L9.852 8l2.908-2.7Z"
481
+ }));
482
+
483
+ const SvgChevronsRight = props => /*#__PURE__*/React.createElement("svg", _extends({
484
+ xmlns: "http://www.w3.org/2000/svg",
485
+ width: 16,
486
+ height: 16,
487
+ fill: "currentColor"
488
+ }, props), /*#__PURE__*/React.createElement("path", {
489
+ d: "M3.24 5.3a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1L6.148 8 3.24 5.3Z"
490
+ }), /*#__PURE__*/React.createElement("path", {
491
+ d: "M8.24 5.3a.75.75 0 0 1 1.02-1.1l3.5 3.25a.749.749 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1L11.148 8 8.24 5.3Z"
492
+ }));
493
+
494
+ const SvgChevronsUp = props => /*#__PURE__*/React.createElement("svg", _extends({
495
+ xmlns: "http://www.w3.org/2000/svg",
496
+ width: 16,
497
+ height: 16,
498
+ fill: "currentColor"
499
+ }, props), /*#__PURE__*/React.createElement("path", {
500
+ d: "M5.3 7.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.749.749 0 1 1-1.1 1.02L8 4.852 5.3 7.76Z"
501
+ }), /*#__PURE__*/React.createElement("path", {
502
+ d: "M5.3 12.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.748.748 0 0 1-.29 1.213.75.75 0 0 1-.81-.193L8 9.852 5.3 12.76Z"
503
+ }));
504
+
431
505
  const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
432
506
  xmlns: "http://www.w3.org/2000/svg",
433
507
  width: 16,
@@ -438,4 +512,4 @@ const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
438
512
  d: "M.659 1.659A2.25 2.25 0 0 1 2.25 1h4.379a2.25 2.25 0 0 1 1.591.66l1.121 1.12c.14.14.331.22.53.22h3.879A2.25 2.25 0 0 1 16 5.25v.25H0V3.25c0-.597.237-1.169.659-1.591ZM0 7v5.75A2.25 2.25 0 0 0 2.25 15h11.5A2.25 2.25 0 0 0 16 12.75V7H0Z"
439
513
  }));
440
514
 
441
- export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgFolder as Folder };
515
+ export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgChevronsDown as ChevronsDown, SvgChevronsLeft as ChevronsLeft, SvgChevronsRight as ChevronsRight, SvgChevronsUp as ChevronsUp, SvgFolder as Folder };
@@ -450,6 +450,80 @@ const SvgChevronDown = props => /*#__PURE__*/React.createElement("svg", _extends
450
450
  d: "M5.23 8.21a.75.75 0 0 1 1.06.02L12 14.168l5.71-5.938a.75.75 0 1 1 1.08 1.04l-6.25 6.5a.75.75 0 0 1-1.08 0l-6.25-6.5a.75.75 0 0 1 .02-1.06Z"
451
451
  }));
452
452
 
453
+ const SvgChevronLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
454
+ xmlns: "http://www.w3.org/2000/svg",
455
+ width: 24,
456
+ height: 24,
457
+ fill: "currentColor"
458
+ }, props), /*#__PURE__*/React.createElement("path", {
459
+ fillRule: "evenodd",
460
+ d: "M15.79 18.77a.75.75 0 0 0-.02-1.06L9.832 12l5.938-5.71a.75.75 0 1 0-1.04-1.08l-6.5 6.25a.75.75 0 0 0 0 1.08l6.5 6.25a.75.75 0 0 0 1.06-.02Z"
461
+ }));
462
+
463
+ const SvgChevronRight = props => /*#__PURE__*/React.createElement("svg", _extends({
464
+ xmlns: "http://www.w3.org/2000/svg",
465
+ width: 24,
466
+ height: 24,
467
+ fill: "currentColor"
468
+ }, props), /*#__PURE__*/React.createElement("path", {
469
+ fillRule: "evenodd",
470
+ d: "M8.21 18.77a.75.75 0 0 1 .02-1.06L14.168 12 8.23 6.29a.75.75 0 1 1 1.04-1.08l6.5 6.25a.751.751 0 0 1 0 1.08l-6.5 6.25a.75.75 0 0 1-1.06-.02Z"
471
+ }));
472
+
473
+ const SvgChevronUp = props => /*#__PURE__*/React.createElement("svg", _extends({
474
+ xmlns: "http://www.w3.org/2000/svg",
475
+ width: 24,
476
+ height: 24,
477
+ fill: "currentColor"
478
+ }, props), /*#__PURE__*/React.createElement("path", {
479
+ fillRule: "evenodd",
480
+ d: "M5.23 15.79a.75.75 0 0 0 1.06-.02L12 9.832l5.71 5.938a.75.75 0 1 0 1.08-1.04l-6.25-6.5a.749.749 0 0 0-1.08 0l-6.25 6.5a.75.75 0 0 0 .02 1.06Z"
481
+ }));
482
+
483
+ const SvgChevronsDown = props => /*#__PURE__*/React.createElement("svg", _extends({
484
+ xmlns: "http://www.w3.org/2000/svg",
485
+ width: 24,
486
+ height: 24,
487
+ fill: "currentColor"
488
+ }, props), /*#__PURE__*/React.createElement("path", {
489
+ d: "M7.293 5.232a.75.75 0 0 0-1.086 1.036l5.25 5.5a.75.75 0 0 0 1.085 0l5.25-5.5a.75.75 0 0 0-1.085-1.036L12 10.164 7.293 5.232Z"
490
+ }), /*#__PURE__*/React.createElement("path", {
491
+ d: "M7.293 12.232a.75.75 0 0 0-1.086 1.036l5.25 5.5a.75.75 0 0 0 1.085 0l5.25-5.5a.75.75 0 0 0-1.085-1.036L12 17.164l-4.707-4.932Z"
492
+ }));
493
+
494
+ const SvgChevronsLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
495
+ xmlns: "http://www.w3.org/2000/svg",
496
+ width: 24,
497
+ height: 24,
498
+ fill: "currentColor"
499
+ }, props), /*#__PURE__*/React.createElement("path", {
500
+ d: "M11.768 16.707a.75.75 0 1 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 1 1 1.036 1.086L6.836 12l4.932 4.707Z"
501
+ }), /*#__PURE__*/React.createElement("path", {
502
+ d: "M18.768 16.707a.75.75 0 1 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 1 1 1.036 1.086L13.836 12l4.932 4.707Z"
503
+ }));
504
+
505
+ const SvgChevronsRight = props => /*#__PURE__*/React.createElement("svg", _extends({
506
+ xmlns: "http://www.w3.org/2000/svg",
507
+ width: 24,
508
+ height: 24,
509
+ fill: "currentColor"
510
+ }, props), /*#__PURE__*/React.createElement("path", {
511
+ d: "M5.232 16.707a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 1 0-1.036 1.086L10.164 12l-4.932 4.707Z"
512
+ }), /*#__PURE__*/React.createElement("path", {
513
+ d: "M12.232 16.707a.75.75 0 1 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.036 1.086L17.164 12l-4.932 4.707Z"
514
+ }));
515
+
516
+ const SvgChevronsUp = props => /*#__PURE__*/React.createElement("svg", _extends({
517
+ xmlns: "http://www.w3.org/2000/svg",
518
+ width: 24,
519
+ height: 24,
520
+ fill: "currentColor"
521
+ }, props), /*#__PURE__*/React.createElement("path", {
522
+ d: "M7.293 11.768a.75.75 0 1 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-1.085 1.036L12 6.836l-4.707 4.932Z"
523
+ }), /*#__PURE__*/React.createElement("path", {
524
+ d: "M7.293 18.768a.75.75 0 1 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-1.085 1.036L12 13.836l-4.707 4.932Z"
525
+ }));
526
+
453
527
  const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
454
528
  xmlns: "http://www.w3.org/2000/svg",
455
529
  width: 24,
@@ -461,4 +535,4 @@ const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
461
535
  d: "M1.805 2.805A2.75 2.75 0 0 1 3.75 2h5.672c.73 0 1.428.29 1.944.805l.829.829c.234.234.552.366.883.366h7.172A2.75 2.75 0 0 1 23 6.75v12.5A2.75 2.75 0 0 1 20.25 22H3.75A2.75 2.75 0 0 1 1 19.25V4.75c0-.73.29-1.429.805-1.945ZM2.5 8.5v10.75c0 .69.56 1.25 1.25 1.25h16.5c.69 0 1.25-.56 1.25-1.25V8.5h-19Zm19-1.5h-19V4.75c0-.69.56-1.25 1.25-1.25h5.672c.331 0 .649.132.883.366l.829.829a2.75 2.75 0 0 0 1.944.805h7.172c.69 0 1.25.56 1.25 1.25V7Z"
462
536
  }));
463
537
 
464
- export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgFolder as Folder };
538
+ export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgChevronsDown as ChevronsDown, SvgChevronsLeft as ChevronsLeft, SvgChevronsRight as ChevronsRight, SvgChevronsUp as ChevronsUp, SvgFolder as Folder };
@@ -422,6 +422,80 @@ const SvgChevronDown = props => /*#__PURE__*/React.createElement("svg", _extends
422
422
  d: "M5.23 8.21a.75.75 0 0 1 1.06.02L12 14.168l5.71-5.938a.75.75 0 1 1 1.08 1.04l-6.25 6.5a.75.75 0 0 1-1.08 0l-6.25-6.5a.75.75 0 0 1 .02-1.06Z"
423
423
  }));
424
424
 
425
+ const SvgChevronLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
426
+ xmlns: "http://www.w3.org/2000/svg",
427
+ width: 24,
428
+ height: 24,
429
+ fill: "currentColor"
430
+ }, props), /*#__PURE__*/React.createElement("path", {
431
+ fillRule: "evenodd",
432
+ d: "M15.79 18.77a.75.75 0 0 0-.02-1.06L9.832 12l5.938-5.71a.75.75 0 1 0-1.04-1.08l-6.5 6.25a.75.75 0 0 0 0 1.08l6.5 6.25a.75.75 0 0 0 1.06-.02Z"
433
+ }));
434
+
435
+ const SvgChevronRight = props => /*#__PURE__*/React.createElement("svg", _extends({
436
+ xmlns: "http://www.w3.org/2000/svg",
437
+ width: 24,
438
+ height: 24,
439
+ fill: "currentColor"
440
+ }, props), /*#__PURE__*/React.createElement("path", {
441
+ fillRule: "evenodd",
442
+ d: "M8.21 18.77a.75.75 0 0 1 .02-1.06L14.168 12 8.23 6.29a.75.75 0 1 1 1.04-1.08l6.5 6.25a.751.751 0 0 1 0 1.08l-6.5 6.25a.75.75 0 0 1-1.06-.02Z"
443
+ }));
444
+
445
+ const SvgChevronUp = props => /*#__PURE__*/React.createElement("svg", _extends({
446
+ xmlns: "http://www.w3.org/2000/svg",
447
+ width: 24,
448
+ height: 24,
449
+ fill: "currentColor"
450
+ }, props), /*#__PURE__*/React.createElement("path", {
451
+ fillRule: "evenodd",
452
+ d: "M5.23 15.79a.75.75 0 0 0 1.06-.02L12 9.832l5.71 5.938a.75.75 0 1 0 1.08-1.04l-6.25-6.5a.749.749 0 0 0-1.08 0l-6.25 6.5a.75.75 0 0 0 .02 1.06Z"
453
+ }));
454
+
455
+ const SvgChevronsDown = props => /*#__PURE__*/React.createElement("svg", _extends({
456
+ xmlns: "http://www.w3.org/2000/svg",
457
+ width: 24,
458
+ height: 24,
459
+ fill: "currentColor"
460
+ }, props), /*#__PURE__*/React.createElement("path", {
461
+ d: "M7.293 5.232a.75.75 0 0 0-1.086 1.036l5.25 5.5a.75.75 0 0 0 1.085 0l5.25-5.5a.75.75 0 0 0-1.085-1.036L12 10.164 7.293 5.232Z"
462
+ }), /*#__PURE__*/React.createElement("path", {
463
+ d: "M7.293 12.232a.75.75 0 0 0-1.086 1.036l5.25 5.5a.75.75 0 0 0 1.085 0l5.25-5.5a.75.75 0 0 0-1.085-1.036L12 17.164l-4.707-4.932Z"
464
+ }));
465
+
466
+ const SvgChevronsLeft = props => /*#__PURE__*/React.createElement("svg", _extends({
467
+ xmlns: "http://www.w3.org/2000/svg",
468
+ width: 24,
469
+ height: 24,
470
+ fill: "currentColor"
471
+ }, props), /*#__PURE__*/React.createElement("path", {
472
+ d: "M11.768 16.707a.75.75 0 1 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 1 1 1.036 1.086L6.836 12l4.932 4.707Z"
473
+ }), /*#__PURE__*/React.createElement("path", {
474
+ d: "M18.768 16.707a.75.75 0 1 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 1 1 1.036 1.086L13.836 12l4.932 4.707Z"
475
+ }));
476
+
477
+ const SvgChevronsRight = props => /*#__PURE__*/React.createElement("svg", _extends({
478
+ xmlns: "http://www.w3.org/2000/svg",
479
+ width: 24,
480
+ height: 24,
481
+ fill: "currentColor"
482
+ }, props), /*#__PURE__*/React.createElement("path", {
483
+ d: "M5.232 16.707a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 1 0-1.036 1.086L10.164 12l-4.932 4.707Z"
484
+ }), /*#__PURE__*/React.createElement("path", {
485
+ d: "M12.232 16.707a.75.75 0 1 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.036 1.086L17.164 12l-4.932 4.707Z"
486
+ }));
487
+
488
+ const SvgChevronsUp = props => /*#__PURE__*/React.createElement("svg", _extends({
489
+ xmlns: "http://www.w3.org/2000/svg",
490
+ width: 24,
491
+ height: 24,
492
+ fill: "currentColor"
493
+ }, props), /*#__PURE__*/React.createElement("path", {
494
+ d: "M7.293 11.768a.75.75 0 1 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-1.085 1.036L12 6.836l-4.707 4.932Z"
495
+ }), /*#__PURE__*/React.createElement("path", {
496
+ d: "M7.293 18.768a.75.75 0 1 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-1.085 1.036L12 13.836l-4.707 4.932Z"
497
+ }));
498
+
425
499
  const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
426
500
  xmlns: "http://www.w3.org/2000/svg",
427
501
  width: 24,
@@ -432,4 +506,4 @@ const SvgFolder = props => /*#__PURE__*/React.createElement("svg", _extends({
432
506
  d: "M1.805 2.805A2.75 2.75 0 0 1 3.75 2h5.672c.73 0 1.428.29 1.944.805l.829.829c.234.234.552.366.883.366h7.172A2.75 2.75 0 0 1 23 6.75V7H1V4.75c0-.73.29-1.429.805-1.945ZM1 8.5v10.75A2.75 2.75 0 0 0 3.75 22h16.5A2.75 2.75 0 0 0 23 19.25V8.5H1Z"
433
507
  }));
434
508
 
435
- export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgFolder as Folder };
509
+ export { SvgActivity as Activity, SvgAlarm as Alarm, SvgAlert as Alert, SvgAlignBottom as AlignBottom, SvgAlignTop as AlignTop, SvgAnnotation as Annotation, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAt as At, SvgBattery as Battery, SvgBeaker as Beaker, SvgBell as Bell, SvgBookClosed as BookClosed, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBookmarkPlus as BookmarkPlus, SvgBriefcase as Briefcase, SvgBuilding as Building, SvgBulb as Bulb, SvgCalendar as Calendar, SvgCamera as Camera, SvgCash as Cash, SvgChartBar as ChartBar, SvgChatBubbleRound as ChatBubbleRound, SvgChatBubbleRoundDots as ChatBubbleRoundDots, SvgChatBubbleRoundText as ChatBubbleRoundText, SvgChatBubbleSquare as ChatBubbleSquare, SvgChatBubbleSquareDots as ChatBubbleSquareDots, SvgChatBubbleSquareText as ChatBubbleSquareText, SvgChatBubblesRound as ChatBubblesRound, SvgChatBubblesSquare as ChatBubblesSquare, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgChevronsDown as ChevronsDown, SvgChevronsLeft as ChevronsLeft, SvgChevronsRight as ChevronsRight, SvgChevronsUp as ChevronsUp, SvgFolder as Folder };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metal-icons",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "A flexible React icon set",
5
5
  "author": "Jason Melgoza",
6
6
  "license": "MIT",