@7shifts/sous-chef 3.64.0-beta0 → 3.65.0-beta.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/i18n/locales/locales/en.json +3 -0
- package/dist/i18n/locales/locales/es.json +3 -0
- package/dist/i18n/locales/locales/fr.json +3 -0
- package/dist/icons/constants.d.ts +1 -0
- package/dist/icons/types.d.ts +1 -1
- package/dist/index.js +379 -345
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +380 -346
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/ConfirmModal/ConfirmModal.d.ts +13 -0
- package/dist/overlay/ConfirmModal/index.d.ts +1 -0
- package/dist/overlay/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@ var kebabize = function kebabize(str) {
|
|
|
189
189
|
});
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
-
var _excluded$
|
|
192
|
+
var _excluded$2X = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
|
|
193
193
|
var getPositionProps = function getPositionProps(_ref) {
|
|
194
194
|
var m = _ref.m,
|
|
195
195
|
margin = _ref.margin,
|
|
@@ -201,7 +201,7 @@ var getPositionProps = function getPositionProps(_ref) {
|
|
|
201
201
|
marginBottom = _ref.marginBottom,
|
|
202
202
|
ml = _ref.ml,
|
|
203
203
|
marginLeft = _ref.marginLeft,
|
|
204
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
204
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2X);
|
|
205
205
|
return {
|
|
206
206
|
positionProps: {
|
|
207
207
|
m: m,
|
|
@@ -235,7 +235,7 @@ var getDataProps = function getDataProps(props, config) {
|
|
|
235
235
|
});
|
|
236
236
|
};
|
|
237
237
|
|
|
238
|
-
var _excluded$
|
|
238
|
+
var _excluded$2W = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
|
|
239
239
|
/**
|
|
240
240
|
* Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
|
|
241
241
|
*/
|
|
@@ -260,7 +260,7 @@ var Flex = function Flex(_ref) {
|
|
|
260
260
|
flexGrow = _ref.flexGrow,
|
|
261
261
|
testId = _ref.testId,
|
|
262
262
|
extraClass = _ref.extraClass,
|
|
263
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
263
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
|
|
264
264
|
var _getPositionProps = getPositionProps(rest),
|
|
265
265
|
positionProps = _getPositionProps.positionProps,
|
|
266
266
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -291,14 +291,14 @@ var Flex = function Flex(_ref) {
|
|
|
291
291
|
}));
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
var _excluded$
|
|
294
|
+
var _excluded$2V = ["alignItems"];
|
|
295
295
|
/**
|
|
296
296
|
* Layout component to easily stack elements up in a column.
|
|
297
297
|
*/
|
|
298
298
|
var Stack = function Stack(_ref) {
|
|
299
299
|
var _ref$alignItems = _ref.alignItems,
|
|
300
300
|
alignItems = _ref$alignItems === void 0 ? 'stretch' : _ref$alignItems,
|
|
301
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
301
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
|
|
302
302
|
return React__namespace.createElement(Flex, _extends({}, props, {
|
|
303
303
|
alignItems: alignItems,
|
|
304
304
|
direction: "column"
|
|
@@ -307,7 +307,7 @@ var Stack = function Stack(_ref) {
|
|
|
307
307
|
|
|
308
308
|
var styles$1k = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
|
|
309
309
|
|
|
310
|
-
var _excluded$
|
|
310
|
+
var _excluded$2U = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
|
|
311
311
|
/**
|
|
312
312
|
* Used when you want to allow the user to turn some information ON and OFF.
|
|
313
313
|
*
|
|
@@ -322,7 +322,7 @@ var Toggle = function Toggle(_ref) {
|
|
|
322
322
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
323
323
|
id = _ref.id,
|
|
324
324
|
testId = _ref.testId,
|
|
325
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
325
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
|
|
326
326
|
var _getDataProps = getDataProps(otherProps),
|
|
327
327
|
dataProps = _getDataProps.dataProps;
|
|
328
328
|
return React__default["default"].createElement(Stack, {
|
|
@@ -851,7 +851,7 @@ var COMPONENT_NAMES = {
|
|
|
851
851
|
BUTTON: 'BUTTON'
|
|
852
852
|
};
|
|
853
853
|
|
|
854
|
-
var _excluded$
|
|
854
|
+
var _excluded$2T = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
|
|
855
855
|
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
|
|
856
856
|
var ButtonComponent = function ButtonComponent(_ref, ref) {
|
|
857
857
|
var _classnames;
|
|
@@ -876,7 +876,7 @@ var ButtonComponent = function ButtonComponent(_ref, ref) {
|
|
|
876
876
|
target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
|
|
877
877
|
testId = _ref.testId,
|
|
878
878
|
size = _ref.size,
|
|
879
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
879
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
|
|
880
880
|
var _getPositionProps = getPositionProps(rest),
|
|
881
881
|
positionProps = _getPositionProps.positionProps,
|
|
882
882
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -971,7 +971,8 @@ var ICON_SIZES = {
|
|
|
971
971
|
small: '12px',
|
|
972
972
|
medium: '16px',
|
|
973
973
|
"default": '20px',
|
|
974
|
-
large: '24px'
|
|
974
|
+
large: '24px',
|
|
975
|
+
"extra-large": '40px'
|
|
975
976
|
};
|
|
976
977
|
|
|
977
978
|
var getIconStyles = function getIconStyles(_ref) {
|
|
@@ -996,14 +997,14 @@ var useIsInsideComponent = function useIsInsideComponent(parentComponentName) {
|
|
|
996
997
|
return componentName === parentComponentName;
|
|
997
998
|
};
|
|
998
999
|
|
|
999
|
-
var _excluded$
|
|
1000
|
+
var _excluded$2S = ["testId", "size", "color", "style"];
|
|
1000
1001
|
var IconInfoCircle = React.forwardRef(function (_ref, ref) {
|
|
1001
1002
|
var _ref$testId = _ref.testId,
|
|
1002
1003
|
testId = _ref$testId === void 0 ? 'icon-info-circle' : _ref$testId,
|
|
1003
1004
|
size = _ref.size,
|
|
1004
1005
|
color = _ref.color,
|
|
1005
1006
|
style = _ref.style,
|
|
1006
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1007
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
|
|
1007
1008
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1008
1009
|
var styleProps = {
|
|
1009
1010
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1026,14 +1027,14 @@ var IconInfoCircle = React.forwardRef(function (_ref, ref) {
|
|
|
1026
1027
|
});
|
|
1027
1028
|
IconInfoCircle.displayName = 'IconInfoCircle';
|
|
1028
1029
|
|
|
1029
|
-
var _excluded$
|
|
1030
|
+
var _excluded$2R = ["testId", "size", "color", "style"];
|
|
1030
1031
|
var IconAnalytics = React.forwardRef(function (_ref, ref) {
|
|
1031
1032
|
var _ref$testId = _ref.testId,
|
|
1032
1033
|
testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
|
|
1033
1034
|
size = _ref.size,
|
|
1034
1035
|
color = _ref.color,
|
|
1035
1036
|
style = _ref.style,
|
|
1036
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1037
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
|
|
1037
1038
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1038
1039
|
var styleProps = {
|
|
1039
1040
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1056,14 +1057,14 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
|
|
|
1056
1057
|
});
|
|
1057
1058
|
IconAnalytics.displayName = 'IconAnalytics';
|
|
1058
1059
|
|
|
1059
|
-
var _excluded$
|
|
1060
|
+
var _excluded$2Q = ["testId", "size", "color", "style"];
|
|
1060
1061
|
var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
|
|
1061
1062
|
var _ref$testId = _ref.testId,
|
|
1062
1063
|
testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
|
|
1063
1064
|
size = _ref.size,
|
|
1064
1065
|
color = _ref.color,
|
|
1065
1066
|
style = _ref.style,
|
|
1066
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1067
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
|
|
1067
1068
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1068
1069
|
var styleProps = {
|
|
1069
1070
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1084,14 +1085,14 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
|
|
|
1084
1085
|
});
|
|
1085
1086
|
IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
|
|
1086
1087
|
|
|
1087
|
-
var _excluded$
|
|
1088
|
+
var _excluded$2P = ["testId", "size", "color", "style"];
|
|
1088
1089
|
var IconArrowDown = React.forwardRef(function (_ref, ref) {
|
|
1089
1090
|
var _ref$testId = _ref.testId,
|
|
1090
1091
|
testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
|
|
1091
1092
|
size = _ref.size,
|
|
1092
1093
|
color = _ref.color,
|
|
1093
1094
|
style = _ref.style,
|
|
1094
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1095
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
|
|
1095
1096
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1096
1097
|
var styleProps = {
|
|
1097
1098
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1114,14 +1115,14 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
|
|
|
1114
1115
|
});
|
|
1115
1116
|
IconArrowDown.displayName = 'IconArrowDown';
|
|
1116
1117
|
|
|
1117
|
-
var _excluded$
|
|
1118
|
+
var _excluded$2O = ["testId", "size", "color", "style"];
|
|
1118
1119
|
var IconArrowLeft = React.forwardRef(function (_ref, ref) {
|
|
1119
1120
|
var _ref$testId = _ref.testId,
|
|
1120
1121
|
testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
|
|
1121
1122
|
size = _ref.size,
|
|
1122
1123
|
color = _ref.color,
|
|
1123
1124
|
style = _ref.style,
|
|
1124
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1125
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
|
|
1125
1126
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1126
1127
|
var styleProps = {
|
|
1127
1128
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1144,14 +1145,14 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
|
|
|
1144
1145
|
});
|
|
1145
1146
|
IconArrowLeft.displayName = 'IconArrowLeft';
|
|
1146
1147
|
|
|
1147
|
-
var _excluded$
|
|
1148
|
+
var _excluded$2N = ["testId", "size", "color", "style"];
|
|
1148
1149
|
var IconArrowRight = React.forwardRef(function (_ref, ref) {
|
|
1149
1150
|
var _ref$testId = _ref.testId,
|
|
1150
1151
|
testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
|
|
1151
1152
|
size = _ref.size,
|
|
1152
1153
|
color = _ref.color,
|
|
1153
1154
|
style = _ref.style,
|
|
1154
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1155
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
1155
1156
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1156
1157
|
var styleProps = {
|
|
1157
1158
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1174,14 +1175,14 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
|
|
|
1174
1175
|
});
|
|
1175
1176
|
IconArrowRight.displayName = 'IconArrowRight';
|
|
1176
1177
|
|
|
1177
|
-
var _excluded$
|
|
1178
|
+
var _excluded$2M = ["testId", "size", "color", "style"];
|
|
1178
1179
|
var IconArrowToTop = React.forwardRef(function (_ref, ref) {
|
|
1179
1180
|
var _ref$testId = _ref.testId,
|
|
1180
1181
|
testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
|
|
1181
1182
|
size = _ref.size,
|
|
1182
1183
|
color = _ref.color,
|
|
1183
1184
|
style = _ref.style,
|
|
1184
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1185
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
1185
1186
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1186
1187
|
var styleProps = {
|
|
1187
1188
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1202,14 +1203,14 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
|
|
|
1202
1203
|
});
|
|
1203
1204
|
IconArrowToTop.displayName = 'IconArrowToTop';
|
|
1204
1205
|
|
|
1205
|
-
var _excluded$
|
|
1206
|
+
var _excluded$2L = ["testId", "size", "color", "style"];
|
|
1206
1207
|
var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
|
|
1207
1208
|
var _ref$testId = _ref.testId,
|
|
1208
1209
|
testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
|
|
1209
1210
|
size = _ref.size,
|
|
1210
1211
|
color = _ref.color,
|
|
1211
1212
|
style = _ref.style,
|
|
1212
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1213
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
1213
1214
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1214
1215
|
var styleProps = {
|
|
1215
1216
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1238,14 +1239,14 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
|
|
|
1238
1239
|
});
|
|
1239
1240
|
IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
|
|
1240
1241
|
|
|
1241
|
-
var _excluded$
|
|
1242
|
+
var _excluded$2K = ["testId", "size", "color", "style"];
|
|
1242
1243
|
var IconArrowUp = React.forwardRef(function (_ref, ref) {
|
|
1243
1244
|
var _ref$testId = _ref.testId,
|
|
1244
1245
|
testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
|
|
1245
1246
|
size = _ref.size,
|
|
1246
1247
|
color = _ref.color,
|
|
1247
1248
|
style = _ref.style,
|
|
1248
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1249
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
1249
1250
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1250
1251
|
var styleProps = {
|
|
1251
1252
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1268,14 +1269,14 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
|
|
|
1268
1269
|
});
|
|
1269
1270
|
IconArrowUp.displayName = 'IconArrowUp';
|
|
1270
1271
|
|
|
1271
|
-
var _excluded$
|
|
1272
|
+
var _excluded$2J = ["testId", "size", "color", "style"];
|
|
1272
1273
|
var IconAward = React.forwardRef(function (_ref, ref) {
|
|
1273
1274
|
var _ref$testId = _ref.testId,
|
|
1274
1275
|
testId = _ref$testId === void 0 ? 'icon-award' : _ref$testId,
|
|
1275
1276
|
size = _ref.size,
|
|
1276
1277
|
color = _ref.color,
|
|
1277
1278
|
style = _ref.style,
|
|
1278
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1279
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
1279
1280
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1280
1281
|
var styleProps = {
|
|
1281
1282
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1298,14 +1299,14 @@ var IconAward = React.forwardRef(function (_ref, ref) {
|
|
|
1298
1299
|
});
|
|
1299
1300
|
IconAward.displayName = 'IconAward';
|
|
1300
1301
|
|
|
1301
|
-
var _excluded$
|
|
1302
|
+
var _excluded$2I = ["testId", "size", "color", "style"];
|
|
1302
1303
|
var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
1303
1304
|
var _ref$testId = _ref.testId,
|
|
1304
1305
|
testId = _ref$testId === void 0 ? 'icon-awful-monochromatic' : _ref$testId,
|
|
1305
1306
|
size = _ref.size,
|
|
1306
1307
|
color = _ref.color,
|
|
1307
1308
|
style = _ref.style,
|
|
1308
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1309
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
1309
1310
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1310
1311
|
var styleProps = {
|
|
1311
1312
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1358,14 +1359,14 @@ var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
1358
1359
|
});
|
|
1359
1360
|
IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
|
|
1360
1361
|
|
|
1361
|
-
var _excluded$
|
|
1362
|
+
var _excluded$2H = ["testId", "size", "color", "style"];
|
|
1362
1363
|
var IconAwful = React.forwardRef(function (_ref, ref) {
|
|
1363
1364
|
var _ref$testId = _ref.testId,
|
|
1364
1365
|
testId = _ref$testId === void 0 ? 'icon-awful' : _ref$testId,
|
|
1365
1366
|
size = _ref.size,
|
|
1366
1367
|
color = _ref.color,
|
|
1367
1368
|
style = _ref.style,
|
|
1368
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1369
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
1369
1370
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1370
1371
|
var styleProps = {
|
|
1371
1372
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1406,14 +1407,14 @@ var IconAwful = React.forwardRef(function (_ref, ref) {
|
|
|
1406
1407
|
});
|
|
1407
1408
|
IconAwful.displayName = 'IconAwful';
|
|
1408
1409
|
|
|
1409
|
-
var _excluded$
|
|
1410
|
+
var _excluded$2G = ["testId", "size", "color", "style"];
|
|
1410
1411
|
var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
1411
1412
|
var _ref$testId = _ref.testId,
|
|
1412
1413
|
testId = _ref$testId === void 0 ? 'icon-bad-monochromatic' : _ref$testId,
|
|
1413
1414
|
size = _ref.size,
|
|
1414
1415
|
color = _ref.color,
|
|
1415
1416
|
style = _ref.style,
|
|
1416
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1417
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
1417
1418
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1418
1419
|
var styleProps = {
|
|
1419
1420
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1452,14 +1453,14 @@ var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
1452
1453
|
});
|
|
1453
1454
|
IconBadMonochromatic.displayName = 'IconBadMonochromatic';
|
|
1454
1455
|
|
|
1455
|
-
var _excluded$
|
|
1456
|
+
var _excluded$2F = ["testId", "size", "color", "style"];
|
|
1456
1457
|
var IconBad = React.forwardRef(function (_ref, ref) {
|
|
1457
1458
|
var _ref$testId = _ref.testId,
|
|
1458
1459
|
testId = _ref$testId === void 0 ? 'icon-bad' : _ref$testId,
|
|
1459
1460
|
size = _ref.size,
|
|
1460
1461
|
color = _ref.color,
|
|
1461
1462
|
style = _ref.style,
|
|
1462
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1463
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
1463
1464
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1464
1465
|
var styleProps = {
|
|
1465
1466
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1486,14 +1487,14 @@ var IconBad = React.forwardRef(function (_ref, ref) {
|
|
|
1486
1487
|
});
|
|
1487
1488
|
IconBad.displayName = 'IconBad';
|
|
1488
1489
|
|
|
1489
|
-
var _excluded$
|
|
1490
|
+
var _excluded$2E = ["testId", "size", "color", "style"];
|
|
1490
1491
|
var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
|
|
1491
1492
|
var _ref$testId = _ref.testId,
|
|
1492
1493
|
testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
|
|
1493
1494
|
size = _ref.size,
|
|
1494
1495
|
color = _ref.color,
|
|
1495
1496
|
style = _ref.style,
|
|
1496
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1497
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
1497
1498
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1498
1499
|
var styleProps = {
|
|
1499
1500
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1521,14 +1522,14 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
|
|
|
1521
1522
|
});
|
|
1522
1523
|
IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
|
|
1523
1524
|
|
|
1524
|
-
var _excluded$
|
|
1525
|
+
var _excluded$2D = ["testId", "size", "color", "style"];
|
|
1525
1526
|
var IconBalanceScale = React.forwardRef(function (_ref, ref) {
|
|
1526
1527
|
var _ref$testId = _ref.testId,
|
|
1527
1528
|
testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
|
|
1528
1529
|
size = _ref.size,
|
|
1529
1530
|
color = _ref.color,
|
|
1530
1531
|
style = _ref.style,
|
|
1531
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1532
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
1532
1533
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1533
1534
|
var styleProps = {
|
|
1534
1535
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1556,14 +1557,14 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
|
|
|
1556
1557
|
});
|
|
1557
1558
|
IconBalanceScale.displayName = 'IconBalanceScale';
|
|
1558
1559
|
|
|
1559
|
-
var _excluded$
|
|
1560
|
+
var _excluded$2C = ["testId", "size", "color", "style"];
|
|
1560
1561
|
var IconBan = React.forwardRef(function (_ref, ref) {
|
|
1561
1562
|
var _ref$testId = _ref.testId,
|
|
1562
1563
|
testId = _ref$testId === void 0 ? 'icon-ban' : _ref$testId,
|
|
1563
1564
|
size = _ref.size,
|
|
1564
1565
|
color = _ref.color,
|
|
1565
1566
|
style = _ref.style,
|
|
1566
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1567
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
1567
1568
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1568
1569
|
var styleProps = {
|
|
1569
1570
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1584,14 +1585,14 @@ var IconBan = React.forwardRef(function (_ref, ref) {
|
|
|
1584
1585
|
});
|
|
1585
1586
|
IconBan.displayName = 'IconBan';
|
|
1586
1587
|
|
|
1587
|
-
var _excluded$
|
|
1588
|
+
var _excluded$2B = ["testId", "size", "color", "style"];
|
|
1588
1589
|
var IconBarsH = React.forwardRef(function (_ref, ref) {
|
|
1589
1590
|
var _ref$testId = _ref.testId,
|
|
1590
1591
|
testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
|
|
1591
1592
|
size = _ref.size,
|
|
1592
1593
|
color = _ref.color,
|
|
1593
1594
|
style = _ref.style,
|
|
1594
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1595
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
1595
1596
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1596
1597
|
var styleProps = {
|
|
1597
1598
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1614,14 +1615,14 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
|
|
|
1614
1615
|
});
|
|
1615
1616
|
IconBarsH.displayName = 'IconBarsH';
|
|
1616
1617
|
|
|
1617
|
-
var _excluded$
|
|
1618
|
+
var _excluded$2A = ["testId", "size", "color", "style"];
|
|
1618
1619
|
var IconBarsV = React.forwardRef(function (_ref, ref) {
|
|
1619
1620
|
var _ref$testId = _ref.testId,
|
|
1620
1621
|
testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
|
|
1621
1622
|
size = _ref.size,
|
|
1622
1623
|
color = _ref.color,
|
|
1623
1624
|
style = _ref.style,
|
|
1624
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1625
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
1625
1626
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1626
1627
|
var styleProps = {
|
|
1627
1628
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1642,14 +1643,14 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
|
|
|
1642
1643
|
});
|
|
1643
1644
|
IconBarsV.displayName = 'IconBarsV';
|
|
1644
1645
|
|
|
1645
|
-
var _excluded$
|
|
1646
|
+
var _excluded$2z = ["testId", "size", "color", "style"];
|
|
1646
1647
|
var IconBell = React.forwardRef(function (_ref, ref) {
|
|
1647
1648
|
var _ref$testId = _ref.testId,
|
|
1648
1649
|
testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
|
|
1649
1650
|
size = _ref.size,
|
|
1650
1651
|
color = _ref.color,
|
|
1651
1652
|
style = _ref.style,
|
|
1652
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1653
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
1653
1654
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1654
1655
|
var styleProps = {
|
|
1655
1656
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1672,14 +1673,14 @@ var IconBell = React.forwardRef(function (_ref, ref) {
|
|
|
1672
1673
|
});
|
|
1673
1674
|
IconBell.displayName = 'IconBell';
|
|
1674
1675
|
|
|
1675
|
-
var _excluded$
|
|
1676
|
+
var _excluded$2y = ["testId", "size", "color", "style"];
|
|
1676
1677
|
var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
|
|
1677
1678
|
var _ref$testId = _ref.testId,
|
|
1678
1679
|
testId = _ref$testId === void 0 ? 'icon-birthday-cake' : _ref$testId,
|
|
1679
1680
|
size = _ref.size,
|
|
1680
1681
|
color = _ref.color,
|
|
1681
1682
|
style = _ref.style,
|
|
1682
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1683
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
1683
1684
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1684
1685
|
var styleProps = {
|
|
1685
1686
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1700,14 +1701,14 @@ var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
|
|
|
1700
1701
|
});
|
|
1701
1702
|
IconBirthdayCake.displayName = 'IconBirthdayCake';
|
|
1702
1703
|
|
|
1703
|
-
var _excluded$
|
|
1704
|
+
var _excluded$2x = ["testId", "size", "color", "style"];
|
|
1704
1705
|
var IconBold = React.forwardRef(function (_ref, ref) {
|
|
1705
1706
|
var _ref$testId = _ref.testId,
|
|
1706
1707
|
testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
|
|
1707
1708
|
size = _ref.size,
|
|
1708
1709
|
color = _ref.color,
|
|
1709
1710
|
style = _ref.style,
|
|
1710
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1711
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
1711
1712
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1712
1713
|
var styleProps = {
|
|
1713
1714
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1728,14 +1729,14 @@ var IconBold = React.forwardRef(function (_ref, ref) {
|
|
|
1728
1729
|
});
|
|
1729
1730
|
IconBold.displayName = 'IconBold';
|
|
1730
1731
|
|
|
1731
|
-
var _excluded$
|
|
1732
|
+
var _excluded$2w = ["testId", "size", "color", "style"];
|
|
1732
1733
|
var IconBolt = React.forwardRef(function (_ref, ref) {
|
|
1733
1734
|
var _ref$testId = _ref.testId,
|
|
1734
1735
|
testId = _ref$testId === void 0 ? 'icon-bolt' : _ref$testId,
|
|
1735
1736
|
size = _ref.size,
|
|
1736
1737
|
color = _ref.color,
|
|
1737
1738
|
style = _ref.style,
|
|
1738
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1739
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
1739
1740
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1740
1741
|
var styleProps = {
|
|
1741
1742
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1763,14 +1764,14 @@ var IconBolt = React.forwardRef(function (_ref, ref) {
|
|
|
1763
1764
|
});
|
|
1764
1765
|
IconBolt.displayName = 'IconBolt';
|
|
1765
1766
|
|
|
1766
|
-
var _excluded$
|
|
1767
|
+
var _excluded$2v = ["testId", "size", "color", "style"];
|
|
1767
1768
|
var IconBook = React.forwardRef(function (_ref, ref) {
|
|
1768
1769
|
var _ref$testId = _ref.testId,
|
|
1769
1770
|
testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
|
|
1770
1771
|
size = _ref.size,
|
|
1771
1772
|
color = _ref.color,
|
|
1772
1773
|
style = _ref.style,
|
|
1773
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1774
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
1774
1775
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1775
1776
|
var styleProps = {
|
|
1776
1777
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1793,14 +1794,14 @@ var IconBook = React.forwardRef(function (_ref, ref) {
|
|
|
1793
1794
|
});
|
|
1794
1795
|
IconBook.displayName = 'IconBook';
|
|
1795
1796
|
|
|
1796
|
-
var _excluded$
|
|
1797
|
+
var _excluded$2u = ["testId", "size", "color", "style"];
|
|
1797
1798
|
var IconBriefcase = React.forwardRef(function (_ref, ref) {
|
|
1798
1799
|
var _ref$testId = _ref.testId,
|
|
1799
1800
|
testId = _ref$testId === void 0 ? 'icon-briefcase' : _ref$testId,
|
|
1800
1801
|
size = _ref.size,
|
|
1801
1802
|
color = _ref.color,
|
|
1802
1803
|
style = _ref.style,
|
|
1803
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1804
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
1804
1805
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1805
1806
|
var styleProps = {
|
|
1806
1807
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1821,14 +1822,14 @@ var IconBriefcase = React.forwardRef(function (_ref, ref) {
|
|
|
1821
1822
|
});
|
|
1822
1823
|
IconBriefcase.displayName = 'IconBriefcase';
|
|
1823
1824
|
|
|
1824
|
-
var _excluded$
|
|
1825
|
+
var _excluded$2t = ["testId", "size", "color", "style"];
|
|
1825
1826
|
var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
|
|
1826
1827
|
var _ref$testId = _ref.testId,
|
|
1827
1828
|
testId = _ref$testId === void 0 ? 'icon-bullseye-arrow' : _ref$testId,
|
|
1828
1829
|
size = _ref.size,
|
|
1829
1830
|
color = _ref.color,
|
|
1830
1831
|
style = _ref.style,
|
|
1831
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1832
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
1832
1833
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1833
1834
|
var styleProps = {
|
|
1834
1835
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1851,14 +1852,14 @@ var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
|
|
|
1851
1852
|
});
|
|
1852
1853
|
IconBullseyeArrow.displayName = 'IconBullseyeArrow';
|
|
1853
1854
|
|
|
1854
|
-
var _excluded$
|
|
1855
|
+
var _excluded$2s = ["testId", "size", "color", "style"];
|
|
1855
1856
|
var IconCalculator = React.forwardRef(function (_ref, ref) {
|
|
1856
1857
|
var _ref$testId = _ref.testId,
|
|
1857
1858
|
testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
|
|
1858
1859
|
size = _ref.size,
|
|
1859
1860
|
color = _ref.color,
|
|
1860
1861
|
style = _ref.style,
|
|
1861
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1862
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
1862
1863
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1863
1864
|
var styleProps = {
|
|
1864
1865
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1881,14 +1882,14 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
|
|
|
1881
1882
|
});
|
|
1882
1883
|
IconCalculator.displayName = 'IconCalculator';
|
|
1883
1884
|
|
|
1884
|
-
var _excluded$
|
|
1885
|
+
var _excluded$2r = ["testId", "size", "color", "style"];
|
|
1885
1886
|
var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
|
|
1886
1887
|
var _ref$testId = _ref.testId,
|
|
1887
1888
|
testId = _ref$testId === void 0 ? 'icon-calendar-alt' : _ref$testId,
|
|
1888
1889
|
size = _ref.size,
|
|
1889
1890
|
color = _ref.color,
|
|
1890
1891
|
style = _ref.style,
|
|
1891
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1892
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
1892
1893
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1893
1894
|
var styleProps = {
|
|
1894
1895
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1911,14 +1912,14 @@ var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
|
|
|
1911
1912
|
});
|
|
1912
1913
|
IconCalendarAlt.displayName = 'IconCalendarAlt';
|
|
1913
1914
|
|
|
1914
|
-
var _excluded$
|
|
1915
|
+
var _excluded$2q = ["testId", "size", "color", "style"];
|
|
1915
1916
|
var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
|
|
1916
1917
|
var _ref$testId = _ref.testId,
|
|
1917
1918
|
testId = _ref$testId === void 0 ? 'icon-calendar-check' : _ref$testId,
|
|
1918
1919
|
size = _ref.size,
|
|
1919
1920
|
color = _ref.color,
|
|
1920
1921
|
style = _ref.style,
|
|
1921
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1922
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
1922
1923
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1923
1924
|
var styleProps = {
|
|
1924
1925
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1941,14 +1942,14 @@ var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
|
|
|
1941
1942
|
});
|
|
1942
1943
|
IconCalendarCheck.displayName = 'IconCalendarCheck';
|
|
1943
1944
|
|
|
1944
|
-
var _excluded$
|
|
1945
|
+
var _excluded$2p = ["testId", "size", "color", "style"];
|
|
1945
1946
|
var IconCalendarDay = React.forwardRef(function (_ref, ref) {
|
|
1946
1947
|
var _ref$testId = _ref.testId,
|
|
1947
1948
|
testId = _ref$testId === void 0 ? 'icon-calendar-day' : _ref$testId,
|
|
1948
1949
|
size = _ref.size,
|
|
1949
1950
|
color = _ref.color,
|
|
1950
1951
|
style = _ref.style,
|
|
1951
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1952
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
1952
1953
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1953
1954
|
var styleProps = {
|
|
1954
1955
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1976,14 +1977,14 @@ var IconCalendarDay = React.forwardRef(function (_ref, ref) {
|
|
|
1976
1977
|
});
|
|
1977
1978
|
IconCalendarDay.displayName = 'IconCalendarDay';
|
|
1978
1979
|
|
|
1979
|
-
var _excluded$
|
|
1980
|
+
var _excluded$2o = ["testId", "size", "color", "style"];
|
|
1980
1981
|
var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
|
|
1981
1982
|
var _ref$testId = _ref.testId,
|
|
1982
1983
|
testId = _ref$testId === void 0 ? 'icon-calendar-exclamation' : _ref$testId,
|
|
1983
1984
|
size = _ref.size,
|
|
1984
1985
|
color = _ref.color,
|
|
1985
1986
|
style = _ref.style,
|
|
1986
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1987
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
1987
1988
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1988
1989
|
var styleProps = {
|
|
1989
1990
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2004,14 +2005,14 @@ var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
|
|
|
2004
2005
|
});
|
|
2005
2006
|
IconCalendarExclamation.displayName = 'IconCalendarExclamation';
|
|
2006
2007
|
|
|
2007
|
-
var _excluded$
|
|
2008
|
+
var _excluded$2n = ["testId", "size", "color", "style"];
|
|
2008
2009
|
var IconCalendarStar = React.forwardRef(function (_ref, ref) {
|
|
2009
2010
|
var _ref$testId = _ref.testId,
|
|
2010
2011
|
testId = _ref$testId === void 0 ? 'icon-calendar-star' : _ref$testId,
|
|
2011
2012
|
size = _ref.size,
|
|
2012
2013
|
color = _ref.color,
|
|
2013
2014
|
style = _ref.style,
|
|
2014
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2015
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
2015
2016
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2016
2017
|
var styleProps = {
|
|
2017
2018
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2032,14 +2033,14 @@ var IconCalendarStar = React.forwardRef(function (_ref, ref) {
|
|
|
2032
2033
|
});
|
|
2033
2034
|
IconCalendarStar.displayName = 'IconCalendarStar';
|
|
2034
2035
|
|
|
2035
|
-
var _excluded$
|
|
2036
|
+
var _excluded$2m = ["testId", "size", "color", "style"];
|
|
2036
2037
|
var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
|
|
2037
2038
|
var _ref$testId = _ref.testId,
|
|
2038
2039
|
testId = _ref$testId === void 0 ? 'icon-calendar-tomorrow' : _ref$testId,
|
|
2039
2040
|
size = _ref.size,
|
|
2040
2041
|
color = _ref.color,
|
|
2041
2042
|
style = _ref.style,
|
|
2042
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2043
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
2043
2044
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2044
2045
|
var styleProps = {
|
|
2045
2046
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2069,14 +2070,14 @@ var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
|
|
|
2069
2070
|
});
|
|
2070
2071
|
IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
|
|
2071
2072
|
|
|
2072
|
-
var _excluded$
|
|
2073
|
+
var _excluded$2l = ["testId", "size", "color", "style"];
|
|
2073
2074
|
var IconCalendar = React.forwardRef(function (_ref, ref) {
|
|
2074
2075
|
var _ref$testId = _ref.testId,
|
|
2075
2076
|
testId = _ref$testId === void 0 ? 'icon-calendar' : _ref$testId,
|
|
2076
2077
|
size = _ref.size,
|
|
2077
2078
|
color = _ref.color,
|
|
2078
2079
|
style = _ref.style,
|
|
2079
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2080
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
2080
2081
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2081
2082
|
var styleProps = {
|
|
2082
2083
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2099,14 +2100,14 @@ var IconCalendar = React.forwardRef(function (_ref, ref) {
|
|
|
2099
2100
|
});
|
|
2100
2101
|
IconCalendar.displayName = 'IconCalendar';
|
|
2101
2102
|
|
|
2102
|
-
var _excluded$
|
|
2103
|
+
var _excluded$2k = ["testId", "size", "color", "style"];
|
|
2103
2104
|
var IconCameraSlash = React.forwardRef(function (_ref, ref) {
|
|
2104
2105
|
var _ref$testId = _ref.testId,
|
|
2105
2106
|
testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
|
|
2106
2107
|
size = _ref.size,
|
|
2107
2108
|
color = _ref.color,
|
|
2108
2109
|
style = _ref.style,
|
|
2109
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2110
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
2110
2111
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2111
2112
|
var styleProps = {
|
|
2112
2113
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2130,14 +2131,14 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
|
|
|
2130
2131
|
});
|
|
2131
2132
|
IconCameraSlash.displayName = 'IconCameraSlash';
|
|
2132
2133
|
|
|
2133
|
-
var _excluded$
|
|
2134
|
+
var _excluded$2j = ["testId", "size", "color", "style"];
|
|
2134
2135
|
var IconCamera = React.forwardRef(function (_ref, ref) {
|
|
2135
2136
|
var _ref$testId = _ref.testId,
|
|
2136
2137
|
testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
|
|
2137
2138
|
size = _ref.size,
|
|
2138
2139
|
color = _ref.color,
|
|
2139
2140
|
style = _ref.style,
|
|
2140
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2141
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
2141
2142
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2142
2143
|
var styleProps = {
|
|
2143
2144
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2158,14 +2159,14 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
|
|
|
2158
2159
|
});
|
|
2159
2160
|
IconCamera.displayName = 'IconCamera';
|
|
2160
2161
|
|
|
2161
|
-
var _excluded$
|
|
2162
|
+
var _excluded$2i = ["testId", "size", "color", "style"];
|
|
2162
2163
|
var IconCashRegister = React.forwardRef(function (_ref, ref) {
|
|
2163
2164
|
var _ref$testId = _ref.testId,
|
|
2164
2165
|
testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
|
|
2165
2166
|
size = _ref.size,
|
|
2166
2167
|
color = _ref.color,
|
|
2167
2168
|
style = _ref.style,
|
|
2168
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2169
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
2169
2170
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2170
2171
|
var styleProps = {
|
|
2171
2172
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2186,14 +2187,14 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
|
|
|
2186
2187
|
});
|
|
2187
2188
|
IconCashRegister.displayName = 'IconCashRegister';
|
|
2188
2189
|
|
|
2189
|
-
var _excluded$
|
|
2190
|
+
var _excluded$2h = ["testId", "size", "color", "style"];
|
|
2190
2191
|
var IconChartBar = React.forwardRef(function (_ref, ref) {
|
|
2191
2192
|
var _ref$testId = _ref.testId,
|
|
2192
2193
|
testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
|
|
2193
2194
|
size = _ref.size,
|
|
2194
2195
|
color = _ref.color,
|
|
2195
2196
|
style = _ref.style,
|
|
2196
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2197
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
2197
2198
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2198
2199
|
var styleProps = {
|
|
2199
2200
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2216,14 +2217,14 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
|
|
|
2216
2217
|
});
|
|
2217
2218
|
IconChartBar.displayName = 'IconChartBar';
|
|
2218
2219
|
|
|
2219
|
-
var _excluded$
|
|
2220
|
+
var _excluded$2g = ["testId", "size", "color", "style"];
|
|
2220
2221
|
var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
|
|
2221
2222
|
var _ref$testId = _ref.testId,
|
|
2222
2223
|
testId = _ref$testId === void 0 ? 'icon-check-circle-incomplete' : _ref$testId,
|
|
2223
2224
|
size = _ref.size,
|
|
2224
2225
|
color = _ref.color,
|
|
2225
2226
|
style = _ref.style,
|
|
2226
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2227
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
2227
2228
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2228
2229
|
var styleProps = {
|
|
2229
2230
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2244,14 +2245,14 @@ var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
|
|
|
2244
2245
|
});
|
|
2245
2246
|
IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
|
|
2246
2247
|
|
|
2247
|
-
var _excluded$
|
|
2248
|
+
var _excluded$2f = ["testId", "size", "color", "style"];
|
|
2248
2249
|
var IconCheck = React.forwardRef(function (_ref, ref) {
|
|
2249
2250
|
var _ref$testId = _ref.testId,
|
|
2250
2251
|
testId = _ref$testId === void 0 ? 'icon-check' : _ref$testId,
|
|
2251
2252
|
size = _ref.size,
|
|
2252
2253
|
color = _ref.color,
|
|
2253
2254
|
style = _ref.style,
|
|
2254
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2255
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
2255
2256
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2256
2257
|
var styleProps = {
|
|
2257
2258
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2274,14 +2275,14 @@ var IconCheck = React.forwardRef(function (_ref, ref) {
|
|
|
2274
2275
|
});
|
|
2275
2276
|
IconCheck.displayName = 'IconCheck';
|
|
2276
2277
|
|
|
2277
|
-
var _excluded$
|
|
2278
|
+
var _excluded$2e = ["testId", "size", "color", "style"];
|
|
2278
2279
|
var IconChevronDown = React.forwardRef(function (_ref, ref) {
|
|
2279
2280
|
var _ref$testId = _ref.testId,
|
|
2280
2281
|
testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
|
|
2281
2282
|
size = _ref.size,
|
|
2282
2283
|
color = _ref.color,
|
|
2283
2284
|
style = _ref.style,
|
|
2284
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2285
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
2285
2286
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2286
2287
|
var styleProps = {
|
|
2287
2288
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2304,14 +2305,14 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
|
|
|
2304
2305
|
});
|
|
2305
2306
|
IconChevronDown.displayName = 'IconChevronDown';
|
|
2306
2307
|
|
|
2307
|
-
var _excluded$
|
|
2308
|
+
var _excluded$2d = ["testId", "size", "color", "style"];
|
|
2308
2309
|
var IconChevronLeft = React.forwardRef(function (_ref, ref) {
|
|
2309
2310
|
var _ref$testId = _ref.testId,
|
|
2310
2311
|
testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
|
|
2311
2312
|
size = _ref.size,
|
|
2312
2313
|
color = _ref.color,
|
|
2313
2314
|
style = _ref.style,
|
|
2314
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2315
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
2315
2316
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2316
2317
|
var styleProps = {
|
|
2317
2318
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2334,14 +2335,14 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
|
|
|
2334
2335
|
});
|
|
2335
2336
|
IconChevronLeft.displayName = 'IconChevronLeft';
|
|
2336
2337
|
|
|
2337
|
-
var _excluded$
|
|
2338
|
+
var _excluded$2c = ["testId", "size", "color", "style"];
|
|
2338
2339
|
var IconChevronRight = React.forwardRef(function (_ref, ref) {
|
|
2339
2340
|
var _ref$testId = _ref.testId,
|
|
2340
2341
|
testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
|
|
2341
2342
|
size = _ref.size,
|
|
2342
2343
|
color = _ref.color,
|
|
2343
2344
|
style = _ref.style,
|
|
2344
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2345
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
2345
2346
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2346
2347
|
var styleProps = {
|
|
2347
2348
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2364,14 +2365,14 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
|
|
|
2364
2365
|
});
|
|
2365
2366
|
IconChevronRight.displayName = 'IconChevronRight';
|
|
2366
2367
|
|
|
2367
|
-
var _excluded$
|
|
2368
|
+
var _excluded$2b = ["testId", "size", "color", "style"];
|
|
2368
2369
|
var IconChevronUp = React.forwardRef(function (_ref, ref) {
|
|
2369
2370
|
var _ref$testId = _ref.testId,
|
|
2370
2371
|
testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
|
|
2371
2372
|
size = _ref.size,
|
|
2372
2373
|
color = _ref.color,
|
|
2373
2374
|
style = _ref.style,
|
|
2374
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2375
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
2375
2376
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2376
2377
|
var styleProps = {
|
|
2377
2378
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2394,14 +2395,14 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
|
|
|
2394
2395
|
});
|
|
2395
2396
|
IconChevronUp.displayName = 'IconChevronUp';
|
|
2396
2397
|
|
|
2397
|
-
var _excluded$
|
|
2398
|
+
var _excluded$2a = ["testId", "size", "color", "style"];
|
|
2398
2399
|
var IconClipboardList = React.forwardRef(function (_ref, ref) {
|
|
2399
2400
|
var _ref$testId = _ref.testId,
|
|
2400
2401
|
testId = _ref$testId === void 0 ? 'icon-clipboard-list' : _ref$testId,
|
|
2401
2402
|
size = _ref.size,
|
|
2402
2403
|
color = _ref.color,
|
|
2403
2404
|
style = _ref.style,
|
|
2404
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2405
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
2405
2406
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2406
2407
|
var styleProps = {
|
|
2407
2408
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2424,14 +2425,14 @@ var IconClipboardList = React.forwardRef(function (_ref, ref) {
|
|
|
2424
2425
|
});
|
|
2425
2426
|
IconClipboardList.displayName = 'IconClipboardList';
|
|
2426
2427
|
|
|
2427
|
-
var _excluded$
|
|
2428
|
+
var _excluded$29 = ["testId", "size", "color", "style"];
|
|
2428
2429
|
var IconClockExclamation = React.forwardRef(function (_ref, ref) {
|
|
2429
2430
|
var _ref$testId = _ref.testId,
|
|
2430
2431
|
testId = _ref$testId === void 0 ? 'icon-clock-exclamation' : _ref$testId,
|
|
2431
2432
|
size = _ref.size,
|
|
2432
2433
|
color = _ref.color,
|
|
2433
2434
|
style = _ref.style,
|
|
2434
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2435
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
2435
2436
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2436
2437
|
var styleProps = {
|
|
2437
2438
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2459,14 +2460,14 @@ var IconClockExclamation = React.forwardRef(function (_ref, ref) {
|
|
|
2459
2460
|
});
|
|
2460
2461
|
IconClockExclamation.displayName = 'IconClockExclamation';
|
|
2461
2462
|
|
|
2462
|
-
var _excluded$
|
|
2463
|
+
var _excluded$28 = ["testId", "size", "color", "style"];
|
|
2463
2464
|
var IconClockRewind = React.forwardRef(function (_ref, ref) {
|
|
2464
2465
|
var _ref$testId = _ref.testId,
|
|
2465
2466
|
testId = _ref$testId === void 0 ? 'icon-clock-rewind' : _ref$testId,
|
|
2466
2467
|
size = _ref.size,
|
|
2467
2468
|
color = _ref.color,
|
|
2468
2469
|
style = _ref.style,
|
|
2469
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2470
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
2470
2471
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2471
2472
|
var styleProps = {
|
|
2472
2473
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2494,14 +2495,14 @@ var IconClockRewind = React.forwardRef(function (_ref, ref) {
|
|
|
2494
2495
|
});
|
|
2495
2496
|
IconClockRewind.displayName = 'IconClockRewind';
|
|
2496
2497
|
|
|
2497
|
-
var _excluded$
|
|
2498
|
+
var _excluded$27 = ["testId", "size", "color", "style"];
|
|
2498
2499
|
var IconClock = React.forwardRef(function (_ref, ref) {
|
|
2499
2500
|
var _ref$testId = _ref.testId,
|
|
2500
2501
|
testId = _ref$testId === void 0 ? 'icon-clock' : _ref$testId,
|
|
2501
2502
|
size = _ref.size,
|
|
2502
2503
|
color = _ref.color,
|
|
2503
2504
|
style = _ref.style,
|
|
2504
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2505
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
2505
2506
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2506
2507
|
var styleProps = {
|
|
2507
2508
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2522,14 +2523,14 @@ var IconClock = React.forwardRef(function (_ref, ref) {
|
|
|
2522
2523
|
});
|
|
2523
2524
|
IconClock.displayName = 'IconClock';
|
|
2524
2525
|
|
|
2525
|
-
var _excluded$
|
|
2526
|
+
var _excluded$26 = ["testId", "size", "color", "style"];
|
|
2526
2527
|
var IconCog = React.forwardRef(function (_ref, ref) {
|
|
2527
2528
|
var _ref$testId = _ref.testId,
|
|
2528
2529
|
testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
|
|
2529
2530
|
size = _ref.size,
|
|
2530
2531
|
color = _ref.color,
|
|
2531
2532
|
style = _ref.style,
|
|
2532
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
2533
2534
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2534
2535
|
var styleProps = {
|
|
2535
2536
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2550,14 +2551,14 @@ var IconCog = React.forwardRef(function (_ref, ref) {
|
|
|
2550
2551
|
});
|
|
2551
2552
|
IconCog.displayName = 'IconCog';
|
|
2552
2553
|
|
|
2553
|
-
var _excluded$
|
|
2554
|
+
var _excluded$25 = ["testId", "size", "color", "style"];
|
|
2554
2555
|
var IconCommentLines = React.forwardRef(function (_ref, ref) {
|
|
2555
2556
|
var _ref$testId = _ref.testId,
|
|
2556
2557
|
testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
|
|
2557
2558
|
size = _ref.size,
|
|
2558
2559
|
color = _ref.color,
|
|
2559
2560
|
style = _ref.style,
|
|
2560
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2561
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
2561
2562
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2562
2563
|
var styleProps = {
|
|
2563
2564
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2583,14 +2584,14 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
|
|
|
2583
2584
|
});
|
|
2584
2585
|
IconCommentLines.displayName = 'IconCommentLines';
|
|
2585
2586
|
|
|
2586
|
-
var _excluded$
|
|
2587
|
+
var _excluded$24 = ["testId", "size", "color", "style"];
|
|
2587
2588
|
var IconComment = React.forwardRef(function (_ref, ref) {
|
|
2588
2589
|
var _ref$testId = _ref.testId,
|
|
2589
2590
|
testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
|
|
2590
2591
|
size = _ref.size,
|
|
2591
2592
|
color = _ref.color,
|
|
2592
2593
|
style = _ref.style,
|
|
2593
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2594
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
2594
2595
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2595
2596
|
var styleProps = {
|
|
2596
2597
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2613,14 +2614,14 @@ var IconComment = React.forwardRef(function (_ref, ref) {
|
|
|
2613
2614
|
});
|
|
2614
2615
|
IconComment.displayName = 'IconComment';
|
|
2615
2616
|
|
|
2616
|
-
var _excluded$
|
|
2617
|
+
var _excluded$23 = ["testId", "size", "color", "style"];
|
|
2617
2618
|
var IconCopy = React.forwardRef(function (_ref, ref) {
|
|
2618
2619
|
var _ref$testId = _ref.testId,
|
|
2619
2620
|
testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
|
|
2620
2621
|
size = _ref.size,
|
|
2621
2622
|
color = _ref.color,
|
|
2622
2623
|
style = _ref.style,
|
|
2623
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2624
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
2624
2625
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2625
2626
|
var styleProps = {
|
|
2626
2627
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2648,14 +2649,14 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
|
|
|
2648
2649
|
});
|
|
2649
2650
|
IconCopy.displayName = 'IconCopy';
|
|
2650
2651
|
|
|
2651
|
-
var _excluded$
|
|
2652
|
+
var _excluded$22 = ["testId", "size", "color", "style"];
|
|
2652
2653
|
var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
|
|
2653
2654
|
var _ref$testId = _ref.testId,
|
|
2654
2655
|
testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
|
|
2655
2656
|
size = _ref.size,
|
|
2656
2657
|
color = _ref.color,
|
|
2657
2658
|
style = _ref.style,
|
|
2658
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2659
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
2659
2660
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2660
2661
|
var styleProps = {
|
|
2661
2662
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2685,14 +2686,14 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
|
|
|
2685
2686
|
});
|
|
2686
2687
|
IconCreditCardPlus.displayName = 'IconCreditCardPlus';
|
|
2687
2688
|
|
|
2688
|
-
var _excluded$
|
|
2689
|
+
var _excluded$21 = ["testId", "size", "color", "style"];
|
|
2689
2690
|
var IconCreditCard = React.forwardRef(function (_ref, ref) {
|
|
2690
2691
|
var _ref$testId = _ref.testId,
|
|
2691
2692
|
testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
|
|
2692
2693
|
size = _ref.size,
|
|
2693
2694
|
color = _ref.color,
|
|
2694
2695
|
style = _ref.style,
|
|
2695
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2696
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
2696
2697
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2697
2698
|
var styleProps = {
|
|
2698
2699
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2720,14 +2721,14 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
|
|
|
2720
2721
|
});
|
|
2721
2722
|
IconCreditCard.displayName = 'IconCreditCard';
|
|
2722
2723
|
|
|
2723
|
-
var _excluded$
|
|
2724
|
+
var _excluded$20 = ["testId", "size", "color", "style"];
|
|
2724
2725
|
var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
2725
2726
|
var _ref$testId = _ref.testId,
|
|
2726
2727
|
testId = _ref$testId === void 0 ? 'icon-decent-monochromatic' : _ref$testId,
|
|
2727
2728
|
size = _ref.size,
|
|
2728
2729
|
color = _ref.color,
|
|
2729
2730
|
style = _ref.style,
|
|
2730
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2731
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
2731
2732
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2732
2733
|
var styleProps = {
|
|
2733
2734
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2770,14 +2771,14 @@ var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
2770
2771
|
});
|
|
2771
2772
|
IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
|
|
2772
2773
|
|
|
2773
|
-
var _excluded$
|
|
2774
|
+
var _excluded$1$ = ["testId", "size", "color", "style"];
|
|
2774
2775
|
var IconDecent = React.forwardRef(function (_ref, ref) {
|
|
2775
2776
|
var _ref$testId = _ref.testId,
|
|
2776
2777
|
testId = _ref$testId === void 0 ? 'icon-decent' : _ref$testId,
|
|
2777
2778
|
size = _ref.size,
|
|
2778
2779
|
color = _ref.color,
|
|
2779
2780
|
style = _ref.style,
|
|
2780
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2781
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
2781
2782
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2782
2783
|
var styleProps = {
|
|
2783
2784
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2808,14 +2809,14 @@ var IconDecent = React.forwardRef(function (_ref, ref) {
|
|
|
2808
2809
|
});
|
|
2809
2810
|
IconDecent.displayName = 'IconDecent';
|
|
2810
2811
|
|
|
2811
|
-
var _excluded$
|
|
2812
|
+
var _excluded$1_ = ["testId", "size", "color", "style"];
|
|
2812
2813
|
var IconDownload = React.forwardRef(function (_ref, ref) {
|
|
2813
2814
|
var _ref$testId = _ref.testId,
|
|
2814
2815
|
testId = _ref$testId === void 0 ? 'icon-download' : _ref$testId,
|
|
2815
2816
|
size = _ref.size,
|
|
2816
2817
|
color = _ref.color,
|
|
2817
2818
|
style = _ref.style,
|
|
2818
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2819
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
2819
2820
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2820
2821
|
var styleProps = {
|
|
2821
2822
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2838,14 +2839,14 @@ var IconDownload = React.forwardRef(function (_ref, ref) {
|
|
|
2838
2839
|
});
|
|
2839
2840
|
IconDownload.displayName = 'IconDownload';
|
|
2840
2841
|
|
|
2841
|
-
var _excluded$
|
|
2842
|
+
var _excluded$1Z = ["testId", "size", "color", "style"];
|
|
2842
2843
|
var IconEdit = React.forwardRef(function (_ref, ref) {
|
|
2843
2844
|
var _ref$testId = _ref.testId,
|
|
2844
2845
|
testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
|
|
2845
2846
|
size = _ref.size,
|
|
2846
2847
|
color = _ref.color,
|
|
2847
2848
|
style = _ref.style,
|
|
2848
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2849
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
2849
2850
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2850
2851
|
var styleProps = {
|
|
2851
2852
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2866,14 +2867,14 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
|
|
|
2866
2867
|
});
|
|
2867
2868
|
IconEdit.displayName = 'IconEdit';
|
|
2868
2869
|
|
|
2869
|
-
var _excluded$
|
|
2870
|
+
var _excluded$1Y = ["testId", "size", "color", "style"];
|
|
2870
2871
|
var IconEllipsisV = React.forwardRef(function (_ref, ref) {
|
|
2871
2872
|
var _ref$testId = _ref.testId,
|
|
2872
2873
|
testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
|
|
2873
2874
|
size = _ref.size,
|
|
2874
2875
|
color = _ref.color,
|
|
2875
2876
|
style = _ref.style,
|
|
2876
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2877
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
2877
2878
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2878
2879
|
var styleProps = {
|
|
2879
2880
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2896,14 +2897,14 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
|
|
|
2896
2897
|
});
|
|
2897
2898
|
IconEllipsisV.displayName = 'IconEllipsisV';
|
|
2898
2899
|
|
|
2899
|
-
var _excluded$
|
|
2900
|
+
var _excluded$1X = ["testId", "size", "color", "style"];
|
|
2900
2901
|
var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
|
|
2901
2902
|
var _ref$testId = _ref.testId,
|
|
2902
2903
|
testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
|
|
2903
2904
|
size = _ref.size,
|
|
2904
2905
|
color = _ref.color,
|
|
2905
2906
|
style = _ref.style,
|
|
2906
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2907
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
2907
2908
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2908
2909
|
var styleProps = {
|
|
2909
2910
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2931,14 +2932,14 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
|
|
|
2931
2932
|
});
|
|
2932
2933
|
IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
|
|
2933
2934
|
|
|
2934
|
-
var _excluded$
|
|
2935
|
+
var _excluded$1W = ["testId", "size", "color", "style"];
|
|
2935
2936
|
var IconEnvelope = React.forwardRef(function (_ref, ref) {
|
|
2936
2937
|
var _ref$testId = _ref.testId,
|
|
2937
2938
|
testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
|
|
2938
2939
|
size = _ref.size,
|
|
2939
2940
|
color = _ref.color,
|
|
2940
2941
|
style = _ref.style,
|
|
2941
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2942
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
2942
2943
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2943
2944
|
var styleProps = {
|
|
2944
2945
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2959,14 +2960,14 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
|
|
|
2959
2960
|
});
|
|
2960
2961
|
IconEnvelope.displayName = 'IconEnvelope';
|
|
2961
2962
|
|
|
2962
|
-
var _excluded$
|
|
2963
|
+
var _excluded$1V = ["testId", "size", "color", "style"];
|
|
2963
2964
|
var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
|
|
2964
2965
|
var _ref$testId = _ref.testId,
|
|
2965
2966
|
testId = _ref$testId === void 0 ? 'icon-exclaimation-triangle' : _ref$testId,
|
|
2966
2967
|
size = _ref.size,
|
|
2967
2968
|
color = _ref.color,
|
|
2968
2969
|
style = _ref.style,
|
|
2969
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2970
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
2970
2971
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2971
2972
|
var styleProps = {
|
|
2972
2973
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2989,14 +2990,14 @@ var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
|
|
|
2989
2990
|
});
|
|
2990
2991
|
IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
|
|
2991
2992
|
|
|
2992
|
-
var _excluded$
|
|
2993
|
+
var _excluded$1U = ["testId", "size", "color", "style"];
|
|
2993
2994
|
var IconExclaimation = React.forwardRef(function (_ref, ref) {
|
|
2994
2995
|
var _ref$testId = _ref.testId,
|
|
2995
2996
|
testId = _ref$testId === void 0 ? 'icon-exclaimation' : _ref$testId,
|
|
2996
2997
|
size = _ref.size,
|
|
2997
2998
|
color = _ref.color,
|
|
2998
2999
|
style = _ref.style,
|
|
2999
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3000
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
3000
3001
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3001
3002
|
var styleProps = {
|
|
3002
3003
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3017,14 +3018,14 @@ var IconExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
3017
3018
|
});
|
|
3018
3019
|
IconExclaimation.displayName = 'IconExclaimation';
|
|
3019
3020
|
|
|
3020
|
-
var _excluded$
|
|
3021
|
+
var _excluded$1T = ["testId", "size", "color", "style"];
|
|
3021
3022
|
var IconExpand = React.forwardRef(function (_ref, ref) {
|
|
3022
3023
|
var _ref$testId = _ref.testId,
|
|
3023
3024
|
testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
|
|
3024
3025
|
size = _ref.size,
|
|
3025
3026
|
color = _ref.color,
|
|
3026
3027
|
style = _ref.style,
|
|
3027
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3028
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
3028
3029
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3029
3030
|
var styleProps = {
|
|
3030
3031
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3045,14 +3046,14 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
|
|
|
3045
3046
|
});
|
|
3046
3047
|
IconExpand.displayName = 'IconExpand';
|
|
3047
3048
|
|
|
3048
|
-
var _excluded$
|
|
3049
|
+
var _excluded$1S = ["testId", "size", "color", "style"];
|
|
3049
3050
|
var IconExternalLink = React.forwardRef(function (_ref, ref) {
|
|
3050
3051
|
var _ref$testId = _ref.testId,
|
|
3051
3052
|
testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
|
|
3052
3053
|
size = _ref.size,
|
|
3053
3054
|
color = _ref.color,
|
|
3054
3055
|
style = _ref.style,
|
|
3055
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3056
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
3056
3057
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3057
3058
|
var styleProps = {
|
|
3058
3059
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3075,14 +3076,14 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
|
|
|
3075
3076
|
});
|
|
3076
3077
|
IconExternalLink.displayName = 'IconExternalLink';
|
|
3077
3078
|
|
|
3078
|
-
var _excluded$
|
|
3079
|
+
var _excluded$1R = ["testId", "size", "color", "style"];
|
|
3079
3080
|
var IconEyeSlash = React.forwardRef(function (_ref, ref) {
|
|
3080
3081
|
var _ref$testId = _ref.testId,
|
|
3081
3082
|
testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
|
|
3082
3083
|
size = _ref.size,
|
|
3083
3084
|
color = _ref.color,
|
|
3084
3085
|
style = _ref.style,
|
|
3085
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3086
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
3086
3087
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3087
3088
|
var styleProps = {
|
|
3088
3089
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3117,14 +3118,14 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
|
|
|
3117
3118
|
});
|
|
3118
3119
|
IconEyeSlash.displayName = 'IconEyeSlash';
|
|
3119
3120
|
|
|
3120
|
-
var _excluded$
|
|
3121
|
+
var _excluded$1Q = ["testId", "size", "color", "style"];
|
|
3121
3122
|
var IconEye = React.forwardRef(function (_ref, ref) {
|
|
3122
3123
|
var _ref$testId = _ref.testId,
|
|
3123
3124
|
testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
|
|
3124
3125
|
size = _ref.size,
|
|
3125
3126
|
color = _ref.color,
|
|
3126
3127
|
style = _ref.style,
|
|
3127
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3128
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
3128
3129
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3129
3130
|
var styleProps = {
|
|
3130
3131
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3152,14 +3153,14 @@ var IconEye = React.forwardRef(function (_ref, ref) {
|
|
|
3152
3153
|
});
|
|
3153
3154
|
IconEye.displayName = 'IconEye';
|
|
3154
3155
|
|
|
3155
|
-
var _excluded$
|
|
3156
|
+
var _excluded$1P = ["testId", "size", "color", "style"];
|
|
3156
3157
|
var IconFaceSmileRelaxed = React.forwardRef(function (_ref, ref) {
|
|
3157
3158
|
var _ref$testId = _ref.testId,
|
|
3158
3159
|
testId = _ref$testId === void 0 ? 'icon-face-smile-relaxed' : _ref$testId,
|
|
3159
3160
|
size = _ref.size,
|
|
3160
3161
|
color = _ref.color,
|
|
3161
3162
|
style = _ref.style,
|
|
3162
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3163
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
3163
3164
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3164
3165
|
var styleProps = {
|
|
3165
3166
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3187,14 +3188,14 @@ var IconFaceSmileRelaxed = React.forwardRef(function (_ref, ref) {
|
|
|
3187
3188
|
});
|
|
3188
3189
|
IconFaceSmileRelaxed.displayName = 'IconFaceSmileRelaxed';
|
|
3189
3190
|
|
|
3190
|
-
var _excluded$
|
|
3191
|
+
var _excluded$1O = ["testId", "size", "color", "style"];
|
|
3191
3192
|
var IconFilePdf = React.forwardRef(function (_ref, ref) {
|
|
3192
3193
|
var _ref$testId = _ref.testId,
|
|
3193
3194
|
testId = _ref$testId === void 0 ? 'icon-file-pdf' : _ref$testId,
|
|
3194
3195
|
size = _ref.size,
|
|
3195
3196
|
color = _ref.color,
|
|
3196
3197
|
style = _ref.style,
|
|
3197
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3198
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
3198
3199
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3199
3200
|
var styleProps = {
|
|
3200
3201
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3222,14 +3223,14 @@ var IconFilePdf = React.forwardRef(function (_ref, ref) {
|
|
|
3222
3223
|
});
|
|
3223
3224
|
IconFilePdf.displayName = 'IconFilePdf';
|
|
3224
3225
|
|
|
3225
|
-
var _excluded$
|
|
3226
|
+
var _excluded$1N = ["testId", "size", "color", "style"];
|
|
3226
3227
|
var IconFile = React.forwardRef(function (_ref, ref) {
|
|
3227
3228
|
var _ref$testId = _ref.testId,
|
|
3228
3229
|
testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
|
|
3229
3230
|
size = _ref.size,
|
|
3230
3231
|
color = _ref.color,
|
|
3231
3232
|
style = _ref.style,
|
|
3232
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3233
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
3233
3234
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3234
3235
|
var styleProps = {
|
|
3235
3236
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3257,14 +3258,14 @@ var IconFile = React.forwardRef(function (_ref, ref) {
|
|
|
3257
3258
|
});
|
|
3258
3259
|
IconFile.displayName = 'IconFile';
|
|
3259
3260
|
|
|
3260
|
-
var _excluded$
|
|
3261
|
+
var _excluded$1M = ["testId", "size", "color", "style"];
|
|
3261
3262
|
var IconFlag = React.forwardRef(function (_ref, ref) {
|
|
3262
3263
|
var _ref$testId = _ref.testId,
|
|
3263
3264
|
testId = _ref$testId === void 0 ? 'icon-flag' : _ref$testId,
|
|
3264
3265
|
size = _ref.size,
|
|
3265
3266
|
color = _ref.color,
|
|
3266
3267
|
style = _ref.style,
|
|
3267
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3268
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
3268
3269
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3269
3270
|
var styleProps = {
|
|
3270
3271
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3292,14 +3293,14 @@ var IconFlag = React.forwardRef(function (_ref, ref) {
|
|
|
3292
3293
|
});
|
|
3293
3294
|
IconFlag.displayName = 'IconFlag';
|
|
3294
3295
|
|
|
3295
|
-
var _excluded$
|
|
3296
|
+
var _excluded$1L = ["testId", "size", "color", "style"];
|
|
3296
3297
|
var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
|
|
3297
3298
|
var _ref$testId = _ref.testId,
|
|
3298
3299
|
testId = _ref$testId === void 0 ? 'icon-four-dots-circle' : _ref$testId,
|
|
3299
3300
|
size = _ref.size,
|
|
3300
3301
|
color = _ref.color,
|
|
3301
3302
|
style = _ref.style,
|
|
3302
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3303
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
3303
3304
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3304
3305
|
var styleProps = {
|
|
3305
3306
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3322,14 +3323,14 @@ var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
|
|
|
3322
3323
|
});
|
|
3323
3324
|
IconFourDotsCircle.displayName = 'IconFourDotsCircle';
|
|
3324
3325
|
|
|
3325
|
-
var _excluded$
|
|
3326
|
+
var _excluded$1K = ["testId", "size", "color", "style"];
|
|
3326
3327
|
var IconFourSquares = React.forwardRef(function (_ref, ref) {
|
|
3327
3328
|
var _ref$testId = _ref.testId,
|
|
3328
3329
|
testId = _ref$testId === void 0 ? 'icon-four-squares' : _ref$testId,
|
|
3329
3330
|
size = _ref.size,
|
|
3330
3331
|
color = _ref.color,
|
|
3331
3332
|
style = _ref.style,
|
|
3332
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3333
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
3333
3334
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3334
3335
|
var styleProps = {
|
|
3335
3336
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3375,14 +3376,14 @@ var IconFourSquares = React.forwardRef(function (_ref, ref) {
|
|
|
3375
3376
|
});
|
|
3376
3377
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
3377
3378
|
|
|
3378
|
-
var _excluded$
|
|
3379
|
+
var _excluded$1J = ["testId", "size", "color", "style"];
|
|
3379
3380
|
var IconGavel = React.forwardRef(function (_ref, ref) {
|
|
3380
3381
|
var _ref$testId = _ref.testId,
|
|
3381
3382
|
testId = _ref$testId === void 0 ? 'icon-gavel' : _ref$testId,
|
|
3382
3383
|
size = _ref.size,
|
|
3383
3384
|
color = _ref.color,
|
|
3384
3385
|
style = _ref.style,
|
|
3385
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3386
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
3386
3387
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3387
3388
|
var styleProps = {
|
|
3388
3389
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3403,14 +3404,14 @@ var IconGavel = React.forwardRef(function (_ref, ref) {
|
|
|
3403
3404
|
});
|
|
3404
3405
|
IconGavel.displayName = 'IconGavel';
|
|
3405
3406
|
|
|
3406
|
-
var _excluded$
|
|
3407
|
+
var _excluded$1I = ["testId", "size", "color", "style"];
|
|
3407
3408
|
var IconGif = React.forwardRef(function (_ref, ref) {
|
|
3408
3409
|
var _ref$testId = _ref.testId,
|
|
3409
3410
|
testId = _ref$testId === void 0 ? 'icon-gif' : _ref$testId,
|
|
3410
3411
|
size = _ref.size,
|
|
3411
3412
|
color = _ref.color,
|
|
3412
3413
|
style = _ref.style,
|
|
3413
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3414
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
3414
3415
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3415
3416
|
var styleProps = {
|
|
3416
3417
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3435,14 +3436,14 @@ var IconGif = React.forwardRef(function (_ref, ref) {
|
|
|
3435
3436
|
});
|
|
3436
3437
|
IconGif.displayName = 'IconGif';
|
|
3437
3438
|
|
|
3438
|
-
var _excluded$
|
|
3439
|
+
var _excluded$1H = ["testId", "size", "color", "style"];
|
|
3439
3440
|
var IconGift = React.forwardRef(function (_ref, ref) {
|
|
3440
3441
|
var _ref$testId = _ref.testId,
|
|
3441
3442
|
testId = _ref$testId === void 0 ? 'icon-gift' : _ref$testId,
|
|
3442
3443
|
size = _ref.size,
|
|
3443
3444
|
color = _ref.color,
|
|
3444
3445
|
style = _ref.style,
|
|
3445
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3446
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
3446
3447
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3447
3448
|
var styleProps = {
|
|
3448
3449
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3463,14 +3464,14 @@ var IconGift = React.forwardRef(function (_ref, ref) {
|
|
|
3463
3464
|
});
|
|
3464
3465
|
IconGift.displayName = 'IconGift';
|
|
3465
3466
|
|
|
3466
|
-
var _excluded$
|
|
3467
|
+
var _excluded$1G = ["testId", "size", "color", "style"];
|
|
3467
3468
|
var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
3468
3469
|
var _ref$testId = _ref.testId,
|
|
3469
3470
|
testId = _ref$testId === void 0 ? 'icon-good-monochromatic' : _ref$testId,
|
|
3470
3471
|
size = _ref.size,
|
|
3471
3472
|
color = _ref.color,
|
|
3472
3473
|
style = _ref.style,
|
|
3473
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3474
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
3474
3475
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3475
3476
|
var styleProps = {
|
|
3476
3477
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3509,14 +3510,14 @@ var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
3509
3510
|
});
|
|
3510
3511
|
IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
|
|
3511
3512
|
|
|
3512
|
-
var _excluded$
|
|
3513
|
+
var _excluded$1F = ["testId", "size", "color", "style"];
|
|
3513
3514
|
var IconGood = React.forwardRef(function (_ref, ref) {
|
|
3514
3515
|
var _ref$testId = _ref.testId,
|
|
3515
3516
|
testId = _ref$testId === void 0 ? 'icon-good' : _ref$testId,
|
|
3516
3517
|
size = _ref.size,
|
|
3517
3518
|
color = _ref.color,
|
|
3518
3519
|
style = _ref.style,
|
|
3519
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3520
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
3520
3521
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3521
3522
|
var styleProps = {
|
|
3522
3523
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3543,14 +3544,14 @@ var IconGood = React.forwardRef(function (_ref, ref) {
|
|
|
3543
3544
|
});
|
|
3544
3545
|
IconGood.displayName = 'IconGood';
|
|
3545
3546
|
|
|
3546
|
-
var _excluded$
|
|
3547
|
+
var _excluded$1E = ["testId", "size", "color", "style"];
|
|
3547
3548
|
var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
3548
3549
|
var _ref$testId = _ref.testId,
|
|
3549
3550
|
testId = _ref$testId === void 0 ? 'icon-great-monochromatic' : _ref$testId,
|
|
3550
3551
|
size = _ref.size,
|
|
3551
3552
|
color = _ref.color,
|
|
3552
3553
|
style = _ref.style,
|
|
3553
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3554
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
3554
3555
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3555
3556
|
var styleProps = {
|
|
3556
3557
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3591,14 +3592,14 @@ var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
|
|
|
3591
3592
|
});
|
|
3592
3593
|
IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
|
|
3593
3594
|
|
|
3594
|
-
var _excluded$
|
|
3595
|
+
var _excluded$1D = ["testId", "size", "color", "style"];
|
|
3595
3596
|
var IconGreat = React.forwardRef(function (_ref, ref) {
|
|
3596
3597
|
var _ref$testId = _ref.testId,
|
|
3597
3598
|
testId = _ref$testId === void 0 ? 'icon-great' : _ref$testId,
|
|
3598
3599
|
size = _ref.size,
|
|
3599
3600
|
color = _ref.color,
|
|
3600
3601
|
style = _ref.style,
|
|
3601
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3602
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
3602
3603
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3603
3604
|
var styleProps = {
|
|
3604
3605
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3627,14 +3628,14 @@ var IconGreat = React.forwardRef(function (_ref, ref) {
|
|
|
3627
3628
|
});
|
|
3628
3629
|
IconGreat.displayName = 'IconGreat';
|
|
3629
3630
|
|
|
3630
|
-
var _excluded$
|
|
3631
|
+
var _excluded$1C = ["testId", "size", "color", "style"];
|
|
3631
3632
|
var IconGrinBeam = React.forwardRef(function (_ref, ref) {
|
|
3632
3633
|
var _ref$testId = _ref.testId,
|
|
3633
3634
|
testId = _ref$testId === void 0 ? 'icon-grin-beam' : _ref$testId,
|
|
3634
3635
|
size = _ref.size,
|
|
3635
3636
|
color = _ref.color,
|
|
3636
3637
|
style = _ref.style,
|
|
3637
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3638
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
3638
3639
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3639
3640
|
var styleProps = {
|
|
3640
3641
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3655,14 +3656,14 @@ var IconGrinBeam = React.forwardRef(function (_ref, ref) {
|
|
|
3655
3656
|
});
|
|
3656
3657
|
IconGrinBeam.displayName = 'IconGrinBeam';
|
|
3657
3658
|
|
|
3658
|
-
var _excluded$
|
|
3659
|
+
var _excluded$1B = ["testId", "size", "color", "style"];
|
|
3659
3660
|
var IconGripVertical = React.forwardRef(function (_ref, ref) {
|
|
3660
3661
|
var _ref$testId = _ref.testId,
|
|
3661
3662
|
testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
|
|
3662
3663
|
size = _ref.size,
|
|
3663
3664
|
color = _ref.color,
|
|
3664
3665
|
style = _ref.style,
|
|
3665
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3666
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
3666
3667
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3667
3668
|
var styleProps = {
|
|
3668
3669
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3710,14 +3711,14 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
|
|
|
3710
3711
|
});
|
|
3711
3712
|
IconGripVertical.displayName = 'IconGripVertical';
|
|
3712
3713
|
|
|
3713
|
-
var _excluded$
|
|
3714
|
+
var _excluded$1A = ["testId", "size", "color", "style"];
|
|
3714
3715
|
var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
|
|
3715
3716
|
var _ref$testId = _ref.testId,
|
|
3716
3717
|
testId = _ref$testId === void 0 ? 'icon-hand-holding-dollar' : _ref$testId,
|
|
3717
3718
|
size = _ref.size,
|
|
3718
3719
|
color = _ref.color,
|
|
3719
3720
|
style = _ref.style,
|
|
3720
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3721
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3721
3722
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3722
3723
|
var styleProps = {
|
|
3723
3724
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3745,14 +3746,14 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
|
|
|
3745
3746
|
});
|
|
3746
3747
|
IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
|
|
3747
3748
|
|
|
3748
|
-
var _excluded$
|
|
3749
|
+
var _excluded$1z = ["testId", "size", "color", "style"];
|
|
3749
3750
|
var IconHandPointRight = React.forwardRef(function (_ref, ref) {
|
|
3750
3751
|
var _ref$testId = _ref.testId,
|
|
3751
3752
|
testId = _ref$testId === void 0 ? 'icon-hand-point-right' : _ref$testId,
|
|
3752
3753
|
size = _ref.size,
|
|
3753
3754
|
color = _ref.color,
|
|
3754
3755
|
style = _ref.style,
|
|
3755
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3756
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3756
3757
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3757
3758
|
var styleProps = {
|
|
3758
3759
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3773,14 +3774,14 @@ var IconHandPointRight = React.forwardRef(function (_ref, ref) {
|
|
|
3773
3774
|
});
|
|
3774
3775
|
IconHandPointRight.displayName = 'IconHandPointRight';
|
|
3775
3776
|
|
|
3776
|
-
var _excluded$
|
|
3777
|
+
var _excluded$1y = ["testId", "size", "color", "style"];
|
|
3777
3778
|
var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
3778
3779
|
var _ref$testId = _ref.testId,
|
|
3779
3780
|
testId = _ref$testId === void 0 ? 'icon-handshake' : _ref$testId,
|
|
3780
3781
|
size = _ref.size,
|
|
3781
3782
|
color = _ref.color,
|
|
3782
3783
|
style = _ref.style,
|
|
3783
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3784
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3784
3785
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3785
3786
|
var styleProps = {
|
|
3786
3787
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3808,14 +3809,14 @@ var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
|
3808
3809
|
});
|
|
3809
3810
|
IconHandshake.displayName = 'IconHandshake';
|
|
3810
3811
|
|
|
3811
|
-
var _excluded$
|
|
3812
|
+
var _excluded$1x = ["testId", "size", "color", "style"];
|
|
3812
3813
|
var IconHatChef = React.forwardRef(function (_ref, ref) {
|
|
3813
3814
|
var _ref$testId = _ref.testId,
|
|
3814
3815
|
testId = _ref$testId === void 0 ? 'icon-hat-chef' : _ref$testId,
|
|
3815
3816
|
size = _ref.size,
|
|
3816
3817
|
color = _ref.color,
|
|
3817
3818
|
style = _ref.style,
|
|
3818
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3819
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3819
3820
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3820
3821
|
var styleProps = {
|
|
3821
3822
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3836,14 +3837,14 @@ var IconHatChef = React.forwardRef(function (_ref, ref) {
|
|
|
3836
3837
|
});
|
|
3837
3838
|
IconHatChef.displayName = 'IconHatChef';
|
|
3838
3839
|
|
|
3839
|
-
var _excluded$
|
|
3840
|
+
var _excluded$1w = ["testId", "size", "color", "style"];
|
|
3840
3841
|
var IconImage = React.forwardRef(function (_ref, ref) {
|
|
3841
3842
|
var _ref$testId = _ref.testId,
|
|
3842
3843
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
3843
3844
|
size = _ref.size,
|
|
3844
3845
|
color = _ref.color,
|
|
3845
3846
|
style = _ref.style,
|
|
3846
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3847
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3847
3848
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3848
3849
|
var styleProps = {
|
|
3849
3850
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3871,14 +3872,14 @@ var IconImage = React.forwardRef(function (_ref, ref) {
|
|
|
3871
3872
|
});
|
|
3872
3873
|
IconImage.displayName = 'IconImage';
|
|
3873
3874
|
|
|
3874
|
-
var _excluded$
|
|
3875
|
+
var _excluded$1v = ["testId", "size", "color", "style"];
|
|
3875
3876
|
var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
3876
3877
|
var _ref$testId = _ref.testId,
|
|
3877
3878
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
3878
3879
|
size = _ref.size,
|
|
3879
3880
|
color = _ref.color,
|
|
3880
3881
|
style = _ref.style,
|
|
3881
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3882
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3882
3883
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3883
3884
|
var styleProps = {
|
|
3884
3885
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3901,14 +3902,14 @@ var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
|
3901
3902
|
});
|
|
3902
3903
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
3903
3904
|
|
|
3904
|
-
var _excluded$
|
|
3905
|
+
var _excluded$1u = ["testId", "size", "color", "style"];
|
|
3905
3906
|
var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
3906
3907
|
var _ref$testId = _ref.testId,
|
|
3907
3908
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
3908
3909
|
size = _ref.size,
|
|
3909
3910
|
color = _ref.color,
|
|
3910
3911
|
style = _ref.style,
|
|
3911
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3912
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3912
3913
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3913
3914
|
var styleProps = {
|
|
3914
3915
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3929,14 +3930,14 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
|
3929
3930
|
});
|
|
3930
3931
|
IconItalic.displayName = 'IconItalic';
|
|
3931
3932
|
|
|
3932
|
-
var _excluded$
|
|
3933
|
+
var _excluded$1t = ["testId", "size", "color", "style"];
|
|
3933
3934
|
var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
3934
3935
|
var _ref$testId = _ref.testId,
|
|
3935
3936
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
3936
3937
|
size = _ref.size,
|
|
3937
3938
|
color = _ref.color,
|
|
3938
3939
|
style = _ref.style,
|
|
3939
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3940
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3940
3941
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3941
3942
|
var styleProps = {
|
|
3942
3943
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3966,14 +3967,14 @@ var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
|
3966
3967
|
});
|
|
3967
3968
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
3968
3969
|
|
|
3969
|
-
var _excluded$
|
|
3970
|
+
var _excluded$1s = ["testId", "size", "color", "style"];
|
|
3970
3971
|
var IconLink = React.forwardRef(function (_ref, ref) {
|
|
3971
3972
|
var _ref$testId = _ref.testId,
|
|
3972
3973
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
3973
3974
|
size = _ref.size,
|
|
3974
3975
|
color = _ref.color,
|
|
3975
3976
|
style = _ref.style,
|
|
3976
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3977
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
3977
3978
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3978
3979
|
var styleProps = {
|
|
3979
3980
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4001,14 +4002,14 @@ var IconLink = React.forwardRef(function (_ref, ref) {
|
|
|
4001
4002
|
});
|
|
4002
4003
|
IconLink.displayName = 'IconLink';
|
|
4003
4004
|
|
|
4004
|
-
var _excluded$
|
|
4005
|
+
var _excluded$1r = ["testId", "size", "color", "style"];
|
|
4005
4006
|
var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
4006
4007
|
var _ref$testId = _ref.testId,
|
|
4007
4008
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
4008
4009
|
size = _ref.size,
|
|
4009
4010
|
color = _ref.color,
|
|
4010
4011
|
style = _ref.style,
|
|
4011
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4012
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
4012
4013
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4013
4014
|
var styleProps = {
|
|
4014
4015
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4036,14 +4037,14 @@ var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
|
4036
4037
|
});
|
|
4037
4038
|
IconListOI.displayName = 'IconListOI';
|
|
4038
4039
|
|
|
4039
|
-
var _excluded$
|
|
4040
|
+
var _excluded$1q = ["testId", "size", "color", "style"];
|
|
4040
4041
|
var IconList = React.forwardRef(function (_ref, ref) {
|
|
4041
4042
|
var _ref$testId = _ref.testId,
|
|
4042
4043
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
4043
4044
|
size = _ref.size,
|
|
4044
4045
|
color = _ref.color,
|
|
4045
4046
|
style = _ref.style,
|
|
4046
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4047
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
4047
4048
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4048
4049
|
var styleProps = {
|
|
4049
4050
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4064,14 +4065,14 @@ var IconList = React.forwardRef(function (_ref, ref) {
|
|
|
4064
4065
|
});
|
|
4065
4066
|
IconList.displayName = 'IconList';
|
|
4066
4067
|
|
|
4067
|
-
var _excluded$
|
|
4068
|
+
var _excluded$1p = ["testId", "size", "color", "style"];
|
|
4068
4069
|
var IconLock = React.forwardRef(function (_ref, ref) {
|
|
4069
4070
|
var _ref$testId = _ref.testId,
|
|
4070
4071
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
4071
4072
|
size = _ref.size,
|
|
4072
4073
|
color = _ref.color,
|
|
4073
4074
|
style = _ref.style,
|
|
4074
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4075
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
4075
4076
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4076
4077
|
var styleProps = {
|
|
4077
4078
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4092,14 +4093,14 @@ var IconLock = React.forwardRef(function (_ref, ref) {
|
|
|
4092
4093
|
});
|
|
4093
4094
|
IconLock.displayName = 'IconLock';
|
|
4094
4095
|
|
|
4095
|
-
var _excluded$
|
|
4096
|
+
var _excluded$1o = ["testId", "size", "color", "style"];
|
|
4096
4097
|
var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
4097
4098
|
var _ref$testId = _ref.testId,
|
|
4098
4099
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
4099
4100
|
size = _ref.size,
|
|
4100
4101
|
color = _ref.color,
|
|
4101
4102
|
style = _ref.style,
|
|
4102
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4103
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
4103
4104
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4104
4105
|
var styleProps = {
|
|
4105
4106
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4122,14 +4123,14 @@ var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4122
4123
|
});
|
|
4123
4124
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
4124
4125
|
|
|
4125
|
-
var _excluded$
|
|
4126
|
+
var _excluded$1n = ["testId", "size", "color", "style"];
|
|
4126
4127
|
var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
4127
4128
|
var _ref$testId = _ref.testId,
|
|
4128
4129
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
4129
4130
|
size = _ref.size,
|
|
4130
4131
|
color = _ref.color,
|
|
4131
4132
|
style = _ref.style,
|
|
4132
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4133
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
4133
4134
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4134
4135
|
var styleProps = {
|
|
4135
4136
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4152,14 +4153,14 @@ var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
|
4152
4153
|
});
|
|
4153
4154
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
4154
4155
|
|
|
4155
|
-
var _excluded$
|
|
4156
|
+
var _excluded$1m = ["testId", "size", "color", "style"];
|
|
4156
4157
|
var IconMedal = React.forwardRef(function (_ref, ref) {
|
|
4157
4158
|
var _ref$testId = _ref.testId,
|
|
4158
4159
|
testId = _ref$testId === void 0 ? 'icon-medal' : _ref$testId,
|
|
4159
4160
|
size = _ref.size,
|
|
4160
4161
|
color = _ref.color,
|
|
4161
4162
|
style = _ref.style,
|
|
4162
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4163
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
4163
4164
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4164
4165
|
var styleProps = {
|
|
4165
4166
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4187,14 +4188,14 @@ var IconMedal = React.forwardRef(function (_ref, ref) {
|
|
|
4187
4188
|
});
|
|
4188
4189
|
IconMedal.displayName = 'IconMedal';
|
|
4189
4190
|
|
|
4190
|
-
var _excluded$
|
|
4191
|
+
var _excluded$1l = ["testId", "size", "color", "style"];
|
|
4191
4192
|
var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
4192
4193
|
var _ref$testId = _ref.testId,
|
|
4193
4194
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
4194
4195
|
size = _ref.size,
|
|
4195
4196
|
color = _ref.color,
|
|
4196
4197
|
style = _ref.style,
|
|
4197
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4198
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
4198
4199
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4199
4200
|
var styleProps = {
|
|
4200
4201
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4217,14 +4218,14 @@ var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
|
4217
4218
|
});
|
|
4218
4219
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
4219
4220
|
|
|
4220
|
-
var _excluded$
|
|
4221
|
+
var _excluded$1k = ["testId", "size", "color", "style"];
|
|
4221
4222
|
var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
4222
4223
|
var _ref$testId = _ref.testId,
|
|
4223
4224
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
4224
4225
|
size = _ref.size,
|
|
4225
4226
|
color = _ref.color,
|
|
4226
4227
|
style = _ref.style,
|
|
4227
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4228
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
|
|
4228
4229
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4229
4230
|
var styleProps = {
|
|
4230
4231
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4245,14 +4246,14 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
|
4245
4246
|
});
|
|
4246
4247
|
IconMessages.displayName = 'IconMessages';
|
|
4247
4248
|
|
|
4248
|
-
var _excluded$
|
|
4249
|
+
var _excluded$1j = ["testId", "size", "color", "style"];
|
|
4249
4250
|
var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
4250
4251
|
var _ref$testId = _ref.testId,
|
|
4251
4252
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
4252
4253
|
size = _ref.size,
|
|
4253
4254
|
color = _ref.color,
|
|
4254
4255
|
style = _ref.style,
|
|
4255
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4256
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
|
|
4256
4257
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4257
4258
|
var styleProps = {
|
|
4258
4259
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4273,14 +4274,14 @@ var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
|
4273
4274
|
});
|
|
4274
4275
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
4275
4276
|
|
|
4276
|
-
var _excluded$
|
|
4277
|
+
var _excluded$1i = ["testId", "size", "color", "style"];
|
|
4277
4278
|
var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
4278
4279
|
var _ref$testId = _ref.testId,
|
|
4279
4280
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
4280
4281
|
size = _ref.size,
|
|
4281
4282
|
color = _ref.color,
|
|
4282
4283
|
style = _ref.style,
|
|
4283
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4284
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
|
|
4284
4285
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4285
4286
|
var styleProps = {
|
|
4286
4287
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4301,14 +4302,14 @@ var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
|
4301
4302
|
});
|
|
4302
4303
|
IconMinus.displayName = 'IconMinus';
|
|
4303
4304
|
|
|
4304
|
-
var _excluded$
|
|
4305
|
+
var _excluded$1h = ["testId", "size", "color", "style"];
|
|
4305
4306
|
var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
4306
4307
|
var _ref$testId = _ref.testId,
|
|
4307
4308
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
4308
4309
|
size = _ref.size,
|
|
4309
4310
|
color = _ref.color,
|
|
4310
4311
|
style = _ref.style,
|
|
4311
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4312
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
4312
4313
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4313
4314
|
var styleProps = {
|
|
4314
4315
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4329,14 +4330,14 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
|
4329
4330
|
});
|
|
4330
4331
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
4331
4332
|
|
|
4332
|
-
var _excluded$
|
|
4333
|
+
var _excluded$1g = ["testId", "size", "color", "style"];
|
|
4333
4334
|
var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
4334
4335
|
var _ref$testId = _ref.testId,
|
|
4335
4336
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
4336
4337
|
size = _ref.size,
|
|
4337
4338
|
color = _ref.color,
|
|
4338
4339
|
style = _ref.style,
|
|
4339
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4340
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
|
|
4340
4341
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4341
4342
|
var styleProps = {
|
|
4342
4343
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4357,14 +4358,14 @@ var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4357
4358
|
});
|
|
4358
4359
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
4359
4360
|
|
|
4360
|
-
var _excluded$
|
|
4361
|
+
var _excluded$1f = ["testId", "size", "color", "style"];
|
|
4361
4362
|
var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
4362
4363
|
var _ref$testId = _ref.testId,
|
|
4363
4364
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
4364
4365
|
size = _ref.size,
|
|
4365
4366
|
color = _ref.color,
|
|
4366
4367
|
style = _ref.style,
|
|
4367
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4368
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
|
|
4368
4369
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4369
4370
|
var styleProps = {
|
|
4370
4371
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4385,14 +4386,14 @@ var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
|
4385
4386
|
});
|
|
4386
4387
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
4387
4388
|
|
|
4388
|
-
var _excluded$
|
|
4389
|
+
var _excluded$1e = ["testId", "size", "color", "style"];
|
|
4389
4390
|
var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
4390
4391
|
var _ref$testId = _ref.testId,
|
|
4391
4392
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
4392
4393
|
size = _ref.size,
|
|
4393
4394
|
color = _ref.color,
|
|
4394
4395
|
style = _ref.style,
|
|
4395
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4396
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
|
|
4396
4397
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4397
4398
|
var styleProps = {
|
|
4398
4399
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4420,14 +4421,14 @@ var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
|
4420
4421
|
});
|
|
4421
4422
|
IconOvertime.displayName = 'IconOvertime';
|
|
4422
4423
|
|
|
4423
|
-
var _excluded$
|
|
4424
|
+
var _excluded$1d = ["testId", "size", "color", "style"];
|
|
4424
4425
|
var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
4425
4426
|
var _ref$testId = _ref.testId,
|
|
4426
4427
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
4427
4428
|
size = _ref.size,
|
|
4428
4429
|
color = _ref.color,
|
|
4429
4430
|
style = _ref.style,
|
|
4430
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4431
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
4431
4432
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4432
4433
|
var styleProps = {
|
|
4433
4434
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4459,14 +4460,14 @@ var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
|
4459
4460
|
});
|
|
4460
4461
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
4461
4462
|
|
|
4462
|
-
var _excluded$
|
|
4463
|
+
var _excluded$1c = ["testId", "size", "color", "style"];
|
|
4463
4464
|
var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
4464
4465
|
var _ref$testId = _ref.testId,
|
|
4465
4466
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
4466
4467
|
size = _ref.size,
|
|
4467
4468
|
color = _ref.color,
|
|
4468
4469
|
style = _ref.style,
|
|
4469
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4470
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
|
|
4470
4471
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4471
4472
|
var styleProps = {
|
|
4472
4473
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4489,14 +4490,14 @@ var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
|
4489
4490
|
});
|
|
4490
4491
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
4491
4492
|
|
|
4492
|
-
var _excluded$
|
|
4493
|
+
var _excluded$1b = ["testId", "size", "color", "style"];
|
|
4493
4494
|
var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
4494
4495
|
var _ref$testId = _ref.testId,
|
|
4495
4496
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
4496
4497
|
size = _ref.size,
|
|
4497
4498
|
color = _ref.color,
|
|
4498
4499
|
style = _ref.style,
|
|
4499
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4500
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
|
|
4500
4501
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4501
4502
|
var styleProps = {
|
|
4502
4503
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4524,14 +4525,14 @@ var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
|
4524
4525
|
});
|
|
4525
4526
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
4526
4527
|
|
|
4527
|
-
var _excluded$
|
|
4528
|
+
var _excluded$1a = ["testId", "size", "color", "style"];
|
|
4528
4529
|
var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
4529
4530
|
var _ref$testId = _ref.testId,
|
|
4530
4531
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
4531
4532
|
size = _ref.size,
|
|
4532
4533
|
color = _ref.color,
|
|
4533
4534
|
style = _ref.style,
|
|
4534
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4535
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
4535
4536
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4536
4537
|
var styleProps = {
|
|
4537
4538
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4554,14 +4555,14 @@ var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
|
4554
4555
|
});
|
|
4555
4556
|
IconPencil.displayName = 'IconPencil';
|
|
4556
4557
|
|
|
4557
|
-
var _excluded$
|
|
4558
|
+
var _excluded$19 = ["testId", "size", "color", "style"];
|
|
4558
4559
|
var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
4559
4560
|
var _ref$testId = _ref.testId,
|
|
4560
4561
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
4561
4562
|
size = _ref.size,
|
|
4562
4563
|
color = _ref.color,
|
|
4563
4564
|
style = _ref.style,
|
|
4564
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4565
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
|
|
4565
4566
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4566
4567
|
var styleProps = {
|
|
4567
4568
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4582,14 +4583,14 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
|
4582
4583
|
});
|
|
4583
4584
|
IconPercentage.displayName = 'IconPercentage';
|
|
4584
4585
|
|
|
4585
|
-
var _excluded$
|
|
4586
|
+
var _excluded$18 = ["testId", "size", "color", "style"];
|
|
4586
4587
|
var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
4587
4588
|
var _ref$testId = _ref.testId,
|
|
4588
4589
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
4589
4590
|
size = _ref.size,
|
|
4590
4591
|
color = _ref.color,
|
|
4591
4592
|
style = _ref.style,
|
|
4592
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4593
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
|
|
4593
4594
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4594
4595
|
var styleProps = {
|
|
4595
4596
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4610,14 +4611,14 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
|
4610
4611
|
});
|
|
4611
4612
|
IconPhone.displayName = 'IconPhone';
|
|
4612
4613
|
|
|
4613
|
-
var _excluded$
|
|
4614
|
+
var _excluded$17 = ["testId", "size", "color", "style"];
|
|
4614
4615
|
var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
|
|
4615
4616
|
var _ref$testId = _ref.testId,
|
|
4616
4617
|
testId = _ref$testId === void 0 ? 'icon-plate-utensils' : _ref$testId,
|
|
4617
4618
|
size = _ref.size,
|
|
4618
4619
|
color = _ref.color,
|
|
4619
4620
|
style = _ref.style,
|
|
4620
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4621
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
|
|
4621
4622
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4622
4623
|
var styleProps = {
|
|
4623
4624
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4638,14 +4639,14 @@ var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
|
|
|
4638
4639
|
});
|
|
4639
4640
|
IconPlateUtensils.displayName = 'IconPlateUtensils';
|
|
4640
4641
|
|
|
4641
|
-
var _excluded$
|
|
4642
|
+
var _excluded$16 = ["testId", "size", "color", "style"];
|
|
4642
4643
|
var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
4643
4644
|
var _ref$testId = _ref.testId,
|
|
4644
4645
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
4645
4646
|
size = _ref.size,
|
|
4646
4647
|
color = _ref.color,
|
|
4647
4648
|
style = _ref.style,
|
|
4648
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4649
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
4649
4650
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4650
4651
|
var styleProps = {
|
|
4651
4652
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4668,14 +4669,14 @@ var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
|
4668
4669
|
});
|
|
4669
4670
|
IconPlug.displayName = 'IconPlug';
|
|
4670
4671
|
|
|
4671
|
-
var _excluded$
|
|
4672
|
+
var _excluded$15 = ["testId", "size", "color", "style"];
|
|
4672
4673
|
var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
4673
4674
|
var _ref$testId = _ref.testId,
|
|
4674
4675
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
4675
4676
|
size = _ref.size,
|
|
4676
4677
|
color = _ref.color,
|
|
4677
4678
|
style = _ref.style,
|
|
4678
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4679
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
|
|
4679
4680
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4680
4681
|
var styleProps = {
|
|
4681
4682
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4698,14 +4699,14 @@ var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
|
4698
4699
|
});
|
|
4699
4700
|
IconPlus.displayName = 'IconPlus';
|
|
4700
4701
|
|
|
4701
|
-
var _excluded$
|
|
4702
|
+
var _excluded$14 = ["testId", "size", "color", "style"];
|
|
4702
4703
|
var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
4703
4704
|
var _ref$testId = _ref.testId,
|
|
4704
4705
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
4705
4706
|
size = _ref.size,
|
|
4706
4707
|
color = _ref.color,
|
|
4707
4708
|
style = _ref.style,
|
|
4708
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4709
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
|
|
4709
4710
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4710
4711
|
var styleProps = {
|
|
4711
4712
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4728,14 +4729,14 @@ var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
|
4728
4729
|
});
|
|
4729
4730
|
IconPrint.displayName = 'IconPrint';
|
|
4730
4731
|
|
|
4731
|
-
var _excluded$
|
|
4732
|
+
var _excluded$13 = ["testId", "size", "color", "style"];
|
|
4732
4733
|
var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
4733
4734
|
var _ref$testId = _ref.testId,
|
|
4734
4735
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
4735
4736
|
size = _ref.size,
|
|
4736
4737
|
color = _ref.color,
|
|
4737
4738
|
style = _ref.style,
|
|
4738
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4739
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
|
|
4739
4740
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4740
4741
|
var styleProps = {
|
|
4741
4742
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4756,14 +4757,14 @@ var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
|
4756
4757
|
});
|
|
4757
4758
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
4758
4759
|
|
|
4759
|
-
var _excluded$
|
|
4760
|
+
var _excluded$12 = ["testId", "size", "color", "style"];
|
|
4760
4761
|
var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
4761
4762
|
var _ref$testId = _ref.testId,
|
|
4762
4763
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
4763
4764
|
size = _ref.size,
|
|
4764
4765
|
color = _ref.color,
|
|
4765
4766
|
style = _ref.style,
|
|
4766
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4767
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
|
|
4767
4768
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4768
4769
|
var styleProps = {
|
|
4769
4770
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4784,14 +4785,14 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
|
4784
4785
|
});
|
|
4785
4786
|
IconRepeat.displayName = 'IconRepeat';
|
|
4786
4787
|
|
|
4787
|
-
var _excluded$
|
|
4788
|
+
var _excluded$11 = ["testId", "size", "color", "style"];
|
|
4788
4789
|
var IconReply = React.forwardRef(function (_ref, ref) {
|
|
4789
4790
|
var _ref$testId = _ref.testId,
|
|
4790
4791
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
4791
4792
|
size = _ref.size,
|
|
4792
4793
|
color = _ref.color,
|
|
4793
4794
|
style = _ref.style,
|
|
4794
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4795
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
|
|
4795
4796
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4796
4797
|
var styleProps = {
|
|
4797
4798
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4812,14 +4813,14 @@ var IconReply = React.forwardRef(function (_ref, ref) {
|
|
|
4812
4813
|
});
|
|
4813
4814
|
IconReply.displayName = 'IconReply';
|
|
4814
4815
|
|
|
4815
|
-
var _excluded
|
|
4816
|
+
var _excluded$10 = ["testId", "size", "color", "style"];
|
|
4816
4817
|
var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
4817
4818
|
var _ref$testId = _ref.testId,
|
|
4818
4819
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
4819
4820
|
size = _ref.size,
|
|
4820
4821
|
color = _ref.color,
|
|
4821
4822
|
style = _ref.style,
|
|
4822
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
4823
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
4823
4824
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4824
4825
|
var styleProps = {
|
|
4825
4826
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4840,14 +4841,14 @@ var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
|
4840
4841
|
});
|
|
4841
4842
|
IconRocket.displayName = 'IconRocket';
|
|
4842
4843
|
|
|
4843
|
-
var _excluded
|
|
4844
|
+
var _excluded$$ = ["testId", "size", "color", "style"];
|
|
4844
4845
|
var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
4845
4846
|
var _ref$testId = _ref.testId,
|
|
4846
4847
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
4847
4848
|
size = _ref.size,
|
|
4848
4849
|
color = _ref.color,
|
|
4849
4850
|
style = _ref.style,
|
|
4850
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
4851
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
|
|
4851
4852
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4852
4853
|
var styleProps = {
|
|
4853
4854
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4870,14 +4871,14 @@ var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
|
4870
4871
|
});
|
|
4871
4872
|
IconSearch.displayName = 'IconSearch';
|
|
4872
4873
|
|
|
4873
|
-
var _excluded$
|
|
4874
|
+
var _excluded$_ = ["testId", "size", "color", "style"];
|
|
4874
4875
|
var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
4875
4876
|
var _ref$testId = _ref.testId,
|
|
4876
4877
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
4877
4878
|
size = _ref.size,
|
|
4878
4879
|
color = _ref.color,
|
|
4879
4880
|
style = _ref.style,
|
|
4880
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4881
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
|
|
4881
4882
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4882
4883
|
var styleProps = {
|
|
4883
4884
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4898,14 +4899,14 @@ var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
|
4898
4899
|
});
|
|
4899
4900
|
IconSignOut.displayName = 'IconSignOut';
|
|
4900
4901
|
|
|
4901
|
-
var _excluded$
|
|
4902
|
+
var _excluded$Z = ["testId", "size", "color", "style"];
|
|
4902
4903
|
var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
4903
4904
|
var _ref$testId = _ref.testId,
|
|
4904
4905
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
4905
4906
|
size = _ref.size,
|
|
4906
4907
|
color = _ref.color,
|
|
4907
4908
|
style = _ref.style,
|
|
4908
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4909
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
|
|
4909
4910
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4910
4911
|
var styleProps = {
|
|
4911
4912
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4928,14 +4929,14 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
|
4928
4929
|
});
|
|
4929
4930
|
IconSitemap.displayName = 'IconSitemap';
|
|
4930
4931
|
|
|
4931
|
-
var _excluded$
|
|
4932
|
+
var _excluded$Y = ["testId", "size", "color", "style"];
|
|
4932
4933
|
var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
4933
4934
|
var _ref$testId = _ref.testId,
|
|
4934
4935
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
4935
4936
|
size = _ref.size,
|
|
4936
4937
|
color = _ref.color,
|
|
4937
4938
|
style = _ref.style,
|
|
4938
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4939
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
|
|
4939
4940
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4940
4941
|
var styleProps = {
|
|
4941
4942
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4963,14 +4964,14 @@ var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
|
4963
4964
|
});
|
|
4964
4965
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
4965
4966
|
|
|
4966
|
-
var _excluded$
|
|
4967
|
+
var _excluded$X = ["testId", "size", "color", "style"];
|
|
4967
4968
|
var IconSort = React.forwardRef(function (_ref, ref) {
|
|
4968
4969
|
var _ref$testId = _ref.testId,
|
|
4969
4970
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
4970
4971
|
size = _ref.size,
|
|
4971
4972
|
color = _ref.color,
|
|
4972
4973
|
style = _ref.style,
|
|
4973
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4974
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
4974
4975
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4975
4976
|
var styleProps = {
|
|
4976
4977
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4991,14 +4992,14 @@ var IconSort = React.forwardRef(function (_ref, ref) {
|
|
|
4991
4992
|
});
|
|
4992
4993
|
IconSort.displayName = 'IconSort';
|
|
4993
4994
|
|
|
4994
|
-
var _excluded$
|
|
4995
|
+
var _excluded$W = ["testId", "size", "color", "style"];
|
|
4995
4996
|
var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
4996
4997
|
var _ref$testId = _ref.testId,
|
|
4997
4998
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
4998
4999
|
size = _ref.size,
|
|
4999
5000
|
color = _ref.color,
|
|
5000
5001
|
style = _ref.style,
|
|
5001
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5002
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
|
|
5002
5003
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5003
5004
|
var styleProps = {
|
|
5004
5005
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5019,14 +5020,14 @@ var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
|
5019
5020
|
});
|
|
5020
5021
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
5021
5022
|
|
|
5022
|
-
var _excluded$
|
|
5023
|
+
var _excluded$V = ["testId", "size", "color", "style"];
|
|
5023
5024
|
var IconStar = React.forwardRef(function (_ref, ref) {
|
|
5024
5025
|
var _ref$testId = _ref.testId,
|
|
5025
5026
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
5026
5027
|
size = _ref.size,
|
|
5027
5028
|
color = _ref.color,
|
|
5028
5029
|
style = _ref.style,
|
|
5029
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5030
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
|
|
5030
5031
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5031
5032
|
var styleProps = {
|
|
5032
5033
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5047,14 +5048,14 @@ var IconStar = React.forwardRef(function (_ref, ref) {
|
|
|
5047
5048
|
});
|
|
5048
5049
|
IconStar.displayName = 'IconStar';
|
|
5049
5050
|
|
|
5050
|
-
var _excluded$
|
|
5051
|
+
var _excluded$U = ["testId", "size", "color", "style"];
|
|
5051
5052
|
var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
5052
5053
|
var _ref$testId = _ref.testId,
|
|
5053
5054
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
5054
5055
|
size = _ref.size,
|
|
5055
5056
|
color = _ref.color,
|
|
5056
5057
|
style = _ref.style,
|
|
5057
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5058
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
|
|
5058
5059
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5059
5060
|
var styleProps = {
|
|
5060
5061
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5078,14 +5079,14 @@ var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
|
5078
5079
|
});
|
|
5079
5080
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
5080
5081
|
|
|
5081
|
-
var _excluded$
|
|
5082
|
+
var _excluded$T = ["testId", "size", "color", "style"];
|
|
5082
5083
|
var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
5083
5084
|
var _ref$testId = _ref.testId,
|
|
5084
5085
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
5085
5086
|
size = _ref.size,
|
|
5086
5087
|
color = _ref.color,
|
|
5087
5088
|
style = _ref.style,
|
|
5088
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5089
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
|
|
5089
5090
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5090
5091
|
var styleProps = {
|
|
5091
5092
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5108,14 +5109,14 @@ var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
|
5108
5109
|
});
|
|
5109
5110
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
5110
5111
|
|
|
5111
|
-
var _excluded$
|
|
5112
|
+
var _excluded$S = ["testId", "size", "color", "style"];
|
|
5112
5113
|
var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
5113
5114
|
var _ref$testId = _ref.testId,
|
|
5114
5115
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
5115
5116
|
size = _ref.size,
|
|
5116
5117
|
color = _ref.color,
|
|
5117
5118
|
style = _ref.style,
|
|
5118
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5119
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
|
|
5119
5120
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5120
5121
|
var styleProps = {
|
|
5121
5122
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5143,14 +5144,14 @@ var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
|
5143
5144
|
});
|
|
5144
5145
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
5145
5146
|
|
|
5146
|
-
var _excluded$
|
|
5147
|
+
var _excluded$R = ["testId", "size", "color", "style"];
|
|
5147
5148
|
var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
5148
5149
|
var _ref$testId = _ref.testId,
|
|
5149
5150
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
5150
5151
|
size = _ref.size,
|
|
5151
5152
|
color = _ref.color,
|
|
5152
5153
|
style = _ref.style,
|
|
5153
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5154
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
|
|
5154
5155
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5155
5156
|
var styleProps = {
|
|
5156
5157
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5171,14 +5172,14 @@ var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
5171
5172
|
});
|
|
5172
5173
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
5173
5174
|
|
|
5174
|
-
var _excluded$
|
|
5175
|
+
var _excluded$Q = ["testId", "size", "color", "style"];
|
|
5175
5176
|
var IconSync = React.forwardRef(function (_ref, ref) {
|
|
5176
5177
|
var _ref$testId = _ref.testId,
|
|
5177
5178
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
5178
5179
|
size = _ref.size,
|
|
5179
5180
|
color = _ref.color,
|
|
5180
5181
|
style = _ref.style,
|
|
5181
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5182
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
|
|
5182
5183
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5183
5184
|
var styleProps = {
|
|
5184
5185
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5199,14 +5200,14 @@ var IconSync = React.forwardRef(function (_ref, ref) {
|
|
|
5199
5200
|
});
|
|
5200
5201
|
IconSync.displayName = 'IconSync';
|
|
5201
5202
|
|
|
5202
|
-
var _excluded$
|
|
5203
|
+
var _excluded$P = ["testId", "size", "color", "style"];
|
|
5203
5204
|
var IconTable = React.forwardRef(function (_ref, ref) {
|
|
5204
5205
|
var _ref$testId = _ref.testId,
|
|
5205
5206
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
5206
5207
|
size = _ref.size,
|
|
5207
5208
|
color = _ref.color,
|
|
5208
5209
|
style = _ref.style,
|
|
5209
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5210
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
|
|
5210
5211
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5211
5212
|
var styleProps = {
|
|
5212
5213
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5234,14 +5235,14 @@ var IconTable = React.forwardRef(function (_ref, ref) {
|
|
|
5234
5235
|
});
|
|
5235
5236
|
IconTable.displayName = 'IconTable';
|
|
5236
5237
|
|
|
5237
|
-
var _excluded$
|
|
5238
|
+
var _excluded$O = ["testId", "size", "color", "style"];
|
|
5238
5239
|
var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
5239
5240
|
var _ref$testId = _ref.testId,
|
|
5240
5241
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
5241
5242
|
size = _ref.size,
|
|
5242
5243
|
color = _ref.color,
|
|
5243
5244
|
style = _ref.style,
|
|
5244
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5245
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
|
|
5245
5246
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5246
5247
|
var styleProps = {
|
|
5247
5248
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5261,14 +5262,14 @@ var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
|
5261
5262
|
});
|
|
5262
5263
|
IconTachometer.displayName = 'IconTachometer';
|
|
5263
5264
|
|
|
5264
|
-
var _excluded$
|
|
5265
|
+
var _excluded$N = ["testId", "size", "color", "style"];
|
|
5265
5266
|
var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
5266
5267
|
var _ref$testId = _ref.testId,
|
|
5267
5268
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
5268
5269
|
size = _ref.size,
|
|
5269
5270
|
color = _ref.color,
|
|
5270
5271
|
style = _ref.style,
|
|
5271
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5272
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
|
|
5272
5273
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5273
5274
|
var styleProps = {
|
|
5274
5275
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5291,14 +5292,14 @@ var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
|
5291
5292
|
});
|
|
5292
5293
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
5293
5294
|
|
|
5294
|
-
var _excluded$
|
|
5295
|
+
var _excluded$M = ["testId", "size", "color", "style"];
|
|
5295
5296
|
var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
5296
5297
|
var _ref$testId = _ref.testId,
|
|
5297
5298
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
5298
5299
|
size = _ref.size,
|
|
5299
5300
|
color = _ref.color,
|
|
5300
5301
|
style = _ref.style,
|
|
5301
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5302
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
|
|
5302
5303
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5303
5304
|
var styleProps = {
|
|
5304
5305
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5321,14 +5322,14 @@ var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
|
5321
5322
|
});
|
|
5322
5323
|
IconTimes.displayName = 'IconTimes';
|
|
5323
5324
|
|
|
5324
|
-
var _excluded$
|
|
5325
|
+
var _excluded$L = ["testId", "size", "color", "style"];
|
|
5325
5326
|
var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
5326
5327
|
var _ref$testId = _ref.testId,
|
|
5327
5328
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
5328
5329
|
size = _ref.size,
|
|
5329
5330
|
color = _ref.color,
|
|
5330
5331
|
style = _ref.style,
|
|
5331
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5332
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
|
|
5332
5333
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5333
5334
|
var styleProps = {
|
|
5334
5335
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5351,14 +5352,14 @@ var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
|
5351
5352
|
});
|
|
5352
5353
|
IconTrash.displayName = 'IconTrash';
|
|
5353
5354
|
|
|
5354
|
-
var _excluded$
|
|
5355
|
+
var _excluded$K = ["testId", "size", "color", "style"];
|
|
5355
5356
|
var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
5356
5357
|
var _ref$testId = _ref.testId,
|
|
5357
5358
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
5358
5359
|
size = _ref.size,
|
|
5359
5360
|
color = _ref.color,
|
|
5360
5361
|
style = _ref.style,
|
|
5361
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5362
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
|
|
5362
5363
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5363
5364
|
var styleProps = {
|
|
5364
5365
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5379,14 +5380,14 @@ var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
|
5379
5380
|
});
|
|
5380
5381
|
IconUnderline.displayName = 'IconUnderline';
|
|
5381
5382
|
|
|
5382
|
-
var _excluded$
|
|
5383
|
+
var _excluded$J = ["testId", "size", "color", "style"];
|
|
5383
5384
|
var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
5384
5385
|
var _ref$testId = _ref.testId,
|
|
5385
5386
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
5386
5387
|
size = _ref.size,
|
|
5387
5388
|
color = _ref.color,
|
|
5388
5389
|
style = _ref.style,
|
|
5389
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5390
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
|
|
5390
5391
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5391
5392
|
var styleProps = {
|
|
5392
5393
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5407,14 +5408,14 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
|
5407
5408
|
});
|
|
5408
5409
|
IconUndo.displayName = 'IconUndo';
|
|
5409
5410
|
|
|
5410
|
-
var _excluded$
|
|
5411
|
+
var _excluded$I = ["testId", "size", "color", "style"];
|
|
5411
5412
|
var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
5412
5413
|
var _ref$testId = _ref.testId,
|
|
5413
5414
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
5414
5415
|
size = _ref.size,
|
|
5415
5416
|
color = _ref.color,
|
|
5416
5417
|
style = _ref.style,
|
|
5417
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5418
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
|
|
5418
5419
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5419
5420
|
var styleProps = {
|
|
5420
5421
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5442,14 +5443,14 @@ var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
|
5442
5443
|
});
|
|
5443
5444
|
IconUniversity.displayName = 'IconUniversity';
|
|
5444
5445
|
|
|
5445
|
-
var _excluded$
|
|
5446
|
+
var _excluded$H = ["testId", "size", "color", "style"];
|
|
5446
5447
|
var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
5447
5448
|
var _ref$testId = _ref.testId,
|
|
5448
5449
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
5449
5450
|
size = _ref.size,
|
|
5450
5451
|
color = _ref.color,
|
|
5451
5452
|
style = _ref.style,
|
|
5452
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5453
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
|
|
5453
5454
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5454
5455
|
var styleProps = {
|
|
5455
5456
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5477,14 +5478,14 @@ var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
|
5477
5478
|
});
|
|
5478
5479
|
IconUnlock.displayName = 'IconUnlock';
|
|
5479
5480
|
|
|
5480
|
-
var _excluded$
|
|
5481
|
+
var _excluded$G = ["testId", "size", "color", "style"];
|
|
5481
5482
|
var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
5482
5483
|
var _ref$testId = _ref.testId,
|
|
5483
5484
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
5484
5485
|
size = _ref.size,
|
|
5485
5486
|
color = _ref.color,
|
|
5486
5487
|
style = _ref.style,
|
|
5487
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5488
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
|
|
5488
5489
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5489
5490
|
var styleProps = {
|
|
5490
5491
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5516,14 +5517,14 @@ var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
|
5516
5517
|
});
|
|
5517
5518
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
5518
5519
|
|
|
5519
|
-
var _excluded$
|
|
5520
|
+
var _excluded$F = ["testId", "size", "color", "style"];
|
|
5520
5521
|
var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
5521
5522
|
var _ref$testId = _ref.testId,
|
|
5522
5523
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
5523
5524
|
size = _ref.size,
|
|
5524
5525
|
color = _ref.color,
|
|
5525
5526
|
style = _ref.style,
|
|
5526
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5527
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
|
|
5527
5528
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5528
5529
|
var styleProps = {
|
|
5529
5530
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5544,14 +5545,14 @@ var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
|
5544
5545
|
});
|
|
5545
5546
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
5546
5547
|
|
|
5547
|
-
var _excluded$
|
|
5548
|
+
var _excluded$E = ["testId", "size", "color", "style"];
|
|
5548
5549
|
var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
5549
5550
|
var _ref$testId = _ref.testId,
|
|
5550
5551
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
5551
5552
|
size = _ref.size,
|
|
5552
5553
|
color = _ref.color,
|
|
5553
5554
|
style = _ref.style,
|
|
5554
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5555
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
|
|
5555
5556
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5556
5557
|
var styleProps = {
|
|
5557
5558
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5574,14 +5575,14 @@ var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
|
5574
5575
|
});
|
|
5575
5576
|
IconUserLight.displayName = 'IconUserLight';
|
|
5576
5577
|
|
|
5577
|
-
var _excluded$
|
|
5578
|
+
var _excluded$D = ["testId", "size", "color", "style"];
|
|
5578
5579
|
var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
5579
5580
|
var _ref$testId = _ref.testId,
|
|
5580
5581
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
5581
5582
|
size = _ref.size,
|
|
5582
5583
|
color = _ref.color,
|
|
5583
5584
|
style = _ref.style,
|
|
5584
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5585
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
|
|
5585
5586
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5586
5587
|
var styleProps = {
|
|
5587
5588
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5602,14 +5603,14 @@ var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
|
5602
5603
|
});
|
|
5603
5604
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
5604
5605
|
|
|
5605
|
-
var _excluded$
|
|
5606
|
+
var _excluded$C = ["testId", "size", "color", "style"];
|
|
5606
5607
|
var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
5607
5608
|
var _ref$testId = _ref.testId,
|
|
5608
5609
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
5609
5610
|
size = _ref.size,
|
|
5610
5611
|
color = _ref.color,
|
|
5611
5612
|
style = _ref.style,
|
|
5612
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5613
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
|
|
5613
5614
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5614
5615
|
var styleProps = {
|
|
5615
5616
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5639,14 +5640,14 @@ var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
|
5639
5640
|
});
|
|
5640
5641
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
5641
5642
|
|
|
5642
|
-
var _excluded$
|
|
5643
|
+
var _excluded$B = ["testId", "size", "color", "style"];
|
|
5643
5644
|
var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
5644
5645
|
var _ref$testId = _ref.testId,
|
|
5645
5646
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
5646
5647
|
size = _ref.size,
|
|
5647
5648
|
color = _ref.color,
|
|
5648
5649
|
style = _ref.style,
|
|
5649
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5650
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
|
|
5650
5651
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5651
5652
|
var styleProps = {
|
|
5652
5653
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5674,14 +5675,14 @@ var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
|
5674
5675
|
});
|
|
5675
5676
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
5676
5677
|
|
|
5677
|
-
var _excluded$
|
|
5678
|
+
var _excluded$A = ["testId", "size", "color", "style"];
|
|
5678
5679
|
var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
5679
5680
|
var _ref$testId = _ref.testId,
|
|
5680
5681
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
5681
5682
|
size = _ref.size,
|
|
5682
5683
|
color = _ref.color,
|
|
5683
5684
|
style = _ref.style,
|
|
5684
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5685
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
5685
5686
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5686
5687
|
var styleProps = {
|
|
5687
5688
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5702,14 +5703,14 @@ var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
|
5702
5703
|
});
|
|
5703
5704
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
5704
5705
|
|
|
5705
|
-
var _excluded$
|
|
5706
|
+
var _excluded$z = ["testId", "size", "color", "style"];
|
|
5706
5707
|
var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
5707
5708
|
var _ref$testId = _ref.testId,
|
|
5708
5709
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
5709
5710
|
size = _ref.size,
|
|
5710
5711
|
color = _ref.color,
|
|
5711
5712
|
style = _ref.style,
|
|
5712
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5713
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
5713
5714
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5714
5715
|
var styleProps = {
|
|
5715
5716
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5732,14 +5733,14 @@ var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
|
5732
5733
|
});
|
|
5733
5734
|
IconUserTag.displayName = 'IconUserTag';
|
|
5734
5735
|
|
|
5735
|
-
var _excluded$
|
|
5736
|
+
var _excluded$y = ["testId", "size", "color", "style"];
|
|
5736
5737
|
var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
5737
5738
|
var _ref$testId = _ref.testId,
|
|
5738
5739
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
5739
5740
|
size = _ref.size,
|
|
5740
5741
|
color = _ref.color,
|
|
5741
5742
|
style = _ref.style,
|
|
5742
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5743
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
|
|
5743
5744
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5744
5745
|
var styleProps = {
|
|
5745
5746
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5760,14 +5761,14 @@ var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
|
5760
5761
|
});
|
|
5761
5762
|
IconUserTie.displayName = 'IconUserTie';
|
|
5762
5763
|
|
|
5763
|
-
var _excluded$
|
|
5764
|
+
var _excluded$x = ["testId", "size", "color", "style"];
|
|
5764
5765
|
var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
5765
5766
|
var _ref$testId = _ref.testId,
|
|
5766
5767
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
5767
5768
|
size = _ref.size,
|
|
5768
5769
|
color = _ref.color,
|
|
5769
5770
|
style = _ref.style,
|
|
5770
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5771
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
5771
5772
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5772
5773
|
var styleProps = {
|
|
5773
5774
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5788,14 +5789,14 @@ var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
|
5788
5789
|
});
|
|
5789
5790
|
IconUsers.displayName = 'IconUsers';
|
|
5790
5791
|
|
|
5791
|
-
var _excluded$
|
|
5792
|
+
var _excluded$w = ["testId", "size", "color", "style"];
|
|
5792
5793
|
var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
5793
5794
|
var _ref$testId = _ref.testId,
|
|
5794
5795
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
5795
5796
|
size = _ref.size,
|
|
5796
5797
|
color = _ref.color,
|
|
5797
5798
|
style = _ref.style,
|
|
5798
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5799
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
5799
5800
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5800
5801
|
var styleProps = {
|
|
5801
5802
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5816,14 +5817,14 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
|
5816
5817
|
});
|
|
5817
5818
|
IconVideo.displayName = 'IconVideo';
|
|
5818
5819
|
|
|
5819
|
-
var _excluded$
|
|
5820
|
+
var _excluded$v = ["testId", "size", "color", "style"];
|
|
5820
5821
|
var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
5821
5822
|
var _ref$testId = _ref.testId,
|
|
5822
5823
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
5823
5824
|
size = _ref.size,
|
|
5824
5825
|
color = _ref.color,
|
|
5825
5826
|
style = _ref.style,
|
|
5826
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5827
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
|
|
5827
5828
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5828
5829
|
var styleProps = {
|
|
5829
5830
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5844,14 +5845,14 @@ var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
|
5844
5845
|
});
|
|
5845
5846
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
5846
5847
|
|
|
5847
|
-
var _excluded$
|
|
5848
|
+
var _excluded$u = ["testId", "size", "color", "style"];
|
|
5848
5849
|
var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
5849
5850
|
var _ref$testId = _ref.testId,
|
|
5850
5851
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
5851
5852
|
size = _ref.size,
|
|
5852
5853
|
color = _ref.color,
|
|
5853
5854
|
style = _ref.style,
|
|
5854
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5855
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
|
|
5855
5856
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5856
5857
|
var styleProps = {
|
|
5857
5858
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5872,14 +5873,14 @@ var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
|
5872
5873
|
});
|
|
5873
5874
|
IconVolume.displayName = 'IconVolume';
|
|
5874
5875
|
|
|
5875
|
-
var _excluded$
|
|
5876
|
+
var _excluded$t = ["testId", "size", "color", "style"];
|
|
5876
5877
|
var IconWrench = React.forwardRef(function (_ref, ref) {
|
|
5877
5878
|
var _ref$testId = _ref.testId,
|
|
5878
5879
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
5879
5880
|
size = _ref.size,
|
|
5880
5881
|
color = _ref.color,
|
|
5881
5882
|
style = _ref.style,
|
|
5882
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5883
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
5883
5884
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5884
5885
|
var styleProps = {
|
|
5885
5886
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5963,6 +5964,9 @@ var SelectField$1 = {
|
|
|
5963
5964
|
var HintModal$1 = {
|
|
5964
5965
|
dontShowAgainLabel: "Don’t show this again"
|
|
5965
5966
|
};
|
|
5967
|
+
var ConfirmModal$1 = {
|
|
5968
|
+
cancel: "Cancel"
|
|
5969
|
+
};
|
|
5966
5970
|
var Calendar$1 = {
|
|
5967
5971
|
sunday: "Sunday",
|
|
5968
5972
|
monday: "Monday",
|
|
@@ -6002,6 +6006,7 @@ var en = {
|
|
|
6002
6006
|
AsyncSelectField: AsyncSelectField$1,
|
|
6003
6007
|
SelectField: SelectField$1,
|
|
6004
6008
|
HintModal: HintModal$1,
|
|
6009
|
+
ConfirmModal: ConfirmModal$1,
|
|
6005
6010
|
Calendar: Calendar$1,
|
|
6006
6011
|
Card: Card$1,
|
|
6007
6012
|
DataTable: DataTable$1,
|
|
@@ -6033,7 +6038,7 @@ var useTranslation = function useTranslation(context) {
|
|
|
6033
6038
|
return translate;
|
|
6034
6039
|
};
|
|
6035
6040
|
|
|
6036
|
-
var _excluded$
|
|
6041
|
+
var _excluded$s = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
6037
6042
|
/**
|
|
6038
6043
|
* `PaginationControls` are two buttons side by side.
|
|
6039
6044
|
*/
|
|
@@ -6046,7 +6051,7 @@ var PaginationControls = function PaginationControls(_ref) {
|
|
|
6046
6051
|
onNextClick = _ref.onNextClick,
|
|
6047
6052
|
testId = _ref.testId,
|
|
6048
6053
|
scrollTarget = _ref.scrollTarget,
|
|
6049
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6054
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$s);
|
|
6050
6055
|
var __ = useTranslation('PaginationControls');
|
|
6051
6056
|
var _getDataProps = getDataProps(otherProps),
|
|
6052
6057
|
dataProps = _getDataProps.dataProps;
|
|
@@ -6114,7 +6119,7 @@ var LINK_TARGET = {
|
|
|
6114
6119
|
|
|
6115
6120
|
var styles$1d = {"link":"_EiQ4c"};
|
|
6116
6121
|
|
|
6117
|
-
var _excluded$
|
|
6122
|
+
var _excluded$r = ["href", "target", "theme", "onClick", "children"];
|
|
6118
6123
|
var Link = function Link(_ref) {
|
|
6119
6124
|
var _classNames;
|
|
6120
6125
|
var href = _ref.href,
|
|
@@ -6124,7 +6129,7 @@ var Link = function Link(_ref) {
|
|
|
6124
6129
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
6125
6130
|
onClick = _ref.onClick,
|
|
6126
6131
|
children = _ref.children,
|
|
6127
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6132
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
6128
6133
|
var _getDataProps = getDataProps(otherProps),
|
|
6129
6134
|
dataProps = _getDataProps.dataProps;
|
|
6130
6135
|
return React__default["default"].createElement("a", _extends({}, dataProps, {
|
|
@@ -6554,7 +6559,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
6554
6559
|
}
|
|
6555
6560
|
};
|
|
6556
6561
|
|
|
6557
|
-
var _excluded$
|
|
6562
|
+
var _excluded$q = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
6558
6563
|
var InlineBanner = function InlineBanner(_ref) {
|
|
6559
6564
|
var _classnames, _classnames2;
|
|
6560
6565
|
var children = _ref.children,
|
|
@@ -6566,7 +6571,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
6566
6571
|
primaryButton = _ref.primaryButton,
|
|
6567
6572
|
secondaryButton = _ref.secondaryButton,
|
|
6568
6573
|
testId = _ref.testId,
|
|
6569
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6574
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
|
|
6570
6575
|
var positionStyles = usePositionStyles(positionProps);
|
|
6571
6576
|
var multiLine = !!title;
|
|
6572
6577
|
var dismissable = !!onClose;
|
|
@@ -6919,7 +6924,7 @@ var ALIGNMENTS = {
|
|
|
6919
6924
|
|
|
6920
6925
|
var styles$11 = {"text":"_6SgoN","text__body":"_SF95f","text__caption":"_HHohB","text__insight":"_xdhK0","text--bold":"_i2LHD","text--italic":"_NgSTT","text--underline":"_ouqVK","text--monospace":"_Vi-V1","text--align-left":"_tfSIf","text--align-right":"_AK1Nr","text--align-center":"_N-tR4","text--align-justify":"_LkMr0"};
|
|
6921
6926
|
|
|
6922
|
-
var _excluded$
|
|
6927
|
+
var _excluded$p = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
|
|
6923
6928
|
var TextComponent = function TextComponent(_ref, ref) {
|
|
6924
6929
|
var _classnames;
|
|
6925
6930
|
var children = _ref.children,
|
|
@@ -6930,7 +6935,7 @@ var TextComponent = function TextComponent(_ref, ref) {
|
|
|
6930
6935
|
color = _ref.color,
|
|
6931
6936
|
testId = _ref.testId,
|
|
6932
6937
|
textWrap = _ref.textWrap,
|
|
6933
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6938
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$p);
|
|
6934
6939
|
var _getPositionProps = getPositionProps(rest),
|
|
6935
6940
|
positionProps = _getPositionProps.positionProps,
|
|
6936
6941
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -6975,7 +6980,7 @@ var Italic = function Italic(_ref) {
|
|
|
6975
6980
|
}, children);
|
|
6976
6981
|
};
|
|
6977
6982
|
|
|
6978
|
-
var _excluded$
|
|
6983
|
+
var _excluded$o = ["id", "label", "caption", "characterCount", "error", "children"];
|
|
6979
6984
|
var Field = function Field(_ref) {
|
|
6980
6985
|
var id = _ref.id,
|
|
6981
6986
|
label = _ref.label,
|
|
@@ -6983,7 +6988,7 @@ var Field = function Field(_ref) {
|
|
|
6983
6988
|
characterCount = _ref.characterCount,
|
|
6984
6989
|
error = _ref.error,
|
|
6985
6990
|
children = _ref.children,
|
|
6986
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6991
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
|
|
6987
6992
|
var shouldRenderLabel = label || typeof label === 'string';
|
|
6988
6993
|
var CharacterConter = function CharacterConter() {
|
|
6989
6994
|
return React__default["default"].createElement(Inline, {
|
|
@@ -7122,7 +7127,7 @@ var useFieldControllers = function useFieldControllers(_ref) {
|
|
|
7122
7127
|
|
|
7123
7128
|
var styles$10 = {"text-field":"_G6LsE","text-field--invalid":"_2ZYtt","text-field--prefixed":"_rWp7H","text-field--suffixed":"_Xq8xX"};
|
|
7124
7129
|
|
|
7125
|
-
var _excluded$
|
|
7130
|
+
var _excluded$n = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
|
|
7126
7131
|
var useTextField = function useTextField(_ref) {
|
|
7127
7132
|
var _classnames;
|
|
7128
7133
|
var autoComplete = _ref.autoComplete,
|
|
@@ -7143,7 +7148,7 @@ var useTextField = function useTextField(_ref) {
|
|
|
7143
7148
|
value = _ref.value,
|
|
7144
7149
|
ref = _ref.ref,
|
|
7145
7150
|
testId = _ref.testId,
|
|
7146
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7151
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
|
|
7147
7152
|
var controllers = useFieldControllers({
|
|
7148
7153
|
error: error,
|
|
7149
7154
|
id: id,
|
|
@@ -7274,7 +7279,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
7274
7279
|
})));
|
|
7275
7280
|
};
|
|
7276
7281
|
|
|
7277
|
-
var _excluded$
|
|
7282
|
+
var _excluded$m = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
7278
7283
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
7279
7284
|
var _ref$placeholder = _ref.placeholder,
|
|
7280
7285
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -7283,7 +7288,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
7283
7288
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
7284
7289
|
prefix = _ref.prefix,
|
|
7285
7290
|
duration = _ref.duration,
|
|
7286
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7291
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
7287
7292
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
7288
7293
|
placeholder: placeholder,
|
|
7289
7294
|
autoComplete: autoComplete,
|
|
@@ -7746,7 +7751,7 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
7746
7751
|
|
|
7747
7752
|
var styles$X = {"card":"_TXXpM","card__body":"_C3waP","card__body--interactive":"_uc-GV","card--focus":"_ft0I1","card__body--focus":"_wx2MU","card__body--disabled":"_TQDZH","card__body--with-kebab":"_kkYit","card__kebab":"_xrEdS","card__kebab--disabled":"_0WiOn","card__close":"_yODES","card__close--disabled":"_Vqf6o"};
|
|
7748
7753
|
|
|
7749
|
-
var _excluded$
|
|
7754
|
+
var _excluded$l = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
|
|
7750
7755
|
var Card = function Card(_ref) {
|
|
7751
7756
|
var _classnames, _classnames2, _classnames3, _classnames4;
|
|
7752
7757
|
var children = _ref.children,
|
|
@@ -7758,7 +7763,7 @@ var Card = function Card(_ref) {
|
|
|
7758
7763
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7759
7764
|
actions = _ref.actions,
|
|
7760
7765
|
testId = _ref.testId,
|
|
7761
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7766
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
7762
7767
|
var translate = useTranslation('Card');
|
|
7763
7768
|
var _getPositionProps = getPositionProps(rest),
|
|
7764
7769
|
positionProps = _getPositionProps.positionProps,
|
|
@@ -8119,14 +8124,14 @@ var SKELETON_COMPONENT = {
|
|
|
8119
8124
|
PILL: 'pill'
|
|
8120
8125
|
};
|
|
8121
8126
|
|
|
8122
|
-
var _excluded$
|
|
8127
|
+
var _excluded$k = ["as", "testId", "width", "height"];
|
|
8123
8128
|
var Skeleton = function Skeleton(_ref) {
|
|
8124
8129
|
var _classnames;
|
|
8125
8130
|
var as = _ref.as,
|
|
8126
8131
|
testId = _ref.testId,
|
|
8127
8132
|
width = _ref.width,
|
|
8128
8133
|
height = _ref.height,
|
|
8129
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8134
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
8130
8135
|
var positioning = usePositionStyles(positionStyles);
|
|
8131
8136
|
return React__default["default"].createElement("div", {
|
|
8132
8137
|
"data-testid": testId,
|
|
@@ -8181,13 +8186,14 @@ var ModalHeader = function ModalHeader(_ref) {
|
|
|
8181
8186
|
}, subHeader));
|
|
8182
8187
|
};
|
|
8183
8188
|
|
|
8184
|
-
var _excluded$
|
|
8189
|
+
var _excluded$j = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
|
|
8185
8190
|
var Modal = function Modal(_ref) {
|
|
8186
8191
|
var children = _ref.children,
|
|
8187
8192
|
header = _ref.header,
|
|
8188
8193
|
subHeader = _ref.subHeader,
|
|
8189
8194
|
onClose = _ref.onClose,
|
|
8190
|
-
loading = _ref.loading,
|
|
8195
|
+
_ref$loading = _ref.loading,
|
|
8196
|
+
loading = _ref$loading === void 0 ? false : _ref$loading,
|
|
8191
8197
|
_ref$zIndex = _ref.zIndex,
|
|
8192
8198
|
zIndex = _ref$zIndex === void 0 ? 'modal' : _ref$zIndex,
|
|
8193
8199
|
rootElementId = _ref.rootElementId,
|
|
@@ -8198,7 +8204,7 @@ var Modal = function Modal(_ref) {
|
|
|
8198
8204
|
_ref$shouldReturnFocu = _ref.shouldReturnFocusAfterClose,
|
|
8199
8205
|
shouldReturnFocusAfterClose = _ref$shouldReturnFocu === void 0 ? true : _ref$shouldReturnFocu,
|
|
8200
8206
|
testId = _ref.testId,
|
|
8201
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8207
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
8202
8208
|
var style = {
|
|
8203
8209
|
content: {
|
|
8204
8210
|
width: width,
|
|
@@ -8665,7 +8671,7 @@ var useCheckBoxFieldControllers = function useCheckBoxFieldControllers(_ref) {
|
|
|
8665
8671
|
|
|
8666
8672
|
var styles$G = {"check-box-field":"_Id4qm","check-box-field__caption":"_s9d-m","check-box-field__custom-input":"_kmvBP"};
|
|
8667
8673
|
|
|
8668
|
-
var _excluded$
|
|
8674
|
+
var _excluded$i = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
|
|
8669
8675
|
/** CheckboxField form element. */
|
|
8670
8676
|
var CheckboxField = function CheckboxField(_ref) {
|
|
8671
8677
|
var name = _ref.name,
|
|
@@ -8678,7 +8684,7 @@ var CheckboxField = function CheckboxField(_ref) {
|
|
|
8678
8684
|
error = _ref.error,
|
|
8679
8685
|
disabled = _ref.disabled,
|
|
8680
8686
|
testId = _ref.testId,
|
|
8681
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8687
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
8682
8688
|
var controllers = useCheckBoxFieldControllers({
|
|
8683
8689
|
name: name,
|
|
8684
8690
|
id: inputId,
|
|
@@ -8756,7 +8762,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
8756
8762
|
|
|
8757
8763
|
var styles$F = {"hint-modal":"_NwD6V","hint-modal--after-open":"_4ofZb","hint-modal--before-close":"_hGoMD","hint-modal__overlay":"_iK5zl","hint-modal__image":"_V9hLa","hint-modal__body":"_oOqUg","hint-modal__close-button":"_5zcBK"};
|
|
8758
8764
|
|
|
8759
|
-
var _excluded$
|
|
8765
|
+
var _excluded$h = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
8760
8766
|
var HintModal = function HintModal(_ref) {
|
|
8761
8767
|
var header = _ref.header,
|
|
8762
8768
|
children = _ref.children,
|
|
@@ -8765,7 +8771,7 @@ var HintModal = function HintModal(_ref) {
|
|
|
8765
8771
|
modalId = _ref.modalId,
|
|
8766
8772
|
primaryButton = _ref.primaryButton,
|
|
8767
8773
|
testId = _ref.testId,
|
|
8768
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8774
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
8769
8775
|
var __ = useTranslation('HintModal');
|
|
8770
8776
|
var _useState = React.useState(false),
|
|
8771
8777
|
doNotShowAgain = _useState[0],
|
|
@@ -8838,6 +8844,27 @@ var HintModal = function HintModal(_ref) {
|
|
|
8838
8844
|
}), button))));
|
|
8839
8845
|
};
|
|
8840
8846
|
|
|
8847
|
+
var _excluded$g = ["header", "primaryButton", "onClose", "children", "loading"];
|
|
8848
|
+
var ConfirmModal = function ConfirmModal(_ref) {
|
|
8849
|
+
var header = _ref.header,
|
|
8850
|
+
primaryButton = _ref.primaryButton,
|
|
8851
|
+
onClose = _ref.onClose,
|
|
8852
|
+
children = _ref.children,
|
|
8853
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
8854
|
+
var __ = useTranslation('ConfirmModal');
|
|
8855
|
+
return React__default["default"].createElement(Modal, _extends({
|
|
8856
|
+
header: header,
|
|
8857
|
+
onClose: onClose
|
|
8858
|
+
}, otherProps), React__default["default"].createElement(ModalBody, null, children), React__default["default"].createElement(ModalFooter, {
|
|
8859
|
+
actions: {
|
|
8860
|
+
primary: primaryButton,
|
|
8861
|
+
secondary: React__default["default"].createElement(Button, {
|
|
8862
|
+
onClick: onClose
|
|
8863
|
+
}, __('cancel'))
|
|
8864
|
+
}
|
|
8865
|
+
}));
|
|
8866
|
+
};
|
|
8867
|
+
|
|
8841
8868
|
var DataTableCellElement = function DataTableCellElement(_ref, ref) {
|
|
8842
8869
|
var _columns$columnIndex, _classnames, _classnames2, _classnames3;
|
|
8843
8870
|
var children = _ref.children,
|
|
@@ -11598,7 +11625,13 @@ var DateField = function DateField(_ref) {
|
|
|
11598
11625
|
}
|
|
11599
11626
|
setInputValue(event.target.value);
|
|
11600
11627
|
},
|
|
11601
|
-
onBlur:
|
|
11628
|
+
onBlur: function onBlur(event) {
|
|
11629
|
+
controllers.onBlur();
|
|
11630
|
+
if (event.target.value === '') {
|
|
11631
|
+
// @ts-expect-error the types will be changed on the next major release https://github.com/7shifts/sous-chef/pull/356
|
|
11632
|
+
controllers.onChange(undefined);
|
|
11633
|
+
}
|
|
11634
|
+
},
|
|
11602
11635
|
maxLength: format.length,
|
|
11603
11636
|
value: inputValue
|
|
11604
11637
|
})), showCalendar && React__default["default"].createElement(Calendar, {
|
|
@@ -14053,6 +14086,7 @@ exports.Card = Card;
|
|
|
14053
14086
|
exports.CheckboxField = CheckboxField;
|
|
14054
14087
|
exports.Chip = Chip;
|
|
14055
14088
|
exports.CircularProgress = CircularProgress;
|
|
14089
|
+
exports.ConfirmModal = ConfirmModal;
|
|
14056
14090
|
exports.CurrencyField = CurrencyField;
|
|
14057
14091
|
exports.DataTable = DataTable;
|
|
14058
14092
|
exports.DataTableCell = DataTableCell;
|