@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.modern.js
CHANGED
|
@@ -183,6 +183,61 @@ var Stack = function Stack(_ref) {
|
|
|
183
183
|
|
|
184
184
|
var styles$1 = {"caption":"_3s_-x","label":"_29W-o","label--truncate":"_10hPY","toggle":"_3VC9U","toggle__label":"_LbMlH","toggle__caption":"_15FwS","toggle__switch":"_lHlzh"};
|
|
185
185
|
|
|
186
|
+
var capitalizeFirstLetter = function capitalizeFirstLetter(text) {
|
|
187
|
+
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
188
|
+
};
|
|
189
|
+
var kebabize = function kebabize(str) {
|
|
190
|
+
return str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, function ($, ofs) {
|
|
191
|
+
return (ofs ? '-' : '') + $.toLowerCase();
|
|
192
|
+
});
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
var _excluded$2 = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
|
|
196
|
+
var getPositionProps = function getPositionProps(_ref) {
|
|
197
|
+
var m = _ref.m,
|
|
198
|
+
margin = _ref.margin,
|
|
199
|
+
mt = _ref.mt,
|
|
200
|
+
marginTop = _ref.marginTop,
|
|
201
|
+
mr = _ref.mr,
|
|
202
|
+
marginRight = _ref.marginRight,
|
|
203
|
+
mb = _ref.mb,
|
|
204
|
+
marginBottom = _ref.marginBottom,
|
|
205
|
+
ml = _ref.ml,
|
|
206
|
+
marginLeft = _ref.marginLeft,
|
|
207
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
208
|
+
return {
|
|
209
|
+
positionProps: {
|
|
210
|
+
m: m,
|
|
211
|
+
margin: margin,
|
|
212
|
+
mt: mt,
|
|
213
|
+
marginTop: marginTop,
|
|
214
|
+
mr: mr,
|
|
215
|
+
marginRight: marginRight,
|
|
216
|
+
mb: mb,
|
|
217
|
+
marginBottom: marginBottom,
|
|
218
|
+
ml: ml,
|
|
219
|
+
marginLeft: marginLeft
|
|
220
|
+
},
|
|
221
|
+
otherProps: otherProps
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
var getDataProps = function getDataProps(props) {
|
|
225
|
+
return Object.keys(props).reduce(function (acc, key) {
|
|
226
|
+
if (key.startsWith('data')) {
|
|
227
|
+
var _Object$assign;
|
|
228
|
+
acc.dataProps = Object.assign((_Object$assign = {}, _Object$assign[kebabize(key)] = props[key], _Object$assign), acc.dataProps);
|
|
229
|
+
} else {
|
|
230
|
+
var _Object$assign2;
|
|
231
|
+
acc.otherProps = Object.assign((_Object$assign2 = {}, _Object$assign2[key] = props[key], _Object$assign2), acc.otherProps);
|
|
232
|
+
}
|
|
233
|
+
return acc;
|
|
234
|
+
}, {
|
|
235
|
+
dataProps: {},
|
|
236
|
+
otherProps: {}
|
|
237
|
+
});
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
var _excluded$3 = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
|
|
186
241
|
var Toggle = function Toggle(_ref) {
|
|
187
242
|
var checked = _ref.checked,
|
|
188
243
|
label = _ref.label,
|
|
@@ -191,12 +246,15 @@ var Toggle = function Toggle(_ref) {
|
|
|
191
246
|
_ref$disabled = _ref.disabled,
|
|
192
247
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
193
248
|
id = _ref.id,
|
|
194
|
-
testId = _ref.testId
|
|
249
|
+
testId = _ref.testId,
|
|
250
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
251
|
+
var _getDataProps = getDataProps(otherProps),
|
|
252
|
+
dataProps = _getDataProps.dataProps;
|
|
195
253
|
return React__default.createElement(Stack, {
|
|
196
254
|
space: 8
|
|
197
|
-
}, React__default.createElement("label", {
|
|
255
|
+
}, React__default.createElement("label", Object.assign({}, dataProps, {
|
|
198
256
|
className: styles$1['toggle']
|
|
199
|
-
}, React__default.createElement("input", {
|
|
257
|
+
}), React__default.createElement("input", {
|
|
200
258
|
type: "checkbox",
|
|
201
259
|
checked: checked,
|
|
202
260
|
onChange: onChange,
|
|
@@ -675,8 +733,8 @@ var BUTTON_TARGETS = {
|
|
|
675
733
|
SELF: '_self'
|
|
676
734
|
};
|
|
677
735
|
|
|
678
|
-
var _excluded$
|
|
679
|
-
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position"];
|
|
736
|
+
var _excluded$4 = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
|
|
737
|
+
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
|
|
680
738
|
var Button = function Button(_ref, ref) {
|
|
681
739
|
var _classnames;
|
|
682
740
|
var children = _ref.children,
|
|
@@ -700,7 +758,12 @@ var Button = function Button(_ref, ref) {
|
|
|
700
758
|
target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
|
|
701
759
|
testId = _ref.testId,
|
|
702
760
|
size = _ref.size,
|
|
703
|
-
|
|
761
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
762
|
+
var _getPositionProps = getPositionProps(rest),
|
|
763
|
+
positionProps = _getPositionProps.positionProps,
|
|
764
|
+
otherProps = _getPositionProps.otherProps;
|
|
765
|
+
var _getDataProps = getDataProps(otherProps),
|
|
766
|
+
dataProps = _getDataProps.dataProps;
|
|
704
767
|
var contrastSpinner = [BUTTON_THEMES.PRIMARY, BUTTON_THEMES.DANGER, BUTTON_THEMES.UPSELL, BUTTON_THEMES.MARKETING, BUTTON_THEMES.LINK_CONTRAST];
|
|
705
768
|
var childrenArr = Children.toArray(children);
|
|
706
769
|
var isIconOnly = childrenArr.length === 1 && typeof childrenArr[0] != 'string';
|
|
@@ -721,7 +784,8 @@ var Button = function Button(_ref, ref) {
|
|
|
721
784
|
ref: ref,
|
|
722
785
|
target: target,
|
|
723
786
|
"data-testid": testId,
|
|
724
|
-
position: positionProps
|
|
787
|
+
position: positionProps,
|
|
788
|
+
dataProps: dataProps
|
|
725
789
|
}, React__default.createElement(Inline, {
|
|
726
790
|
space: 8,
|
|
727
791
|
alignItems: "center"
|
|
@@ -746,9 +810,10 @@ var ButtonElement = forwardRef(function (_ref2, ref) {
|
|
|
746
810
|
target = _ref2.target,
|
|
747
811
|
children = _ref2.children,
|
|
748
812
|
position = _ref2.position,
|
|
813
|
+
dataProps = _ref2.dataProps,
|
|
749
814
|
rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
750
815
|
var positionStyles = usePositionStyles(position);
|
|
751
|
-
var commonProps = {
|
|
816
|
+
var commonProps = _extends({
|
|
752
817
|
id: id,
|
|
753
818
|
onClick: onClick,
|
|
754
819
|
onMouseEnter: onMouseEnter,
|
|
@@ -759,7 +824,7 @@ var ButtonElement = forwardRef(function (_ref2, ref) {
|
|
|
759
824
|
className: className,
|
|
760
825
|
disabled: disabled,
|
|
761
826
|
style: positionStyles
|
|
762
|
-
};
|
|
827
|
+
}, dataProps);
|
|
763
828
|
if (href) {
|
|
764
829
|
return React__default.createElement("a", Object.assign({}, commonProps, rest, {
|
|
765
830
|
href: href,
|
|
@@ -798,11 +863,11 @@ var getIconStyles = function getIconStyles(_ref) {
|
|
|
798
863
|
}, styles);
|
|
799
864
|
};
|
|
800
865
|
|
|
801
|
-
var _excluded$
|
|
866
|
+
var _excluded$5 = ["testId"];
|
|
802
867
|
var IconInfoCircle = forwardRef(function (_ref, ref) {
|
|
803
868
|
var _ref$testId = _ref.testId,
|
|
804
869
|
testId = _ref$testId === void 0 ? 'icon-info-circle' : _ref$testId,
|
|
805
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
870
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
806
871
|
return React__default.createElement("svg", Object.assign({
|
|
807
872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
808
873
|
fill: "none",
|
|
@@ -819,11 +884,11 @@ var IconInfoCircle = forwardRef(function (_ref, ref) {
|
|
|
819
884
|
});
|
|
820
885
|
IconInfoCircle.displayName = 'IconInfoCircle';
|
|
821
886
|
|
|
822
|
-
var _excluded$
|
|
887
|
+
var _excluded$6 = ["testId"];
|
|
823
888
|
var IconAnalytics = forwardRef(function (_ref, ref) {
|
|
824
889
|
var _ref$testId = _ref.testId,
|
|
825
890
|
testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
|
|
826
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
891
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
827
892
|
return React__default.createElement("svg", Object.assign({
|
|
828
893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
829
894
|
fill: "none",
|
|
@@ -840,11 +905,11 @@ var IconAnalytics = forwardRef(function (_ref, ref) {
|
|
|
840
905
|
});
|
|
841
906
|
IconAnalytics.displayName = 'IconAnalytics';
|
|
842
907
|
|
|
843
|
-
var _excluded$
|
|
908
|
+
var _excluded$7 = ["testId"];
|
|
844
909
|
var IconArrowDownWideShort = forwardRef(function (_ref, ref) {
|
|
845
910
|
var _ref$testId = _ref.testId,
|
|
846
911
|
testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
|
|
847
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
912
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
848
913
|
return React__default.createElement("svg", Object.assign({
|
|
849
914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
850
915
|
fill: "none",
|
|
@@ -859,11 +924,11 @@ var IconArrowDownWideShort = forwardRef(function (_ref, ref) {
|
|
|
859
924
|
});
|
|
860
925
|
IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
|
|
861
926
|
|
|
862
|
-
var _excluded$
|
|
927
|
+
var _excluded$8 = ["testId"];
|
|
863
928
|
var IconArrowDown = forwardRef(function (_ref, ref) {
|
|
864
929
|
var _ref$testId = _ref.testId,
|
|
865
930
|
testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
|
|
866
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
931
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
867
932
|
return React__default.createElement("svg", Object.assign({
|
|
868
933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
869
934
|
fill: "none",
|
|
@@ -880,11 +945,11 @@ var IconArrowDown = forwardRef(function (_ref, ref) {
|
|
|
880
945
|
});
|
|
881
946
|
IconArrowDown.displayName = 'IconArrowDown';
|
|
882
947
|
|
|
883
|
-
var _excluded$
|
|
948
|
+
var _excluded$9 = ["testId"];
|
|
884
949
|
var IconArrowLeft = forwardRef(function (_ref, ref) {
|
|
885
950
|
var _ref$testId = _ref.testId,
|
|
886
951
|
testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
|
|
887
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
952
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
|
888
953
|
return React__default.createElement("svg", Object.assign({
|
|
889
954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
890
955
|
fill: "none",
|
|
@@ -901,11 +966,11 @@ var IconArrowLeft = forwardRef(function (_ref, ref) {
|
|
|
901
966
|
});
|
|
902
967
|
IconArrowLeft.displayName = 'IconArrowLeft';
|
|
903
968
|
|
|
904
|
-
var _excluded$
|
|
969
|
+
var _excluded$a = ["testId"];
|
|
905
970
|
var IconArrowRight = forwardRef(function (_ref, ref) {
|
|
906
971
|
var _ref$testId = _ref.testId,
|
|
907
972
|
testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
|
|
908
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
973
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
|
|
909
974
|
return React__default.createElement("svg", Object.assign({
|
|
910
975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
911
976
|
fill: "none",
|
|
@@ -922,11 +987,11 @@ var IconArrowRight = forwardRef(function (_ref, ref) {
|
|
|
922
987
|
});
|
|
923
988
|
IconArrowRight.displayName = 'IconArrowRight';
|
|
924
989
|
|
|
925
|
-
var _excluded$
|
|
990
|
+
var _excluded$b = ["testId"];
|
|
926
991
|
var IconArrowToTop = forwardRef(function (_ref, ref) {
|
|
927
992
|
var _ref$testId = _ref.testId,
|
|
928
993
|
testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
|
|
929
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
994
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
|
930
995
|
return React__default.createElement("svg", Object.assign({
|
|
931
996
|
xmlns: "http://www.w3.org/2000/svg",
|
|
932
997
|
fill: "none",
|
|
@@ -941,11 +1006,11 @@ var IconArrowToTop = forwardRef(function (_ref, ref) {
|
|
|
941
1006
|
});
|
|
942
1007
|
IconArrowToTop.displayName = 'IconArrowToTop';
|
|
943
1008
|
|
|
944
|
-
var _excluded$
|
|
1009
|
+
var _excluded$c = ["testId"];
|
|
945
1010
|
var IconArrowTurnDownRight = forwardRef(function (_ref, ref) {
|
|
946
1011
|
var _ref$testId = _ref.testId,
|
|
947
1012
|
testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
|
|
948
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1013
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
|
|
949
1014
|
return React__default.createElement("svg", Object.assign({
|
|
950
1015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
951
1016
|
fill: "none",
|
|
@@ -968,11 +1033,11 @@ var IconArrowTurnDownRight = forwardRef(function (_ref, ref) {
|
|
|
968
1033
|
});
|
|
969
1034
|
IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
|
|
970
1035
|
|
|
971
|
-
var _excluded$
|
|
1036
|
+
var _excluded$d = ["testId"];
|
|
972
1037
|
var IconArrowUp = forwardRef(function (_ref, ref) {
|
|
973
1038
|
var _ref$testId = _ref.testId,
|
|
974
1039
|
testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
|
|
975
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1040
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
|
|
976
1041
|
return React__default.createElement("svg", Object.assign({
|
|
977
1042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
978
1043
|
fill: "none",
|
|
@@ -989,11 +1054,11 @@ var IconArrowUp = forwardRef(function (_ref, ref) {
|
|
|
989
1054
|
});
|
|
990
1055
|
IconArrowUp.displayName = 'IconArrowUp';
|
|
991
1056
|
|
|
992
|
-
var _excluded$
|
|
1057
|
+
var _excluded$e = ["testId"];
|
|
993
1058
|
var IconAward = forwardRef(function (_ref, ref) {
|
|
994
1059
|
var _ref$testId = _ref.testId,
|
|
995
1060
|
testId = _ref$testId === void 0 ? 'icon-award' : _ref$testId,
|
|
996
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1061
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
|
997
1062
|
return React__default.createElement("svg", Object.assign({
|
|
998
1063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
999
1064
|
fill: "none",
|
|
@@ -1010,11 +1075,11 @@ var IconAward = forwardRef(function (_ref, ref) {
|
|
|
1010
1075
|
});
|
|
1011
1076
|
IconAward.displayName = 'IconAward';
|
|
1012
1077
|
|
|
1013
|
-
var _excluded$
|
|
1078
|
+
var _excluded$f = ["testId"];
|
|
1014
1079
|
var IconAwfulMonochromatic = forwardRef(function (_ref, ref) {
|
|
1015
1080
|
var _ref$testId = _ref.testId,
|
|
1016
1081
|
testId = _ref$testId === void 0 ? 'icon-awful-monochromatic' : _ref$testId,
|
|
1017
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1082
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
|
1018
1083
|
return React__default.createElement("svg", Object.assign({
|
|
1019
1084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1020
1085
|
fill: "none",
|
|
@@ -1061,11 +1126,11 @@ var IconAwfulMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
1061
1126
|
});
|
|
1062
1127
|
IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
|
|
1063
1128
|
|
|
1064
|
-
var _excluded$
|
|
1129
|
+
var _excluded$g = ["testId"];
|
|
1065
1130
|
var IconAwful = forwardRef(function (_ref, ref) {
|
|
1066
1131
|
var _ref$testId = _ref.testId,
|
|
1067
1132
|
testId = _ref$testId === void 0 ? 'icon-awful' : _ref$testId,
|
|
1068
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1133
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
1069
1134
|
return React__default.createElement("svg", Object.assign({
|
|
1070
1135
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1071
1136
|
fill: "none",
|
|
@@ -1100,11 +1165,11 @@ var IconAwful = forwardRef(function (_ref, ref) {
|
|
|
1100
1165
|
});
|
|
1101
1166
|
IconAwful.displayName = 'IconAwful';
|
|
1102
1167
|
|
|
1103
|
-
var _excluded$
|
|
1168
|
+
var _excluded$h = ["testId"];
|
|
1104
1169
|
var IconBadMonochromatic = forwardRef(function (_ref, ref) {
|
|
1105
1170
|
var _ref$testId = _ref.testId,
|
|
1106
1171
|
testId = _ref$testId === void 0 ? 'icon-bad-monochromatic' : _ref$testId,
|
|
1107
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1172
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
1108
1173
|
return React__default.createElement("svg", Object.assign({
|
|
1109
1174
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
1175
|
fill: "none",
|
|
@@ -1137,11 +1202,11 @@ var IconBadMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
1137
1202
|
});
|
|
1138
1203
|
IconBadMonochromatic.displayName = 'IconBadMonochromatic';
|
|
1139
1204
|
|
|
1140
|
-
var _excluded$
|
|
1205
|
+
var _excluded$i = ["testId"];
|
|
1141
1206
|
var IconBad = forwardRef(function (_ref, ref) {
|
|
1142
1207
|
var _ref$testId = _ref.testId,
|
|
1143
1208
|
testId = _ref$testId === void 0 ? 'icon-bad' : _ref$testId,
|
|
1144
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1209
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
1145
1210
|
return React__default.createElement("svg", Object.assign({
|
|
1146
1211
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1147
1212
|
fill: "none",
|
|
@@ -1162,11 +1227,11 @@ var IconBad = forwardRef(function (_ref, ref) {
|
|
|
1162
1227
|
});
|
|
1163
1228
|
IconBad.displayName = 'IconBad';
|
|
1164
1229
|
|
|
1165
|
-
var _excluded$
|
|
1230
|
+
var _excluded$j = ["testId"];
|
|
1166
1231
|
var IconBalanceScaleLeft = forwardRef(function (_ref, ref) {
|
|
1167
1232
|
var _ref$testId = _ref.testId,
|
|
1168
1233
|
testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
|
|
1169
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1234
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
1170
1235
|
return React__default.createElement("svg", Object.assign({
|
|
1171
1236
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1172
1237
|
fill: "none",
|
|
@@ -1188,11 +1253,11 @@ var IconBalanceScaleLeft = forwardRef(function (_ref, ref) {
|
|
|
1188
1253
|
});
|
|
1189
1254
|
IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
|
|
1190
1255
|
|
|
1191
|
-
var _excluded$
|
|
1256
|
+
var _excluded$k = ["testId"];
|
|
1192
1257
|
var IconBalanceScale = forwardRef(function (_ref, ref) {
|
|
1193
1258
|
var _ref$testId = _ref.testId,
|
|
1194
1259
|
testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
|
|
1195
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1260
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
1196
1261
|
return React__default.createElement("svg", Object.assign({
|
|
1197
1262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1198
1263
|
fill: "none",
|
|
@@ -1214,11 +1279,11 @@ var IconBalanceScale = forwardRef(function (_ref, ref) {
|
|
|
1214
1279
|
});
|
|
1215
1280
|
IconBalanceScale.displayName = 'IconBalanceScale';
|
|
1216
1281
|
|
|
1217
|
-
var _excluded$
|
|
1282
|
+
var _excluded$l = ["testId"];
|
|
1218
1283
|
var IconBan = forwardRef(function (_ref, ref) {
|
|
1219
1284
|
var _ref$testId = _ref.testId,
|
|
1220
1285
|
testId = _ref$testId === void 0 ? 'icon-ban' : _ref$testId,
|
|
1221
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1286
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
1222
1287
|
return React__default.createElement("svg", Object.assign({
|
|
1223
1288
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1224
1289
|
fill: "none",
|
|
@@ -1233,11 +1298,11 @@ var IconBan = forwardRef(function (_ref, ref) {
|
|
|
1233
1298
|
});
|
|
1234
1299
|
IconBan.displayName = 'IconBan';
|
|
1235
1300
|
|
|
1236
|
-
var _excluded$
|
|
1301
|
+
var _excluded$m = ["testId"];
|
|
1237
1302
|
var IconBarsH = forwardRef(function (_ref, ref) {
|
|
1238
1303
|
var _ref$testId = _ref.testId,
|
|
1239
1304
|
testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
|
|
1240
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1305
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
1241
1306
|
return React__default.createElement("svg", Object.assign({
|
|
1242
1307
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1243
1308
|
fill: "none",
|
|
@@ -1254,11 +1319,11 @@ var IconBarsH = forwardRef(function (_ref, ref) {
|
|
|
1254
1319
|
});
|
|
1255
1320
|
IconBarsH.displayName = 'IconBarsH';
|
|
1256
1321
|
|
|
1257
|
-
var _excluded$
|
|
1322
|
+
var _excluded$n = ["testId"];
|
|
1258
1323
|
var IconBarsV = forwardRef(function (_ref, ref) {
|
|
1259
1324
|
var _ref$testId = _ref.testId,
|
|
1260
1325
|
testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
|
|
1261
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1326
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
|
|
1262
1327
|
return React__default.createElement("svg", Object.assign({
|
|
1263
1328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1264
1329
|
fill: "none",
|
|
@@ -1273,11 +1338,11 @@ var IconBarsV = forwardRef(function (_ref, ref) {
|
|
|
1273
1338
|
});
|
|
1274
1339
|
IconBarsV.displayName = 'IconBarsV';
|
|
1275
1340
|
|
|
1276
|
-
var _excluded$
|
|
1341
|
+
var _excluded$o = ["testId"];
|
|
1277
1342
|
var IconBell = forwardRef(function (_ref, ref) {
|
|
1278
1343
|
var _ref$testId = _ref.testId,
|
|
1279
1344
|
testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
|
|
1280
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1345
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
|
|
1281
1346
|
return React__default.createElement("svg", Object.assign({
|
|
1282
1347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1283
1348
|
fill: "none",
|
|
@@ -1294,11 +1359,11 @@ var IconBell = forwardRef(function (_ref, ref) {
|
|
|
1294
1359
|
});
|
|
1295
1360
|
IconBell.displayName = 'IconBell';
|
|
1296
1361
|
|
|
1297
|
-
var _excluded$
|
|
1362
|
+
var _excluded$p = ["testId"];
|
|
1298
1363
|
var IconBirthdayCake = forwardRef(function (_ref, ref) {
|
|
1299
1364
|
var _ref$testId = _ref.testId,
|
|
1300
1365
|
testId = _ref$testId === void 0 ? 'icon-birthday-cake' : _ref$testId,
|
|
1301
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1366
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
|
|
1302
1367
|
return React__default.createElement("svg", Object.assign({
|
|
1303
1368
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1304
1369
|
fill: "none",
|
|
@@ -1313,11 +1378,11 @@ var IconBirthdayCake = forwardRef(function (_ref, ref) {
|
|
|
1313
1378
|
});
|
|
1314
1379
|
IconBirthdayCake.displayName = 'IconBirthdayCake';
|
|
1315
1380
|
|
|
1316
|
-
var _excluded$
|
|
1381
|
+
var _excluded$q = ["testId"];
|
|
1317
1382
|
var IconBold = forwardRef(function (_ref, ref) {
|
|
1318
1383
|
var _ref$testId = _ref.testId,
|
|
1319
1384
|
testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
|
|
1320
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1385
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
|
|
1321
1386
|
return React__default.createElement("svg", Object.assign({
|
|
1322
1387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1323
1388
|
fill: "none",
|
|
@@ -1332,11 +1397,11 @@ var IconBold = forwardRef(function (_ref, ref) {
|
|
|
1332
1397
|
});
|
|
1333
1398
|
IconBold.displayName = 'IconBold';
|
|
1334
1399
|
|
|
1335
|
-
var _excluded$
|
|
1400
|
+
var _excluded$r = ["testId"];
|
|
1336
1401
|
var IconBolt = forwardRef(function (_ref, ref) {
|
|
1337
1402
|
var _ref$testId = _ref.testId,
|
|
1338
1403
|
testId = _ref$testId === void 0 ? 'icon-bolt' : _ref$testId,
|
|
1339
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1404
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
1340
1405
|
return React__default.createElement("svg", Object.assign({
|
|
1341
1406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1342
1407
|
fill: "none",
|
|
@@ -1358,11 +1423,11 @@ var IconBolt = forwardRef(function (_ref, ref) {
|
|
|
1358
1423
|
});
|
|
1359
1424
|
IconBolt.displayName = 'IconBolt';
|
|
1360
1425
|
|
|
1361
|
-
var _excluded$
|
|
1426
|
+
var _excluded$s = ["testId"];
|
|
1362
1427
|
var IconBook = forwardRef(function (_ref, ref) {
|
|
1363
1428
|
var _ref$testId = _ref.testId,
|
|
1364
1429
|
testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
|
|
1365
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1430
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
|
|
1366
1431
|
return React__default.createElement("svg", Object.assign({
|
|
1367
1432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1368
1433
|
fill: "none",
|
|
@@ -1379,11 +1444,11 @@ var IconBook = forwardRef(function (_ref, ref) {
|
|
|
1379
1444
|
});
|
|
1380
1445
|
IconBook.displayName = 'IconBook';
|
|
1381
1446
|
|
|
1382
|
-
var _excluded$
|
|
1447
|
+
var _excluded$t = ["testId"];
|
|
1383
1448
|
var IconBriefcase = forwardRef(function (_ref, ref) {
|
|
1384
1449
|
var _ref$testId = _ref.testId,
|
|
1385
1450
|
testId = _ref$testId === void 0 ? 'icon-briefcase' : _ref$testId,
|
|
1386
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1451
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
1387
1452
|
return React__default.createElement("svg", Object.assign({
|
|
1388
1453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1389
1454
|
fill: "none",
|
|
@@ -1398,11 +1463,11 @@ var IconBriefcase = forwardRef(function (_ref, ref) {
|
|
|
1398
1463
|
});
|
|
1399
1464
|
IconBriefcase.displayName = 'IconBriefcase';
|
|
1400
1465
|
|
|
1401
|
-
var _excluded$
|
|
1466
|
+
var _excluded$u = ["testId"];
|
|
1402
1467
|
var IconBullseyeArrow = forwardRef(function (_ref, ref) {
|
|
1403
1468
|
var _ref$testId = _ref.testId,
|
|
1404
1469
|
testId = _ref$testId === void 0 ? 'icon-bullseye-arrow' : _ref$testId,
|
|
1405
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1470
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
|
|
1406
1471
|
return React__default.createElement("svg", Object.assign({
|
|
1407
1472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1408
1473
|
fill: "none",
|
|
@@ -1419,11 +1484,11 @@ var IconBullseyeArrow = forwardRef(function (_ref, ref) {
|
|
|
1419
1484
|
});
|
|
1420
1485
|
IconBullseyeArrow.displayName = 'IconBullseyeArrow';
|
|
1421
1486
|
|
|
1422
|
-
var _excluded$
|
|
1487
|
+
var _excluded$v = ["testId"];
|
|
1423
1488
|
var IconCalculator = forwardRef(function (_ref, ref) {
|
|
1424
1489
|
var _ref$testId = _ref.testId,
|
|
1425
1490
|
testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
|
|
1426
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1491
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
|
|
1427
1492
|
return React__default.createElement("svg", Object.assign({
|
|
1428
1493
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1429
1494
|
fill: "none",
|
|
@@ -1440,11 +1505,11 @@ var IconCalculator = forwardRef(function (_ref, ref) {
|
|
|
1440
1505
|
});
|
|
1441
1506
|
IconCalculator.displayName = 'IconCalculator';
|
|
1442
1507
|
|
|
1443
|
-
var _excluded$
|
|
1508
|
+
var _excluded$w = ["testId"];
|
|
1444
1509
|
var IconCalendarAlt = forwardRef(function (_ref, ref) {
|
|
1445
1510
|
var _ref$testId = _ref.testId,
|
|
1446
1511
|
testId = _ref$testId === void 0 ? 'icon-calendar-alt' : _ref$testId,
|
|
1447
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1512
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
1448
1513
|
return React__default.createElement("svg", Object.assign({
|
|
1449
1514
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1450
1515
|
fill: "none",
|
|
@@ -1461,11 +1526,11 @@ var IconCalendarAlt = forwardRef(function (_ref, ref) {
|
|
|
1461
1526
|
});
|
|
1462
1527
|
IconCalendarAlt.displayName = 'IconCalendarAlt';
|
|
1463
1528
|
|
|
1464
|
-
var _excluded$
|
|
1529
|
+
var _excluded$x = ["testId"];
|
|
1465
1530
|
var IconCalendarCheck = forwardRef(function (_ref, ref) {
|
|
1466
1531
|
var _ref$testId = _ref.testId,
|
|
1467
1532
|
testId = _ref$testId === void 0 ? 'icon-calendar-check' : _ref$testId,
|
|
1468
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
1469
1534
|
return React__default.createElement("svg", Object.assign({
|
|
1470
1535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1471
1536
|
fill: "none",
|
|
@@ -1482,11 +1547,11 @@ var IconCalendarCheck = forwardRef(function (_ref, ref) {
|
|
|
1482
1547
|
});
|
|
1483
1548
|
IconCalendarCheck.displayName = 'IconCalendarCheck';
|
|
1484
1549
|
|
|
1485
|
-
var _excluded$
|
|
1550
|
+
var _excluded$y = ["testId"];
|
|
1486
1551
|
var IconCalendarDay = forwardRef(function (_ref, ref) {
|
|
1487
1552
|
var _ref$testId = _ref.testId,
|
|
1488
1553
|
testId = _ref$testId === void 0 ? 'icon-calendar-day' : _ref$testId,
|
|
1489
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1554
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
|
|
1490
1555
|
return React__default.createElement("svg", Object.assign({
|
|
1491
1556
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1492
1557
|
fill: "none",
|
|
@@ -1508,11 +1573,11 @@ var IconCalendarDay = forwardRef(function (_ref, ref) {
|
|
|
1508
1573
|
});
|
|
1509
1574
|
IconCalendarDay.displayName = 'IconCalendarDay';
|
|
1510
1575
|
|
|
1511
|
-
var _excluded$
|
|
1576
|
+
var _excluded$z = ["testId"];
|
|
1512
1577
|
var IconCalendarExclamation = forwardRef(function (_ref, ref) {
|
|
1513
1578
|
var _ref$testId = _ref.testId,
|
|
1514
1579
|
testId = _ref$testId === void 0 ? 'icon-calendar-exclamation' : _ref$testId,
|
|
1515
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1580
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
1516
1581
|
return React__default.createElement("svg", Object.assign({
|
|
1517
1582
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1518
1583
|
fill: "none",
|
|
@@ -1527,11 +1592,11 @@ var IconCalendarExclamation = forwardRef(function (_ref, ref) {
|
|
|
1527
1592
|
});
|
|
1528
1593
|
IconCalendarExclamation.displayName = 'IconCalendarExclamation';
|
|
1529
1594
|
|
|
1530
|
-
var _excluded$
|
|
1595
|
+
var _excluded$A = ["testId"];
|
|
1531
1596
|
var IconCalendarStar = forwardRef(function (_ref, ref) {
|
|
1532
1597
|
var _ref$testId = _ref.testId,
|
|
1533
1598
|
testId = _ref$testId === void 0 ? 'icon-calendar-star' : _ref$testId,
|
|
1534
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1599
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
1535
1600
|
return React__default.createElement("svg", Object.assign({
|
|
1536
1601
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1537
1602
|
fill: "none",
|
|
@@ -1546,11 +1611,11 @@ var IconCalendarStar = forwardRef(function (_ref, ref) {
|
|
|
1546
1611
|
});
|
|
1547
1612
|
IconCalendarStar.displayName = 'IconCalendarStar';
|
|
1548
1613
|
|
|
1549
|
-
var _excluded$
|
|
1614
|
+
var _excluded$B = ["testId"];
|
|
1550
1615
|
var IconCalendarTomorrow = forwardRef(function (_ref, ref) {
|
|
1551
1616
|
var _ref$testId = _ref.testId,
|
|
1552
1617
|
testId = _ref$testId === void 0 ? 'icon-calendar-tomorrow' : _ref$testId,
|
|
1553
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1618
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
|
|
1554
1619
|
return React__default.createElement("svg", Object.assign({
|
|
1555
1620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1556
1621
|
fill: "none",
|
|
@@ -1574,11 +1639,11 @@ var IconCalendarTomorrow = forwardRef(function (_ref, ref) {
|
|
|
1574
1639
|
});
|
|
1575
1640
|
IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
|
|
1576
1641
|
|
|
1577
|
-
var _excluded$
|
|
1642
|
+
var _excluded$C = ["testId"];
|
|
1578
1643
|
var IconCalendar = forwardRef(function (_ref, ref) {
|
|
1579
1644
|
var _ref$testId = _ref.testId,
|
|
1580
1645
|
testId = _ref$testId === void 0 ? 'icon-calendar' : _ref$testId,
|
|
1581
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1646
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
|
|
1582
1647
|
return React__default.createElement("svg", Object.assign({
|
|
1583
1648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1584
1649
|
fill: "none",
|
|
@@ -1595,11 +1660,11 @@ var IconCalendar = forwardRef(function (_ref, ref) {
|
|
|
1595
1660
|
});
|
|
1596
1661
|
IconCalendar.displayName = 'IconCalendar';
|
|
1597
1662
|
|
|
1598
|
-
var _excluded$
|
|
1663
|
+
var _excluded$D = ["testId"];
|
|
1599
1664
|
var IconCameraSlash = forwardRef(function (_ref, ref) {
|
|
1600
1665
|
var _ref$testId = _ref.testId,
|
|
1601
1666
|
testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
|
|
1602
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1667
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
|
|
1603
1668
|
return React__default.createElement("svg", Object.assign({
|
|
1604
1669
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1605
1670
|
fill: "none",
|
|
@@ -1617,11 +1682,11 @@ var IconCameraSlash = forwardRef(function (_ref, ref) {
|
|
|
1617
1682
|
});
|
|
1618
1683
|
IconCameraSlash.displayName = 'IconCameraSlash';
|
|
1619
1684
|
|
|
1620
|
-
var _excluded$
|
|
1685
|
+
var _excluded$E = ["testId"];
|
|
1621
1686
|
var IconCamera = forwardRef(function (_ref, ref) {
|
|
1622
1687
|
var _ref$testId = _ref.testId,
|
|
1623
1688
|
testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
|
|
1624
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1689
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
|
|
1625
1690
|
return React__default.createElement("svg", Object.assign({
|
|
1626
1691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1627
1692
|
fill: "none",
|
|
@@ -1636,11 +1701,11 @@ var IconCamera = forwardRef(function (_ref, ref) {
|
|
|
1636
1701
|
});
|
|
1637
1702
|
IconCamera.displayName = 'IconCamera';
|
|
1638
1703
|
|
|
1639
|
-
var _excluded$
|
|
1704
|
+
var _excluded$F = ["testId"];
|
|
1640
1705
|
var IconCashRegister = forwardRef(function (_ref, ref) {
|
|
1641
1706
|
var _ref$testId = _ref.testId,
|
|
1642
1707
|
testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
|
|
1643
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1708
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
|
|
1644
1709
|
return React__default.createElement("svg", Object.assign({
|
|
1645
1710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1646
1711
|
fill: "none",
|
|
@@ -1655,11 +1720,11 @@ var IconCashRegister = forwardRef(function (_ref, ref) {
|
|
|
1655
1720
|
});
|
|
1656
1721
|
IconCashRegister.displayName = 'IconCashRegister';
|
|
1657
1722
|
|
|
1658
|
-
var _excluded$
|
|
1723
|
+
var _excluded$G = ["testId"];
|
|
1659
1724
|
var IconChartBar = forwardRef(function (_ref, ref) {
|
|
1660
1725
|
var _ref$testId = _ref.testId,
|
|
1661
1726
|
testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
|
|
1662
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1727
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
|
|
1663
1728
|
return React__default.createElement("svg", Object.assign({
|
|
1664
1729
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1665
1730
|
fill: "none",
|
|
@@ -1676,11 +1741,11 @@ var IconChartBar = forwardRef(function (_ref, ref) {
|
|
|
1676
1741
|
});
|
|
1677
1742
|
IconChartBar.displayName = 'IconChartBar';
|
|
1678
1743
|
|
|
1679
|
-
var _excluded$
|
|
1744
|
+
var _excluded$H = ["testId"];
|
|
1680
1745
|
var IconCheckCircleIncomplete = forwardRef(function (_ref, ref) {
|
|
1681
1746
|
var _ref$testId = _ref.testId,
|
|
1682
1747
|
testId = _ref$testId === void 0 ? 'icon-check-circle-incomplete' : _ref$testId,
|
|
1683
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1748
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
|
|
1684
1749
|
return React__default.createElement("svg", Object.assign({
|
|
1685
1750
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1686
1751
|
fill: "none",
|
|
@@ -1695,11 +1760,11 @@ var IconCheckCircleIncomplete = forwardRef(function (_ref, ref) {
|
|
|
1695
1760
|
});
|
|
1696
1761
|
IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
|
|
1697
1762
|
|
|
1698
|
-
var _excluded$
|
|
1763
|
+
var _excluded$I = ["testId"];
|
|
1699
1764
|
var IconCheck = forwardRef(function (_ref, ref) {
|
|
1700
1765
|
var _ref$testId = _ref.testId,
|
|
1701
1766
|
testId = _ref$testId === void 0 ? 'icon-check' : _ref$testId,
|
|
1702
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1767
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
|
|
1703
1768
|
return React__default.createElement("svg", Object.assign({
|
|
1704
1769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1705
1770
|
fill: "none",
|
|
@@ -1716,11 +1781,11 @@ var IconCheck = forwardRef(function (_ref, ref) {
|
|
|
1716
1781
|
});
|
|
1717
1782
|
IconCheck.displayName = 'IconCheck';
|
|
1718
1783
|
|
|
1719
|
-
var _excluded$
|
|
1784
|
+
var _excluded$J = ["testId"];
|
|
1720
1785
|
var IconChevronDown = forwardRef(function (_ref, ref) {
|
|
1721
1786
|
var _ref$testId = _ref.testId,
|
|
1722
1787
|
testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
|
|
1723
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1788
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
|
|
1724
1789
|
return React__default.createElement("svg", Object.assign({
|
|
1725
1790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1726
1791
|
fill: "none",
|
|
@@ -1737,11 +1802,11 @@ var IconChevronDown = forwardRef(function (_ref, ref) {
|
|
|
1737
1802
|
});
|
|
1738
1803
|
IconChevronDown.displayName = 'IconChevronDown';
|
|
1739
1804
|
|
|
1740
|
-
var _excluded$
|
|
1805
|
+
var _excluded$K = ["testId"];
|
|
1741
1806
|
var IconChevronLeft = forwardRef(function (_ref, ref) {
|
|
1742
1807
|
var _ref$testId = _ref.testId,
|
|
1743
1808
|
testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
|
|
1744
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1809
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
|
|
1745
1810
|
return React__default.createElement("svg", Object.assign({
|
|
1746
1811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1747
1812
|
fill: "none",
|
|
@@ -1758,11 +1823,11 @@ var IconChevronLeft = forwardRef(function (_ref, ref) {
|
|
|
1758
1823
|
});
|
|
1759
1824
|
IconChevronLeft.displayName = 'IconChevronLeft';
|
|
1760
1825
|
|
|
1761
|
-
var _excluded$
|
|
1826
|
+
var _excluded$L = ["testId"];
|
|
1762
1827
|
var IconChevronRight = forwardRef(function (_ref, ref) {
|
|
1763
1828
|
var _ref$testId = _ref.testId,
|
|
1764
1829
|
testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
|
|
1765
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1830
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
|
|
1766
1831
|
return React__default.createElement("svg", Object.assign({
|
|
1767
1832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1768
1833
|
fill: "none",
|
|
@@ -1779,11 +1844,11 @@ var IconChevronRight = forwardRef(function (_ref, ref) {
|
|
|
1779
1844
|
});
|
|
1780
1845
|
IconChevronRight.displayName = 'IconChevronRight';
|
|
1781
1846
|
|
|
1782
|
-
var _excluded$
|
|
1847
|
+
var _excluded$M = ["testId"];
|
|
1783
1848
|
var IconChevronUp = forwardRef(function (_ref, ref) {
|
|
1784
1849
|
var _ref$testId = _ref.testId,
|
|
1785
1850
|
testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
|
|
1786
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1851
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
|
|
1787
1852
|
return React__default.createElement("svg", Object.assign({
|
|
1788
1853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1789
1854
|
fill: "none",
|
|
@@ -1800,11 +1865,11 @@ var IconChevronUp = forwardRef(function (_ref, ref) {
|
|
|
1800
1865
|
});
|
|
1801
1866
|
IconChevronUp.displayName = 'IconChevronUp';
|
|
1802
1867
|
|
|
1803
|
-
var _excluded$
|
|
1868
|
+
var _excluded$N = ["testId"];
|
|
1804
1869
|
var IconClipboardList = forwardRef(function (_ref, ref) {
|
|
1805
1870
|
var _ref$testId = _ref.testId,
|
|
1806
1871
|
testId = _ref$testId === void 0 ? 'icon-clipboard-list' : _ref$testId,
|
|
1807
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1872
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
|
|
1808
1873
|
return React__default.createElement("svg", Object.assign({
|
|
1809
1874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1810
1875
|
fill: "none",
|
|
@@ -1821,11 +1886,11 @@ var IconClipboardList = forwardRef(function (_ref, ref) {
|
|
|
1821
1886
|
});
|
|
1822
1887
|
IconClipboardList.displayName = 'IconClipboardList';
|
|
1823
1888
|
|
|
1824
|
-
var _excluded$
|
|
1889
|
+
var _excluded$O = ["testId"];
|
|
1825
1890
|
var IconClock = forwardRef(function (_ref, ref) {
|
|
1826
1891
|
var _ref$testId = _ref.testId,
|
|
1827
1892
|
testId = _ref$testId === void 0 ? 'icon-clock' : _ref$testId,
|
|
1828
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1893
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
|
|
1829
1894
|
return React__default.createElement("svg", Object.assign({
|
|
1830
1895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1831
1896
|
fill: "none",
|
|
@@ -1840,11 +1905,11 @@ var IconClock = forwardRef(function (_ref, ref) {
|
|
|
1840
1905
|
});
|
|
1841
1906
|
IconClock.displayName = 'IconClock';
|
|
1842
1907
|
|
|
1843
|
-
var _excluded$
|
|
1908
|
+
var _excluded$P = ["testId"];
|
|
1844
1909
|
var IconCog = forwardRef(function (_ref, ref) {
|
|
1845
1910
|
var _ref$testId = _ref.testId,
|
|
1846
1911
|
testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
|
|
1847
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1912
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
|
|
1848
1913
|
return React__default.createElement("svg", Object.assign({
|
|
1849
1914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1850
1915
|
fill: "none",
|
|
@@ -1859,11 +1924,11 @@ var IconCog = forwardRef(function (_ref, ref) {
|
|
|
1859
1924
|
});
|
|
1860
1925
|
IconCog.displayName = 'IconCog';
|
|
1861
1926
|
|
|
1862
|
-
var _excluded$
|
|
1927
|
+
var _excluded$Q = ["testId"];
|
|
1863
1928
|
var IconCommentLines = forwardRef(function (_ref, ref) {
|
|
1864
1929
|
var _ref$testId = _ref.testId,
|
|
1865
1930
|
testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
|
|
1866
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1931
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
|
|
1867
1932
|
return React__default.createElement("svg", Object.assign({
|
|
1868
1933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1869
1934
|
fill: "none",
|
|
@@ -1883,11 +1948,11 @@ var IconCommentLines = forwardRef(function (_ref, ref) {
|
|
|
1883
1948
|
});
|
|
1884
1949
|
IconCommentLines.displayName = 'IconCommentLines';
|
|
1885
1950
|
|
|
1886
|
-
var _excluded$
|
|
1951
|
+
var _excluded$R = ["testId"];
|
|
1887
1952
|
var IconComment = forwardRef(function (_ref, ref) {
|
|
1888
1953
|
var _ref$testId = _ref.testId,
|
|
1889
1954
|
testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
|
|
1890
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1955
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
|
|
1891
1956
|
return React__default.createElement("svg", Object.assign({
|
|
1892
1957
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1893
1958
|
fill: "none",
|
|
@@ -1904,11 +1969,11 @@ var IconComment = forwardRef(function (_ref, ref) {
|
|
|
1904
1969
|
});
|
|
1905
1970
|
IconComment.displayName = 'IconComment';
|
|
1906
1971
|
|
|
1907
|
-
var _excluded$
|
|
1972
|
+
var _excluded$S = ["testId"];
|
|
1908
1973
|
var IconCopy = forwardRef(function (_ref, ref) {
|
|
1909
1974
|
var _ref$testId = _ref.testId,
|
|
1910
1975
|
testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
|
|
1911
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1976
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
|
|
1912
1977
|
return React__default.createElement("svg", Object.assign({
|
|
1913
1978
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1914
1979
|
fill: "none",
|
|
@@ -1930,11 +1995,11 @@ var IconCopy = forwardRef(function (_ref, ref) {
|
|
|
1930
1995
|
});
|
|
1931
1996
|
IconCopy.displayName = 'IconCopy';
|
|
1932
1997
|
|
|
1933
|
-
var _excluded$
|
|
1998
|
+
var _excluded$T = ["testId"];
|
|
1934
1999
|
var IconCreditCardPlus = forwardRef(function (_ref, ref) {
|
|
1935
2000
|
var _ref$testId = _ref.testId,
|
|
1936
2001
|
testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
|
|
1937
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2002
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
|
|
1938
2003
|
return React__default.createElement("svg", Object.assign({
|
|
1939
2004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1940
2005
|
fill: "none",
|
|
@@ -1958,11 +2023,11 @@ var IconCreditCardPlus = forwardRef(function (_ref, ref) {
|
|
|
1958
2023
|
});
|
|
1959
2024
|
IconCreditCardPlus.displayName = 'IconCreditCardPlus';
|
|
1960
2025
|
|
|
1961
|
-
var _excluded$
|
|
2026
|
+
var _excluded$U = ["testId"];
|
|
1962
2027
|
var IconCreditCard = forwardRef(function (_ref, ref) {
|
|
1963
2028
|
var _ref$testId = _ref.testId,
|
|
1964
2029
|
testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
|
|
1965
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2030
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
|
|
1966
2031
|
return React__default.createElement("svg", Object.assign({
|
|
1967
2032
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1968
2033
|
fill: "none",
|
|
@@ -1984,11 +2049,11 @@ var IconCreditCard = forwardRef(function (_ref, ref) {
|
|
|
1984
2049
|
});
|
|
1985
2050
|
IconCreditCard.displayName = 'IconCreditCard';
|
|
1986
2051
|
|
|
1987
|
-
var _excluded$
|
|
2052
|
+
var _excluded$V = ["testId"];
|
|
1988
2053
|
var IconDecentMonochromatic = forwardRef(function (_ref, ref) {
|
|
1989
2054
|
var _ref$testId = _ref.testId,
|
|
1990
2055
|
testId = _ref$testId === void 0 ? 'icon-decent-monochromatic' : _ref$testId,
|
|
1991
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2056
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
|
|
1992
2057
|
return React__default.createElement("svg", Object.assign({
|
|
1993
2058
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1994
2059
|
fill: "none",
|
|
@@ -2025,11 +2090,11 @@ var IconDecentMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
2025
2090
|
});
|
|
2026
2091
|
IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
|
|
2027
2092
|
|
|
2028
|
-
var _excluded$
|
|
2093
|
+
var _excluded$W = ["testId"];
|
|
2029
2094
|
var IconDecent = forwardRef(function (_ref, ref) {
|
|
2030
2095
|
var _ref$testId = _ref.testId,
|
|
2031
2096
|
testId = _ref$testId === void 0 ? 'icon-decent' : _ref$testId,
|
|
2032
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2097
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
|
|
2033
2098
|
return React__default.createElement("svg", Object.assign({
|
|
2034
2099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2035
2100
|
fill: "none",
|
|
@@ -2054,11 +2119,11 @@ var IconDecent = forwardRef(function (_ref, ref) {
|
|
|
2054
2119
|
});
|
|
2055
2120
|
IconDecent.displayName = 'IconDecent';
|
|
2056
2121
|
|
|
2057
|
-
var _excluded$
|
|
2122
|
+
var _excluded$X = ["testId"];
|
|
2058
2123
|
var IconDownload = forwardRef(function (_ref, ref) {
|
|
2059
2124
|
var _ref$testId = _ref.testId,
|
|
2060
2125
|
testId = _ref$testId === void 0 ? 'icon-download' : _ref$testId,
|
|
2061
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2126
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
2062
2127
|
return React__default.createElement("svg", Object.assign({
|
|
2063
2128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2064
2129
|
fill: "none",
|
|
@@ -2075,11 +2140,11 @@ var IconDownload = forwardRef(function (_ref, ref) {
|
|
|
2075
2140
|
});
|
|
2076
2141
|
IconDownload.displayName = 'IconDownload';
|
|
2077
2142
|
|
|
2078
|
-
var _excluded$
|
|
2143
|
+
var _excluded$Y = ["testId"];
|
|
2079
2144
|
var IconEdit = forwardRef(function (_ref, ref) {
|
|
2080
2145
|
var _ref$testId = _ref.testId,
|
|
2081
2146
|
testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
|
|
2082
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2147
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
|
|
2083
2148
|
return React__default.createElement("svg", Object.assign({
|
|
2084
2149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2085
2150
|
fill: "none",
|
|
@@ -2094,11 +2159,11 @@ var IconEdit = forwardRef(function (_ref, ref) {
|
|
|
2094
2159
|
});
|
|
2095
2160
|
IconEdit.displayName = 'IconEdit';
|
|
2096
2161
|
|
|
2097
|
-
var _excluded$
|
|
2162
|
+
var _excluded$Z = ["testId"];
|
|
2098
2163
|
var IconEllipsisV = forwardRef(function (_ref, ref) {
|
|
2099
2164
|
var _ref$testId = _ref.testId,
|
|
2100
2165
|
testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
|
|
2101
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2166
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
|
|
2102
2167
|
return React__default.createElement("svg", Object.assign({
|
|
2103
2168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
2169
|
fill: "none",
|
|
@@ -2115,11 +2180,11 @@ var IconEllipsisV = forwardRef(function (_ref, ref) {
|
|
|
2115
2180
|
});
|
|
2116
2181
|
IconEllipsisV.displayName = 'IconEllipsisV';
|
|
2117
2182
|
|
|
2118
|
-
var _excluded$
|
|
2183
|
+
var _excluded$_ = ["testId"];
|
|
2119
2184
|
var IconEnvelopeOpenDollar = forwardRef(function (_ref, ref) {
|
|
2120
2185
|
var _ref$testId = _ref.testId,
|
|
2121
2186
|
testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
|
|
2122
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2187
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
|
|
2123
2188
|
return React__default.createElement("svg", Object.assign({
|
|
2124
2189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2125
2190
|
fill: "none",
|
|
@@ -2141,11 +2206,11 @@ var IconEnvelopeOpenDollar = forwardRef(function (_ref, ref) {
|
|
|
2141
2206
|
});
|
|
2142
2207
|
IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
|
|
2143
2208
|
|
|
2144
|
-
var _excluded
|
|
2209
|
+
var _excluded$$ = ["testId"];
|
|
2145
2210
|
var IconEnvelope = forwardRef(function (_ref, ref) {
|
|
2146
2211
|
var _ref$testId = _ref.testId,
|
|
2147
2212
|
testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
|
|
2148
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2213
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
|
|
2149
2214
|
return React__default.createElement("svg", Object.assign({
|
|
2150
2215
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2151
2216
|
fill: "none",
|
|
@@ -2160,11 +2225,11 @@ var IconEnvelope = forwardRef(function (_ref, ref) {
|
|
|
2160
2225
|
});
|
|
2161
2226
|
IconEnvelope.displayName = 'IconEnvelope';
|
|
2162
2227
|
|
|
2163
|
-
var _excluded$
|
|
2228
|
+
var _excluded$10 = ["testId"];
|
|
2164
2229
|
var IconExclaimationTriangle = forwardRef(function (_ref, ref) {
|
|
2165
2230
|
var _ref$testId = _ref.testId,
|
|
2166
2231
|
testId = _ref$testId === void 0 ? 'icon-exclaimation-triangle' : _ref$testId,
|
|
2167
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2232
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
2168
2233
|
return React__default.createElement("svg", Object.assign({
|
|
2169
2234
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2170
2235
|
fill: "none",
|
|
@@ -2181,11 +2246,11 @@ var IconExclaimationTriangle = forwardRef(function (_ref, ref) {
|
|
|
2181
2246
|
});
|
|
2182
2247
|
IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
|
|
2183
2248
|
|
|
2184
|
-
var _excluded
|
|
2249
|
+
var _excluded$11 = ["testId"];
|
|
2185
2250
|
var IconExclaimation = forwardRef(function (_ref, ref) {
|
|
2186
2251
|
var _ref$testId = _ref.testId,
|
|
2187
2252
|
testId = _ref$testId === void 0 ? 'icon-exclaimation' : _ref$testId,
|
|
2188
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2253
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
|
|
2189
2254
|
return React__default.createElement("svg", Object.assign({
|
|
2190
2255
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2191
2256
|
fill: "none",
|
|
@@ -2200,11 +2265,11 @@ var IconExclaimation = forwardRef(function (_ref, ref) {
|
|
|
2200
2265
|
});
|
|
2201
2266
|
IconExclaimation.displayName = 'IconExclaimation';
|
|
2202
2267
|
|
|
2203
|
-
var _excluded$
|
|
2268
|
+
var _excluded$12 = ["testId"];
|
|
2204
2269
|
var IconExpand = forwardRef(function (_ref, ref) {
|
|
2205
2270
|
var _ref$testId = _ref.testId,
|
|
2206
2271
|
testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
|
|
2207
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2272
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
|
|
2208
2273
|
return React__default.createElement("svg", Object.assign({
|
|
2209
2274
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2210
2275
|
fill: "none",
|
|
@@ -2219,11 +2284,11 @@ var IconExpand = forwardRef(function (_ref, ref) {
|
|
|
2219
2284
|
});
|
|
2220
2285
|
IconExpand.displayName = 'IconExpand';
|
|
2221
2286
|
|
|
2222
|
-
var _excluded$
|
|
2287
|
+
var _excluded$13 = ["testId"];
|
|
2223
2288
|
var IconExternalLink = forwardRef(function (_ref, ref) {
|
|
2224
2289
|
var _ref$testId = _ref.testId,
|
|
2225
2290
|
testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
|
|
2226
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2291
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
|
|
2227
2292
|
return React__default.createElement("svg", Object.assign({
|
|
2228
2293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2229
2294
|
fill: "none",
|
|
@@ -2240,11 +2305,11 @@ var IconExternalLink = forwardRef(function (_ref, ref) {
|
|
|
2240
2305
|
});
|
|
2241
2306
|
IconExternalLink.displayName = 'IconExternalLink';
|
|
2242
2307
|
|
|
2243
|
-
var _excluded$
|
|
2308
|
+
var _excluded$14 = ["testId"];
|
|
2244
2309
|
var IconEyeSlash = forwardRef(function (_ref, ref) {
|
|
2245
2310
|
var _ref$testId = _ref.testId,
|
|
2246
2311
|
testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
|
|
2247
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2312
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
|
|
2248
2313
|
return React__default.createElement("svg", Object.assign({
|
|
2249
2314
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2250
2315
|
fill: "none",
|
|
@@ -2273,11 +2338,11 @@ var IconEyeSlash = forwardRef(function (_ref, ref) {
|
|
|
2273
2338
|
});
|
|
2274
2339
|
IconEyeSlash.displayName = 'IconEyeSlash';
|
|
2275
2340
|
|
|
2276
|
-
var _excluded$
|
|
2341
|
+
var _excluded$15 = ["testId"];
|
|
2277
2342
|
var IconEye = forwardRef(function (_ref, ref) {
|
|
2278
2343
|
var _ref$testId = _ref.testId,
|
|
2279
2344
|
testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
|
|
2280
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2345
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
|
|
2281
2346
|
return React__default.createElement("svg", Object.assign({
|
|
2282
2347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2283
2348
|
fill: "none",
|
|
@@ -2299,11 +2364,11 @@ var IconEye = forwardRef(function (_ref, ref) {
|
|
|
2299
2364
|
});
|
|
2300
2365
|
IconEye.displayName = 'IconEye';
|
|
2301
2366
|
|
|
2302
|
-
var _excluded$
|
|
2367
|
+
var _excluded$16 = ["testId"];
|
|
2303
2368
|
var IconFilePdf = forwardRef(function (_ref, ref) {
|
|
2304
2369
|
var _ref$testId = _ref.testId,
|
|
2305
2370
|
testId = _ref$testId === void 0 ? 'icon-file-pdf' : _ref$testId,
|
|
2306
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2371
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
2307
2372
|
return React__default.createElement("svg", Object.assign({
|
|
2308
2373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2309
2374
|
fill: "none",
|
|
@@ -2325,11 +2390,11 @@ var IconFilePdf = forwardRef(function (_ref, ref) {
|
|
|
2325
2390
|
});
|
|
2326
2391
|
IconFilePdf.displayName = 'IconFilePdf';
|
|
2327
2392
|
|
|
2328
|
-
var _excluded$
|
|
2393
|
+
var _excluded$17 = ["testId"];
|
|
2329
2394
|
var IconFile = forwardRef(function (_ref, ref) {
|
|
2330
2395
|
var _ref$testId = _ref.testId,
|
|
2331
2396
|
testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
|
|
2332
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2397
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
|
|
2333
2398
|
return React__default.createElement("svg", Object.assign({
|
|
2334
2399
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2335
2400
|
fill: "none",
|
|
@@ -2351,11 +2416,11 @@ var IconFile = forwardRef(function (_ref, ref) {
|
|
|
2351
2416
|
});
|
|
2352
2417
|
IconFile.displayName = 'IconFile';
|
|
2353
2418
|
|
|
2354
|
-
var _excluded$
|
|
2419
|
+
var _excluded$18 = ["testId"];
|
|
2355
2420
|
var IconFlag = forwardRef(function (_ref, ref) {
|
|
2356
2421
|
var _ref$testId = _ref.testId,
|
|
2357
2422
|
testId = _ref$testId === void 0 ? 'icon-flag' : _ref$testId,
|
|
2358
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2423
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
|
|
2359
2424
|
return React__default.createElement("svg", Object.assign({
|
|
2360
2425
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2361
2426
|
fill: "none",
|
|
@@ -2377,11 +2442,11 @@ var IconFlag = forwardRef(function (_ref, ref) {
|
|
|
2377
2442
|
});
|
|
2378
2443
|
IconFlag.displayName = 'IconFlag';
|
|
2379
2444
|
|
|
2380
|
-
var _excluded$
|
|
2445
|
+
var _excluded$19 = ["testId"];
|
|
2381
2446
|
var IconFourDotsCircle = forwardRef(function (_ref, ref) {
|
|
2382
2447
|
var _ref$testId = _ref.testId,
|
|
2383
2448
|
testId = _ref$testId === void 0 ? 'icon-four-dots-circle' : _ref$testId,
|
|
2384
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2449
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
|
|
2385
2450
|
return React__default.createElement("svg", Object.assign({
|
|
2386
2451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2387
2452
|
fill: "none",
|
|
@@ -2398,11 +2463,11 @@ var IconFourDotsCircle = forwardRef(function (_ref, ref) {
|
|
|
2398
2463
|
});
|
|
2399
2464
|
IconFourDotsCircle.displayName = 'IconFourDotsCircle';
|
|
2400
2465
|
|
|
2401
|
-
var _excluded$
|
|
2466
|
+
var _excluded$1a = ["testId"];
|
|
2402
2467
|
var IconFourSquares = forwardRef(function (_ref, ref) {
|
|
2403
2468
|
var _ref$testId = _ref.testId,
|
|
2404
2469
|
testId = _ref$testId === void 0 ? 'icon-four-squares' : _ref$testId,
|
|
2405
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2470
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
2406
2471
|
return React__default.createElement("svg", Object.assign({
|
|
2407
2472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2408
2473
|
fill: "none",
|
|
@@ -2442,11 +2507,11 @@ var IconFourSquares = forwardRef(function (_ref, ref) {
|
|
|
2442
2507
|
});
|
|
2443
2508
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
2444
2509
|
|
|
2445
|
-
var _excluded$
|
|
2510
|
+
var _excluded$1b = ["testId"];
|
|
2446
2511
|
var IconGavel = forwardRef(function (_ref, ref) {
|
|
2447
2512
|
var _ref$testId = _ref.testId,
|
|
2448
2513
|
testId = _ref$testId === void 0 ? 'icon-gavel' : _ref$testId,
|
|
2449
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2514
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
|
|
2450
2515
|
return React__default.createElement("svg", Object.assign({
|
|
2451
2516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2452
2517
|
fill: "none",
|
|
@@ -2461,11 +2526,11 @@ var IconGavel = forwardRef(function (_ref, ref) {
|
|
|
2461
2526
|
});
|
|
2462
2527
|
IconGavel.displayName = 'IconGavel';
|
|
2463
2528
|
|
|
2464
|
-
var _excluded$
|
|
2529
|
+
var _excluded$1c = ["testId"];
|
|
2465
2530
|
var IconGif = forwardRef(function (_ref, ref) {
|
|
2466
2531
|
var _ref$testId = _ref.testId,
|
|
2467
2532
|
testId = _ref$testId === void 0 ? 'icon-gif' : _ref$testId,
|
|
2468
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
|
|
2469
2534
|
return React__default.createElement("svg", Object.assign({
|
|
2470
2535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2471
2536
|
viewBox: "0 0 20 20",
|
|
@@ -2484,11 +2549,11 @@ var IconGif = forwardRef(function (_ref, ref) {
|
|
|
2484
2549
|
});
|
|
2485
2550
|
IconGif.displayName = 'IconGif';
|
|
2486
2551
|
|
|
2487
|
-
var _excluded$
|
|
2552
|
+
var _excluded$1d = ["testId"];
|
|
2488
2553
|
var IconGift = forwardRef(function (_ref, ref) {
|
|
2489
2554
|
var _ref$testId = _ref.testId,
|
|
2490
2555
|
testId = _ref$testId === void 0 ? 'icon-gift' : _ref$testId,
|
|
2491
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2556
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
2492
2557
|
return React__default.createElement("svg", Object.assign({
|
|
2493
2558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2494
2559
|
fill: "none",
|
|
@@ -2503,11 +2568,11 @@ var IconGift = forwardRef(function (_ref, ref) {
|
|
|
2503
2568
|
});
|
|
2504
2569
|
IconGift.displayName = 'IconGift';
|
|
2505
2570
|
|
|
2506
|
-
var _excluded$
|
|
2571
|
+
var _excluded$1e = ["testId"];
|
|
2507
2572
|
var IconGoodMonochromatic = forwardRef(function (_ref, ref) {
|
|
2508
2573
|
var _ref$testId = _ref.testId,
|
|
2509
2574
|
testId = _ref$testId === void 0 ? 'icon-good-monochromatic' : _ref$testId,
|
|
2510
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2575
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
|
|
2511
2576
|
return React__default.createElement("svg", Object.assign({
|
|
2512
2577
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2513
2578
|
fill: "none",
|
|
@@ -2540,11 +2605,11 @@ var IconGoodMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
2540
2605
|
});
|
|
2541
2606
|
IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
|
|
2542
2607
|
|
|
2543
|
-
var _excluded$
|
|
2608
|
+
var _excluded$1f = ["testId"];
|
|
2544
2609
|
var IconGood = forwardRef(function (_ref, ref) {
|
|
2545
2610
|
var _ref$testId = _ref.testId,
|
|
2546
2611
|
testId = _ref$testId === void 0 ? 'icon-good' : _ref$testId,
|
|
2547
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2612
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
|
|
2548
2613
|
return React__default.createElement("svg", Object.assign({
|
|
2549
2614
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2550
2615
|
fill: "none",
|
|
@@ -2565,11 +2630,11 @@ var IconGood = forwardRef(function (_ref, ref) {
|
|
|
2565
2630
|
});
|
|
2566
2631
|
IconGood.displayName = 'IconGood';
|
|
2567
2632
|
|
|
2568
|
-
var _excluded$
|
|
2633
|
+
var _excluded$1g = ["testId"];
|
|
2569
2634
|
var IconGreatMonochromatic = forwardRef(function (_ref, ref) {
|
|
2570
2635
|
var _ref$testId = _ref.testId,
|
|
2571
2636
|
testId = _ref$testId === void 0 ? 'icon-great-monochromatic' : _ref$testId,
|
|
2572
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2637
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
|
|
2573
2638
|
return React__default.createElement("svg", Object.assign({
|
|
2574
2639
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2575
2640
|
fill: "none",
|
|
@@ -2604,11 +2669,11 @@ var IconGreatMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
2604
2669
|
});
|
|
2605
2670
|
IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
|
|
2606
2671
|
|
|
2607
|
-
var _excluded$
|
|
2672
|
+
var _excluded$1h = ["testId"];
|
|
2608
2673
|
var IconGreat = forwardRef(function (_ref, ref) {
|
|
2609
2674
|
var _ref$testId = _ref.testId,
|
|
2610
2675
|
testId = _ref$testId === void 0 ? 'icon-great' : _ref$testId,
|
|
2611
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2676
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
2612
2677
|
return React__default.createElement("svg", Object.assign({
|
|
2613
2678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2614
2679
|
fill: "none",
|
|
@@ -2631,11 +2696,11 @@ var IconGreat = forwardRef(function (_ref, ref) {
|
|
|
2631
2696
|
});
|
|
2632
2697
|
IconGreat.displayName = 'IconGreat';
|
|
2633
2698
|
|
|
2634
|
-
var _excluded$
|
|
2699
|
+
var _excluded$1i = ["testId"];
|
|
2635
2700
|
var IconGrinBeam = forwardRef(function (_ref, ref) {
|
|
2636
2701
|
var _ref$testId = _ref.testId,
|
|
2637
2702
|
testId = _ref$testId === void 0 ? 'icon-grin-beam' : _ref$testId,
|
|
2638
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2703
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
|
|
2639
2704
|
return React__default.createElement("svg", Object.assign({
|
|
2640
2705
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2641
2706
|
fill: "none",
|
|
@@ -2650,11 +2715,11 @@ var IconGrinBeam = forwardRef(function (_ref, ref) {
|
|
|
2650
2715
|
});
|
|
2651
2716
|
IconGrinBeam.displayName = 'IconGrinBeam';
|
|
2652
2717
|
|
|
2653
|
-
var _excluded$
|
|
2718
|
+
var _excluded$1j = ["testId"];
|
|
2654
2719
|
var IconGripVertical = forwardRef(function (_ref, ref) {
|
|
2655
2720
|
var _ref$testId = _ref.testId,
|
|
2656
2721
|
testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
|
|
2657
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2722
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
|
|
2658
2723
|
return React__default.createElement("svg", Object.assign({
|
|
2659
2724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2660
2725
|
fill: "none",
|
|
@@ -2696,11 +2761,11 @@ var IconGripVertical = forwardRef(function (_ref, ref) {
|
|
|
2696
2761
|
});
|
|
2697
2762
|
IconGripVertical.displayName = 'IconGripVertical';
|
|
2698
2763
|
|
|
2699
|
-
var _excluded$
|
|
2764
|
+
var _excluded$1k = ["testId"];
|
|
2700
2765
|
var IconHandshake = forwardRef(function (_ref, ref) {
|
|
2701
2766
|
var _ref$testId = _ref.testId,
|
|
2702
2767
|
testId = _ref$testId === void 0 ? 'icon-handshake' : _ref$testId,
|
|
2703
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2768
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
|
|
2704
2769
|
return React__default.createElement("svg", Object.assign({
|
|
2705
2770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2706
2771
|
fill: "none",
|
|
@@ -2722,11 +2787,11 @@ var IconHandshake = forwardRef(function (_ref, ref) {
|
|
|
2722
2787
|
});
|
|
2723
2788
|
IconHandshake.displayName = 'IconHandshake';
|
|
2724
2789
|
|
|
2725
|
-
var _excluded$
|
|
2790
|
+
var _excluded$1l = ["testId"];
|
|
2726
2791
|
var IconImage = forwardRef(function (_ref, ref) {
|
|
2727
2792
|
var _ref$testId = _ref.testId,
|
|
2728
2793
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
2729
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2794
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
2730
2795
|
return React__default.createElement("svg", Object.assign({
|
|
2731
2796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2732
2797
|
fill: "none",
|
|
@@ -2748,11 +2813,11 @@ var IconImage = forwardRef(function (_ref, ref) {
|
|
|
2748
2813
|
});
|
|
2749
2814
|
IconImage.displayName = 'IconImage';
|
|
2750
2815
|
|
|
2751
|
-
var _excluded$
|
|
2816
|
+
var _excluded$1m = ["testId"];
|
|
2752
2817
|
var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
2753
2818
|
var _ref$testId = _ref.testId,
|
|
2754
2819
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
2755
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2820
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
2756
2821
|
return React__default.createElement("svg", Object.assign({
|
|
2757
2822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2758
2823
|
fill: "none",
|
|
@@ -2769,11 +2834,11 @@ var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
|
2769
2834
|
});
|
|
2770
2835
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
2771
2836
|
|
|
2772
|
-
var _excluded$
|
|
2837
|
+
var _excluded$1n = ["testId"];
|
|
2773
2838
|
var IconItalic = forwardRef(function (_ref, ref) {
|
|
2774
2839
|
var _ref$testId = _ref.testId,
|
|
2775
2840
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
2776
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2841
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
2777
2842
|
return React__default.createElement("svg", Object.assign({
|
|
2778
2843
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2779
2844
|
fill: "none",
|
|
@@ -2788,11 +2853,11 @@ var IconItalic = forwardRef(function (_ref, ref) {
|
|
|
2788
2853
|
});
|
|
2789
2854
|
IconItalic.displayName = 'IconItalic';
|
|
2790
2855
|
|
|
2791
|
-
var _excluded$
|
|
2856
|
+
var _excluded$1o = ["testId"];
|
|
2792
2857
|
var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
2793
2858
|
var _ref$testId = _ref.testId,
|
|
2794
2859
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
2795
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2860
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
2796
2861
|
return React__default.createElement("svg", Object.assign({
|
|
2797
2862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2798
2863
|
fill: "none",
|
|
@@ -2816,11 +2881,11 @@ var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
|
2816
2881
|
});
|
|
2817
2882
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
2818
2883
|
|
|
2819
|
-
var _excluded$
|
|
2884
|
+
var _excluded$1p = ["testId"];
|
|
2820
2885
|
var IconLink = forwardRef(function (_ref, ref) {
|
|
2821
2886
|
var _ref$testId = _ref.testId,
|
|
2822
2887
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
2823
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2888
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
2824
2889
|
return React__default.createElement("svg", Object.assign({
|
|
2825
2890
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2826
2891
|
fill: "none",
|
|
@@ -2842,11 +2907,11 @@ var IconLink = forwardRef(function (_ref, ref) {
|
|
|
2842
2907
|
});
|
|
2843
2908
|
IconLink.displayName = 'IconLink';
|
|
2844
2909
|
|
|
2845
|
-
var _excluded$
|
|
2910
|
+
var _excluded$1q = ["testId"];
|
|
2846
2911
|
var IconListOI = forwardRef(function (_ref, ref) {
|
|
2847
2912
|
var _ref$testId = _ref.testId,
|
|
2848
2913
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
2849
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2914
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
2850
2915
|
return React__default.createElement("svg", Object.assign({
|
|
2851
2916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2852
2917
|
fill: "none",
|
|
@@ -2868,11 +2933,11 @@ var IconListOI = forwardRef(function (_ref, ref) {
|
|
|
2868
2933
|
});
|
|
2869
2934
|
IconListOI.displayName = 'IconListOI';
|
|
2870
2935
|
|
|
2871
|
-
var _excluded$
|
|
2936
|
+
var _excluded$1r = ["testId"];
|
|
2872
2937
|
var IconList = forwardRef(function (_ref, ref) {
|
|
2873
2938
|
var _ref$testId = _ref.testId,
|
|
2874
2939
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
2875
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2940
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
2876
2941
|
return React__default.createElement("svg", Object.assign({
|
|
2877
2942
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2878
2943
|
fill: "none",
|
|
@@ -2887,11 +2952,11 @@ var IconList = forwardRef(function (_ref, ref) {
|
|
|
2887
2952
|
});
|
|
2888
2953
|
IconList.displayName = 'IconList';
|
|
2889
2954
|
|
|
2890
|
-
var _excluded$
|
|
2955
|
+
var _excluded$1s = ["testId"];
|
|
2891
2956
|
var IconLock = forwardRef(function (_ref, ref) {
|
|
2892
2957
|
var _ref$testId = _ref.testId,
|
|
2893
2958
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
2894
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2959
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
2895
2960
|
return React__default.createElement("svg", Object.assign({
|
|
2896
2961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2897
2962
|
fill: "none",
|
|
@@ -2906,11 +2971,11 @@ var IconLock = forwardRef(function (_ref, ref) {
|
|
|
2906
2971
|
});
|
|
2907
2972
|
IconLock.displayName = 'IconLock';
|
|
2908
2973
|
|
|
2909
|
-
var _excluded$
|
|
2974
|
+
var _excluded$1t = ["testId"];
|
|
2910
2975
|
var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
2911
2976
|
var _ref$testId = _ref.testId,
|
|
2912
2977
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
2913
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2978
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
2914
2979
|
return React__default.createElement("svg", Object.assign({
|
|
2915
2980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2916
2981
|
fill: "none",
|
|
@@ -2927,11 +2992,11 @@ var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
|
2927
2992
|
});
|
|
2928
2993
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
2929
2994
|
|
|
2930
|
-
var _excluded$
|
|
2995
|
+
var _excluded$1u = ["testId"];
|
|
2931
2996
|
var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
2932
2997
|
var _ref$testId = _ref.testId,
|
|
2933
2998
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
2934
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2999
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
2935
3000
|
return React__default.createElement("svg", Object.assign({
|
|
2936
3001
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2937
3002
|
fill: "none",
|
|
@@ -2948,11 +3013,11 @@ var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
|
2948
3013
|
});
|
|
2949
3014
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
2950
3015
|
|
|
2951
|
-
var _excluded$
|
|
3016
|
+
var _excluded$1v = ["testId"];
|
|
2952
3017
|
var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
2953
3018
|
var _ref$testId = _ref.testId,
|
|
2954
3019
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
2955
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3020
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
2956
3021
|
return React__default.createElement("svg", Object.assign({
|
|
2957
3022
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2958
3023
|
fill: "none",
|
|
@@ -2969,11 +3034,11 @@ var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
|
2969
3034
|
});
|
|
2970
3035
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
2971
3036
|
|
|
2972
|
-
var _excluded$
|
|
3037
|
+
var _excluded$1w = ["testId"];
|
|
2973
3038
|
var IconMessages = forwardRef(function (_ref, ref) {
|
|
2974
3039
|
var _ref$testId = _ref.testId,
|
|
2975
3040
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
2976
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3041
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
2977
3042
|
return React__default.createElement("svg", Object.assign({
|
|
2978
3043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2979
3044
|
fill: "none",
|
|
@@ -2988,11 +3053,11 @@ var IconMessages = forwardRef(function (_ref, ref) {
|
|
|
2988
3053
|
});
|
|
2989
3054
|
IconMessages.displayName = 'IconMessages';
|
|
2990
3055
|
|
|
2991
|
-
var _excluded$
|
|
3056
|
+
var _excluded$1x = ["testId"];
|
|
2992
3057
|
var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
2993
3058
|
var _ref$testId = _ref.testId,
|
|
2994
3059
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
2995
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3060
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
2996
3061
|
return React__default.createElement("svg", Object.assign({
|
|
2997
3062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2998
3063
|
fill: "none",
|
|
@@ -3007,11 +3072,11 @@ var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
|
3007
3072
|
});
|
|
3008
3073
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3009
3074
|
|
|
3010
|
-
var _excluded$
|
|
3075
|
+
var _excluded$1y = ["testId"];
|
|
3011
3076
|
var IconMinus = forwardRef(function (_ref, ref) {
|
|
3012
3077
|
var _ref$testId = _ref.testId,
|
|
3013
3078
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3014
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3079
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3015
3080
|
return React__default.createElement("svg", Object.assign({
|
|
3016
3081
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3017
3082
|
fill: "none",
|
|
@@ -3026,11 +3091,11 @@ var IconMinus = forwardRef(function (_ref, ref) {
|
|
|
3026
3091
|
});
|
|
3027
3092
|
IconMinus.displayName = 'IconMinus';
|
|
3028
3093
|
|
|
3029
|
-
var _excluded$
|
|
3094
|
+
var _excluded$1z = ["testId"];
|
|
3030
3095
|
var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
3031
3096
|
var _ref$testId = _ref.testId,
|
|
3032
3097
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3033
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3098
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3034
3099
|
return React__default.createElement("svg", Object.assign({
|
|
3035
3100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3036
3101
|
fill: "none",
|
|
@@ -3045,11 +3110,11 @@ var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
|
3045
3110
|
});
|
|
3046
3111
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
3047
3112
|
|
|
3048
|
-
var _excluded$
|
|
3113
|
+
var _excluded$1A = ["testId"];
|
|
3049
3114
|
var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
3050
3115
|
var _ref$testId = _ref.testId,
|
|
3051
3116
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
3052
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3117
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3053
3118
|
return React__default.createElement("svg", Object.assign({
|
|
3054
3119
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3055
3120
|
fill: "none",
|
|
@@ -3064,11 +3129,11 @@ var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
|
3064
3129
|
});
|
|
3065
3130
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
3066
3131
|
|
|
3067
|
-
var _excluded$
|
|
3132
|
+
var _excluded$1B = ["testId"];
|
|
3068
3133
|
var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
3069
3134
|
var _ref$testId = _ref.testId,
|
|
3070
3135
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
3071
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3136
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
3072
3137
|
return React__default.createElement("svg", Object.assign({
|
|
3073
3138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3074
3139
|
fill: "none",
|
|
@@ -3083,11 +3148,11 @@ var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
|
3083
3148
|
});
|
|
3084
3149
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
3085
3150
|
|
|
3086
|
-
var _excluded$
|
|
3151
|
+
var _excluded$1C = ["testId"];
|
|
3087
3152
|
var IconOvertime = forwardRef(function (_ref, ref) {
|
|
3088
3153
|
var _ref$testId = _ref.testId,
|
|
3089
3154
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
3090
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3155
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
3091
3156
|
return React__default.createElement("svg", Object.assign({
|
|
3092
3157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3093
3158
|
fill: "none",
|
|
@@ -3109,11 +3174,11 @@ var IconOvertime = forwardRef(function (_ref, ref) {
|
|
|
3109
3174
|
});
|
|
3110
3175
|
IconOvertime.displayName = 'IconOvertime';
|
|
3111
3176
|
|
|
3112
|
-
var _excluded$
|
|
3177
|
+
var _excluded$1D = ["testId"];
|
|
3113
3178
|
var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
3114
3179
|
var _ref$testId = _ref.testId,
|
|
3115
3180
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
3116
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3181
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
3117
3182
|
return React__default.createElement("svg", Object.assign({
|
|
3118
3183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3119
3184
|
fill: "none",
|
|
@@ -3139,11 +3204,11 @@ var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
|
3139
3204
|
});
|
|
3140
3205
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
3141
3206
|
|
|
3142
|
-
var _excluded$
|
|
3207
|
+
var _excluded$1E = ["testId"];
|
|
3143
3208
|
var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
3144
3209
|
var _ref$testId = _ref.testId,
|
|
3145
3210
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
3146
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3211
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
3147
3212
|
return React__default.createElement("svg", Object.assign({
|
|
3148
3213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3149
3214
|
fill: "none",
|
|
@@ -3160,11 +3225,11 @@ var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
|
3160
3225
|
});
|
|
3161
3226
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
3162
3227
|
|
|
3163
|
-
var _excluded$
|
|
3228
|
+
var _excluded$1F = ["testId"];
|
|
3164
3229
|
var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
3165
3230
|
var _ref$testId = _ref.testId,
|
|
3166
3231
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
3167
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3232
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
3168
3233
|
return React__default.createElement("svg", Object.assign({
|
|
3169
3234
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3170
3235
|
fill: "none",
|
|
@@ -3186,11 +3251,11 @@ var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
|
3186
3251
|
});
|
|
3187
3252
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
3188
3253
|
|
|
3189
|
-
var _excluded$
|
|
3254
|
+
var _excluded$1G = ["testId"];
|
|
3190
3255
|
var IconPencil = forwardRef(function (_ref, ref) {
|
|
3191
3256
|
var _ref$testId = _ref.testId,
|
|
3192
3257
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
3193
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3258
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
3194
3259
|
return React__default.createElement("svg", Object.assign({
|
|
3195
3260
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3196
3261
|
fill: "none",
|
|
@@ -3207,11 +3272,11 @@ var IconPencil = forwardRef(function (_ref, ref) {
|
|
|
3207
3272
|
});
|
|
3208
3273
|
IconPencil.displayName = 'IconPencil';
|
|
3209
3274
|
|
|
3210
|
-
var _excluded$
|
|
3275
|
+
var _excluded$1H = ["testId"];
|
|
3211
3276
|
var IconPercentage = forwardRef(function (_ref, ref) {
|
|
3212
3277
|
var _ref$testId = _ref.testId,
|
|
3213
3278
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
3214
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3279
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
3215
3280
|
return React__default.createElement("svg", Object.assign({
|
|
3216
3281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3217
3282
|
fill: "none",
|
|
@@ -3226,11 +3291,11 @@ var IconPercentage = forwardRef(function (_ref, ref) {
|
|
|
3226
3291
|
});
|
|
3227
3292
|
IconPercentage.displayName = 'IconPercentage';
|
|
3228
3293
|
|
|
3229
|
-
var _excluded$
|
|
3294
|
+
var _excluded$1I = ["testId"];
|
|
3230
3295
|
var IconPhone = forwardRef(function (_ref, ref) {
|
|
3231
3296
|
var _ref$testId = _ref.testId,
|
|
3232
3297
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
3233
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3298
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
3234
3299
|
return React__default.createElement("svg", Object.assign({
|
|
3235
3300
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3236
3301
|
viewBox: "0 0 20 20",
|
|
@@ -3245,11 +3310,11 @@ var IconPhone = forwardRef(function (_ref, ref) {
|
|
|
3245
3310
|
});
|
|
3246
3311
|
IconPhone.displayName = 'IconPhone';
|
|
3247
3312
|
|
|
3248
|
-
var _excluded$
|
|
3313
|
+
var _excluded$1J = ["testId"];
|
|
3249
3314
|
var IconPlug = forwardRef(function (_ref, ref) {
|
|
3250
3315
|
var _ref$testId = _ref.testId,
|
|
3251
3316
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
3252
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3317
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
3253
3318
|
return React__default.createElement("svg", Object.assign({
|
|
3254
3319
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3255
3320
|
fill: "none",
|
|
@@ -3266,11 +3331,11 @@ var IconPlug = forwardRef(function (_ref, ref) {
|
|
|
3266
3331
|
});
|
|
3267
3332
|
IconPlug.displayName = 'IconPlug';
|
|
3268
3333
|
|
|
3269
|
-
var _excluded$
|
|
3334
|
+
var _excluded$1K = ["testId"];
|
|
3270
3335
|
var IconPlus = forwardRef(function (_ref, ref) {
|
|
3271
3336
|
var _ref$testId = _ref.testId,
|
|
3272
3337
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
3273
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3338
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
3274
3339
|
return React__default.createElement("svg", Object.assign({
|
|
3275
3340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3276
3341
|
fill: "none",
|
|
@@ -3287,11 +3352,11 @@ var IconPlus = forwardRef(function (_ref, ref) {
|
|
|
3287
3352
|
});
|
|
3288
3353
|
IconPlus.displayName = 'IconPlus';
|
|
3289
3354
|
|
|
3290
|
-
var _excluded$
|
|
3355
|
+
var _excluded$1L = ["testId"];
|
|
3291
3356
|
var IconPrint = forwardRef(function (_ref, ref) {
|
|
3292
3357
|
var _ref$testId = _ref.testId,
|
|
3293
3358
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
3294
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3359
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
3295
3360
|
return React__default.createElement("svg", Object.assign({
|
|
3296
3361
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3297
3362
|
fill: "none",
|
|
@@ -3308,11 +3373,11 @@ var IconPrint = forwardRef(function (_ref, ref) {
|
|
|
3308
3373
|
});
|
|
3309
3374
|
IconPrint.displayName = 'IconPrint';
|
|
3310
3375
|
|
|
3311
|
-
var _excluded$
|
|
3376
|
+
var _excluded$1M = ["testId"];
|
|
3312
3377
|
var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
3313
3378
|
var _ref$testId = _ref.testId,
|
|
3314
3379
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
3315
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3380
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
3316
3381
|
return React__default.createElement("svg", Object.assign({
|
|
3317
3382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3318
3383
|
fill: "none",
|
|
@@ -3327,11 +3392,11 @@ var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
|
3327
3392
|
});
|
|
3328
3393
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
3329
3394
|
|
|
3330
|
-
var _excluded$
|
|
3395
|
+
var _excluded$1N = ["testId"];
|
|
3331
3396
|
var IconRepeat = forwardRef(function (_ref, ref) {
|
|
3332
3397
|
var _ref$testId = _ref.testId,
|
|
3333
3398
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
3334
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3399
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
3335
3400
|
return React__default.createElement("svg", Object.assign({
|
|
3336
3401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3337
3402
|
fill: "none",
|
|
@@ -3346,11 +3411,11 @@ var IconRepeat = forwardRef(function (_ref, ref) {
|
|
|
3346
3411
|
});
|
|
3347
3412
|
IconRepeat.displayName = 'IconRepeat';
|
|
3348
3413
|
|
|
3349
|
-
var _excluded$
|
|
3414
|
+
var _excluded$1O = ["testId"];
|
|
3350
3415
|
var IconReply = forwardRef(function (_ref, ref) {
|
|
3351
3416
|
var _ref$testId = _ref.testId,
|
|
3352
3417
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
3353
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3418
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
3354
3419
|
return React__default.createElement("svg", Object.assign({
|
|
3355
3420
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3356
3421
|
fill: "none",
|
|
@@ -3365,11 +3430,11 @@ var IconReply = forwardRef(function (_ref, ref) {
|
|
|
3365
3430
|
});
|
|
3366
3431
|
IconReply.displayName = 'IconReply';
|
|
3367
3432
|
|
|
3368
|
-
var _excluded$
|
|
3433
|
+
var _excluded$1P = ["testId"];
|
|
3369
3434
|
var IconRocket = forwardRef(function (_ref, ref) {
|
|
3370
3435
|
var _ref$testId = _ref.testId,
|
|
3371
3436
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
3372
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3437
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
3373
3438
|
return React__default.createElement("svg", Object.assign({
|
|
3374
3439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3375
3440
|
fill: "none",
|
|
@@ -3384,11 +3449,11 @@ var IconRocket = forwardRef(function (_ref, ref) {
|
|
|
3384
3449
|
});
|
|
3385
3450
|
IconRocket.displayName = 'IconRocket';
|
|
3386
3451
|
|
|
3387
|
-
var _excluded$
|
|
3452
|
+
var _excluded$1Q = ["testId"];
|
|
3388
3453
|
var IconSearch = forwardRef(function (_ref, ref) {
|
|
3389
3454
|
var _ref$testId = _ref.testId,
|
|
3390
3455
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
3391
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3456
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
3392
3457
|
return React__default.createElement("svg", Object.assign({
|
|
3393
3458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3394
3459
|
fill: "none",
|
|
@@ -3405,11 +3470,11 @@ var IconSearch = forwardRef(function (_ref, ref) {
|
|
|
3405
3470
|
});
|
|
3406
3471
|
IconSearch.displayName = 'IconSearch';
|
|
3407
3472
|
|
|
3408
|
-
var _excluded$
|
|
3473
|
+
var _excluded$1R = ["testId"];
|
|
3409
3474
|
var IconSignOut = forwardRef(function (_ref, ref) {
|
|
3410
3475
|
var _ref$testId = _ref.testId,
|
|
3411
3476
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
3412
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3477
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
3413
3478
|
return React__default.createElement("svg", Object.assign({
|
|
3414
3479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3415
3480
|
fill: "none",
|
|
@@ -3424,11 +3489,11 @@ var IconSignOut = forwardRef(function (_ref, ref) {
|
|
|
3424
3489
|
});
|
|
3425
3490
|
IconSignOut.displayName = 'IconSignOut';
|
|
3426
3491
|
|
|
3427
|
-
var _excluded$
|
|
3492
|
+
var _excluded$1S = ["testId"];
|
|
3428
3493
|
var IconSitemap = forwardRef(function (_ref, ref) {
|
|
3429
3494
|
var _ref$testId = _ref.testId,
|
|
3430
3495
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
3431
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3496
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
3432
3497
|
return React__default.createElement("svg", Object.assign({
|
|
3433
3498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3434
3499
|
fill: "none",
|
|
@@ -3445,11 +3510,11 @@ var IconSitemap = forwardRef(function (_ref, ref) {
|
|
|
3445
3510
|
});
|
|
3446
3511
|
IconSitemap.displayName = 'IconSitemap';
|
|
3447
3512
|
|
|
3448
|
-
var _excluded$
|
|
3513
|
+
var _excluded$1T = ["testId"];
|
|
3449
3514
|
var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
3450
3515
|
var _ref$testId = _ref.testId,
|
|
3451
3516
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
3452
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3517
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
3453
3518
|
return React__default.createElement("svg", Object.assign({
|
|
3454
3519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3455
3520
|
fill: "none",
|
|
@@ -3471,11 +3536,11 @@ var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
|
3471
3536
|
});
|
|
3472
3537
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
3473
3538
|
|
|
3474
|
-
var _excluded$
|
|
3539
|
+
var _excluded$1U = ["testId"];
|
|
3475
3540
|
var IconSort = forwardRef(function (_ref, ref) {
|
|
3476
3541
|
var _ref$testId = _ref.testId,
|
|
3477
3542
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
3478
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3543
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
3479
3544
|
return React__default.createElement("svg", Object.assign({
|
|
3480
3545
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3481
3546
|
fill: "none",
|
|
@@ -3490,11 +3555,11 @@ var IconSort = forwardRef(function (_ref, ref) {
|
|
|
3490
3555
|
});
|
|
3491
3556
|
IconSort.displayName = 'IconSort';
|
|
3492
3557
|
|
|
3493
|
-
var _excluded$
|
|
3558
|
+
var _excluded$1V = ["testId"];
|
|
3494
3559
|
var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
3495
3560
|
var _ref$testId = _ref.testId,
|
|
3496
3561
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
3497
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3562
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
3498
3563
|
return React__default.createElement("svg", Object.assign({
|
|
3499
3564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3500
3565
|
fill: "none",
|
|
@@ -3509,11 +3574,11 @@ var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
|
3509
3574
|
});
|
|
3510
3575
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
3511
3576
|
|
|
3512
|
-
var _excluded$
|
|
3577
|
+
var _excluded$1W = ["testId"];
|
|
3513
3578
|
var IconStar = forwardRef(function (_ref, ref) {
|
|
3514
3579
|
var _ref$testId = _ref.testId,
|
|
3515
3580
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
3516
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3581
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
3517
3582
|
return React__default.createElement("svg", Object.assign({
|
|
3518
3583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3519
3584
|
fill: "none",
|
|
@@ -3528,11 +3593,11 @@ var IconStar = forwardRef(function (_ref, ref) {
|
|
|
3528
3593
|
});
|
|
3529
3594
|
IconStar.displayName = 'IconStar';
|
|
3530
3595
|
|
|
3531
|
-
var _excluded$
|
|
3596
|
+
var _excluded$1X = ["testId"];
|
|
3532
3597
|
var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
3533
3598
|
var _ref$testId = _ref.testId,
|
|
3534
3599
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
3535
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3600
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
3536
3601
|
return React__default.createElement("svg", Object.assign({
|
|
3537
3602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3538
3603
|
fill: "none",
|
|
@@ -3550,11 +3615,11 @@ var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
|
3550
3615
|
});
|
|
3551
3616
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
3552
3617
|
|
|
3553
|
-
var _excluded$
|
|
3618
|
+
var _excluded$1Y = ["testId"];
|
|
3554
3619
|
var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
3555
3620
|
var _ref$testId = _ref.testId,
|
|
3556
3621
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
3557
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3622
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
3558
3623
|
return React__default.createElement("svg", Object.assign({
|
|
3559
3624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3560
3625
|
fill: "none",
|
|
@@ -3571,11 +3636,11 @@ var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
|
3571
3636
|
});
|
|
3572
3637
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
3573
3638
|
|
|
3574
|
-
var _excluded$
|
|
3639
|
+
var _excluded$1Z = ["testId"];
|
|
3575
3640
|
var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
3576
3641
|
var _ref$testId = _ref.testId,
|
|
3577
3642
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
3578
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3643
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
3579
3644
|
return React__default.createElement("svg", Object.assign({
|
|
3580
3645
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3581
3646
|
fill: "none",
|
|
@@ -3597,11 +3662,11 @@ var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
|
3597
3662
|
});
|
|
3598
3663
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
3599
3664
|
|
|
3600
|
-
var _excluded$
|
|
3665
|
+
var _excluded$1_ = ["testId"];
|
|
3601
3666
|
var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
3602
3667
|
var _ref$testId = _ref.testId,
|
|
3603
3668
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
3604
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3669
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
3605
3670
|
return React__default.createElement("svg", Object.assign({
|
|
3606
3671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3607
3672
|
viewBox: "0 0 20 20",
|
|
@@ -3616,11 +3681,11 @@ var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
|
3616
3681
|
});
|
|
3617
3682
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
3618
3683
|
|
|
3619
|
-
var _excluded$
|
|
3684
|
+
var _excluded$1$ = ["testId"];
|
|
3620
3685
|
var IconSync = forwardRef(function (_ref, ref) {
|
|
3621
3686
|
var _ref$testId = _ref.testId,
|
|
3622
3687
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
3623
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3688
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
3624
3689
|
return React__default.createElement("svg", Object.assign({
|
|
3625
3690
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3626
3691
|
viewBox: "0 0 20 20",
|
|
@@ -3635,11 +3700,11 @@ var IconSync = forwardRef(function (_ref, ref) {
|
|
|
3635
3700
|
});
|
|
3636
3701
|
IconSync.displayName = 'IconSync';
|
|
3637
3702
|
|
|
3638
|
-
var _excluded$
|
|
3703
|
+
var _excluded$20 = ["testId"];
|
|
3639
3704
|
var IconTable = forwardRef(function (_ref, ref) {
|
|
3640
3705
|
var _ref$testId = _ref.testId,
|
|
3641
3706
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
3642
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3707
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
3643
3708
|
return React__default.createElement("svg", Object.assign({
|
|
3644
3709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3645
3710
|
fill: "none",
|
|
@@ -3661,11 +3726,11 @@ var IconTable = forwardRef(function (_ref, ref) {
|
|
|
3661
3726
|
});
|
|
3662
3727
|
IconTable.displayName = 'IconTable';
|
|
3663
3728
|
|
|
3664
|
-
var _excluded$
|
|
3729
|
+
var _excluded$21 = ["testId"];
|
|
3665
3730
|
var IconTachometer = forwardRef(function (_ref, ref) {
|
|
3666
3731
|
var _ref$testId = _ref.testId,
|
|
3667
3732
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
3668
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3733
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
3669
3734
|
return React__default.createElement("svg", Object.assign({
|
|
3670
3735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3671
3736
|
style: getIconStyles(props),
|
|
@@ -3679,11 +3744,11 @@ var IconTachometer = forwardRef(function (_ref, ref) {
|
|
|
3679
3744
|
});
|
|
3680
3745
|
IconTachometer.displayName = 'IconTachometer';
|
|
3681
3746
|
|
|
3682
|
-
var _excluded$
|
|
3747
|
+
var _excluded$22 = ["testId"];
|
|
3683
3748
|
var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
3684
3749
|
var _ref$testId = _ref.testId,
|
|
3685
3750
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
3686
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3751
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
3687
3752
|
return React__default.createElement("svg", Object.assign({
|
|
3688
3753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3689
3754
|
fill: "none",
|
|
@@ -3700,11 +3765,11 @@ var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
|
3700
3765
|
});
|
|
3701
3766
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
3702
3767
|
|
|
3703
|
-
var _excluded$
|
|
3768
|
+
var _excluded$23 = ["testId"];
|
|
3704
3769
|
var IconTimes = forwardRef(function (_ref, ref) {
|
|
3705
3770
|
var _ref$testId = _ref.testId,
|
|
3706
3771
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
3707
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3772
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
3708
3773
|
return React__default.createElement("svg", Object.assign({
|
|
3709
3774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3710
3775
|
fill: "none",
|
|
@@ -3721,11 +3786,11 @@ var IconTimes = forwardRef(function (_ref, ref) {
|
|
|
3721
3786
|
});
|
|
3722
3787
|
IconTimes.displayName = 'IconTimes';
|
|
3723
3788
|
|
|
3724
|
-
var _excluded$
|
|
3789
|
+
var _excluded$24 = ["testId"];
|
|
3725
3790
|
var IconTrash = forwardRef(function (_ref, ref) {
|
|
3726
3791
|
var _ref$testId = _ref.testId,
|
|
3727
3792
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
3728
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3793
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
3729
3794
|
return React__default.createElement("svg", Object.assign({
|
|
3730
3795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3731
3796
|
fill: "none",
|
|
@@ -3742,11 +3807,11 @@ var IconTrash = forwardRef(function (_ref, ref) {
|
|
|
3742
3807
|
});
|
|
3743
3808
|
IconTrash.displayName = 'IconTrash';
|
|
3744
3809
|
|
|
3745
|
-
var _excluded$
|
|
3810
|
+
var _excluded$25 = ["testId"];
|
|
3746
3811
|
var IconUnderline = forwardRef(function (_ref, ref) {
|
|
3747
3812
|
var _ref$testId = _ref.testId,
|
|
3748
3813
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
3749
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3814
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
3750
3815
|
return React__default.createElement("svg", Object.assign({
|
|
3751
3816
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3752
3817
|
fill: "none",
|
|
@@ -3761,11 +3826,11 @@ var IconUnderline = forwardRef(function (_ref, ref) {
|
|
|
3761
3826
|
});
|
|
3762
3827
|
IconUnderline.displayName = 'IconUnderline';
|
|
3763
3828
|
|
|
3764
|
-
var _excluded$
|
|
3829
|
+
var _excluded$26 = ["testId"];
|
|
3765
3830
|
var IconUndo = forwardRef(function (_ref, ref) {
|
|
3766
3831
|
var _ref$testId = _ref.testId,
|
|
3767
3832
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
3768
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3833
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
3769
3834
|
return React__default.createElement("svg", Object.assign({
|
|
3770
3835
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3771
3836
|
fill: "none",
|
|
@@ -3780,11 +3845,11 @@ var IconUndo = forwardRef(function (_ref, ref) {
|
|
|
3780
3845
|
});
|
|
3781
3846
|
IconUndo.displayName = 'IconUndo';
|
|
3782
3847
|
|
|
3783
|
-
var _excluded$
|
|
3848
|
+
var _excluded$27 = ["testId"];
|
|
3784
3849
|
var IconUniversity = forwardRef(function (_ref, ref) {
|
|
3785
3850
|
var _ref$testId = _ref.testId,
|
|
3786
3851
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
3787
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3852
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
3788
3853
|
return React__default.createElement("svg", Object.assign({
|
|
3789
3854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3790
3855
|
fill: "none",
|
|
@@ -3806,11 +3871,11 @@ var IconUniversity = forwardRef(function (_ref, ref) {
|
|
|
3806
3871
|
});
|
|
3807
3872
|
IconUniversity.displayName = 'IconUniversity';
|
|
3808
3873
|
|
|
3809
|
-
var _excluded$
|
|
3874
|
+
var _excluded$28 = ["testId"];
|
|
3810
3875
|
var IconUnlock = forwardRef(function (_ref, ref) {
|
|
3811
3876
|
var _ref$testId = _ref.testId,
|
|
3812
3877
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
3813
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3878
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
3814
3879
|
return React__default.createElement("svg", Object.assign({
|
|
3815
3880
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3816
3881
|
fill: "none",
|
|
@@ -3832,11 +3897,11 @@ var IconUnlock = forwardRef(function (_ref, ref) {
|
|
|
3832
3897
|
});
|
|
3833
3898
|
IconUnlock.displayName = 'IconUnlock';
|
|
3834
3899
|
|
|
3835
|
-
var _excluded$
|
|
3900
|
+
var _excluded$29 = ["testId"];
|
|
3836
3901
|
var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
3837
3902
|
var _ref$testId = _ref.testId,
|
|
3838
3903
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
3839
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3904
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
3840
3905
|
return React__default.createElement("svg", Object.assign({
|
|
3841
3906
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3842
3907
|
fill: "none",
|
|
@@ -3862,11 +3927,11 @@ var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
|
3862
3927
|
});
|
|
3863
3928
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
3864
3929
|
|
|
3865
|
-
var _excluded$
|
|
3930
|
+
var _excluded$2a = ["testId"];
|
|
3866
3931
|
var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
3867
3932
|
var _ref$testId = _ref.testId,
|
|
3868
3933
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
3869
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3934
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
3870
3935
|
return React__default.createElement("svg", Object.assign({
|
|
3871
3936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3872
3937
|
fill: "none",
|
|
@@ -3881,11 +3946,11 @@ var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
|
3881
3946
|
});
|
|
3882
3947
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
3883
3948
|
|
|
3884
|
-
var _excluded$
|
|
3949
|
+
var _excluded$2b = ["testId"];
|
|
3885
3950
|
var IconUserLight = forwardRef(function (_ref, ref) {
|
|
3886
3951
|
var _ref$testId = _ref.testId,
|
|
3887
3952
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
3888
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3953
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
3889
3954
|
return React__default.createElement("svg", Object.assign({
|
|
3890
3955
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3891
3956
|
fill: "none",
|
|
@@ -3902,11 +3967,11 @@ var IconUserLight = forwardRef(function (_ref, ref) {
|
|
|
3902
3967
|
});
|
|
3903
3968
|
IconUserLight.displayName = 'IconUserLight';
|
|
3904
3969
|
|
|
3905
|
-
var _excluded$
|
|
3970
|
+
var _excluded$2c = ["testId"];
|
|
3906
3971
|
var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
3907
3972
|
var _ref$testId = _ref.testId,
|
|
3908
3973
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
3909
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3974
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
3910
3975
|
return React__default.createElement("svg", Object.assign({
|
|
3911
3976
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3912
3977
|
fill: "none",
|
|
@@ -3921,11 +3986,11 @@ var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
|
3921
3986
|
});
|
|
3922
3987
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
3923
3988
|
|
|
3924
|
-
var _excluded$
|
|
3989
|
+
var _excluded$2d = ["testId"];
|
|
3925
3990
|
var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
3926
3991
|
var _ref$testId = _ref.testId,
|
|
3927
3992
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
3928
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3993
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
3929
3994
|
return React__default.createElement("svg", Object.assign({
|
|
3930
3995
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3931
3996
|
fill: "none",
|
|
@@ -3949,11 +4014,11 @@ var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
|
3949
4014
|
});
|
|
3950
4015
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
3951
4016
|
|
|
3952
|
-
var _excluded$
|
|
4017
|
+
var _excluded$2e = ["testId"];
|
|
3953
4018
|
var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
3954
4019
|
var _ref$testId = _ref.testId,
|
|
3955
4020
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
3956
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4021
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
3957
4022
|
return React__default.createElement("svg", Object.assign({
|
|
3958
4023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3959
4024
|
fill: "none",
|
|
@@ -3975,11 +4040,11 @@ var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
|
3975
4040
|
});
|
|
3976
4041
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
3977
4042
|
|
|
3978
|
-
var _excluded$
|
|
4043
|
+
var _excluded$2f = ["testId"];
|
|
3979
4044
|
var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
3980
4045
|
var _ref$testId = _ref.testId,
|
|
3981
4046
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
3982
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4047
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
3983
4048
|
return React__default.createElement("svg", Object.assign({
|
|
3984
4049
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3985
4050
|
fill: "none",
|
|
@@ -3994,11 +4059,11 @@ var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
|
3994
4059
|
});
|
|
3995
4060
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
3996
4061
|
|
|
3997
|
-
var _excluded$
|
|
4062
|
+
var _excluded$2g = ["testId"];
|
|
3998
4063
|
var IconUserTag = forwardRef(function (_ref, ref) {
|
|
3999
4064
|
var _ref$testId = _ref.testId,
|
|
4000
4065
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
4001
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4066
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
4002
4067
|
return React__default.createElement("svg", Object.assign({
|
|
4003
4068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4004
4069
|
fill: "none",
|
|
@@ -4015,11 +4080,11 @@ var IconUserTag = forwardRef(function (_ref, ref) {
|
|
|
4015
4080
|
});
|
|
4016
4081
|
IconUserTag.displayName = 'IconUserTag';
|
|
4017
4082
|
|
|
4018
|
-
var _excluded$
|
|
4083
|
+
var _excluded$2h = ["testId"];
|
|
4019
4084
|
var IconUserTie = forwardRef(function (_ref, ref) {
|
|
4020
4085
|
var _ref$testId = _ref.testId,
|
|
4021
4086
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
4022
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4087
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
4023
4088
|
return React__default.createElement("svg", Object.assign({
|
|
4024
4089
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4025
4090
|
fill: "none",
|
|
@@ -4034,11 +4099,11 @@ var IconUserTie = forwardRef(function (_ref, ref) {
|
|
|
4034
4099
|
});
|
|
4035
4100
|
IconUserTie.displayName = 'IconUserTie';
|
|
4036
4101
|
|
|
4037
|
-
var _excluded$
|
|
4102
|
+
var _excluded$2i = ["testId"];
|
|
4038
4103
|
var IconUsers = forwardRef(function (_ref, ref) {
|
|
4039
4104
|
var _ref$testId = _ref.testId,
|
|
4040
4105
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
4041
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4106
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
4042
4107
|
return React__default.createElement("svg", Object.assign({
|
|
4043
4108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4044
4109
|
fill: "none",
|
|
@@ -4053,11 +4118,11 @@ var IconUsers = forwardRef(function (_ref, ref) {
|
|
|
4053
4118
|
});
|
|
4054
4119
|
IconUsers.displayName = 'IconUsers';
|
|
4055
4120
|
|
|
4056
|
-
var _excluded$
|
|
4121
|
+
var _excluded$2j = ["testId"];
|
|
4057
4122
|
var IconVideo = forwardRef(function (_ref, ref) {
|
|
4058
4123
|
var _ref$testId = _ref.testId,
|
|
4059
4124
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
4060
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4125
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
4061
4126
|
return React__default.createElement("svg", Object.assign({
|
|
4062
4127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4063
4128
|
fill: "none",
|
|
@@ -4072,11 +4137,11 @@ var IconVideo = forwardRef(function (_ref, ref) {
|
|
|
4072
4137
|
});
|
|
4073
4138
|
IconVideo.displayName = 'IconVideo';
|
|
4074
4139
|
|
|
4075
|
-
var _excluded$
|
|
4140
|
+
var _excluded$2k = ["testId"];
|
|
4076
4141
|
var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
4077
4142
|
var _ref$testId = _ref.testId,
|
|
4078
4143
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
4079
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4144
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
4080
4145
|
return React__default.createElement("svg", Object.assign({
|
|
4081
4146
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4082
4147
|
fill: "none",
|
|
@@ -4091,11 +4156,11 @@ var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
|
4091
4156
|
});
|
|
4092
4157
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
4093
4158
|
|
|
4094
|
-
var _excluded$
|
|
4159
|
+
var _excluded$2l = ["testId"];
|
|
4095
4160
|
var IconVolume = forwardRef(function (_ref, ref) {
|
|
4096
4161
|
var _ref$testId = _ref.testId,
|
|
4097
4162
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
4098
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4163
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
4099
4164
|
return React__default.createElement("svg", Object.assign({
|
|
4100
4165
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4101
4166
|
fill: "none",
|
|
@@ -4110,11 +4175,11 @@ var IconVolume = forwardRef(function (_ref, ref) {
|
|
|
4110
4175
|
});
|
|
4111
4176
|
IconVolume.displayName = 'IconVolume';
|
|
4112
4177
|
|
|
4113
|
-
var _excluded$
|
|
4178
|
+
var _excluded$2m = ["testId"];
|
|
4114
4179
|
var IconWrench = forwardRef(function (_ref, ref) {
|
|
4115
4180
|
var _ref$testId = _ref.testId,
|
|
4116
4181
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
4117
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4182
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
4118
4183
|
return React__default.createElement("svg", Object.assign({
|
|
4119
4184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4120
4185
|
fill: "none",
|
|
@@ -4159,10 +4224,6 @@ var getLocalTranslation = function getLocalTranslation(key) {
|
|
|
4159
4224
|
return key;
|
|
4160
4225
|
};
|
|
4161
4226
|
|
|
4162
|
-
var capitalizeFirstLetter = function capitalizeFirstLetter(text) {
|
|
4163
|
-
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
4164
|
-
};
|
|
4165
|
-
|
|
4166
4227
|
var styles$7 = {"keyboard-key":"_14Od2","keyboard-key--light":"_3hU2t","keyboard-key__character":"_31UYJ"};
|
|
4167
4228
|
|
|
4168
4229
|
var KeyboardKey = function KeyboardKey(_ref) {
|
|
@@ -4208,6 +4269,7 @@ var isFocusingEditableElement = function isFocusingEditableElement() {
|
|
|
4208
4269
|
return false;
|
|
4209
4270
|
};
|
|
4210
4271
|
|
|
4272
|
+
var _excluded$2n = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
4211
4273
|
var PaginationControls = function PaginationControls(_ref) {
|
|
4212
4274
|
var _ref$hasPrevious = _ref.hasPrevious,
|
|
4213
4275
|
hasPrevious = _ref$hasPrevious === void 0 ? true : _ref$hasPrevious,
|
|
@@ -4216,7 +4278,10 @@ var PaginationControls = function PaginationControls(_ref) {
|
|
|
4216
4278
|
onPreviousClick = _ref.onPreviousClick,
|
|
4217
4279
|
onNextClick = _ref.onNextClick,
|
|
4218
4280
|
testId = _ref.testId,
|
|
4219
|
-
scrollTarget = _ref.scrollTarget
|
|
4281
|
+
scrollTarget = _ref.scrollTarget,
|
|
4282
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
4283
|
+
var _getDataProps = getDataProps(otherProps),
|
|
4284
|
+
dataProps = _getDataProps.dataProps;
|
|
4220
4285
|
var scrollToTop = function scrollToTop() {
|
|
4221
4286
|
if (scrollTarget !== null && scrollTarget !== void 0 && scrollTarget.current) {
|
|
4222
4287
|
var target = scrollTarget.current.getBoundingClientRect();
|
|
@@ -4248,10 +4313,10 @@ var PaginationControls = function PaginationControls(_ref) {
|
|
|
4248
4313
|
break;
|
|
4249
4314
|
}
|
|
4250
4315
|
});
|
|
4251
|
-
return React__default.createElement("div", {
|
|
4316
|
+
return React__default.createElement("div", Object.assign({}, dataProps, {
|
|
4252
4317
|
className: styles$6['pagination-controls'],
|
|
4253
4318
|
"data-testid": testId
|
|
4254
|
-
}, React__default.createElement(Button$1, {
|
|
4319
|
+
}), React__default.createElement(Button$1, {
|
|
4255
4320
|
disabled: !hasPrevious,
|
|
4256
4321
|
onClick: handlePreviousClick,
|
|
4257
4322
|
title: React__default.createElement(React__default.Fragment, null, capitalizeFirstLetter(getLocalizedString('default.PREVIOUS')), "\xA0\xA0", React__default.createElement(KeyboardKey, {
|
|
@@ -4281,6 +4346,7 @@ var LINK_TARGET = {
|
|
|
4281
4346
|
|
|
4282
4347
|
var styles$8 = {"link--primary":"_1mKoj","link--contrast":"_HUvH1"};
|
|
4283
4348
|
|
|
4349
|
+
var _excluded$2o = ["href", "target", "theme", "onClick", "children"];
|
|
4284
4350
|
var Link = function Link(_ref) {
|
|
4285
4351
|
var _classNames;
|
|
4286
4352
|
var href = _ref.href,
|
|
@@ -4289,13 +4355,16 @@ var Link = function Link(_ref) {
|
|
|
4289
4355
|
_ref$theme = _ref.theme,
|
|
4290
4356
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
4291
4357
|
onClick = _ref.onClick,
|
|
4292
|
-
children = _ref.children
|
|
4293
|
-
|
|
4358
|
+
children = _ref.children,
|
|
4359
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
4360
|
+
var _getDataProps = getDataProps(otherProps),
|
|
4361
|
+
dataProps = _getDataProps.dataProps;
|
|
4362
|
+
return React__default.createElement("a", Object.assign({}, dataProps, {
|
|
4294
4363
|
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)),
|
|
4295
4364
|
href: href,
|
|
4296
4365
|
target: target,
|
|
4297
4366
|
onClick: onClick
|
|
4298
|
-
}, children);
|
|
4367
|
+
}), children);
|
|
4299
4368
|
};
|
|
4300
4369
|
|
|
4301
4370
|
var TOAST_THEME = {
|
|
@@ -4605,7 +4674,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
4605
4674
|
}
|
|
4606
4675
|
};
|
|
4607
4676
|
|
|
4608
|
-
var _excluded$
|
|
4677
|
+
var _excluded$2p = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
4609
4678
|
var InlineBanner = function InlineBanner(_ref) {
|
|
4610
4679
|
var _classnames, _classnames2;
|
|
4611
4680
|
var children = _ref.children,
|
|
@@ -4617,7 +4686,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
4617
4686
|
primaryButton = _ref.primaryButton,
|
|
4618
4687
|
secondaryButton = _ref.secondaryButton,
|
|
4619
4688
|
testId = _ref.testId,
|
|
4620
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4689
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
4621
4690
|
var positionStyles = usePositionStyles(positionProps);
|
|
4622
4691
|
var multiLine = !!title;
|
|
4623
4692
|
var dismissable = !!onClose;
|
|
@@ -5178,7 +5247,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
5178
5247
|
})));
|
|
5179
5248
|
};
|
|
5180
5249
|
|
|
5181
|
-
var _excluded$
|
|
5250
|
+
var _excluded$2q = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
5182
5251
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
5183
5252
|
var _ref$placeholder = _ref.placeholder,
|
|
5184
5253
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -5187,7 +5256,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
5187
5256
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
5188
5257
|
prefix = _ref.prefix,
|
|
5189
5258
|
duration = _ref.duration,
|
|
5190
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5259
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
5191
5260
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
5192
5261
|
placeholder: placeholder,
|
|
5193
5262
|
autoComplete: autoComplete,
|
|
@@ -5479,7 +5548,7 @@ var ALIGNMENTS = {
|
|
|
5479
5548
|
|
|
5480
5549
|
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"};
|
|
5481
5550
|
|
|
5482
|
-
var _excluded$
|
|
5551
|
+
var _excluded$2r = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
5483
5552
|
var Text = function Text(_ref) {
|
|
5484
5553
|
var _classnames;
|
|
5485
5554
|
var children = _ref.children,
|
|
@@ -5489,7 +5558,7 @@ var Text = function Text(_ref) {
|
|
|
5489
5558
|
alignment = _ref.alignment,
|
|
5490
5559
|
color = _ref.color,
|
|
5491
5560
|
testId = _ref.testId,
|
|
5492
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5561
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
5493
5562
|
var positionStyles = usePositionStyles(positionProps);
|
|
5494
5563
|
var elementProps = {
|
|
5495
5564
|
style: _extends({
|
|
@@ -5695,7 +5764,7 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
5695
5764
|
|
|
5696
5765
|
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"};
|
|
5697
5766
|
|
|
5698
|
-
var _excluded$
|
|
5767
|
+
var _excluded$2s = ["children", "onClick", "isSelected", "disabled", "actions", "testId"];
|
|
5699
5768
|
var Card = function Card(_ref) {
|
|
5700
5769
|
var _classnames, _classnames2, _classnames3;
|
|
5701
5770
|
var children = _ref.children,
|
|
@@ -5706,7 +5775,7 @@ var Card = function Card(_ref) {
|
|
|
5706
5775
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
5707
5776
|
actions = _ref.actions,
|
|
5708
5777
|
testId = _ref.testId,
|
|
5709
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5778
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
5710
5779
|
var positionStyles = usePositionStyles(positionProps);
|
|
5711
5780
|
return React__default.createElement("div", {
|
|
5712
5781
|
className: classnames(styles$q['card']),
|
|
@@ -6041,14 +6110,14 @@ var SKELETON_COMPONENT = {
|
|
|
6041
6110
|
PILL: 'pill'
|
|
6042
6111
|
};
|
|
6043
6112
|
|
|
6044
|
-
var _excluded$
|
|
6113
|
+
var _excluded$2t = ["as", "testId", "width", "height"];
|
|
6045
6114
|
var Skeleton = function Skeleton(_ref) {
|
|
6046
6115
|
var _classnames;
|
|
6047
6116
|
var as = _ref.as,
|
|
6048
6117
|
testId = _ref.testId,
|
|
6049
6118
|
width = _ref.width,
|
|
6050
6119
|
height = _ref.height,
|
|
6051
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6120
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
6052
6121
|
var positioning = usePositionStyles(positionStyles);
|
|
6053
6122
|
return React__default.createElement("div", {
|
|
6054
6123
|
"data-testid": testId,
|
|
@@ -6591,7 +6660,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
6591
6660
|
|
|
6592
6661
|
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"};
|
|
6593
6662
|
|
|
6594
|
-
var _excluded$
|
|
6663
|
+
var _excluded$2u = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
6595
6664
|
var HintModal = function HintModal(_ref) {
|
|
6596
6665
|
var header = _ref.header,
|
|
6597
6666
|
children = _ref.children,
|
|
@@ -6600,7 +6669,7 @@ var HintModal = function HintModal(_ref) {
|
|
|
6600
6669
|
modalId = _ref.modalId,
|
|
6601
6670
|
primaryButton = _ref.primaryButton,
|
|
6602
6671
|
testId = _ref.testId,
|
|
6603
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6672
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
6604
6673
|
var _useState = useState(false),
|
|
6605
6674
|
doNotShowAgain = _useState[0],
|
|
6606
6675
|
setDoNotShowAgain = _useState[1];
|
|
@@ -6824,7 +6893,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
6824
6893
|
};
|
|
6825
6894
|
var DataTableEditableCell = forwardRef(DataTableEditableCellElement);
|
|
6826
6895
|
|
|
6827
|
-
var _excluded$
|
|
6896
|
+
var _excluded$2v = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
6828
6897
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
6829
6898
|
var _classnames;
|
|
6830
6899
|
var children = _ref.children,
|
|
@@ -6836,7 +6905,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
6836
6905
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
6837
6906
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
6838
6907
|
testId = _ref.testId,
|
|
6839
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6908
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
6840
6909
|
var _useDataTableContext = useDataTableContext(),
|
|
6841
6910
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
6842
6911
|
var styleNames = classnames(styles$z['item'], (_classnames = {}, _classnames[styles$z['clickable']] = onClick, _classnames[styles$z['selected']] = isSelected, _classnames));
|
|
@@ -7248,11 +7317,11 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
7248
7317
|
|
|
7249
7318
|
var styles$M = {"custom-control":"_1JTKu"};
|
|
7250
7319
|
|
|
7251
|
-
var _excluded$
|
|
7320
|
+
var _excluded$2w = ["children"];
|
|
7252
7321
|
function CustomControl(_ref) {
|
|
7253
7322
|
var _props$getValue;
|
|
7254
7323
|
var children = _ref.children,
|
|
7255
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7324
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
7256
7325
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
7257
7326
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
7258
7327
|
return React__default.createElement(components.Control, Object.assign({}, props), SelectedOptionPrefix && selectedOption ? React__default.createElement("div", {
|
|
@@ -7269,10 +7338,10 @@ function CustomControl(_ref) {
|
|
|
7269
7338
|
}, props)), children)) : children);
|
|
7270
7339
|
}
|
|
7271
7340
|
|
|
7272
|
-
var _excluded$
|
|
7341
|
+
var _excluded$2x = ["children"];
|
|
7273
7342
|
function CustomOption(_ref) {
|
|
7274
7343
|
var children = _ref.children,
|
|
7275
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7344
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
7276
7345
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
7277
7346
|
return React__default.createElement(components.Option, Object.assign({}, props), React__default.createElement(UserCustomOption, Object.assign({}, props), children));
|
|
7278
7347
|
}
|
|
@@ -7426,10 +7495,10 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
7426
7495
|
|
|
7427
7496
|
var styles$N = {"custom-menu-text-field":"_2bu6-","custom-menu-hr":"_1cgU7","custom-menu-div":"_1khlU"};
|
|
7428
7497
|
|
|
7429
|
-
var _excluded$
|
|
7498
|
+
var _excluded$2y = ["children"];
|
|
7430
7499
|
function CustomMenu(_ref) {
|
|
7431
7500
|
var children = _ref.children,
|
|
7432
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7501
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
7433
7502
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
7434
7503
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
7435
7504
|
onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
|
|
@@ -8146,11 +8215,11 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
8146
8215
|
}, toolbar)));
|
|
8147
8216
|
};
|
|
8148
8217
|
|
|
8149
|
-
var _excluded$
|
|
8218
|
+
var _excluded$2z = ["prefix", "suffix"];
|
|
8150
8219
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
8151
8220
|
var prefix = _ref.prefix,
|
|
8152
8221
|
suffix = _ref.suffix,
|
|
8153
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8222
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
8154
8223
|
var _useTextField = useTextField(_extends({}, props, {
|
|
8155
8224
|
ref: ref
|
|
8156
8225
|
})),
|
|
@@ -8655,6 +8724,7 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8655
8724
|
caption = _ref.caption,
|
|
8656
8725
|
error = _ref.error,
|
|
8657
8726
|
placeholder = _ref.placeholder,
|
|
8727
|
+
prefix = _ref.prefix,
|
|
8658
8728
|
noOptionsMessage = _ref.noOptionsMessage,
|
|
8659
8729
|
disabled = _ref.disabled,
|
|
8660
8730
|
_ref$closeOnSelect = _ref.closeOnSelect,
|
|
@@ -8691,7 +8761,9 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8691
8761
|
var defaultNoOptionsMessage = noOptionsMessage && typeof noOptionsMessage === 'string' ? function () {
|
|
8692
8762
|
return noOptionsMessage;
|
|
8693
8763
|
} : undefined;
|
|
8694
|
-
return React__default.createElement(Field, Object.assign({}, fieldProps), React__default.createElement(
|
|
8764
|
+
return React__default.createElement(Field, Object.assign({}, fieldProps), React__default.createElement(AffixContainer, {
|
|
8765
|
+
prefix: prefix
|
|
8766
|
+
}, React__default.createElement(Select, {
|
|
8695
8767
|
inputId: controllers.id,
|
|
8696
8768
|
options: options,
|
|
8697
8769
|
isDisabled: disabled,
|
|
@@ -8730,17 +8802,17 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8730
8802
|
},
|
|
8731
8803
|
isSearchable: isSearchable,
|
|
8732
8804
|
menuIsOpen: isMenuInputFocus || undefined
|
|
8733
|
-
}));
|
|
8805
|
+
})));
|
|
8734
8806
|
};
|
|
8735
8807
|
|
|
8736
8808
|
var styles$11 = {"custom-list":"_12jq3"};
|
|
8737
8809
|
|
|
8738
|
-
var _excluded$
|
|
8810
|
+
var _excluded$2A = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
8739
8811
|
var CustomList = function CustomList(_ref) {
|
|
8740
8812
|
var children = _ref.children,
|
|
8741
8813
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
8742
8814
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
8743
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8815
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
8744
8816
|
var showFooter = hasMoreOptions;
|
|
8745
8817
|
if (props.selectProps.inputValue === '' && typeof hasMoreOptionsFirstLoad === 'boolean') {
|
|
8746
8818
|
showFooter = hasMoreOptionsFirstLoad;
|
|
@@ -8752,10 +8824,10 @@ var CustomList = function CustomList(_ref) {
|
|
|
8752
8824
|
}, getLocalizedString('main.START_TYPING_TO_SEE_MORE_OPTIONS')))));
|
|
8753
8825
|
};
|
|
8754
8826
|
|
|
8755
|
-
var _excluded$
|
|
8827
|
+
var _excluded$2B = ["loadOptions"];
|
|
8756
8828
|
var AsyncSelectField = function AsyncSelectField(_ref) {
|
|
8757
8829
|
var loadOptions = _ref.loadOptions,
|
|
8758
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8830
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
8759
8831
|
var _useState = useState(false),
|
|
8760
8832
|
hasMoreOptions = _useState[0],
|
|
8761
8833
|
setHasMoreOptions = _useState[1];
|
|
@@ -9563,7 +9635,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
9563
9635
|
})));
|
|
9564
9636
|
};
|
|
9565
9637
|
|
|
9566
|
-
var _excluded$
|
|
9638
|
+
var _excluded$2C = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
9567
9639
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
9568
9640
|
var _ref$interval = _ref.interval,
|
|
9569
9641
|
interval = _ref$interval === void 0 ? 15 : _ref$interval,
|
|
@@ -9572,7 +9644,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
9572
9644
|
_ref$endField = _ref.endField,
|
|
9573
9645
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
9574
9646
|
duration = _ref.duration,
|
|
9575
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9647
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
9576
9648
|
var internalRef = useRef(null);
|
|
9577
9649
|
var ref = forwardedRef || internalRef;
|
|
9578
9650
|
var _useState = useState(allOtherProps.defaultValue),
|
|
@@ -9751,13 +9823,13 @@ var TimeRangeField = function TimeRangeField(_ref) {
|
|
|
9751
9823
|
})));
|
|
9752
9824
|
};
|
|
9753
9825
|
|
|
9754
|
-
var _excluded$
|
|
9826
|
+
var _excluded$2D = ["currencySymbol", "step"];
|
|
9755
9827
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
9756
9828
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
9757
9829
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
9758
9830
|
_ref$step = _ref.step,
|
|
9759
9831
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
9760
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9832
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
9761
9833
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9762
9834
|
ref: ref
|
|
9763
9835
|
})),
|
|
@@ -9791,7 +9863,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
|
9791
9863
|
};
|
|
9792
9864
|
var CurrencyField = forwardRef(CurrencyFieldElement);
|
|
9793
9865
|
|
|
9794
|
-
var _excluded$
|
|
9866
|
+
var _excluded$2E = ["max", "min", "precision", "stepSize", "prefix"];
|
|
9795
9867
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
9796
9868
|
var _ref$max = _ref.max,
|
|
9797
9869
|
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
@@ -9802,7 +9874,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
9802
9874
|
_ref$stepSize = _ref.stepSize,
|
|
9803
9875
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
9804
9876
|
prefix = _ref.prefix,
|
|
9805
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9877
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
9806
9878
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9807
9879
|
ref: ref
|
|
9808
9880
|
})),
|
|
@@ -10781,12 +10853,12 @@ var CountrySelector = function CountrySelector(_ref) {
|
|
|
10781
10853
|
}))));
|
|
10782
10854
|
};
|
|
10783
10855
|
|
|
10784
|
-
var _excluded$
|
|
10856
|
+
var _excluded$2F = ["disabledCountry"];
|
|
10785
10857
|
var PhoneField = function PhoneField(_ref) {
|
|
10786
10858
|
var _classNames;
|
|
10787
10859
|
var _ref$disabledCountry = _ref.disabledCountry,
|
|
10788
10860
|
disabledCountry = _ref$disabledCountry === void 0 ? false : _ref$disabledCountry,
|
|
10789
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10861
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
10790
10862
|
var inputRef = useRef(null);
|
|
10791
10863
|
var _usePhoneField = usePhoneField(_extends({}, props, {
|
|
10792
10864
|
ref: inputRef
|
|
@@ -10871,14 +10943,14 @@ var PhoneField = function PhoneField(_ref) {
|
|
|
10871
10943
|
|
|
10872
10944
|
var styles$16 = {"badge":"_1QLaK","badge--warning":"_qsFWw","badge--danger":"_359Cc","badge--success":"_2AOEK","badge--info":"_1mLjf"};
|
|
10873
10945
|
|
|
10874
|
-
var _excluded$
|
|
10946
|
+
var _excluded$2G = ["children", "theme", "title", "testId"];
|
|
10875
10947
|
var Badge = function Badge(_ref, forwardedRef) {
|
|
10876
10948
|
var _classnames;
|
|
10877
10949
|
var children = _ref.children,
|
|
10878
10950
|
theme = _ref.theme,
|
|
10879
10951
|
title = _ref.title,
|
|
10880
10952
|
testId = _ref.testId,
|
|
10881
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10953
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
10882
10954
|
var internalRef = useRef(null);
|
|
10883
10955
|
var ref = forwardedRef || internalRef;
|
|
10884
10956
|
useLayoutEffect(function () {
|