@7shifts/sous-chef 3.29.2 → 3.30.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/actions/Button/Button.d.ts +21 -19
- package/dist/actions/Link/Link.d.ts +3 -2
- package/dist/actions/PaginationControls/PaginationControls.d.ts +2 -1
- package/dist/actions/Toggle/Toggle.d.ts +2 -1
- package/dist/forms/MultiSelectField/MultiSelectField.d.ts +3 -1
- package/dist/index.js +421 -349
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +421 -349
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/props.d.ts +27 -0
- package/dist/utils/storybookArgTypes.d.ts +12 -0
- package/dist/utils/string.d.ts +1 -0
- package/package.json +1 -1
- package/dist/foundation/types.d.ts +0 -22
package/dist/index.js
CHANGED
|
@@ -187,6 +187,61 @@ var Stack = function Stack(_ref) {
|
|
|
187
187
|
|
|
188
188
|
var styles$1 = {"caption":"_3s_-x","label":"_29W-o","label--truncate":"_10hPY","toggle":"_3VC9U","toggle__label":"_LbMlH","toggle__caption":"_15FwS","toggle__switch":"_lHlzh"};
|
|
189
189
|
|
|
190
|
+
var capitalizeFirstLetter = function capitalizeFirstLetter(text) {
|
|
191
|
+
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
192
|
+
};
|
|
193
|
+
var kebabize = function kebabize(str) {
|
|
194
|
+
return str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, function ($, ofs) {
|
|
195
|
+
return (ofs ? '-' : '') + $.toLowerCase();
|
|
196
|
+
});
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
var _excluded$2 = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
|
|
200
|
+
var getPositionProps = function getPositionProps(_ref) {
|
|
201
|
+
var m = _ref.m,
|
|
202
|
+
margin = _ref.margin,
|
|
203
|
+
mt = _ref.mt,
|
|
204
|
+
marginTop = _ref.marginTop,
|
|
205
|
+
mr = _ref.mr,
|
|
206
|
+
marginRight = _ref.marginRight,
|
|
207
|
+
mb = _ref.mb,
|
|
208
|
+
marginBottom = _ref.marginBottom,
|
|
209
|
+
ml = _ref.ml,
|
|
210
|
+
marginLeft = _ref.marginLeft,
|
|
211
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
212
|
+
return {
|
|
213
|
+
positionProps: {
|
|
214
|
+
m: m,
|
|
215
|
+
margin: margin,
|
|
216
|
+
mt: mt,
|
|
217
|
+
marginTop: marginTop,
|
|
218
|
+
mr: mr,
|
|
219
|
+
marginRight: marginRight,
|
|
220
|
+
mb: mb,
|
|
221
|
+
marginBottom: marginBottom,
|
|
222
|
+
ml: ml,
|
|
223
|
+
marginLeft: marginLeft
|
|
224
|
+
},
|
|
225
|
+
otherProps: otherProps
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
var getDataProps = function getDataProps(props) {
|
|
229
|
+
return Object.keys(props).reduce(function (acc, key) {
|
|
230
|
+
if (key.startsWith('data')) {
|
|
231
|
+
var _Object$assign;
|
|
232
|
+
acc.dataProps = Object.assign((_Object$assign = {}, _Object$assign[kebabize(key)] = props[key], _Object$assign), acc.dataProps);
|
|
233
|
+
} else {
|
|
234
|
+
var _Object$assign2;
|
|
235
|
+
acc.otherProps = Object.assign((_Object$assign2 = {}, _Object$assign2[key] = props[key], _Object$assign2), acc.otherProps);
|
|
236
|
+
}
|
|
237
|
+
return acc;
|
|
238
|
+
}, {
|
|
239
|
+
dataProps: {},
|
|
240
|
+
otherProps: {}
|
|
241
|
+
});
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
var _excluded$3 = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
|
|
190
245
|
var Toggle = function Toggle(_ref) {
|
|
191
246
|
var checked = _ref.checked,
|
|
192
247
|
label = _ref.label,
|
|
@@ -195,12 +250,15 @@ var Toggle = function Toggle(_ref) {
|
|
|
195
250
|
_ref$disabled = _ref.disabled,
|
|
196
251
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
197
252
|
id = _ref.id,
|
|
198
|
-
testId = _ref.testId
|
|
253
|
+
testId = _ref.testId,
|
|
254
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
255
|
+
var _getDataProps = getDataProps(otherProps),
|
|
256
|
+
dataProps = _getDataProps.dataProps;
|
|
199
257
|
return React__default.createElement(Stack, {
|
|
200
258
|
space: 8
|
|
201
|
-
}, React__default.createElement("label", {
|
|
259
|
+
}, React__default.createElement("label", Object.assign({}, dataProps, {
|
|
202
260
|
className: styles$1['toggle']
|
|
203
|
-
}, React__default.createElement("input", {
|
|
261
|
+
}), React__default.createElement("input", {
|
|
204
262
|
type: "checkbox",
|
|
205
263
|
checked: checked,
|
|
206
264
|
onChange: onChange,
|
|
@@ -679,8 +737,8 @@ var BUTTON_TARGETS = {
|
|
|
679
737
|
SELF: '_self'
|
|
680
738
|
};
|
|
681
739
|
|
|
682
|
-
var _excluded$
|
|
683
|
-
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position"];
|
|
740
|
+
var _excluded$4 = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
|
|
741
|
+
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
|
|
684
742
|
var Button = function Button(_ref, ref) {
|
|
685
743
|
var _classnames;
|
|
686
744
|
var children = _ref.children,
|
|
@@ -704,7 +762,12 @@ var Button = function Button(_ref, ref) {
|
|
|
704
762
|
target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
|
|
705
763
|
testId = _ref.testId,
|
|
706
764
|
size = _ref.size,
|
|
707
|
-
|
|
765
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
766
|
+
var _getPositionProps = getPositionProps(rest),
|
|
767
|
+
positionProps = _getPositionProps.positionProps,
|
|
768
|
+
otherProps = _getPositionProps.otherProps;
|
|
769
|
+
var _getDataProps = getDataProps(otherProps),
|
|
770
|
+
dataProps = _getDataProps.dataProps;
|
|
708
771
|
var contrastSpinner = [BUTTON_THEMES.PRIMARY, BUTTON_THEMES.DANGER, BUTTON_THEMES.UPSELL, BUTTON_THEMES.MARKETING, BUTTON_THEMES.LINK_CONTRAST];
|
|
709
772
|
var childrenArr = React.Children.toArray(children);
|
|
710
773
|
var isIconOnly = childrenArr.length === 1 && typeof childrenArr[0] != 'string';
|
|
@@ -725,7 +788,8 @@ var Button = function Button(_ref, ref) {
|
|
|
725
788
|
ref: ref,
|
|
726
789
|
target: target,
|
|
727
790
|
"data-testid": testId,
|
|
728
|
-
position: positionProps
|
|
791
|
+
position: positionProps,
|
|
792
|
+
dataProps: dataProps
|
|
729
793
|
}, React__default.createElement(Inline, {
|
|
730
794
|
space: 8,
|
|
731
795
|
alignItems: "center"
|
|
@@ -750,9 +814,10 @@ var ButtonElement = React.forwardRef(function (_ref2, ref) {
|
|
|
750
814
|
target = _ref2.target,
|
|
751
815
|
children = _ref2.children,
|
|
752
816
|
position = _ref2.position,
|
|
817
|
+
dataProps = _ref2.dataProps,
|
|
753
818
|
rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
754
819
|
var positionStyles = usePositionStyles(position);
|
|
755
|
-
var commonProps = {
|
|
820
|
+
var commonProps = _extends({
|
|
756
821
|
id: id,
|
|
757
822
|
onClick: onClick,
|
|
758
823
|
onMouseEnter: onMouseEnter,
|
|
@@ -763,7 +828,7 @@ var ButtonElement = React.forwardRef(function (_ref2, ref) {
|
|
|
763
828
|
className: className,
|
|
764
829
|
disabled: disabled,
|
|
765
830
|
style: positionStyles
|
|
766
|
-
};
|
|
831
|
+
}, dataProps);
|
|
767
832
|
if (href) {
|
|
768
833
|
return React__default.createElement("a", Object.assign({}, commonProps, rest, {
|
|
769
834
|
href: href,
|
|
@@ -802,11 +867,11 @@ var getIconStyles = function getIconStyles(_ref) {
|
|
|
802
867
|
}, styles);
|
|
803
868
|
};
|
|
804
869
|
|
|
805
|
-
var _excluded$
|
|
870
|
+
var _excluded$5 = ["testId"];
|
|
806
871
|
var IconInfoCircle = React.forwardRef(function (_ref, ref) {
|
|
807
872
|
var _ref$testId = _ref.testId,
|
|
808
873
|
testId = _ref$testId === void 0 ? 'icon-info-circle' : _ref$testId,
|
|
809
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
874
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
810
875
|
return React__default.createElement("svg", Object.assign({
|
|
811
876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
812
877
|
fill: "none",
|
|
@@ -823,11 +888,11 @@ var IconInfoCircle = React.forwardRef(function (_ref, ref) {
|
|
|
823
888
|
});
|
|
824
889
|
IconInfoCircle.displayName = 'IconInfoCircle';
|
|
825
890
|
|
|
826
|
-
var _excluded$
|
|
891
|
+
var _excluded$6 = ["testId"];
|
|
827
892
|
var IconAnalytics = React.forwardRef(function (_ref, ref) {
|
|
828
893
|
var _ref$testId = _ref.testId,
|
|
829
894
|
testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
|
|
830
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
895
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
831
896
|
return React__default.createElement("svg", Object.assign({
|
|
832
897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
833
898
|
fill: "none",
|
|
@@ -844,11 +909,11 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
|
|
|
844
909
|
});
|
|
845
910
|
IconAnalytics.displayName = 'IconAnalytics';
|
|
846
911
|
|
|
847
|
-
var _excluded$
|
|
912
|
+
var _excluded$7 = ["testId"];
|
|
848
913
|
var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
|
|
849
914
|
var _ref$testId = _ref.testId,
|
|
850
915
|
testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
|
|
851
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
916
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
852
917
|
return React__default.createElement("svg", Object.assign({
|
|
853
918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
854
919
|
fill: "none",
|
|
@@ -863,11 +928,11 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
|
|
|
863
928
|
});
|
|
864
929
|
IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
|
|
865
930
|
|
|
866
|
-
var _excluded$
|
|
931
|
+
var _excluded$8 = ["testId"];
|
|
867
932
|
var IconArrowDown = React.forwardRef(function (_ref, ref) {
|
|
868
933
|
var _ref$testId = _ref.testId,
|
|
869
934
|
testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
|
|
870
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
935
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
871
936
|
return React__default.createElement("svg", Object.assign({
|
|
872
937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
873
938
|
fill: "none",
|
|
@@ -884,11 +949,11 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
|
|
|
884
949
|
});
|
|
885
950
|
IconArrowDown.displayName = 'IconArrowDown';
|
|
886
951
|
|
|
887
|
-
var _excluded$
|
|
952
|
+
var _excluded$9 = ["testId"];
|
|
888
953
|
var IconArrowLeft = React.forwardRef(function (_ref, ref) {
|
|
889
954
|
var _ref$testId = _ref.testId,
|
|
890
955
|
testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
|
|
891
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
956
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
|
892
957
|
return React__default.createElement("svg", Object.assign({
|
|
893
958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
894
959
|
fill: "none",
|
|
@@ -905,11 +970,11 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
|
|
|
905
970
|
});
|
|
906
971
|
IconArrowLeft.displayName = 'IconArrowLeft';
|
|
907
972
|
|
|
908
|
-
var _excluded$
|
|
973
|
+
var _excluded$a = ["testId"];
|
|
909
974
|
var IconArrowRight = React.forwardRef(function (_ref, ref) {
|
|
910
975
|
var _ref$testId = _ref.testId,
|
|
911
976
|
testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
|
|
912
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
977
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
|
|
913
978
|
return React__default.createElement("svg", Object.assign({
|
|
914
979
|
xmlns: "http://www.w3.org/2000/svg",
|
|
915
980
|
fill: "none",
|
|
@@ -926,11 +991,11 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
|
|
|
926
991
|
});
|
|
927
992
|
IconArrowRight.displayName = 'IconArrowRight';
|
|
928
993
|
|
|
929
|
-
var _excluded$
|
|
994
|
+
var _excluded$b = ["testId"];
|
|
930
995
|
var IconArrowToTop = React.forwardRef(function (_ref, ref) {
|
|
931
996
|
var _ref$testId = _ref.testId,
|
|
932
997
|
testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
|
|
933
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
998
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
|
934
999
|
return React__default.createElement("svg", Object.assign({
|
|
935
1000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
936
1001
|
fill: "none",
|
|
@@ -945,11 +1010,11 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
|
|
|
945
1010
|
});
|
|
946
1011
|
IconArrowToTop.displayName = 'IconArrowToTop';
|
|
947
1012
|
|
|
948
|
-
var _excluded$
|
|
1013
|
+
var _excluded$c = ["testId"];
|
|
949
1014
|
var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
|
|
950
1015
|
var _ref$testId = _ref.testId,
|
|
951
1016
|
testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
|
|
952
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1017
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
|
|
953
1018
|
return React__default.createElement("svg", Object.assign({
|
|
954
1019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
955
1020
|
fill: "none",
|
|
@@ -972,11 +1037,11 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
|
|
|
972
1037
|
});
|
|
973
1038
|
IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
|
|
974
1039
|
|
|
975
|
-
var _excluded$
|
|
1040
|
+
var _excluded$d = ["testId"];
|
|
976
1041
|
var IconArrowUp = React.forwardRef(function (_ref, ref) {
|
|
977
1042
|
var _ref$testId = _ref.testId,
|
|
978
1043
|
testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
|
|
979
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1044
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
|
|
980
1045
|
return React__default.createElement("svg", Object.assign({
|
|
981
1046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
982
1047
|
fill: "none",
|
|
@@ -993,11 +1058,11 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
|
|
|
993
1058
|
});
|
|
994
1059
|
IconArrowUp.displayName = 'IconArrowUp';
|
|
995
1060
|
|
|
996
|
-
var _excluded$
|
|
1061
|
+
var _excluded$e = ["testId"];
|
|
997
1062
|
var IconAward = React.forwardRef(function (_ref, ref) {
|
|
998
1063
|
var _ref$testId = _ref.testId,
|
|
999
1064
|
testId = _ref$testId === void 0 ? 'icon-award' : _ref$testId,
|
|
1000
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1065
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
|
1001
1066
|
return React__default.createElement("svg", Object.assign({
|
|
1002
1067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1003
1068
|
fill: "none",
|
|
@@ -1014,11 +1079,11 @@ var IconAward = React.forwardRef(function (_ref, ref) {
|
|
|
1014
1079
|
});
|
|
1015
1080
|
IconAward.displayName = 'IconAward';
|
|
1016
1081
|
|
|
1017
|
-
var _excluded$
|
|
1082
|
+
var _excluded$f = ["testId"];
|
|
1018
1083
|
var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
1019
1084
|
var _ref$testId = _ref.testId,
|
|
1020
1085
|
testId = _ref$testId === void 0 ? 'icon-awful-monochromatic' : _ref$testId,
|
|
1021
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1086
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
|
1022
1087
|
return React__default.createElement("svg", Object.assign({
|
|
1023
1088
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1024
1089
|
fill: "none",
|
|
@@ -1065,11 +1130,11 @@ var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
1065
1130
|
});
|
|
1066
1131
|
IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
|
|
1067
1132
|
|
|
1068
|
-
var _excluded$
|
|
1133
|
+
var _excluded$g = ["testId"];
|
|
1069
1134
|
var IconAwful = React.forwardRef(function (_ref, ref) {
|
|
1070
1135
|
var _ref$testId = _ref.testId,
|
|
1071
1136
|
testId = _ref$testId === void 0 ? 'icon-awful' : _ref$testId,
|
|
1072
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1137
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
1073
1138
|
return React__default.createElement("svg", Object.assign({
|
|
1074
1139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1075
1140
|
fill: "none",
|
|
@@ -1104,11 +1169,11 @@ var IconAwful = React.forwardRef(function (_ref, ref) {
|
|
|
1104
1169
|
});
|
|
1105
1170
|
IconAwful.displayName = 'IconAwful';
|
|
1106
1171
|
|
|
1107
|
-
var _excluded$
|
|
1172
|
+
var _excluded$h = ["testId"];
|
|
1108
1173
|
var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
1109
1174
|
var _ref$testId = _ref.testId,
|
|
1110
1175
|
testId = _ref$testId === void 0 ? 'icon-bad-monochromatic' : _ref$testId,
|
|
1111
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1176
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
1112
1177
|
return React__default.createElement("svg", Object.assign({
|
|
1113
1178
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1114
1179
|
fill: "none",
|
|
@@ -1141,11 +1206,11 @@ var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
1141
1206
|
});
|
|
1142
1207
|
IconBadMonochromatic.displayName = 'IconBadMonochromatic';
|
|
1143
1208
|
|
|
1144
|
-
var _excluded$
|
|
1209
|
+
var _excluded$i = ["testId"];
|
|
1145
1210
|
var IconBad = React.forwardRef(function (_ref, ref) {
|
|
1146
1211
|
var _ref$testId = _ref.testId,
|
|
1147
1212
|
testId = _ref$testId === void 0 ? 'icon-bad' : _ref$testId,
|
|
1148
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1213
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
1149
1214
|
return React__default.createElement("svg", Object.assign({
|
|
1150
1215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1151
1216
|
fill: "none",
|
|
@@ -1166,11 +1231,11 @@ var IconBad = React.forwardRef(function (_ref, ref) {
|
|
|
1166
1231
|
});
|
|
1167
1232
|
IconBad.displayName = 'IconBad';
|
|
1168
1233
|
|
|
1169
|
-
var _excluded$
|
|
1234
|
+
var _excluded$j = ["testId"];
|
|
1170
1235
|
var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
|
|
1171
1236
|
var _ref$testId = _ref.testId,
|
|
1172
1237
|
testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
|
|
1173
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1238
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
1174
1239
|
return React__default.createElement("svg", Object.assign({
|
|
1175
1240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1176
1241
|
fill: "none",
|
|
@@ -1192,11 +1257,11 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
|
|
|
1192
1257
|
});
|
|
1193
1258
|
IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
|
|
1194
1259
|
|
|
1195
|
-
var _excluded$
|
|
1260
|
+
var _excluded$k = ["testId"];
|
|
1196
1261
|
var IconBalanceScale = React.forwardRef(function (_ref, ref) {
|
|
1197
1262
|
var _ref$testId = _ref.testId,
|
|
1198
1263
|
testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
|
|
1199
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1264
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
1200
1265
|
return React__default.createElement("svg", Object.assign({
|
|
1201
1266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1202
1267
|
fill: "none",
|
|
@@ -1218,11 +1283,11 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
|
|
|
1218
1283
|
});
|
|
1219
1284
|
IconBalanceScale.displayName = 'IconBalanceScale';
|
|
1220
1285
|
|
|
1221
|
-
var _excluded$
|
|
1286
|
+
var _excluded$l = ["testId"];
|
|
1222
1287
|
var IconBan = React.forwardRef(function (_ref, ref) {
|
|
1223
1288
|
var _ref$testId = _ref.testId,
|
|
1224
1289
|
testId = _ref$testId === void 0 ? 'icon-ban' : _ref$testId,
|
|
1225
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1290
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
1226
1291
|
return React__default.createElement("svg", Object.assign({
|
|
1227
1292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1228
1293
|
fill: "none",
|
|
@@ -1237,11 +1302,11 @@ var IconBan = React.forwardRef(function (_ref, ref) {
|
|
|
1237
1302
|
});
|
|
1238
1303
|
IconBan.displayName = 'IconBan';
|
|
1239
1304
|
|
|
1240
|
-
var _excluded$
|
|
1305
|
+
var _excluded$m = ["testId"];
|
|
1241
1306
|
var IconBarsH = React.forwardRef(function (_ref, ref) {
|
|
1242
1307
|
var _ref$testId = _ref.testId,
|
|
1243
1308
|
testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
|
|
1244
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1309
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
1245
1310
|
return React__default.createElement("svg", Object.assign({
|
|
1246
1311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1247
1312
|
fill: "none",
|
|
@@ -1258,11 +1323,11 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
|
|
|
1258
1323
|
});
|
|
1259
1324
|
IconBarsH.displayName = 'IconBarsH';
|
|
1260
1325
|
|
|
1261
|
-
var _excluded$
|
|
1326
|
+
var _excluded$n = ["testId"];
|
|
1262
1327
|
var IconBarsV = React.forwardRef(function (_ref, ref) {
|
|
1263
1328
|
var _ref$testId = _ref.testId,
|
|
1264
1329
|
testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
|
|
1265
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1330
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
|
|
1266
1331
|
return React__default.createElement("svg", Object.assign({
|
|
1267
1332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1268
1333
|
fill: "none",
|
|
@@ -1277,11 +1342,11 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
|
|
|
1277
1342
|
});
|
|
1278
1343
|
IconBarsV.displayName = 'IconBarsV';
|
|
1279
1344
|
|
|
1280
|
-
var _excluded$
|
|
1345
|
+
var _excluded$o = ["testId"];
|
|
1281
1346
|
var IconBell = React.forwardRef(function (_ref, ref) {
|
|
1282
1347
|
var _ref$testId = _ref.testId,
|
|
1283
1348
|
testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
|
|
1284
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1349
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
|
|
1285
1350
|
return React__default.createElement("svg", Object.assign({
|
|
1286
1351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1287
1352
|
fill: "none",
|
|
@@ -1298,11 +1363,11 @@ var IconBell = React.forwardRef(function (_ref, ref) {
|
|
|
1298
1363
|
});
|
|
1299
1364
|
IconBell.displayName = 'IconBell';
|
|
1300
1365
|
|
|
1301
|
-
var _excluded$
|
|
1366
|
+
var _excluded$p = ["testId"];
|
|
1302
1367
|
var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
|
|
1303
1368
|
var _ref$testId = _ref.testId,
|
|
1304
1369
|
testId = _ref$testId === void 0 ? 'icon-birthday-cake' : _ref$testId,
|
|
1305
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1370
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
|
|
1306
1371
|
return React__default.createElement("svg", Object.assign({
|
|
1307
1372
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1308
1373
|
fill: "none",
|
|
@@ -1317,11 +1382,11 @@ var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
|
|
|
1317
1382
|
});
|
|
1318
1383
|
IconBirthdayCake.displayName = 'IconBirthdayCake';
|
|
1319
1384
|
|
|
1320
|
-
var _excluded$
|
|
1385
|
+
var _excluded$q = ["testId"];
|
|
1321
1386
|
var IconBold = React.forwardRef(function (_ref, ref) {
|
|
1322
1387
|
var _ref$testId = _ref.testId,
|
|
1323
1388
|
testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
|
|
1324
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1389
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
|
|
1325
1390
|
return React__default.createElement("svg", Object.assign({
|
|
1326
1391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1327
1392
|
fill: "none",
|
|
@@ -1336,11 +1401,11 @@ var IconBold = React.forwardRef(function (_ref, ref) {
|
|
|
1336
1401
|
});
|
|
1337
1402
|
IconBold.displayName = 'IconBold';
|
|
1338
1403
|
|
|
1339
|
-
var _excluded$
|
|
1404
|
+
var _excluded$r = ["testId"];
|
|
1340
1405
|
var IconBolt = React.forwardRef(function (_ref, ref) {
|
|
1341
1406
|
var _ref$testId = _ref.testId,
|
|
1342
1407
|
testId = _ref$testId === void 0 ? 'icon-bolt' : _ref$testId,
|
|
1343
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1408
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
1344
1409
|
return React__default.createElement("svg", Object.assign({
|
|
1345
1410
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1346
1411
|
fill: "none",
|
|
@@ -1362,11 +1427,11 @@ var IconBolt = React.forwardRef(function (_ref, ref) {
|
|
|
1362
1427
|
});
|
|
1363
1428
|
IconBolt.displayName = 'IconBolt';
|
|
1364
1429
|
|
|
1365
|
-
var _excluded$
|
|
1430
|
+
var _excluded$s = ["testId"];
|
|
1366
1431
|
var IconBook = React.forwardRef(function (_ref, ref) {
|
|
1367
1432
|
var _ref$testId = _ref.testId,
|
|
1368
1433
|
testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
|
|
1369
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1434
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
|
|
1370
1435
|
return React__default.createElement("svg", Object.assign({
|
|
1371
1436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1372
1437
|
fill: "none",
|
|
@@ -1383,11 +1448,11 @@ var IconBook = React.forwardRef(function (_ref, ref) {
|
|
|
1383
1448
|
});
|
|
1384
1449
|
IconBook.displayName = 'IconBook';
|
|
1385
1450
|
|
|
1386
|
-
var _excluded$
|
|
1451
|
+
var _excluded$t = ["testId"];
|
|
1387
1452
|
var IconBriefcase = React.forwardRef(function (_ref, ref) {
|
|
1388
1453
|
var _ref$testId = _ref.testId,
|
|
1389
1454
|
testId = _ref$testId === void 0 ? 'icon-briefcase' : _ref$testId,
|
|
1390
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1455
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
1391
1456
|
return React__default.createElement("svg", Object.assign({
|
|
1392
1457
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1393
1458
|
fill: "none",
|
|
@@ -1402,11 +1467,11 @@ var IconBriefcase = React.forwardRef(function (_ref, ref) {
|
|
|
1402
1467
|
});
|
|
1403
1468
|
IconBriefcase.displayName = 'IconBriefcase';
|
|
1404
1469
|
|
|
1405
|
-
var _excluded$
|
|
1470
|
+
var _excluded$u = ["testId"];
|
|
1406
1471
|
var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
|
|
1407
1472
|
var _ref$testId = _ref.testId,
|
|
1408
1473
|
testId = _ref$testId === void 0 ? 'icon-bullseye-arrow' : _ref$testId,
|
|
1409
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1474
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
|
|
1410
1475
|
return React__default.createElement("svg", Object.assign({
|
|
1411
1476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1412
1477
|
fill: "none",
|
|
@@ -1423,11 +1488,11 @@ var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
|
|
|
1423
1488
|
});
|
|
1424
1489
|
IconBullseyeArrow.displayName = 'IconBullseyeArrow';
|
|
1425
1490
|
|
|
1426
|
-
var _excluded$
|
|
1491
|
+
var _excluded$v = ["testId"];
|
|
1427
1492
|
var IconCalculator = React.forwardRef(function (_ref, ref) {
|
|
1428
1493
|
var _ref$testId = _ref.testId,
|
|
1429
1494
|
testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
|
|
1430
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1495
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
|
|
1431
1496
|
return React__default.createElement("svg", Object.assign({
|
|
1432
1497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1433
1498
|
fill: "none",
|
|
@@ -1444,11 +1509,11 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
|
|
|
1444
1509
|
});
|
|
1445
1510
|
IconCalculator.displayName = 'IconCalculator';
|
|
1446
1511
|
|
|
1447
|
-
var _excluded$
|
|
1512
|
+
var _excluded$w = ["testId"];
|
|
1448
1513
|
var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
|
|
1449
1514
|
var _ref$testId = _ref.testId,
|
|
1450
1515
|
testId = _ref$testId === void 0 ? 'icon-calendar-alt' : _ref$testId,
|
|
1451
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1516
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
1452
1517
|
return React__default.createElement("svg", Object.assign({
|
|
1453
1518
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1454
1519
|
fill: "none",
|
|
@@ -1465,11 +1530,11 @@ var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
|
|
|
1465
1530
|
});
|
|
1466
1531
|
IconCalendarAlt.displayName = 'IconCalendarAlt';
|
|
1467
1532
|
|
|
1468
|
-
var _excluded$
|
|
1533
|
+
var _excluded$x = ["testId"];
|
|
1469
1534
|
var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
|
|
1470
1535
|
var _ref$testId = _ref.testId,
|
|
1471
1536
|
testId = _ref$testId === void 0 ? 'icon-calendar-check' : _ref$testId,
|
|
1472
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1537
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
1473
1538
|
return React__default.createElement("svg", Object.assign({
|
|
1474
1539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1475
1540
|
fill: "none",
|
|
@@ -1486,11 +1551,11 @@ var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
|
|
|
1486
1551
|
});
|
|
1487
1552
|
IconCalendarCheck.displayName = 'IconCalendarCheck';
|
|
1488
1553
|
|
|
1489
|
-
var _excluded$
|
|
1554
|
+
var _excluded$y = ["testId"];
|
|
1490
1555
|
var IconCalendarDay = React.forwardRef(function (_ref, ref) {
|
|
1491
1556
|
var _ref$testId = _ref.testId,
|
|
1492
1557
|
testId = _ref$testId === void 0 ? 'icon-calendar-day' : _ref$testId,
|
|
1493
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1558
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
|
|
1494
1559
|
return React__default.createElement("svg", Object.assign({
|
|
1495
1560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1496
1561
|
fill: "none",
|
|
@@ -1512,11 +1577,11 @@ var IconCalendarDay = React.forwardRef(function (_ref, ref) {
|
|
|
1512
1577
|
});
|
|
1513
1578
|
IconCalendarDay.displayName = 'IconCalendarDay';
|
|
1514
1579
|
|
|
1515
|
-
var _excluded$
|
|
1580
|
+
var _excluded$z = ["testId"];
|
|
1516
1581
|
var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
|
|
1517
1582
|
var _ref$testId = _ref.testId,
|
|
1518
1583
|
testId = _ref$testId === void 0 ? 'icon-calendar-exclamation' : _ref$testId,
|
|
1519
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1584
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
1520
1585
|
return React__default.createElement("svg", Object.assign({
|
|
1521
1586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1522
1587
|
fill: "none",
|
|
@@ -1531,11 +1596,11 @@ var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
|
|
|
1531
1596
|
});
|
|
1532
1597
|
IconCalendarExclamation.displayName = 'IconCalendarExclamation';
|
|
1533
1598
|
|
|
1534
|
-
var _excluded$
|
|
1599
|
+
var _excluded$A = ["testId"];
|
|
1535
1600
|
var IconCalendarStar = React.forwardRef(function (_ref, ref) {
|
|
1536
1601
|
var _ref$testId = _ref.testId,
|
|
1537
1602
|
testId = _ref$testId === void 0 ? 'icon-calendar-star' : _ref$testId,
|
|
1538
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1603
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
1539
1604
|
return React__default.createElement("svg", Object.assign({
|
|
1540
1605
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1541
1606
|
fill: "none",
|
|
@@ -1550,11 +1615,11 @@ var IconCalendarStar = React.forwardRef(function (_ref, ref) {
|
|
|
1550
1615
|
});
|
|
1551
1616
|
IconCalendarStar.displayName = 'IconCalendarStar';
|
|
1552
1617
|
|
|
1553
|
-
var _excluded$
|
|
1618
|
+
var _excluded$B = ["testId"];
|
|
1554
1619
|
var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
|
|
1555
1620
|
var _ref$testId = _ref.testId,
|
|
1556
1621
|
testId = _ref$testId === void 0 ? 'icon-calendar-tomorrow' : _ref$testId,
|
|
1557
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1622
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
|
|
1558
1623
|
return React__default.createElement("svg", Object.assign({
|
|
1559
1624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1560
1625
|
fill: "none",
|
|
@@ -1578,11 +1643,11 @@ var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
|
|
|
1578
1643
|
});
|
|
1579
1644
|
IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
|
|
1580
1645
|
|
|
1581
|
-
var _excluded$
|
|
1646
|
+
var _excluded$C = ["testId"];
|
|
1582
1647
|
var IconCalendar = React.forwardRef(function (_ref, ref) {
|
|
1583
1648
|
var _ref$testId = _ref.testId,
|
|
1584
1649
|
testId = _ref$testId === void 0 ? 'icon-calendar' : _ref$testId,
|
|
1585
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1650
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
|
|
1586
1651
|
return React__default.createElement("svg", Object.assign({
|
|
1587
1652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1588
1653
|
fill: "none",
|
|
@@ -1599,11 +1664,11 @@ var IconCalendar = React.forwardRef(function (_ref, ref) {
|
|
|
1599
1664
|
});
|
|
1600
1665
|
IconCalendar.displayName = 'IconCalendar';
|
|
1601
1666
|
|
|
1602
|
-
var _excluded$
|
|
1667
|
+
var _excluded$D = ["testId"];
|
|
1603
1668
|
var IconCameraSlash = React.forwardRef(function (_ref, ref) {
|
|
1604
1669
|
var _ref$testId = _ref.testId,
|
|
1605
1670
|
testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
|
|
1606
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1671
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
|
|
1607
1672
|
return React__default.createElement("svg", Object.assign({
|
|
1608
1673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1609
1674
|
fill: "none",
|
|
@@ -1621,11 +1686,11 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
|
|
|
1621
1686
|
});
|
|
1622
1687
|
IconCameraSlash.displayName = 'IconCameraSlash';
|
|
1623
1688
|
|
|
1624
|
-
var _excluded$
|
|
1689
|
+
var _excluded$E = ["testId"];
|
|
1625
1690
|
var IconCamera = React.forwardRef(function (_ref, ref) {
|
|
1626
1691
|
var _ref$testId = _ref.testId,
|
|
1627
1692
|
testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
|
|
1628
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1693
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
|
|
1629
1694
|
return React__default.createElement("svg", Object.assign({
|
|
1630
1695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1631
1696
|
fill: "none",
|
|
@@ -1640,11 +1705,11 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
|
|
|
1640
1705
|
});
|
|
1641
1706
|
IconCamera.displayName = 'IconCamera';
|
|
1642
1707
|
|
|
1643
|
-
var _excluded$
|
|
1708
|
+
var _excluded$F = ["testId"];
|
|
1644
1709
|
var IconCashRegister = React.forwardRef(function (_ref, ref) {
|
|
1645
1710
|
var _ref$testId = _ref.testId,
|
|
1646
1711
|
testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
|
|
1647
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1712
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
|
|
1648
1713
|
return React__default.createElement("svg", Object.assign({
|
|
1649
1714
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1650
1715
|
fill: "none",
|
|
@@ -1659,11 +1724,11 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
|
|
|
1659
1724
|
});
|
|
1660
1725
|
IconCashRegister.displayName = 'IconCashRegister';
|
|
1661
1726
|
|
|
1662
|
-
var _excluded$
|
|
1727
|
+
var _excluded$G = ["testId"];
|
|
1663
1728
|
var IconChartBar = React.forwardRef(function (_ref, ref) {
|
|
1664
1729
|
var _ref$testId = _ref.testId,
|
|
1665
1730
|
testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
|
|
1666
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1731
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
|
|
1667
1732
|
return React__default.createElement("svg", Object.assign({
|
|
1668
1733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1669
1734
|
fill: "none",
|
|
@@ -1680,11 +1745,11 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
|
|
|
1680
1745
|
});
|
|
1681
1746
|
IconChartBar.displayName = 'IconChartBar';
|
|
1682
1747
|
|
|
1683
|
-
var _excluded$
|
|
1748
|
+
var _excluded$H = ["testId"];
|
|
1684
1749
|
var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
|
|
1685
1750
|
var _ref$testId = _ref.testId,
|
|
1686
1751
|
testId = _ref$testId === void 0 ? 'icon-check-circle-incomplete' : _ref$testId,
|
|
1687
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1752
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
|
|
1688
1753
|
return React__default.createElement("svg", Object.assign({
|
|
1689
1754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1690
1755
|
fill: "none",
|
|
@@ -1699,11 +1764,11 @@ var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
|
|
|
1699
1764
|
});
|
|
1700
1765
|
IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
|
|
1701
1766
|
|
|
1702
|
-
var _excluded$
|
|
1767
|
+
var _excluded$I = ["testId"];
|
|
1703
1768
|
var IconCheck = React.forwardRef(function (_ref, ref) {
|
|
1704
1769
|
var _ref$testId = _ref.testId,
|
|
1705
1770
|
testId = _ref$testId === void 0 ? 'icon-check' : _ref$testId,
|
|
1706
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1771
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
|
|
1707
1772
|
return React__default.createElement("svg", Object.assign({
|
|
1708
1773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1709
1774
|
fill: "none",
|
|
@@ -1720,11 +1785,11 @@ var IconCheck = React.forwardRef(function (_ref, ref) {
|
|
|
1720
1785
|
});
|
|
1721
1786
|
IconCheck.displayName = 'IconCheck';
|
|
1722
1787
|
|
|
1723
|
-
var _excluded$
|
|
1788
|
+
var _excluded$J = ["testId"];
|
|
1724
1789
|
var IconChevronDown = React.forwardRef(function (_ref, ref) {
|
|
1725
1790
|
var _ref$testId = _ref.testId,
|
|
1726
1791
|
testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
|
|
1727
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1792
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
|
|
1728
1793
|
return React__default.createElement("svg", Object.assign({
|
|
1729
1794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1730
1795
|
fill: "none",
|
|
@@ -1741,11 +1806,11 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
|
|
|
1741
1806
|
});
|
|
1742
1807
|
IconChevronDown.displayName = 'IconChevronDown';
|
|
1743
1808
|
|
|
1744
|
-
var _excluded$
|
|
1809
|
+
var _excluded$K = ["testId"];
|
|
1745
1810
|
var IconChevronLeft = React.forwardRef(function (_ref, ref) {
|
|
1746
1811
|
var _ref$testId = _ref.testId,
|
|
1747
1812
|
testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
|
|
1748
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1813
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
|
|
1749
1814
|
return React__default.createElement("svg", Object.assign({
|
|
1750
1815
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1751
1816
|
fill: "none",
|
|
@@ -1762,11 +1827,11 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
|
|
|
1762
1827
|
});
|
|
1763
1828
|
IconChevronLeft.displayName = 'IconChevronLeft';
|
|
1764
1829
|
|
|
1765
|
-
var _excluded$
|
|
1830
|
+
var _excluded$L = ["testId"];
|
|
1766
1831
|
var IconChevronRight = React.forwardRef(function (_ref, ref) {
|
|
1767
1832
|
var _ref$testId = _ref.testId,
|
|
1768
1833
|
testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
|
|
1769
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1834
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
|
|
1770
1835
|
return React__default.createElement("svg", Object.assign({
|
|
1771
1836
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1772
1837
|
fill: "none",
|
|
@@ -1783,11 +1848,11 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
|
|
|
1783
1848
|
});
|
|
1784
1849
|
IconChevronRight.displayName = 'IconChevronRight';
|
|
1785
1850
|
|
|
1786
|
-
var _excluded$
|
|
1851
|
+
var _excluded$M = ["testId"];
|
|
1787
1852
|
var IconChevronUp = React.forwardRef(function (_ref, ref) {
|
|
1788
1853
|
var _ref$testId = _ref.testId,
|
|
1789
1854
|
testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
|
|
1790
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1855
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
|
|
1791
1856
|
return React__default.createElement("svg", Object.assign({
|
|
1792
1857
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1793
1858
|
fill: "none",
|
|
@@ -1804,11 +1869,11 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
|
|
|
1804
1869
|
});
|
|
1805
1870
|
IconChevronUp.displayName = 'IconChevronUp';
|
|
1806
1871
|
|
|
1807
|
-
var _excluded$
|
|
1872
|
+
var _excluded$N = ["testId"];
|
|
1808
1873
|
var IconClipboardList = React.forwardRef(function (_ref, ref) {
|
|
1809
1874
|
var _ref$testId = _ref.testId,
|
|
1810
1875
|
testId = _ref$testId === void 0 ? 'icon-clipboard-list' : _ref$testId,
|
|
1811
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1876
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
|
|
1812
1877
|
return React__default.createElement("svg", Object.assign({
|
|
1813
1878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1814
1879
|
fill: "none",
|
|
@@ -1825,11 +1890,11 @@ var IconClipboardList = React.forwardRef(function (_ref, ref) {
|
|
|
1825
1890
|
});
|
|
1826
1891
|
IconClipboardList.displayName = 'IconClipboardList';
|
|
1827
1892
|
|
|
1828
|
-
var _excluded$
|
|
1893
|
+
var _excluded$O = ["testId"];
|
|
1829
1894
|
var IconClock = React.forwardRef(function (_ref, ref) {
|
|
1830
1895
|
var _ref$testId = _ref.testId,
|
|
1831
1896
|
testId = _ref$testId === void 0 ? 'icon-clock' : _ref$testId,
|
|
1832
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1897
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
|
|
1833
1898
|
return React__default.createElement("svg", Object.assign({
|
|
1834
1899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1835
1900
|
fill: "none",
|
|
@@ -1844,11 +1909,11 @@ var IconClock = React.forwardRef(function (_ref, ref) {
|
|
|
1844
1909
|
});
|
|
1845
1910
|
IconClock.displayName = 'IconClock';
|
|
1846
1911
|
|
|
1847
|
-
var _excluded$
|
|
1912
|
+
var _excluded$P = ["testId"];
|
|
1848
1913
|
var IconCog = React.forwardRef(function (_ref, ref) {
|
|
1849
1914
|
var _ref$testId = _ref.testId,
|
|
1850
1915
|
testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
|
|
1851
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1916
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
|
|
1852
1917
|
return React__default.createElement("svg", Object.assign({
|
|
1853
1918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1854
1919
|
fill: "none",
|
|
@@ -1863,11 +1928,11 @@ var IconCog = React.forwardRef(function (_ref, ref) {
|
|
|
1863
1928
|
});
|
|
1864
1929
|
IconCog.displayName = 'IconCog';
|
|
1865
1930
|
|
|
1866
|
-
var _excluded$
|
|
1931
|
+
var _excluded$Q = ["testId"];
|
|
1867
1932
|
var IconCommentLines = React.forwardRef(function (_ref, ref) {
|
|
1868
1933
|
var _ref$testId = _ref.testId,
|
|
1869
1934
|
testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
|
|
1870
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1935
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
|
|
1871
1936
|
return React__default.createElement("svg", Object.assign({
|
|
1872
1937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1873
1938
|
fill: "none",
|
|
@@ -1887,11 +1952,11 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
|
|
|
1887
1952
|
});
|
|
1888
1953
|
IconCommentLines.displayName = 'IconCommentLines';
|
|
1889
1954
|
|
|
1890
|
-
var _excluded$
|
|
1955
|
+
var _excluded$R = ["testId"];
|
|
1891
1956
|
var IconComment = React.forwardRef(function (_ref, ref) {
|
|
1892
1957
|
var _ref$testId = _ref.testId,
|
|
1893
1958
|
testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
|
|
1894
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1959
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
|
|
1895
1960
|
return React__default.createElement("svg", Object.assign({
|
|
1896
1961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1897
1962
|
fill: "none",
|
|
@@ -1908,11 +1973,11 @@ var IconComment = React.forwardRef(function (_ref, ref) {
|
|
|
1908
1973
|
});
|
|
1909
1974
|
IconComment.displayName = 'IconComment';
|
|
1910
1975
|
|
|
1911
|
-
var _excluded$
|
|
1976
|
+
var _excluded$S = ["testId"];
|
|
1912
1977
|
var IconCopy = React.forwardRef(function (_ref, ref) {
|
|
1913
1978
|
var _ref$testId = _ref.testId,
|
|
1914
1979
|
testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
|
|
1915
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1980
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
|
|
1916
1981
|
return React__default.createElement("svg", Object.assign({
|
|
1917
1982
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1918
1983
|
fill: "none",
|
|
@@ -1934,11 +1999,11 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
|
|
|
1934
1999
|
});
|
|
1935
2000
|
IconCopy.displayName = 'IconCopy';
|
|
1936
2001
|
|
|
1937
|
-
var _excluded$
|
|
2002
|
+
var _excluded$T = ["testId"];
|
|
1938
2003
|
var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
|
|
1939
2004
|
var _ref$testId = _ref.testId,
|
|
1940
2005
|
testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
|
|
1941
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2006
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
|
|
1942
2007
|
return React__default.createElement("svg", Object.assign({
|
|
1943
2008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1944
2009
|
fill: "none",
|
|
@@ -1962,11 +2027,11 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
|
|
|
1962
2027
|
});
|
|
1963
2028
|
IconCreditCardPlus.displayName = 'IconCreditCardPlus';
|
|
1964
2029
|
|
|
1965
|
-
var _excluded$
|
|
2030
|
+
var _excluded$U = ["testId"];
|
|
1966
2031
|
var IconCreditCard = React.forwardRef(function (_ref, ref) {
|
|
1967
2032
|
var _ref$testId = _ref.testId,
|
|
1968
2033
|
testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
|
|
1969
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2034
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
|
|
1970
2035
|
return React__default.createElement("svg", Object.assign({
|
|
1971
2036
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1972
2037
|
fill: "none",
|
|
@@ -1988,11 +2053,11 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
|
|
|
1988
2053
|
});
|
|
1989
2054
|
IconCreditCard.displayName = 'IconCreditCard';
|
|
1990
2055
|
|
|
1991
|
-
var _excluded$
|
|
2056
|
+
var _excluded$V = ["testId"];
|
|
1992
2057
|
var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
1993
2058
|
var _ref$testId = _ref.testId,
|
|
1994
2059
|
testId = _ref$testId === void 0 ? 'icon-decent-monochromatic' : _ref$testId,
|
|
1995
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2060
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
|
|
1996
2061
|
return React__default.createElement("svg", Object.assign({
|
|
1997
2062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1998
2063
|
fill: "none",
|
|
@@ -2029,11 +2094,11 @@ var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
2029
2094
|
});
|
|
2030
2095
|
IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
|
|
2031
2096
|
|
|
2032
|
-
var _excluded$
|
|
2097
|
+
var _excluded$W = ["testId"];
|
|
2033
2098
|
var IconDecent = React.forwardRef(function (_ref, ref) {
|
|
2034
2099
|
var _ref$testId = _ref.testId,
|
|
2035
2100
|
testId = _ref$testId === void 0 ? 'icon-decent' : _ref$testId,
|
|
2036
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2101
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
|
|
2037
2102
|
return React__default.createElement("svg", Object.assign({
|
|
2038
2103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2039
2104
|
fill: "none",
|
|
@@ -2058,11 +2123,11 @@ var IconDecent = React.forwardRef(function (_ref, ref) {
|
|
|
2058
2123
|
});
|
|
2059
2124
|
IconDecent.displayName = 'IconDecent';
|
|
2060
2125
|
|
|
2061
|
-
var _excluded$
|
|
2126
|
+
var _excluded$X = ["testId"];
|
|
2062
2127
|
var IconDownload = React.forwardRef(function (_ref, ref) {
|
|
2063
2128
|
var _ref$testId = _ref.testId,
|
|
2064
2129
|
testId = _ref$testId === void 0 ? 'icon-download' : _ref$testId,
|
|
2065
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2130
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
2066
2131
|
return React__default.createElement("svg", Object.assign({
|
|
2067
2132
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2068
2133
|
fill: "none",
|
|
@@ -2079,11 +2144,11 @@ var IconDownload = React.forwardRef(function (_ref, ref) {
|
|
|
2079
2144
|
});
|
|
2080
2145
|
IconDownload.displayName = 'IconDownload';
|
|
2081
2146
|
|
|
2082
|
-
var _excluded$
|
|
2147
|
+
var _excluded$Y = ["testId"];
|
|
2083
2148
|
var IconEdit = React.forwardRef(function (_ref, ref) {
|
|
2084
2149
|
var _ref$testId = _ref.testId,
|
|
2085
2150
|
testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
|
|
2086
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2151
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
|
|
2087
2152
|
return React__default.createElement("svg", Object.assign({
|
|
2088
2153
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2089
2154
|
fill: "none",
|
|
@@ -2098,11 +2163,11 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
|
|
|
2098
2163
|
});
|
|
2099
2164
|
IconEdit.displayName = 'IconEdit';
|
|
2100
2165
|
|
|
2101
|
-
var _excluded$
|
|
2166
|
+
var _excluded$Z = ["testId"];
|
|
2102
2167
|
var IconEllipsisV = React.forwardRef(function (_ref, ref) {
|
|
2103
2168
|
var _ref$testId = _ref.testId,
|
|
2104
2169
|
testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
|
|
2105
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2170
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
|
|
2106
2171
|
return React__default.createElement("svg", Object.assign({
|
|
2107
2172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2108
2173
|
fill: "none",
|
|
@@ -2119,11 +2184,11 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
|
|
|
2119
2184
|
});
|
|
2120
2185
|
IconEllipsisV.displayName = 'IconEllipsisV';
|
|
2121
2186
|
|
|
2122
|
-
var _excluded$
|
|
2187
|
+
var _excluded$_ = ["testId"];
|
|
2123
2188
|
var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
|
|
2124
2189
|
var _ref$testId = _ref.testId,
|
|
2125
2190
|
testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
|
|
2126
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2191
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
|
|
2127
2192
|
return React__default.createElement("svg", Object.assign({
|
|
2128
2193
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2129
2194
|
fill: "none",
|
|
@@ -2145,11 +2210,11 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
|
|
|
2145
2210
|
});
|
|
2146
2211
|
IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
|
|
2147
2212
|
|
|
2148
|
-
var _excluded
|
|
2213
|
+
var _excluded$$ = ["testId"];
|
|
2149
2214
|
var IconEnvelope = React.forwardRef(function (_ref, ref) {
|
|
2150
2215
|
var _ref$testId = _ref.testId,
|
|
2151
2216
|
testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
|
|
2152
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2217
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
|
|
2153
2218
|
return React__default.createElement("svg", Object.assign({
|
|
2154
2219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2155
2220
|
fill: "none",
|
|
@@ -2164,11 +2229,11 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
|
|
|
2164
2229
|
});
|
|
2165
2230
|
IconEnvelope.displayName = 'IconEnvelope';
|
|
2166
2231
|
|
|
2167
|
-
var _excluded$
|
|
2232
|
+
var _excluded$10 = ["testId"];
|
|
2168
2233
|
var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
|
|
2169
2234
|
var _ref$testId = _ref.testId,
|
|
2170
2235
|
testId = _ref$testId === void 0 ? 'icon-exclaimation-triangle' : _ref$testId,
|
|
2171
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2236
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
2172
2237
|
return React__default.createElement("svg", Object.assign({
|
|
2173
2238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2174
2239
|
fill: "none",
|
|
@@ -2185,11 +2250,11 @@ var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
|
|
|
2185
2250
|
});
|
|
2186
2251
|
IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
|
|
2187
2252
|
|
|
2188
|
-
var _excluded
|
|
2253
|
+
var _excluded$11 = ["testId"];
|
|
2189
2254
|
var IconExclaimation = React.forwardRef(function (_ref, ref) {
|
|
2190
2255
|
var _ref$testId = _ref.testId,
|
|
2191
2256
|
testId = _ref$testId === void 0 ? 'icon-exclaimation' : _ref$testId,
|
|
2192
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2257
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
|
|
2193
2258
|
return React__default.createElement("svg", Object.assign({
|
|
2194
2259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2195
2260
|
fill: "none",
|
|
@@ -2204,11 +2269,11 @@ var IconExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
2204
2269
|
});
|
|
2205
2270
|
IconExclaimation.displayName = 'IconExclaimation';
|
|
2206
2271
|
|
|
2207
|
-
var _excluded$
|
|
2272
|
+
var _excluded$12 = ["testId"];
|
|
2208
2273
|
var IconExpand = React.forwardRef(function (_ref, ref) {
|
|
2209
2274
|
var _ref$testId = _ref.testId,
|
|
2210
2275
|
testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
|
|
2211
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2276
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
|
|
2212
2277
|
return React__default.createElement("svg", Object.assign({
|
|
2213
2278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2214
2279
|
fill: "none",
|
|
@@ -2223,11 +2288,11 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
|
|
|
2223
2288
|
});
|
|
2224
2289
|
IconExpand.displayName = 'IconExpand';
|
|
2225
2290
|
|
|
2226
|
-
var _excluded$
|
|
2291
|
+
var _excluded$13 = ["testId"];
|
|
2227
2292
|
var IconExternalLink = React.forwardRef(function (_ref, ref) {
|
|
2228
2293
|
var _ref$testId = _ref.testId,
|
|
2229
2294
|
testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
|
|
2230
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2295
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
|
|
2231
2296
|
return React__default.createElement("svg", Object.assign({
|
|
2232
2297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2233
2298
|
fill: "none",
|
|
@@ -2244,11 +2309,11 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
|
|
|
2244
2309
|
});
|
|
2245
2310
|
IconExternalLink.displayName = 'IconExternalLink';
|
|
2246
2311
|
|
|
2247
|
-
var _excluded$
|
|
2312
|
+
var _excluded$14 = ["testId"];
|
|
2248
2313
|
var IconEyeSlash = React.forwardRef(function (_ref, ref) {
|
|
2249
2314
|
var _ref$testId = _ref.testId,
|
|
2250
2315
|
testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
|
|
2251
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2316
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
|
|
2252
2317
|
return React__default.createElement("svg", Object.assign({
|
|
2253
2318
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2254
2319
|
fill: "none",
|
|
@@ -2277,11 +2342,11 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
|
|
|
2277
2342
|
});
|
|
2278
2343
|
IconEyeSlash.displayName = 'IconEyeSlash';
|
|
2279
2344
|
|
|
2280
|
-
var _excluded$
|
|
2345
|
+
var _excluded$15 = ["testId"];
|
|
2281
2346
|
var IconEye = React.forwardRef(function (_ref, ref) {
|
|
2282
2347
|
var _ref$testId = _ref.testId,
|
|
2283
2348
|
testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
|
|
2284
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2349
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
|
|
2285
2350
|
return React__default.createElement("svg", Object.assign({
|
|
2286
2351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2287
2352
|
fill: "none",
|
|
@@ -2303,11 +2368,11 @@ var IconEye = React.forwardRef(function (_ref, ref) {
|
|
|
2303
2368
|
});
|
|
2304
2369
|
IconEye.displayName = 'IconEye';
|
|
2305
2370
|
|
|
2306
|
-
var _excluded$
|
|
2371
|
+
var _excluded$16 = ["testId"];
|
|
2307
2372
|
var IconFilePdf = React.forwardRef(function (_ref, ref) {
|
|
2308
2373
|
var _ref$testId = _ref.testId,
|
|
2309
2374
|
testId = _ref$testId === void 0 ? 'icon-file-pdf' : _ref$testId,
|
|
2310
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2375
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
2311
2376
|
return React__default.createElement("svg", Object.assign({
|
|
2312
2377
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2313
2378
|
fill: "none",
|
|
@@ -2329,11 +2394,11 @@ var IconFilePdf = React.forwardRef(function (_ref, ref) {
|
|
|
2329
2394
|
});
|
|
2330
2395
|
IconFilePdf.displayName = 'IconFilePdf';
|
|
2331
2396
|
|
|
2332
|
-
var _excluded$
|
|
2397
|
+
var _excluded$17 = ["testId"];
|
|
2333
2398
|
var IconFile = React.forwardRef(function (_ref, ref) {
|
|
2334
2399
|
var _ref$testId = _ref.testId,
|
|
2335
2400
|
testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
|
|
2336
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2401
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
|
|
2337
2402
|
return React__default.createElement("svg", Object.assign({
|
|
2338
2403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2339
2404
|
fill: "none",
|
|
@@ -2355,11 +2420,11 @@ var IconFile = React.forwardRef(function (_ref, ref) {
|
|
|
2355
2420
|
});
|
|
2356
2421
|
IconFile.displayName = 'IconFile';
|
|
2357
2422
|
|
|
2358
|
-
var _excluded$
|
|
2423
|
+
var _excluded$18 = ["testId"];
|
|
2359
2424
|
var IconFlag = React.forwardRef(function (_ref, ref) {
|
|
2360
2425
|
var _ref$testId = _ref.testId,
|
|
2361
2426
|
testId = _ref$testId === void 0 ? 'icon-flag' : _ref$testId,
|
|
2362
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2427
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
|
|
2363
2428
|
return React__default.createElement("svg", Object.assign({
|
|
2364
2429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2365
2430
|
fill: "none",
|
|
@@ -2381,11 +2446,11 @@ var IconFlag = React.forwardRef(function (_ref, ref) {
|
|
|
2381
2446
|
});
|
|
2382
2447
|
IconFlag.displayName = 'IconFlag';
|
|
2383
2448
|
|
|
2384
|
-
var _excluded$
|
|
2449
|
+
var _excluded$19 = ["testId"];
|
|
2385
2450
|
var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
|
|
2386
2451
|
var _ref$testId = _ref.testId,
|
|
2387
2452
|
testId = _ref$testId === void 0 ? 'icon-four-dots-circle' : _ref$testId,
|
|
2388
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2453
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
|
|
2389
2454
|
return React__default.createElement("svg", Object.assign({
|
|
2390
2455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2391
2456
|
fill: "none",
|
|
@@ -2402,11 +2467,11 @@ var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
|
|
|
2402
2467
|
});
|
|
2403
2468
|
IconFourDotsCircle.displayName = 'IconFourDotsCircle';
|
|
2404
2469
|
|
|
2405
|
-
var _excluded$
|
|
2470
|
+
var _excluded$1a = ["testId"];
|
|
2406
2471
|
var IconFourSquares = React.forwardRef(function (_ref, ref) {
|
|
2407
2472
|
var _ref$testId = _ref.testId,
|
|
2408
2473
|
testId = _ref$testId === void 0 ? 'icon-four-squares' : _ref$testId,
|
|
2409
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2474
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
2410
2475
|
return React__default.createElement("svg", Object.assign({
|
|
2411
2476
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2412
2477
|
fill: "none",
|
|
@@ -2446,11 +2511,11 @@ var IconFourSquares = React.forwardRef(function (_ref, ref) {
|
|
|
2446
2511
|
});
|
|
2447
2512
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
2448
2513
|
|
|
2449
|
-
var _excluded$
|
|
2514
|
+
var _excluded$1b = ["testId"];
|
|
2450
2515
|
var IconGavel = React.forwardRef(function (_ref, ref) {
|
|
2451
2516
|
var _ref$testId = _ref.testId,
|
|
2452
2517
|
testId = _ref$testId === void 0 ? 'icon-gavel' : _ref$testId,
|
|
2453
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2518
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
|
|
2454
2519
|
return React__default.createElement("svg", Object.assign({
|
|
2455
2520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2456
2521
|
fill: "none",
|
|
@@ -2465,11 +2530,11 @@ var IconGavel = React.forwardRef(function (_ref, ref) {
|
|
|
2465
2530
|
});
|
|
2466
2531
|
IconGavel.displayName = 'IconGavel';
|
|
2467
2532
|
|
|
2468
|
-
var _excluded$
|
|
2533
|
+
var _excluded$1c = ["testId"];
|
|
2469
2534
|
var IconGif = React.forwardRef(function (_ref, ref) {
|
|
2470
2535
|
var _ref$testId = _ref.testId,
|
|
2471
2536
|
testId = _ref$testId === void 0 ? 'icon-gif' : _ref$testId,
|
|
2472
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2537
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
|
|
2473
2538
|
return React__default.createElement("svg", Object.assign({
|
|
2474
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2475
2540
|
viewBox: "0 0 20 20",
|
|
@@ -2488,11 +2553,11 @@ var IconGif = React.forwardRef(function (_ref, ref) {
|
|
|
2488
2553
|
});
|
|
2489
2554
|
IconGif.displayName = 'IconGif';
|
|
2490
2555
|
|
|
2491
|
-
var _excluded$
|
|
2556
|
+
var _excluded$1d = ["testId"];
|
|
2492
2557
|
var IconGift = React.forwardRef(function (_ref, ref) {
|
|
2493
2558
|
var _ref$testId = _ref.testId,
|
|
2494
2559
|
testId = _ref$testId === void 0 ? 'icon-gift' : _ref$testId,
|
|
2495
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2560
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
2496
2561
|
return React__default.createElement("svg", Object.assign({
|
|
2497
2562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2498
2563
|
fill: "none",
|
|
@@ -2507,11 +2572,11 @@ var IconGift = React.forwardRef(function (_ref, ref) {
|
|
|
2507
2572
|
});
|
|
2508
2573
|
IconGift.displayName = 'IconGift';
|
|
2509
2574
|
|
|
2510
|
-
var _excluded$
|
|
2575
|
+
var _excluded$1e = ["testId"];
|
|
2511
2576
|
var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
2512
2577
|
var _ref$testId = _ref.testId,
|
|
2513
2578
|
testId = _ref$testId === void 0 ? 'icon-good-monochromatic' : _ref$testId,
|
|
2514
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2579
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
|
|
2515
2580
|
return React__default.createElement("svg", Object.assign({
|
|
2516
2581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2517
2582
|
fill: "none",
|
|
@@ -2544,11 +2609,11 @@ var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
2544
2609
|
});
|
|
2545
2610
|
IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
|
|
2546
2611
|
|
|
2547
|
-
var _excluded$
|
|
2612
|
+
var _excluded$1f = ["testId"];
|
|
2548
2613
|
var IconGood = React.forwardRef(function (_ref, ref) {
|
|
2549
2614
|
var _ref$testId = _ref.testId,
|
|
2550
2615
|
testId = _ref$testId === void 0 ? 'icon-good' : _ref$testId,
|
|
2551
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2616
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
|
|
2552
2617
|
return React__default.createElement("svg", Object.assign({
|
|
2553
2618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2554
2619
|
fill: "none",
|
|
@@ -2569,11 +2634,11 @@ var IconGood = React.forwardRef(function (_ref, ref) {
|
|
|
2569
2634
|
});
|
|
2570
2635
|
IconGood.displayName = 'IconGood';
|
|
2571
2636
|
|
|
2572
|
-
var _excluded$
|
|
2637
|
+
var _excluded$1g = ["testId"];
|
|
2573
2638
|
var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
2574
2639
|
var _ref$testId = _ref.testId,
|
|
2575
2640
|
testId = _ref$testId === void 0 ? 'icon-great-monochromatic' : _ref$testId,
|
|
2576
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2641
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
|
|
2577
2642
|
return React__default.createElement("svg", Object.assign({
|
|
2578
2643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2579
2644
|
fill: "none",
|
|
@@ -2608,11 +2673,11 @@ var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
2608
2673
|
});
|
|
2609
2674
|
IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
|
|
2610
2675
|
|
|
2611
|
-
var _excluded$
|
|
2676
|
+
var _excluded$1h = ["testId"];
|
|
2612
2677
|
var IconGreat = React.forwardRef(function (_ref, ref) {
|
|
2613
2678
|
var _ref$testId = _ref.testId,
|
|
2614
2679
|
testId = _ref$testId === void 0 ? 'icon-great' : _ref$testId,
|
|
2615
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2680
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
2616
2681
|
return React__default.createElement("svg", Object.assign({
|
|
2617
2682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2618
2683
|
fill: "none",
|
|
@@ -2635,11 +2700,11 @@ var IconGreat = React.forwardRef(function (_ref, ref) {
|
|
|
2635
2700
|
});
|
|
2636
2701
|
IconGreat.displayName = 'IconGreat';
|
|
2637
2702
|
|
|
2638
|
-
var _excluded$
|
|
2703
|
+
var _excluded$1i = ["testId"];
|
|
2639
2704
|
var IconGrinBeam = React.forwardRef(function (_ref, ref) {
|
|
2640
2705
|
var _ref$testId = _ref.testId,
|
|
2641
2706
|
testId = _ref$testId === void 0 ? 'icon-grin-beam' : _ref$testId,
|
|
2642
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2707
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
|
|
2643
2708
|
return React__default.createElement("svg", Object.assign({
|
|
2644
2709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2645
2710
|
fill: "none",
|
|
@@ -2654,11 +2719,11 @@ var IconGrinBeam = React.forwardRef(function (_ref, ref) {
|
|
|
2654
2719
|
});
|
|
2655
2720
|
IconGrinBeam.displayName = 'IconGrinBeam';
|
|
2656
2721
|
|
|
2657
|
-
var _excluded$
|
|
2722
|
+
var _excluded$1j = ["testId"];
|
|
2658
2723
|
var IconGripVertical = React.forwardRef(function (_ref, ref) {
|
|
2659
2724
|
var _ref$testId = _ref.testId,
|
|
2660
2725
|
testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
|
|
2661
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2726
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
|
|
2662
2727
|
return React__default.createElement("svg", Object.assign({
|
|
2663
2728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2664
2729
|
fill: "none",
|
|
@@ -2700,11 +2765,11 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
|
|
|
2700
2765
|
});
|
|
2701
2766
|
IconGripVertical.displayName = 'IconGripVertical';
|
|
2702
2767
|
|
|
2703
|
-
var _excluded$
|
|
2768
|
+
var _excluded$1k = ["testId"];
|
|
2704
2769
|
var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
2705
2770
|
var _ref$testId = _ref.testId,
|
|
2706
2771
|
testId = _ref$testId === void 0 ? 'icon-handshake' : _ref$testId,
|
|
2707
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2772
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
|
|
2708
2773
|
return React__default.createElement("svg", Object.assign({
|
|
2709
2774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2710
2775
|
fill: "none",
|
|
@@ -2726,11 +2791,11 @@ var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
|
2726
2791
|
});
|
|
2727
2792
|
IconHandshake.displayName = 'IconHandshake';
|
|
2728
2793
|
|
|
2729
|
-
var _excluded$
|
|
2794
|
+
var _excluded$1l = ["testId"];
|
|
2730
2795
|
var IconImage = React.forwardRef(function (_ref, ref) {
|
|
2731
2796
|
var _ref$testId = _ref.testId,
|
|
2732
2797
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
2733
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2798
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
2734
2799
|
return React__default.createElement("svg", Object.assign({
|
|
2735
2800
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2736
2801
|
fill: "none",
|
|
@@ -2752,11 +2817,11 @@ var IconImage = React.forwardRef(function (_ref, ref) {
|
|
|
2752
2817
|
});
|
|
2753
2818
|
IconImage.displayName = 'IconImage';
|
|
2754
2819
|
|
|
2755
|
-
var _excluded$
|
|
2820
|
+
var _excluded$1m = ["testId"];
|
|
2756
2821
|
var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
2757
2822
|
var _ref$testId = _ref.testId,
|
|
2758
2823
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
2759
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2824
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
2760
2825
|
return React__default.createElement("svg", Object.assign({
|
|
2761
2826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2762
2827
|
fill: "none",
|
|
@@ -2773,11 +2838,11 @@ var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
|
2773
2838
|
});
|
|
2774
2839
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
2775
2840
|
|
|
2776
|
-
var _excluded$
|
|
2841
|
+
var _excluded$1n = ["testId"];
|
|
2777
2842
|
var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
2778
2843
|
var _ref$testId = _ref.testId,
|
|
2779
2844
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
2780
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2845
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
2781
2846
|
return React__default.createElement("svg", Object.assign({
|
|
2782
2847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2783
2848
|
fill: "none",
|
|
@@ -2792,11 +2857,11 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
|
2792
2857
|
});
|
|
2793
2858
|
IconItalic.displayName = 'IconItalic';
|
|
2794
2859
|
|
|
2795
|
-
var _excluded$
|
|
2860
|
+
var _excluded$1o = ["testId"];
|
|
2796
2861
|
var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
2797
2862
|
var _ref$testId = _ref.testId,
|
|
2798
2863
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
2799
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2864
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
2800
2865
|
return React__default.createElement("svg", Object.assign({
|
|
2801
2866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2802
2867
|
fill: "none",
|
|
@@ -2820,11 +2885,11 @@ var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
|
2820
2885
|
});
|
|
2821
2886
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
2822
2887
|
|
|
2823
|
-
var _excluded$
|
|
2888
|
+
var _excluded$1p = ["testId"];
|
|
2824
2889
|
var IconLink = React.forwardRef(function (_ref, ref) {
|
|
2825
2890
|
var _ref$testId = _ref.testId,
|
|
2826
2891
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
2827
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2892
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
2828
2893
|
return React__default.createElement("svg", Object.assign({
|
|
2829
2894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2830
2895
|
fill: "none",
|
|
@@ -2846,11 +2911,11 @@ var IconLink = React.forwardRef(function (_ref, ref) {
|
|
|
2846
2911
|
});
|
|
2847
2912
|
IconLink.displayName = 'IconLink';
|
|
2848
2913
|
|
|
2849
|
-
var _excluded$
|
|
2914
|
+
var _excluded$1q = ["testId"];
|
|
2850
2915
|
var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
2851
2916
|
var _ref$testId = _ref.testId,
|
|
2852
2917
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
2853
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2918
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
2854
2919
|
return React__default.createElement("svg", Object.assign({
|
|
2855
2920
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2856
2921
|
fill: "none",
|
|
@@ -2872,11 +2937,11 @@ var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
|
2872
2937
|
});
|
|
2873
2938
|
IconListOI.displayName = 'IconListOI';
|
|
2874
2939
|
|
|
2875
|
-
var _excluded$
|
|
2940
|
+
var _excluded$1r = ["testId"];
|
|
2876
2941
|
var IconList = React.forwardRef(function (_ref, ref) {
|
|
2877
2942
|
var _ref$testId = _ref.testId,
|
|
2878
2943
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
2879
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2944
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
2880
2945
|
return React__default.createElement("svg", Object.assign({
|
|
2881
2946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2882
2947
|
fill: "none",
|
|
@@ -2891,11 +2956,11 @@ var IconList = React.forwardRef(function (_ref, ref) {
|
|
|
2891
2956
|
});
|
|
2892
2957
|
IconList.displayName = 'IconList';
|
|
2893
2958
|
|
|
2894
|
-
var _excluded$
|
|
2959
|
+
var _excluded$1s = ["testId"];
|
|
2895
2960
|
var IconLock = React.forwardRef(function (_ref, ref) {
|
|
2896
2961
|
var _ref$testId = _ref.testId,
|
|
2897
2962
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
2898
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2963
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
2899
2964
|
return React__default.createElement("svg", Object.assign({
|
|
2900
2965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2901
2966
|
fill: "none",
|
|
@@ -2910,11 +2975,11 @@ var IconLock = React.forwardRef(function (_ref, ref) {
|
|
|
2910
2975
|
});
|
|
2911
2976
|
IconLock.displayName = 'IconLock';
|
|
2912
2977
|
|
|
2913
|
-
var _excluded$
|
|
2978
|
+
var _excluded$1t = ["testId"];
|
|
2914
2979
|
var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
2915
2980
|
var _ref$testId = _ref.testId,
|
|
2916
2981
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
2917
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2982
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
2918
2983
|
return React__default.createElement("svg", Object.assign({
|
|
2919
2984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2920
2985
|
fill: "none",
|
|
@@ -2931,11 +2996,11 @@ var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
|
2931
2996
|
});
|
|
2932
2997
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
2933
2998
|
|
|
2934
|
-
var _excluded$
|
|
2999
|
+
var _excluded$1u = ["testId"];
|
|
2935
3000
|
var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
2936
3001
|
var _ref$testId = _ref.testId,
|
|
2937
3002
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
2938
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3003
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
2939
3004
|
return React__default.createElement("svg", Object.assign({
|
|
2940
3005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2941
3006
|
fill: "none",
|
|
@@ -2952,11 +3017,11 @@ var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
|
2952
3017
|
});
|
|
2953
3018
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
2954
3019
|
|
|
2955
|
-
var _excluded$
|
|
3020
|
+
var _excluded$1v = ["testId"];
|
|
2956
3021
|
var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
2957
3022
|
var _ref$testId = _ref.testId,
|
|
2958
3023
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
2959
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3024
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
2960
3025
|
return React__default.createElement("svg", Object.assign({
|
|
2961
3026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2962
3027
|
fill: "none",
|
|
@@ -2973,11 +3038,11 @@ var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
|
2973
3038
|
});
|
|
2974
3039
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
2975
3040
|
|
|
2976
|
-
var _excluded$
|
|
3041
|
+
var _excluded$1w = ["testId"];
|
|
2977
3042
|
var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
2978
3043
|
var _ref$testId = _ref.testId,
|
|
2979
3044
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
2980
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3045
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
2981
3046
|
return React__default.createElement("svg", Object.assign({
|
|
2982
3047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2983
3048
|
fill: "none",
|
|
@@ -2992,11 +3057,11 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
|
2992
3057
|
});
|
|
2993
3058
|
IconMessages.displayName = 'IconMessages';
|
|
2994
3059
|
|
|
2995
|
-
var _excluded$
|
|
3060
|
+
var _excluded$1x = ["testId"];
|
|
2996
3061
|
var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
2997
3062
|
var _ref$testId = _ref.testId,
|
|
2998
3063
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
2999
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3064
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3000
3065
|
return React__default.createElement("svg", Object.assign({
|
|
3001
3066
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3002
3067
|
fill: "none",
|
|
@@ -3011,11 +3076,11 @@ var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
|
3011
3076
|
});
|
|
3012
3077
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3013
3078
|
|
|
3014
|
-
var _excluded$
|
|
3079
|
+
var _excluded$1y = ["testId"];
|
|
3015
3080
|
var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
3016
3081
|
var _ref$testId = _ref.testId,
|
|
3017
3082
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3018
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3083
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3019
3084
|
return React__default.createElement("svg", Object.assign({
|
|
3020
3085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3021
3086
|
fill: "none",
|
|
@@ -3030,11 +3095,11 @@ var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
|
3030
3095
|
});
|
|
3031
3096
|
IconMinus.displayName = 'IconMinus';
|
|
3032
3097
|
|
|
3033
|
-
var _excluded$
|
|
3098
|
+
var _excluded$1z = ["testId"];
|
|
3034
3099
|
var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
3035
3100
|
var _ref$testId = _ref.testId,
|
|
3036
3101
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3037
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3102
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3038
3103
|
return React__default.createElement("svg", Object.assign({
|
|
3039
3104
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3040
3105
|
fill: "none",
|
|
@@ -3049,11 +3114,11 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
|
3049
3114
|
});
|
|
3050
3115
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
3051
3116
|
|
|
3052
|
-
var _excluded$
|
|
3117
|
+
var _excluded$1A = ["testId"];
|
|
3053
3118
|
var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
3054
3119
|
var _ref$testId = _ref.testId,
|
|
3055
3120
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
3056
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3121
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3057
3122
|
return React__default.createElement("svg", Object.assign({
|
|
3058
3123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3059
3124
|
fill: "none",
|
|
@@ -3068,11 +3133,11 @@ var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
|
3068
3133
|
});
|
|
3069
3134
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
3070
3135
|
|
|
3071
|
-
var _excluded$
|
|
3136
|
+
var _excluded$1B = ["testId"];
|
|
3072
3137
|
var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
3073
3138
|
var _ref$testId = _ref.testId,
|
|
3074
3139
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
3075
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3140
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
3076
3141
|
return React__default.createElement("svg", Object.assign({
|
|
3077
3142
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3078
3143
|
fill: "none",
|
|
@@ -3087,11 +3152,11 @@ var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
|
3087
3152
|
});
|
|
3088
3153
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
3089
3154
|
|
|
3090
|
-
var _excluded$
|
|
3155
|
+
var _excluded$1C = ["testId"];
|
|
3091
3156
|
var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
3092
3157
|
var _ref$testId = _ref.testId,
|
|
3093
3158
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
3094
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3159
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
3095
3160
|
return React__default.createElement("svg", Object.assign({
|
|
3096
3161
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3097
3162
|
fill: "none",
|
|
@@ -3113,11 +3178,11 @@ var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
|
3113
3178
|
});
|
|
3114
3179
|
IconOvertime.displayName = 'IconOvertime';
|
|
3115
3180
|
|
|
3116
|
-
var _excluded$
|
|
3181
|
+
var _excluded$1D = ["testId"];
|
|
3117
3182
|
var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
3118
3183
|
var _ref$testId = _ref.testId,
|
|
3119
3184
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
3120
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3185
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
3121
3186
|
return React__default.createElement("svg", Object.assign({
|
|
3122
3187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3123
3188
|
fill: "none",
|
|
@@ -3143,11 +3208,11 @@ var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
|
3143
3208
|
});
|
|
3144
3209
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
3145
3210
|
|
|
3146
|
-
var _excluded$
|
|
3211
|
+
var _excluded$1E = ["testId"];
|
|
3147
3212
|
var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
3148
3213
|
var _ref$testId = _ref.testId,
|
|
3149
3214
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
3150
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3215
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
3151
3216
|
return React__default.createElement("svg", Object.assign({
|
|
3152
3217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3153
3218
|
fill: "none",
|
|
@@ -3164,11 +3229,11 @@ var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
|
3164
3229
|
});
|
|
3165
3230
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
3166
3231
|
|
|
3167
|
-
var _excluded$
|
|
3232
|
+
var _excluded$1F = ["testId"];
|
|
3168
3233
|
var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
3169
3234
|
var _ref$testId = _ref.testId,
|
|
3170
3235
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
3171
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3236
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
3172
3237
|
return React__default.createElement("svg", Object.assign({
|
|
3173
3238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3174
3239
|
fill: "none",
|
|
@@ -3190,11 +3255,11 @@ var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
|
3190
3255
|
});
|
|
3191
3256
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
3192
3257
|
|
|
3193
|
-
var _excluded$
|
|
3258
|
+
var _excluded$1G = ["testId"];
|
|
3194
3259
|
var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
3195
3260
|
var _ref$testId = _ref.testId,
|
|
3196
3261
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
3197
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3262
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
3198
3263
|
return React__default.createElement("svg", Object.assign({
|
|
3199
3264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3200
3265
|
fill: "none",
|
|
@@ -3211,11 +3276,11 @@ var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
|
3211
3276
|
});
|
|
3212
3277
|
IconPencil.displayName = 'IconPencil';
|
|
3213
3278
|
|
|
3214
|
-
var _excluded$
|
|
3279
|
+
var _excluded$1H = ["testId"];
|
|
3215
3280
|
var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
3216
3281
|
var _ref$testId = _ref.testId,
|
|
3217
3282
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
3218
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3283
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
3219
3284
|
return React__default.createElement("svg", Object.assign({
|
|
3220
3285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3221
3286
|
fill: "none",
|
|
@@ -3230,11 +3295,11 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
|
3230
3295
|
});
|
|
3231
3296
|
IconPercentage.displayName = 'IconPercentage';
|
|
3232
3297
|
|
|
3233
|
-
var _excluded$
|
|
3298
|
+
var _excluded$1I = ["testId"];
|
|
3234
3299
|
var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
3235
3300
|
var _ref$testId = _ref.testId,
|
|
3236
3301
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
3237
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3302
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
3238
3303
|
return React__default.createElement("svg", Object.assign({
|
|
3239
3304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3240
3305
|
viewBox: "0 0 20 20",
|
|
@@ -3249,11 +3314,11 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
|
3249
3314
|
});
|
|
3250
3315
|
IconPhone.displayName = 'IconPhone';
|
|
3251
3316
|
|
|
3252
|
-
var _excluded$
|
|
3317
|
+
var _excluded$1J = ["testId"];
|
|
3253
3318
|
var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
3254
3319
|
var _ref$testId = _ref.testId,
|
|
3255
3320
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
3256
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3321
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
3257
3322
|
return React__default.createElement("svg", Object.assign({
|
|
3258
3323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3259
3324
|
fill: "none",
|
|
@@ -3270,11 +3335,11 @@ var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
|
3270
3335
|
});
|
|
3271
3336
|
IconPlug.displayName = 'IconPlug';
|
|
3272
3337
|
|
|
3273
|
-
var _excluded$
|
|
3338
|
+
var _excluded$1K = ["testId"];
|
|
3274
3339
|
var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
3275
3340
|
var _ref$testId = _ref.testId,
|
|
3276
3341
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
3277
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3342
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
3278
3343
|
return React__default.createElement("svg", Object.assign({
|
|
3279
3344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3280
3345
|
fill: "none",
|
|
@@ -3291,11 +3356,11 @@ var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
|
3291
3356
|
});
|
|
3292
3357
|
IconPlus.displayName = 'IconPlus';
|
|
3293
3358
|
|
|
3294
|
-
var _excluded$
|
|
3359
|
+
var _excluded$1L = ["testId"];
|
|
3295
3360
|
var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
3296
3361
|
var _ref$testId = _ref.testId,
|
|
3297
3362
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
3298
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3363
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
3299
3364
|
return React__default.createElement("svg", Object.assign({
|
|
3300
3365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3301
3366
|
fill: "none",
|
|
@@ -3312,11 +3377,11 @@ var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
|
3312
3377
|
});
|
|
3313
3378
|
IconPrint.displayName = 'IconPrint';
|
|
3314
3379
|
|
|
3315
|
-
var _excluded$
|
|
3380
|
+
var _excluded$1M = ["testId"];
|
|
3316
3381
|
var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
3317
3382
|
var _ref$testId = _ref.testId,
|
|
3318
3383
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
3319
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3384
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
3320
3385
|
return React__default.createElement("svg", Object.assign({
|
|
3321
3386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3322
3387
|
fill: "none",
|
|
@@ -3331,11 +3396,11 @@ var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
|
3331
3396
|
});
|
|
3332
3397
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
3333
3398
|
|
|
3334
|
-
var _excluded$
|
|
3399
|
+
var _excluded$1N = ["testId"];
|
|
3335
3400
|
var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
3336
3401
|
var _ref$testId = _ref.testId,
|
|
3337
3402
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
3338
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3403
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
3339
3404
|
return React__default.createElement("svg", Object.assign({
|
|
3340
3405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3341
3406
|
fill: "none",
|
|
@@ -3350,11 +3415,11 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
|
3350
3415
|
});
|
|
3351
3416
|
IconRepeat.displayName = 'IconRepeat';
|
|
3352
3417
|
|
|
3353
|
-
var _excluded$
|
|
3418
|
+
var _excluded$1O = ["testId"];
|
|
3354
3419
|
var IconReply = React.forwardRef(function (_ref, ref) {
|
|
3355
3420
|
var _ref$testId = _ref.testId,
|
|
3356
3421
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
3357
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3422
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
3358
3423
|
return React__default.createElement("svg", Object.assign({
|
|
3359
3424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3360
3425
|
fill: "none",
|
|
@@ -3369,11 +3434,11 @@ var IconReply = React.forwardRef(function (_ref, ref) {
|
|
|
3369
3434
|
});
|
|
3370
3435
|
IconReply.displayName = 'IconReply';
|
|
3371
3436
|
|
|
3372
|
-
var _excluded$
|
|
3437
|
+
var _excluded$1P = ["testId"];
|
|
3373
3438
|
var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
3374
3439
|
var _ref$testId = _ref.testId,
|
|
3375
3440
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
3376
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3441
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
3377
3442
|
return React__default.createElement("svg", Object.assign({
|
|
3378
3443
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3379
3444
|
fill: "none",
|
|
@@ -3388,11 +3453,11 @@ var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
|
3388
3453
|
});
|
|
3389
3454
|
IconRocket.displayName = 'IconRocket';
|
|
3390
3455
|
|
|
3391
|
-
var _excluded$
|
|
3456
|
+
var _excluded$1Q = ["testId"];
|
|
3392
3457
|
var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
3393
3458
|
var _ref$testId = _ref.testId,
|
|
3394
3459
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
3395
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3460
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
3396
3461
|
return React__default.createElement("svg", Object.assign({
|
|
3397
3462
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3398
3463
|
fill: "none",
|
|
@@ -3409,11 +3474,11 @@ var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
|
3409
3474
|
});
|
|
3410
3475
|
IconSearch.displayName = 'IconSearch';
|
|
3411
3476
|
|
|
3412
|
-
var _excluded$
|
|
3477
|
+
var _excluded$1R = ["testId"];
|
|
3413
3478
|
var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
3414
3479
|
var _ref$testId = _ref.testId,
|
|
3415
3480
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
3416
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3481
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
3417
3482
|
return React__default.createElement("svg", Object.assign({
|
|
3418
3483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3419
3484
|
fill: "none",
|
|
@@ -3428,11 +3493,11 @@ var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
|
3428
3493
|
});
|
|
3429
3494
|
IconSignOut.displayName = 'IconSignOut';
|
|
3430
3495
|
|
|
3431
|
-
var _excluded$
|
|
3496
|
+
var _excluded$1S = ["testId"];
|
|
3432
3497
|
var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
3433
3498
|
var _ref$testId = _ref.testId,
|
|
3434
3499
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
3435
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3500
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
3436
3501
|
return React__default.createElement("svg", Object.assign({
|
|
3437
3502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3438
3503
|
fill: "none",
|
|
@@ -3449,11 +3514,11 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
|
3449
3514
|
});
|
|
3450
3515
|
IconSitemap.displayName = 'IconSitemap';
|
|
3451
3516
|
|
|
3452
|
-
var _excluded$
|
|
3517
|
+
var _excluded$1T = ["testId"];
|
|
3453
3518
|
var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
3454
3519
|
var _ref$testId = _ref.testId,
|
|
3455
3520
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
3456
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3521
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
3457
3522
|
return React__default.createElement("svg", Object.assign({
|
|
3458
3523
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3459
3524
|
fill: "none",
|
|
@@ -3475,11 +3540,11 @@ var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
|
3475
3540
|
});
|
|
3476
3541
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
3477
3542
|
|
|
3478
|
-
var _excluded$
|
|
3543
|
+
var _excluded$1U = ["testId"];
|
|
3479
3544
|
var IconSort = React.forwardRef(function (_ref, ref) {
|
|
3480
3545
|
var _ref$testId = _ref.testId,
|
|
3481
3546
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
3482
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3547
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
3483
3548
|
return React__default.createElement("svg", Object.assign({
|
|
3484
3549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3485
3550
|
fill: "none",
|
|
@@ -3494,11 +3559,11 @@ var IconSort = React.forwardRef(function (_ref, ref) {
|
|
|
3494
3559
|
});
|
|
3495
3560
|
IconSort.displayName = 'IconSort';
|
|
3496
3561
|
|
|
3497
|
-
var _excluded$
|
|
3562
|
+
var _excluded$1V = ["testId"];
|
|
3498
3563
|
var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
3499
3564
|
var _ref$testId = _ref.testId,
|
|
3500
3565
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
3501
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3566
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
3502
3567
|
return React__default.createElement("svg", Object.assign({
|
|
3503
3568
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3504
3569
|
fill: "none",
|
|
@@ -3513,11 +3578,11 @@ var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
|
3513
3578
|
});
|
|
3514
3579
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
3515
3580
|
|
|
3516
|
-
var _excluded$
|
|
3581
|
+
var _excluded$1W = ["testId"];
|
|
3517
3582
|
var IconStar = React.forwardRef(function (_ref, ref) {
|
|
3518
3583
|
var _ref$testId = _ref.testId,
|
|
3519
3584
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
3520
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3585
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
3521
3586
|
return React__default.createElement("svg", Object.assign({
|
|
3522
3587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3523
3588
|
fill: "none",
|
|
@@ -3532,11 +3597,11 @@ var IconStar = React.forwardRef(function (_ref, ref) {
|
|
|
3532
3597
|
});
|
|
3533
3598
|
IconStar.displayName = 'IconStar';
|
|
3534
3599
|
|
|
3535
|
-
var _excluded$
|
|
3600
|
+
var _excluded$1X = ["testId"];
|
|
3536
3601
|
var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
3537
3602
|
var _ref$testId = _ref.testId,
|
|
3538
3603
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
3539
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3604
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
3540
3605
|
return React__default.createElement("svg", Object.assign({
|
|
3541
3606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3542
3607
|
fill: "none",
|
|
@@ -3554,11 +3619,11 @@ var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
|
3554
3619
|
});
|
|
3555
3620
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
3556
3621
|
|
|
3557
|
-
var _excluded$
|
|
3622
|
+
var _excluded$1Y = ["testId"];
|
|
3558
3623
|
var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
3559
3624
|
var _ref$testId = _ref.testId,
|
|
3560
3625
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
3561
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3626
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
3562
3627
|
return React__default.createElement("svg", Object.assign({
|
|
3563
3628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3564
3629
|
fill: "none",
|
|
@@ -3575,11 +3640,11 @@ var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
|
3575
3640
|
});
|
|
3576
3641
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
3577
3642
|
|
|
3578
|
-
var _excluded$
|
|
3643
|
+
var _excluded$1Z = ["testId"];
|
|
3579
3644
|
var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
3580
3645
|
var _ref$testId = _ref.testId,
|
|
3581
3646
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
3582
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3647
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
3583
3648
|
return React__default.createElement("svg", Object.assign({
|
|
3584
3649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3585
3650
|
fill: "none",
|
|
@@ -3601,11 +3666,11 @@ var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
|
3601
3666
|
});
|
|
3602
3667
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
3603
3668
|
|
|
3604
|
-
var _excluded$
|
|
3669
|
+
var _excluded$1_ = ["testId"];
|
|
3605
3670
|
var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
3606
3671
|
var _ref$testId = _ref.testId,
|
|
3607
3672
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
3608
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3673
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
3609
3674
|
return React__default.createElement("svg", Object.assign({
|
|
3610
3675
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3611
3676
|
viewBox: "0 0 20 20",
|
|
@@ -3620,11 +3685,11 @@ var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
3620
3685
|
});
|
|
3621
3686
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
3622
3687
|
|
|
3623
|
-
var _excluded$
|
|
3688
|
+
var _excluded$1$ = ["testId"];
|
|
3624
3689
|
var IconSync = React.forwardRef(function (_ref, ref) {
|
|
3625
3690
|
var _ref$testId = _ref.testId,
|
|
3626
3691
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
3627
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3692
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
3628
3693
|
return React__default.createElement("svg", Object.assign({
|
|
3629
3694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3630
3695
|
viewBox: "0 0 20 20",
|
|
@@ -3639,11 +3704,11 @@ var IconSync = React.forwardRef(function (_ref, ref) {
|
|
|
3639
3704
|
});
|
|
3640
3705
|
IconSync.displayName = 'IconSync';
|
|
3641
3706
|
|
|
3642
|
-
var _excluded$
|
|
3707
|
+
var _excluded$20 = ["testId"];
|
|
3643
3708
|
var IconTable = React.forwardRef(function (_ref, ref) {
|
|
3644
3709
|
var _ref$testId = _ref.testId,
|
|
3645
3710
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
3646
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3711
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
3647
3712
|
return React__default.createElement("svg", Object.assign({
|
|
3648
3713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3649
3714
|
fill: "none",
|
|
@@ -3665,11 +3730,11 @@ var IconTable = React.forwardRef(function (_ref, ref) {
|
|
|
3665
3730
|
});
|
|
3666
3731
|
IconTable.displayName = 'IconTable';
|
|
3667
3732
|
|
|
3668
|
-
var _excluded$
|
|
3733
|
+
var _excluded$21 = ["testId"];
|
|
3669
3734
|
var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
3670
3735
|
var _ref$testId = _ref.testId,
|
|
3671
3736
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
3672
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3737
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
3673
3738
|
return React__default.createElement("svg", Object.assign({
|
|
3674
3739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3675
3740
|
style: getIconStyles(props),
|
|
@@ -3683,11 +3748,11 @@ var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
|
3683
3748
|
});
|
|
3684
3749
|
IconTachometer.displayName = 'IconTachometer';
|
|
3685
3750
|
|
|
3686
|
-
var _excluded$
|
|
3751
|
+
var _excluded$22 = ["testId"];
|
|
3687
3752
|
var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
3688
3753
|
var _ref$testId = _ref.testId,
|
|
3689
3754
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
3690
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3755
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
3691
3756
|
return React__default.createElement("svg", Object.assign({
|
|
3692
3757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3693
3758
|
fill: "none",
|
|
@@ -3704,11 +3769,11 @@ var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
|
3704
3769
|
});
|
|
3705
3770
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
3706
3771
|
|
|
3707
|
-
var _excluded$
|
|
3772
|
+
var _excluded$23 = ["testId"];
|
|
3708
3773
|
var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
3709
3774
|
var _ref$testId = _ref.testId,
|
|
3710
3775
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
3711
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3776
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
3712
3777
|
return React__default.createElement("svg", Object.assign({
|
|
3713
3778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3714
3779
|
fill: "none",
|
|
@@ -3725,11 +3790,11 @@ var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
|
3725
3790
|
});
|
|
3726
3791
|
IconTimes.displayName = 'IconTimes';
|
|
3727
3792
|
|
|
3728
|
-
var _excluded$
|
|
3793
|
+
var _excluded$24 = ["testId"];
|
|
3729
3794
|
var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
3730
3795
|
var _ref$testId = _ref.testId,
|
|
3731
3796
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
3732
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3797
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
3733
3798
|
return React__default.createElement("svg", Object.assign({
|
|
3734
3799
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3735
3800
|
fill: "none",
|
|
@@ -3746,11 +3811,11 @@ var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
|
3746
3811
|
});
|
|
3747
3812
|
IconTrash.displayName = 'IconTrash';
|
|
3748
3813
|
|
|
3749
|
-
var _excluded$
|
|
3814
|
+
var _excluded$25 = ["testId"];
|
|
3750
3815
|
var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
3751
3816
|
var _ref$testId = _ref.testId,
|
|
3752
3817
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
3753
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3818
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
3754
3819
|
return React__default.createElement("svg", Object.assign({
|
|
3755
3820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3756
3821
|
fill: "none",
|
|
@@ -3765,11 +3830,11 @@ var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
|
3765
3830
|
});
|
|
3766
3831
|
IconUnderline.displayName = 'IconUnderline';
|
|
3767
3832
|
|
|
3768
|
-
var _excluded$
|
|
3833
|
+
var _excluded$26 = ["testId"];
|
|
3769
3834
|
var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
3770
3835
|
var _ref$testId = _ref.testId,
|
|
3771
3836
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
3772
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3837
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
3773
3838
|
return React__default.createElement("svg", Object.assign({
|
|
3774
3839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3775
3840
|
fill: "none",
|
|
@@ -3784,11 +3849,11 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
|
3784
3849
|
});
|
|
3785
3850
|
IconUndo.displayName = 'IconUndo';
|
|
3786
3851
|
|
|
3787
|
-
var _excluded$
|
|
3852
|
+
var _excluded$27 = ["testId"];
|
|
3788
3853
|
var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
3789
3854
|
var _ref$testId = _ref.testId,
|
|
3790
3855
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
3791
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3856
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
3792
3857
|
return React__default.createElement("svg", Object.assign({
|
|
3793
3858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3794
3859
|
fill: "none",
|
|
@@ -3810,11 +3875,11 @@ var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
|
3810
3875
|
});
|
|
3811
3876
|
IconUniversity.displayName = 'IconUniversity';
|
|
3812
3877
|
|
|
3813
|
-
var _excluded$
|
|
3878
|
+
var _excluded$28 = ["testId"];
|
|
3814
3879
|
var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
3815
3880
|
var _ref$testId = _ref.testId,
|
|
3816
3881
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
3817
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3882
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
3818
3883
|
return React__default.createElement("svg", Object.assign({
|
|
3819
3884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3820
3885
|
fill: "none",
|
|
@@ -3836,11 +3901,11 @@ var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
|
3836
3901
|
});
|
|
3837
3902
|
IconUnlock.displayName = 'IconUnlock';
|
|
3838
3903
|
|
|
3839
|
-
var _excluded$
|
|
3904
|
+
var _excluded$29 = ["testId"];
|
|
3840
3905
|
var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
3841
3906
|
var _ref$testId = _ref.testId,
|
|
3842
3907
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
3843
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3908
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
3844
3909
|
return React__default.createElement("svg", Object.assign({
|
|
3845
3910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3846
3911
|
fill: "none",
|
|
@@ -3866,11 +3931,11 @@ var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
|
3866
3931
|
});
|
|
3867
3932
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
3868
3933
|
|
|
3869
|
-
var _excluded$
|
|
3934
|
+
var _excluded$2a = ["testId"];
|
|
3870
3935
|
var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
3871
3936
|
var _ref$testId = _ref.testId,
|
|
3872
3937
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
3873
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3938
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
3874
3939
|
return React__default.createElement("svg", Object.assign({
|
|
3875
3940
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3876
3941
|
fill: "none",
|
|
@@ -3885,11 +3950,11 @@ var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
|
3885
3950
|
});
|
|
3886
3951
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
3887
3952
|
|
|
3888
|
-
var _excluded$
|
|
3953
|
+
var _excluded$2b = ["testId"];
|
|
3889
3954
|
var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
3890
3955
|
var _ref$testId = _ref.testId,
|
|
3891
3956
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
3892
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3957
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
3893
3958
|
return React__default.createElement("svg", Object.assign({
|
|
3894
3959
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3895
3960
|
fill: "none",
|
|
@@ -3906,11 +3971,11 @@ var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
|
3906
3971
|
});
|
|
3907
3972
|
IconUserLight.displayName = 'IconUserLight';
|
|
3908
3973
|
|
|
3909
|
-
var _excluded$
|
|
3974
|
+
var _excluded$2c = ["testId"];
|
|
3910
3975
|
var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
3911
3976
|
var _ref$testId = _ref.testId,
|
|
3912
3977
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
3913
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3978
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
3914
3979
|
return React__default.createElement("svg", Object.assign({
|
|
3915
3980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3916
3981
|
fill: "none",
|
|
@@ -3925,11 +3990,11 @@ var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
|
3925
3990
|
});
|
|
3926
3991
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
3927
3992
|
|
|
3928
|
-
var _excluded$
|
|
3993
|
+
var _excluded$2d = ["testId"];
|
|
3929
3994
|
var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
3930
3995
|
var _ref$testId = _ref.testId,
|
|
3931
3996
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
3932
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3997
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
3933
3998
|
return React__default.createElement("svg", Object.assign({
|
|
3934
3999
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3935
4000
|
fill: "none",
|
|
@@ -3953,11 +4018,11 @@ var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
|
3953
4018
|
});
|
|
3954
4019
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
3955
4020
|
|
|
3956
|
-
var _excluded$
|
|
4021
|
+
var _excluded$2e = ["testId"];
|
|
3957
4022
|
var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
3958
4023
|
var _ref$testId = _ref.testId,
|
|
3959
4024
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
3960
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4025
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
3961
4026
|
return React__default.createElement("svg", Object.assign({
|
|
3962
4027
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3963
4028
|
fill: "none",
|
|
@@ -3979,11 +4044,11 @@ var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
|
3979
4044
|
});
|
|
3980
4045
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
3981
4046
|
|
|
3982
|
-
var _excluded$
|
|
4047
|
+
var _excluded$2f = ["testId"];
|
|
3983
4048
|
var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
3984
4049
|
var _ref$testId = _ref.testId,
|
|
3985
4050
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
3986
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4051
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
3987
4052
|
return React__default.createElement("svg", Object.assign({
|
|
3988
4053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3989
4054
|
fill: "none",
|
|
@@ -3998,11 +4063,11 @@ var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
|
3998
4063
|
});
|
|
3999
4064
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
4000
4065
|
|
|
4001
|
-
var _excluded$
|
|
4066
|
+
var _excluded$2g = ["testId"];
|
|
4002
4067
|
var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
4003
4068
|
var _ref$testId = _ref.testId,
|
|
4004
4069
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
4005
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4070
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
4006
4071
|
return React__default.createElement("svg", Object.assign({
|
|
4007
4072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4008
4073
|
fill: "none",
|
|
@@ -4019,11 +4084,11 @@ var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
|
4019
4084
|
});
|
|
4020
4085
|
IconUserTag.displayName = 'IconUserTag';
|
|
4021
4086
|
|
|
4022
|
-
var _excluded$
|
|
4087
|
+
var _excluded$2h = ["testId"];
|
|
4023
4088
|
var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
4024
4089
|
var _ref$testId = _ref.testId,
|
|
4025
4090
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
4026
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4091
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
4027
4092
|
return React__default.createElement("svg", Object.assign({
|
|
4028
4093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4029
4094
|
fill: "none",
|
|
@@ -4038,11 +4103,11 @@ var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
|
4038
4103
|
});
|
|
4039
4104
|
IconUserTie.displayName = 'IconUserTie';
|
|
4040
4105
|
|
|
4041
|
-
var _excluded$
|
|
4106
|
+
var _excluded$2i = ["testId"];
|
|
4042
4107
|
var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
4043
4108
|
var _ref$testId = _ref.testId,
|
|
4044
4109
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
4045
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4110
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
4046
4111
|
return React__default.createElement("svg", Object.assign({
|
|
4047
4112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4048
4113
|
fill: "none",
|
|
@@ -4057,11 +4122,11 @@ var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
|
4057
4122
|
});
|
|
4058
4123
|
IconUsers.displayName = 'IconUsers';
|
|
4059
4124
|
|
|
4060
|
-
var _excluded$
|
|
4125
|
+
var _excluded$2j = ["testId"];
|
|
4061
4126
|
var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
4062
4127
|
var _ref$testId = _ref.testId,
|
|
4063
4128
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
4064
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4129
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
4065
4130
|
return React__default.createElement("svg", Object.assign({
|
|
4066
4131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4067
4132
|
fill: "none",
|
|
@@ -4076,11 +4141,11 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
|
4076
4141
|
});
|
|
4077
4142
|
IconVideo.displayName = 'IconVideo';
|
|
4078
4143
|
|
|
4079
|
-
var _excluded$
|
|
4144
|
+
var _excluded$2k = ["testId"];
|
|
4080
4145
|
var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
4081
4146
|
var _ref$testId = _ref.testId,
|
|
4082
4147
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
4083
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4148
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
4084
4149
|
return React__default.createElement("svg", Object.assign({
|
|
4085
4150
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4086
4151
|
fill: "none",
|
|
@@ -4095,11 +4160,11 @@ var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
|
4095
4160
|
});
|
|
4096
4161
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
4097
4162
|
|
|
4098
|
-
var _excluded$
|
|
4163
|
+
var _excluded$2l = ["testId"];
|
|
4099
4164
|
var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
4100
4165
|
var _ref$testId = _ref.testId,
|
|
4101
4166
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
4102
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4167
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
4103
4168
|
return React__default.createElement("svg", Object.assign({
|
|
4104
4169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4105
4170
|
fill: "none",
|
|
@@ -4114,11 +4179,11 @@ var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
|
4114
4179
|
});
|
|
4115
4180
|
IconVolume.displayName = 'IconVolume';
|
|
4116
4181
|
|
|
4117
|
-
var _excluded$
|
|
4182
|
+
var _excluded$2m = ["testId"];
|
|
4118
4183
|
var IconWrench = React.forwardRef(function (_ref, ref) {
|
|
4119
4184
|
var _ref$testId = _ref.testId,
|
|
4120
4185
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
4121
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4186
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
4122
4187
|
return React__default.createElement("svg", Object.assign({
|
|
4123
4188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4124
4189
|
fill: "none",
|
|
@@ -4163,10 +4228,6 @@ var getLocalTranslation = function getLocalTranslation(key) {
|
|
|
4163
4228
|
return key;
|
|
4164
4229
|
};
|
|
4165
4230
|
|
|
4166
|
-
var capitalizeFirstLetter = function capitalizeFirstLetter(text) {
|
|
4167
|
-
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
4168
|
-
};
|
|
4169
|
-
|
|
4170
4231
|
var styles$7 = {"keyboard-key":"_14Od2","keyboard-key--light":"_3hU2t","keyboard-key__character":"_31UYJ"};
|
|
4171
4232
|
|
|
4172
4233
|
var KeyboardKey = function KeyboardKey(_ref) {
|
|
@@ -4212,6 +4273,7 @@ var isFocusingEditableElement = function isFocusingEditableElement() {
|
|
|
4212
4273
|
return false;
|
|
4213
4274
|
};
|
|
4214
4275
|
|
|
4276
|
+
var _excluded$2n = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
4215
4277
|
var PaginationControls = function PaginationControls(_ref) {
|
|
4216
4278
|
var _ref$hasPrevious = _ref.hasPrevious,
|
|
4217
4279
|
hasPrevious = _ref$hasPrevious === void 0 ? true : _ref$hasPrevious,
|
|
@@ -4220,7 +4282,10 @@ var PaginationControls = function PaginationControls(_ref) {
|
|
|
4220
4282
|
onPreviousClick = _ref.onPreviousClick,
|
|
4221
4283
|
onNextClick = _ref.onNextClick,
|
|
4222
4284
|
testId = _ref.testId,
|
|
4223
|
-
scrollTarget = _ref.scrollTarget
|
|
4285
|
+
scrollTarget = _ref.scrollTarget,
|
|
4286
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
4287
|
+
var _getDataProps = getDataProps(otherProps),
|
|
4288
|
+
dataProps = _getDataProps.dataProps;
|
|
4224
4289
|
var scrollToTop = function scrollToTop() {
|
|
4225
4290
|
if (scrollTarget !== null && scrollTarget !== void 0 && scrollTarget.current) {
|
|
4226
4291
|
var target = scrollTarget.current.getBoundingClientRect();
|
|
@@ -4252,10 +4317,10 @@ var PaginationControls = function PaginationControls(_ref) {
|
|
|
4252
4317
|
break;
|
|
4253
4318
|
}
|
|
4254
4319
|
});
|
|
4255
|
-
return React__default.createElement("div", {
|
|
4320
|
+
return React__default.createElement("div", Object.assign({}, dataProps, {
|
|
4256
4321
|
className: styles$6['pagination-controls'],
|
|
4257
4322
|
"data-testid": testId
|
|
4258
|
-
}, React__default.createElement(Button$1, {
|
|
4323
|
+
}), React__default.createElement(Button$1, {
|
|
4259
4324
|
disabled: !hasPrevious,
|
|
4260
4325
|
onClick: handlePreviousClick,
|
|
4261
4326
|
title: React__default.createElement(React__default.Fragment, null, capitalizeFirstLetter(getLocalizedString('default.PREVIOUS')), "\xA0\xA0", React__default.createElement(KeyboardKey, {
|
|
@@ -4285,6 +4350,7 @@ var LINK_TARGET = {
|
|
|
4285
4350
|
|
|
4286
4351
|
var styles$8 = {"link--primary":"_1mKoj","link--contrast":"_HUvH1"};
|
|
4287
4352
|
|
|
4353
|
+
var _excluded$2o = ["href", "target", "theme", "onClick", "children"];
|
|
4288
4354
|
var Link = function Link(_ref) {
|
|
4289
4355
|
var _classNames;
|
|
4290
4356
|
var href = _ref.href,
|
|
@@ -4293,13 +4359,16 @@ var Link = function Link(_ref) {
|
|
|
4293
4359
|
_ref$theme = _ref.theme,
|
|
4294
4360
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
4295
4361
|
onClick = _ref.onClick,
|
|
4296
|
-
children = _ref.children
|
|
4297
|
-
|
|
4362
|
+
children = _ref.children,
|
|
4363
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
4364
|
+
var _getDataProps = getDataProps(otherProps),
|
|
4365
|
+
dataProps = _getDataProps.dataProps;
|
|
4366
|
+
return React__default.createElement("a", Object.assign({}, dataProps, {
|
|
4298
4367
|
className: classnames(styles$8['link'], (_classNames = {}, _classNames[styles$8['link--primary']] = theme === LINK_THEME.PRIMARY, _classNames[styles$8['link--contrast']] = theme === LINK_THEME.CONTRAST, _classNames)),
|
|
4299
4368
|
href: href,
|
|
4300
4369
|
target: target,
|
|
4301
4370
|
onClick: onClick
|
|
4302
|
-
}, children);
|
|
4371
|
+
}), children);
|
|
4303
4372
|
};
|
|
4304
4373
|
|
|
4305
4374
|
var TOAST_THEME = {
|
|
@@ -4609,7 +4678,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
4609
4678
|
}
|
|
4610
4679
|
};
|
|
4611
4680
|
|
|
4612
|
-
var _excluded$
|
|
4681
|
+
var _excluded$2p = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
4613
4682
|
var InlineBanner = function InlineBanner(_ref) {
|
|
4614
4683
|
var _classnames, _classnames2;
|
|
4615
4684
|
var children = _ref.children,
|
|
@@ -4621,7 +4690,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
4621
4690
|
primaryButton = _ref.primaryButton,
|
|
4622
4691
|
secondaryButton = _ref.secondaryButton,
|
|
4623
4692
|
testId = _ref.testId,
|
|
4624
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4693
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
4625
4694
|
var positionStyles = usePositionStyles(positionProps);
|
|
4626
4695
|
var multiLine = !!title;
|
|
4627
4696
|
var dismissable = !!onClose;
|
|
@@ -5182,7 +5251,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
5182
5251
|
})));
|
|
5183
5252
|
};
|
|
5184
5253
|
|
|
5185
|
-
var _excluded$
|
|
5254
|
+
var _excluded$2q = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
5186
5255
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
5187
5256
|
var _ref$placeholder = _ref.placeholder,
|
|
5188
5257
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -5191,7 +5260,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
5191
5260
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
5192
5261
|
prefix = _ref.prefix,
|
|
5193
5262
|
duration = _ref.duration,
|
|
5194
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5263
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
5195
5264
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
5196
5265
|
placeholder: placeholder,
|
|
5197
5266
|
autoComplete: autoComplete,
|
|
@@ -5483,7 +5552,7 @@ var ALIGNMENTS = {
|
|
|
5483
5552
|
|
|
5484
5553
|
var styles$p = {"text":"_32amZ","text__body":"_ayJRy","text__caption":"_3g1gi","text__insight":"_20Phg","text--bold":"_A0AyZ","text--italic":"_3jayQ","text--underline":"_GOcFw","text--monospace":"_3TfGK","text--align-left":"_b8gto","text--align-right":"_ecyH1","text--align-center":"_xBgXc","text--align-justify":"_280D5"};
|
|
5485
5554
|
|
|
5486
|
-
var _excluded$
|
|
5555
|
+
var _excluded$2r = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
5487
5556
|
var Text = function Text(_ref) {
|
|
5488
5557
|
var _classnames;
|
|
5489
5558
|
var children = _ref.children,
|
|
@@ -5493,7 +5562,7 @@ var Text = function Text(_ref) {
|
|
|
5493
5562
|
alignment = _ref.alignment,
|
|
5494
5563
|
color = _ref.color,
|
|
5495
5564
|
testId = _ref.testId,
|
|
5496
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5565
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
5497
5566
|
var positionStyles = usePositionStyles(positionProps);
|
|
5498
5567
|
var elementProps = {
|
|
5499
5568
|
style: _extends({
|
|
@@ -5699,7 +5768,7 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
5699
5768
|
|
|
5700
5769
|
var styles$q = {"card":"_2o1ez","card__body":"_1PFiJ","card__body--interactive":"_3dQzA","card--focus":"_5dJZO","card__body--focus":"_DWgI_","card__body--disabled":"_24dNX","card__body--with-kebab":"_2LVaD","card__kebab":"_L9ZA7","card__kebab--disabled":"_5YidV"};
|
|
5701
5770
|
|
|
5702
|
-
var _excluded$
|
|
5771
|
+
var _excluded$2s = ["children", "onClick", "isSelected", "disabled", "actions", "testId"];
|
|
5703
5772
|
var Card = function Card(_ref) {
|
|
5704
5773
|
var _classnames, _classnames2, _classnames3;
|
|
5705
5774
|
var children = _ref.children,
|
|
@@ -5710,7 +5779,7 @@ var Card = function Card(_ref) {
|
|
|
5710
5779
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
5711
5780
|
actions = _ref.actions,
|
|
5712
5781
|
testId = _ref.testId,
|
|
5713
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5782
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
5714
5783
|
var positionStyles = usePositionStyles(positionProps);
|
|
5715
5784
|
return React__default.createElement("div", {
|
|
5716
5785
|
className: classnames(styles$q['card']),
|
|
@@ -6045,14 +6114,14 @@ var SKELETON_COMPONENT = {
|
|
|
6045
6114
|
PILL: 'pill'
|
|
6046
6115
|
};
|
|
6047
6116
|
|
|
6048
|
-
var _excluded$
|
|
6117
|
+
var _excluded$2t = ["as", "testId", "width", "height"];
|
|
6049
6118
|
var Skeleton = function Skeleton(_ref) {
|
|
6050
6119
|
var _classnames;
|
|
6051
6120
|
var as = _ref.as,
|
|
6052
6121
|
testId = _ref.testId,
|
|
6053
6122
|
width = _ref.width,
|
|
6054
6123
|
height = _ref.height,
|
|
6055
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6124
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
6056
6125
|
var positioning = usePositionStyles(positionStyles);
|
|
6057
6126
|
return React__default.createElement("div", {
|
|
6058
6127
|
"data-testid": testId,
|
|
@@ -6595,7 +6664,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
6595
6664
|
|
|
6596
6665
|
var styles$I = {"hint-modal":"_1b47y","hint-modal--after-open":"_2MB4p","hint-modal--before-close":"_3VYQo","hint-modal__overlay":"_3Enme","hint-modal__image":"_2Nn7v","hint-modal__body":"_bzN9e","hint-modal__close-button":"_3xbis"};
|
|
6597
6666
|
|
|
6598
|
-
var _excluded$
|
|
6667
|
+
var _excluded$2u = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
6599
6668
|
var HintModal = function HintModal(_ref) {
|
|
6600
6669
|
var header = _ref.header,
|
|
6601
6670
|
children = _ref.children,
|
|
@@ -6604,7 +6673,7 @@ var HintModal = function HintModal(_ref) {
|
|
|
6604
6673
|
modalId = _ref.modalId,
|
|
6605
6674
|
primaryButton = _ref.primaryButton,
|
|
6606
6675
|
testId = _ref.testId,
|
|
6607
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6676
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
6608
6677
|
var _useState = React.useState(false),
|
|
6609
6678
|
doNotShowAgain = _useState[0],
|
|
6610
6679
|
setDoNotShowAgain = _useState[1];
|
|
@@ -6828,7 +6897,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
6828
6897
|
};
|
|
6829
6898
|
var DataTableEditableCell = React.forwardRef(DataTableEditableCellElement);
|
|
6830
6899
|
|
|
6831
|
-
var _excluded$
|
|
6900
|
+
var _excluded$2v = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
6832
6901
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
6833
6902
|
var _classnames;
|
|
6834
6903
|
var children = _ref.children,
|
|
@@ -6840,7 +6909,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
6840
6909
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
6841
6910
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
6842
6911
|
testId = _ref.testId,
|
|
6843
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6912
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
6844
6913
|
var _useDataTableContext = useDataTableContext(),
|
|
6845
6914
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
6846
6915
|
var styleNames = classnames(styles$z['item'], (_classnames = {}, _classnames[styles$z['clickable']] = onClick, _classnames[styles$z['selected']] = isSelected, _classnames));
|
|
@@ -7252,11 +7321,11 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
7252
7321
|
|
|
7253
7322
|
var styles$M = {"custom-control":"_1JTKu"};
|
|
7254
7323
|
|
|
7255
|
-
var _excluded$
|
|
7324
|
+
var _excluded$2w = ["children"];
|
|
7256
7325
|
function CustomControl(_ref) {
|
|
7257
7326
|
var _props$getValue;
|
|
7258
7327
|
var children = _ref.children,
|
|
7259
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7328
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
7260
7329
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
7261
7330
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
7262
7331
|
return React__default.createElement(Select.components.Control, Object.assign({}, props), SelectedOptionPrefix && selectedOption ? React__default.createElement("div", {
|
|
@@ -7273,10 +7342,10 @@ function CustomControl(_ref) {
|
|
|
7273
7342
|
}, props)), children)) : children);
|
|
7274
7343
|
}
|
|
7275
7344
|
|
|
7276
|
-
var _excluded$
|
|
7345
|
+
var _excluded$2x = ["children"];
|
|
7277
7346
|
function CustomOption(_ref) {
|
|
7278
7347
|
var children = _ref.children,
|
|
7279
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7348
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
7280
7349
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
7281
7350
|
return React__default.createElement(Select.components.Option, Object.assign({}, props), React__default.createElement(UserCustomOption, Object.assign({}, props), children));
|
|
7282
7351
|
}
|
|
@@ -7430,10 +7499,10 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
7430
7499
|
|
|
7431
7500
|
var styles$N = {"custom-menu-text-field":"_2bu6-","custom-menu-hr":"_1cgU7","custom-menu-div":"_1khlU"};
|
|
7432
7501
|
|
|
7433
|
-
var _excluded$
|
|
7502
|
+
var _excluded$2y = ["children"];
|
|
7434
7503
|
function CustomMenu(_ref) {
|
|
7435
7504
|
var children = _ref.children,
|
|
7436
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7505
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
7437
7506
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
7438
7507
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
7439
7508
|
onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
|
|
@@ -8150,11 +8219,11 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
8150
8219
|
}, toolbar)));
|
|
8151
8220
|
};
|
|
8152
8221
|
|
|
8153
|
-
var _excluded$
|
|
8222
|
+
var _excluded$2z = ["prefix", "suffix"];
|
|
8154
8223
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
8155
8224
|
var prefix = _ref.prefix,
|
|
8156
8225
|
suffix = _ref.suffix,
|
|
8157
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8226
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
8158
8227
|
var _useTextField = useTextField(_extends({}, props, {
|
|
8159
8228
|
ref: ref
|
|
8160
8229
|
})),
|
|
@@ -8659,6 +8728,7 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8659
8728
|
caption = _ref.caption,
|
|
8660
8729
|
error = _ref.error,
|
|
8661
8730
|
placeholder = _ref.placeholder,
|
|
8731
|
+
prefix = _ref.prefix,
|
|
8662
8732
|
noOptionsMessage = _ref.noOptionsMessage,
|
|
8663
8733
|
disabled = _ref.disabled,
|
|
8664
8734
|
_ref$closeOnSelect = _ref.closeOnSelect,
|
|
@@ -8695,7 +8765,9 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8695
8765
|
var defaultNoOptionsMessage = noOptionsMessage && typeof noOptionsMessage === 'string' ? function () {
|
|
8696
8766
|
return noOptionsMessage;
|
|
8697
8767
|
} : undefined;
|
|
8698
|
-
return React__default.createElement(Field, Object.assign({}, fieldProps), React__default.createElement(
|
|
8768
|
+
return React__default.createElement(Field, Object.assign({}, fieldProps), React__default.createElement(AffixContainer, {
|
|
8769
|
+
prefix: prefix
|
|
8770
|
+
}, React__default.createElement(Select__default, {
|
|
8699
8771
|
inputId: controllers.id,
|
|
8700
8772
|
options: options,
|
|
8701
8773
|
isDisabled: disabled,
|
|
@@ -8734,17 +8806,17 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8734
8806
|
},
|
|
8735
8807
|
isSearchable: isSearchable,
|
|
8736
8808
|
menuIsOpen: isMenuInputFocus || undefined
|
|
8737
|
-
}));
|
|
8809
|
+
})));
|
|
8738
8810
|
};
|
|
8739
8811
|
|
|
8740
8812
|
var styles$11 = {"custom-list":"_12jq3"};
|
|
8741
8813
|
|
|
8742
|
-
var _excluded$
|
|
8814
|
+
var _excluded$2A = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
8743
8815
|
var CustomList = function CustomList(_ref) {
|
|
8744
8816
|
var children = _ref.children,
|
|
8745
8817
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
8746
8818
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
8747
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8819
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
8748
8820
|
var showFooter = hasMoreOptions;
|
|
8749
8821
|
if (props.selectProps.inputValue === '' && typeof hasMoreOptionsFirstLoad === 'boolean') {
|
|
8750
8822
|
showFooter = hasMoreOptionsFirstLoad;
|
|
@@ -8756,10 +8828,10 @@ var CustomList = function CustomList(_ref) {
|
|
|
8756
8828
|
}, getLocalizedString('main.START_TYPING_TO_SEE_MORE_OPTIONS')))));
|
|
8757
8829
|
};
|
|
8758
8830
|
|
|
8759
|
-
var _excluded$
|
|
8831
|
+
var _excluded$2B = ["loadOptions"];
|
|
8760
8832
|
var AsyncSelectField = function AsyncSelectField(_ref) {
|
|
8761
8833
|
var loadOptions = _ref.loadOptions,
|
|
8762
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8834
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
8763
8835
|
var _useState = React.useState(false),
|
|
8764
8836
|
hasMoreOptions = _useState[0],
|
|
8765
8837
|
setHasMoreOptions = _useState[1];
|
|
@@ -9567,7 +9639,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
9567
9639
|
})));
|
|
9568
9640
|
};
|
|
9569
9641
|
|
|
9570
|
-
var _excluded$
|
|
9642
|
+
var _excluded$2C = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
9571
9643
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
9572
9644
|
var _ref$interval = _ref.interval,
|
|
9573
9645
|
interval = _ref$interval === void 0 ? 15 : _ref$interval,
|
|
@@ -9576,7 +9648,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
9576
9648
|
_ref$endField = _ref.endField,
|
|
9577
9649
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
9578
9650
|
duration = _ref.duration,
|
|
9579
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9651
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
9580
9652
|
var internalRef = React.useRef(null);
|
|
9581
9653
|
var ref = forwardedRef || internalRef;
|
|
9582
9654
|
var _useState = React.useState(allOtherProps.defaultValue),
|
|
@@ -9755,13 +9827,13 @@ var TimeRangeField = function TimeRangeField(_ref) {
|
|
|
9755
9827
|
})));
|
|
9756
9828
|
};
|
|
9757
9829
|
|
|
9758
|
-
var _excluded$
|
|
9830
|
+
var _excluded$2D = ["currencySymbol", "step"];
|
|
9759
9831
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
9760
9832
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
9761
9833
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
9762
9834
|
_ref$step = _ref.step,
|
|
9763
9835
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
9764
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9836
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
9765
9837
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9766
9838
|
ref: ref
|
|
9767
9839
|
})),
|
|
@@ -9795,7 +9867,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
|
9795
9867
|
};
|
|
9796
9868
|
var CurrencyField = React.forwardRef(CurrencyFieldElement);
|
|
9797
9869
|
|
|
9798
|
-
var _excluded$
|
|
9870
|
+
var _excluded$2E = ["max", "min", "precision", "stepSize", "prefix"];
|
|
9799
9871
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
9800
9872
|
var _ref$max = _ref.max,
|
|
9801
9873
|
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
@@ -9806,7 +9878,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
9806
9878
|
_ref$stepSize = _ref.stepSize,
|
|
9807
9879
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
9808
9880
|
prefix = _ref.prefix,
|
|
9809
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9881
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
9810
9882
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9811
9883
|
ref: ref
|
|
9812
9884
|
})),
|
|
@@ -10785,12 +10857,12 @@ var CountrySelector = function CountrySelector(_ref) {
|
|
|
10785
10857
|
}))));
|
|
10786
10858
|
};
|
|
10787
10859
|
|
|
10788
|
-
var _excluded$
|
|
10860
|
+
var _excluded$2F = ["disabledCountry"];
|
|
10789
10861
|
var PhoneField = function PhoneField(_ref) {
|
|
10790
10862
|
var _classNames;
|
|
10791
10863
|
var _ref$disabledCountry = _ref.disabledCountry,
|
|
10792
10864
|
disabledCountry = _ref$disabledCountry === void 0 ? false : _ref$disabledCountry,
|
|
10793
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10865
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
10794
10866
|
var inputRef = React.useRef(null);
|
|
10795
10867
|
var _usePhoneField = usePhoneField(_extends({}, props, {
|
|
10796
10868
|
ref: inputRef
|
|
@@ -10875,14 +10947,14 @@ var PhoneField = function PhoneField(_ref) {
|
|
|
10875
10947
|
|
|
10876
10948
|
var styles$16 = {"badge":"_1QLaK","badge--warning":"_qsFWw","badge--danger":"_359Cc","badge--success":"_2AOEK","badge--info":"_1mLjf"};
|
|
10877
10949
|
|
|
10878
|
-
var _excluded$
|
|
10950
|
+
var _excluded$2G = ["children", "theme", "title", "testId"];
|
|
10879
10951
|
var Badge = function Badge(_ref, forwardedRef) {
|
|
10880
10952
|
var _classnames;
|
|
10881
10953
|
var children = _ref.children,
|
|
10882
10954
|
theme = _ref.theme,
|
|
10883
10955
|
title = _ref.title,
|
|
10884
10956
|
testId = _ref.testId,
|
|
10885
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10957
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
10886
10958
|
var internalRef = React.useRef(null);
|
|
10887
10959
|
var ref = forwardedRef || internalRef;
|
|
10888
10960
|
React.useLayoutEffect(function () {
|