@7shifts/sous-chef 3.63.1 → 3.64.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/forms/SelectField/SelectField.d.ts +2 -1
- package/dist/forms/SelectField/useSelectField.d.ts +1 -1
- package/dist/index.js +359 -355
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +391 -385
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -154,7 +154,7 @@ const capitalizeFirstLetter = text => {
|
|
|
154
154
|
};
|
|
155
155
|
const kebabize = str => str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, ($, ofs) => (ofs ? '-' : '') + $.toLowerCase());
|
|
156
156
|
|
|
157
|
-
const _excluded$
|
|
157
|
+
const _excluded$2W = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
|
|
158
158
|
const getPositionProps = _ref => {
|
|
159
159
|
let {
|
|
160
160
|
m,
|
|
@@ -168,7 +168,7 @@ const getPositionProps = _ref => {
|
|
|
168
168
|
ml,
|
|
169
169
|
marginLeft
|
|
170
170
|
} = _ref,
|
|
171
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
171
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
|
|
172
172
|
return {
|
|
173
173
|
positionProps: {
|
|
174
174
|
m,
|
|
@@ -204,7 +204,7 @@ const getDataProps = (props, config) => {
|
|
|
204
204
|
});
|
|
205
205
|
};
|
|
206
206
|
|
|
207
|
-
const _excluded$
|
|
207
|
+
const _excluded$2V = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
|
|
208
208
|
/**
|
|
209
209
|
* Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
|
|
210
210
|
*/
|
|
@@ -223,7 +223,7 @@ const Flex = _ref => {
|
|
|
223
223
|
testId,
|
|
224
224
|
extraClass
|
|
225
225
|
} = _ref,
|
|
226
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
226
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
|
|
227
227
|
const {
|
|
228
228
|
positionProps,
|
|
229
229
|
otherProps
|
|
@@ -264,7 +264,7 @@ const Flex = _ref => {
|
|
|
264
264
|
}, child)));
|
|
265
265
|
};
|
|
266
266
|
|
|
267
|
-
const _excluded$
|
|
267
|
+
const _excluded$2U = ["alignItems"];
|
|
268
268
|
/**
|
|
269
269
|
* Layout component to easily stack elements up in a column.
|
|
270
270
|
*/
|
|
@@ -272,7 +272,7 @@ const Stack = _ref => {
|
|
|
272
272
|
let {
|
|
273
273
|
alignItems = 'stretch'
|
|
274
274
|
} = _ref,
|
|
275
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
275
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
|
|
276
276
|
return React.createElement(Flex, _extends({}, props, {
|
|
277
277
|
alignItems: alignItems,
|
|
278
278
|
direction: "column"
|
|
@@ -281,7 +281,7 @@ const Stack = _ref => {
|
|
|
281
281
|
|
|
282
282
|
var styles$1k = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
|
|
283
283
|
|
|
284
|
-
const _excluded$
|
|
284
|
+
const _excluded$2T = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
|
|
285
285
|
/**
|
|
286
286
|
* Used when you want to allow the user to turn some information ON and OFF.
|
|
287
287
|
*
|
|
@@ -297,7 +297,7 @@ const Toggle = _ref => {
|
|
|
297
297
|
id,
|
|
298
298
|
testId
|
|
299
299
|
} = _ref,
|
|
300
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
300
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
|
|
301
301
|
const {
|
|
302
302
|
dataProps
|
|
303
303
|
} = getDataProps(otherProps);
|
|
@@ -820,7 +820,7 @@ const COMPONENT_NAMES = {
|
|
|
820
820
|
BUTTON: 'BUTTON'
|
|
821
821
|
};
|
|
822
822
|
|
|
823
|
-
const _excluded$
|
|
823
|
+
const _excluded$2S = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
|
|
824
824
|
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
|
|
825
825
|
const ButtonComponent = (_ref, ref) => {
|
|
826
826
|
let {
|
|
@@ -842,7 +842,7 @@ const ButtonComponent = (_ref, ref) => {
|
|
|
842
842
|
testId,
|
|
843
843
|
size
|
|
844
844
|
} = _ref,
|
|
845
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
845
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
|
|
846
846
|
const {
|
|
847
847
|
positionProps,
|
|
848
848
|
otherProps
|
|
@@ -982,7 +982,7 @@ const useIsInsideComponent = parentComponentName => {
|
|
|
982
982
|
return componentName === parentComponentName;
|
|
983
983
|
};
|
|
984
984
|
|
|
985
|
-
const _excluded$
|
|
985
|
+
const _excluded$2R = ["testId", "size", "color", "style"];
|
|
986
986
|
const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
987
987
|
let {
|
|
988
988
|
testId = 'icon-info-circle',
|
|
@@ -990,7 +990,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
|
990
990
|
color,
|
|
991
991
|
style
|
|
992
992
|
} = _ref,
|
|
993
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
993
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
|
|
994
994
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
995
995
|
const styleProps = {
|
|
996
996
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1013,7 +1013,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
|
1013
1013
|
});
|
|
1014
1014
|
IconInfoCircle.displayName = 'IconInfoCircle';
|
|
1015
1015
|
|
|
1016
|
-
const _excluded$
|
|
1016
|
+
const _excluded$2Q = ["testId", "size", "color", "style"];
|
|
1017
1017
|
const IconAnalytics = forwardRef((_ref, ref) => {
|
|
1018
1018
|
let {
|
|
1019
1019
|
testId = 'icon-analytics',
|
|
@@ -1021,7 +1021,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
|
|
|
1021
1021
|
color,
|
|
1022
1022
|
style
|
|
1023
1023
|
} = _ref,
|
|
1024
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1024
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
|
|
1025
1025
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1026
1026
|
const styleProps = {
|
|
1027
1027
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1044,7 +1044,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
|
|
|
1044
1044
|
});
|
|
1045
1045
|
IconAnalytics.displayName = 'IconAnalytics';
|
|
1046
1046
|
|
|
1047
|
-
const _excluded$
|
|
1047
|
+
const _excluded$2P = ["testId", "size", "color", "style"];
|
|
1048
1048
|
const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
1049
1049
|
let {
|
|
1050
1050
|
testId = 'icon-arrow-down-wide-short',
|
|
@@ -1052,7 +1052,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
|
1052
1052
|
color,
|
|
1053
1053
|
style
|
|
1054
1054
|
} = _ref,
|
|
1055
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1055
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
|
|
1056
1056
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1057
1057
|
const styleProps = {
|
|
1058
1058
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1073,7 +1073,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
|
1073
1073
|
});
|
|
1074
1074
|
IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
|
|
1075
1075
|
|
|
1076
|
-
const _excluded$
|
|
1076
|
+
const _excluded$2O = ["testId", "size", "color", "style"];
|
|
1077
1077
|
const IconArrowDown = forwardRef((_ref, ref) => {
|
|
1078
1078
|
let {
|
|
1079
1079
|
testId = 'icon-arrow-down',
|
|
@@ -1081,7 +1081,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
|
|
|
1081
1081
|
color,
|
|
1082
1082
|
style
|
|
1083
1083
|
} = _ref,
|
|
1084
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1084
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
|
|
1085
1085
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1086
1086
|
const styleProps = {
|
|
1087
1087
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1104,7 +1104,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
|
|
|
1104
1104
|
});
|
|
1105
1105
|
IconArrowDown.displayName = 'IconArrowDown';
|
|
1106
1106
|
|
|
1107
|
-
const _excluded$
|
|
1107
|
+
const _excluded$2N = ["testId", "size", "color", "style"];
|
|
1108
1108
|
const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
1109
1109
|
let {
|
|
1110
1110
|
testId = 'icon-arrow-left',
|
|
@@ -1112,7 +1112,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
|
1112
1112
|
color,
|
|
1113
1113
|
style
|
|
1114
1114
|
} = _ref,
|
|
1115
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1115
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
1116
1116
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1117
1117
|
const styleProps = {
|
|
1118
1118
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1135,7 +1135,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
|
1135
1135
|
});
|
|
1136
1136
|
IconArrowLeft.displayName = 'IconArrowLeft';
|
|
1137
1137
|
|
|
1138
|
-
const _excluded$
|
|
1138
|
+
const _excluded$2M = ["testId", "size", "color", "style"];
|
|
1139
1139
|
const IconArrowRight = forwardRef((_ref, ref) => {
|
|
1140
1140
|
let {
|
|
1141
1141
|
testId = 'icon-arrow-right',
|
|
@@ -1143,7 +1143,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
|
|
|
1143
1143
|
color,
|
|
1144
1144
|
style
|
|
1145
1145
|
} = _ref,
|
|
1146
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1146
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
1147
1147
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1148
1148
|
const styleProps = {
|
|
1149
1149
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1166,7 +1166,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
|
|
|
1166
1166
|
});
|
|
1167
1167
|
IconArrowRight.displayName = 'IconArrowRight';
|
|
1168
1168
|
|
|
1169
|
-
const _excluded$
|
|
1169
|
+
const _excluded$2L = ["testId", "size", "color", "style"];
|
|
1170
1170
|
const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
1171
1171
|
let {
|
|
1172
1172
|
testId = 'icon-arrow-to-top',
|
|
@@ -1174,7 +1174,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
|
1174
1174
|
color,
|
|
1175
1175
|
style
|
|
1176
1176
|
} = _ref,
|
|
1177
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1177
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
1178
1178
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1179
1179
|
const styleProps = {
|
|
1180
1180
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1195,7 +1195,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
|
1195
1195
|
});
|
|
1196
1196
|
IconArrowToTop.displayName = 'IconArrowToTop';
|
|
1197
1197
|
|
|
1198
|
-
const _excluded$
|
|
1198
|
+
const _excluded$2K = ["testId", "size", "color", "style"];
|
|
1199
1199
|
const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
1200
1200
|
let {
|
|
1201
1201
|
testId = 'icon-arrow-turn-down-right',
|
|
@@ -1203,7 +1203,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
|
1203
1203
|
color,
|
|
1204
1204
|
style
|
|
1205
1205
|
} = _ref,
|
|
1206
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1206
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
1207
1207
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1208
1208
|
const styleProps = {
|
|
1209
1209
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1232,7 +1232,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
|
1232
1232
|
});
|
|
1233
1233
|
IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
|
|
1234
1234
|
|
|
1235
|
-
const _excluded$
|
|
1235
|
+
const _excluded$2J = ["testId", "size", "color", "style"];
|
|
1236
1236
|
const IconArrowUp = forwardRef((_ref, ref) => {
|
|
1237
1237
|
let {
|
|
1238
1238
|
testId = 'icon-arrow-up',
|
|
@@ -1240,7 +1240,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
|
|
|
1240
1240
|
color,
|
|
1241
1241
|
style
|
|
1242
1242
|
} = _ref,
|
|
1243
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1243
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
1244
1244
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1245
1245
|
const styleProps = {
|
|
1246
1246
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1263,7 +1263,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
|
|
|
1263
1263
|
});
|
|
1264
1264
|
IconArrowUp.displayName = 'IconArrowUp';
|
|
1265
1265
|
|
|
1266
|
-
const _excluded$
|
|
1266
|
+
const _excluded$2I = ["testId", "size", "color", "style"];
|
|
1267
1267
|
const IconAward = forwardRef((_ref, ref) => {
|
|
1268
1268
|
let {
|
|
1269
1269
|
testId = 'icon-award',
|
|
@@ -1271,7 +1271,7 @@ const IconAward = forwardRef((_ref, ref) => {
|
|
|
1271
1271
|
color,
|
|
1272
1272
|
style
|
|
1273
1273
|
} = _ref,
|
|
1274
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1274
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
1275
1275
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1276
1276
|
const styleProps = {
|
|
1277
1277
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1294,7 +1294,7 @@ const IconAward = forwardRef((_ref, ref) => {
|
|
|
1294
1294
|
});
|
|
1295
1295
|
IconAward.displayName = 'IconAward';
|
|
1296
1296
|
|
|
1297
|
-
const _excluded$
|
|
1297
|
+
const _excluded$2H = ["testId", "size", "color", "style"];
|
|
1298
1298
|
const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
1299
1299
|
let {
|
|
1300
1300
|
testId = 'icon-awful-monochromatic',
|
|
@@ -1302,7 +1302,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1302
1302
|
color,
|
|
1303
1303
|
style
|
|
1304
1304
|
} = _ref,
|
|
1305
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1305
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
1306
1306
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1307
1307
|
const styleProps = {
|
|
1308
1308
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1355,7 +1355,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1355
1355
|
});
|
|
1356
1356
|
IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
|
|
1357
1357
|
|
|
1358
|
-
const _excluded$
|
|
1358
|
+
const _excluded$2G = ["testId", "size", "color", "style"];
|
|
1359
1359
|
const IconAwful = forwardRef((_ref, ref) => {
|
|
1360
1360
|
let {
|
|
1361
1361
|
testId = 'icon-awful',
|
|
@@ -1363,7 +1363,7 @@ const IconAwful = forwardRef((_ref, ref) => {
|
|
|
1363
1363
|
color,
|
|
1364
1364
|
style
|
|
1365
1365
|
} = _ref,
|
|
1366
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1366
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
1367
1367
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1368
1368
|
const styleProps = {
|
|
1369
1369
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1404,7 +1404,7 @@ const IconAwful = forwardRef((_ref, ref) => {
|
|
|
1404
1404
|
});
|
|
1405
1405
|
IconAwful.displayName = 'IconAwful';
|
|
1406
1406
|
|
|
1407
|
-
const _excluded$
|
|
1407
|
+
const _excluded$2F = ["testId", "size", "color", "style"];
|
|
1408
1408
|
const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
1409
1409
|
let {
|
|
1410
1410
|
testId = 'icon-bad-monochromatic',
|
|
@@ -1412,7 +1412,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1412
1412
|
color,
|
|
1413
1413
|
style
|
|
1414
1414
|
} = _ref,
|
|
1415
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1415
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
1416
1416
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1417
1417
|
const styleProps = {
|
|
1418
1418
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1451,7 +1451,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1451
1451
|
});
|
|
1452
1452
|
IconBadMonochromatic.displayName = 'IconBadMonochromatic';
|
|
1453
1453
|
|
|
1454
|
-
const _excluded$
|
|
1454
|
+
const _excluded$2E = ["testId", "size", "color", "style"];
|
|
1455
1455
|
const IconBad = forwardRef((_ref, ref) => {
|
|
1456
1456
|
let {
|
|
1457
1457
|
testId = 'icon-bad',
|
|
@@ -1459,7 +1459,7 @@ const IconBad = forwardRef((_ref, ref) => {
|
|
|
1459
1459
|
color,
|
|
1460
1460
|
style
|
|
1461
1461
|
} = _ref,
|
|
1462
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1462
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
1463
1463
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1464
1464
|
const styleProps = {
|
|
1465
1465
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1486,7 +1486,7 @@ const IconBad = forwardRef((_ref, ref) => {
|
|
|
1486
1486
|
});
|
|
1487
1487
|
IconBad.displayName = 'IconBad';
|
|
1488
1488
|
|
|
1489
|
-
const _excluded$
|
|
1489
|
+
const _excluded$2D = ["testId", "size", "color", "style"];
|
|
1490
1490
|
const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
1491
1491
|
let {
|
|
1492
1492
|
testId = 'icon-balance-scale-left',
|
|
@@ -1494,7 +1494,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
|
1494
1494
|
color,
|
|
1495
1495
|
style
|
|
1496
1496
|
} = _ref,
|
|
1497
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1497
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
1498
1498
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1499
1499
|
const styleProps = {
|
|
1500
1500
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1522,7 +1522,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
|
1522
1522
|
});
|
|
1523
1523
|
IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
|
|
1524
1524
|
|
|
1525
|
-
const _excluded$
|
|
1525
|
+
const _excluded$2C = ["testId", "size", "color", "style"];
|
|
1526
1526
|
const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
1527
1527
|
let {
|
|
1528
1528
|
testId = 'icon-balance-scale',
|
|
@@ -1530,7 +1530,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
|
1530
1530
|
color,
|
|
1531
1531
|
style
|
|
1532
1532
|
} = _ref,
|
|
1533
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
1534
1534
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1535
1535
|
const styleProps = {
|
|
1536
1536
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1558,7 +1558,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
|
1558
1558
|
});
|
|
1559
1559
|
IconBalanceScale.displayName = 'IconBalanceScale';
|
|
1560
1560
|
|
|
1561
|
-
const _excluded$
|
|
1561
|
+
const _excluded$2B = ["testId", "size", "color", "style"];
|
|
1562
1562
|
const IconBan = forwardRef((_ref, ref) => {
|
|
1563
1563
|
let {
|
|
1564
1564
|
testId = 'icon-ban',
|
|
@@ -1566,7 +1566,7 @@ const IconBan = forwardRef((_ref, ref) => {
|
|
|
1566
1566
|
color,
|
|
1567
1567
|
style
|
|
1568
1568
|
} = _ref,
|
|
1569
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1569
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
1570
1570
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1571
1571
|
const styleProps = {
|
|
1572
1572
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1587,7 +1587,7 @@ const IconBan = forwardRef((_ref, ref) => {
|
|
|
1587
1587
|
});
|
|
1588
1588
|
IconBan.displayName = 'IconBan';
|
|
1589
1589
|
|
|
1590
|
-
const _excluded$
|
|
1590
|
+
const _excluded$2A = ["testId", "size", "color", "style"];
|
|
1591
1591
|
const IconBarsH = forwardRef((_ref, ref) => {
|
|
1592
1592
|
let {
|
|
1593
1593
|
testId = 'icon-bars-h',
|
|
@@ -1595,7 +1595,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
|
|
|
1595
1595
|
color,
|
|
1596
1596
|
style
|
|
1597
1597
|
} = _ref,
|
|
1598
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1598
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
1599
1599
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1600
1600
|
const styleProps = {
|
|
1601
1601
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1618,7 +1618,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
|
|
|
1618
1618
|
});
|
|
1619
1619
|
IconBarsH.displayName = 'IconBarsH';
|
|
1620
1620
|
|
|
1621
|
-
const _excluded$
|
|
1621
|
+
const _excluded$2z = ["testId", "size", "color", "style"];
|
|
1622
1622
|
const IconBarsV = forwardRef((_ref, ref) => {
|
|
1623
1623
|
let {
|
|
1624
1624
|
testId = 'icon-bars-v',
|
|
@@ -1626,7 +1626,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
|
|
|
1626
1626
|
color,
|
|
1627
1627
|
style
|
|
1628
1628
|
} = _ref,
|
|
1629
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1629
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
1630
1630
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1631
1631
|
const styleProps = {
|
|
1632
1632
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1647,7 +1647,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
|
|
|
1647
1647
|
});
|
|
1648
1648
|
IconBarsV.displayName = 'IconBarsV';
|
|
1649
1649
|
|
|
1650
|
-
const _excluded$
|
|
1650
|
+
const _excluded$2y = ["testId", "size", "color", "style"];
|
|
1651
1651
|
const IconBell = forwardRef((_ref, ref) => {
|
|
1652
1652
|
let {
|
|
1653
1653
|
testId = 'icon-bell',
|
|
@@ -1655,7 +1655,7 @@ const IconBell = forwardRef((_ref, ref) => {
|
|
|
1655
1655
|
color,
|
|
1656
1656
|
style
|
|
1657
1657
|
} = _ref,
|
|
1658
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1658
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
1659
1659
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1660
1660
|
const styleProps = {
|
|
1661
1661
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1678,7 +1678,7 @@ const IconBell = forwardRef((_ref, ref) => {
|
|
|
1678
1678
|
});
|
|
1679
1679
|
IconBell.displayName = 'IconBell';
|
|
1680
1680
|
|
|
1681
|
-
const _excluded$
|
|
1681
|
+
const _excluded$2x = ["testId", "size", "color", "style"];
|
|
1682
1682
|
const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
1683
1683
|
let {
|
|
1684
1684
|
testId = 'icon-birthday-cake',
|
|
@@ -1686,7 +1686,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
|
1686
1686
|
color,
|
|
1687
1687
|
style
|
|
1688
1688
|
} = _ref,
|
|
1689
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1689
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
1690
1690
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1691
1691
|
const styleProps = {
|
|
1692
1692
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1707,7 +1707,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
|
1707
1707
|
});
|
|
1708
1708
|
IconBirthdayCake.displayName = 'IconBirthdayCake';
|
|
1709
1709
|
|
|
1710
|
-
const _excluded$
|
|
1710
|
+
const _excluded$2w = ["testId", "size", "color", "style"];
|
|
1711
1711
|
const IconBold = forwardRef((_ref, ref) => {
|
|
1712
1712
|
let {
|
|
1713
1713
|
testId = 'icon-bold',
|
|
@@ -1715,7 +1715,7 @@ const IconBold = forwardRef((_ref, ref) => {
|
|
|
1715
1715
|
color,
|
|
1716
1716
|
style
|
|
1717
1717
|
} = _ref,
|
|
1718
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1718
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
1719
1719
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1720
1720
|
const styleProps = {
|
|
1721
1721
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1736,7 +1736,7 @@ const IconBold = forwardRef((_ref, ref) => {
|
|
|
1736
1736
|
});
|
|
1737
1737
|
IconBold.displayName = 'IconBold';
|
|
1738
1738
|
|
|
1739
|
-
const _excluded$
|
|
1739
|
+
const _excluded$2v = ["testId", "size", "color", "style"];
|
|
1740
1740
|
const IconBolt = forwardRef((_ref, ref) => {
|
|
1741
1741
|
let {
|
|
1742
1742
|
testId = 'icon-bolt',
|
|
@@ -1744,7 +1744,7 @@ const IconBolt = forwardRef((_ref, ref) => {
|
|
|
1744
1744
|
color,
|
|
1745
1745
|
style
|
|
1746
1746
|
} = _ref,
|
|
1747
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1747
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
1748
1748
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1749
1749
|
const styleProps = {
|
|
1750
1750
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1772,7 +1772,7 @@ const IconBolt = forwardRef((_ref, ref) => {
|
|
|
1772
1772
|
});
|
|
1773
1773
|
IconBolt.displayName = 'IconBolt';
|
|
1774
1774
|
|
|
1775
|
-
const _excluded$
|
|
1775
|
+
const _excluded$2u = ["testId", "size", "color", "style"];
|
|
1776
1776
|
const IconBook = forwardRef((_ref, ref) => {
|
|
1777
1777
|
let {
|
|
1778
1778
|
testId = 'icon-book',
|
|
@@ -1780,7 +1780,7 @@ const IconBook = forwardRef((_ref, ref) => {
|
|
|
1780
1780
|
color,
|
|
1781
1781
|
style
|
|
1782
1782
|
} = _ref,
|
|
1783
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1783
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
1784
1784
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1785
1785
|
const styleProps = {
|
|
1786
1786
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1803,7 +1803,7 @@ const IconBook = forwardRef((_ref, ref) => {
|
|
|
1803
1803
|
});
|
|
1804
1804
|
IconBook.displayName = 'IconBook';
|
|
1805
1805
|
|
|
1806
|
-
const _excluded$
|
|
1806
|
+
const _excluded$2t = ["testId", "size", "color", "style"];
|
|
1807
1807
|
const IconBriefcase = forwardRef((_ref, ref) => {
|
|
1808
1808
|
let {
|
|
1809
1809
|
testId = 'icon-briefcase',
|
|
@@ -1811,7 +1811,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
|
|
|
1811
1811
|
color,
|
|
1812
1812
|
style
|
|
1813
1813
|
} = _ref,
|
|
1814
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1814
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
1815
1815
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1816
1816
|
const styleProps = {
|
|
1817
1817
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1832,7 +1832,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
|
|
|
1832
1832
|
});
|
|
1833
1833
|
IconBriefcase.displayName = 'IconBriefcase';
|
|
1834
1834
|
|
|
1835
|
-
const _excluded$
|
|
1835
|
+
const _excluded$2s = ["testId", "size", "color", "style"];
|
|
1836
1836
|
const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
1837
1837
|
let {
|
|
1838
1838
|
testId = 'icon-bullseye-arrow',
|
|
@@ -1840,7 +1840,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
|
1840
1840
|
color,
|
|
1841
1841
|
style
|
|
1842
1842
|
} = _ref,
|
|
1843
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1843
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
1844
1844
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1845
1845
|
const styleProps = {
|
|
1846
1846
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1863,7 +1863,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
|
1863
1863
|
});
|
|
1864
1864
|
IconBullseyeArrow.displayName = 'IconBullseyeArrow';
|
|
1865
1865
|
|
|
1866
|
-
const _excluded$
|
|
1866
|
+
const _excluded$2r = ["testId", "size", "color", "style"];
|
|
1867
1867
|
const IconCalculator = forwardRef((_ref, ref) => {
|
|
1868
1868
|
let {
|
|
1869
1869
|
testId = 'icon-calculator',
|
|
@@ -1871,7 +1871,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
|
|
|
1871
1871
|
color,
|
|
1872
1872
|
style
|
|
1873
1873
|
} = _ref,
|
|
1874
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1874
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
1875
1875
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1876
1876
|
const styleProps = {
|
|
1877
1877
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1894,7 +1894,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
|
|
|
1894
1894
|
});
|
|
1895
1895
|
IconCalculator.displayName = 'IconCalculator';
|
|
1896
1896
|
|
|
1897
|
-
const _excluded$
|
|
1897
|
+
const _excluded$2q = ["testId", "size", "color", "style"];
|
|
1898
1898
|
const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
1899
1899
|
let {
|
|
1900
1900
|
testId = 'icon-calendar-alt',
|
|
@@ -1902,7 +1902,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
|
1902
1902
|
color,
|
|
1903
1903
|
style
|
|
1904
1904
|
} = _ref,
|
|
1905
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1905
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
1906
1906
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1907
1907
|
const styleProps = {
|
|
1908
1908
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1925,7 +1925,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
|
1925
1925
|
});
|
|
1926
1926
|
IconCalendarAlt.displayName = 'IconCalendarAlt';
|
|
1927
1927
|
|
|
1928
|
-
const _excluded$
|
|
1928
|
+
const _excluded$2p = ["testId", "size", "color", "style"];
|
|
1929
1929
|
const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
1930
1930
|
let {
|
|
1931
1931
|
testId = 'icon-calendar-check',
|
|
@@ -1933,7 +1933,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
|
1933
1933
|
color,
|
|
1934
1934
|
style
|
|
1935
1935
|
} = _ref,
|
|
1936
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1936
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
1937
1937
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1938
1938
|
const styleProps = {
|
|
1939
1939
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1956,7 +1956,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
|
1956
1956
|
});
|
|
1957
1957
|
IconCalendarCheck.displayName = 'IconCalendarCheck';
|
|
1958
1958
|
|
|
1959
|
-
const _excluded$
|
|
1959
|
+
const _excluded$2o = ["testId", "size", "color", "style"];
|
|
1960
1960
|
const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
1961
1961
|
let {
|
|
1962
1962
|
testId = 'icon-calendar-day',
|
|
@@ -1964,7 +1964,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
|
1964
1964
|
color,
|
|
1965
1965
|
style
|
|
1966
1966
|
} = _ref,
|
|
1967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1967
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
1968
1968
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1969
1969
|
const styleProps = {
|
|
1970
1970
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1992,7 +1992,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
|
1992
1992
|
});
|
|
1993
1993
|
IconCalendarDay.displayName = 'IconCalendarDay';
|
|
1994
1994
|
|
|
1995
|
-
const _excluded$
|
|
1995
|
+
const _excluded$2n = ["testId", "size", "color", "style"];
|
|
1996
1996
|
const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
1997
1997
|
let {
|
|
1998
1998
|
testId = 'icon-calendar-exclamation',
|
|
@@ -2000,7 +2000,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
|
2000
2000
|
color,
|
|
2001
2001
|
style
|
|
2002
2002
|
} = _ref,
|
|
2003
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2003
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
2004
2004
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2005
2005
|
const styleProps = {
|
|
2006
2006
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2021,7 +2021,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
|
2021
2021
|
});
|
|
2022
2022
|
IconCalendarExclamation.displayName = 'IconCalendarExclamation';
|
|
2023
2023
|
|
|
2024
|
-
const _excluded$
|
|
2024
|
+
const _excluded$2m = ["testId", "size", "color", "style"];
|
|
2025
2025
|
const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
2026
2026
|
let {
|
|
2027
2027
|
testId = 'icon-calendar-star',
|
|
@@ -2029,7 +2029,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
|
2029
2029
|
color,
|
|
2030
2030
|
style
|
|
2031
2031
|
} = _ref,
|
|
2032
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2032
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
2033
2033
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2034
2034
|
const styleProps = {
|
|
2035
2035
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2050,7 +2050,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
|
2050
2050
|
});
|
|
2051
2051
|
IconCalendarStar.displayName = 'IconCalendarStar';
|
|
2052
2052
|
|
|
2053
|
-
const _excluded$
|
|
2053
|
+
const _excluded$2l = ["testId", "size", "color", "style"];
|
|
2054
2054
|
const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
2055
2055
|
let {
|
|
2056
2056
|
testId = 'icon-calendar-tomorrow',
|
|
@@ -2058,7 +2058,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
|
2058
2058
|
color,
|
|
2059
2059
|
style
|
|
2060
2060
|
} = _ref,
|
|
2061
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2061
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
2062
2062
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2063
2063
|
const styleProps = {
|
|
2064
2064
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2088,7 +2088,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
|
2088
2088
|
});
|
|
2089
2089
|
IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
|
|
2090
2090
|
|
|
2091
|
-
const _excluded$
|
|
2091
|
+
const _excluded$2k = ["testId", "size", "color", "style"];
|
|
2092
2092
|
const IconCalendar = forwardRef((_ref, ref) => {
|
|
2093
2093
|
let {
|
|
2094
2094
|
testId = 'icon-calendar',
|
|
@@ -2096,7 +2096,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
|
|
|
2096
2096
|
color,
|
|
2097
2097
|
style
|
|
2098
2098
|
} = _ref,
|
|
2099
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2099
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
2100
2100
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2101
2101
|
const styleProps = {
|
|
2102
2102
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2119,7 +2119,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
|
|
|
2119
2119
|
});
|
|
2120
2120
|
IconCalendar.displayName = 'IconCalendar';
|
|
2121
2121
|
|
|
2122
|
-
const _excluded$
|
|
2122
|
+
const _excluded$2j = ["testId", "size", "color", "style"];
|
|
2123
2123
|
const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
2124
2124
|
let {
|
|
2125
2125
|
testId = 'icon-camera-slash',
|
|
@@ -2127,7 +2127,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
|
2127
2127
|
color,
|
|
2128
2128
|
style
|
|
2129
2129
|
} = _ref,
|
|
2130
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2130
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
2131
2131
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2132
2132
|
const styleProps = {
|
|
2133
2133
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2151,7 +2151,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
|
2151
2151
|
});
|
|
2152
2152
|
IconCameraSlash.displayName = 'IconCameraSlash';
|
|
2153
2153
|
|
|
2154
|
-
const _excluded$
|
|
2154
|
+
const _excluded$2i = ["testId", "size", "color", "style"];
|
|
2155
2155
|
const IconCamera = forwardRef((_ref, ref) => {
|
|
2156
2156
|
let {
|
|
2157
2157
|
testId = 'icon-camera',
|
|
@@ -2159,7 +2159,7 @@ const IconCamera = forwardRef((_ref, ref) => {
|
|
|
2159
2159
|
color,
|
|
2160
2160
|
style
|
|
2161
2161
|
} = _ref,
|
|
2162
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2162
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
2163
2163
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2164
2164
|
const styleProps = {
|
|
2165
2165
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2180,7 +2180,7 @@ const IconCamera = forwardRef((_ref, ref) => {
|
|
|
2180
2180
|
});
|
|
2181
2181
|
IconCamera.displayName = 'IconCamera';
|
|
2182
2182
|
|
|
2183
|
-
const _excluded$
|
|
2183
|
+
const _excluded$2h = ["testId", "size", "color", "style"];
|
|
2184
2184
|
const IconCashRegister = forwardRef((_ref, ref) => {
|
|
2185
2185
|
let {
|
|
2186
2186
|
testId = 'icon-cash-register',
|
|
@@ -2188,7 +2188,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
|
|
|
2188
2188
|
color,
|
|
2189
2189
|
style
|
|
2190
2190
|
} = _ref,
|
|
2191
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2191
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
2192
2192
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2193
2193
|
const styleProps = {
|
|
2194
2194
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2209,7 +2209,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
|
|
|
2209
2209
|
});
|
|
2210
2210
|
IconCashRegister.displayName = 'IconCashRegister';
|
|
2211
2211
|
|
|
2212
|
-
const _excluded$
|
|
2212
|
+
const _excluded$2g = ["testId", "size", "color", "style"];
|
|
2213
2213
|
const IconChartBar = forwardRef((_ref, ref) => {
|
|
2214
2214
|
let {
|
|
2215
2215
|
testId = 'icon-chart-bar',
|
|
@@ -2217,7 +2217,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
|
|
|
2217
2217
|
color,
|
|
2218
2218
|
style
|
|
2219
2219
|
} = _ref,
|
|
2220
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2220
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
2221
2221
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2222
2222
|
const styleProps = {
|
|
2223
2223
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2240,7 +2240,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
|
|
|
2240
2240
|
});
|
|
2241
2241
|
IconChartBar.displayName = 'IconChartBar';
|
|
2242
2242
|
|
|
2243
|
-
const _excluded$
|
|
2243
|
+
const _excluded$2f = ["testId", "size", "color", "style"];
|
|
2244
2244
|
const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
2245
2245
|
let {
|
|
2246
2246
|
testId = 'icon-check-circle-incomplete',
|
|
@@ -2248,7 +2248,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
|
2248
2248
|
color,
|
|
2249
2249
|
style
|
|
2250
2250
|
} = _ref,
|
|
2251
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2251
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
2252
2252
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2253
2253
|
const styleProps = {
|
|
2254
2254
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2269,7 +2269,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
|
2269
2269
|
});
|
|
2270
2270
|
IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
|
|
2271
2271
|
|
|
2272
|
-
const _excluded$
|
|
2272
|
+
const _excluded$2e = ["testId", "size", "color", "style"];
|
|
2273
2273
|
const IconCheck = forwardRef((_ref, ref) => {
|
|
2274
2274
|
let {
|
|
2275
2275
|
testId = 'icon-check',
|
|
@@ -2277,7 +2277,7 @@ const IconCheck = forwardRef((_ref, ref) => {
|
|
|
2277
2277
|
color,
|
|
2278
2278
|
style
|
|
2279
2279
|
} = _ref,
|
|
2280
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2280
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
2281
2281
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2282
2282
|
const styleProps = {
|
|
2283
2283
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2300,7 +2300,7 @@ const IconCheck = forwardRef((_ref, ref) => {
|
|
|
2300
2300
|
});
|
|
2301
2301
|
IconCheck.displayName = 'IconCheck';
|
|
2302
2302
|
|
|
2303
|
-
const _excluded$
|
|
2303
|
+
const _excluded$2d = ["testId", "size", "color", "style"];
|
|
2304
2304
|
const IconChevronDown = forwardRef((_ref, ref) => {
|
|
2305
2305
|
let {
|
|
2306
2306
|
testId = 'icon-chevron-down',
|
|
@@ -2308,7 +2308,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
|
|
|
2308
2308
|
color,
|
|
2309
2309
|
style
|
|
2310
2310
|
} = _ref,
|
|
2311
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2311
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
2312
2312
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2313
2313
|
const styleProps = {
|
|
2314
2314
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2331,7 +2331,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
|
|
|
2331
2331
|
});
|
|
2332
2332
|
IconChevronDown.displayName = 'IconChevronDown';
|
|
2333
2333
|
|
|
2334
|
-
const _excluded$
|
|
2334
|
+
const _excluded$2c = ["testId", "size", "color", "style"];
|
|
2335
2335
|
const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
2336
2336
|
let {
|
|
2337
2337
|
testId = 'icon-chevron-left',
|
|
@@ -2339,7 +2339,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
|
2339
2339
|
color,
|
|
2340
2340
|
style
|
|
2341
2341
|
} = _ref,
|
|
2342
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2342
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
2343
2343
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2344
2344
|
const styleProps = {
|
|
2345
2345
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2362,7 +2362,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
|
2362
2362
|
});
|
|
2363
2363
|
IconChevronLeft.displayName = 'IconChevronLeft';
|
|
2364
2364
|
|
|
2365
|
-
const _excluded$
|
|
2365
|
+
const _excluded$2b = ["testId", "size", "color", "style"];
|
|
2366
2366
|
const IconChevronRight = forwardRef((_ref, ref) => {
|
|
2367
2367
|
let {
|
|
2368
2368
|
testId = 'icon-chevron-right',
|
|
@@ -2370,7 +2370,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
|
|
|
2370
2370
|
color,
|
|
2371
2371
|
style
|
|
2372
2372
|
} = _ref,
|
|
2373
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2373
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
2374
2374
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2375
2375
|
const styleProps = {
|
|
2376
2376
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2393,7 +2393,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
|
|
|
2393
2393
|
});
|
|
2394
2394
|
IconChevronRight.displayName = 'IconChevronRight';
|
|
2395
2395
|
|
|
2396
|
-
const _excluded$
|
|
2396
|
+
const _excluded$2a = ["testId", "size", "color", "style"];
|
|
2397
2397
|
const IconChevronUp = forwardRef((_ref, ref) => {
|
|
2398
2398
|
let {
|
|
2399
2399
|
testId = 'icon-chevron-up',
|
|
@@ -2401,7 +2401,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
|
|
|
2401
2401
|
color,
|
|
2402
2402
|
style
|
|
2403
2403
|
} = _ref,
|
|
2404
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2404
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
2405
2405
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2406
2406
|
const styleProps = {
|
|
2407
2407
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2424,7 +2424,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
|
|
|
2424
2424
|
});
|
|
2425
2425
|
IconChevronUp.displayName = 'IconChevronUp';
|
|
2426
2426
|
|
|
2427
|
-
const _excluded$
|
|
2427
|
+
const _excluded$29 = ["testId", "size", "color", "style"];
|
|
2428
2428
|
const IconClipboardList = forwardRef((_ref, ref) => {
|
|
2429
2429
|
let {
|
|
2430
2430
|
testId = 'icon-clipboard-list',
|
|
@@ -2432,7 +2432,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
|
|
|
2432
2432
|
color,
|
|
2433
2433
|
style
|
|
2434
2434
|
} = _ref,
|
|
2435
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2435
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
2436
2436
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2437
2437
|
const styleProps = {
|
|
2438
2438
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2455,7 +2455,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
|
|
|
2455
2455
|
});
|
|
2456
2456
|
IconClipboardList.displayName = 'IconClipboardList';
|
|
2457
2457
|
|
|
2458
|
-
const _excluded$
|
|
2458
|
+
const _excluded$28 = ["testId", "size", "color", "style"];
|
|
2459
2459
|
const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
2460
2460
|
let {
|
|
2461
2461
|
testId = 'icon-clock-exclamation',
|
|
@@ -2463,7 +2463,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
|
2463
2463
|
color,
|
|
2464
2464
|
style
|
|
2465
2465
|
} = _ref,
|
|
2466
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2466
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
2467
2467
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2468
2468
|
const styleProps = {
|
|
2469
2469
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2491,7 +2491,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
|
2491
2491
|
});
|
|
2492
2492
|
IconClockExclamation.displayName = 'IconClockExclamation';
|
|
2493
2493
|
|
|
2494
|
-
const _excluded$
|
|
2494
|
+
const _excluded$27 = ["testId", "size", "color", "style"];
|
|
2495
2495
|
const IconClockRewind = forwardRef((_ref, ref) => {
|
|
2496
2496
|
let {
|
|
2497
2497
|
testId = 'icon-clock-rewind',
|
|
@@ -2499,7 +2499,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
|
|
|
2499
2499
|
color,
|
|
2500
2500
|
style
|
|
2501
2501
|
} = _ref,
|
|
2502
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2502
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
2503
2503
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2504
2504
|
const styleProps = {
|
|
2505
2505
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2527,7 +2527,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
|
|
|
2527
2527
|
});
|
|
2528
2528
|
IconClockRewind.displayName = 'IconClockRewind';
|
|
2529
2529
|
|
|
2530
|
-
const _excluded$
|
|
2530
|
+
const _excluded$26 = ["testId", "size", "color", "style"];
|
|
2531
2531
|
const IconClock = forwardRef((_ref, ref) => {
|
|
2532
2532
|
let {
|
|
2533
2533
|
testId = 'icon-clock',
|
|
@@ -2535,7 +2535,7 @@ const IconClock = forwardRef((_ref, ref) => {
|
|
|
2535
2535
|
color,
|
|
2536
2536
|
style
|
|
2537
2537
|
} = _ref,
|
|
2538
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2538
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
2539
2539
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2540
2540
|
const styleProps = {
|
|
2541
2541
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2556,7 +2556,7 @@ const IconClock = forwardRef((_ref, ref) => {
|
|
|
2556
2556
|
});
|
|
2557
2557
|
IconClock.displayName = 'IconClock';
|
|
2558
2558
|
|
|
2559
|
-
const _excluded$
|
|
2559
|
+
const _excluded$25 = ["testId", "size", "color", "style"];
|
|
2560
2560
|
const IconCog = forwardRef((_ref, ref) => {
|
|
2561
2561
|
let {
|
|
2562
2562
|
testId = 'icon-cog',
|
|
@@ -2564,7 +2564,7 @@ const IconCog = forwardRef((_ref, ref) => {
|
|
|
2564
2564
|
color,
|
|
2565
2565
|
style
|
|
2566
2566
|
} = _ref,
|
|
2567
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2567
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
2568
2568
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2569
2569
|
const styleProps = {
|
|
2570
2570
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2585,7 +2585,7 @@ const IconCog = forwardRef((_ref, ref) => {
|
|
|
2585
2585
|
});
|
|
2586
2586
|
IconCog.displayName = 'IconCog';
|
|
2587
2587
|
|
|
2588
|
-
const _excluded$
|
|
2588
|
+
const _excluded$24 = ["testId", "size", "color", "style"];
|
|
2589
2589
|
const IconCommentLines = forwardRef((_ref, ref) => {
|
|
2590
2590
|
let {
|
|
2591
2591
|
testId = 'icon-comment-lines',
|
|
@@ -2593,7 +2593,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
|
|
|
2593
2593
|
color,
|
|
2594
2594
|
style
|
|
2595
2595
|
} = _ref,
|
|
2596
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2596
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
2597
2597
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2598
2598
|
const styleProps = {
|
|
2599
2599
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2619,7 +2619,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
|
|
|
2619
2619
|
});
|
|
2620
2620
|
IconCommentLines.displayName = 'IconCommentLines';
|
|
2621
2621
|
|
|
2622
|
-
const _excluded$
|
|
2622
|
+
const _excluded$23 = ["testId", "size", "color", "style"];
|
|
2623
2623
|
const IconComment = forwardRef((_ref, ref) => {
|
|
2624
2624
|
let {
|
|
2625
2625
|
testId = 'icon-comment',
|
|
@@ -2627,7 +2627,7 @@ const IconComment = forwardRef((_ref, ref) => {
|
|
|
2627
2627
|
color,
|
|
2628
2628
|
style
|
|
2629
2629
|
} = _ref,
|
|
2630
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2630
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
2631
2631
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2632
2632
|
const styleProps = {
|
|
2633
2633
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2650,7 +2650,7 @@ const IconComment = forwardRef((_ref, ref) => {
|
|
|
2650
2650
|
});
|
|
2651
2651
|
IconComment.displayName = 'IconComment';
|
|
2652
2652
|
|
|
2653
|
-
const _excluded$
|
|
2653
|
+
const _excluded$22 = ["testId", "size", "color", "style"];
|
|
2654
2654
|
const IconCopy = forwardRef((_ref, ref) => {
|
|
2655
2655
|
let {
|
|
2656
2656
|
testId = 'icon-copy',
|
|
@@ -2658,7 +2658,7 @@ const IconCopy = forwardRef((_ref, ref) => {
|
|
|
2658
2658
|
color,
|
|
2659
2659
|
style
|
|
2660
2660
|
} = _ref,
|
|
2661
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2661
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
2662
2662
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2663
2663
|
const styleProps = {
|
|
2664
2664
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2686,7 +2686,7 @@ const IconCopy = forwardRef((_ref, ref) => {
|
|
|
2686
2686
|
});
|
|
2687
2687
|
IconCopy.displayName = 'IconCopy';
|
|
2688
2688
|
|
|
2689
|
-
const _excluded$
|
|
2689
|
+
const _excluded$21 = ["testId", "size", "color", "style"];
|
|
2690
2690
|
const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
2691
2691
|
let {
|
|
2692
2692
|
testId = 'icon-credit-card-plus',
|
|
@@ -2694,7 +2694,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
|
2694
2694
|
color,
|
|
2695
2695
|
style
|
|
2696
2696
|
} = _ref,
|
|
2697
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2697
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
2698
2698
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2699
2699
|
const styleProps = {
|
|
2700
2700
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2724,7 +2724,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
|
2724
2724
|
});
|
|
2725
2725
|
IconCreditCardPlus.displayName = 'IconCreditCardPlus';
|
|
2726
2726
|
|
|
2727
|
-
const _excluded$
|
|
2727
|
+
const _excluded$20 = ["testId", "size", "color", "style"];
|
|
2728
2728
|
const IconCreditCard = forwardRef((_ref, ref) => {
|
|
2729
2729
|
let {
|
|
2730
2730
|
testId = 'icon-credit-card',
|
|
@@ -2732,7 +2732,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
|
|
|
2732
2732
|
color,
|
|
2733
2733
|
style
|
|
2734
2734
|
} = _ref,
|
|
2735
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2735
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
2736
2736
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2737
2737
|
const styleProps = {
|
|
2738
2738
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2760,7 +2760,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
|
|
|
2760
2760
|
});
|
|
2761
2761
|
IconCreditCard.displayName = 'IconCreditCard';
|
|
2762
2762
|
|
|
2763
|
-
const _excluded$
|
|
2763
|
+
const _excluded$1$ = ["testId", "size", "color", "style"];
|
|
2764
2764
|
const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
2765
2765
|
let {
|
|
2766
2766
|
testId = 'icon-decent-monochromatic',
|
|
@@ -2768,7 +2768,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
|
2768
2768
|
color,
|
|
2769
2769
|
style
|
|
2770
2770
|
} = _ref,
|
|
2771
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2771
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
2772
2772
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2773
2773
|
const styleProps = {
|
|
2774
2774
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2811,7 +2811,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
|
2811
2811
|
});
|
|
2812
2812
|
IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
|
|
2813
2813
|
|
|
2814
|
-
const _excluded$
|
|
2814
|
+
const _excluded$1_ = ["testId", "size", "color", "style"];
|
|
2815
2815
|
const IconDecent = forwardRef((_ref, ref) => {
|
|
2816
2816
|
let {
|
|
2817
2817
|
testId = 'icon-decent',
|
|
@@ -2819,7 +2819,7 @@ const IconDecent = forwardRef((_ref, ref) => {
|
|
|
2819
2819
|
color,
|
|
2820
2820
|
style
|
|
2821
2821
|
} = _ref,
|
|
2822
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2822
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
2823
2823
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2824
2824
|
const styleProps = {
|
|
2825
2825
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2850,7 +2850,7 @@ const IconDecent = forwardRef((_ref, ref) => {
|
|
|
2850
2850
|
});
|
|
2851
2851
|
IconDecent.displayName = 'IconDecent';
|
|
2852
2852
|
|
|
2853
|
-
const _excluded$
|
|
2853
|
+
const _excluded$1Z = ["testId", "size", "color", "style"];
|
|
2854
2854
|
const IconDownload = forwardRef((_ref, ref) => {
|
|
2855
2855
|
let {
|
|
2856
2856
|
testId = 'icon-download',
|
|
@@ -2858,7 +2858,7 @@ const IconDownload = forwardRef((_ref, ref) => {
|
|
|
2858
2858
|
color,
|
|
2859
2859
|
style
|
|
2860
2860
|
} = _ref,
|
|
2861
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2861
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
2862
2862
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2863
2863
|
const styleProps = {
|
|
2864
2864
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2881,7 +2881,7 @@ const IconDownload = forwardRef((_ref, ref) => {
|
|
|
2881
2881
|
});
|
|
2882
2882
|
IconDownload.displayName = 'IconDownload';
|
|
2883
2883
|
|
|
2884
|
-
const _excluded$
|
|
2884
|
+
const _excluded$1Y = ["testId", "size", "color", "style"];
|
|
2885
2885
|
const IconEdit = forwardRef((_ref, ref) => {
|
|
2886
2886
|
let {
|
|
2887
2887
|
testId = 'icon-edit',
|
|
@@ -2889,7 +2889,7 @@ const IconEdit = forwardRef((_ref, ref) => {
|
|
|
2889
2889
|
color,
|
|
2890
2890
|
style
|
|
2891
2891
|
} = _ref,
|
|
2892
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2892
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
2893
2893
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2894
2894
|
const styleProps = {
|
|
2895
2895
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2910,7 +2910,7 @@ const IconEdit = forwardRef((_ref, ref) => {
|
|
|
2910
2910
|
});
|
|
2911
2911
|
IconEdit.displayName = 'IconEdit';
|
|
2912
2912
|
|
|
2913
|
-
const _excluded$
|
|
2913
|
+
const _excluded$1X = ["testId", "size", "color", "style"];
|
|
2914
2914
|
const IconEllipsisV = forwardRef((_ref, ref) => {
|
|
2915
2915
|
let {
|
|
2916
2916
|
testId = 'icon-ellipsis-v',
|
|
@@ -2918,7 +2918,7 @@ const IconEllipsisV = forwardRef((_ref, ref) => {
|
|
|
2918
2918
|
color,
|
|
2919
2919
|
style
|
|
2920
2920
|
} = _ref,
|
|
2921
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2921
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
2922
2922
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2923
2923
|
const styleProps = {
|
|
2924
2924
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2941,7 +2941,7 @@ const IconEllipsisV = forwardRef((_ref, ref) => {
|
|
|
2941
2941
|
});
|
|
2942
2942
|
IconEllipsisV.displayName = 'IconEllipsisV';
|
|
2943
2943
|
|
|
2944
|
-
const _excluded$
|
|
2944
|
+
const _excluded$1W = ["testId", "size", "color", "style"];
|
|
2945
2945
|
const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
|
|
2946
2946
|
let {
|
|
2947
2947
|
testId = 'icon-envelope-open-dollar',
|
|
@@ -2949,7 +2949,7 @@ const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
|
|
|
2949
2949
|
color,
|
|
2950
2950
|
style
|
|
2951
2951
|
} = _ref,
|
|
2952
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2952
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
2953
2953
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2954
2954
|
const styleProps = {
|
|
2955
2955
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2977,7 +2977,7 @@ const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
|
|
|
2977
2977
|
});
|
|
2978
2978
|
IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
|
|
2979
2979
|
|
|
2980
|
-
const _excluded$
|
|
2980
|
+
const _excluded$1V = ["testId", "size", "color", "style"];
|
|
2981
2981
|
const IconEnvelope = forwardRef((_ref, ref) => {
|
|
2982
2982
|
let {
|
|
2983
2983
|
testId = 'icon-envelope',
|
|
@@ -2985,7 +2985,7 @@ const IconEnvelope = forwardRef((_ref, ref) => {
|
|
|
2985
2985
|
color,
|
|
2986
2986
|
style
|
|
2987
2987
|
} = _ref,
|
|
2988
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2988
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
2989
2989
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2990
2990
|
const styleProps = {
|
|
2991
2991
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3006,7 +3006,7 @@ const IconEnvelope = forwardRef((_ref, ref) => {
|
|
|
3006
3006
|
});
|
|
3007
3007
|
IconEnvelope.displayName = 'IconEnvelope';
|
|
3008
3008
|
|
|
3009
|
-
const _excluded$
|
|
3009
|
+
const _excluded$1U = ["testId", "size", "color", "style"];
|
|
3010
3010
|
const IconExclaimationTriangle = forwardRef((_ref, ref) => {
|
|
3011
3011
|
let {
|
|
3012
3012
|
testId = 'icon-exclaimation-triangle',
|
|
@@ -3014,7 +3014,7 @@ const IconExclaimationTriangle = forwardRef((_ref, ref) => {
|
|
|
3014
3014
|
color,
|
|
3015
3015
|
style
|
|
3016
3016
|
} = _ref,
|
|
3017
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3017
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
3018
3018
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3019
3019
|
const styleProps = {
|
|
3020
3020
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3037,7 +3037,7 @@ const IconExclaimationTriangle = forwardRef((_ref, ref) => {
|
|
|
3037
3037
|
});
|
|
3038
3038
|
IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
|
|
3039
3039
|
|
|
3040
|
-
const _excluded$
|
|
3040
|
+
const _excluded$1T = ["testId", "size", "color", "style"];
|
|
3041
3041
|
const IconExclaimation = forwardRef((_ref, ref) => {
|
|
3042
3042
|
let {
|
|
3043
3043
|
testId = 'icon-exclaimation',
|
|
@@ -3045,7 +3045,7 @@ const IconExclaimation = forwardRef((_ref, ref) => {
|
|
|
3045
3045
|
color,
|
|
3046
3046
|
style
|
|
3047
3047
|
} = _ref,
|
|
3048
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3048
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
3049
3049
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3050
3050
|
const styleProps = {
|
|
3051
3051
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3066,7 +3066,7 @@ const IconExclaimation = forwardRef((_ref, ref) => {
|
|
|
3066
3066
|
});
|
|
3067
3067
|
IconExclaimation.displayName = 'IconExclaimation';
|
|
3068
3068
|
|
|
3069
|
-
const _excluded$
|
|
3069
|
+
const _excluded$1S = ["testId", "size", "color", "style"];
|
|
3070
3070
|
const IconExpand = forwardRef((_ref, ref) => {
|
|
3071
3071
|
let {
|
|
3072
3072
|
testId = 'icon-expand',
|
|
@@ -3074,7 +3074,7 @@ const IconExpand = forwardRef((_ref, ref) => {
|
|
|
3074
3074
|
color,
|
|
3075
3075
|
style
|
|
3076
3076
|
} = _ref,
|
|
3077
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3077
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
3078
3078
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3079
3079
|
const styleProps = {
|
|
3080
3080
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3095,7 +3095,7 @@ const IconExpand = forwardRef((_ref, ref) => {
|
|
|
3095
3095
|
});
|
|
3096
3096
|
IconExpand.displayName = 'IconExpand';
|
|
3097
3097
|
|
|
3098
|
-
const _excluded$
|
|
3098
|
+
const _excluded$1R = ["testId", "size", "color", "style"];
|
|
3099
3099
|
const IconExternalLink = forwardRef((_ref, ref) => {
|
|
3100
3100
|
let {
|
|
3101
3101
|
testId = 'icon-external-link',
|
|
@@ -3103,7 +3103,7 @@ const IconExternalLink = forwardRef((_ref, ref) => {
|
|
|
3103
3103
|
color,
|
|
3104
3104
|
style
|
|
3105
3105
|
} = _ref,
|
|
3106
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3106
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
3107
3107
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3108
3108
|
const styleProps = {
|
|
3109
3109
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3126,7 +3126,7 @@ const IconExternalLink = forwardRef((_ref, ref) => {
|
|
|
3126
3126
|
});
|
|
3127
3127
|
IconExternalLink.displayName = 'IconExternalLink';
|
|
3128
3128
|
|
|
3129
|
-
const _excluded$
|
|
3129
|
+
const _excluded$1Q = ["testId", "size", "color", "style"];
|
|
3130
3130
|
const IconEyeSlash = forwardRef((_ref, ref) => {
|
|
3131
3131
|
let {
|
|
3132
3132
|
testId = 'icon-eye-slash',
|
|
@@ -3134,7 +3134,7 @@ const IconEyeSlash = forwardRef((_ref, ref) => {
|
|
|
3134
3134
|
color,
|
|
3135
3135
|
style
|
|
3136
3136
|
} = _ref,
|
|
3137
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3137
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
3138
3138
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3139
3139
|
const styleProps = {
|
|
3140
3140
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3169,7 +3169,7 @@ const IconEyeSlash = forwardRef((_ref, ref) => {
|
|
|
3169
3169
|
});
|
|
3170
3170
|
IconEyeSlash.displayName = 'IconEyeSlash';
|
|
3171
3171
|
|
|
3172
|
-
const _excluded$
|
|
3172
|
+
const _excluded$1P = ["testId", "size", "color", "style"];
|
|
3173
3173
|
const IconEye = forwardRef((_ref, ref) => {
|
|
3174
3174
|
let {
|
|
3175
3175
|
testId = 'icon-eye',
|
|
@@ -3177,7 +3177,7 @@ const IconEye = forwardRef((_ref, ref) => {
|
|
|
3177
3177
|
color,
|
|
3178
3178
|
style
|
|
3179
3179
|
} = _ref,
|
|
3180
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3180
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
3181
3181
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3182
3182
|
const styleProps = {
|
|
3183
3183
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3205,7 +3205,7 @@ const IconEye = forwardRef((_ref, ref) => {
|
|
|
3205
3205
|
});
|
|
3206
3206
|
IconEye.displayName = 'IconEye';
|
|
3207
3207
|
|
|
3208
|
-
const _excluded$
|
|
3208
|
+
const _excluded$1O = ["testId", "size", "color", "style"];
|
|
3209
3209
|
const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
|
|
3210
3210
|
let {
|
|
3211
3211
|
testId = 'icon-face-smile-relaxed',
|
|
@@ -3213,7 +3213,7 @@ const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
|
|
|
3213
3213
|
color,
|
|
3214
3214
|
style
|
|
3215
3215
|
} = _ref,
|
|
3216
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3216
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
3217
3217
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3218
3218
|
const styleProps = {
|
|
3219
3219
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3241,7 +3241,7 @@ const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
|
|
|
3241
3241
|
});
|
|
3242
3242
|
IconFaceSmileRelaxed.displayName = 'IconFaceSmileRelaxed';
|
|
3243
3243
|
|
|
3244
|
-
const _excluded$
|
|
3244
|
+
const _excluded$1N = ["testId", "size", "color", "style"];
|
|
3245
3245
|
const IconFilePdf = forwardRef((_ref, ref) => {
|
|
3246
3246
|
let {
|
|
3247
3247
|
testId = 'icon-file-pdf',
|
|
@@ -3249,7 +3249,7 @@ const IconFilePdf = forwardRef((_ref, ref) => {
|
|
|
3249
3249
|
color,
|
|
3250
3250
|
style
|
|
3251
3251
|
} = _ref,
|
|
3252
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3252
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
3253
3253
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3254
3254
|
const styleProps = {
|
|
3255
3255
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3277,7 +3277,7 @@ const IconFilePdf = forwardRef((_ref, ref) => {
|
|
|
3277
3277
|
});
|
|
3278
3278
|
IconFilePdf.displayName = 'IconFilePdf';
|
|
3279
3279
|
|
|
3280
|
-
const _excluded$
|
|
3280
|
+
const _excluded$1M = ["testId", "size", "color", "style"];
|
|
3281
3281
|
const IconFile = forwardRef((_ref, ref) => {
|
|
3282
3282
|
let {
|
|
3283
3283
|
testId = 'icon-file',
|
|
@@ -3285,7 +3285,7 @@ const IconFile = forwardRef((_ref, ref) => {
|
|
|
3285
3285
|
color,
|
|
3286
3286
|
style
|
|
3287
3287
|
} = _ref,
|
|
3288
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3288
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
3289
3289
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3290
3290
|
const styleProps = {
|
|
3291
3291
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3313,7 +3313,7 @@ const IconFile = forwardRef((_ref, ref) => {
|
|
|
3313
3313
|
});
|
|
3314
3314
|
IconFile.displayName = 'IconFile';
|
|
3315
3315
|
|
|
3316
|
-
const _excluded$
|
|
3316
|
+
const _excluded$1L = ["testId", "size", "color", "style"];
|
|
3317
3317
|
const IconFlag = forwardRef((_ref, ref) => {
|
|
3318
3318
|
let {
|
|
3319
3319
|
testId = 'icon-flag',
|
|
@@ -3321,7 +3321,7 @@ const IconFlag = forwardRef((_ref, ref) => {
|
|
|
3321
3321
|
color,
|
|
3322
3322
|
style
|
|
3323
3323
|
} = _ref,
|
|
3324
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3324
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
3325
3325
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3326
3326
|
const styleProps = {
|
|
3327
3327
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3349,7 +3349,7 @@ const IconFlag = forwardRef((_ref, ref) => {
|
|
|
3349
3349
|
});
|
|
3350
3350
|
IconFlag.displayName = 'IconFlag';
|
|
3351
3351
|
|
|
3352
|
-
const _excluded$
|
|
3352
|
+
const _excluded$1K = ["testId", "size", "color", "style"];
|
|
3353
3353
|
const IconFourDotsCircle = forwardRef((_ref, ref) => {
|
|
3354
3354
|
let {
|
|
3355
3355
|
testId = 'icon-four-dots-circle',
|
|
@@ -3357,7 +3357,7 @@ const IconFourDotsCircle = forwardRef((_ref, ref) => {
|
|
|
3357
3357
|
color,
|
|
3358
3358
|
style
|
|
3359
3359
|
} = _ref,
|
|
3360
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3360
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
3361
3361
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3362
3362
|
const styleProps = {
|
|
3363
3363
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3380,7 +3380,7 @@ const IconFourDotsCircle = forwardRef((_ref, ref) => {
|
|
|
3380
3380
|
});
|
|
3381
3381
|
IconFourDotsCircle.displayName = 'IconFourDotsCircle';
|
|
3382
3382
|
|
|
3383
|
-
const _excluded$
|
|
3383
|
+
const _excluded$1J = ["testId", "size", "color", "style"];
|
|
3384
3384
|
const IconFourSquares = forwardRef((_ref, ref) => {
|
|
3385
3385
|
let {
|
|
3386
3386
|
testId = 'icon-four-squares',
|
|
@@ -3388,7 +3388,7 @@ const IconFourSquares = forwardRef((_ref, ref) => {
|
|
|
3388
3388
|
color,
|
|
3389
3389
|
style
|
|
3390
3390
|
} = _ref,
|
|
3391
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3391
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
3392
3392
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3393
3393
|
const styleProps = {
|
|
3394
3394
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3434,7 +3434,7 @@ const IconFourSquares = forwardRef((_ref, ref) => {
|
|
|
3434
3434
|
});
|
|
3435
3435
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
3436
3436
|
|
|
3437
|
-
const _excluded$
|
|
3437
|
+
const _excluded$1I = ["testId", "size", "color", "style"];
|
|
3438
3438
|
const IconGavel = forwardRef((_ref, ref) => {
|
|
3439
3439
|
let {
|
|
3440
3440
|
testId = 'icon-gavel',
|
|
@@ -3442,7 +3442,7 @@ const IconGavel = forwardRef((_ref, ref) => {
|
|
|
3442
3442
|
color,
|
|
3443
3443
|
style
|
|
3444
3444
|
} = _ref,
|
|
3445
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3445
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
3446
3446
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3447
3447
|
const styleProps = {
|
|
3448
3448
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3463,7 +3463,7 @@ const IconGavel = forwardRef((_ref, ref) => {
|
|
|
3463
3463
|
});
|
|
3464
3464
|
IconGavel.displayName = 'IconGavel';
|
|
3465
3465
|
|
|
3466
|
-
const _excluded$
|
|
3466
|
+
const _excluded$1H = ["testId", "size", "color", "style"];
|
|
3467
3467
|
const IconGif = forwardRef((_ref, ref) => {
|
|
3468
3468
|
let {
|
|
3469
3469
|
testId = 'icon-gif',
|
|
@@ -3471,7 +3471,7 @@ const IconGif = forwardRef((_ref, ref) => {
|
|
|
3471
3471
|
color,
|
|
3472
3472
|
style
|
|
3473
3473
|
} = _ref,
|
|
3474
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3474
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
3475
3475
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3476
3476
|
const styleProps = {
|
|
3477
3477
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3496,7 +3496,7 @@ const IconGif = forwardRef((_ref, ref) => {
|
|
|
3496
3496
|
});
|
|
3497
3497
|
IconGif.displayName = 'IconGif';
|
|
3498
3498
|
|
|
3499
|
-
const _excluded$
|
|
3499
|
+
const _excluded$1G = ["testId", "size", "color", "style"];
|
|
3500
3500
|
const IconGift = forwardRef((_ref, ref) => {
|
|
3501
3501
|
let {
|
|
3502
3502
|
testId = 'icon-gift',
|
|
@@ -3504,7 +3504,7 @@ const IconGift = forwardRef((_ref, ref) => {
|
|
|
3504
3504
|
color,
|
|
3505
3505
|
style
|
|
3506
3506
|
} = _ref,
|
|
3507
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3507
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
3508
3508
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3509
3509
|
const styleProps = {
|
|
3510
3510
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3525,7 +3525,7 @@ const IconGift = forwardRef((_ref, ref) => {
|
|
|
3525
3525
|
});
|
|
3526
3526
|
IconGift.displayName = 'IconGift';
|
|
3527
3527
|
|
|
3528
|
-
const _excluded$
|
|
3528
|
+
const _excluded$1F = ["testId", "size", "color", "style"];
|
|
3529
3529
|
const IconGoodMonochromatic = forwardRef((_ref, ref) => {
|
|
3530
3530
|
let {
|
|
3531
3531
|
testId = 'icon-good-monochromatic',
|
|
@@ -3533,7 +3533,7 @@ const IconGoodMonochromatic = forwardRef((_ref, ref) => {
|
|
|
3533
3533
|
color,
|
|
3534
3534
|
style
|
|
3535
3535
|
} = _ref,
|
|
3536
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3536
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
3537
3537
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3538
3538
|
const styleProps = {
|
|
3539
3539
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3572,7 +3572,7 @@ const IconGoodMonochromatic = forwardRef((_ref, ref) => {
|
|
|
3572
3572
|
});
|
|
3573
3573
|
IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
|
|
3574
3574
|
|
|
3575
|
-
const _excluded$
|
|
3575
|
+
const _excluded$1E = ["testId", "size", "color", "style"];
|
|
3576
3576
|
const IconGood = forwardRef((_ref, ref) => {
|
|
3577
3577
|
let {
|
|
3578
3578
|
testId = 'icon-good',
|
|
@@ -3580,7 +3580,7 @@ const IconGood = forwardRef((_ref, ref) => {
|
|
|
3580
3580
|
color,
|
|
3581
3581
|
style
|
|
3582
3582
|
} = _ref,
|
|
3583
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3583
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
3584
3584
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3585
3585
|
const styleProps = {
|
|
3586
3586
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3607,7 +3607,7 @@ const IconGood = forwardRef((_ref, ref) => {
|
|
|
3607
3607
|
});
|
|
3608
3608
|
IconGood.displayName = 'IconGood';
|
|
3609
3609
|
|
|
3610
|
-
const _excluded$
|
|
3610
|
+
const _excluded$1D = ["testId", "size", "color", "style"];
|
|
3611
3611
|
const IconGreatMonochromatic = forwardRef((_ref, ref) => {
|
|
3612
3612
|
let {
|
|
3613
3613
|
testId = 'icon-great-monochromatic',
|
|
@@ -3615,7 +3615,7 @@ const IconGreatMonochromatic = forwardRef((_ref, ref) => {
|
|
|
3615
3615
|
color,
|
|
3616
3616
|
style
|
|
3617
3617
|
} = _ref,
|
|
3618
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3618
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
3619
3619
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3620
3620
|
const styleProps = {
|
|
3621
3621
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3656,7 +3656,7 @@ const IconGreatMonochromatic = forwardRef((_ref, ref) => {
|
|
|
3656
3656
|
});
|
|
3657
3657
|
IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
|
|
3658
3658
|
|
|
3659
|
-
const _excluded$
|
|
3659
|
+
const _excluded$1C = ["testId", "size", "color", "style"];
|
|
3660
3660
|
const IconGreat = forwardRef((_ref, ref) => {
|
|
3661
3661
|
let {
|
|
3662
3662
|
testId = 'icon-great',
|
|
@@ -3664,7 +3664,7 @@ const IconGreat = forwardRef((_ref, ref) => {
|
|
|
3664
3664
|
color,
|
|
3665
3665
|
style
|
|
3666
3666
|
} = _ref,
|
|
3667
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3667
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
3668
3668
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3669
3669
|
const styleProps = {
|
|
3670
3670
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3693,7 +3693,7 @@ const IconGreat = forwardRef((_ref, ref) => {
|
|
|
3693
3693
|
});
|
|
3694
3694
|
IconGreat.displayName = 'IconGreat';
|
|
3695
3695
|
|
|
3696
|
-
const _excluded$
|
|
3696
|
+
const _excluded$1B = ["testId", "size", "color", "style"];
|
|
3697
3697
|
const IconGrinBeam = forwardRef((_ref, ref) => {
|
|
3698
3698
|
let {
|
|
3699
3699
|
testId = 'icon-grin-beam',
|
|
@@ -3701,7 +3701,7 @@ const IconGrinBeam = forwardRef((_ref, ref) => {
|
|
|
3701
3701
|
color,
|
|
3702
3702
|
style
|
|
3703
3703
|
} = _ref,
|
|
3704
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3704
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
3705
3705
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3706
3706
|
const styleProps = {
|
|
3707
3707
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3722,7 +3722,7 @@ const IconGrinBeam = forwardRef((_ref, ref) => {
|
|
|
3722
3722
|
});
|
|
3723
3723
|
IconGrinBeam.displayName = 'IconGrinBeam';
|
|
3724
3724
|
|
|
3725
|
-
const _excluded$
|
|
3725
|
+
const _excluded$1A = ["testId", "size", "color", "style"];
|
|
3726
3726
|
const IconGripVertical = forwardRef((_ref, ref) => {
|
|
3727
3727
|
let {
|
|
3728
3728
|
testId = 'icon-grip-vertical',
|
|
@@ -3730,7 +3730,7 @@ const IconGripVertical = forwardRef((_ref, ref) => {
|
|
|
3730
3730
|
color,
|
|
3731
3731
|
style
|
|
3732
3732
|
} = _ref,
|
|
3733
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3733
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3734
3734
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3735
3735
|
const styleProps = {
|
|
3736
3736
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3778,7 +3778,7 @@ const IconGripVertical = forwardRef((_ref, ref) => {
|
|
|
3778
3778
|
});
|
|
3779
3779
|
IconGripVertical.displayName = 'IconGripVertical';
|
|
3780
3780
|
|
|
3781
|
-
const _excluded$
|
|
3781
|
+
const _excluded$1z = ["testId", "size", "color", "style"];
|
|
3782
3782
|
const IconHandHoldingDollar = forwardRef((_ref, ref) => {
|
|
3783
3783
|
let {
|
|
3784
3784
|
testId = 'icon-hand-holding-dollar',
|
|
@@ -3786,7 +3786,7 @@ const IconHandHoldingDollar = forwardRef((_ref, ref) => {
|
|
|
3786
3786
|
color,
|
|
3787
3787
|
style
|
|
3788
3788
|
} = _ref,
|
|
3789
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3789
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3790
3790
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3791
3791
|
const styleProps = {
|
|
3792
3792
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3814,7 +3814,7 @@ const IconHandHoldingDollar = forwardRef((_ref, ref) => {
|
|
|
3814
3814
|
});
|
|
3815
3815
|
IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
|
|
3816
3816
|
|
|
3817
|
-
const _excluded$
|
|
3817
|
+
const _excluded$1y = ["testId", "size", "color", "style"];
|
|
3818
3818
|
const IconHandPointRight = forwardRef((_ref, ref) => {
|
|
3819
3819
|
let {
|
|
3820
3820
|
testId = 'icon-hand-point-right',
|
|
@@ -3822,7 +3822,7 @@ const IconHandPointRight = forwardRef((_ref, ref) => {
|
|
|
3822
3822
|
color,
|
|
3823
3823
|
style
|
|
3824
3824
|
} = _ref,
|
|
3825
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3825
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3826
3826
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3827
3827
|
const styleProps = {
|
|
3828
3828
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3843,7 +3843,7 @@ const IconHandPointRight = forwardRef((_ref, ref) => {
|
|
|
3843
3843
|
});
|
|
3844
3844
|
IconHandPointRight.displayName = 'IconHandPointRight';
|
|
3845
3845
|
|
|
3846
|
-
const _excluded$
|
|
3846
|
+
const _excluded$1x = ["testId", "size", "color", "style"];
|
|
3847
3847
|
const IconHandshake = forwardRef((_ref, ref) => {
|
|
3848
3848
|
let {
|
|
3849
3849
|
testId = 'icon-handshake',
|
|
@@ -3851,7 +3851,7 @@ const IconHandshake = forwardRef((_ref, ref) => {
|
|
|
3851
3851
|
color,
|
|
3852
3852
|
style
|
|
3853
3853
|
} = _ref,
|
|
3854
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3854
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3855
3855
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3856
3856
|
const styleProps = {
|
|
3857
3857
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3879,7 +3879,7 @@ const IconHandshake = forwardRef((_ref, ref) => {
|
|
|
3879
3879
|
});
|
|
3880
3880
|
IconHandshake.displayName = 'IconHandshake';
|
|
3881
3881
|
|
|
3882
|
-
const _excluded$
|
|
3882
|
+
const _excluded$1w = ["testId", "size", "color", "style"];
|
|
3883
3883
|
const IconHatChef = forwardRef((_ref, ref) => {
|
|
3884
3884
|
let {
|
|
3885
3885
|
testId = 'icon-hat-chef',
|
|
@@ -3887,7 +3887,7 @@ const IconHatChef = forwardRef((_ref, ref) => {
|
|
|
3887
3887
|
color,
|
|
3888
3888
|
style
|
|
3889
3889
|
} = _ref,
|
|
3890
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3890
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3891
3891
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3892
3892
|
const styleProps = {
|
|
3893
3893
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3908,7 +3908,7 @@ const IconHatChef = forwardRef((_ref, ref) => {
|
|
|
3908
3908
|
});
|
|
3909
3909
|
IconHatChef.displayName = 'IconHatChef';
|
|
3910
3910
|
|
|
3911
|
-
const _excluded$
|
|
3911
|
+
const _excluded$1v = ["testId", "size", "color", "style"];
|
|
3912
3912
|
const IconImage = forwardRef((_ref, ref) => {
|
|
3913
3913
|
let {
|
|
3914
3914
|
testId = 'icon-image',
|
|
@@ -3916,7 +3916,7 @@ const IconImage = forwardRef((_ref, ref) => {
|
|
|
3916
3916
|
color,
|
|
3917
3917
|
style
|
|
3918
3918
|
} = _ref,
|
|
3919
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3919
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3920
3920
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3921
3921
|
const styleProps = {
|
|
3922
3922
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3944,7 +3944,7 @@ const IconImage = forwardRef((_ref, ref) => {
|
|
|
3944
3944
|
});
|
|
3945
3945
|
IconImage.displayName = 'IconImage';
|
|
3946
3946
|
|
|
3947
|
-
const _excluded$
|
|
3947
|
+
const _excluded$1u = ["testId", "size", "color", "style"];
|
|
3948
3948
|
const IconIslandTropical = forwardRef((_ref, ref) => {
|
|
3949
3949
|
let {
|
|
3950
3950
|
testId = 'icon-island-tropical',
|
|
@@ -3952,7 +3952,7 @@ const IconIslandTropical = forwardRef((_ref, ref) => {
|
|
|
3952
3952
|
color,
|
|
3953
3953
|
style
|
|
3954
3954
|
} = _ref,
|
|
3955
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3955
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3956
3956
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3957
3957
|
const styleProps = {
|
|
3958
3958
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3975,7 +3975,7 @@ const IconIslandTropical = forwardRef((_ref, ref) => {
|
|
|
3975
3975
|
});
|
|
3976
3976
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
3977
3977
|
|
|
3978
|
-
const _excluded$
|
|
3978
|
+
const _excluded$1t = ["testId", "size", "color", "style"];
|
|
3979
3979
|
const IconItalic = forwardRef((_ref, ref) => {
|
|
3980
3980
|
let {
|
|
3981
3981
|
testId = 'icon-italic',
|
|
@@ -3983,7 +3983,7 @@ const IconItalic = forwardRef((_ref, ref) => {
|
|
|
3983
3983
|
color,
|
|
3984
3984
|
style
|
|
3985
3985
|
} = _ref,
|
|
3986
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3986
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3987
3987
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3988
3988
|
const styleProps = {
|
|
3989
3989
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4004,7 +4004,7 @@ const IconItalic = forwardRef((_ref, ref) => {
|
|
|
4004
4004
|
});
|
|
4005
4005
|
IconItalic.displayName = 'IconItalic';
|
|
4006
4006
|
|
|
4007
|
-
const _excluded$
|
|
4007
|
+
const _excluded$1s = ["testId", "size", "color", "style"];
|
|
4008
4008
|
const IconLaptopSearch = forwardRef((_ref, ref) => {
|
|
4009
4009
|
let {
|
|
4010
4010
|
testId = 'icon-laptop-search',
|
|
@@ -4012,7 +4012,7 @@ const IconLaptopSearch = forwardRef((_ref, ref) => {
|
|
|
4012
4012
|
color,
|
|
4013
4013
|
style
|
|
4014
4014
|
} = _ref,
|
|
4015
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4015
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
4016
4016
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4017
4017
|
const styleProps = {
|
|
4018
4018
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4042,7 +4042,7 @@ const IconLaptopSearch = forwardRef((_ref, ref) => {
|
|
|
4042
4042
|
});
|
|
4043
4043
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
4044
4044
|
|
|
4045
|
-
const _excluded$
|
|
4045
|
+
const _excluded$1r = ["testId", "size", "color", "style"];
|
|
4046
4046
|
const IconLink = forwardRef((_ref, ref) => {
|
|
4047
4047
|
let {
|
|
4048
4048
|
testId = 'icon-link',
|
|
@@ -4050,7 +4050,7 @@ const IconLink = forwardRef((_ref, ref) => {
|
|
|
4050
4050
|
color,
|
|
4051
4051
|
style
|
|
4052
4052
|
} = _ref,
|
|
4053
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4053
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
4054
4054
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4055
4055
|
const styleProps = {
|
|
4056
4056
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4078,7 +4078,7 @@ const IconLink = forwardRef((_ref, ref) => {
|
|
|
4078
4078
|
});
|
|
4079
4079
|
IconLink.displayName = 'IconLink';
|
|
4080
4080
|
|
|
4081
|
-
const _excluded$
|
|
4081
|
+
const _excluded$1q = ["testId", "size", "color", "style"];
|
|
4082
4082
|
const IconListOI = forwardRef((_ref, ref) => {
|
|
4083
4083
|
let {
|
|
4084
4084
|
testId = 'icon-list-o-i',
|
|
@@ -4086,7 +4086,7 @@ const IconListOI = forwardRef((_ref, ref) => {
|
|
|
4086
4086
|
color,
|
|
4087
4087
|
style
|
|
4088
4088
|
} = _ref,
|
|
4089
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4089
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
4090
4090
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4091
4091
|
const styleProps = {
|
|
4092
4092
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4114,7 +4114,7 @@ const IconListOI = forwardRef((_ref, ref) => {
|
|
|
4114
4114
|
});
|
|
4115
4115
|
IconListOI.displayName = 'IconListOI';
|
|
4116
4116
|
|
|
4117
|
-
const _excluded$
|
|
4117
|
+
const _excluded$1p = ["testId", "size", "color", "style"];
|
|
4118
4118
|
const IconList = forwardRef((_ref, ref) => {
|
|
4119
4119
|
let {
|
|
4120
4120
|
testId = 'icon-list',
|
|
@@ -4122,7 +4122,7 @@ const IconList = forwardRef((_ref, ref) => {
|
|
|
4122
4122
|
color,
|
|
4123
4123
|
style
|
|
4124
4124
|
} = _ref,
|
|
4125
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4125
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
4126
4126
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4127
4127
|
const styleProps = {
|
|
4128
4128
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4143,7 +4143,7 @@ const IconList = forwardRef((_ref, ref) => {
|
|
|
4143
4143
|
});
|
|
4144
4144
|
IconList.displayName = 'IconList';
|
|
4145
4145
|
|
|
4146
|
-
const _excluded$
|
|
4146
|
+
const _excluded$1o = ["testId", "size", "color", "style"];
|
|
4147
4147
|
const IconLock = forwardRef((_ref, ref) => {
|
|
4148
4148
|
let {
|
|
4149
4149
|
testId = 'icon-lock',
|
|
@@ -4151,7 +4151,7 @@ const IconLock = forwardRef((_ref, ref) => {
|
|
|
4151
4151
|
color,
|
|
4152
4152
|
style
|
|
4153
4153
|
} = _ref,
|
|
4154
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4154
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
4155
4155
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4156
4156
|
const styleProps = {
|
|
4157
4157
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4172,7 +4172,7 @@ const IconLock = forwardRef((_ref, ref) => {
|
|
|
4172
4172
|
});
|
|
4173
4173
|
IconLock.displayName = 'IconLock';
|
|
4174
4174
|
|
|
4175
|
-
const _excluded$
|
|
4175
|
+
const _excluded$1n = ["testId", "size", "color", "style"];
|
|
4176
4176
|
const IconMagicSolid = forwardRef((_ref, ref) => {
|
|
4177
4177
|
let {
|
|
4178
4178
|
testId = 'icon-magic-solid',
|
|
@@ -4180,7 +4180,7 @@ const IconMagicSolid = forwardRef((_ref, ref) => {
|
|
|
4180
4180
|
color,
|
|
4181
4181
|
style
|
|
4182
4182
|
} = _ref,
|
|
4183
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4183
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
4184
4184
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4185
4185
|
const styleProps = {
|
|
4186
4186
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4203,7 +4203,7 @@ const IconMagicSolid = forwardRef((_ref, ref) => {
|
|
|
4203
4203
|
});
|
|
4204
4204
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
4205
4205
|
|
|
4206
|
-
const _excluded$
|
|
4206
|
+
const _excluded$1m = ["testId", "size", "color", "style"];
|
|
4207
4207
|
const IconMapMarker = forwardRef((_ref, ref) => {
|
|
4208
4208
|
let {
|
|
4209
4209
|
testId = 'icon-map-marker',
|
|
@@ -4211,7 +4211,7 @@ const IconMapMarker = forwardRef((_ref, ref) => {
|
|
|
4211
4211
|
color,
|
|
4212
4212
|
style
|
|
4213
4213
|
} = _ref,
|
|
4214
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4214
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
4215
4215
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4216
4216
|
const styleProps = {
|
|
4217
4217
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4234,7 +4234,7 @@ const IconMapMarker = forwardRef((_ref, ref) => {
|
|
|
4234
4234
|
});
|
|
4235
4235
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
4236
4236
|
|
|
4237
|
-
const _excluded$
|
|
4237
|
+
const _excluded$1l = ["testId", "size", "color", "style"];
|
|
4238
4238
|
const IconMedal = forwardRef((_ref, ref) => {
|
|
4239
4239
|
let {
|
|
4240
4240
|
testId = 'icon-medal',
|
|
@@ -4242,7 +4242,7 @@ const IconMedal = forwardRef((_ref, ref) => {
|
|
|
4242
4242
|
color,
|
|
4243
4243
|
style
|
|
4244
4244
|
} = _ref,
|
|
4245
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4245
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
4246
4246
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4247
4247
|
const styleProps = {
|
|
4248
4248
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4270,7 +4270,7 @@ const IconMedal = forwardRef((_ref, ref) => {
|
|
|
4270
4270
|
});
|
|
4271
4271
|
IconMedal.displayName = 'IconMedal';
|
|
4272
4272
|
|
|
4273
|
-
const _excluded$
|
|
4273
|
+
const _excluded$1k = ["testId", "size", "color", "style"];
|
|
4274
4274
|
const IconMegaphone = forwardRef((_ref, ref) => {
|
|
4275
4275
|
let {
|
|
4276
4276
|
testId = 'icon-megaphone',
|
|
@@ -4278,7 +4278,7 @@ const IconMegaphone = forwardRef((_ref, ref) => {
|
|
|
4278
4278
|
color,
|
|
4279
4279
|
style
|
|
4280
4280
|
} = _ref,
|
|
4281
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4281
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
|
|
4282
4282
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4283
4283
|
const styleProps = {
|
|
4284
4284
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4301,7 +4301,7 @@ const IconMegaphone = forwardRef((_ref, ref) => {
|
|
|
4301
4301
|
});
|
|
4302
4302
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
4303
4303
|
|
|
4304
|
-
const _excluded$
|
|
4304
|
+
const _excluded$1j = ["testId", "size", "color", "style"];
|
|
4305
4305
|
const IconMessages = forwardRef((_ref, ref) => {
|
|
4306
4306
|
let {
|
|
4307
4307
|
testId = 'icon-messages',
|
|
@@ -4309,7 +4309,7 @@ const IconMessages = forwardRef((_ref, ref) => {
|
|
|
4309
4309
|
color,
|
|
4310
4310
|
style
|
|
4311
4311
|
} = _ref,
|
|
4312
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4312
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
|
|
4313
4313
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4314
4314
|
const styleProps = {
|
|
4315
4315
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4330,7 +4330,7 @@ const IconMessages = forwardRef((_ref, ref) => {
|
|
|
4330
4330
|
});
|
|
4331
4331
|
IconMessages.displayName = 'IconMessages';
|
|
4332
4332
|
|
|
4333
|
-
const _excluded$
|
|
4333
|
+
const _excluded$1i = ["testId", "size", "color", "style"];
|
|
4334
4334
|
const IconMinusCircle = forwardRef((_ref, ref) => {
|
|
4335
4335
|
let {
|
|
4336
4336
|
testId = 'icon-minus-circle',
|
|
@@ -4338,7 +4338,7 @@ const IconMinusCircle = forwardRef((_ref, ref) => {
|
|
|
4338
4338
|
color,
|
|
4339
4339
|
style
|
|
4340
4340
|
} = _ref,
|
|
4341
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4341
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
|
|
4342
4342
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4343
4343
|
const styleProps = {
|
|
4344
4344
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4359,7 +4359,7 @@ const IconMinusCircle = forwardRef((_ref, ref) => {
|
|
|
4359
4359
|
});
|
|
4360
4360
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
4361
4361
|
|
|
4362
|
-
const _excluded$
|
|
4362
|
+
const _excluded$1h = ["testId", "size", "color", "style"];
|
|
4363
4363
|
const IconMinus = forwardRef((_ref, ref) => {
|
|
4364
4364
|
let {
|
|
4365
4365
|
testId = 'icon-minus',
|
|
@@ -4367,7 +4367,7 @@ const IconMinus = forwardRef((_ref, ref) => {
|
|
|
4367
4367
|
color,
|
|
4368
4368
|
style
|
|
4369
4369
|
} = _ref,
|
|
4370
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4370
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
4371
4371
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4372
4372
|
const styleProps = {
|
|
4373
4373
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4388,7 +4388,7 @@ const IconMinus = forwardRef((_ref, ref) => {
|
|
|
4388
4388
|
});
|
|
4389
4389
|
IconMinus.displayName = 'IconMinus';
|
|
4390
4390
|
|
|
4391
|
-
const _excluded$
|
|
4391
|
+
const _excluded$1g = ["testId", "size", "color", "style"];
|
|
4392
4392
|
const IconMoneyBill = forwardRef((_ref, ref) => {
|
|
4393
4393
|
let {
|
|
4394
4394
|
testId = 'icon-money-bill',
|
|
@@ -4396,7 +4396,7 @@ const IconMoneyBill = forwardRef((_ref, ref) => {
|
|
|
4396
4396
|
color,
|
|
4397
4397
|
style
|
|
4398
4398
|
} = _ref,
|
|
4399
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4399
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
|
|
4400
4400
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4401
4401
|
const styleProps = {
|
|
4402
4402
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4417,7 +4417,7 @@ const IconMoneyBill = forwardRef((_ref, ref) => {
|
|
|
4417
4417
|
});
|
|
4418
4418
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
4419
4419
|
|
|
4420
|
-
const _excluded$
|
|
4420
|
+
const _excluded$1f = ["testId", "size", "color", "style"];
|
|
4421
4421
|
const IconMugSaucerSolid = forwardRef((_ref, ref) => {
|
|
4422
4422
|
let {
|
|
4423
4423
|
testId = 'icon-mug-saucer-solid',
|
|
@@ -4425,7 +4425,7 @@ const IconMugSaucerSolid = forwardRef((_ref, ref) => {
|
|
|
4425
4425
|
color,
|
|
4426
4426
|
style
|
|
4427
4427
|
} = _ref,
|
|
4428
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4428
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
|
|
4429
4429
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4430
4430
|
const styleProps = {
|
|
4431
4431
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4446,7 +4446,7 @@ const IconMugSaucerSolid = forwardRef((_ref, ref) => {
|
|
|
4446
4446
|
});
|
|
4447
4447
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
4448
4448
|
|
|
4449
|
-
const _excluded$
|
|
4449
|
+
const _excluded$1e = ["testId", "size", "color", "style"];
|
|
4450
4450
|
const IconNotesMedical = forwardRef((_ref, ref) => {
|
|
4451
4451
|
let {
|
|
4452
4452
|
testId = 'icon-notes-medical',
|
|
@@ -4454,7 +4454,7 @@ const IconNotesMedical = forwardRef((_ref, ref) => {
|
|
|
4454
4454
|
color,
|
|
4455
4455
|
style
|
|
4456
4456
|
} = _ref,
|
|
4457
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4457
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
|
|
4458
4458
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4459
4459
|
const styleProps = {
|
|
4460
4460
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4475,7 +4475,7 @@ const IconNotesMedical = forwardRef((_ref, ref) => {
|
|
|
4475
4475
|
});
|
|
4476
4476
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
4477
4477
|
|
|
4478
|
-
const _excluded$
|
|
4478
|
+
const _excluded$1d = ["testId", "size", "color", "style"];
|
|
4479
4479
|
const IconOvertime = forwardRef((_ref, ref) => {
|
|
4480
4480
|
let {
|
|
4481
4481
|
testId = 'icon-overtime',
|
|
@@ -4483,7 +4483,7 @@ const IconOvertime = forwardRef((_ref, ref) => {
|
|
|
4483
4483
|
color,
|
|
4484
4484
|
style
|
|
4485
4485
|
} = _ref,
|
|
4486
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4486
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
4487
4487
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4488
4488
|
const styleProps = {
|
|
4489
4489
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4511,7 +4511,7 @@ const IconOvertime = forwardRef((_ref, ref) => {
|
|
|
4511
4511
|
});
|
|
4512
4512
|
IconOvertime.displayName = 'IconOvertime';
|
|
4513
4513
|
|
|
4514
|
-
const _excluded$
|
|
4514
|
+
const _excluded$1c = ["testId", "size", "color", "style"];
|
|
4515
4515
|
const IconPaperPlaneClock = forwardRef((_ref, ref) => {
|
|
4516
4516
|
let {
|
|
4517
4517
|
testId = 'icon-paper-plane-clock',
|
|
@@ -4519,7 +4519,7 @@ const IconPaperPlaneClock = forwardRef((_ref, ref) => {
|
|
|
4519
4519
|
color,
|
|
4520
4520
|
style
|
|
4521
4521
|
} = _ref,
|
|
4522
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4522
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
|
|
4523
4523
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4524
4524
|
const styleProps = {
|
|
4525
4525
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4551,7 +4551,7 @@ const IconPaperPlaneClock = forwardRef((_ref, ref) => {
|
|
|
4551
4551
|
});
|
|
4552
4552
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
4553
4553
|
|
|
4554
|
-
const _excluded$
|
|
4554
|
+
const _excluded$1b = ["testId", "size", "color", "style"];
|
|
4555
4555
|
const IconPaperPlane = forwardRef((_ref, ref) => {
|
|
4556
4556
|
let {
|
|
4557
4557
|
testId = 'icon-paper-plane',
|
|
@@ -4559,7 +4559,7 @@ const IconPaperPlane = forwardRef((_ref, ref) => {
|
|
|
4559
4559
|
color,
|
|
4560
4560
|
style
|
|
4561
4561
|
} = _ref,
|
|
4562
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4562
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
|
|
4563
4563
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4564
4564
|
const styleProps = {
|
|
4565
4565
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4582,7 +4582,7 @@ const IconPaperPlane = forwardRef((_ref, ref) => {
|
|
|
4582
4582
|
});
|
|
4583
4583
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
4584
4584
|
|
|
4585
|
-
const _excluded$
|
|
4585
|
+
const _excluded$1a = ["testId", "size", "color", "style"];
|
|
4586
4586
|
const IconPaperclip = forwardRef((_ref, ref) => {
|
|
4587
4587
|
let {
|
|
4588
4588
|
testId = 'icon-paperclip',
|
|
@@ -4590,7 +4590,7 @@ const IconPaperclip = forwardRef((_ref, ref) => {
|
|
|
4590
4590
|
color,
|
|
4591
4591
|
style
|
|
4592
4592
|
} = _ref,
|
|
4593
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4593
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
4594
4594
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4595
4595
|
const styleProps = {
|
|
4596
4596
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4618,7 +4618,7 @@ const IconPaperclip = forwardRef((_ref, ref) => {
|
|
|
4618
4618
|
});
|
|
4619
4619
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
4620
4620
|
|
|
4621
|
-
const _excluded$
|
|
4621
|
+
const _excluded$19 = ["testId", "size", "color", "style"];
|
|
4622
4622
|
const IconPencil = forwardRef((_ref, ref) => {
|
|
4623
4623
|
let {
|
|
4624
4624
|
testId = 'icon-pencil',
|
|
@@ -4626,7 +4626,7 @@ const IconPencil = forwardRef((_ref, ref) => {
|
|
|
4626
4626
|
color,
|
|
4627
4627
|
style
|
|
4628
4628
|
} = _ref,
|
|
4629
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4629
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
|
|
4630
4630
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4631
4631
|
const styleProps = {
|
|
4632
4632
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4649,7 +4649,7 @@ const IconPencil = forwardRef((_ref, ref) => {
|
|
|
4649
4649
|
});
|
|
4650
4650
|
IconPencil.displayName = 'IconPencil';
|
|
4651
4651
|
|
|
4652
|
-
const _excluded$
|
|
4652
|
+
const _excluded$18 = ["testId", "size", "color", "style"];
|
|
4653
4653
|
const IconPercentage = forwardRef((_ref, ref) => {
|
|
4654
4654
|
let {
|
|
4655
4655
|
testId = 'icon-percentage',
|
|
@@ -4657,7 +4657,7 @@ const IconPercentage = forwardRef((_ref, ref) => {
|
|
|
4657
4657
|
color,
|
|
4658
4658
|
style
|
|
4659
4659
|
} = _ref,
|
|
4660
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4660
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
|
|
4661
4661
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4662
4662
|
const styleProps = {
|
|
4663
4663
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4678,7 +4678,7 @@ const IconPercentage = forwardRef((_ref, ref) => {
|
|
|
4678
4678
|
});
|
|
4679
4679
|
IconPercentage.displayName = 'IconPercentage';
|
|
4680
4680
|
|
|
4681
|
-
const _excluded$
|
|
4681
|
+
const _excluded$17 = ["testId", "size", "color", "style"];
|
|
4682
4682
|
const IconPhone = forwardRef((_ref, ref) => {
|
|
4683
4683
|
let {
|
|
4684
4684
|
testId = 'icon-phone',
|
|
@@ -4686,7 +4686,7 @@ const IconPhone = forwardRef((_ref, ref) => {
|
|
|
4686
4686
|
color,
|
|
4687
4687
|
style
|
|
4688
4688
|
} = _ref,
|
|
4689
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4689
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
|
|
4690
4690
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4691
4691
|
const styleProps = {
|
|
4692
4692
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4707,7 +4707,7 @@ const IconPhone = forwardRef((_ref, ref) => {
|
|
|
4707
4707
|
});
|
|
4708
4708
|
IconPhone.displayName = 'IconPhone';
|
|
4709
4709
|
|
|
4710
|
-
const _excluded$
|
|
4710
|
+
const _excluded$16 = ["testId", "size", "color", "style"];
|
|
4711
4711
|
const IconPlateUtensils = forwardRef((_ref, ref) => {
|
|
4712
4712
|
let {
|
|
4713
4713
|
testId = 'icon-plate-utensils',
|
|
@@ -4715,7 +4715,7 @@ const IconPlateUtensils = forwardRef((_ref, ref) => {
|
|
|
4715
4715
|
color,
|
|
4716
4716
|
style
|
|
4717
4717
|
} = _ref,
|
|
4718
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4718
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
4719
4719
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4720
4720
|
const styleProps = {
|
|
4721
4721
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4736,7 +4736,7 @@ const IconPlateUtensils = forwardRef((_ref, ref) => {
|
|
|
4736
4736
|
});
|
|
4737
4737
|
IconPlateUtensils.displayName = 'IconPlateUtensils';
|
|
4738
4738
|
|
|
4739
|
-
const _excluded$
|
|
4739
|
+
const _excluded$15 = ["testId", "size", "color", "style"];
|
|
4740
4740
|
const IconPlug = forwardRef((_ref, ref) => {
|
|
4741
4741
|
let {
|
|
4742
4742
|
testId = 'icon-plug',
|
|
@@ -4744,7 +4744,7 @@ const IconPlug = forwardRef((_ref, ref) => {
|
|
|
4744
4744
|
color,
|
|
4745
4745
|
style
|
|
4746
4746
|
} = _ref,
|
|
4747
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4747
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
|
|
4748
4748
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4749
4749
|
const styleProps = {
|
|
4750
4750
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4767,7 +4767,7 @@ const IconPlug = forwardRef((_ref, ref) => {
|
|
|
4767
4767
|
});
|
|
4768
4768
|
IconPlug.displayName = 'IconPlug';
|
|
4769
4769
|
|
|
4770
|
-
const _excluded$
|
|
4770
|
+
const _excluded$14 = ["testId", "size", "color", "style"];
|
|
4771
4771
|
const IconPlus = forwardRef((_ref, ref) => {
|
|
4772
4772
|
let {
|
|
4773
4773
|
testId = 'icon-plus',
|
|
@@ -4775,7 +4775,7 @@ const IconPlus = forwardRef((_ref, ref) => {
|
|
|
4775
4775
|
color,
|
|
4776
4776
|
style
|
|
4777
4777
|
} = _ref,
|
|
4778
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4778
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
|
|
4779
4779
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4780
4780
|
const styleProps = {
|
|
4781
4781
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4798,7 +4798,7 @@ const IconPlus = forwardRef((_ref, ref) => {
|
|
|
4798
4798
|
});
|
|
4799
4799
|
IconPlus.displayName = 'IconPlus';
|
|
4800
4800
|
|
|
4801
|
-
const _excluded$
|
|
4801
|
+
const _excluded$13 = ["testId", "size", "color", "style"];
|
|
4802
4802
|
const IconPrint = forwardRef((_ref, ref) => {
|
|
4803
4803
|
let {
|
|
4804
4804
|
testId = 'icon-print',
|
|
@@ -4806,7 +4806,7 @@ const IconPrint = forwardRef((_ref, ref) => {
|
|
|
4806
4806
|
color,
|
|
4807
4807
|
style
|
|
4808
4808
|
} = _ref,
|
|
4809
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4809
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
|
|
4810
4810
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4811
4811
|
const styleProps = {
|
|
4812
4812
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4829,7 +4829,7 @@ const IconPrint = forwardRef((_ref, ref) => {
|
|
|
4829
4829
|
});
|
|
4830
4830
|
IconPrint.displayName = 'IconPrint';
|
|
4831
4831
|
|
|
4832
|
-
const _excluded$
|
|
4832
|
+
const _excluded$12 = ["testId", "size", "color", "style"];
|
|
4833
4833
|
const IconQuestionCircle = forwardRef((_ref, ref) => {
|
|
4834
4834
|
let {
|
|
4835
4835
|
testId = 'icon-question-circle',
|
|
@@ -4837,7 +4837,7 @@ const IconQuestionCircle = forwardRef((_ref, ref) => {
|
|
|
4837
4837
|
color,
|
|
4838
4838
|
style
|
|
4839
4839
|
} = _ref,
|
|
4840
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4840
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
|
|
4841
4841
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4842
4842
|
const styleProps = {
|
|
4843
4843
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4858,7 +4858,7 @@ const IconQuestionCircle = forwardRef((_ref, ref) => {
|
|
|
4858
4858
|
});
|
|
4859
4859
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
4860
4860
|
|
|
4861
|
-
const _excluded$
|
|
4861
|
+
const _excluded$11 = ["testId", "size", "color", "style"];
|
|
4862
4862
|
const IconRepeat = forwardRef((_ref, ref) => {
|
|
4863
4863
|
let {
|
|
4864
4864
|
testId = 'icon-repeat',
|
|
@@ -4866,7 +4866,7 @@ const IconRepeat = forwardRef((_ref, ref) => {
|
|
|
4866
4866
|
color,
|
|
4867
4867
|
style
|
|
4868
4868
|
} = _ref,
|
|
4869
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4869
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
|
|
4870
4870
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4871
4871
|
const styleProps = {
|
|
4872
4872
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4887,7 +4887,7 @@ const IconRepeat = forwardRef((_ref, ref) => {
|
|
|
4887
4887
|
});
|
|
4888
4888
|
IconRepeat.displayName = 'IconRepeat';
|
|
4889
4889
|
|
|
4890
|
-
const _excluded
|
|
4890
|
+
const _excluded$10 = ["testId", "size", "color", "style"];
|
|
4891
4891
|
const IconReply = forwardRef((_ref, ref) => {
|
|
4892
4892
|
let {
|
|
4893
4893
|
testId = 'icon-reply',
|
|
@@ -4895,7 +4895,7 @@ const IconReply = forwardRef((_ref, ref) => {
|
|
|
4895
4895
|
color,
|
|
4896
4896
|
style
|
|
4897
4897
|
} = _ref,
|
|
4898
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
4898
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
4899
4899
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4900
4900
|
const styleProps = {
|
|
4901
4901
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4916,7 +4916,7 @@ const IconReply = forwardRef((_ref, ref) => {
|
|
|
4916
4916
|
});
|
|
4917
4917
|
IconReply.displayName = 'IconReply';
|
|
4918
4918
|
|
|
4919
|
-
const _excluded
|
|
4919
|
+
const _excluded$$ = ["testId", "size", "color", "style"];
|
|
4920
4920
|
const IconRocket = forwardRef((_ref, ref) => {
|
|
4921
4921
|
let {
|
|
4922
4922
|
testId = 'icon-rocket',
|
|
@@ -4924,7 +4924,7 @@ const IconRocket = forwardRef((_ref, ref) => {
|
|
|
4924
4924
|
color,
|
|
4925
4925
|
style
|
|
4926
4926
|
} = _ref,
|
|
4927
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
4927
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
|
|
4928
4928
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4929
4929
|
const styleProps = {
|
|
4930
4930
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4945,7 +4945,7 @@ const IconRocket = forwardRef((_ref, ref) => {
|
|
|
4945
4945
|
});
|
|
4946
4946
|
IconRocket.displayName = 'IconRocket';
|
|
4947
4947
|
|
|
4948
|
-
const _excluded$
|
|
4948
|
+
const _excluded$_ = ["testId", "size", "color", "style"];
|
|
4949
4949
|
const IconSearch = forwardRef((_ref, ref) => {
|
|
4950
4950
|
let {
|
|
4951
4951
|
testId = 'icon-search',
|
|
@@ -4953,7 +4953,7 @@ const IconSearch = forwardRef((_ref, ref) => {
|
|
|
4953
4953
|
color,
|
|
4954
4954
|
style
|
|
4955
4955
|
} = _ref,
|
|
4956
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4956
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
|
|
4957
4957
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4958
4958
|
const styleProps = {
|
|
4959
4959
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4976,7 +4976,7 @@ const IconSearch = forwardRef((_ref, ref) => {
|
|
|
4976
4976
|
});
|
|
4977
4977
|
IconSearch.displayName = 'IconSearch';
|
|
4978
4978
|
|
|
4979
|
-
const _excluded$
|
|
4979
|
+
const _excluded$Z = ["testId", "size", "color", "style"];
|
|
4980
4980
|
const IconSignOut = forwardRef((_ref, ref) => {
|
|
4981
4981
|
let {
|
|
4982
4982
|
testId = 'icon-sign-out',
|
|
@@ -4984,7 +4984,7 @@ const IconSignOut = forwardRef((_ref, ref) => {
|
|
|
4984
4984
|
color,
|
|
4985
4985
|
style
|
|
4986
4986
|
} = _ref,
|
|
4987
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4987
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
|
|
4988
4988
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4989
4989
|
const styleProps = {
|
|
4990
4990
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5005,7 +5005,7 @@ const IconSignOut = forwardRef((_ref, ref) => {
|
|
|
5005
5005
|
});
|
|
5006
5006
|
IconSignOut.displayName = 'IconSignOut';
|
|
5007
5007
|
|
|
5008
|
-
const _excluded$
|
|
5008
|
+
const _excluded$Y = ["testId", "size", "color", "style"];
|
|
5009
5009
|
const IconSitemap = forwardRef((_ref, ref) => {
|
|
5010
5010
|
let {
|
|
5011
5011
|
testId = 'icon-sitemap',
|
|
@@ -5013,7 +5013,7 @@ const IconSitemap = forwardRef((_ref, ref) => {
|
|
|
5013
5013
|
color,
|
|
5014
5014
|
style
|
|
5015
5015
|
} = _ref,
|
|
5016
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5016
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
|
|
5017
5017
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5018
5018
|
const styleProps = {
|
|
5019
5019
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5036,7 +5036,7 @@ const IconSitemap = forwardRef((_ref, ref) => {
|
|
|
5036
5036
|
});
|
|
5037
5037
|
IconSitemap.displayName = 'IconSitemap';
|
|
5038
5038
|
|
|
5039
|
-
const _excluded$
|
|
5039
|
+
const _excluded$X = ["testId", "size", "color", "style"];
|
|
5040
5040
|
const IconSlidersH = forwardRef((_ref, ref) => {
|
|
5041
5041
|
let {
|
|
5042
5042
|
testId = 'icon-sliders-h',
|
|
@@ -5044,7 +5044,7 @@ const IconSlidersH = forwardRef((_ref, ref) => {
|
|
|
5044
5044
|
color,
|
|
5045
5045
|
style
|
|
5046
5046
|
} = _ref,
|
|
5047
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5047
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
5048
5048
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5049
5049
|
const styleProps = {
|
|
5050
5050
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5072,7 +5072,7 @@ const IconSlidersH = forwardRef((_ref, ref) => {
|
|
|
5072
5072
|
});
|
|
5073
5073
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
5074
5074
|
|
|
5075
|
-
const _excluded$
|
|
5075
|
+
const _excluded$W = ["testId", "size", "color", "style"];
|
|
5076
5076
|
const IconSort = forwardRef((_ref, ref) => {
|
|
5077
5077
|
let {
|
|
5078
5078
|
testId = 'icon-sort',
|
|
@@ -5080,7 +5080,7 @@ const IconSort = forwardRef((_ref, ref) => {
|
|
|
5080
5080
|
color,
|
|
5081
5081
|
style
|
|
5082
5082
|
} = _ref,
|
|
5083
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5083
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
|
|
5084
5084
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5085
5085
|
const styleProps = {
|
|
5086
5086
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5101,7 +5101,7 @@ const IconSort = forwardRef((_ref, ref) => {
|
|
|
5101
5101
|
});
|
|
5102
5102
|
IconSort.displayName = 'IconSort';
|
|
5103
5103
|
|
|
5104
|
-
const _excluded$
|
|
5104
|
+
const _excluded$V = ["testId", "size", "color", "style"];
|
|
5105
5105
|
const IconStarSolid = forwardRef((_ref, ref) => {
|
|
5106
5106
|
let {
|
|
5107
5107
|
testId = 'icon-star-solid',
|
|
@@ -5109,7 +5109,7 @@ const IconStarSolid = forwardRef((_ref, ref) => {
|
|
|
5109
5109
|
color,
|
|
5110
5110
|
style
|
|
5111
5111
|
} = _ref,
|
|
5112
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5112
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
|
|
5113
5113
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5114
5114
|
const styleProps = {
|
|
5115
5115
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5130,7 +5130,7 @@ const IconStarSolid = forwardRef((_ref, ref) => {
|
|
|
5130
5130
|
});
|
|
5131
5131
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
5132
5132
|
|
|
5133
|
-
const _excluded$
|
|
5133
|
+
const _excluded$U = ["testId", "size", "color", "style"];
|
|
5134
5134
|
const IconStar = forwardRef((_ref, ref) => {
|
|
5135
5135
|
let {
|
|
5136
5136
|
testId = 'icon-star',
|
|
@@ -5138,7 +5138,7 @@ const IconStar = forwardRef((_ref, ref) => {
|
|
|
5138
5138
|
color,
|
|
5139
5139
|
style
|
|
5140
5140
|
} = _ref,
|
|
5141
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5141
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
|
|
5142
5142
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5143
5143
|
const styleProps = {
|
|
5144
5144
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5159,7 +5159,7 @@ const IconStar = forwardRef((_ref, ref) => {
|
|
|
5159
5159
|
});
|
|
5160
5160
|
IconStar.displayName = 'IconStar';
|
|
5161
5161
|
|
|
5162
|
-
const _excluded$
|
|
5162
|
+
const _excluded$T = ["testId", "size", "color", "style"];
|
|
5163
5163
|
const IconStickyNoteLines = forwardRef((_ref, ref) => {
|
|
5164
5164
|
let {
|
|
5165
5165
|
testId = 'icon-sticky-note-lines',
|
|
@@ -5167,7 +5167,7 @@ const IconStickyNoteLines = forwardRef((_ref, ref) => {
|
|
|
5167
5167
|
color,
|
|
5168
5168
|
style
|
|
5169
5169
|
} = _ref,
|
|
5170
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5170
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
|
|
5171
5171
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5172
5172
|
const styleProps = {
|
|
5173
5173
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5191,7 +5191,7 @@ const IconStickyNoteLines = forwardRef((_ref, ref) => {
|
|
|
5191
5191
|
});
|
|
5192
5192
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
5193
5193
|
|
|
5194
|
-
const _excluded$
|
|
5194
|
+
const _excluded$S = ["testId", "size", "color", "style"];
|
|
5195
5195
|
const IconStopwatch = forwardRef((_ref, ref) => {
|
|
5196
5196
|
let {
|
|
5197
5197
|
testId = 'icon-stopwatch',
|
|
@@ -5199,7 +5199,7 @@ const IconStopwatch = forwardRef((_ref, ref) => {
|
|
|
5199
5199
|
color,
|
|
5200
5200
|
style
|
|
5201
5201
|
} = _ref,
|
|
5202
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5202
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
|
|
5203
5203
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5204
5204
|
const styleProps = {
|
|
5205
5205
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5222,7 +5222,7 @@ const IconStopwatch = forwardRef((_ref, ref) => {
|
|
|
5222
5222
|
});
|
|
5223
5223
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
5224
5224
|
|
|
5225
|
-
const _excluded$
|
|
5225
|
+
const _excluded$R = ["testId", "size", "color", "style"];
|
|
5226
5226
|
const IconStrikethrough = forwardRef((_ref, ref) => {
|
|
5227
5227
|
let {
|
|
5228
5228
|
testId = 'icon-strikethrough',
|
|
@@ -5230,7 +5230,7 @@ const IconStrikethrough = forwardRef((_ref, ref) => {
|
|
|
5230
5230
|
color,
|
|
5231
5231
|
style
|
|
5232
5232
|
} = _ref,
|
|
5233
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5233
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
|
|
5234
5234
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5235
5235
|
const styleProps = {
|
|
5236
5236
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5258,7 +5258,7 @@ const IconStrikethrough = forwardRef((_ref, ref) => {
|
|
|
5258
5258
|
});
|
|
5259
5259
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
5260
5260
|
|
|
5261
|
-
const _excluded$
|
|
5261
|
+
const _excluded$Q = ["testId", "size", "color", "style"];
|
|
5262
5262
|
const IconSyncExclaimation = forwardRef((_ref, ref) => {
|
|
5263
5263
|
let {
|
|
5264
5264
|
testId = 'icon-sync-exclaimation',
|
|
@@ -5266,7 +5266,7 @@ const IconSyncExclaimation = forwardRef((_ref, ref) => {
|
|
|
5266
5266
|
color,
|
|
5267
5267
|
style
|
|
5268
5268
|
} = _ref,
|
|
5269
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5269
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
|
|
5270
5270
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5271
5271
|
const styleProps = {
|
|
5272
5272
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5287,7 +5287,7 @@ const IconSyncExclaimation = forwardRef((_ref, ref) => {
|
|
|
5287
5287
|
});
|
|
5288
5288
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
5289
5289
|
|
|
5290
|
-
const _excluded$
|
|
5290
|
+
const _excluded$P = ["testId", "size", "color", "style"];
|
|
5291
5291
|
const IconSync = forwardRef((_ref, ref) => {
|
|
5292
5292
|
let {
|
|
5293
5293
|
testId = 'icon-sync',
|
|
@@ -5295,7 +5295,7 @@ const IconSync = forwardRef((_ref, ref) => {
|
|
|
5295
5295
|
color,
|
|
5296
5296
|
style
|
|
5297
5297
|
} = _ref,
|
|
5298
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5298
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
|
|
5299
5299
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5300
5300
|
const styleProps = {
|
|
5301
5301
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5316,7 +5316,7 @@ const IconSync = forwardRef((_ref, ref) => {
|
|
|
5316
5316
|
});
|
|
5317
5317
|
IconSync.displayName = 'IconSync';
|
|
5318
5318
|
|
|
5319
|
-
const _excluded$
|
|
5319
|
+
const _excluded$O = ["testId", "size", "color", "style"];
|
|
5320
5320
|
const IconTable = forwardRef((_ref, ref) => {
|
|
5321
5321
|
let {
|
|
5322
5322
|
testId = 'icon-table',
|
|
@@ -5324,7 +5324,7 @@ const IconTable = forwardRef((_ref, ref) => {
|
|
|
5324
5324
|
color,
|
|
5325
5325
|
style
|
|
5326
5326
|
} = _ref,
|
|
5327
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5327
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
|
|
5328
5328
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5329
5329
|
const styleProps = {
|
|
5330
5330
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5352,7 +5352,7 @@ const IconTable = forwardRef((_ref, ref) => {
|
|
|
5352
5352
|
});
|
|
5353
5353
|
IconTable.displayName = 'IconTable';
|
|
5354
5354
|
|
|
5355
|
-
const _excluded$
|
|
5355
|
+
const _excluded$N = ["testId", "size", "color", "style"];
|
|
5356
5356
|
const IconTachometer = forwardRef((_ref, ref) => {
|
|
5357
5357
|
let {
|
|
5358
5358
|
testId = 'icon-tachometer',
|
|
@@ -5360,7 +5360,7 @@ const IconTachometer = forwardRef((_ref, ref) => {
|
|
|
5360
5360
|
color,
|
|
5361
5361
|
style
|
|
5362
5362
|
} = _ref,
|
|
5363
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5363
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
|
|
5364
5364
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5365
5365
|
const styleProps = {
|
|
5366
5366
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5380,7 +5380,7 @@ const IconTachometer = forwardRef((_ref, ref) => {
|
|
|
5380
5380
|
});
|
|
5381
5381
|
IconTachometer.displayName = 'IconTachometer';
|
|
5382
5382
|
|
|
5383
|
-
const _excluded$
|
|
5383
|
+
const _excluded$M = ["testId", "size", "color", "style"];
|
|
5384
5384
|
const IconTimesOctagon = forwardRef((_ref, ref) => {
|
|
5385
5385
|
let {
|
|
5386
5386
|
testId = 'icon-times-octagon',
|
|
@@ -5388,7 +5388,7 @@ const IconTimesOctagon = forwardRef((_ref, ref) => {
|
|
|
5388
5388
|
color,
|
|
5389
5389
|
style
|
|
5390
5390
|
} = _ref,
|
|
5391
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5391
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
|
|
5392
5392
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5393
5393
|
const styleProps = {
|
|
5394
5394
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5411,7 +5411,7 @@ const IconTimesOctagon = forwardRef((_ref, ref) => {
|
|
|
5411
5411
|
});
|
|
5412
5412
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
5413
5413
|
|
|
5414
|
-
const _excluded$
|
|
5414
|
+
const _excluded$L = ["testId", "size", "color", "style"];
|
|
5415
5415
|
const IconTimes = forwardRef((_ref, ref) => {
|
|
5416
5416
|
let {
|
|
5417
5417
|
testId = 'icon-times',
|
|
@@ -5419,7 +5419,7 @@ const IconTimes = forwardRef((_ref, ref) => {
|
|
|
5419
5419
|
color,
|
|
5420
5420
|
style
|
|
5421
5421
|
} = _ref,
|
|
5422
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5422
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
|
|
5423
5423
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5424
5424
|
const styleProps = {
|
|
5425
5425
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5442,7 +5442,7 @@ const IconTimes = forwardRef((_ref, ref) => {
|
|
|
5442
5442
|
});
|
|
5443
5443
|
IconTimes.displayName = 'IconTimes';
|
|
5444
5444
|
|
|
5445
|
-
const _excluded$
|
|
5445
|
+
const _excluded$K = ["testId", "size", "color", "style"];
|
|
5446
5446
|
const IconTrash = forwardRef((_ref, ref) => {
|
|
5447
5447
|
let {
|
|
5448
5448
|
testId = 'icon-trash',
|
|
@@ -5450,7 +5450,7 @@ const IconTrash = forwardRef((_ref, ref) => {
|
|
|
5450
5450
|
color,
|
|
5451
5451
|
style
|
|
5452
5452
|
} = _ref,
|
|
5453
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5453
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
|
|
5454
5454
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5455
5455
|
const styleProps = {
|
|
5456
5456
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5473,7 +5473,7 @@ const IconTrash = forwardRef((_ref, ref) => {
|
|
|
5473
5473
|
});
|
|
5474
5474
|
IconTrash.displayName = 'IconTrash';
|
|
5475
5475
|
|
|
5476
|
-
const _excluded$
|
|
5476
|
+
const _excluded$J = ["testId", "size", "color", "style"];
|
|
5477
5477
|
const IconUnderline = forwardRef((_ref, ref) => {
|
|
5478
5478
|
let {
|
|
5479
5479
|
testId = 'icon-underline',
|
|
@@ -5481,7 +5481,7 @@ const IconUnderline = forwardRef((_ref, ref) => {
|
|
|
5481
5481
|
color,
|
|
5482
5482
|
style
|
|
5483
5483
|
} = _ref,
|
|
5484
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5484
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
|
|
5485
5485
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5486
5486
|
const styleProps = {
|
|
5487
5487
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5502,7 +5502,7 @@ const IconUnderline = forwardRef((_ref, ref) => {
|
|
|
5502
5502
|
});
|
|
5503
5503
|
IconUnderline.displayName = 'IconUnderline';
|
|
5504
5504
|
|
|
5505
|
-
const _excluded$
|
|
5505
|
+
const _excluded$I = ["testId", "size", "color", "style"];
|
|
5506
5506
|
const IconUndo = forwardRef((_ref, ref) => {
|
|
5507
5507
|
let {
|
|
5508
5508
|
testId = 'icon-undo',
|
|
@@ -5510,7 +5510,7 @@ const IconUndo = forwardRef((_ref, ref) => {
|
|
|
5510
5510
|
color,
|
|
5511
5511
|
style
|
|
5512
5512
|
} = _ref,
|
|
5513
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5513
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
|
|
5514
5514
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5515
5515
|
const styleProps = {
|
|
5516
5516
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5531,7 +5531,7 @@ const IconUndo = forwardRef((_ref, ref) => {
|
|
|
5531
5531
|
});
|
|
5532
5532
|
IconUndo.displayName = 'IconUndo';
|
|
5533
5533
|
|
|
5534
|
-
const _excluded$
|
|
5534
|
+
const _excluded$H = ["testId", "size", "color", "style"];
|
|
5535
5535
|
const IconUniversity = forwardRef((_ref, ref) => {
|
|
5536
5536
|
let {
|
|
5537
5537
|
testId = 'icon-university',
|
|
@@ -5539,7 +5539,7 @@ const IconUniversity = forwardRef((_ref, ref) => {
|
|
|
5539
5539
|
color,
|
|
5540
5540
|
style
|
|
5541
5541
|
} = _ref,
|
|
5542
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5542
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
|
|
5543
5543
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5544
5544
|
const styleProps = {
|
|
5545
5545
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5567,7 +5567,7 @@ const IconUniversity = forwardRef((_ref, ref) => {
|
|
|
5567
5567
|
});
|
|
5568
5568
|
IconUniversity.displayName = 'IconUniversity';
|
|
5569
5569
|
|
|
5570
|
-
const _excluded$
|
|
5570
|
+
const _excluded$G = ["testId", "size", "color", "style"];
|
|
5571
5571
|
const IconUnlock = forwardRef((_ref, ref) => {
|
|
5572
5572
|
let {
|
|
5573
5573
|
testId = 'icon-unlock',
|
|
@@ -5575,7 +5575,7 @@ const IconUnlock = forwardRef((_ref, ref) => {
|
|
|
5575
5575
|
color,
|
|
5576
5576
|
style
|
|
5577
5577
|
} = _ref,
|
|
5578
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5578
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
|
|
5579
5579
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5580
5580
|
const styleProps = {
|
|
5581
5581
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5603,7 +5603,7 @@ const IconUnlock = forwardRef((_ref, ref) => {
|
|
|
5603
5603
|
});
|
|
5604
5604
|
IconUnlock.displayName = 'IconUnlock';
|
|
5605
5605
|
|
|
5606
|
-
const _excluded$
|
|
5606
|
+
const _excluded$F = ["testId", "size", "color", "style"];
|
|
5607
5607
|
const IconUserComputer = forwardRef((_ref, ref) => {
|
|
5608
5608
|
let {
|
|
5609
5609
|
testId = 'icon-user-computer',
|
|
@@ -5611,7 +5611,7 @@ const IconUserComputer = forwardRef((_ref, ref) => {
|
|
|
5611
5611
|
color,
|
|
5612
5612
|
style
|
|
5613
5613
|
} = _ref,
|
|
5614
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5614
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
|
|
5615
5615
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5616
5616
|
const styleProps = {
|
|
5617
5617
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5643,7 +5643,7 @@ const IconUserComputer = forwardRef((_ref, ref) => {
|
|
|
5643
5643
|
});
|
|
5644
5644
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
5645
5645
|
|
|
5646
|
-
const _excluded$
|
|
5646
|
+
const _excluded$E = ["testId", "size", "color", "style"];
|
|
5647
5647
|
const IconUserFriends = forwardRef((_ref, ref) => {
|
|
5648
5648
|
let {
|
|
5649
5649
|
testId = 'icon-user-friends',
|
|
@@ -5651,7 +5651,7 @@ const IconUserFriends = forwardRef((_ref, ref) => {
|
|
|
5651
5651
|
color,
|
|
5652
5652
|
style
|
|
5653
5653
|
} = _ref,
|
|
5654
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5654
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
|
|
5655
5655
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5656
5656
|
const styleProps = {
|
|
5657
5657
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5672,7 +5672,7 @@ const IconUserFriends = forwardRef((_ref, ref) => {
|
|
|
5672
5672
|
});
|
|
5673
5673
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
5674
5674
|
|
|
5675
|
-
const _excluded$
|
|
5675
|
+
const _excluded$D = ["testId", "size", "color", "style"];
|
|
5676
5676
|
const IconUserLight = forwardRef((_ref, ref) => {
|
|
5677
5677
|
let {
|
|
5678
5678
|
testId = 'icon-user-light',
|
|
@@ -5680,7 +5680,7 @@ const IconUserLight = forwardRef((_ref, ref) => {
|
|
|
5680
5680
|
color,
|
|
5681
5681
|
style
|
|
5682
5682
|
} = _ref,
|
|
5683
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5683
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
|
|
5684
5684
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5685
5685
|
const styleProps = {
|
|
5686
5686
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5703,7 +5703,7 @@ const IconUserLight = forwardRef((_ref, ref) => {
|
|
|
5703
5703
|
});
|
|
5704
5704
|
IconUserLight.displayName = 'IconUserLight';
|
|
5705
5705
|
|
|
5706
|
-
const _excluded$
|
|
5706
|
+
const _excluded$C = ["testId", "size", "color", "style"];
|
|
5707
5707
|
const IconUserPlus = forwardRef((_ref, ref) => {
|
|
5708
5708
|
let {
|
|
5709
5709
|
testId = 'icon-user-plus',
|
|
@@ -5711,7 +5711,7 @@ const IconUserPlus = forwardRef((_ref, ref) => {
|
|
|
5711
5711
|
color,
|
|
5712
5712
|
style
|
|
5713
5713
|
} = _ref,
|
|
5714
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5714
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
|
|
5715
5715
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5716
5716
|
const styleProps = {
|
|
5717
5717
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5732,7 +5732,7 @@ const IconUserPlus = forwardRef((_ref, ref) => {
|
|
|
5732
5732
|
});
|
|
5733
5733
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
5734
5734
|
|
|
5735
|
-
const _excluded$
|
|
5735
|
+
const _excluded$B = ["testId", "size", "color", "style"];
|
|
5736
5736
|
const IconUserSearch = forwardRef((_ref, ref) => {
|
|
5737
5737
|
let {
|
|
5738
5738
|
testId = 'icon-user-search',
|
|
@@ -5740,7 +5740,7 @@ const IconUserSearch = forwardRef((_ref, ref) => {
|
|
|
5740
5740
|
color,
|
|
5741
5741
|
style
|
|
5742
5742
|
} = _ref,
|
|
5743
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5743
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
|
|
5744
5744
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5745
5745
|
const styleProps = {
|
|
5746
5746
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5770,7 +5770,7 @@ const IconUserSearch = forwardRef((_ref, ref) => {
|
|
|
5770
5770
|
});
|
|
5771
5771
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
5772
5772
|
|
|
5773
|
-
const _excluded$
|
|
5773
|
+
const _excluded$A = ["testId", "size", "color", "style"];
|
|
5774
5774
|
const IconUserSlash = forwardRef((_ref, ref) => {
|
|
5775
5775
|
let {
|
|
5776
5776
|
testId = 'icon-user-slash',
|
|
@@ -5778,7 +5778,7 @@ const IconUserSlash = forwardRef((_ref, ref) => {
|
|
|
5778
5778
|
color,
|
|
5779
5779
|
style
|
|
5780
5780
|
} = _ref,
|
|
5781
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5781
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
|
|
5782
5782
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5783
5783
|
const styleProps = {
|
|
5784
5784
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5806,7 +5806,7 @@ const IconUserSlash = forwardRef((_ref, ref) => {
|
|
|
5806
5806
|
});
|
|
5807
5807
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
5808
5808
|
|
|
5809
|
-
const _excluded$
|
|
5809
|
+
const _excluded$z = ["testId", "size", "color", "style"];
|
|
5810
5810
|
const IconUserSolid = forwardRef((_ref, ref) => {
|
|
5811
5811
|
let {
|
|
5812
5812
|
testId = 'icon-user-solid',
|
|
@@ -5814,7 +5814,7 @@ const IconUserSolid = forwardRef((_ref, ref) => {
|
|
|
5814
5814
|
color,
|
|
5815
5815
|
style
|
|
5816
5816
|
} = _ref,
|
|
5817
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5817
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
5818
5818
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5819
5819
|
const styleProps = {
|
|
5820
5820
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5835,7 +5835,7 @@ const IconUserSolid = forwardRef((_ref, ref) => {
|
|
|
5835
5835
|
});
|
|
5836
5836
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
5837
5837
|
|
|
5838
|
-
const _excluded$
|
|
5838
|
+
const _excluded$y = ["testId", "size", "color", "style"];
|
|
5839
5839
|
const IconUserTag = forwardRef((_ref, ref) => {
|
|
5840
5840
|
let {
|
|
5841
5841
|
testId = 'icon-user-tag',
|
|
@@ -5843,7 +5843,7 @@ const IconUserTag = forwardRef((_ref, ref) => {
|
|
|
5843
5843
|
color,
|
|
5844
5844
|
style
|
|
5845
5845
|
} = _ref,
|
|
5846
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5846
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
|
|
5847
5847
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5848
5848
|
const styleProps = {
|
|
5849
5849
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5866,7 +5866,7 @@ const IconUserTag = forwardRef((_ref, ref) => {
|
|
|
5866
5866
|
});
|
|
5867
5867
|
IconUserTag.displayName = 'IconUserTag';
|
|
5868
5868
|
|
|
5869
|
-
const _excluded$
|
|
5869
|
+
const _excluded$x = ["testId", "size", "color", "style"];
|
|
5870
5870
|
const IconUserTie = forwardRef((_ref, ref) => {
|
|
5871
5871
|
let {
|
|
5872
5872
|
testId = 'icon-user-tie',
|
|
@@ -5874,7 +5874,7 @@ const IconUserTie = forwardRef((_ref, ref) => {
|
|
|
5874
5874
|
color,
|
|
5875
5875
|
style
|
|
5876
5876
|
} = _ref,
|
|
5877
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5877
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
5878
5878
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5879
5879
|
const styleProps = {
|
|
5880
5880
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5895,7 +5895,7 @@ const IconUserTie = forwardRef((_ref, ref) => {
|
|
|
5895
5895
|
});
|
|
5896
5896
|
IconUserTie.displayName = 'IconUserTie';
|
|
5897
5897
|
|
|
5898
|
-
const _excluded$
|
|
5898
|
+
const _excluded$w = ["testId", "size", "color", "style"];
|
|
5899
5899
|
const IconUsers = forwardRef((_ref, ref) => {
|
|
5900
5900
|
let {
|
|
5901
5901
|
testId = 'icon-users',
|
|
@@ -5903,7 +5903,7 @@ const IconUsers = forwardRef((_ref, ref) => {
|
|
|
5903
5903
|
color,
|
|
5904
5904
|
style
|
|
5905
5905
|
} = _ref,
|
|
5906
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5906
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
5907
5907
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5908
5908
|
const styleProps = {
|
|
5909
5909
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5924,7 +5924,7 @@ const IconUsers = forwardRef((_ref, ref) => {
|
|
|
5924
5924
|
});
|
|
5925
5925
|
IconUsers.displayName = 'IconUsers';
|
|
5926
5926
|
|
|
5927
|
-
const _excluded$
|
|
5927
|
+
const _excluded$v = ["testId", "size", "color", "style"];
|
|
5928
5928
|
const IconVideo = forwardRef((_ref, ref) => {
|
|
5929
5929
|
let {
|
|
5930
5930
|
testId = 'icon-video',
|
|
@@ -5932,7 +5932,7 @@ const IconVideo = forwardRef((_ref, ref) => {
|
|
|
5932
5932
|
color,
|
|
5933
5933
|
style
|
|
5934
5934
|
} = _ref,
|
|
5935
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5935
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
|
|
5936
5936
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5937
5937
|
const styleProps = {
|
|
5938
5938
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5953,7 +5953,7 @@ const IconVideo = forwardRef((_ref, ref) => {
|
|
|
5953
5953
|
});
|
|
5954
5954
|
IconVideo.displayName = 'IconVideo';
|
|
5955
5955
|
|
|
5956
|
-
const _excluded$
|
|
5956
|
+
const _excluded$u = ["testId", "size", "color", "style"];
|
|
5957
5957
|
const IconVolumeMute = forwardRef((_ref, ref) => {
|
|
5958
5958
|
let {
|
|
5959
5959
|
testId = 'icon-volume-mute',
|
|
@@ -5961,7 +5961,7 @@ const IconVolumeMute = forwardRef((_ref, ref) => {
|
|
|
5961
5961
|
color,
|
|
5962
5962
|
style
|
|
5963
5963
|
} = _ref,
|
|
5964
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5964
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
|
|
5965
5965
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5966
5966
|
const styleProps = {
|
|
5967
5967
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5982,7 +5982,7 @@ const IconVolumeMute = forwardRef((_ref, ref) => {
|
|
|
5982
5982
|
});
|
|
5983
5983
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
5984
5984
|
|
|
5985
|
-
const _excluded$
|
|
5985
|
+
const _excluded$t = ["testId", "size", "color", "style"];
|
|
5986
5986
|
const IconVolume = forwardRef((_ref, ref) => {
|
|
5987
5987
|
let {
|
|
5988
5988
|
testId = 'icon-volume',
|
|
@@ -5990,7 +5990,7 @@ const IconVolume = forwardRef((_ref, ref) => {
|
|
|
5990
5990
|
color,
|
|
5991
5991
|
style
|
|
5992
5992
|
} = _ref,
|
|
5993
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5993
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
5994
5994
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5995
5995
|
const styleProps = {
|
|
5996
5996
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -6011,7 +6011,7 @@ const IconVolume = forwardRef((_ref, ref) => {
|
|
|
6011
6011
|
});
|
|
6012
6012
|
IconVolume.displayName = 'IconVolume';
|
|
6013
6013
|
|
|
6014
|
-
const _excluded$
|
|
6014
|
+
const _excluded$s = ["testId", "size", "color", "style"];
|
|
6015
6015
|
const IconWrench = forwardRef((_ref, ref) => {
|
|
6016
6016
|
let {
|
|
6017
6017
|
testId = 'icon-wrench',
|
|
@@ -6019,7 +6019,7 @@ const IconWrench = forwardRef((_ref, ref) => {
|
|
|
6019
6019
|
color,
|
|
6020
6020
|
style
|
|
6021
6021
|
} = _ref,
|
|
6022
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6022
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
|
|
6023
6023
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
6024
6024
|
const styleProps = {
|
|
6025
6025
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -6175,7 +6175,7 @@ const useTranslation = context => {
|
|
|
6175
6175
|
return translate;
|
|
6176
6176
|
};
|
|
6177
6177
|
|
|
6178
|
-
const _excluded$
|
|
6178
|
+
const _excluded$r = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
6179
6179
|
/**
|
|
6180
6180
|
* `PaginationControls` are two buttons side by side.
|
|
6181
6181
|
*/
|
|
@@ -6188,7 +6188,7 @@ const PaginationControls = _ref => {
|
|
|
6188
6188
|
testId,
|
|
6189
6189
|
scrollTarget
|
|
6190
6190
|
} = _ref,
|
|
6191
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6191
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
6192
6192
|
const __ = useTranslation('PaginationControls');
|
|
6193
6193
|
const {
|
|
6194
6194
|
dataProps
|
|
@@ -6257,7 +6257,7 @@ const LINK_TARGET = {
|
|
|
6257
6257
|
|
|
6258
6258
|
var styles$1d = {"link":"_EiQ4c"};
|
|
6259
6259
|
|
|
6260
|
-
const _excluded$
|
|
6260
|
+
const _excluded$q = ["href", "target", "theme", "onClick", "children"];
|
|
6261
6261
|
const Link = _ref => {
|
|
6262
6262
|
let {
|
|
6263
6263
|
href,
|
|
@@ -6266,7 +6266,7 @@ const Link = _ref => {
|
|
|
6266
6266
|
onClick,
|
|
6267
6267
|
children
|
|
6268
6268
|
} = _ref,
|
|
6269
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6269
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
|
|
6270
6270
|
const {
|
|
6271
6271
|
dataProps
|
|
6272
6272
|
} = getDataProps(otherProps);
|
|
@@ -6692,7 +6692,7 @@ const InlineBannerIcon = ({
|
|
|
6692
6692
|
}
|
|
6693
6693
|
};
|
|
6694
6694
|
|
|
6695
|
-
const _excluded$
|
|
6695
|
+
const _excluded$p = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
6696
6696
|
const InlineBanner = _ref => {
|
|
6697
6697
|
let {
|
|
6698
6698
|
children,
|
|
@@ -6704,7 +6704,7 @@ const InlineBanner = _ref => {
|
|
|
6704
6704
|
secondaryButton,
|
|
6705
6705
|
testId
|
|
6706
6706
|
} = _ref,
|
|
6707
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6707
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$p);
|
|
6708
6708
|
const positionStyles = usePositionStyles(positionProps);
|
|
6709
6709
|
const multiLine = !!title;
|
|
6710
6710
|
const dismissable = !!onClose;
|
|
@@ -7064,7 +7064,7 @@ const ALIGNMENTS = {
|
|
|
7064
7064
|
|
|
7065
7065
|
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"};
|
|
7066
7066
|
|
|
7067
|
-
const _excluded$
|
|
7067
|
+
const _excluded$o = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
|
|
7068
7068
|
const TextComponent = (_ref, ref) => {
|
|
7069
7069
|
let {
|
|
7070
7070
|
children,
|
|
@@ -7075,7 +7075,7 @@ const TextComponent = (_ref, ref) => {
|
|
|
7075
7075
|
testId,
|
|
7076
7076
|
textWrap
|
|
7077
7077
|
} = _ref,
|
|
7078
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7078
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$o);
|
|
7079
7079
|
const {
|
|
7080
7080
|
positionProps,
|
|
7081
7081
|
otherProps
|
|
@@ -7137,7 +7137,7 @@ const Italic = ({
|
|
|
7137
7137
|
}, children);
|
|
7138
7138
|
};
|
|
7139
7139
|
|
|
7140
|
-
const _excluded$
|
|
7140
|
+
const _excluded$n = ["id", "label", "caption", "characterCount", "error", "children"];
|
|
7141
7141
|
const Field = _ref => {
|
|
7142
7142
|
let {
|
|
7143
7143
|
id,
|
|
@@ -7147,7 +7147,7 @@ const Field = _ref => {
|
|
|
7147
7147
|
error,
|
|
7148
7148
|
children
|
|
7149
7149
|
} = _ref,
|
|
7150
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7150
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
|
|
7151
7151
|
const shouldRenderLabel = label || typeof label === 'string';
|
|
7152
7152
|
const CharacterConter = () => React__default.createElement(Inline, {
|
|
7153
7153
|
justifyContent: "space-between",
|
|
@@ -7272,7 +7272,7 @@ const useFieldControllers = ({
|
|
|
7272
7272
|
|
|
7273
7273
|
var styles$10 = {"text-field":"_G6LsE","text-field--invalid":"_2ZYtt","text-field--prefixed":"_rWp7H","text-field--suffixed":"_Xq8xX"};
|
|
7274
7274
|
|
|
7275
|
-
const _excluded$
|
|
7275
|
+
const _excluded$m = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
|
|
7276
7276
|
const useTextField = _ref => {
|
|
7277
7277
|
let {
|
|
7278
7278
|
autoComplete,
|
|
@@ -7294,7 +7294,7 @@ const useTextField = _ref => {
|
|
|
7294
7294
|
ref,
|
|
7295
7295
|
testId
|
|
7296
7296
|
} = _ref,
|
|
7297
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7297
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
|
7298
7298
|
const controllers = useFieldControllers({
|
|
7299
7299
|
error,
|
|
7300
7300
|
id,
|
|
@@ -7431,7 +7431,7 @@ const TimeFieldInput = ({
|
|
|
7431
7431
|
})));
|
|
7432
7432
|
};
|
|
7433
7433
|
|
|
7434
|
-
const _excluded$
|
|
7434
|
+
const _excluded$l = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
7435
7435
|
const TimeFieldDropdownElement = (_ref, ref) => {
|
|
7436
7436
|
let {
|
|
7437
7437
|
placeholder = '9:00 AM',
|
|
@@ -7440,7 +7440,7 @@ const TimeFieldDropdownElement = (_ref, ref) => {
|
|
|
7440
7440
|
prefix,
|
|
7441
7441
|
duration
|
|
7442
7442
|
} = _ref,
|
|
7443
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7443
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
7444
7444
|
const {
|
|
7445
7445
|
inputProps,
|
|
7446
7446
|
fieldProps
|
|
@@ -7892,7 +7892,7 @@ const KebabMenu = ({
|
|
|
7892
7892
|
|
|
7893
7893
|
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"};
|
|
7894
7894
|
|
|
7895
|
-
const _excluded$
|
|
7895
|
+
const _excluded$k = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
|
|
7896
7896
|
const Card = _ref => {
|
|
7897
7897
|
let {
|
|
7898
7898
|
children,
|
|
@@ -7903,7 +7903,7 @@ const Card = _ref => {
|
|
|
7903
7903
|
actions,
|
|
7904
7904
|
testId
|
|
7905
7905
|
} = _ref,
|
|
7906
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7906
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
7907
7907
|
const translate = useTranslation('Card');
|
|
7908
7908
|
const {
|
|
7909
7909
|
positionProps,
|
|
@@ -8280,7 +8280,7 @@ const SKELETON_COMPONENT = {
|
|
|
8280
8280
|
PILL: 'pill'
|
|
8281
8281
|
};
|
|
8282
8282
|
|
|
8283
|
-
const _excluded$
|
|
8283
|
+
const _excluded$j = ["as", "testId", "width", "height"];
|
|
8284
8284
|
const Skeleton = _ref => {
|
|
8285
8285
|
let {
|
|
8286
8286
|
as,
|
|
@@ -8288,7 +8288,7 @@ const Skeleton = _ref => {
|
|
|
8288
8288
|
width,
|
|
8289
8289
|
height
|
|
8290
8290
|
} = _ref,
|
|
8291
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8291
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
8292
8292
|
const positioning = usePositionStyles(positionStyles);
|
|
8293
8293
|
return React__default.createElement("div", {
|
|
8294
8294
|
"data-testid": testId,
|
|
@@ -8352,7 +8352,7 @@ const ModalHeader = ({
|
|
|
8352
8352
|
}, subHeader));
|
|
8353
8353
|
};
|
|
8354
8354
|
|
|
8355
|
-
const _excluded$
|
|
8355
|
+
const _excluded$i = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
|
|
8356
8356
|
const Modal = _ref => {
|
|
8357
8357
|
let {
|
|
8358
8358
|
children,
|
|
@@ -8369,7 +8369,7 @@ const Modal = _ref => {
|
|
|
8369
8369
|
shouldReturnFocusAfterClose = true,
|
|
8370
8370
|
testId
|
|
8371
8371
|
} = _ref,
|
|
8372
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8372
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
8373
8373
|
const style = {
|
|
8374
8374
|
content: {
|
|
8375
8375
|
width,
|
|
@@ -8833,7 +8833,7 @@ const useCheckBoxFieldControllers = ({
|
|
|
8833
8833
|
|
|
8834
8834
|
var styles$G = {"check-box-field":"_Id4qm","check-box-field__caption":"_s9d-m","check-box-field__custom-input":"_kmvBP"};
|
|
8835
8835
|
|
|
8836
|
-
const _excluded$
|
|
8836
|
+
const _excluded$h = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
|
|
8837
8837
|
/** CheckboxField form element. */
|
|
8838
8838
|
const CheckboxField = _ref => {
|
|
8839
8839
|
let {
|
|
@@ -8848,7 +8848,7 @@ const CheckboxField = _ref => {
|
|
|
8848
8848
|
disabled,
|
|
8849
8849
|
testId
|
|
8850
8850
|
} = _ref,
|
|
8851
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8851
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
8852
8852
|
const controllers = useCheckBoxFieldControllers({
|
|
8853
8853
|
name,
|
|
8854
8854
|
id: inputId,
|
|
@@ -8924,7 +8924,7 @@ const useLocalStorage = (key, initialValue) => {
|
|
|
8924
8924
|
|
|
8925
8925
|
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"};
|
|
8926
8926
|
|
|
8927
|
-
const _excluded$
|
|
8927
|
+
const _excluded$g = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
8928
8928
|
const HintModal = _ref => {
|
|
8929
8929
|
let {
|
|
8930
8930
|
header,
|
|
@@ -8935,7 +8935,7 @@ const HintModal = _ref => {
|
|
|
8935
8935
|
primaryButton,
|
|
8936
8936
|
testId
|
|
8937
8937
|
} = _ref,
|
|
8938
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8938
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
8939
8939
|
const __ = useTranslation('HintModal');
|
|
8940
8940
|
const [doNotShowAgain, setDoNotShowAgain] = useState(false);
|
|
8941
8941
|
const [persistedDoNotShow, setPersistedDoNotShow] = useLocalStorage(modalId, false);
|
|
@@ -9171,7 +9171,7 @@ const DataTableEditableCellElement = ({
|
|
|
9171
9171
|
};
|
|
9172
9172
|
const DataTableEditableCell = forwardRef(DataTableEditableCellElement);
|
|
9173
9173
|
|
|
9174
|
-
const _excluded$
|
|
9174
|
+
const _excluded$f = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
9175
9175
|
const DataTableRowComponent = (_ref, ref) => {
|
|
9176
9176
|
let {
|
|
9177
9177
|
children,
|
|
@@ -9182,7 +9182,7 @@ const DataTableRowComponent = (_ref, ref) => {
|
|
|
9182
9182
|
hasDefaultCell = true,
|
|
9183
9183
|
testId
|
|
9184
9184
|
} = _ref,
|
|
9185
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9185
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
|
9186
9186
|
const {
|
|
9187
9187
|
showActionMenu
|
|
9188
9188
|
} = useDataTableContext();
|
|
@@ -9578,7 +9578,7 @@ const DataTableEmptyState = ({
|
|
|
9578
9578
|
}, customEmptyState ? customEmptyState.caption : translate('emptyStateCaption')))));
|
|
9579
9579
|
};
|
|
9580
9580
|
|
|
9581
|
-
const _excluded$
|
|
9581
|
+
const _excluded$e = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns", "emptyState"];
|
|
9582
9582
|
const DataTable = _ref => {
|
|
9583
9583
|
let {
|
|
9584
9584
|
items,
|
|
@@ -9599,7 +9599,7 @@ const DataTable = _ref => {
|
|
|
9599
9599
|
stickyColumns,
|
|
9600
9600
|
emptyState
|
|
9601
9601
|
} = _ref,
|
|
9602
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9602
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
|
9603
9603
|
const {
|
|
9604
9604
|
dataProps
|
|
9605
9605
|
} = getDataProps(otherProps);
|
|
@@ -10010,13 +10010,13 @@ const isReactSelectElement = element => {
|
|
|
10010
10010
|
|
|
10011
10011
|
var styles$v = {"custom-control":"_pXQqq"};
|
|
10012
10012
|
|
|
10013
|
-
const _excluded$
|
|
10013
|
+
const _excluded$d = ["children"];
|
|
10014
10014
|
function CustomControl(_ref) {
|
|
10015
10015
|
var _props$getValue;
|
|
10016
10016
|
let {
|
|
10017
10017
|
children
|
|
10018
10018
|
} = _ref,
|
|
10019
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10019
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
|
|
10020
10020
|
const {
|
|
10021
10021
|
SelectedOptionPrefix
|
|
10022
10022
|
} = props.selectProps.componentsProps;
|
|
@@ -10035,12 +10035,12 @@ function CustomControl(_ref) {
|
|
|
10035
10035
|
}, props)), children)) : children);
|
|
10036
10036
|
}
|
|
10037
10037
|
|
|
10038
|
-
const _excluded$
|
|
10038
|
+
const _excluded$c = ["children"];
|
|
10039
10039
|
function CustomOption(_ref) {
|
|
10040
10040
|
let {
|
|
10041
10041
|
children
|
|
10042
10042
|
} = _ref,
|
|
10043
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10043
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
|
|
10044
10044
|
const {
|
|
10045
10045
|
UserCustomOption
|
|
10046
10046
|
} = props.selectProps.componentsProps;
|
|
@@ -10183,12 +10183,12 @@ const CustomContainer = props => {
|
|
|
10183
10183
|
|
|
10184
10184
|
var styles$u = {"custom-menu-text-field":"_AAUjm","custom-menu-hr":"_mFLK9","custom-menu-div":"_1XpI4"};
|
|
10185
10185
|
|
|
10186
|
-
const _excluded$
|
|
10186
|
+
const _excluded$b = ["children"];
|
|
10187
10187
|
function CustomMenu(_ref) {
|
|
10188
10188
|
let {
|
|
10189
10189
|
children
|
|
10190
10190
|
} = _ref,
|
|
10191
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10191
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
|
10192
10192
|
const {
|
|
10193
10193
|
creatableButton,
|
|
10194
10194
|
onMenuInputFocus,
|
|
@@ -10281,31 +10281,34 @@ function CustomMenu(_ref) {
|
|
|
10281
10281
|
}, __('createButton'))))));
|
|
10282
10282
|
}
|
|
10283
10283
|
|
|
10284
|
-
const
|
|
10285
|
-
|
|
10286
|
-
|
|
10287
|
-
|
|
10288
|
-
|
|
10289
|
-
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10299
|
-
|
|
10300
|
-
|
|
10301
|
-
|
|
10302
|
-
|
|
10303
|
-
|
|
10304
|
-
|
|
10305
|
-
|
|
10306
|
-
|
|
10307
|
-
|
|
10308
|
-
|
|
10284
|
+
const _excluded$a = ["asToolbarFilter", "caption", "disabled", "error", "id", "isClearable", "label", "menuShouldScrollIntoView", "name", "noOptionsMessage", "options", "onBlur", "onChange", "placeholder", "value", "defaultValue", "CustomOption", "SelectedOptionPrefix", "testId", "creatableButton", "onCreate", "isSearchable", "autoFocus"];
|
|
10285
|
+
const useSelectField = _ref => {
|
|
10286
|
+
let {
|
|
10287
|
+
asToolbarFilter = false,
|
|
10288
|
+
caption,
|
|
10289
|
+
disabled,
|
|
10290
|
+
error,
|
|
10291
|
+
id,
|
|
10292
|
+
isClearable = false,
|
|
10293
|
+
label,
|
|
10294
|
+
menuShouldScrollIntoView = false,
|
|
10295
|
+
name,
|
|
10296
|
+
noOptionsMessage,
|
|
10297
|
+
options,
|
|
10298
|
+
onBlur,
|
|
10299
|
+
onChange,
|
|
10300
|
+
placeholder,
|
|
10301
|
+
value,
|
|
10302
|
+
defaultValue,
|
|
10303
|
+
CustomOption: UserCustomOption,
|
|
10304
|
+
SelectedOptionPrefix,
|
|
10305
|
+
testId,
|
|
10306
|
+
creatableButton,
|
|
10307
|
+
onCreate,
|
|
10308
|
+
isSearchable = true,
|
|
10309
|
+
autoFocus
|
|
10310
|
+
} = _ref,
|
|
10311
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$a);
|
|
10309
10312
|
const [isMenuInputFocus, setIsMenuInputFocus] = useState(false);
|
|
10310
10313
|
const onMenuInputFocus = isFocused => setIsMenuInputFocus(isFocused);
|
|
10311
10314
|
const controllers = useSelectFieldControllers({
|
|
@@ -10319,6 +10322,9 @@ const useSelectField = ({
|
|
|
10319
10322
|
});
|
|
10320
10323
|
const hasError = !!controllers.error;
|
|
10321
10324
|
const defaultNoOptionsMessage = noOptionsMessage && typeof noOptionsMessage === 'string' ? () => noOptionsMessage : undefined;
|
|
10325
|
+
const {
|
|
10326
|
+
dataProps
|
|
10327
|
+
} = getDataProps(rest);
|
|
10322
10328
|
const selectProps = {
|
|
10323
10329
|
closeMenuOnScroll: e => {
|
|
10324
10330
|
if (!e.target) {
|
|
@@ -10347,34 +10353,34 @@ const useSelectField = ({
|
|
|
10347
10353
|
Menu: onCreate ? CustomMenu : components.Menu
|
|
10348
10354
|
},
|
|
10349
10355
|
inputId: controllers.id,
|
|
10350
|
-
isClearable
|
|
10356
|
+
isClearable,
|
|
10351
10357
|
isDisabled: disabled,
|
|
10352
10358
|
menuPortalTarget: document.body,
|
|
10353
|
-
menuPlacement:
|
|
10354
|
-
menuPosition:
|
|
10359
|
+
menuPlacement: menuShouldScrollIntoView ? 'bottom' : 'auto',
|
|
10360
|
+
menuPosition: menuShouldScrollIntoView ? 'absolute' : 'fixed',
|
|
10355
10361
|
noOptionsMessage: typeof noOptionsMessage === 'function' ? noOptionsMessage : defaultNoOptionsMessage,
|
|
10356
|
-
menuShouldScrollIntoView:
|
|
10362
|
+
menuShouldScrollIntoView: menuShouldScrollIntoView,
|
|
10357
10363
|
onBlur: controllers.onBlur,
|
|
10358
10364
|
onChange: controllers.onChange,
|
|
10359
10365
|
options,
|
|
10360
10366
|
placeholder,
|
|
10361
10367
|
styles: getSelectStyles({
|
|
10362
10368
|
isInvalid: hasError,
|
|
10363
|
-
asToolbarFilter
|
|
10369
|
+
asToolbarFilter
|
|
10364
10370
|
}),
|
|
10365
10371
|
value: controllers.value,
|
|
10366
10372
|
defaultValue,
|
|
10367
10373
|
menuIsOpen: isMenuInputFocus || undefined,
|
|
10368
|
-
isSearchable
|
|
10374
|
+
isSearchable,
|
|
10369
10375
|
autoFocus
|
|
10370
10376
|
};
|
|
10371
|
-
const fieldProps = {
|
|
10377
|
+
const fieldProps = _extends({
|
|
10372
10378
|
caption,
|
|
10373
10379
|
error: controllers.error,
|
|
10374
10380
|
id: controllers.id,
|
|
10375
10381
|
label,
|
|
10376
10382
|
name
|
|
10377
|
-
};
|
|
10383
|
+
}, dataProps);
|
|
10378
10384
|
return {
|
|
10379
10385
|
selectProps,
|
|
10380
10386
|
fieldProps
|