@mirohq/design-system-icons 0.4.0 → 0.5.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/main.js +539 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +520 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +41 -1
- package/package.json +1 -1
- package/react/align-bottom.tsx +32 -0
- package/react/align-left.tsx +32 -0
- package/react/align-right.tsx +32 -0
- package/react/align-top.tsx +32 -0
- package/react/bell-slash.tsx +31 -0
- package/react/bell-tilt.tsx +32 -0
- package/react/bell.tsx +32 -0
- package/react/calendar-blank.tsx +35 -0
- package/react/clock-overtime.tsx +31 -0
- package/react/clock.tsx +33 -0
- package/react/graduation-cap.tsx +35 -0
- package/react/index.ts +20 -0
- package/react/lifesaver.tsx +34 -0
- package/react/lightning.tsx +35 -0
- package/react/magnet.tsx +34 -0
- package/react/map.tsx +35 -0
- package/react/push-pin.tsx +31 -0
- package/react/sidebar-closed.tsx +35 -0
- package/react/sidebar-open.tsx +34 -0
- package/react/tag.tsx +29 -0
- package/react/timer.tsx +25 -0
- package/svg/24/align-bottom.svg +1 -0
- package/svg/24/align-left.svg +1 -0
- package/svg/24/align-right.svg +1 -0
- package/svg/24/align-top.svg +1 -0
- package/svg/24/bell-slash.svg +1 -0
- package/svg/24/bell-tilt.svg +1 -0
- package/svg/24/bell.svg +1 -0
- package/svg/24/calendar-blank.svg +1 -0
- package/svg/24/clock-overtime.svg +1 -0
- package/svg/24/clock.svg +1 -0
- package/svg/24/graduation-cap.svg +1 -0
- package/svg/24/lifesaver.svg +1 -0
- package/svg/24/lightning.svg +1 -0
- package/svg/24/magnet.svg +1 -0
- package/svg/24/map.svg +1 -0
- package/svg/24/push-pin.svg +1 -0
- package/svg/24/sidebar-closed.svg +1 -0
- package/svg/24/sidebar-open.svg +1 -0
- package/svg/24/tag.svg +1 -0
- package/svg/24/timer.svg +1 -0
- package/svg/meta.json +147 -1
package/dist/main.js
CHANGED
|
@@ -31,6 +31,106 @@ const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.s
|
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
|
|
34
|
+
const IconAlignBottom = React.forwardRef(
|
|
35
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
|
+
StyledIcon,
|
|
37
|
+
{
|
|
38
|
+
...props,
|
|
39
|
+
size,
|
|
40
|
+
viewBox: "0 0 24 24",
|
|
41
|
+
fill: "none",
|
|
42
|
+
ref: forwardRef2
|
|
43
|
+
},
|
|
44
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
45
|
+
stroke: "currentColor",
|
|
46
|
+
strokeLinecap: "round",
|
|
47
|
+
strokeLinejoin: "round",
|
|
48
|
+
strokeMiterlimit: 1.414,
|
|
49
|
+
strokeWidth: 2,
|
|
50
|
+
d: "M3 20h18"
|
|
51
|
+
}),
|
|
52
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
53
|
+
fill: "currentColor",
|
|
54
|
+
d: "M7 3.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 5a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
|
|
55
|
+
})
|
|
56
|
+
)
|
|
57
|
+
);
|
|
58
|
+
|
|
59
|
+
const IconAlignLeft = React.forwardRef(
|
|
60
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
61
|
+
StyledIcon,
|
|
62
|
+
{
|
|
63
|
+
...props,
|
|
64
|
+
size,
|
|
65
|
+
viewBox: "0 0 24 24",
|
|
66
|
+
fill: "none",
|
|
67
|
+
ref: forwardRef2
|
|
68
|
+
},
|
|
69
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
70
|
+
stroke: "currentColor",
|
|
71
|
+
strokeLinecap: "round",
|
|
72
|
+
strokeLinejoin: "round",
|
|
73
|
+
strokeMiterlimit: 1.414,
|
|
74
|
+
strokeWidth: 2,
|
|
75
|
+
d: "M4 21V3"
|
|
76
|
+
}),
|
|
77
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
78
|
+
fill: "currentColor",
|
|
79
|
+
d: "M8 15.5A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Zm0-7A1.5 1.5 0 0 1 9.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 8 8.5Z"
|
|
80
|
+
})
|
|
81
|
+
)
|
|
82
|
+
);
|
|
83
|
+
|
|
84
|
+
const IconAlignRight = React.forwardRef(
|
|
85
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
86
|
+
StyledIcon,
|
|
87
|
+
{
|
|
88
|
+
...props,
|
|
89
|
+
size,
|
|
90
|
+
viewBox: "0 0 24 24",
|
|
91
|
+
fill: "none",
|
|
92
|
+
ref: forwardRef2
|
|
93
|
+
},
|
|
94
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
95
|
+
stroke: "currentColor",
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round",
|
|
98
|
+
strokeMiterlimit: 1.414,
|
|
99
|
+
strokeWidth: 2,
|
|
100
|
+
d: "M20 3v18"
|
|
101
|
+
}),
|
|
102
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
103
|
+
fill: "currentColor",
|
|
104
|
+
d: "M2 8.5A1.5 1.5 0 0 1 3.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 2 8.5Zm6 7A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Z"
|
|
105
|
+
})
|
|
106
|
+
)
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
const IconAlignTop = React.forwardRef(
|
|
110
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
111
|
+
StyledIcon,
|
|
112
|
+
{
|
|
113
|
+
...props,
|
|
114
|
+
size,
|
|
115
|
+
viewBox: "0 0 24 24",
|
|
116
|
+
fill: "none",
|
|
117
|
+
ref: forwardRef2
|
|
118
|
+
},
|
|
119
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
120
|
+
stroke: "currentColor",
|
|
121
|
+
strokeLinecap: "round",
|
|
122
|
+
strokeLinejoin: "round",
|
|
123
|
+
strokeMiterlimit: 1.414,
|
|
124
|
+
strokeWidth: 2,
|
|
125
|
+
d: "M3 3h18"
|
|
126
|
+
}),
|
|
127
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
128
|
+
fill: "currentColor",
|
|
129
|
+
d: "M7 8.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 0a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
|
|
130
|
+
})
|
|
131
|
+
)
|
|
132
|
+
);
|
|
133
|
+
|
|
34
134
|
const IconArrowBoxOut = React.forwardRef(
|
|
35
135
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
136
|
StyledIcon,
|
|
@@ -428,6 +528,80 @@ const IconBarThree = React.forwardRef(
|
|
|
428
528
|
)
|
|
429
529
|
);
|
|
430
530
|
|
|
531
|
+
const IconBellSlash = React.forwardRef(
|
|
532
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
533
|
+
StyledIcon,
|
|
534
|
+
{
|
|
535
|
+
...props,
|
|
536
|
+
size,
|
|
537
|
+
viewBox: "0 0 24 24",
|
|
538
|
+
fill: "none",
|
|
539
|
+
ref: forwardRef2
|
|
540
|
+
},
|
|
541
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
542
|
+
clipPath: "url(#a)"
|
|
543
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
544
|
+
fill: "currentColor",
|
|
545
|
+
d: "M17 12.5h-1a1 1 0 0 0 .168.555L17 12.5Zm2.482 3.723.832-.555-.832.555Zm-.416.777v1-1ZM7 12l.857.514A1 1 0 0 0 8 12H7Zm-1.494.546a1 1 0 0 0 1.715 1.03l-1.715-1.03Zm-2.213 6.747a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM20.707 4.707a1 1 0 0 0-1.414-1.414l1.414 1.414ZM14 5.535a1 1 0 1 0 1.002-1.732L14 5.535ZM16 9v3.5h2V9h-2Zm.168 4.055 2.482 3.722 1.664-1.11-2.482-3.722-1.664 1.11Zm2.482 3.722a.5.5 0 0 1 .416-.777v2c1.198 0 1.912-1.335 1.248-2.332l-1.664 1.11ZM13 18a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm-1 1a1 1 0 0 1-1-1H9a3 3 0 0 0 3 3v-2Zm3.757-11.377C15.914 8.05 16 8.514 16 9h2c0-.724-.129-1.42-.366-2.066l-1.877.689ZM19.066 16H7v2h12.066v-2ZM8 12V9H6v3h2Zm0-3a4 4 0 0 1 4-4V3a6 6 0 0 0-6 6h2Zm-.779 4.575.636-1.06-1.714-1.03-.637 1.061 1.715 1.03Zm-2.514 7.132 16-16-1.414-1.414-16 16 1.414 1.414ZM12 5c.73 0 1.412.195 2 .535l1-1.732A5.977 5.977 0 0 0 12 3v2Z"
|
|
546
|
+
})),
|
|
547
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
548
|
+
id: "a"
|
|
549
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
550
|
+
d: "M0 0h24v24H0z"
|
|
551
|
+
})))
|
|
552
|
+
)
|
|
553
|
+
);
|
|
554
|
+
|
|
555
|
+
const IconBellTilt = React.forwardRef(
|
|
556
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
557
|
+
StyledIcon,
|
|
558
|
+
{
|
|
559
|
+
...props,
|
|
560
|
+
size,
|
|
561
|
+
viewBox: "0 0 24 24",
|
|
562
|
+
fill: "none",
|
|
563
|
+
ref: forwardRef2
|
|
564
|
+
},
|
|
565
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
566
|
+
clipPath: "url(#a)"
|
|
567
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
568
|
+
stroke: "currentColor",
|
|
569
|
+
strokeWidth: 2,
|
|
570
|
+
d: "M11.646 17.795a2 2 0 0 1-3.465-2M8.583 9.1l1.5-2.598a5 5 0 0 1 8.66 5l-1.75 3.03.289 4.466a.5.5 0 0 1-.75.465L4.25 12.37a.5.5 0 0 1 .007-.87l4.326-2.402Z"
|
|
571
|
+
})),
|
|
572
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
573
|
+
id: "a"
|
|
574
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
575
|
+
d: "M0 0h24v24H0z"
|
|
576
|
+
})))
|
|
577
|
+
)
|
|
578
|
+
);
|
|
579
|
+
|
|
580
|
+
const IconBell = React.forwardRef(
|
|
581
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
582
|
+
StyledIcon,
|
|
583
|
+
{
|
|
584
|
+
...props,
|
|
585
|
+
size,
|
|
586
|
+
viewBox: "0 0 24 24",
|
|
587
|
+
fill: "none",
|
|
588
|
+
ref: forwardRef2
|
|
589
|
+
},
|
|
590
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
591
|
+
clipPath: "url(#a)"
|
|
592
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
593
|
+
stroke: "currentColor",
|
|
594
|
+
strokeWidth: 2,
|
|
595
|
+
d: "M14 18a2 2 0 1 1-4 0m-3-6V9a5 5 0 0 1 10 0v3.5l2.482 3.723a.5.5 0 0 1-.416.777H4.883a.5.5 0 0 1-.429-.757L7 12Z"
|
|
596
|
+
})),
|
|
597
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
598
|
+
id: "a"
|
|
599
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
600
|
+
d: "M0 0h24v24H0z"
|
|
601
|
+
})))
|
|
602
|
+
)
|
|
603
|
+
);
|
|
604
|
+
|
|
431
605
|
const IconBracketsAngleSlash = React.forwardRef(
|
|
432
606
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
433
607
|
StyledIcon,
|
|
@@ -483,6 +657,34 @@ const IconBracketsCurlyCirclesThree = React.forwardRef(
|
|
|
483
657
|
)
|
|
484
658
|
);
|
|
485
659
|
|
|
660
|
+
const IconCalendarBlank = React.forwardRef(
|
|
661
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
662
|
+
StyledIcon,
|
|
663
|
+
{
|
|
664
|
+
...props,
|
|
665
|
+
size,
|
|
666
|
+
viewBox: "0 0 24 24",
|
|
667
|
+
fill: "none",
|
|
668
|
+
ref: forwardRef2
|
|
669
|
+
},
|
|
670
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
671
|
+
clipPath: "url(#a)"
|
|
672
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
673
|
+
stroke: "currentColor",
|
|
674
|
+
strokeLinecap: "round",
|
|
675
|
+
strokeLinejoin: "round",
|
|
676
|
+
strokeMiterlimit: 1.414,
|
|
677
|
+
strokeWidth: 2,
|
|
678
|
+
d: "M3 11v10h18V11M3 11V5h18v6M3 11h18m-5-8v4M8 3v4"
|
|
679
|
+
})),
|
|
680
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
681
|
+
id: "a"
|
|
682
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
683
|
+
d: "M0 0h24v24H0z"
|
|
684
|
+
})))
|
|
685
|
+
)
|
|
686
|
+
);
|
|
687
|
+
|
|
486
688
|
const IconCamera = React.forwardRef(
|
|
487
689
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
488
690
|
StyledIcon,
|
|
@@ -907,6 +1109,56 @@ const IconClockCounterClockwise = React.forwardRef(
|
|
|
907
1109
|
)
|
|
908
1110
|
);
|
|
909
1111
|
|
|
1112
|
+
const IconClockOvertime = React.forwardRef(
|
|
1113
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1114
|
+
StyledIcon,
|
|
1115
|
+
{
|
|
1116
|
+
...props,
|
|
1117
|
+
size,
|
|
1118
|
+
viewBox: "0 0 24 24",
|
|
1119
|
+
fill: "none",
|
|
1120
|
+
ref: forwardRef2
|
|
1121
|
+
},
|
|
1122
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1123
|
+
stroke: "currentColor",
|
|
1124
|
+
strokeLinecap: "square",
|
|
1125
|
+
strokeMiterlimit: 1.414,
|
|
1126
|
+
strokeWidth: 2,
|
|
1127
|
+
d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1128
|
+
}),
|
|
1129
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1130
|
+
fill: "currentColor",
|
|
1131
|
+
d: "M12 12c.88.44 2.921 1.267 4.137 1.8.25.11.362.401.229.639a5 5 0 1 1-4.865-7.414c.274-.028.499.2.499.477V12Z"
|
|
1132
|
+
})
|
|
1133
|
+
)
|
|
1134
|
+
);
|
|
1135
|
+
|
|
1136
|
+
const IconClock = React.forwardRef(
|
|
1137
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1138
|
+
StyledIcon,
|
|
1139
|
+
{
|
|
1140
|
+
...props,
|
|
1141
|
+
size,
|
|
1142
|
+
viewBox: "0 0 24 24",
|
|
1143
|
+
fill: "none",
|
|
1144
|
+
ref: forwardRef2
|
|
1145
|
+
},
|
|
1146
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1147
|
+
clipPath: "url(#a)"
|
|
1148
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1149
|
+
stroke: "currentColor",
|
|
1150
|
+
strokeLinecap: "round",
|
|
1151
|
+
strokeWidth: 2,
|
|
1152
|
+
d: "M11 7.4v4.05l2.7 2.25M20 11a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1153
|
+
})),
|
|
1154
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1155
|
+
id: "a"
|
|
1156
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1157
|
+
d: "M0 0h24v24H0z"
|
|
1158
|
+
})))
|
|
1159
|
+
)
|
|
1160
|
+
);
|
|
1161
|
+
|
|
910
1162
|
const IconCluster = React.forwardRef(
|
|
911
1163
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
912
1164
|
StyledIcon,
|
|
@@ -1278,6 +1530,34 @@ const IconGlobe = React.forwardRef(
|
|
|
1278
1530
|
)
|
|
1279
1531
|
);
|
|
1280
1532
|
|
|
1533
|
+
const IconGraduationCap = React.forwardRef(
|
|
1534
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1535
|
+
StyledIcon,
|
|
1536
|
+
{
|
|
1537
|
+
...props,
|
|
1538
|
+
size,
|
|
1539
|
+
viewBox: "0 0 24 24",
|
|
1540
|
+
fill: "none",
|
|
1541
|
+
ref: forwardRef2
|
|
1542
|
+
},
|
|
1543
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1544
|
+
clipPath: "url(#a)"
|
|
1545
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1546
|
+
stroke: "currentColor",
|
|
1547
|
+
strokeLinecap: "round",
|
|
1548
|
+
strokeLinejoin: "round",
|
|
1549
|
+
strokeMiterlimit: 1.414,
|
|
1550
|
+
strokeWidth: 2,
|
|
1551
|
+
d: "M2 8.23 12.5 3 23 8.23 19.684 9.8M2 8.23V20M2 8.23 5.316 9.8m0 0 7.184 3.4 7.184-3.4m-14.368 0v3.016A7.184 7.184 0 0 0 12.5 20v0a7.184 7.184 0 0 0 7.184-7.184V9.8"
|
|
1552
|
+
})),
|
|
1553
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1554
|
+
id: "a"
|
|
1555
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1556
|
+
d: "M0 0h24v24H0z"
|
|
1557
|
+
})))
|
|
1558
|
+
)
|
|
1559
|
+
);
|
|
1560
|
+
|
|
1281
1561
|
const IconHandFilled = React.forwardRef(
|
|
1282
1562
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1283
1563
|
StyledIcon,
|
|
@@ -1478,6 +1758,61 @@ const IconLaptop = React.forwardRef(
|
|
|
1478
1758
|
)
|
|
1479
1759
|
);
|
|
1480
1760
|
|
|
1761
|
+
const IconLifesaver = React.forwardRef(
|
|
1762
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1763
|
+
StyledIcon,
|
|
1764
|
+
{
|
|
1765
|
+
...props,
|
|
1766
|
+
size,
|
|
1767
|
+
viewBox: "0 0 24 24",
|
|
1768
|
+
fill: "none",
|
|
1769
|
+
ref: forwardRef2
|
|
1770
|
+
},
|
|
1771
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1772
|
+
clipPath: "url(#a)"
|
|
1773
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1774
|
+
stroke: "currentColor",
|
|
1775
|
+
strokeLinecap: "square",
|
|
1776
|
+
strokeMiterlimit: 1.414,
|
|
1777
|
+
strokeWidth: 2,
|
|
1778
|
+
d: "M14.828 14.828a4 4 0 0 1-5.656 0m5.656 0a4 4 0 0 0 0-5.656m0 5.656 3.182 3.182m-8.838-3.182a4 4 0 0 1 0-5.656m0 5.656L5.99 18.01m3.182-8.838a4 4 0 0 1 5.656 0m-5.656 0L5.99 5.99m8.838 3.182L18.01 5.99m.354 12.374A9 9 0 1 1 5.636 5.636a9 9 0 0 1 12.728 12.728Z"
|
|
1779
|
+
})),
|
|
1780
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1781
|
+
id: "a"
|
|
1782
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1783
|
+
d: "M0 0h24v24H0z"
|
|
1784
|
+
})))
|
|
1785
|
+
)
|
|
1786
|
+
);
|
|
1787
|
+
|
|
1788
|
+
const IconLightning = React.forwardRef(
|
|
1789
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1790
|
+
StyledIcon,
|
|
1791
|
+
{
|
|
1792
|
+
...props,
|
|
1793
|
+
size,
|
|
1794
|
+
viewBox: "0 0 24 24",
|
|
1795
|
+
fill: "none",
|
|
1796
|
+
ref: forwardRef2
|
|
1797
|
+
},
|
|
1798
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1799
|
+
clipPath: "url(#a)"
|
|
1800
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1801
|
+
stroke: "currentColor",
|
|
1802
|
+
strokeLinecap: "square",
|
|
1803
|
+
strokeLinejoin: "round",
|
|
1804
|
+
strokeMiterlimit: 1.414,
|
|
1805
|
+
strokeWidth: 2,
|
|
1806
|
+
d: "M11.973 1.867 4.231 14.62a.25.25 0 0 0 .213.38H11.5l-.44 7.04c-.016.258.32.368.46.152l8.232-12.807a.25.25 0 0 0-.21-.385H12l.437-6.987c.016-.261-.328-.37-.463-.146Z"
|
|
1807
|
+
})),
|
|
1808
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1809
|
+
id: "a"
|
|
1810
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1811
|
+
d: "M0 0h24v24H0z"
|
|
1812
|
+
})))
|
|
1813
|
+
)
|
|
1814
|
+
);
|
|
1815
|
+
|
|
1481
1816
|
const IconLineDiagonal = React.forwardRef(
|
|
1482
1817
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1483
1818
|
StyledIcon,
|
|
@@ -1573,6 +1908,33 @@ const IconLockOpen = React.forwardRef(
|
|
|
1573
1908
|
)
|
|
1574
1909
|
);
|
|
1575
1910
|
|
|
1911
|
+
const IconMagnet = React.forwardRef(
|
|
1912
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1913
|
+
StyledIcon,
|
|
1914
|
+
{
|
|
1915
|
+
...props,
|
|
1916
|
+
size,
|
|
1917
|
+
viewBox: "0 0 24 24",
|
|
1918
|
+
fill: "none",
|
|
1919
|
+
ref: forwardRef2
|
|
1920
|
+
},
|
|
1921
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1922
|
+
clipPath: "url(#a)"
|
|
1923
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1924
|
+
stroke: "currentColor",
|
|
1925
|
+
strokeLinecap: "square",
|
|
1926
|
+
strokeMiterlimit: 1.414,
|
|
1927
|
+
strokeWidth: 2,
|
|
1928
|
+
d: "M8.435 4.828 4.95 8.314a7 7 0 0 0 0 9.9l.641.64a7 7 0 0 0 9.858.041l3.556-3.497M8.435 4.828l2.475-2.474a.5.5 0 0 1 .707 0l2.293 2.293a.5.5 0 0 1 0 .707l-2.475 2.474m-3-3 3 3m0 0-3.314 3.314C6.95 12.314 7 14 8.121 15.385l.522.522c1.357 1.093 3.071 1.171 4.243 0l3.314-3.314m0 0 2.475-2.475a.5.5 0 0 1 .707 0l2.118 2.119a.5.5 0 0 1-.003.71l-2.492 2.451M16.2 12.593l2.805 2.805"
|
|
1929
|
+
})),
|
|
1930
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1931
|
+
id: "a"
|
|
1932
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1933
|
+
d: "M0 0h24v24H0z"
|
|
1934
|
+
})))
|
|
1935
|
+
)
|
|
1936
|
+
);
|
|
1937
|
+
|
|
1576
1938
|
const IconMagnifyingGlass = React.forwardRef(
|
|
1577
1939
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1578
1940
|
StyledIcon,
|
|
@@ -1592,6 +1954,34 @@ const IconMagnifyingGlass = React.forwardRef(
|
|
|
1592
1954
|
)
|
|
1593
1955
|
);
|
|
1594
1956
|
|
|
1957
|
+
const IconMap = React.forwardRef(
|
|
1958
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1959
|
+
StyledIcon,
|
|
1960
|
+
{
|
|
1961
|
+
...props,
|
|
1962
|
+
size,
|
|
1963
|
+
viewBox: "0 0 24 24",
|
|
1964
|
+
fill: "none",
|
|
1965
|
+
ref: forwardRef2
|
|
1966
|
+
},
|
|
1967
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1968
|
+
clipPath: "url(#a)"
|
|
1969
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1970
|
+
stroke: "currentColor",
|
|
1971
|
+
strokeLinecap: "round",
|
|
1972
|
+
strokeLinejoin: "round",
|
|
1973
|
+
strokeMiterlimit: 1.414,
|
|
1974
|
+
strokeWidth: 2,
|
|
1975
|
+
d: "M9 4 3 6v15l6-2.5M9 4l6 2M9 4v14.5M15 6l6-2v14.5L15 21m0-15v15m0 0-6-2.5"
|
|
1976
|
+
})),
|
|
1977
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1978
|
+
id: "a"
|
|
1979
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1980
|
+
d: "M0 0h24v24H0z"
|
|
1981
|
+
})))
|
|
1982
|
+
)
|
|
1983
|
+
);
|
|
1984
|
+
|
|
1595
1985
|
const IconMicrophoneSlash = React.forwardRef(
|
|
1596
1986
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1597
1987
|
StyledIcon,
|
|
@@ -1868,6 +2258,30 @@ const IconPlus = React.forwardRef(
|
|
|
1868
2258
|
)
|
|
1869
2259
|
);
|
|
1870
2260
|
|
|
2261
|
+
const IconPushPin = React.forwardRef(
|
|
2262
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2263
|
+
StyledIcon,
|
|
2264
|
+
{
|
|
2265
|
+
...props,
|
|
2266
|
+
size,
|
|
2267
|
+
viewBox: "0 0 24 24",
|
|
2268
|
+
fill: "none",
|
|
2269
|
+
ref: forwardRef2
|
|
2270
|
+
},
|
|
2271
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2272
|
+
clipPath: "url(#a)"
|
|
2273
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2274
|
+
fill: "currentColor",
|
|
2275
|
+
d: "M14.092 2.293a1 1 0 1 0-1.415 1.414l1.415-1.414Zm-9.948 8.55a1 1 0 0 0 1.173 1.62l-1.173-1.62Zm15.471-1.612.708-.707-.708.707Zm.678 2.091a1 1 0 0 0 1.414-1.414l-1.414 1.415Zm-8.757 7.36-.586.81 1.62 1.174.586-.81-1.62-1.173Zm1.142 3.025a1 1 0 0 0 1.414-1.414l-1.415 1.414ZM3.707 9.908a1 1 0 1 0-1.415 1.415l1.414-1.415ZM2.292 20.293a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM12.677 3.707l1.385 1.385 1.414-1.414-1.384-1.385-1.415 1.414Zm1.506-.132L4.144 10.844l1.173 1.62 10.039-7.27-1.173-1.62Zm-.12 1.517 4.845 4.846 1.415-1.414-4.847-4.846-1.414 1.414Zm4.845 4.846 1.385 1.384 1.414-1.414-1.384-1.384-1.415 1.414Zm-.103-1.294-7.269 10.039 1.62 1.173 7.27-10.039-1.62-1.173Zm-4.713 11.649L8.899 15.1l-1.414 1.414 5.192 5.192 1.415-1.414ZM8.899 15.1 3.707 9.908l-1.414 1.415 5.192 5.192L8.9 15.1Zm-5.192 6.606L8.9 16.515 7.485 15.1l-5.192 5.192 1.414 1.414Z"
|
|
2276
|
+
})),
|
|
2277
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2278
|
+
id: "a"
|
|
2279
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2280
|
+
d: "M0 0h24v24H0z"
|
|
2281
|
+
})))
|
|
2282
|
+
)
|
|
2283
|
+
);
|
|
2284
|
+
|
|
1871
2285
|
const IconQuestionMarkCircle = React.forwardRef(
|
|
1872
2286
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1873
2287
|
StyledIcon,
|
|
@@ -2011,6 +2425,61 @@ const IconShieldLock = React.forwardRef(
|
|
|
2011
2425
|
)
|
|
2012
2426
|
);
|
|
2013
2427
|
|
|
2428
|
+
const IconSidebarClosed = React.forwardRef(
|
|
2429
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2430
|
+
StyledIcon,
|
|
2431
|
+
{
|
|
2432
|
+
...props,
|
|
2433
|
+
size,
|
|
2434
|
+
viewBox: "0 0 24 24",
|
|
2435
|
+
fill: "none",
|
|
2436
|
+
ref: forwardRef2
|
|
2437
|
+
},
|
|
2438
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2439
|
+
clipPath: "url(#a)"
|
|
2440
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2441
|
+
stroke: "currentColor",
|
|
2442
|
+
strokeLinecap: "round",
|
|
2443
|
+
strokeLinejoin: "round",
|
|
2444
|
+
strokeMiterlimit: 1.414,
|
|
2445
|
+
strokeWidth: 2,
|
|
2446
|
+
d: "M11 4H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h7m0-16h9a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-9m0-16v16M6 8h2m-2 4h2m-2 4h2"
|
|
2447
|
+
})),
|
|
2448
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2449
|
+
id: "a"
|
|
2450
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2451
|
+
d: "M0 0h24v24H0z"
|
|
2452
|
+
})))
|
|
2453
|
+
)
|
|
2454
|
+
);
|
|
2455
|
+
|
|
2456
|
+
const IconSidebarOpen = React.forwardRef(
|
|
2457
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2458
|
+
StyledIcon,
|
|
2459
|
+
{
|
|
2460
|
+
...props,
|
|
2461
|
+
size,
|
|
2462
|
+
viewBox: "0 0 24 24",
|
|
2463
|
+
fill: "none",
|
|
2464
|
+
ref: forwardRef2
|
|
2465
|
+
},
|
|
2466
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2467
|
+
stroke: "currentColor",
|
|
2468
|
+
strokeLinecap: "round",
|
|
2469
|
+
strokeLinejoin: "round",
|
|
2470
|
+
strokeMiterlimit: 1.414,
|
|
2471
|
+
strokeWidth: 2,
|
|
2472
|
+
d: "M21 19V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1Z"
|
|
2473
|
+
}),
|
|
2474
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2475
|
+
fill: "currentColor",
|
|
2476
|
+
fillRule: "evenodd",
|
|
2477
|
+
d: "M11 5H3v14h8V5ZM6 7a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Z",
|
|
2478
|
+
clipRule: "evenodd"
|
|
2479
|
+
})
|
|
2480
|
+
)
|
|
2481
|
+
);
|
|
2482
|
+
|
|
2014
2483
|
const IconSlidersX = React.forwardRef(
|
|
2015
2484
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2016
2485
|
StyledIcon,
|
|
@@ -2433,6 +2902,33 @@ const IconStopCircle = React.forwardRef(
|
|
|
2433
2902
|
)
|
|
2434
2903
|
);
|
|
2435
2904
|
|
|
2905
|
+
const IconTag = React.forwardRef(
|
|
2906
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2907
|
+
StyledIcon,
|
|
2908
|
+
{
|
|
2909
|
+
...props,
|
|
2910
|
+
size,
|
|
2911
|
+
viewBox: "0 0 24 24",
|
|
2912
|
+
fill: "none",
|
|
2913
|
+
ref: forwardRef2
|
|
2914
|
+
},
|
|
2915
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2916
|
+
stroke: "currentColor",
|
|
2917
|
+
strokeLinecap: "square",
|
|
2918
|
+
strokeLinejoin: "round",
|
|
2919
|
+
strokeMiterlimit: 1.414,
|
|
2920
|
+
strokeWidth: 2,
|
|
2921
|
+
d: "M11.953 4H4v8l8.839 8.617 7.778-7.778L11.953 4Z"
|
|
2922
|
+
}),
|
|
2923
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
2924
|
+
cx: 8.5,
|
|
2925
|
+
cy: 8.5,
|
|
2926
|
+
r: 1.5,
|
|
2927
|
+
fill: "currentColor"
|
|
2928
|
+
})
|
|
2929
|
+
)
|
|
2930
|
+
);
|
|
2931
|
+
|
|
2436
2932
|
const IconTextT = React.forwardRef(
|
|
2437
2933
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2438
2934
|
StyledIcon,
|
|
@@ -2502,6 +2998,29 @@ const IconTicket = React.forwardRef(
|
|
|
2502
2998
|
)
|
|
2503
2999
|
);
|
|
2504
3000
|
|
|
3001
|
+
const IconTimer = React.forwardRef(
|
|
3002
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3003
|
+
StyledIcon,
|
|
3004
|
+
{
|
|
3005
|
+
...props,
|
|
3006
|
+
size,
|
|
3007
|
+
viewBox: "0 0 24 24",
|
|
3008
|
+
fill: "none",
|
|
3009
|
+
ref: forwardRef2
|
|
3010
|
+
},
|
|
3011
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3012
|
+
fill: "currentColor",
|
|
3013
|
+
d: "m11.293 11.293-.707.707L12 13.414l.707-.707-1.414-1.414Zm4.414-1.586a1 1 0 0 0-1.414-1.414l1.414 1.414ZM13 1a1 1 0 1 0-2 0h2Zm-.293 11.707 3-3-1.414-1.414-3 3 1.414 1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Zm1-1V1h-2v2h2Z"
|
|
3014
|
+
}),
|
|
3015
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
3016
|
+
cx: 12,
|
|
3017
|
+
cy: 12,
|
|
3018
|
+
r: 2,
|
|
3019
|
+
fill: "currentColor"
|
|
3020
|
+
})
|
|
3021
|
+
)
|
|
3022
|
+
);
|
|
3023
|
+
|
|
2505
3024
|
const IconTrackpad = React.forwardRef(
|
|
2506
3025
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2507
3026
|
StyledIcon,
|
|
@@ -2718,6 +3237,10 @@ const IconWallet = React.forwardRef(
|
|
|
2718
3237
|
)
|
|
2719
3238
|
);
|
|
2720
3239
|
|
|
3240
|
+
exports.IconAlignBottom = IconAlignBottom;
|
|
3241
|
+
exports.IconAlignLeft = IconAlignLeft;
|
|
3242
|
+
exports.IconAlignRight = IconAlignRight;
|
|
3243
|
+
exports.IconAlignTop = IconAlignTop;
|
|
2721
3244
|
exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
2722
3245
|
exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
|
|
2723
3246
|
exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
|
|
@@ -2736,8 +3259,12 @@ exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
|
|
|
2736
3259
|
exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
|
|
2737
3260
|
exports.IconArticle = IconArticle;
|
|
2738
3261
|
exports.IconBarThree = IconBarThree;
|
|
3262
|
+
exports.IconBell = IconBell;
|
|
3263
|
+
exports.IconBellSlash = IconBellSlash;
|
|
3264
|
+
exports.IconBellTilt = IconBellTilt;
|
|
2739
3265
|
exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
|
|
2740
3266
|
exports.IconBracketsCurlyCirclesThree = IconBracketsCurlyCirclesThree;
|
|
3267
|
+
exports.IconCalendarBlank = IconCalendarBlank;
|
|
2741
3268
|
exports.IconCamera = IconCamera;
|
|
2742
3269
|
exports.IconCard = IconCard;
|
|
2743
3270
|
exports.IconCardNumberThree = IconCardNumberThree;
|
|
@@ -2754,8 +3281,10 @@ exports.IconCircle = IconCircle;
|
|
|
2754
3281
|
exports.IconCircleMotionX = IconCircleMotionX;
|
|
2755
3282
|
exports.IconCircleNotch = IconCircleNotch;
|
|
2756
3283
|
exports.IconCirclesConnected = IconCirclesConnected;
|
|
3284
|
+
exports.IconClock = IconClock;
|
|
2757
3285
|
exports.IconClockCounterClockwise = IconClockCounterClockwise;
|
|
2758
3286
|
exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
|
|
3287
|
+
exports.IconClockOvertime = IconClockOvertime;
|
|
2759
3288
|
exports.IconCluster = IconCluster;
|
|
2760
3289
|
exports.IconClustered = IconClustered;
|
|
2761
3290
|
exports.IconCog = IconCog;
|
|
@@ -2772,6 +3301,7 @@ exports.IconFactoryHouse = IconFactoryHouse;
|
|
|
2772
3301
|
exports.IconFunnel = IconFunnel;
|
|
2773
3302
|
exports.IconGauge = IconGauge;
|
|
2774
3303
|
exports.IconGlobe = IconGlobe;
|
|
3304
|
+
exports.IconGraduationCap = IconGraduationCap;
|
|
2775
3305
|
exports.IconHand = IconHand;
|
|
2776
3306
|
exports.IconHandFilled = IconHandFilled;
|
|
2777
3307
|
exports.IconHouse = IconHouse;
|
|
@@ -2781,11 +3311,15 @@ exports.IconKanban = IconKanban;
|
|
|
2781
3311
|
exports.IconKey = IconKey;
|
|
2782
3312
|
exports.IconKeycap = IconKeycap;
|
|
2783
3313
|
exports.IconLaptop = IconLaptop;
|
|
3314
|
+
exports.IconLifesaver = IconLifesaver;
|
|
3315
|
+
exports.IconLightning = IconLightning;
|
|
2784
3316
|
exports.IconLineDiagonal = IconLineDiagonal;
|
|
2785
3317
|
exports.IconLink = IconLink;
|
|
2786
3318
|
exports.IconLockClosed = IconLockClosed;
|
|
2787
3319
|
exports.IconLockOpen = IconLockOpen;
|
|
3320
|
+
exports.IconMagnet = IconMagnet;
|
|
2788
3321
|
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
3322
|
+
exports.IconMap = IconMap;
|
|
2789
3323
|
exports.IconMicrophone = IconMicrophone;
|
|
2790
3324
|
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
2791
3325
|
exports.IconMinus = IconMinus;
|
|
@@ -2798,12 +3332,15 @@ exports.IconPlayCircle = IconPlayCircle;
|
|
|
2798
3332
|
exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
2799
3333
|
exports.IconPlug = IconPlug;
|
|
2800
3334
|
exports.IconPlus = IconPlus;
|
|
3335
|
+
exports.IconPushPin = IconPushPin;
|
|
2801
3336
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
2802
3337
|
exports.IconRhombus = IconRhombus;
|
|
2803
3338
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
2804
3339
|
exports.IconShapes = IconShapes;
|
|
2805
3340
|
exports.IconShieldCheck = IconShieldCheck;
|
|
2806
3341
|
exports.IconShieldLock = IconShieldLock;
|
|
3342
|
+
exports.IconSidebarClosed = IconSidebarClosed;
|
|
3343
|
+
exports.IconSidebarOpen = IconSidebarOpen;
|
|
2807
3344
|
exports.IconSlidersX = IconSlidersX;
|
|
2808
3345
|
exports.IconSlidersY = IconSlidersY;
|
|
2809
3346
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
@@ -2822,9 +3359,11 @@ exports.IconSquaresFour = IconSquaresFour;
|
|
|
2822
3359
|
exports.IconSquaresThree = IconSquaresThree;
|
|
2823
3360
|
exports.IconStickyNote = IconStickyNote;
|
|
2824
3361
|
exports.IconStopCircle = IconStopCircle;
|
|
3362
|
+
exports.IconTag = IconTag;
|
|
2825
3363
|
exports.IconTextT = IconTextT;
|
|
2826
3364
|
exports.IconThumbsUp = IconThumbsUp;
|
|
2827
3365
|
exports.IconTicket = IconTicket;
|
|
3366
|
+
exports.IconTimer = IconTimer;
|
|
2828
3367
|
exports.IconTrackpad = IconTrackpad;
|
|
2829
3368
|
exports.IconTrash = IconTrash;
|
|
2830
3369
|
exports.IconTrashSimple = IconTrashSimple;
|