@7shifts/sous-chef 3.81.0 → 3.82.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/index.js CHANGED
@@ -264,7 +264,7 @@ var kebabize = function kebabize(str) {
264
264
  });
265
265
  };
266
266
 
267
- var _excluded$2_ = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
267
+ var _excluded$30 = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
268
268
  var getPositionProps = function getPositionProps(_ref) {
269
269
  var m = _ref.m,
270
270
  margin = _ref.margin,
@@ -276,7 +276,7 @@ var getPositionProps = function getPositionProps(_ref) {
276
276
  marginBottom = _ref.marginBottom,
277
277
  ml = _ref.ml,
278
278
  marginLeft = _ref.marginLeft,
279
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2_);
279
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$30);
280
280
  return {
281
281
  positionProps: {
282
282
  m: m,
@@ -310,7 +310,7 @@ var getDataProps = function getDataProps(props, config) {
310
310
  });
311
311
  };
312
312
 
313
- var _excluded$2Z = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
313
+ var _excluded$2$ = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
314
314
  /**
315
315
  * Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
316
316
  */
@@ -335,7 +335,7 @@ var Flex = function Flex(_ref) {
335
335
  flexGrow = _ref.flexGrow,
336
336
  testId = _ref.testId,
337
337
  extraClass = _ref.extraClass,
338
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$2Z);
338
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$2$);
339
339
  var _getPositionProps = getPositionProps(rest),
340
340
  positionProps = _getPositionProps.positionProps,
341
341
  otherProps = _getPositionProps.otherProps;
@@ -366,14 +366,14 @@ var Flex = function Flex(_ref) {
366
366
  }));
367
367
  };
368
368
 
369
- var _excluded$2Y = ["alignItems"];
369
+ var _excluded$2_ = ["alignItems"];
370
370
  /**
371
371
  * Layout component to easily stack elements up in a column.
372
372
  */
373
373
  var Stack = function Stack(_ref) {
374
374
  var _ref$alignItems = _ref.alignItems,
375
375
  alignItems = _ref$alignItems === void 0 ? 'stretch' : _ref$alignItems,
376
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2Y);
376
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2_);
377
377
  return React__namespace.createElement(Flex, _extends({}, props, {
378
378
  alignItems: alignItems,
379
379
  direction: "column"
@@ -382,7 +382,7 @@ var Stack = function Stack(_ref) {
382
382
 
383
383
  var styles$1m = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
384
384
 
385
- var _excluded$2X = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
385
+ var _excluded$2Z = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
386
386
  /**
387
387
  * Used when you want to allow the user to turn some information ON and OFF.
388
388
  *
@@ -397,7 +397,7 @@ var Toggle = function Toggle(_ref) {
397
397
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
398
398
  id = _ref.id,
399
399
  testId = _ref.testId,
400
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2X);
400
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2Z);
401
401
  var _getDataProps = getDataProps(otherProps),
402
402
  dataProps = _getDataProps.dataProps;
403
403
  return React__default["default"].createElement(Stack, {
@@ -926,7 +926,7 @@ var COMPONENT_NAMES = {
926
926
  BUTTON: 'BUTTON'
927
927
  };
928
928
 
929
- var _excluded$2W = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
929
+ var _excluded$2Y = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
930
930
  _excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
931
931
  var ButtonComponent = function ButtonComponent(_ref, ref) {
932
932
  var _classnames;
@@ -951,7 +951,7 @@ var ButtonComponent = function ButtonComponent(_ref, ref) {
951
951
  target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
952
952
  testId = _ref.testId,
953
953
  size = _ref.size,
954
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
954
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$2Y);
955
955
  var _getPositionProps = getPositionProps(rest),
956
956
  positionProps = _getPositionProps.positionProps,
957
957
  otherProps = _getPositionProps.otherProps;
@@ -1075,14 +1075,14 @@ var useIsInsideComponent = function useIsInsideComponent(parentComponentName) {
1075
1075
  return componentName === parentComponentName;
1076
1076
  };
1077
1077
 
1078
- var _excluded$2V = ["testId", "size", "color", "style"];
1078
+ var _excluded$2X = ["testId", "size", "color", "style"];
1079
1079
  var IconInfoCircle = React.forwardRef(function (_ref, ref) {
1080
1080
  var _ref$testId = _ref.testId,
1081
1081
  testId = _ref$testId === void 0 ? 'icon-info-circle' : _ref$testId,
1082
1082
  size = _ref.size,
1083
1083
  color = _ref.color,
1084
1084
  style = _ref.style,
1085
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
1085
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2X);
1086
1086
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1087
1087
  var styleProps = {
1088
1088
  size: !size && isInsideButton ? 'medium' : size,
@@ -1105,14 +1105,14 @@ var IconInfoCircle = React.forwardRef(function (_ref, ref) {
1105
1105
  });
1106
1106
  IconInfoCircle.displayName = 'IconInfoCircle';
1107
1107
 
1108
- var _excluded$2U = ["testId", "size", "color", "style"];
1108
+ var _excluded$2W = ["testId", "size", "color", "style"];
1109
1109
  var IconAnalytics = React.forwardRef(function (_ref, ref) {
1110
1110
  var _ref$testId = _ref.testId,
1111
1111
  testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
1112
1112
  size = _ref.size,
1113
1113
  color = _ref.color,
1114
1114
  style = _ref.style,
1115
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
1115
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
1116
1116
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1117
1117
  var styleProps = {
1118
1118
  size: !size && isInsideButton ? 'medium' : size,
@@ -1135,14 +1135,14 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
1135
1135
  });
1136
1136
  IconAnalytics.displayName = 'IconAnalytics';
1137
1137
 
1138
- var _excluded$2T = ["testId", "size", "color", "style"];
1138
+ var _excluded$2V = ["testId", "size", "color", "style"];
1139
1139
  var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1140
1140
  var _ref$testId = _ref.testId,
1141
1141
  testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
1142
1142
  size = _ref.size,
1143
1143
  color = _ref.color,
1144
1144
  style = _ref.style,
1145
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
1145
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
1146
1146
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1147
1147
  var styleProps = {
1148
1148
  size: !size && isInsideButton ? 'medium' : size,
@@ -1163,14 +1163,14 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1163
1163
  });
1164
1164
  IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
1165
1165
 
1166
- var _excluded$2S = ["testId", "size", "color", "style"];
1166
+ var _excluded$2U = ["testId", "size", "color", "style"];
1167
1167
  var IconArrowDown = React.forwardRef(function (_ref, ref) {
1168
1168
  var _ref$testId = _ref.testId,
1169
1169
  testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
1170
1170
  size = _ref.size,
1171
1171
  color = _ref.color,
1172
1172
  style = _ref.style,
1173
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
1173
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
1174
1174
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1175
1175
  var styleProps = {
1176
1176
  size: !size && isInsideButton ? 'medium' : size,
@@ -1193,14 +1193,14 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
1193
1193
  });
1194
1194
  IconArrowDown.displayName = 'IconArrowDown';
1195
1195
 
1196
- var _excluded$2R = ["testId", "size", "color", "style"];
1196
+ var _excluded$2T = ["testId", "size", "color", "style"];
1197
1197
  var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1198
1198
  var _ref$testId = _ref.testId,
1199
1199
  testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
1200
1200
  size = _ref.size,
1201
1201
  color = _ref.color,
1202
1202
  style = _ref.style,
1203
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
1203
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
1204
1204
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1205
1205
  var styleProps = {
1206
1206
  size: !size && isInsideButton ? 'medium' : size,
@@ -1223,14 +1223,14 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1223
1223
  });
1224
1224
  IconArrowLeft.displayName = 'IconArrowLeft';
1225
1225
 
1226
- var _excluded$2Q = ["testId", "size", "color", "style"];
1226
+ var _excluded$2S = ["testId", "size", "color", "style"];
1227
1227
  var IconArrowRight = React.forwardRef(function (_ref, ref) {
1228
1228
  var _ref$testId = _ref.testId,
1229
1229
  testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
1230
1230
  size = _ref.size,
1231
1231
  color = _ref.color,
1232
1232
  style = _ref.style,
1233
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
1233
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
1234
1234
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1235
1235
  var styleProps = {
1236
1236
  size: !size && isInsideButton ? 'medium' : size,
@@ -1253,14 +1253,14 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
1253
1253
  });
1254
1254
  IconArrowRight.displayName = 'IconArrowRight';
1255
1255
 
1256
- var _excluded$2P = ["testId", "size", "color", "style"];
1256
+ var _excluded$2R = ["testId", "size", "color", "style"];
1257
1257
  var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1258
1258
  var _ref$testId = _ref.testId,
1259
1259
  testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
1260
1260
  size = _ref.size,
1261
1261
  color = _ref.color,
1262
1262
  style = _ref.style,
1263
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
1263
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
1264
1264
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1265
1265
  var styleProps = {
1266
1266
  size: !size && isInsideButton ? 'medium' : size,
@@ -1281,14 +1281,14 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1281
1281
  });
1282
1282
  IconArrowToTop.displayName = 'IconArrowToTop';
1283
1283
 
1284
- var _excluded$2O = ["testId", "size", "color", "style"];
1284
+ var _excluded$2Q = ["testId", "size", "color", "style"];
1285
1285
  var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1286
1286
  var _ref$testId = _ref.testId,
1287
1287
  testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
1288
1288
  size = _ref.size,
1289
1289
  color = _ref.color,
1290
1290
  style = _ref.style,
1291
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
1291
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
1292
1292
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1293
1293
  var styleProps = {
1294
1294
  size: !size && isInsideButton ? 'medium' : size,
@@ -1317,14 +1317,14 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1317
1317
  });
1318
1318
  IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
1319
1319
 
1320
- var _excluded$2N = ["testId", "size", "color", "style"];
1320
+ var _excluded$2P = ["testId", "size", "color", "style"];
1321
1321
  var IconArrowUp = React.forwardRef(function (_ref, ref) {
1322
1322
  var _ref$testId = _ref.testId,
1323
1323
  testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
1324
1324
  size = _ref.size,
1325
1325
  color = _ref.color,
1326
1326
  style = _ref.style,
1327
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
1327
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
1328
1328
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1329
1329
  var styleProps = {
1330
1330
  size: !size && isInsideButton ? 'medium' : size,
@@ -1347,14 +1347,14 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
1347
1347
  });
1348
1348
  IconArrowUp.displayName = 'IconArrowUp';
1349
1349
 
1350
- var _excluded$2M = ["testId", "size", "color", "style"];
1350
+ var _excluded$2O = ["testId", "size", "color", "style"];
1351
1351
  var IconAward = React.forwardRef(function (_ref, ref) {
1352
1352
  var _ref$testId = _ref.testId,
1353
1353
  testId = _ref$testId === void 0 ? 'icon-award' : _ref$testId,
1354
1354
  size = _ref.size,
1355
1355
  color = _ref.color,
1356
1356
  style = _ref.style,
1357
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
1357
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
1358
1358
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1359
1359
  var styleProps = {
1360
1360
  size: !size && isInsideButton ? 'medium' : size,
@@ -1377,14 +1377,14 @@ var IconAward = React.forwardRef(function (_ref, ref) {
1377
1377
  });
1378
1378
  IconAward.displayName = 'IconAward';
1379
1379
 
1380
- var _excluded$2L = ["testId", "size", "color", "style"];
1380
+ var _excluded$2N = ["testId", "size", "color", "style"];
1381
1381
  var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
1382
1382
  var _ref$testId = _ref.testId,
1383
1383
  testId = _ref$testId === void 0 ? 'icon-awful-monochromatic' : _ref$testId,
1384
1384
  size = _ref.size,
1385
1385
  color = _ref.color,
1386
1386
  style = _ref.style,
1387
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
1387
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
1388
1388
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1389
1389
  var styleProps = {
1390
1390
  size: !size && isInsideButton ? 'medium' : size,
@@ -1437,14 +1437,14 @@ var IconAwfulMonochromatic = React.forwardRef(function (_ref, ref) {
1437
1437
  });
1438
1438
  IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
1439
1439
 
1440
- var _excluded$2K = ["testId", "size", "color", "style"];
1440
+ var _excluded$2M = ["testId", "size", "color", "style"];
1441
1441
  var IconAwful = React.forwardRef(function (_ref, ref) {
1442
1442
  var _ref$testId = _ref.testId,
1443
1443
  testId = _ref$testId === void 0 ? 'icon-awful' : _ref$testId,
1444
1444
  size = _ref.size,
1445
1445
  color = _ref.color,
1446
1446
  style = _ref.style,
1447
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
1447
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
1448
1448
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1449
1449
  var styleProps = {
1450
1450
  size: !size && isInsideButton ? 'medium' : size,
@@ -1485,14 +1485,14 @@ var IconAwful = React.forwardRef(function (_ref, ref) {
1485
1485
  });
1486
1486
  IconAwful.displayName = 'IconAwful';
1487
1487
 
1488
- var _excluded$2J = ["testId", "size", "color", "style"];
1488
+ var _excluded$2L = ["testId", "size", "color", "style"];
1489
1489
  var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
1490
1490
  var _ref$testId = _ref.testId,
1491
1491
  testId = _ref$testId === void 0 ? 'icon-bad-monochromatic' : _ref$testId,
1492
1492
  size = _ref.size,
1493
1493
  color = _ref.color,
1494
1494
  style = _ref.style,
1495
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
1495
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
1496
1496
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1497
1497
  var styleProps = {
1498
1498
  size: !size && isInsideButton ? 'medium' : size,
@@ -1531,14 +1531,14 @@ var IconBadMonochromatic = React.forwardRef(function (_ref, ref) {
1531
1531
  });
1532
1532
  IconBadMonochromatic.displayName = 'IconBadMonochromatic';
1533
1533
 
1534
- var _excluded$2I = ["testId", "size", "color", "style"];
1534
+ var _excluded$2K = ["testId", "size", "color", "style"];
1535
1535
  var IconBad = React.forwardRef(function (_ref, ref) {
1536
1536
  var _ref$testId = _ref.testId,
1537
1537
  testId = _ref$testId === void 0 ? 'icon-bad' : _ref$testId,
1538
1538
  size = _ref.size,
1539
1539
  color = _ref.color,
1540
1540
  style = _ref.style,
1541
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
1541
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
1542
1542
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1543
1543
  var styleProps = {
1544
1544
  size: !size && isInsideButton ? 'medium' : size,
@@ -1565,14 +1565,14 @@ var IconBad = React.forwardRef(function (_ref, ref) {
1565
1565
  });
1566
1566
  IconBad.displayName = 'IconBad';
1567
1567
 
1568
- var _excluded$2H = ["testId", "size", "color", "style"];
1568
+ var _excluded$2J = ["testId", "size", "color", "style"];
1569
1569
  var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
1570
1570
  var _ref$testId = _ref.testId,
1571
1571
  testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
1572
1572
  size = _ref.size,
1573
1573
  color = _ref.color,
1574
1574
  style = _ref.style,
1575
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
1575
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
1576
1576
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1577
1577
  var styleProps = {
1578
1578
  size: !size && isInsideButton ? 'medium' : size,
@@ -1600,14 +1600,14 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
1600
1600
  });
1601
1601
  IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
1602
1602
 
1603
- var _excluded$2G = ["testId", "size", "color", "style"];
1603
+ var _excluded$2I = ["testId", "size", "color", "style"];
1604
1604
  var IconBalanceScale = React.forwardRef(function (_ref, ref) {
1605
1605
  var _ref$testId = _ref.testId,
1606
1606
  testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
1607
1607
  size = _ref.size,
1608
1608
  color = _ref.color,
1609
1609
  style = _ref.style,
1610
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
1610
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
1611
1611
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1612
1612
  var styleProps = {
1613
1613
  size: !size && isInsideButton ? 'medium' : size,
@@ -1635,14 +1635,14 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
1635
1635
  });
1636
1636
  IconBalanceScale.displayName = 'IconBalanceScale';
1637
1637
 
1638
- var _excluded$2F = ["testId", "size", "color", "style"];
1638
+ var _excluded$2H = ["testId", "size", "color", "style"];
1639
1639
  var IconBan = React.forwardRef(function (_ref, ref) {
1640
1640
  var _ref$testId = _ref.testId,
1641
1641
  testId = _ref$testId === void 0 ? 'icon-ban' : _ref$testId,
1642
1642
  size = _ref.size,
1643
1643
  color = _ref.color,
1644
1644
  style = _ref.style,
1645
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
1645
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
1646
1646
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1647
1647
  var styleProps = {
1648
1648
  size: !size && isInsideButton ? 'medium' : size,
@@ -1663,14 +1663,14 @@ var IconBan = React.forwardRef(function (_ref, ref) {
1663
1663
  });
1664
1664
  IconBan.displayName = 'IconBan';
1665
1665
 
1666
- var _excluded$2E = ["testId", "size", "color", "style"];
1666
+ var _excluded$2G = ["testId", "size", "color", "style"];
1667
1667
  var IconBarsH = React.forwardRef(function (_ref, ref) {
1668
1668
  var _ref$testId = _ref.testId,
1669
1669
  testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
1670
1670
  size = _ref.size,
1671
1671
  color = _ref.color,
1672
1672
  style = _ref.style,
1673
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
1673
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
1674
1674
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1675
1675
  var styleProps = {
1676
1676
  size: !size && isInsideButton ? 'medium' : size,
@@ -1693,14 +1693,14 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
1693
1693
  });
1694
1694
  IconBarsH.displayName = 'IconBarsH';
1695
1695
 
1696
- var _excluded$2D = ["testId", "size", "color", "style"];
1696
+ var _excluded$2F = ["testId", "size", "color", "style"];
1697
1697
  var IconBarsV = React.forwardRef(function (_ref, ref) {
1698
1698
  var _ref$testId = _ref.testId,
1699
1699
  testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
1700
1700
  size = _ref.size,
1701
1701
  color = _ref.color,
1702
1702
  style = _ref.style,
1703
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
1703
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
1704
1704
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1705
1705
  var styleProps = {
1706
1706
  size: !size && isInsideButton ? 'medium' : size,
@@ -1721,14 +1721,14 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
1721
1721
  });
1722
1722
  IconBarsV.displayName = 'IconBarsV';
1723
1723
 
1724
- var _excluded$2C = ["testId", "size", "color", "style"];
1724
+ var _excluded$2E = ["testId", "size", "color", "style"];
1725
1725
  var IconBell = React.forwardRef(function (_ref, ref) {
1726
1726
  var _ref$testId = _ref.testId,
1727
1727
  testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
1728
1728
  size = _ref.size,
1729
1729
  color = _ref.color,
1730
1730
  style = _ref.style,
1731
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
1731
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
1732
1732
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1733
1733
  var styleProps = {
1734
1734
  size: !size && isInsideButton ? 'medium' : size,
@@ -1751,14 +1751,14 @@ var IconBell = React.forwardRef(function (_ref, ref) {
1751
1751
  });
1752
1752
  IconBell.displayName = 'IconBell';
1753
1753
 
1754
- var _excluded$2B = ["testId", "size", "color", "style"];
1754
+ var _excluded$2D = ["testId", "size", "color", "style"];
1755
1755
  var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
1756
1756
  var _ref$testId = _ref.testId,
1757
1757
  testId = _ref$testId === void 0 ? 'icon-birthday-cake' : _ref$testId,
1758
1758
  size = _ref.size,
1759
1759
  color = _ref.color,
1760
1760
  style = _ref.style,
1761
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
1761
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
1762
1762
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1763
1763
  var styleProps = {
1764
1764
  size: !size && isInsideButton ? 'medium' : size,
@@ -1779,14 +1779,14 @@ var IconBirthdayCake = React.forwardRef(function (_ref, ref) {
1779
1779
  });
1780
1780
  IconBirthdayCake.displayName = 'IconBirthdayCake';
1781
1781
 
1782
- var _excluded$2A = ["testId", "size", "color", "style"];
1782
+ var _excluded$2C = ["testId", "size", "color", "style"];
1783
1783
  var IconBold = React.forwardRef(function (_ref, ref) {
1784
1784
  var _ref$testId = _ref.testId,
1785
1785
  testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
1786
1786
  size = _ref.size,
1787
1787
  color = _ref.color,
1788
1788
  style = _ref.style,
1789
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
1789
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
1790
1790
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1791
1791
  var styleProps = {
1792
1792
  size: !size && isInsideButton ? 'medium' : size,
@@ -1807,14 +1807,14 @@ var IconBold = React.forwardRef(function (_ref, ref) {
1807
1807
  });
1808
1808
  IconBold.displayName = 'IconBold';
1809
1809
 
1810
- var _excluded$2z = ["testId", "size", "color", "style"];
1810
+ var _excluded$2B = ["testId", "size", "color", "style"];
1811
1811
  var IconBolt = React.forwardRef(function (_ref, ref) {
1812
1812
  var _ref$testId = _ref.testId,
1813
1813
  testId = _ref$testId === void 0 ? 'icon-bolt' : _ref$testId,
1814
1814
  size = _ref.size,
1815
1815
  color = _ref.color,
1816
1816
  style = _ref.style,
1817
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
1817
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
1818
1818
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1819
1819
  var styleProps = {
1820
1820
  size: !size && isInsideButton ? 'medium' : size,
@@ -1842,14 +1842,14 @@ var IconBolt = React.forwardRef(function (_ref, ref) {
1842
1842
  });
1843
1843
  IconBolt.displayName = 'IconBolt';
1844
1844
 
1845
- var _excluded$2y = ["testId", "size", "color", "style"];
1845
+ var _excluded$2A = ["testId", "size", "color", "style"];
1846
1846
  var IconBook = React.forwardRef(function (_ref, ref) {
1847
1847
  var _ref$testId = _ref.testId,
1848
1848
  testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
1849
1849
  size = _ref.size,
1850
1850
  color = _ref.color,
1851
1851
  style = _ref.style,
1852
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
1852
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
1853
1853
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1854
1854
  var styleProps = {
1855
1855
  size: !size && isInsideButton ? 'medium' : size,
@@ -1872,14 +1872,14 @@ var IconBook = React.forwardRef(function (_ref, ref) {
1872
1872
  });
1873
1873
  IconBook.displayName = 'IconBook';
1874
1874
 
1875
- var _excluded$2x = ["testId", "size", "color", "style"];
1875
+ var _excluded$2z = ["testId", "size", "color", "style"];
1876
1876
  var IconBriefcase = React.forwardRef(function (_ref, ref) {
1877
1877
  var _ref$testId = _ref.testId,
1878
1878
  testId = _ref$testId === void 0 ? 'icon-briefcase' : _ref$testId,
1879
1879
  size = _ref.size,
1880
1880
  color = _ref.color,
1881
1881
  style = _ref.style,
1882
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
1882
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
1883
1883
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1884
1884
  var styleProps = {
1885
1885
  size: !size && isInsideButton ? 'medium' : size,
@@ -1900,14 +1900,14 @@ var IconBriefcase = React.forwardRef(function (_ref, ref) {
1900
1900
  });
1901
1901
  IconBriefcase.displayName = 'IconBriefcase';
1902
1902
 
1903
- var _excluded$2w = ["testId", "size", "color", "style"];
1903
+ var _excluded$2y = ["testId", "size", "color", "style"];
1904
1904
  var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
1905
1905
  var _ref$testId = _ref.testId,
1906
1906
  testId = _ref$testId === void 0 ? 'icon-bullseye-arrow' : _ref$testId,
1907
1907
  size = _ref.size,
1908
1908
  color = _ref.color,
1909
1909
  style = _ref.style,
1910
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
1910
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
1911
1911
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1912
1912
  var styleProps = {
1913
1913
  size: !size && isInsideButton ? 'medium' : size,
@@ -1930,14 +1930,14 @@ var IconBullseyeArrow = React.forwardRef(function (_ref, ref) {
1930
1930
  });
1931
1931
  IconBullseyeArrow.displayName = 'IconBullseyeArrow';
1932
1932
 
1933
- var _excluded$2v = ["testId", "size", "color", "style"];
1933
+ var _excluded$2x = ["testId", "size", "color", "style"];
1934
1934
  var IconCalculator = React.forwardRef(function (_ref, ref) {
1935
1935
  var _ref$testId = _ref.testId,
1936
1936
  testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
1937
1937
  size = _ref.size,
1938
1938
  color = _ref.color,
1939
1939
  style = _ref.style,
1940
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
1940
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
1941
1941
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1942
1942
  var styleProps = {
1943
1943
  size: !size && isInsideButton ? 'medium' : size,
@@ -1960,14 +1960,14 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
1960
1960
  });
1961
1961
  IconCalculator.displayName = 'IconCalculator';
1962
1962
 
1963
- var _excluded$2u = ["testId", "size", "color", "style"];
1963
+ var _excluded$2w = ["testId", "size", "color", "style"];
1964
1964
  var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
1965
1965
  var _ref$testId = _ref.testId,
1966
1966
  testId = _ref$testId === void 0 ? 'icon-calendar-alt' : _ref$testId,
1967
1967
  size = _ref.size,
1968
1968
  color = _ref.color,
1969
1969
  style = _ref.style,
1970
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
1970
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
1971
1971
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1972
1972
  var styleProps = {
1973
1973
  size: !size && isInsideButton ? 'medium' : size,
@@ -1990,14 +1990,14 @@ var IconCalendarAlt = React.forwardRef(function (_ref, ref) {
1990
1990
  });
1991
1991
  IconCalendarAlt.displayName = 'IconCalendarAlt';
1992
1992
 
1993
- var _excluded$2t = ["testId", "size", "color", "style"];
1993
+ var _excluded$2v = ["testId", "size", "color", "style"];
1994
1994
  var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
1995
1995
  var _ref$testId = _ref.testId,
1996
1996
  testId = _ref$testId === void 0 ? 'icon-calendar-check' : _ref$testId,
1997
1997
  size = _ref.size,
1998
1998
  color = _ref.color,
1999
1999
  style = _ref.style,
2000
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
2000
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
2001
2001
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2002
2002
  var styleProps = {
2003
2003
  size: !size && isInsideButton ? 'medium' : size,
@@ -2020,14 +2020,14 @@ var IconCalendarCheck = React.forwardRef(function (_ref, ref) {
2020
2020
  });
2021
2021
  IconCalendarCheck.displayName = 'IconCalendarCheck';
2022
2022
 
2023
- var _excluded$2s = ["testId", "size", "color", "style"];
2023
+ var _excluded$2u = ["testId", "size", "color", "style"];
2024
2024
  var IconCalendarDay = React.forwardRef(function (_ref, ref) {
2025
2025
  var _ref$testId = _ref.testId,
2026
2026
  testId = _ref$testId === void 0 ? 'icon-calendar-day' : _ref$testId,
2027
2027
  size = _ref.size,
2028
2028
  color = _ref.color,
2029
2029
  style = _ref.style,
2030
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
2030
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
2031
2031
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2032
2032
  var styleProps = {
2033
2033
  size: !size && isInsideButton ? 'medium' : size,
@@ -2055,14 +2055,14 @@ var IconCalendarDay = React.forwardRef(function (_ref, ref) {
2055
2055
  });
2056
2056
  IconCalendarDay.displayName = 'IconCalendarDay';
2057
2057
 
2058
- var _excluded$2r = ["testId", "size", "color", "style"];
2058
+ var _excluded$2t = ["testId", "size", "color", "style"];
2059
2059
  var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
2060
2060
  var _ref$testId = _ref.testId,
2061
2061
  testId = _ref$testId === void 0 ? 'icon-calendar-exclamation' : _ref$testId,
2062
2062
  size = _ref.size,
2063
2063
  color = _ref.color,
2064
2064
  style = _ref.style,
2065
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
2065
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
2066
2066
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2067
2067
  var styleProps = {
2068
2068
  size: !size && isInsideButton ? 'medium' : size,
@@ -2083,14 +2083,14 @@ var IconCalendarExclamation = React.forwardRef(function (_ref, ref) {
2083
2083
  });
2084
2084
  IconCalendarExclamation.displayName = 'IconCalendarExclamation';
2085
2085
 
2086
- var _excluded$2q = ["testId", "size", "color", "style"];
2086
+ var _excluded$2s = ["testId", "size", "color", "style"];
2087
2087
  var IconCalendarStar = React.forwardRef(function (_ref, ref) {
2088
2088
  var _ref$testId = _ref.testId,
2089
2089
  testId = _ref$testId === void 0 ? 'icon-calendar-star' : _ref$testId,
2090
2090
  size = _ref.size,
2091
2091
  color = _ref.color,
2092
2092
  style = _ref.style,
2093
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
2093
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
2094
2094
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2095
2095
  var styleProps = {
2096
2096
  size: !size && isInsideButton ? 'medium' : size,
@@ -2111,14 +2111,14 @@ var IconCalendarStar = React.forwardRef(function (_ref, ref) {
2111
2111
  });
2112
2112
  IconCalendarStar.displayName = 'IconCalendarStar';
2113
2113
 
2114
- var _excluded$2p = ["testId", "size", "color", "style"];
2114
+ var _excluded$2r = ["testId", "size", "color", "style"];
2115
2115
  var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
2116
2116
  var _ref$testId = _ref.testId,
2117
2117
  testId = _ref$testId === void 0 ? 'icon-calendar-tomorrow' : _ref$testId,
2118
2118
  size = _ref.size,
2119
2119
  color = _ref.color,
2120
2120
  style = _ref.style,
2121
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
2121
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
2122
2122
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2123
2123
  var styleProps = {
2124
2124
  size: !size && isInsideButton ? 'medium' : size,
@@ -2148,14 +2148,14 @@ var IconCalendarTomorrow = React.forwardRef(function (_ref, ref) {
2148
2148
  });
2149
2149
  IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
2150
2150
 
2151
- var _excluded$2o = ["testId", "size", "color", "style"];
2151
+ var _excluded$2q = ["testId", "size", "color", "style"];
2152
2152
  var IconCalendar = React.forwardRef(function (_ref, ref) {
2153
2153
  var _ref$testId = _ref.testId,
2154
2154
  testId = _ref$testId === void 0 ? 'icon-calendar' : _ref$testId,
2155
2155
  size = _ref.size,
2156
2156
  color = _ref.color,
2157
2157
  style = _ref.style,
2158
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
2158
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
2159
2159
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2160
2160
  var styleProps = {
2161
2161
  size: !size && isInsideButton ? 'medium' : size,
@@ -2178,14 +2178,14 @@ var IconCalendar = React.forwardRef(function (_ref, ref) {
2178
2178
  });
2179
2179
  IconCalendar.displayName = 'IconCalendar';
2180
2180
 
2181
- var _excluded$2n = ["testId", "size", "color", "style"];
2181
+ var _excluded$2p = ["testId", "size", "color", "style"];
2182
2182
  var IconCameraSlash = React.forwardRef(function (_ref, ref) {
2183
2183
  var _ref$testId = _ref.testId,
2184
2184
  testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
2185
2185
  size = _ref.size,
2186
2186
  color = _ref.color,
2187
2187
  style = _ref.style,
2188
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
2188
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
2189
2189
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2190
2190
  var styleProps = {
2191
2191
  size: !size && isInsideButton ? 'medium' : size,
@@ -2209,14 +2209,14 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
2209
2209
  });
2210
2210
  IconCameraSlash.displayName = 'IconCameraSlash';
2211
2211
 
2212
- var _excluded$2m = ["testId", "size", "color", "style"];
2212
+ var _excluded$2o = ["testId", "size", "color", "style"];
2213
2213
  var IconCamera = React.forwardRef(function (_ref, ref) {
2214
2214
  var _ref$testId = _ref.testId,
2215
2215
  testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
2216
2216
  size = _ref.size,
2217
2217
  color = _ref.color,
2218
2218
  style = _ref.style,
2219
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
2219
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
2220
2220
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2221
2221
  var styleProps = {
2222
2222
  size: !size && isInsideButton ? 'medium' : size,
@@ -2237,14 +2237,14 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
2237
2237
  });
2238
2238
  IconCamera.displayName = 'IconCamera';
2239
2239
 
2240
- var _excluded$2l = ["testId", "size", "color", "style"];
2240
+ var _excluded$2n = ["testId", "size", "color", "style"];
2241
2241
  var IconCashRegister = React.forwardRef(function (_ref, ref) {
2242
2242
  var _ref$testId = _ref.testId,
2243
2243
  testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
2244
2244
  size = _ref.size,
2245
2245
  color = _ref.color,
2246
2246
  style = _ref.style,
2247
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
2247
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
2248
2248
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2249
2249
  var styleProps = {
2250
2250
  size: !size && isInsideButton ? 'medium' : size,
@@ -2265,14 +2265,14 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
2265
2265
  });
2266
2266
  IconCashRegister.displayName = 'IconCashRegister';
2267
2267
 
2268
- var _excluded$2k = ["testId", "size", "color", "style"];
2268
+ var _excluded$2m = ["testId", "size", "color", "style"];
2269
2269
  var IconChartBar = React.forwardRef(function (_ref, ref) {
2270
2270
  var _ref$testId = _ref.testId,
2271
2271
  testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
2272
2272
  size = _ref.size,
2273
2273
  color = _ref.color,
2274
2274
  style = _ref.style,
2275
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
2275
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
2276
2276
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2277
2277
  var styleProps = {
2278
2278
  size: !size && isInsideButton ? 'medium' : size,
@@ -2295,14 +2295,14 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
2295
2295
  });
2296
2296
  IconChartBar.displayName = 'IconChartBar';
2297
2297
 
2298
- var _excluded$2j = ["testId", "size", "color", "style"];
2298
+ var _excluded$2l = ["testId", "size", "color", "style"];
2299
2299
  var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
2300
2300
  var _ref$testId = _ref.testId,
2301
2301
  testId = _ref$testId === void 0 ? 'icon-check-circle-incomplete' : _ref$testId,
2302
2302
  size = _ref.size,
2303
2303
  color = _ref.color,
2304
2304
  style = _ref.style,
2305
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
2305
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
2306
2306
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2307
2307
  var styleProps = {
2308
2308
  size: !size && isInsideButton ? 'medium' : size,
@@ -2323,14 +2323,14 @@ var IconCheckCircleIncomplete = React.forwardRef(function (_ref, ref) {
2323
2323
  });
2324
2324
  IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
2325
2325
 
2326
- var _excluded$2i = ["testId", "size", "color", "style"];
2326
+ var _excluded$2k = ["testId", "size", "color", "style"];
2327
2327
  var IconCheck = React.forwardRef(function (_ref, ref) {
2328
2328
  var _ref$testId = _ref.testId,
2329
2329
  testId = _ref$testId === void 0 ? 'icon-check' : _ref$testId,
2330
2330
  size = _ref.size,
2331
2331
  color = _ref.color,
2332
2332
  style = _ref.style,
2333
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
2333
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
2334
2334
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2335
2335
  var styleProps = {
2336
2336
  size: !size && isInsideButton ? 'medium' : size,
@@ -2353,14 +2353,14 @@ var IconCheck = React.forwardRef(function (_ref, ref) {
2353
2353
  });
2354
2354
  IconCheck.displayName = 'IconCheck';
2355
2355
 
2356
- var _excluded$2h = ["testId", "size", "color", "style"];
2356
+ var _excluded$2j = ["testId", "size", "color", "style"];
2357
2357
  var IconChevronDown = React.forwardRef(function (_ref, ref) {
2358
2358
  var _ref$testId = _ref.testId,
2359
2359
  testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
2360
2360
  size = _ref.size,
2361
2361
  color = _ref.color,
2362
2362
  style = _ref.style,
2363
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
2363
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
2364
2364
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2365
2365
  var styleProps = {
2366
2366
  size: !size && isInsideButton ? 'medium' : size,
@@ -2383,14 +2383,14 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
2383
2383
  });
2384
2384
  IconChevronDown.displayName = 'IconChevronDown';
2385
2385
 
2386
- var _excluded$2g = ["testId", "size", "color", "style"];
2386
+ var _excluded$2i = ["testId", "size", "color", "style"];
2387
2387
  var IconChevronLeft = React.forwardRef(function (_ref, ref) {
2388
2388
  var _ref$testId = _ref.testId,
2389
2389
  testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
2390
2390
  size = _ref.size,
2391
2391
  color = _ref.color,
2392
2392
  style = _ref.style,
2393
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
2393
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
2394
2394
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2395
2395
  var styleProps = {
2396
2396
  size: !size && isInsideButton ? 'medium' : size,
@@ -2413,14 +2413,14 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
2413
2413
  });
2414
2414
  IconChevronLeft.displayName = 'IconChevronLeft';
2415
2415
 
2416
- var _excluded$2f = ["testId", "size", "color", "style"];
2416
+ var _excluded$2h = ["testId", "size", "color", "style"];
2417
2417
  var IconChevronRight = React.forwardRef(function (_ref, ref) {
2418
2418
  var _ref$testId = _ref.testId,
2419
2419
  testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
2420
2420
  size = _ref.size,
2421
2421
  color = _ref.color,
2422
2422
  style = _ref.style,
2423
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
2423
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
2424
2424
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2425
2425
  var styleProps = {
2426
2426
  size: !size && isInsideButton ? 'medium' : size,
@@ -2443,14 +2443,14 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
2443
2443
  });
2444
2444
  IconChevronRight.displayName = 'IconChevronRight';
2445
2445
 
2446
- var _excluded$2e = ["testId", "size", "color", "style"];
2446
+ var _excluded$2g = ["testId", "size", "color", "style"];
2447
2447
  var IconChevronUp = React.forwardRef(function (_ref, ref) {
2448
2448
  var _ref$testId = _ref.testId,
2449
2449
  testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
2450
2450
  size = _ref.size,
2451
2451
  color = _ref.color,
2452
2452
  style = _ref.style,
2453
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
2453
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
2454
2454
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2455
2455
  var styleProps = {
2456
2456
  size: !size && isInsideButton ? 'medium' : size,
@@ -2473,14 +2473,14 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
2473
2473
  });
2474
2474
  IconChevronUp.displayName = 'IconChevronUp';
2475
2475
 
2476
- var _excluded$2d = ["testId", "size", "color", "style"];
2476
+ var _excluded$2f = ["testId", "size", "color", "style"];
2477
2477
  var IconClipboardList = React.forwardRef(function (_ref, ref) {
2478
2478
  var _ref$testId = _ref.testId,
2479
2479
  testId = _ref$testId === void 0 ? 'icon-clipboard-list' : _ref$testId,
2480
2480
  size = _ref.size,
2481
2481
  color = _ref.color,
2482
2482
  style = _ref.style,
2483
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
2483
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
2484
2484
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2485
2485
  var styleProps = {
2486
2486
  size: !size && isInsideButton ? 'medium' : size,
@@ -2503,14 +2503,14 @@ var IconClipboardList = React.forwardRef(function (_ref, ref) {
2503
2503
  });
2504
2504
  IconClipboardList.displayName = 'IconClipboardList';
2505
2505
 
2506
- var _excluded$2c = ["testId", "size", "color", "style"];
2506
+ var _excluded$2e = ["testId", "size", "color", "style"];
2507
2507
  var IconClockExclamation = React.forwardRef(function (_ref, ref) {
2508
2508
  var _ref$testId = _ref.testId,
2509
2509
  testId = _ref$testId === void 0 ? 'icon-clock-exclamation' : _ref$testId,
2510
2510
  size = _ref.size,
2511
2511
  color = _ref.color,
2512
2512
  style = _ref.style,
2513
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
2513
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
2514
2514
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2515
2515
  var styleProps = {
2516
2516
  size: !size && isInsideButton ? 'medium' : size,
@@ -2538,14 +2538,14 @@ var IconClockExclamation = React.forwardRef(function (_ref, ref) {
2538
2538
  });
2539
2539
  IconClockExclamation.displayName = 'IconClockExclamation';
2540
2540
 
2541
- var _excluded$2b = ["testId", "size", "color", "style"];
2541
+ var _excluded$2d = ["testId", "size", "color", "style"];
2542
2542
  var IconClockRewind = React.forwardRef(function (_ref, ref) {
2543
2543
  var _ref$testId = _ref.testId,
2544
2544
  testId = _ref$testId === void 0 ? 'icon-clock-rewind' : _ref$testId,
2545
2545
  size = _ref.size,
2546
2546
  color = _ref.color,
2547
2547
  style = _ref.style,
2548
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
2548
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
2549
2549
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2550
2550
  var styleProps = {
2551
2551
  size: !size && isInsideButton ? 'medium' : size,
@@ -2573,14 +2573,14 @@ var IconClockRewind = React.forwardRef(function (_ref, ref) {
2573
2573
  });
2574
2574
  IconClockRewind.displayName = 'IconClockRewind';
2575
2575
 
2576
- var _excluded$2a = ["testId", "size", "color", "style"];
2576
+ var _excluded$2c = ["testId", "size", "color", "style"];
2577
2577
  var IconClock = React.forwardRef(function (_ref, ref) {
2578
2578
  var _ref$testId = _ref.testId,
2579
2579
  testId = _ref$testId === void 0 ? 'icon-clock' : _ref$testId,
2580
2580
  size = _ref.size,
2581
2581
  color = _ref.color,
2582
2582
  style = _ref.style,
2583
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
2583
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
2584
2584
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2585
2585
  var styleProps = {
2586
2586
  size: !size && isInsideButton ? 'medium' : size,
@@ -2601,14 +2601,14 @@ var IconClock = React.forwardRef(function (_ref, ref) {
2601
2601
  });
2602
2602
  IconClock.displayName = 'IconClock';
2603
2603
 
2604
- var _excluded$29 = ["testId", "size", "color", "style"];
2604
+ var _excluded$2b = ["testId", "size", "color", "style"];
2605
2605
  var IconCog = React.forwardRef(function (_ref, ref) {
2606
2606
  var _ref$testId = _ref.testId,
2607
2607
  testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
2608
2608
  size = _ref.size,
2609
2609
  color = _ref.color,
2610
2610
  style = _ref.style,
2611
- props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
2611
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
2612
2612
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2613
2613
  var styleProps = {
2614
2614
  size: !size && isInsideButton ? 'medium' : size,
@@ -2629,14 +2629,14 @@ var IconCog = React.forwardRef(function (_ref, ref) {
2629
2629
  });
2630
2630
  IconCog.displayName = 'IconCog';
2631
2631
 
2632
- var _excluded$28 = ["testId", "size", "color", "style"];
2632
+ var _excluded$2a = ["testId", "size", "color", "style"];
2633
2633
  var IconCommentLines = React.forwardRef(function (_ref, ref) {
2634
2634
  var _ref$testId = _ref.testId,
2635
2635
  testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
2636
2636
  size = _ref.size,
2637
2637
  color = _ref.color,
2638
2638
  style = _ref.style,
2639
- props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
2639
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
2640
2640
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2641
2641
  var styleProps = {
2642
2642
  size: !size && isInsideButton ? 'medium' : size,
@@ -2662,14 +2662,14 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
2662
2662
  });
2663
2663
  IconCommentLines.displayName = 'IconCommentLines';
2664
2664
 
2665
- var _excluded$27 = ["testId", "size", "color", "style"];
2665
+ var _excluded$29 = ["testId", "size", "color", "style"];
2666
2666
  var IconComment = React.forwardRef(function (_ref, ref) {
2667
2667
  var _ref$testId = _ref.testId,
2668
2668
  testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
2669
2669
  size = _ref.size,
2670
2670
  color = _ref.color,
2671
2671
  style = _ref.style,
2672
- props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
2672
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
2673
2673
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2674
2674
  var styleProps = {
2675
2675
  size: !size && isInsideButton ? 'medium' : size,
@@ -2692,14 +2692,14 @@ var IconComment = React.forwardRef(function (_ref, ref) {
2692
2692
  });
2693
2693
  IconComment.displayName = 'IconComment';
2694
2694
 
2695
- var _excluded$26 = ["testId", "size", "color", "style"];
2695
+ var _excluded$28 = ["testId", "size", "color", "style"];
2696
2696
  var IconCopy = React.forwardRef(function (_ref, ref) {
2697
2697
  var _ref$testId = _ref.testId,
2698
2698
  testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
2699
2699
  size = _ref.size,
2700
2700
  color = _ref.color,
2701
2701
  style = _ref.style,
2702
- props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
2702
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
2703
2703
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2704
2704
  var styleProps = {
2705
2705
  size: !size && isInsideButton ? 'medium' : size,
@@ -2727,14 +2727,14 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
2727
2727
  });
2728
2728
  IconCopy.displayName = 'IconCopy';
2729
2729
 
2730
- var _excluded$25 = ["testId", "size", "color", "style"];
2730
+ var _excluded$27 = ["testId", "size", "color", "style"];
2731
2731
  var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2732
2732
  var _ref$testId = _ref.testId,
2733
2733
  testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
2734
2734
  size = _ref.size,
2735
2735
  color = _ref.color,
2736
2736
  style = _ref.style,
2737
- props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
2737
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
2738
2738
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2739
2739
  var styleProps = {
2740
2740
  size: !size && isInsideButton ? 'medium' : size,
@@ -2764,14 +2764,14 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2764
2764
  });
2765
2765
  IconCreditCardPlus.displayName = 'IconCreditCardPlus';
2766
2766
 
2767
- var _excluded$24 = ["testId", "size", "color", "style"];
2767
+ var _excluded$26 = ["testId", "size", "color", "style"];
2768
2768
  var IconCreditCard = React.forwardRef(function (_ref, ref) {
2769
2769
  var _ref$testId = _ref.testId,
2770
2770
  testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
2771
2771
  size = _ref.size,
2772
2772
  color = _ref.color,
2773
2773
  style = _ref.style,
2774
- props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
2774
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
2775
2775
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2776
2776
  var styleProps = {
2777
2777
  size: !size && isInsideButton ? 'medium' : size,
@@ -2799,14 +2799,14 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
2799
2799
  });
2800
2800
  IconCreditCard.displayName = 'IconCreditCard';
2801
2801
 
2802
- var _excluded$23 = ["testId", "size", "color", "style"];
2802
+ var _excluded$25 = ["testId", "size", "color", "style"];
2803
2803
  var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
2804
2804
  var _ref$testId = _ref.testId,
2805
2805
  testId = _ref$testId === void 0 ? 'icon-decent-monochromatic' : _ref$testId,
2806
2806
  size = _ref.size,
2807
2807
  color = _ref.color,
2808
2808
  style = _ref.style,
2809
- props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
2809
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
2810
2810
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2811
2811
  var styleProps = {
2812
2812
  size: !size && isInsideButton ? 'medium' : size,
@@ -2849,14 +2849,14 @@ var IconDecentMonochromatic = React.forwardRef(function (_ref, ref) {
2849
2849
  });
2850
2850
  IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
2851
2851
 
2852
- var _excluded$22 = ["testId", "size", "color", "style"];
2852
+ var _excluded$24 = ["testId", "size", "color", "style"];
2853
2853
  var IconDecent = React.forwardRef(function (_ref, ref) {
2854
2854
  var _ref$testId = _ref.testId,
2855
2855
  testId = _ref$testId === void 0 ? 'icon-decent' : _ref$testId,
2856
2856
  size = _ref.size,
2857
2857
  color = _ref.color,
2858
2858
  style = _ref.style,
2859
- props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
2859
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
2860
2860
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2861
2861
  var styleProps = {
2862
2862
  size: !size && isInsideButton ? 'medium' : size,
@@ -2887,14 +2887,14 @@ var IconDecent = React.forwardRef(function (_ref, ref) {
2887
2887
  });
2888
2888
  IconDecent.displayName = 'IconDecent';
2889
2889
 
2890
- var _excluded$21 = ["testId", "size", "color", "style"];
2890
+ var _excluded$23 = ["testId", "size", "color", "style"];
2891
2891
  var IconDollarSign = React.forwardRef(function (_ref, ref) {
2892
2892
  var _ref$testId = _ref.testId,
2893
2893
  testId = _ref$testId === void 0 ? 'icon-dollar-sign' : _ref$testId,
2894
2894
  size = _ref.size,
2895
2895
  color = _ref.color,
2896
2896
  style = _ref.style,
2897
- props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
2897
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
2898
2898
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2899
2899
  var styleProps = {
2900
2900
  size: !size && isInsideButton ? 'medium' : size,
@@ -2915,14 +2915,14 @@ var IconDollarSign = React.forwardRef(function (_ref, ref) {
2915
2915
  });
2916
2916
  IconDollarSign.displayName = 'IconDollarSign';
2917
2917
 
2918
- var _excluded$20 = ["testId", "size", "color", "style"];
2918
+ var _excluded$22 = ["testId", "size", "color", "style"];
2919
2919
  var IconDownload = React.forwardRef(function (_ref, ref) {
2920
2920
  var _ref$testId = _ref.testId,
2921
2921
  testId = _ref$testId === void 0 ? 'icon-download' : _ref$testId,
2922
2922
  size = _ref.size,
2923
2923
  color = _ref.color,
2924
2924
  style = _ref.style,
2925
- props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
2925
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
2926
2926
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2927
2927
  var styleProps = {
2928
2928
  size: !size && isInsideButton ? 'medium' : size,
@@ -2945,14 +2945,14 @@ var IconDownload = React.forwardRef(function (_ref, ref) {
2945
2945
  });
2946
2946
  IconDownload.displayName = 'IconDownload';
2947
2947
 
2948
- var _excluded$1$ = ["testId", "size", "color", "style"];
2948
+ var _excluded$21 = ["testId", "size", "color", "style"];
2949
2949
  var IconEdit = React.forwardRef(function (_ref, ref) {
2950
2950
  var _ref$testId = _ref.testId,
2951
2951
  testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
2952
2952
  size = _ref.size,
2953
2953
  color = _ref.color,
2954
2954
  style = _ref.style,
2955
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
2955
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
2956
2956
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2957
2957
  var styleProps = {
2958
2958
  size: !size && isInsideButton ? 'medium' : size,
@@ -2973,14 +2973,14 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
2973
2973
  });
2974
2974
  IconEdit.displayName = 'IconEdit';
2975
2975
 
2976
- var _excluded$1_ = ["testId", "size", "color", "style"];
2976
+ var _excluded$20 = ["testId", "size", "color", "style"];
2977
2977
  var IconEllipsisV = React.forwardRef(function (_ref, ref) {
2978
2978
  var _ref$testId = _ref.testId,
2979
2979
  testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
2980
2980
  size = _ref.size,
2981
2981
  color = _ref.color,
2982
2982
  style = _ref.style,
2983
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
2983
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
2984
2984
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2985
2985
  var styleProps = {
2986
2986
  size: !size && isInsideButton ? 'medium' : size,
@@ -3003,14 +3003,14 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
3003
3003
  });
3004
3004
  IconEllipsisV.displayName = 'IconEllipsisV';
3005
3005
 
3006
- var _excluded$1Z = ["testId", "size", "color", "style"];
3006
+ var _excluded$1$ = ["testId", "size", "color", "style"];
3007
3007
  var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
3008
3008
  var _ref$testId = _ref.testId,
3009
3009
  testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
3010
3010
  size = _ref.size,
3011
3011
  color = _ref.color,
3012
3012
  style = _ref.style,
3013
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
3013
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
3014
3014
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3015
3015
  var styleProps = {
3016
3016
  size: !size && isInsideButton ? 'medium' : size,
@@ -3038,14 +3038,14 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
3038
3038
  });
3039
3039
  IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
3040
3040
 
3041
- var _excluded$1Y = ["testId", "size", "color", "style"];
3041
+ var _excluded$1_ = ["testId", "size", "color", "style"];
3042
3042
  var IconEnvelope = React.forwardRef(function (_ref, ref) {
3043
3043
  var _ref$testId = _ref.testId,
3044
3044
  testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
3045
3045
  size = _ref.size,
3046
3046
  color = _ref.color,
3047
3047
  style = _ref.style,
3048
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
3048
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
3049
3049
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3050
3050
  var styleProps = {
3051
3051
  size: !size && isInsideButton ? 'medium' : size,
@@ -3066,14 +3066,14 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
3066
3066
  });
3067
3067
  IconEnvelope.displayName = 'IconEnvelope';
3068
3068
 
3069
- var _excluded$1X = ["testId", "size", "color", "style"];
3069
+ var _excluded$1Z = ["testId", "size", "color", "style"];
3070
3070
  var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
3071
3071
  var _ref$testId = _ref.testId,
3072
3072
  testId = _ref$testId === void 0 ? 'icon-exclaimation-triangle' : _ref$testId,
3073
3073
  size = _ref.size,
3074
3074
  color = _ref.color,
3075
3075
  style = _ref.style,
3076
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
3076
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
3077
3077
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3078
3078
  var styleProps = {
3079
3079
  size: !size && isInsideButton ? 'medium' : size,
@@ -3096,14 +3096,14 @@ var IconExclaimationTriangle = React.forwardRef(function (_ref, ref) {
3096
3096
  });
3097
3097
  IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
3098
3098
 
3099
- var _excluded$1W = ["testId", "size", "color", "style"];
3099
+ var _excluded$1Y = ["testId", "size", "color", "style"];
3100
3100
  var IconExclaimation = React.forwardRef(function (_ref, ref) {
3101
3101
  var _ref$testId = _ref.testId,
3102
3102
  testId = _ref$testId === void 0 ? 'icon-exclaimation' : _ref$testId,
3103
3103
  size = _ref.size,
3104
3104
  color = _ref.color,
3105
3105
  style = _ref.style,
3106
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
3106
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
3107
3107
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3108
3108
  var styleProps = {
3109
3109
  size: !size && isInsideButton ? 'medium' : size,
@@ -3124,14 +3124,14 @@ var IconExclaimation = React.forwardRef(function (_ref, ref) {
3124
3124
  });
3125
3125
  IconExclaimation.displayName = 'IconExclaimation';
3126
3126
 
3127
- var _excluded$1V = ["testId", "size", "color", "style"];
3127
+ var _excluded$1X = ["testId", "size", "color", "style"];
3128
3128
  var IconExpand = React.forwardRef(function (_ref, ref) {
3129
3129
  var _ref$testId = _ref.testId,
3130
3130
  testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
3131
3131
  size = _ref.size,
3132
3132
  color = _ref.color,
3133
3133
  style = _ref.style,
3134
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
3134
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
3135
3135
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3136
3136
  var styleProps = {
3137
3137
  size: !size && isInsideButton ? 'medium' : size,
@@ -3152,14 +3152,14 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
3152
3152
  });
3153
3153
  IconExpand.displayName = 'IconExpand';
3154
3154
 
3155
- var _excluded$1U = ["testId", "size", "color", "style"];
3155
+ var _excluded$1W = ["testId", "size", "color", "style"];
3156
3156
  var IconExternalLink = React.forwardRef(function (_ref, ref) {
3157
3157
  var _ref$testId = _ref.testId,
3158
3158
  testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
3159
3159
  size = _ref.size,
3160
3160
  color = _ref.color,
3161
3161
  style = _ref.style,
3162
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
3162
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
3163
3163
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3164
3164
  var styleProps = {
3165
3165
  size: !size && isInsideButton ? 'medium' : size,
@@ -3182,14 +3182,14 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
3182
3182
  });
3183
3183
  IconExternalLink.displayName = 'IconExternalLink';
3184
3184
 
3185
- var _excluded$1T = ["testId", "size", "color", "style"];
3185
+ var _excluded$1V = ["testId", "size", "color", "style"];
3186
3186
  var IconEyeSlash = React.forwardRef(function (_ref, ref) {
3187
3187
  var _ref$testId = _ref.testId,
3188
3188
  testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
3189
3189
  size = _ref.size,
3190
3190
  color = _ref.color,
3191
3191
  style = _ref.style,
3192
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
3192
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
3193
3193
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3194
3194
  var styleProps = {
3195
3195
  size: !size && isInsideButton ? 'medium' : size,
@@ -3224,14 +3224,14 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
3224
3224
  });
3225
3225
  IconEyeSlash.displayName = 'IconEyeSlash';
3226
3226
 
3227
- var _excluded$1S = ["testId", "size", "color", "style"];
3227
+ var _excluded$1U = ["testId", "size", "color", "style"];
3228
3228
  var IconEye = React.forwardRef(function (_ref, ref) {
3229
3229
  var _ref$testId = _ref.testId,
3230
3230
  testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
3231
3231
  size = _ref.size,
3232
3232
  color = _ref.color,
3233
3233
  style = _ref.style,
3234
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
3234
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
3235
3235
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3236
3236
  var styleProps = {
3237
3237
  size: !size && isInsideButton ? 'medium' : size,
@@ -3259,14 +3259,14 @@ var IconEye = React.forwardRef(function (_ref, ref) {
3259
3259
  });
3260
3260
  IconEye.displayName = 'IconEye';
3261
3261
 
3262
- var _excluded$1R = ["testId", "size", "color", "style"];
3262
+ var _excluded$1T = ["testId", "size", "color", "style"];
3263
3263
  var IconFaceSmileRelaxed = React.forwardRef(function (_ref, ref) {
3264
3264
  var _ref$testId = _ref.testId,
3265
3265
  testId = _ref$testId === void 0 ? 'icon-face-smile-relaxed' : _ref$testId,
3266
3266
  size = _ref.size,
3267
3267
  color = _ref.color,
3268
3268
  style = _ref.style,
3269
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
3269
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
3270
3270
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3271
3271
  var styleProps = {
3272
3272
  size: !size && isInsideButton ? 'medium' : size,
@@ -3294,14 +3294,14 @@ var IconFaceSmileRelaxed = React.forwardRef(function (_ref, ref) {
3294
3294
  });
3295
3295
  IconFaceSmileRelaxed.displayName = 'IconFaceSmileRelaxed';
3296
3296
 
3297
- var _excluded$1Q = ["testId", "size", "color", "style"];
3297
+ var _excluded$1S = ["testId", "size", "color", "style"];
3298
3298
  var IconFilePdf = React.forwardRef(function (_ref, ref) {
3299
3299
  var _ref$testId = _ref.testId,
3300
3300
  testId = _ref$testId === void 0 ? 'icon-file-pdf' : _ref$testId,
3301
3301
  size = _ref.size,
3302
3302
  color = _ref.color,
3303
3303
  style = _ref.style,
3304
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
3304
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
3305
3305
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3306
3306
  var styleProps = {
3307
3307
  size: !size && isInsideButton ? 'medium' : size,
@@ -3329,14 +3329,14 @@ var IconFilePdf = React.forwardRef(function (_ref, ref) {
3329
3329
  });
3330
3330
  IconFilePdf.displayName = 'IconFilePdf';
3331
3331
 
3332
- var _excluded$1P = ["testId", "size", "color", "style"];
3332
+ var _excluded$1R = ["testId", "size", "color", "style"];
3333
3333
  var IconFile = React.forwardRef(function (_ref, ref) {
3334
3334
  var _ref$testId = _ref.testId,
3335
3335
  testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
3336
3336
  size = _ref.size,
3337
3337
  color = _ref.color,
3338
3338
  style = _ref.style,
3339
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
3339
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
3340
3340
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3341
3341
  var styleProps = {
3342
3342
  size: !size && isInsideButton ? 'medium' : size,
@@ -3364,14 +3364,14 @@ var IconFile = React.forwardRef(function (_ref, ref) {
3364
3364
  });
3365
3365
  IconFile.displayName = 'IconFile';
3366
3366
 
3367
- var _excluded$1O = ["testId", "size", "color", "style"];
3367
+ var _excluded$1Q = ["testId", "size", "color", "style"];
3368
3368
  var IconFlag = React.forwardRef(function (_ref, ref) {
3369
3369
  var _ref$testId = _ref.testId,
3370
3370
  testId = _ref$testId === void 0 ? 'icon-flag' : _ref$testId,
3371
3371
  size = _ref.size,
3372
3372
  color = _ref.color,
3373
3373
  style = _ref.style,
3374
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
3374
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
3375
3375
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3376
3376
  var styleProps = {
3377
3377
  size: !size && isInsideButton ? 'medium' : size,
@@ -3399,14 +3399,14 @@ var IconFlag = React.forwardRef(function (_ref, ref) {
3399
3399
  });
3400
3400
  IconFlag.displayName = 'IconFlag';
3401
3401
 
3402
- var _excluded$1N = ["testId", "size", "color", "style"];
3402
+ var _excluded$1P = ["testId", "size", "color", "style"];
3403
3403
  var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
3404
3404
  var _ref$testId = _ref.testId,
3405
3405
  testId = _ref$testId === void 0 ? 'icon-four-dots-circle' : _ref$testId,
3406
3406
  size = _ref.size,
3407
3407
  color = _ref.color,
3408
3408
  style = _ref.style,
3409
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
3409
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
3410
3410
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3411
3411
  var styleProps = {
3412
3412
  size: !size && isInsideButton ? 'medium' : size,
@@ -3429,14 +3429,14 @@ var IconFourDotsCircle = React.forwardRef(function (_ref, ref) {
3429
3429
  });
3430
3430
  IconFourDotsCircle.displayName = 'IconFourDotsCircle';
3431
3431
 
3432
- var _excluded$1M = ["testId", "size", "color", "style"];
3432
+ var _excluded$1O = ["testId", "size", "color", "style"];
3433
3433
  var IconFourSquares = React.forwardRef(function (_ref, ref) {
3434
3434
  var _ref$testId = _ref.testId,
3435
3435
  testId = _ref$testId === void 0 ? 'icon-four-squares' : _ref$testId,
3436
3436
  size = _ref.size,
3437
3437
  color = _ref.color,
3438
3438
  style = _ref.style,
3439
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
3439
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
3440
3440
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3441
3441
  var styleProps = {
3442
3442
  size: !size && isInsideButton ? 'medium' : size,
@@ -3482,14 +3482,14 @@ var IconFourSquares = React.forwardRef(function (_ref, ref) {
3482
3482
  });
3483
3483
  IconFourSquares.displayName = 'IconFourSquares';
3484
3484
 
3485
- var _excluded$1L = ["testId", "size", "color", "style"];
3485
+ var _excluded$1N = ["testId", "size", "color", "style"];
3486
3486
  var IconGavel = React.forwardRef(function (_ref, ref) {
3487
3487
  var _ref$testId = _ref.testId,
3488
3488
  testId = _ref$testId === void 0 ? 'icon-gavel' : _ref$testId,
3489
3489
  size = _ref.size,
3490
3490
  color = _ref.color,
3491
3491
  style = _ref.style,
3492
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
3492
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
3493
3493
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3494
3494
  var styleProps = {
3495
3495
  size: !size && isInsideButton ? 'medium' : size,
@@ -3510,14 +3510,14 @@ var IconGavel = React.forwardRef(function (_ref, ref) {
3510
3510
  });
3511
3511
  IconGavel.displayName = 'IconGavel';
3512
3512
 
3513
- var _excluded$1K = ["testId", "size", "color", "style"];
3513
+ var _excluded$1M = ["testId", "size", "color", "style"];
3514
3514
  var IconGif = React.forwardRef(function (_ref, ref) {
3515
3515
  var _ref$testId = _ref.testId,
3516
3516
  testId = _ref$testId === void 0 ? 'icon-gif' : _ref$testId,
3517
3517
  size = _ref.size,
3518
3518
  color = _ref.color,
3519
3519
  style = _ref.style,
3520
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
3520
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
3521
3521
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3522
3522
  var styleProps = {
3523
3523
  size: !size && isInsideButton ? 'medium' : size,
@@ -3542,14 +3542,14 @@ var IconGif = React.forwardRef(function (_ref, ref) {
3542
3542
  });
3543
3543
  IconGif.displayName = 'IconGif';
3544
3544
 
3545
- var _excluded$1J = ["testId", "size", "color", "style"];
3545
+ var _excluded$1L = ["testId", "size", "color", "style"];
3546
3546
  var IconGift = React.forwardRef(function (_ref, ref) {
3547
3547
  var _ref$testId = _ref.testId,
3548
3548
  testId = _ref$testId === void 0 ? 'icon-gift' : _ref$testId,
3549
3549
  size = _ref.size,
3550
3550
  color = _ref.color,
3551
3551
  style = _ref.style,
3552
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
3552
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
3553
3553
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3554
3554
  var styleProps = {
3555
3555
  size: !size && isInsideButton ? 'medium' : size,
@@ -3570,14 +3570,14 @@ var IconGift = React.forwardRef(function (_ref, ref) {
3570
3570
  });
3571
3571
  IconGift.displayName = 'IconGift';
3572
3572
 
3573
- var _excluded$1I = ["testId", "size", "color", "style"];
3573
+ var _excluded$1K = ["testId", "size", "color", "style"];
3574
3574
  var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
3575
3575
  var _ref$testId = _ref.testId,
3576
3576
  testId = _ref$testId === void 0 ? 'icon-good-monochromatic' : _ref$testId,
3577
3577
  size = _ref.size,
3578
3578
  color = _ref.color,
3579
3579
  style = _ref.style,
3580
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
3580
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
3581
3581
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3582
3582
  var styleProps = {
3583
3583
  size: !size && isInsideButton ? 'medium' : size,
@@ -3616,14 +3616,14 @@ var IconGoodMonochromatic = React.forwardRef(function (_ref, ref) {
3616
3616
  });
3617
3617
  IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
3618
3618
 
3619
- var _excluded$1H = ["testId", "size", "color", "style"];
3619
+ var _excluded$1J = ["testId", "size", "color", "style"];
3620
3620
  var IconGood = React.forwardRef(function (_ref, ref) {
3621
3621
  var _ref$testId = _ref.testId,
3622
3622
  testId = _ref$testId === void 0 ? 'icon-good' : _ref$testId,
3623
3623
  size = _ref.size,
3624
3624
  color = _ref.color,
3625
3625
  style = _ref.style,
3626
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
3626
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
3627
3627
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3628
3628
  var styleProps = {
3629
3629
  size: !size && isInsideButton ? 'medium' : size,
@@ -3650,14 +3650,14 @@ var IconGood = React.forwardRef(function (_ref, ref) {
3650
3650
  });
3651
3651
  IconGood.displayName = 'IconGood';
3652
3652
 
3653
- var _excluded$1G = ["testId", "size", "color", "style"];
3653
+ var _excluded$1I = ["testId", "size", "color", "style"];
3654
3654
  var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
3655
3655
  var _ref$testId = _ref.testId,
3656
3656
  testId = _ref$testId === void 0 ? 'icon-great-monochromatic' : _ref$testId,
3657
3657
  size = _ref.size,
3658
3658
  color = _ref.color,
3659
3659
  style = _ref.style,
3660
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
3660
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
3661
3661
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3662
3662
  var styleProps = {
3663
3663
  size: !size && isInsideButton ? 'medium' : size,
@@ -3698,14 +3698,14 @@ var IconGreatMonochromatic = React.forwardRef(function (_ref, ref) {
3698
3698
  });
3699
3699
  IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
3700
3700
 
3701
- var _excluded$1F = ["testId", "size", "color", "style"];
3701
+ var _excluded$1H = ["testId", "size", "color", "style"];
3702
3702
  var IconGreat = React.forwardRef(function (_ref, ref) {
3703
3703
  var _ref$testId = _ref.testId,
3704
3704
  testId = _ref$testId === void 0 ? 'icon-great' : _ref$testId,
3705
3705
  size = _ref.size,
3706
3706
  color = _ref.color,
3707
3707
  style = _ref.style,
3708
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
3708
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
3709
3709
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3710
3710
  var styleProps = {
3711
3711
  size: !size && isInsideButton ? 'medium' : size,
@@ -3734,14 +3734,14 @@ var IconGreat = React.forwardRef(function (_ref, ref) {
3734
3734
  });
3735
3735
  IconGreat.displayName = 'IconGreat';
3736
3736
 
3737
- var _excluded$1E = ["testId", "size", "color", "style"];
3737
+ var _excluded$1G = ["testId", "size", "color", "style"];
3738
3738
  var IconGrinBeam = React.forwardRef(function (_ref, ref) {
3739
3739
  var _ref$testId = _ref.testId,
3740
3740
  testId = _ref$testId === void 0 ? 'icon-grin-beam' : _ref$testId,
3741
3741
  size = _ref.size,
3742
3742
  color = _ref.color,
3743
3743
  style = _ref.style,
3744
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
3744
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
3745
3745
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3746
3746
  var styleProps = {
3747
3747
  size: !size && isInsideButton ? 'medium' : size,
@@ -3762,14 +3762,14 @@ var IconGrinBeam = React.forwardRef(function (_ref, ref) {
3762
3762
  });
3763
3763
  IconGrinBeam.displayName = 'IconGrinBeam';
3764
3764
 
3765
- var _excluded$1D = ["testId", "size", "color", "style"];
3765
+ var _excluded$1F = ["testId", "size", "color", "style"];
3766
3766
  var IconGripVertical = React.forwardRef(function (_ref, ref) {
3767
3767
  var _ref$testId = _ref.testId,
3768
3768
  testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
3769
3769
  size = _ref.size,
3770
3770
  color = _ref.color,
3771
3771
  style = _ref.style,
3772
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
3772
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
3773
3773
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3774
3774
  var styleProps = {
3775
3775
  size: !size && isInsideButton ? 'medium' : size,
@@ -3817,14 +3817,14 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
3817
3817
  });
3818
3818
  IconGripVertical.displayName = 'IconGripVertical';
3819
3819
 
3820
- var _excluded$1C = ["testId", "size", "color", "style"];
3820
+ var _excluded$1E = ["testId", "size", "color", "style"];
3821
3821
  var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
3822
3822
  var _ref$testId = _ref.testId,
3823
3823
  testId = _ref$testId === void 0 ? 'icon-hand-holding-dollar' : _ref$testId,
3824
3824
  size = _ref.size,
3825
3825
  color = _ref.color,
3826
3826
  style = _ref.style,
3827
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
3827
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
3828
3828
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3829
3829
  var styleProps = {
3830
3830
  size: !size && isInsideButton ? 'medium' : size,
@@ -3852,14 +3852,14 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
3852
3852
  });
3853
3853
  IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
3854
3854
 
3855
- var _excluded$1B = ["testId", "size", "color", "style"];
3855
+ var _excluded$1D = ["testId", "size", "color", "style"];
3856
3856
  var IconHandPointRight = React.forwardRef(function (_ref, ref) {
3857
3857
  var _ref$testId = _ref.testId,
3858
3858
  testId = _ref$testId === void 0 ? 'icon-hand-point-right' : _ref$testId,
3859
3859
  size = _ref.size,
3860
3860
  color = _ref.color,
3861
3861
  style = _ref.style,
3862
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
3862
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
3863
3863
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3864
3864
  var styleProps = {
3865
3865
  size: !size && isInsideButton ? 'medium' : size,
@@ -3880,14 +3880,14 @@ var IconHandPointRight = React.forwardRef(function (_ref, ref) {
3880
3880
  });
3881
3881
  IconHandPointRight.displayName = 'IconHandPointRight';
3882
3882
 
3883
- var _excluded$1A = ["testId", "size", "color", "style"];
3883
+ var _excluded$1C = ["testId", "size", "color", "style"];
3884
3884
  var IconHandshake = React.forwardRef(function (_ref, ref) {
3885
3885
  var _ref$testId = _ref.testId,
3886
3886
  testId = _ref$testId === void 0 ? 'icon-handshake' : _ref$testId,
3887
3887
  size = _ref.size,
3888
3888
  color = _ref.color,
3889
3889
  style = _ref.style,
3890
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
3890
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
3891
3891
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3892
3892
  var styleProps = {
3893
3893
  size: !size && isInsideButton ? 'medium' : size,
@@ -3915,14 +3915,14 @@ var IconHandshake = React.forwardRef(function (_ref, ref) {
3915
3915
  });
3916
3916
  IconHandshake.displayName = 'IconHandshake';
3917
3917
 
3918
- var _excluded$1z = ["testId", "size", "color", "style"];
3918
+ var _excluded$1B = ["testId", "size", "color", "style"];
3919
3919
  var IconHatChef = React.forwardRef(function (_ref, ref) {
3920
3920
  var _ref$testId = _ref.testId,
3921
3921
  testId = _ref$testId === void 0 ? 'icon-hat-chef' : _ref$testId,
3922
3922
  size = _ref.size,
3923
3923
  color = _ref.color,
3924
3924
  style = _ref.style,
3925
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
3925
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
3926
3926
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3927
3927
  var styleProps = {
3928
3928
  size: !size && isInsideButton ? 'medium' : size,
@@ -3943,14 +3943,14 @@ var IconHatChef = React.forwardRef(function (_ref, ref) {
3943
3943
  });
3944
3944
  IconHatChef.displayName = 'IconHatChef';
3945
3945
 
3946
- var _excluded$1y = ["testId", "size", "color", "style"];
3946
+ var _excluded$1A = ["testId", "size", "color", "style"];
3947
3947
  var IconImage = React.forwardRef(function (_ref, ref) {
3948
3948
  var _ref$testId = _ref.testId,
3949
3949
  testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
3950
3950
  size = _ref.size,
3951
3951
  color = _ref.color,
3952
3952
  style = _ref.style,
3953
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
3953
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
3954
3954
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3955
3955
  var styleProps = {
3956
3956
  size: !size && isInsideButton ? 'medium' : size,
@@ -3978,14 +3978,14 @@ var IconImage = React.forwardRef(function (_ref, ref) {
3978
3978
  });
3979
3979
  IconImage.displayName = 'IconImage';
3980
3980
 
3981
- var _excluded$1x = ["testId", "size", "color", "style"];
3981
+ var _excluded$1z = ["testId", "size", "color", "style"];
3982
3982
  var IconIslandTropical = React.forwardRef(function (_ref, ref) {
3983
3983
  var _ref$testId = _ref.testId,
3984
3984
  testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
3985
3985
  size = _ref.size,
3986
3986
  color = _ref.color,
3987
3987
  style = _ref.style,
3988
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
3988
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
3989
3989
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3990
3990
  var styleProps = {
3991
3991
  size: !size && isInsideButton ? 'medium' : size,
@@ -4008,14 +4008,14 @@ var IconIslandTropical = React.forwardRef(function (_ref, ref) {
4008
4008
  });
4009
4009
  IconIslandTropical.displayName = 'IconIslandTropical';
4010
4010
 
4011
- var _excluded$1w = ["testId", "size", "color", "style"];
4011
+ var _excluded$1y = ["testId", "size", "color", "style"];
4012
4012
  var IconItalic = React.forwardRef(function (_ref, ref) {
4013
4013
  var _ref$testId = _ref.testId,
4014
4014
  testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
4015
4015
  size = _ref.size,
4016
4016
  color = _ref.color,
4017
4017
  style = _ref.style,
4018
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
4018
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
4019
4019
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4020
4020
  var styleProps = {
4021
4021
  size: !size && isInsideButton ? 'medium' : size,
@@ -4036,14 +4036,14 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
4036
4036
  });
4037
4037
  IconItalic.displayName = 'IconItalic';
4038
4038
 
4039
- var _excluded$1v = ["testId", "size", "color", "style"];
4039
+ var _excluded$1x = ["testId", "size", "color", "style"];
4040
4040
  var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
4041
4041
  var _ref$testId = _ref.testId,
4042
4042
  testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
4043
4043
  size = _ref.size,
4044
4044
  color = _ref.color,
4045
4045
  style = _ref.style,
4046
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
4046
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
4047
4047
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4048
4048
  var styleProps = {
4049
4049
  size: !size && isInsideButton ? 'medium' : size,
@@ -4073,14 +4073,14 @@ var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
4073
4073
  });
4074
4074
  IconLaptopSearch.displayName = 'IconLaptopSearch';
4075
4075
 
4076
- var _excluded$1u = ["testId", "size", "color", "style"];
4076
+ var _excluded$1w = ["testId", "size", "color", "style"];
4077
4077
  var IconLink = React.forwardRef(function (_ref, ref) {
4078
4078
  var _ref$testId = _ref.testId,
4079
4079
  testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
4080
4080
  size = _ref.size,
4081
4081
  color = _ref.color,
4082
4082
  style = _ref.style,
4083
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
4083
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
4084
4084
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4085
4085
  var styleProps = {
4086
4086
  size: !size && isInsideButton ? 'medium' : size,
@@ -4108,14 +4108,14 @@ var IconLink = React.forwardRef(function (_ref, ref) {
4108
4108
  });
4109
4109
  IconLink.displayName = 'IconLink';
4110
4110
 
4111
- var _excluded$1t = ["testId", "size", "color", "style"];
4111
+ var _excluded$1v = ["testId", "size", "color", "style"];
4112
4112
  var IconListOI = React.forwardRef(function (_ref, ref) {
4113
4113
  var _ref$testId = _ref.testId,
4114
4114
  testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
4115
4115
  size = _ref.size,
4116
4116
  color = _ref.color,
4117
4117
  style = _ref.style,
4118
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
4118
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
4119
4119
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4120
4120
  var styleProps = {
4121
4121
  size: !size && isInsideButton ? 'medium' : size,
@@ -4143,14 +4143,14 @@ var IconListOI = React.forwardRef(function (_ref, ref) {
4143
4143
  });
4144
4144
  IconListOI.displayName = 'IconListOI';
4145
4145
 
4146
- var _excluded$1s = ["testId", "size", "color", "style"];
4146
+ var _excluded$1u = ["testId", "size", "color", "style"];
4147
4147
  var IconList = React.forwardRef(function (_ref, ref) {
4148
4148
  var _ref$testId = _ref.testId,
4149
4149
  testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
4150
4150
  size = _ref.size,
4151
4151
  color = _ref.color,
4152
4152
  style = _ref.style,
4153
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
4153
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
4154
4154
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4155
4155
  var styleProps = {
4156
4156
  size: !size && isInsideButton ? 'medium' : size,
@@ -4171,14 +4171,14 @@ var IconList = React.forwardRef(function (_ref, ref) {
4171
4171
  });
4172
4172
  IconList.displayName = 'IconList';
4173
4173
 
4174
- var _excluded$1r = ["testId", "size", "color", "style"];
4174
+ var _excluded$1t = ["testId", "size", "color", "style"];
4175
4175
  var IconLock = React.forwardRef(function (_ref, ref) {
4176
4176
  var _ref$testId = _ref.testId,
4177
4177
  testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
4178
4178
  size = _ref.size,
4179
4179
  color = _ref.color,
4180
4180
  style = _ref.style,
4181
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
4181
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
4182
4182
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4183
4183
  var styleProps = {
4184
4184
  size: !size && isInsideButton ? 'medium' : size,
@@ -4199,14 +4199,14 @@ var IconLock = React.forwardRef(function (_ref, ref) {
4199
4199
  });
4200
4200
  IconLock.displayName = 'IconLock';
4201
4201
 
4202
- var _excluded$1q = ["testId", "size", "color", "style"];
4202
+ var _excluded$1s = ["testId", "size", "color", "style"];
4203
4203
  var IconMagicSolid = React.forwardRef(function (_ref, ref) {
4204
4204
  var _ref$testId = _ref.testId,
4205
4205
  testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
4206
4206
  size = _ref.size,
4207
4207
  color = _ref.color,
4208
4208
  style = _ref.style,
4209
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
4209
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
4210
4210
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4211
4211
  var styleProps = {
4212
4212
  size: !size && isInsideButton ? 'medium' : size,
@@ -4229,14 +4229,14 @@ var IconMagicSolid = React.forwardRef(function (_ref, ref) {
4229
4229
  });
4230
4230
  IconMagicSolid.displayName = 'IconMagicSolid';
4231
4231
 
4232
- var _excluded$1p = ["testId", "size", "color", "style"];
4232
+ var _excluded$1r = ["testId", "size", "color", "style"];
4233
4233
  var IconMapMarker = React.forwardRef(function (_ref, ref) {
4234
4234
  var _ref$testId = _ref.testId,
4235
4235
  testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
4236
4236
  size = _ref.size,
4237
4237
  color = _ref.color,
4238
4238
  style = _ref.style,
4239
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
4239
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
4240
4240
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4241
4241
  var styleProps = {
4242
4242
  size: !size && isInsideButton ? 'medium' : size,
@@ -4259,14 +4259,14 @@ var IconMapMarker = React.forwardRef(function (_ref, ref) {
4259
4259
  });
4260
4260
  IconMapMarker.displayName = 'IconMapMarker';
4261
4261
 
4262
- var _excluded$1o = ["testId", "size", "color", "style"];
4262
+ var _excluded$1q = ["testId", "size", "color", "style"];
4263
4263
  var IconMedal = React.forwardRef(function (_ref, ref) {
4264
4264
  var _ref$testId = _ref.testId,
4265
4265
  testId = _ref$testId === void 0 ? 'icon-medal' : _ref$testId,
4266
4266
  size = _ref.size,
4267
4267
  color = _ref.color,
4268
4268
  style = _ref.style,
4269
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
4269
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
4270
4270
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4271
4271
  var styleProps = {
4272
4272
  size: !size && isInsideButton ? 'medium' : size,
@@ -4294,14 +4294,14 @@ var IconMedal = React.forwardRef(function (_ref, ref) {
4294
4294
  });
4295
4295
  IconMedal.displayName = 'IconMedal';
4296
4296
 
4297
- var _excluded$1n = ["testId", "size", "color", "style"];
4297
+ var _excluded$1p = ["testId", "size", "color", "style"];
4298
4298
  var IconMegaphone = React.forwardRef(function (_ref, ref) {
4299
4299
  var _ref$testId = _ref.testId,
4300
4300
  testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
4301
4301
  size = _ref.size,
4302
4302
  color = _ref.color,
4303
4303
  style = _ref.style,
4304
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
4304
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
4305
4305
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4306
4306
  var styleProps = {
4307
4307
  size: !size && isInsideButton ? 'medium' : size,
@@ -4324,14 +4324,14 @@ var IconMegaphone = React.forwardRef(function (_ref, ref) {
4324
4324
  });
4325
4325
  IconMegaphone.displayName = 'IconMegaphone';
4326
4326
 
4327
- var _excluded$1m = ["testId", "size", "color", "style"];
4327
+ var _excluded$1o = ["testId", "size", "color", "style"];
4328
4328
  var IconMessages = React.forwardRef(function (_ref, ref) {
4329
4329
  var _ref$testId = _ref.testId,
4330
4330
  testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
4331
4331
  size = _ref.size,
4332
4332
  color = _ref.color,
4333
4333
  style = _ref.style,
4334
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
4334
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
4335
4335
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4336
4336
  var styleProps = {
4337
4337
  size: !size && isInsideButton ? 'medium' : size,
@@ -4352,14 +4352,14 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
4352
4352
  });
4353
4353
  IconMessages.displayName = 'IconMessages';
4354
4354
 
4355
- var _excluded$1l = ["testId", "size", "color", "style"];
4355
+ var _excluded$1n = ["testId", "size", "color", "style"];
4356
4356
  var IconMinusCircle = React.forwardRef(function (_ref, ref) {
4357
4357
  var _ref$testId = _ref.testId,
4358
4358
  testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
4359
4359
  size = _ref.size,
4360
4360
  color = _ref.color,
4361
4361
  style = _ref.style,
4362
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
4362
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
4363
4363
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4364
4364
  var styleProps = {
4365
4365
  size: !size && isInsideButton ? 'medium' : size,
@@ -4380,14 +4380,14 @@ var IconMinusCircle = React.forwardRef(function (_ref, ref) {
4380
4380
  });
4381
4381
  IconMinusCircle.displayName = 'IconMinusCircle';
4382
4382
 
4383
- var _excluded$1k = ["testId", "size", "color", "style"];
4383
+ var _excluded$1m = ["testId", "size", "color", "style"];
4384
4384
  var IconMinus = React.forwardRef(function (_ref, ref) {
4385
4385
  var _ref$testId = _ref.testId,
4386
4386
  testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
4387
4387
  size = _ref.size,
4388
4388
  color = _ref.color,
4389
4389
  style = _ref.style,
4390
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
4390
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
4391
4391
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4392
4392
  var styleProps = {
4393
4393
  size: !size && isInsideButton ? 'medium' : size,
@@ -4408,14 +4408,14 @@ var IconMinus = React.forwardRef(function (_ref, ref) {
4408
4408
  });
4409
4409
  IconMinus.displayName = 'IconMinus';
4410
4410
 
4411
- var _excluded$1j = ["testId", "size", "color", "style"];
4411
+ var _excluded$1l = ["testId", "size", "color", "style"];
4412
4412
  var IconMoneyBill = React.forwardRef(function (_ref, ref) {
4413
4413
  var _ref$testId = _ref.testId,
4414
4414
  testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
4415
4415
  size = _ref.size,
4416
4416
  color = _ref.color,
4417
4417
  style = _ref.style,
4418
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
4418
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
4419
4419
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4420
4420
  var styleProps = {
4421
4421
  size: !size && isInsideButton ? 'medium' : size,
@@ -4436,14 +4436,14 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
4436
4436
  });
4437
4437
  IconMoneyBill.displayName = 'IconMoneyBill';
4438
4438
 
4439
- var _excluded$1i = ["testId", "size", "color", "style"];
4439
+ var _excluded$1k = ["testId", "size", "color", "style"];
4440
4440
  var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
4441
4441
  var _ref$testId = _ref.testId,
4442
4442
  testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
4443
4443
  size = _ref.size,
4444
4444
  color = _ref.color,
4445
4445
  style = _ref.style,
4446
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
4446
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
4447
4447
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4448
4448
  var styleProps = {
4449
4449
  size: !size && isInsideButton ? 'medium' : size,
@@ -4464,14 +4464,14 @@ var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
4464
4464
  });
4465
4465
  IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
4466
4466
 
4467
- var _excluded$1h = ["testId", "size", "color", "style"];
4467
+ var _excluded$1j = ["testId", "size", "color", "style"];
4468
4468
  var IconNotesMedical = React.forwardRef(function (_ref, ref) {
4469
4469
  var _ref$testId = _ref.testId,
4470
4470
  testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
4471
4471
  size = _ref.size,
4472
4472
  color = _ref.color,
4473
4473
  style = _ref.style,
4474
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
4474
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
4475
4475
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4476
4476
  var styleProps = {
4477
4477
  size: !size && isInsideButton ? 'medium' : size,
@@ -4492,14 +4492,14 @@ var IconNotesMedical = React.forwardRef(function (_ref, ref) {
4492
4492
  });
4493
4493
  IconNotesMedical.displayName = 'IconNotesMedical';
4494
4494
 
4495
- var _excluded$1g = ["testId", "size", "color", "style"];
4495
+ var _excluded$1i = ["testId", "size", "color", "style"];
4496
4496
  var IconOvertime = React.forwardRef(function (_ref, ref) {
4497
4497
  var _ref$testId = _ref.testId,
4498
4498
  testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
4499
4499
  size = _ref.size,
4500
4500
  color = _ref.color,
4501
4501
  style = _ref.style,
4502
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
4502
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
4503
4503
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4504
4504
  var styleProps = {
4505
4505
  size: !size && isInsideButton ? 'medium' : size,
@@ -4527,14 +4527,14 @@ var IconOvertime = React.forwardRef(function (_ref, ref) {
4527
4527
  });
4528
4528
  IconOvertime.displayName = 'IconOvertime';
4529
4529
 
4530
- var _excluded$1f = ["testId", "size", "color", "style"];
4530
+ var _excluded$1h = ["testId", "size", "color", "style"];
4531
4531
  var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
4532
4532
  var _ref$testId = _ref.testId,
4533
4533
  testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
4534
4534
  size = _ref.size,
4535
4535
  color = _ref.color,
4536
4536
  style = _ref.style,
4537
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
4537
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
4538
4538
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4539
4539
  var styleProps = {
4540
4540
  size: !size && isInsideButton ? 'medium' : size,
@@ -4566,14 +4566,14 @@ var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
4566
4566
  });
4567
4567
  IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
4568
4568
 
4569
- var _excluded$1e = ["testId", "size", "color", "style"];
4569
+ var _excluded$1g = ["testId", "size", "color", "style"];
4570
4570
  var IconPaperPlane = React.forwardRef(function (_ref, ref) {
4571
4571
  var _ref$testId = _ref.testId,
4572
4572
  testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
4573
4573
  size = _ref.size,
4574
4574
  color = _ref.color,
4575
4575
  style = _ref.style,
4576
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
4576
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
4577
4577
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4578
4578
  var styleProps = {
4579
4579
  size: !size && isInsideButton ? 'medium' : size,
@@ -4596,14 +4596,14 @@ var IconPaperPlane = React.forwardRef(function (_ref, ref) {
4596
4596
  });
4597
4597
  IconPaperPlane.displayName = 'IconPaperPlane';
4598
4598
 
4599
- var _excluded$1d = ["testId", "size", "color", "style"];
4599
+ var _excluded$1f = ["testId", "size", "color", "style"];
4600
4600
  var IconPaperclip = React.forwardRef(function (_ref, ref) {
4601
4601
  var _ref$testId = _ref.testId,
4602
4602
  testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
4603
4603
  size = _ref.size,
4604
4604
  color = _ref.color,
4605
4605
  style = _ref.style,
4606
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
4606
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
4607
4607
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4608
4608
  var styleProps = {
4609
4609
  size: !size && isInsideButton ? 'medium' : size,
@@ -4631,14 +4631,14 @@ var IconPaperclip = React.forwardRef(function (_ref, ref) {
4631
4631
  });
4632
4632
  IconPaperclip.displayName = 'IconPaperclip';
4633
4633
 
4634
- var _excluded$1c = ["testId", "size", "color", "style"];
4634
+ var _excluded$1e = ["testId", "size", "color", "style"];
4635
4635
  var IconPencil = React.forwardRef(function (_ref, ref) {
4636
4636
  var _ref$testId = _ref.testId,
4637
4637
  testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
4638
4638
  size = _ref.size,
4639
4639
  color = _ref.color,
4640
4640
  style = _ref.style,
4641
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
4641
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
4642
4642
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4643
4643
  var styleProps = {
4644
4644
  size: !size && isInsideButton ? 'medium' : size,
@@ -4661,14 +4661,14 @@ var IconPencil = React.forwardRef(function (_ref, ref) {
4661
4661
  });
4662
4662
  IconPencil.displayName = 'IconPencil';
4663
4663
 
4664
- var _excluded$1b = ["testId", "size", "color", "style"];
4664
+ var _excluded$1d = ["testId", "size", "color", "style"];
4665
4665
  var IconPercentage = React.forwardRef(function (_ref, ref) {
4666
4666
  var _ref$testId = _ref.testId,
4667
4667
  testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
4668
4668
  size = _ref.size,
4669
4669
  color = _ref.color,
4670
4670
  style = _ref.style,
4671
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
4671
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
4672
4672
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4673
4673
  var styleProps = {
4674
4674
  size: !size && isInsideButton ? 'medium' : size,
@@ -4689,14 +4689,14 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
4689
4689
  });
4690
4690
  IconPercentage.displayName = 'IconPercentage';
4691
4691
 
4692
- var _excluded$1a = ["testId", "size", "color", "style"];
4692
+ var _excluded$1c = ["testId", "size", "color", "style"];
4693
4693
  var IconPhone = React.forwardRef(function (_ref, ref) {
4694
4694
  var _ref$testId = _ref.testId,
4695
4695
  testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
4696
4696
  size = _ref.size,
4697
4697
  color = _ref.color,
4698
4698
  style = _ref.style,
4699
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
4699
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
4700
4700
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4701
4701
  var styleProps = {
4702
4702
  size: !size && isInsideButton ? 'medium' : size,
@@ -4717,14 +4717,14 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
4717
4717
  });
4718
4718
  IconPhone.displayName = 'IconPhone';
4719
4719
 
4720
- var _excluded$19 = ["testId", "size", "color", "style"];
4720
+ var _excluded$1b = ["testId", "size", "color", "style"];
4721
4721
  var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
4722
4722
  var _ref$testId = _ref.testId,
4723
4723
  testId = _ref$testId === void 0 ? 'icon-plate-utensils' : _ref$testId,
4724
4724
  size = _ref.size,
4725
4725
  color = _ref.color,
4726
4726
  style = _ref.style,
4727
- props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
4727
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
4728
4728
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4729
4729
  var styleProps = {
4730
4730
  size: !size && isInsideButton ? 'medium' : size,
@@ -4745,14 +4745,14 @@ var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
4745
4745
  });
4746
4746
  IconPlateUtensils.displayName = 'IconPlateUtensils';
4747
4747
 
4748
- var _excluded$18 = ["testId", "size", "color", "style"];
4748
+ var _excluded$1a = ["testId", "size", "color", "style"];
4749
4749
  var IconPlug = React.forwardRef(function (_ref, ref) {
4750
4750
  var _ref$testId = _ref.testId,
4751
4751
  testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
4752
4752
  size = _ref.size,
4753
4753
  color = _ref.color,
4754
4754
  style = _ref.style,
4755
- props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
4755
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
4756
4756
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4757
4757
  var styleProps = {
4758
4758
  size: !size && isInsideButton ? 'medium' : size,
@@ -4775,14 +4775,14 @@ var IconPlug = React.forwardRef(function (_ref, ref) {
4775
4775
  });
4776
4776
  IconPlug.displayName = 'IconPlug';
4777
4777
 
4778
- var _excluded$17 = ["testId", "size", "color", "style"];
4778
+ var _excluded$19 = ["testId", "size", "color", "style"];
4779
4779
  var IconPlus = React.forwardRef(function (_ref, ref) {
4780
4780
  var _ref$testId = _ref.testId,
4781
4781
  testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
4782
4782
  size = _ref.size,
4783
4783
  color = _ref.color,
4784
4784
  style = _ref.style,
4785
- props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
4785
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
4786
4786
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4787
4787
  var styleProps = {
4788
4788
  size: !size && isInsideButton ? 'medium' : size,
@@ -4805,14 +4805,14 @@ var IconPlus = React.forwardRef(function (_ref, ref) {
4805
4805
  });
4806
4806
  IconPlus.displayName = 'IconPlus';
4807
4807
 
4808
- var _excluded$16 = ["testId", "size", "color", "style"];
4808
+ var _excluded$18 = ["testId", "size", "color", "style"];
4809
4809
  var IconPrint = React.forwardRef(function (_ref, ref) {
4810
4810
  var _ref$testId = _ref.testId,
4811
4811
  testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
4812
4812
  size = _ref.size,
4813
4813
  color = _ref.color,
4814
4814
  style = _ref.style,
4815
- props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
4815
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
4816
4816
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4817
4817
  var styleProps = {
4818
4818
  size: !size && isInsideButton ? 'medium' : size,
@@ -4835,14 +4835,14 @@ var IconPrint = React.forwardRef(function (_ref, ref) {
4835
4835
  });
4836
4836
  IconPrint.displayName = 'IconPrint';
4837
4837
 
4838
- var _excluded$15 = ["testId", "size", "color", "style"];
4838
+ var _excluded$17 = ["testId", "size", "color", "style"];
4839
4839
  var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
4840
4840
  var _ref$testId = _ref.testId,
4841
4841
  testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
4842
4842
  size = _ref.size,
4843
4843
  color = _ref.color,
4844
4844
  style = _ref.style,
4845
- props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
4845
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
4846
4846
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4847
4847
  var styleProps = {
4848
4848
  size: !size && isInsideButton ? 'medium' : size,
@@ -4863,14 +4863,14 @@ var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
4863
4863
  });
4864
4864
  IconQuestionCircle.displayName = 'IconQuestionCircle';
4865
4865
 
4866
- var _excluded$14 = ["testId", "size", "color", "style"];
4866
+ var _excluded$16 = ["testId", "size", "color", "style"];
4867
4867
  var IconRepeat = React.forwardRef(function (_ref, ref) {
4868
4868
  var _ref$testId = _ref.testId,
4869
4869
  testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
4870
4870
  size = _ref.size,
4871
4871
  color = _ref.color,
4872
4872
  style = _ref.style,
4873
- props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
4873
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
4874
4874
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4875
4875
  var styleProps = {
4876
4876
  size: !size && isInsideButton ? 'medium' : size,
@@ -4891,14 +4891,14 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
4891
4891
  });
4892
4892
  IconRepeat.displayName = 'IconRepeat';
4893
4893
 
4894
- var _excluded$13 = ["testId", "size", "color", "style"];
4894
+ var _excluded$15 = ["testId", "size", "color", "style"];
4895
4895
  var IconReply = React.forwardRef(function (_ref, ref) {
4896
4896
  var _ref$testId = _ref.testId,
4897
4897
  testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
4898
4898
  size = _ref.size,
4899
4899
  color = _ref.color,
4900
4900
  style = _ref.style,
4901
- props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
4901
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
4902
4902
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4903
4903
  var styleProps = {
4904
4904
  size: !size && isInsideButton ? 'medium' : size,
@@ -4919,14 +4919,14 @@ var IconReply = React.forwardRef(function (_ref, ref) {
4919
4919
  });
4920
4920
  IconReply.displayName = 'IconReply';
4921
4921
 
4922
- var _excluded$12 = ["testId", "size", "color", "style"];
4922
+ var _excluded$14 = ["testId", "size", "color", "style"];
4923
4923
  var IconRocket = React.forwardRef(function (_ref, ref) {
4924
4924
  var _ref$testId = _ref.testId,
4925
4925
  testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
4926
4926
  size = _ref.size,
4927
4927
  color = _ref.color,
4928
4928
  style = _ref.style,
4929
- props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
4929
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
4930
4930
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4931
4931
  var styleProps = {
4932
4932
  size: !size && isInsideButton ? 'medium' : size,
@@ -4947,14 +4947,14 @@ var IconRocket = React.forwardRef(function (_ref, ref) {
4947
4947
  });
4948
4948
  IconRocket.displayName = 'IconRocket';
4949
4949
 
4950
- var _excluded$11 = ["testId", "size", "color", "style"];
4950
+ var _excluded$13 = ["testId", "size", "color", "style"];
4951
4951
  var IconSearch = React.forwardRef(function (_ref, ref) {
4952
4952
  var _ref$testId = _ref.testId,
4953
4953
  testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
4954
4954
  size = _ref.size,
4955
4955
  color = _ref.color,
4956
4956
  style = _ref.style,
4957
- props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
4957
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
4958
4958
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4959
4959
  var styleProps = {
4960
4960
  size: !size && isInsideButton ? 'medium' : size,
@@ -4977,14 +4977,14 @@ var IconSearch = React.forwardRef(function (_ref, ref) {
4977
4977
  });
4978
4978
  IconSearch.displayName = 'IconSearch';
4979
4979
 
4980
- var _excluded$10 = ["testId", "size", "color", "style"];
4980
+ var _excluded$12 = ["testId", "size", "color", "style"];
4981
4981
  var IconSignOut = React.forwardRef(function (_ref, ref) {
4982
4982
  var _ref$testId = _ref.testId,
4983
4983
  testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
4984
4984
  size = _ref.size,
4985
4985
  color = _ref.color,
4986
4986
  style = _ref.style,
4987
- props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
4987
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
4988
4988
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4989
4989
  var styleProps = {
4990
4990
  size: !size && isInsideButton ? 'medium' : size,
@@ -5005,14 +5005,14 @@ var IconSignOut = React.forwardRef(function (_ref, ref) {
5005
5005
  });
5006
5006
  IconSignOut.displayName = 'IconSignOut';
5007
5007
 
5008
- var _excluded$$ = ["testId", "size", "color", "style"];
5008
+ var _excluded$11 = ["testId", "size", "color", "style"];
5009
5009
  var IconSitemap = React.forwardRef(function (_ref, ref) {
5010
5010
  var _ref$testId = _ref.testId,
5011
5011
  testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
5012
5012
  size = _ref.size,
5013
5013
  color = _ref.color,
5014
5014
  style = _ref.style,
5015
- props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
5015
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
5016
5016
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5017
5017
  var styleProps = {
5018
5018
  size: !size && isInsideButton ? 'medium' : size,
@@ -5035,14 +5035,14 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
5035
5035
  });
5036
5036
  IconSitemap.displayName = 'IconSitemap';
5037
5037
 
5038
- var _excluded$_ = ["testId", "size", "color", "style"];
5038
+ var _excluded$10 = ["testId", "size", "color", "style"];
5039
5039
  var IconSlidersH = React.forwardRef(function (_ref, ref) {
5040
5040
  var _ref$testId = _ref.testId,
5041
5041
  testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
5042
5042
  size = _ref.size,
5043
5043
  color = _ref.color,
5044
5044
  style = _ref.style,
5045
- props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
5045
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
5046
5046
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5047
5047
  var styleProps = {
5048
5048
  size: !size && isInsideButton ? 'medium' : size,
@@ -5070,14 +5070,14 @@ var IconSlidersH = React.forwardRef(function (_ref, ref) {
5070
5070
  });
5071
5071
  IconSlidersH.displayName = 'IconSlidersH';
5072
5072
 
5073
- var _excluded$Z = ["testId", "size", "color", "style"];
5073
+ var _excluded$$ = ["testId", "size", "color", "style"];
5074
5074
  var IconSort = React.forwardRef(function (_ref, ref) {
5075
5075
  var _ref$testId = _ref.testId,
5076
5076
  testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
5077
5077
  size = _ref.size,
5078
5078
  color = _ref.color,
5079
5079
  style = _ref.style,
5080
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
5080
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
5081
5081
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5082
5082
  var styleProps = {
5083
5083
  size: !size && isInsideButton ? 'medium' : size,
@@ -5098,14 +5098,14 @@ var IconSort = React.forwardRef(function (_ref, ref) {
5098
5098
  });
5099
5099
  IconSort.displayName = 'IconSort';
5100
5100
 
5101
- var _excluded$Y = ["testId", "size", "color", "style"];
5101
+ var _excluded$_ = ["testId", "size", "color", "style"];
5102
5102
  var IconSparkle = React.forwardRef(function (_ref, ref) {
5103
5103
  var _ref$testId = _ref.testId,
5104
5104
  testId = _ref$testId === void 0 ? 'icon-sparkle' : _ref$testId,
5105
5105
  size = _ref.size,
5106
5106
  color = _ref.color,
5107
5107
  style = _ref.style,
5108
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
5108
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
5109
5109
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5110
5110
  var styleProps = {
5111
5111
  size: !size && isInsideButton ? 'medium' : size,
@@ -5126,14 +5126,14 @@ var IconSparkle = React.forwardRef(function (_ref, ref) {
5126
5126
  });
5127
5127
  IconSparkle.displayName = 'IconSparkle';
5128
5128
 
5129
- var _excluded$X = ["testId", "size", "color", "style"];
5129
+ var _excluded$Z = ["testId", "size", "color", "style"];
5130
5130
  var IconStarSolid = React.forwardRef(function (_ref, ref) {
5131
5131
  var _ref$testId = _ref.testId,
5132
5132
  testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
5133
5133
  size = _ref.size,
5134
5134
  color = _ref.color,
5135
5135
  style = _ref.style,
5136
- props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
5136
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
5137
5137
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5138
5138
  var styleProps = {
5139
5139
  size: !size && isInsideButton ? 'medium' : size,
@@ -5154,14 +5154,14 @@ var IconStarSolid = React.forwardRef(function (_ref, ref) {
5154
5154
  });
5155
5155
  IconStarSolid.displayName = 'IconStarSolid';
5156
5156
 
5157
- var _excluded$W = ["testId", "size", "color", "style"];
5157
+ var _excluded$Y = ["testId", "size", "color", "style"];
5158
5158
  var IconStar = React.forwardRef(function (_ref, ref) {
5159
5159
  var _ref$testId = _ref.testId,
5160
5160
  testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
5161
5161
  size = _ref.size,
5162
5162
  color = _ref.color,
5163
5163
  style = _ref.style,
5164
- props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
5164
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
5165
5165
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5166
5166
  var styleProps = {
5167
5167
  size: !size && isInsideButton ? 'medium' : size,
@@ -5182,14 +5182,14 @@ var IconStar = React.forwardRef(function (_ref, ref) {
5182
5182
  });
5183
5183
  IconStar.displayName = 'IconStar';
5184
5184
 
5185
- var _excluded$V = ["testId", "size", "color", "style"];
5185
+ var _excluded$X = ["testId", "size", "color", "style"];
5186
5186
  var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
5187
5187
  var _ref$testId = _ref.testId,
5188
5188
  testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
5189
5189
  size = _ref.size,
5190
5190
  color = _ref.color,
5191
5191
  style = _ref.style,
5192
- props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
5192
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
5193
5193
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5194
5194
  var styleProps = {
5195
5195
  size: !size && isInsideButton ? 'medium' : size,
@@ -5213,14 +5213,14 @@ var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
5213
5213
  });
5214
5214
  IconStickyNoteLines.displayName = 'IconStickyNoteLines';
5215
5215
 
5216
- var _excluded$U = ["testId", "size", "color", "style"];
5216
+ var _excluded$W = ["testId", "size", "color", "style"];
5217
5217
  var IconStopwatch = React.forwardRef(function (_ref, ref) {
5218
5218
  var _ref$testId = _ref.testId,
5219
5219
  testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
5220
5220
  size = _ref.size,
5221
5221
  color = _ref.color,
5222
5222
  style = _ref.style,
5223
- props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
5223
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
5224
5224
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5225
5225
  var styleProps = {
5226
5226
  size: !size && isInsideButton ? 'medium' : size,
@@ -5243,14 +5243,14 @@ var IconStopwatch = React.forwardRef(function (_ref, ref) {
5243
5243
  });
5244
5244
  IconStopwatch.displayName = 'IconStopwatch';
5245
5245
 
5246
- var _excluded$T = ["testId", "size", "color", "style"];
5246
+ var _excluded$V = ["testId", "size", "color", "style"];
5247
5247
  var IconStrikethrough = React.forwardRef(function (_ref, ref) {
5248
5248
  var _ref$testId = _ref.testId,
5249
5249
  testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
5250
5250
  size = _ref.size,
5251
5251
  color = _ref.color,
5252
5252
  style = _ref.style,
5253
- props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
5253
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
5254
5254
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5255
5255
  var styleProps = {
5256
5256
  size: !size && isInsideButton ? 'medium' : size,
@@ -5278,14 +5278,14 @@ var IconStrikethrough = React.forwardRef(function (_ref, ref) {
5278
5278
  });
5279
5279
  IconStrikethrough.displayName = 'IconStrikethrough';
5280
5280
 
5281
- var _excluded$S = ["testId", "size", "color", "style"];
5281
+ var _excluded$U = ["testId", "size", "color", "style"];
5282
5282
  var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
5283
5283
  var _ref$testId = _ref.testId,
5284
5284
  testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
5285
5285
  size = _ref.size,
5286
5286
  color = _ref.color,
5287
5287
  style = _ref.style,
5288
- props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
5288
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
5289
5289
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5290
5290
  var styleProps = {
5291
5291
  size: !size && isInsideButton ? 'medium' : size,
@@ -5306,14 +5306,14 @@ var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
5306
5306
  });
5307
5307
  IconSyncExclaimation.displayName = 'IconSyncExclaimation';
5308
5308
 
5309
- var _excluded$R = ["testId", "size", "color", "style"];
5309
+ var _excluded$T = ["testId", "size", "color", "style"];
5310
5310
  var IconSync = React.forwardRef(function (_ref, ref) {
5311
5311
  var _ref$testId = _ref.testId,
5312
5312
  testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
5313
5313
  size = _ref.size,
5314
5314
  color = _ref.color,
5315
5315
  style = _ref.style,
5316
- props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
5316
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
5317
5317
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5318
5318
  var styleProps = {
5319
5319
  size: !size && isInsideButton ? 'medium' : size,
@@ -5334,14 +5334,14 @@ var IconSync = React.forwardRef(function (_ref, ref) {
5334
5334
  });
5335
5335
  IconSync.displayName = 'IconSync';
5336
5336
 
5337
- var _excluded$Q = ["testId", "size", "color", "style"];
5337
+ var _excluded$S = ["testId", "size", "color", "style"];
5338
5338
  var IconTable = React.forwardRef(function (_ref, ref) {
5339
5339
  var _ref$testId = _ref.testId,
5340
5340
  testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
5341
5341
  size = _ref.size,
5342
5342
  color = _ref.color,
5343
5343
  style = _ref.style,
5344
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
5344
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
5345
5345
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5346
5346
  var styleProps = {
5347
5347
  size: !size && isInsideButton ? 'medium' : size,
@@ -5369,14 +5369,14 @@ var IconTable = React.forwardRef(function (_ref, ref) {
5369
5369
  });
5370
5370
  IconTable.displayName = 'IconTable';
5371
5371
 
5372
- var _excluded$P = ["testId", "size", "color", "style"];
5372
+ var _excluded$R = ["testId", "size", "color", "style"];
5373
5373
  var IconTachometer = React.forwardRef(function (_ref, ref) {
5374
5374
  var _ref$testId = _ref.testId,
5375
5375
  testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
5376
5376
  size = _ref.size,
5377
5377
  color = _ref.color,
5378
5378
  style = _ref.style,
5379
- props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
5379
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
5380
5380
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5381
5381
  var styleProps = {
5382
5382
  size: !size && isInsideButton ? 'medium' : size,
@@ -5396,14 +5396,14 @@ var IconTachometer = React.forwardRef(function (_ref, ref) {
5396
5396
  });
5397
5397
  IconTachometer.displayName = 'IconTachometer';
5398
5398
 
5399
- var _excluded$O = ["testId", "size", "color", "style"];
5399
+ var _excluded$Q = ["testId", "size", "color", "style"];
5400
5400
  var IconThumbsDown = React.forwardRef(function (_ref, ref) {
5401
5401
  var _ref$testId = _ref.testId,
5402
5402
  testId = _ref$testId === void 0 ? 'icon-thumbs-down' : _ref$testId,
5403
5403
  size = _ref.size,
5404
5404
  color = _ref.color,
5405
5405
  style = _ref.style,
5406
- props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
5406
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
5407
5407
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5408
5408
  var styleProps = {
5409
5409
  size: !size && isInsideButton ? 'medium' : size,
@@ -5431,14 +5431,14 @@ var IconThumbsDown = React.forwardRef(function (_ref, ref) {
5431
5431
  });
5432
5432
  IconThumbsDown.displayName = 'IconThumbsDown';
5433
5433
 
5434
- var _excluded$N = ["testId", "size", "color", "style"];
5434
+ var _excluded$P = ["testId", "size", "color", "style"];
5435
5435
  var IconThumbsUp = React.forwardRef(function (_ref, ref) {
5436
5436
  var _ref$testId = _ref.testId,
5437
5437
  testId = _ref$testId === void 0 ? 'icon-thumbs-up' : _ref$testId,
5438
5438
  size = _ref.size,
5439
5439
  color = _ref.color,
5440
5440
  style = _ref.style,
5441
- props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
5441
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
5442
5442
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5443
5443
  var styleProps = {
5444
5444
  size: !size && isInsideButton ? 'medium' : size,
@@ -5459,14 +5459,14 @@ var IconThumbsUp = React.forwardRef(function (_ref, ref) {
5459
5459
  });
5460
5460
  IconThumbsUp.displayName = 'IconThumbsUp';
5461
5461
 
5462
- var _excluded$M = ["testId", "size", "color", "style"];
5462
+ var _excluded$O = ["testId", "size", "color", "style"];
5463
5463
  var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
5464
5464
  var _ref$testId = _ref.testId,
5465
5465
  testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
5466
5466
  size = _ref.size,
5467
5467
  color = _ref.color,
5468
5468
  style = _ref.style,
5469
- props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
5469
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
5470
5470
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5471
5471
  var styleProps = {
5472
5472
  size: !size && isInsideButton ? 'medium' : size,
@@ -5489,14 +5489,14 @@ var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
5489
5489
  });
5490
5490
  IconTimesOctagon.displayName = 'IconTimesOctagon';
5491
5491
 
5492
- var _excluded$L = ["testId", "size", "color", "style"];
5492
+ var _excluded$N = ["testId", "size", "color", "style"];
5493
5493
  var IconTimes = React.forwardRef(function (_ref, ref) {
5494
5494
  var _ref$testId = _ref.testId,
5495
5495
  testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
5496
5496
  size = _ref.size,
5497
5497
  color = _ref.color,
5498
5498
  style = _ref.style,
5499
- props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
5499
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
5500
5500
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5501
5501
  var styleProps = {
5502
5502
  size: !size && isInsideButton ? 'medium' : size,
@@ -5519,14 +5519,14 @@ var IconTimes = React.forwardRef(function (_ref, ref) {
5519
5519
  });
5520
5520
  IconTimes.displayName = 'IconTimes';
5521
5521
 
5522
- var _excluded$K = ["testId", "size", "color", "style"];
5522
+ var _excluded$M = ["testId", "size", "color", "style"];
5523
5523
  var IconTrash = React.forwardRef(function (_ref, ref) {
5524
5524
  var _ref$testId = _ref.testId,
5525
5525
  testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
5526
5526
  size = _ref.size,
5527
5527
  color = _ref.color,
5528
5528
  style = _ref.style,
5529
- props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
5529
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
5530
5530
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5531
5531
  var styleProps = {
5532
5532
  size: !size && isInsideButton ? 'medium' : size,
@@ -5549,14 +5549,14 @@ var IconTrash = React.forwardRef(function (_ref, ref) {
5549
5549
  });
5550
5550
  IconTrash.displayName = 'IconTrash';
5551
5551
 
5552
- var _excluded$J = ["testId", "size", "color", "style"];
5552
+ var _excluded$L = ["testId", "size", "color", "style"];
5553
5553
  var IconUnderline = React.forwardRef(function (_ref, ref) {
5554
5554
  var _ref$testId = _ref.testId,
5555
5555
  testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
5556
5556
  size = _ref.size,
5557
5557
  color = _ref.color,
5558
5558
  style = _ref.style,
5559
- props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
5559
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
5560
5560
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5561
5561
  var styleProps = {
5562
5562
  size: !size && isInsideButton ? 'medium' : size,
@@ -5577,14 +5577,14 @@ var IconUnderline = React.forwardRef(function (_ref, ref) {
5577
5577
  });
5578
5578
  IconUnderline.displayName = 'IconUnderline';
5579
5579
 
5580
- var _excluded$I = ["testId", "size", "color", "style"];
5580
+ var _excluded$K = ["testId", "size", "color", "style"];
5581
5581
  var IconUndo = React.forwardRef(function (_ref, ref) {
5582
5582
  var _ref$testId = _ref.testId,
5583
5583
  testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
5584
5584
  size = _ref.size,
5585
5585
  color = _ref.color,
5586
5586
  style = _ref.style,
5587
- props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5587
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
5588
5588
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5589
5589
  var styleProps = {
5590
5590
  size: !size && isInsideButton ? 'medium' : size,
@@ -5605,14 +5605,14 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
5605
5605
  });
5606
5606
  IconUndo.displayName = 'IconUndo';
5607
5607
 
5608
- var _excluded$H = ["testId", "size", "color", "style"];
5608
+ var _excluded$J = ["testId", "size", "color", "style"];
5609
5609
  var IconUniversity = React.forwardRef(function (_ref, ref) {
5610
5610
  var _ref$testId = _ref.testId,
5611
5611
  testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
5612
5612
  size = _ref.size,
5613
5613
  color = _ref.color,
5614
5614
  style = _ref.style,
5615
- props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5615
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
5616
5616
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5617
5617
  var styleProps = {
5618
5618
  size: !size && isInsideButton ? 'medium' : size,
@@ -5640,14 +5640,14 @@ var IconUniversity = React.forwardRef(function (_ref, ref) {
5640
5640
  });
5641
5641
  IconUniversity.displayName = 'IconUniversity';
5642
5642
 
5643
- var _excluded$G = ["testId", "size", "color", "style"];
5643
+ var _excluded$I = ["testId", "size", "color", "style"];
5644
5644
  var IconUnlock = React.forwardRef(function (_ref, ref) {
5645
5645
  var _ref$testId = _ref.testId,
5646
5646
  testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
5647
5647
  size = _ref.size,
5648
5648
  color = _ref.color,
5649
5649
  style = _ref.style,
5650
- props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
5650
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5651
5651
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5652
5652
  var styleProps = {
5653
5653
  size: !size && isInsideButton ? 'medium' : size,
@@ -5675,14 +5675,14 @@ var IconUnlock = React.forwardRef(function (_ref, ref) {
5675
5675
  });
5676
5676
  IconUnlock.displayName = 'IconUnlock';
5677
5677
 
5678
- var _excluded$F = ["testId", "size", "color", "style"];
5678
+ var _excluded$H = ["testId", "size", "color", "style"];
5679
5679
  var IconUserComputer = React.forwardRef(function (_ref, ref) {
5680
5680
  var _ref$testId = _ref.testId,
5681
5681
  testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
5682
5682
  size = _ref.size,
5683
5683
  color = _ref.color,
5684
5684
  style = _ref.style,
5685
- props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
5685
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5686
5686
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5687
5687
  var styleProps = {
5688
5688
  size: !size && isInsideButton ? 'medium' : size,
@@ -5714,14 +5714,14 @@ var IconUserComputer = React.forwardRef(function (_ref, ref) {
5714
5714
  });
5715
5715
  IconUserComputer.displayName = 'IconUserComputer';
5716
5716
 
5717
- var _excluded$E = ["testId", "size", "color", "style"];
5717
+ var _excluded$G = ["testId", "size", "color", "style"];
5718
5718
  var IconUserFriends = React.forwardRef(function (_ref, ref) {
5719
5719
  var _ref$testId = _ref.testId,
5720
5720
  testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
5721
5721
  size = _ref.size,
5722
5722
  color = _ref.color,
5723
5723
  style = _ref.style,
5724
- props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5724
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
5725
5725
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5726
5726
  var styleProps = {
5727
5727
  size: !size && isInsideButton ? 'medium' : size,
@@ -5742,14 +5742,14 @@ var IconUserFriends = React.forwardRef(function (_ref, ref) {
5742
5742
  });
5743
5743
  IconUserFriends.displayName = 'IconUserFriends';
5744
5744
 
5745
- var _excluded$D = ["testId", "size", "color", "style"];
5745
+ var _excluded$F = ["testId", "size", "color", "style"];
5746
5746
  var IconUserLight = React.forwardRef(function (_ref, ref) {
5747
5747
  var _ref$testId = _ref.testId,
5748
5748
  testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
5749
5749
  size = _ref.size,
5750
5750
  color = _ref.color,
5751
5751
  style = _ref.style,
5752
- props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5752
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
5753
5753
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5754
5754
  var styleProps = {
5755
5755
  size: !size && isInsideButton ? 'medium' : size,
@@ -5772,14 +5772,14 @@ var IconUserLight = React.forwardRef(function (_ref, ref) {
5772
5772
  });
5773
5773
  IconUserLight.displayName = 'IconUserLight';
5774
5774
 
5775
- var _excluded$C = ["testId", "size", "color", "style"];
5775
+ var _excluded$E = ["testId", "size", "color", "style"];
5776
5776
  var IconUserPlus = React.forwardRef(function (_ref, ref) {
5777
5777
  var _ref$testId = _ref.testId,
5778
5778
  testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
5779
5779
  size = _ref.size,
5780
5780
  color = _ref.color,
5781
5781
  style = _ref.style,
5782
- props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5782
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5783
5783
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5784
5784
  var styleProps = {
5785
5785
  size: !size && isInsideButton ? 'medium' : size,
@@ -5800,14 +5800,14 @@ var IconUserPlus = React.forwardRef(function (_ref, ref) {
5800
5800
  });
5801
5801
  IconUserPlus.displayName = 'IconUserPlus';
5802
5802
 
5803
- var _excluded$B = ["testId", "size", "color", "style"];
5803
+ var _excluded$D = ["testId", "size", "color", "style"];
5804
5804
  var IconUserSearch = React.forwardRef(function (_ref, ref) {
5805
5805
  var _ref$testId = _ref.testId,
5806
5806
  testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
5807
5807
  size = _ref.size,
5808
5808
  color = _ref.color,
5809
5809
  style = _ref.style,
5810
- props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5810
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5811
5811
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5812
5812
  var styleProps = {
5813
5813
  size: !size && isInsideButton ? 'medium' : size,
@@ -5837,14 +5837,14 @@ var IconUserSearch = React.forwardRef(function (_ref, ref) {
5837
5837
  });
5838
5838
  IconUserSearch.displayName = 'IconUserSearch';
5839
5839
 
5840
- var _excluded$A = ["testId", "size", "color", "style"];
5840
+ var _excluded$C = ["testId", "size", "color", "style"];
5841
5841
  var IconUserSlash = React.forwardRef(function (_ref, ref) {
5842
5842
  var _ref$testId = _ref.testId,
5843
5843
  testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
5844
5844
  size = _ref.size,
5845
5845
  color = _ref.color,
5846
5846
  style = _ref.style,
5847
- props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
5847
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5848
5848
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5849
5849
  var styleProps = {
5850
5850
  size: !size && isInsideButton ? 'medium' : size,
@@ -5872,14 +5872,14 @@ var IconUserSlash = React.forwardRef(function (_ref, ref) {
5872
5872
  });
5873
5873
  IconUserSlash.displayName = 'IconUserSlash';
5874
5874
 
5875
- var _excluded$z = ["testId", "size", "color", "style"];
5875
+ var _excluded$B = ["testId", "size", "color", "style"];
5876
5876
  var IconUserSolid = React.forwardRef(function (_ref, ref) {
5877
5877
  var _ref$testId = _ref.testId,
5878
5878
  testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
5879
5879
  size = _ref.size,
5880
5880
  color = _ref.color,
5881
5881
  style = _ref.style,
5882
- props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
5882
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5883
5883
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5884
5884
  var styleProps = {
5885
5885
  size: !size && isInsideButton ? 'medium' : size,
@@ -5900,14 +5900,14 @@ var IconUserSolid = React.forwardRef(function (_ref, ref) {
5900
5900
  });
5901
5901
  IconUserSolid.displayName = 'IconUserSolid';
5902
5902
 
5903
- var _excluded$y = ["testId", "size", "color", "style"];
5903
+ var _excluded$A = ["testId", "size", "color", "style"];
5904
5904
  var IconUserTag = React.forwardRef(function (_ref, ref) {
5905
5905
  var _ref$testId = _ref.testId,
5906
5906
  testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
5907
5907
  size = _ref.size,
5908
5908
  color = _ref.color,
5909
5909
  style = _ref.style,
5910
- props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5910
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
5911
5911
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5912
5912
  var styleProps = {
5913
5913
  size: !size && isInsideButton ? 'medium' : size,
@@ -5930,14 +5930,14 @@ var IconUserTag = React.forwardRef(function (_ref, ref) {
5930
5930
  });
5931
5931
  IconUserTag.displayName = 'IconUserTag';
5932
5932
 
5933
- var _excluded$x = ["testId", "size", "color", "style"];
5933
+ var _excluded$z = ["testId", "size", "color", "style"];
5934
5934
  var IconUserTie = React.forwardRef(function (_ref, ref) {
5935
5935
  var _ref$testId = _ref.testId,
5936
5936
  testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
5937
5937
  size = _ref.size,
5938
5938
  color = _ref.color,
5939
5939
  style = _ref.style,
5940
- props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5940
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
5941
5941
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5942
5942
  var styleProps = {
5943
5943
  size: !size && isInsideButton ? 'medium' : size,
@@ -5958,14 +5958,14 @@ var IconUserTie = React.forwardRef(function (_ref, ref) {
5958
5958
  });
5959
5959
  IconUserTie.displayName = 'IconUserTie';
5960
5960
 
5961
- var _excluded$w = ["testId", "size", "color", "style"];
5961
+ var _excluded$y = ["testId", "size", "color", "style"];
5962
5962
  var IconUsers = React.forwardRef(function (_ref, ref) {
5963
5963
  var _ref$testId = _ref.testId,
5964
5964
  testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
5965
5965
  size = _ref.size,
5966
5966
  color = _ref.color,
5967
5967
  style = _ref.style,
5968
- props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5968
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5969
5969
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5970
5970
  var styleProps = {
5971
5971
  size: !size && isInsideButton ? 'medium' : size,
@@ -5986,14 +5986,14 @@ var IconUsers = React.forwardRef(function (_ref, ref) {
5986
5986
  });
5987
5987
  IconUsers.displayName = 'IconUsers';
5988
5988
 
5989
- var _excluded$v = ["testId", "size", "color", "style"];
5989
+ var _excluded$x = ["testId", "size", "color", "style"];
5990
5990
  var IconVideo = React.forwardRef(function (_ref, ref) {
5991
5991
  var _ref$testId = _ref.testId,
5992
5992
  testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
5993
5993
  size = _ref.size,
5994
5994
  color = _ref.color,
5995
5995
  style = _ref.style,
5996
- props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
5996
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5997
5997
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5998
5998
  var styleProps = {
5999
5999
  size: !size && isInsideButton ? 'medium' : size,
@@ -6014,14 +6014,14 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
6014
6014
  });
6015
6015
  IconVideo.displayName = 'IconVideo';
6016
6016
 
6017
- var _excluded$u = ["testId", "size", "color", "style"];
6017
+ var _excluded$w = ["testId", "size", "color", "style"];
6018
6018
  var IconVolumeMute = React.forwardRef(function (_ref, ref) {
6019
6019
  var _ref$testId = _ref.testId,
6020
6020
  testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
6021
6021
  size = _ref.size,
6022
6022
  color = _ref.color,
6023
6023
  style = _ref.style,
6024
- props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
6024
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
6025
6025
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
6026
6026
  var styleProps = {
6027
6027
  size: !size && isInsideButton ? 'medium' : size,
@@ -6042,14 +6042,14 @@ var IconVolumeMute = React.forwardRef(function (_ref, ref) {
6042
6042
  });
6043
6043
  IconVolumeMute.displayName = 'IconVolumeMute';
6044
6044
 
6045
- var _excluded$t = ["testId", "size", "color", "style"];
6045
+ var _excluded$v = ["testId", "size", "color", "style"];
6046
6046
  var IconVolume = React.forwardRef(function (_ref, ref) {
6047
6047
  var _ref$testId = _ref.testId,
6048
6048
  testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
6049
6049
  size = _ref.size,
6050
6050
  color = _ref.color,
6051
6051
  style = _ref.style,
6052
- props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
6052
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
6053
6053
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
6054
6054
  var styleProps = {
6055
6055
  size: !size && isInsideButton ? 'medium' : size,
@@ -6070,14 +6070,14 @@ var IconVolume = React.forwardRef(function (_ref, ref) {
6070
6070
  });
6071
6071
  IconVolume.displayName = 'IconVolume';
6072
6072
 
6073
- var _excluded$s = ["testId", "size", "color", "style"];
6073
+ var _excluded$u = ["testId", "size", "color", "style"];
6074
6074
  var IconWrench = React.forwardRef(function (_ref, ref) {
6075
6075
  var _ref$testId = _ref.testId,
6076
6076
  testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
6077
6077
  size = _ref.size,
6078
6078
  color = _ref.color,
6079
6079
  style = _ref.style,
6080
- props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
6080
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
6081
6081
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
6082
6082
  var styleProps = {
6083
6083
  size: !size && isInsideButton ? 'medium' : size,
@@ -6254,7 +6254,7 @@ var useTranslation = function useTranslation(context) {
6254
6254
  return translate;
6255
6255
  };
6256
6256
 
6257
- var _excluded$r = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
6257
+ var _excluded$t = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
6258
6258
  /**
6259
6259
  * `PaginationControls` are two buttons side by side.
6260
6260
  */
@@ -6267,7 +6267,7 @@ var PaginationControls = function PaginationControls(_ref) {
6267
6267
  onNextClick = _ref.onNextClick,
6268
6268
  testId = _ref.testId,
6269
6269
  scrollTarget = _ref.scrollTarget,
6270
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$r);
6270
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
6271
6271
  var __ = useTranslation('PaginationControls');
6272
6272
  var _getDataProps = getDataProps(otherProps),
6273
6273
  dataProps = _getDataProps.dataProps;
@@ -6335,7 +6335,7 @@ var LINK_TARGET = {
6335
6335
 
6336
6336
  var styles$1f = {"link":"_EiQ4c"};
6337
6337
 
6338
- var _excluded$q = ["href", "target", "theme", "onClick", "children"];
6338
+ var _excluded$s = ["href", "target", "theme", "onClick", "children"];
6339
6339
  var Link = function Link(_ref) {
6340
6340
  var _classNames;
6341
6341
  var href = _ref.href,
@@ -6345,7 +6345,7 @@ var Link = function Link(_ref) {
6345
6345
  theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
6346
6346
  onClick = _ref.onClick,
6347
6347
  children = _ref.children,
6348
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
6348
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$s);
6349
6349
  var _getDataProps = getDataProps(otherProps),
6350
6350
  dataProps = _getDataProps.dataProps;
6351
6351
  return React__default["default"].createElement("a", _extends({}, dataProps, {
@@ -6671,7 +6671,7 @@ var ALIGNMENTS = {
6671
6671
 
6672
6672
  var styles$19 = {"text":"_6SgoN","text__body":"_SF95f","text__caption":"_HHohB","text__insight":"_xdhK0","text__span":"_yZbuO","text--bold":"_i2LHD","text--italic":"_NgSTT","text--underline":"_ouqVK","text--dotted-underline":"_zZ55-","text--monospace":"_Vi-V1","text--line-through":"_psV6T","text--align-left":"_tfSIf","text--align-right":"_AK1Nr","text--align-center":"_N-tR4","text--align-justify":"_LkMr0"};
6673
6673
 
6674
- var _excluded$p = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
6674
+ var _excluded$r = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
6675
6675
  var TextComponent = function TextComponent(_ref, ref) {
6676
6676
  var _classnames;
6677
6677
  var children = _ref.children,
@@ -6682,7 +6682,7 @@ var TextComponent = function TextComponent(_ref, ref) {
6682
6682
  color = _ref.color,
6683
6683
  testId = _ref.testId,
6684
6684
  textWrap = _ref.textWrap,
6685
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$p);
6685
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$r);
6686
6686
  var _getPositionProps = getPositionProps(rest),
6687
6687
  positionProps = _getPositionProps.positionProps,
6688
6688
  otherProps = _getPositionProps.otherProps;
@@ -6728,7 +6728,7 @@ var Italic = function Italic(_ref) {
6728
6728
  }, children);
6729
6729
  };
6730
6730
 
6731
- var _excluded$o = ["id", "label", "caption", "characterCount", "error", "children"];
6731
+ var _excluded$q = ["id", "label", "caption", "characterCount", "error", "children"];
6732
6732
  var Field = function Field(_ref) {
6733
6733
  var id = _ref.id,
6734
6734
  label = _ref.label,
@@ -6736,7 +6736,7 @@ var Field = function Field(_ref) {
6736
6736
  characterCount = _ref.characterCount,
6737
6737
  error = _ref.error,
6738
6738
  children = _ref.children,
6739
- dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
6739
+ dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
6740
6740
  var shouldRenderLabel = label || typeof label === 'string';
6741
6741
  var CharacterConter = function CharacterConter() {
6742
6742
  return React__default["default"].createElement(Inline, {
@@ -6875,7 +6875,7 @@ var useFieldControllers = function useFieldControllers(_ref) {
6875
6875
 
6876
6876
  var styles$18 = {"text-field":"_G6LsE","text-field--invalid":"_2ZYtt","text-field--prefixed":"_rWp7H","text-field--suffixed":"_Xq8xX"};
6877
6877
 
6878
- var _excluded$n = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
6878
+ var _excluded$p = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
6879
6879
  var useTextField = function useTextField(_ref) {
6880
6880
  var _classnames;
6881
6881
  var autoComplete = _ref.autoComplete,
@@ -6896,7 +6896,7 @@ var useTextField = function useTextField(_ref) {
6896
6896
  value = _ref.value,
6897
6897
  ref = _ref.ref,
6898
6898
  testId = _ref.testId,
6899
- dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
6899
+ dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$p);
6900
6900
  var controllers = useFieldControllers({
6901
6901
  error: error,
6902
6902
  id: id,
@@ -7034,7 +7034,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
7034
7034
  })));
7035
7035
  };
7036
7036
 
7037
- var _excluded$m = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration", "timeFormat"];
7037
+ var _excluded$o = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration", "timeFormat"];
7038
7038
  var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
7039
7039
  var placeholder = _ref.placeholder,
7040
7040
  _ref$autoComplete = _ref.autoComplete,
@@ -7043,7 +7043,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
7043
7043
  prefix = _ref.prefix,
7044
7044
  duration = _ref.duration,
7045
7045
  timeFormat = _ref.timeFormat,
7046
- allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
7046
+ allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
7047
7047
  var defaultPlaceholder = timeFormat === TIME_FORMAT.FORMAT_AMPM ? '9:00 AM' : '09:00';
7048
7048
  var _useTextField = useTextField(_extends({}, allOtherProps, {
7049
7049
  placeholder: placeholder || defaultPlaceholder,
@@ -7505,7 +7505,7 @@ var useCardContext = function useCardContext() {
7505
7505
  return context || {};
7506
7506
  };
7507
7507
 
7508
- var _excluded$l = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
7508
+ var _excluded$n = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
7509
7509
  var Card = function Card(_ref) {
7510
7510
  var _classnames, _classnames2, _classnames3, _classnames4;
7511
7511
  var children = _ref.children,
@@ -7517,7 +7517,7 @@ var Card = function Card(_ref) {
7517
7517
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
7518
7518
  actions = _ref.actions,
7519
7519
  testId = _ref.testId,
7520
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$l);
7520
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$n);
7521
7521
  var translate = useTranslation('Card');
7522
7522
  var _getPositionProps = getPositionProps(rest),
7523
7523
  positionProps = _getPositionProps.positionProps,
@@ -7753,7 +7753,7 @@ var useModalContext = function useModalContext() {
7753
7753
  return context || {};
7754
7754
  };
7755
7755
 
7756
- var _excluded$k = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
7756
+ var _excluded$m = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
7757
7757
  var Modal = function Modal(_ref) {
7758
7758
  var children = _ref.children,
7759
7759
  header = _ref.header,
@@ -7770,7 +7770,7 @@ var Modal = function Modal(_ref) {
7770
7770
  _ref$shouldReturnFocu = _ref.shouldReturnFocusAfterClose,
7771
7771
  shouldReturnFocusAfterClose = _ref$shouldReturnFocu === void 0 ? true : _ref$shouldReturnFocu,
7772
7772
  testId = _ref.testId,
7773
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$k);
7773
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
7774
7774
  var style = {
7775
7775
  content: {
7776
7776
  width: width,
@@ -8237,7 +8237,7 @@ var useCheckBoxFieldControllers = function useCheckBoxFieldControllers(_ref) {
8237
8237
 
8238
8238
  var styles$S = {"check-box-field":"_Id4qm","check-box-field__caption":"_s9d-m","check-box-field__custom-input":"_kmvBP"};
8239
8239
 
8240
- var _excluded$j = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
8240
+ var _excluded$l = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
8241
8241
  /** CheckboxField form element. */
8242
8242
  var CheckboxField = function CheckboxField(_ref) {
8243
8243
  var name = _ref.name,
@@ -8250,7 +8250,7 @@ var CheckboxField = function CheckboxField(_ref) {
8250
8250
  error = _ref.error,
8251
8251
  disabled = _ref.disabled,
8252
8252
  testId = _ref.testId,
8253
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$j);
8253
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$l);
8254
8254
  var controllers = useCheckBoxFieldControllers({
8255
8255
  name: name,
8256
8256
  id: inputId,
@@ -8328,7 +8328,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
8328
8328
 
8329
8329
  var styles$R = {"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"};
8330
8330
 
8331
- var _excluded$i = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "secondaryButton", "testId", "onSetDoNotShowAgainStatus"];
8331
+ var _excluded$k = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "secondaryButton", "testId", "onSetDoNotShowAgainStatus"];
8332
8332
  var HintModal = function HintModal(_ref) {
8333
8333
  var header = _ref.header,
8334
8334
  children = _ref.children,
@@ -8339,7 +8339,7 @@ var HintModal = function HintModal(_ref) {
8339
8339
  secondaryButton = _ref.secondaryButton,
8340
8340
  testId = _ref.testId,
8341
8341
  onSetDoNotShowAgainStatus = _ref.onSetDoNotShowAgainStatus,
8342
- positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
8342
+ positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$k);
8343
8343
  var __ = useTranslation('HintModal');
8344
8344
  var _useState = React.useState(false),
8345
8345
  doNotShowAgain = _useState[0],
@@ -8429,14 +8429,14 @@ var HintModal = function HintModal(_ref) {
8429
8429
  }, secondaryButtonUpdated, primaryButtonUpdated)))));
8430
8430
  };
8431
8431
 
8432
- var _excluded$h = ["children", "theme", "title", "testId"];
8432
+ var _excluded$j = ["children", "theme", "title", "testId"];
8433
8433
  var BadgeElement = function BadgeElement(_ref, forwardedRef) {
8434
8434
  var _classnames;
8435
8435
  var children = _ref.children,
8436
8436
  theme = _ref.theme,
8437
8437
  title = _ref.title,
8438
8438
  testId = _ref.testId,
8439
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
8439
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$j);
8440
8440
  var internalRef = React.useRef(null);
8441
8441
  var ref = forwardedRef || internalRef;
8442
8442
  React.useLayoutEffect(function () {
@@ -8995,7 +8995,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
8995
8995
  }
8996
8996
  };
8997
8997
 
8998
- var _excluded$g = ["children", "theme", "icon", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
8998
+ var _excluded$i = ["children", "theme", "icon", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
8999
8999
  var InlineBanner = function InlineBanner(_ref) {
9000
9000
  var _classnames, _classnames2, _classnames3;
9001
9001
  var children = _ref.children,
@@ -9008,7 +9008,7 @@ var InlineBanner = function InlineBanner(_ref) {
9008
9008
  primaryButton = _ref.primaryButton,
9009
9009
  secondaryButton = _ref.secondaryButton,
9010
9010
  testId = _ref.testId,
9011
- positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
9011
+ positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
9012
9012
  var positionStyles = usePositionStyles(positionProps);
9013
9013
  var multiLine = !!title;
9014
9014
  var dismissable = !!onClose;
@@ -9231,14 +9231,14 @@ var SKELETON_COMPONENT = {
9231
9231
  PILL: 'pill'
9232
9232
  };
9233
9233
 
9234
- var _excluded$f = ["as", "testId", "width", "height"];
9234
+ var _excluded$h = ["as", "testId", "width", "height"];
9235
9235
  var Skeleton = function Skeleton(_ref) {
9236
9236
  var _classnames;
9237
9237
  var as = _ref.as,
9238
9238
  testId = _ref.testId,
9239
9239
  width = _ref.width,
9240
9240
  height = _ref.height,
9241
- positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$f);
9241
+ positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$h);
9242
9242
  var positioning = usePositionStyles(positionStyles);
9243
9243
  return React__default["default"].createElement("div", {
9244
9244
  "data-testid": testId,
@@ -9417,7 +9417,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
9417
9417
  };
9418
9418
  var DataTableEditableCell = React.forwardRef(DataTableEditableCellElement);
9419
9419
 
9420
- var _excluded$e = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
9420
+ var _excluded$g = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
9421
9421
  var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
9422
9422
  var _classnames;
9423
9423
  var children = _ref.children,
@@ -9429,7 +9429,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
9429
9429
  _ref$hasDefaultCell = _ref.hasDefaultCell,
9430
9430
  hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
9431
9431
  testId = _ref.testId,
9432
- nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$e);
9432
+ nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
9433
9433
  var _useDataTableContext = useDataTableContext(),
9434
9434
  showActionMenu = _useDataTableContext.showActionMenu;
9435
9435
  var styleNames = classnames__default["default"](styles$G['data-table-row'], (_classnames = {}, _classnames[styles$G['data-table-row--clickable']] = onClick, _classnames[styles$G['data-table-row--selected']] = isSelected, _classnames));
@@ -9837,7 +9837,7 @@ var DataTableEmptyState = function DataTableEmptyState(_ref) {
9837
9837
  }, ''));
9838
9838
  };
9839
9839
 
9840
- var _excluded$d = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns", "emptyState"];
9840
+ var _excluded$f = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns", "emptyState"];
9841
9841
  var DataTable = function DataTable(_ref) {
9842
9842
  var _classNames, _classNames2, _classNames3;
9843
9843
  var items = _ref.items,
@@ -9862,7 +9862,11 @@ var DataTable = function DataTable(_ref) {
9862
9862
  skeletonRowLayout = _ref.skeletonRowLayout,
9863
9863
  stickyColumns = _ref.stickyColumns,
9864
9864
  emptyState = _ref.emptyState,
9865
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$d);
9865
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$f);
9866
+ var _getPositionProps = getPositionProps(rest),
9867
+ positionProps = _getPositionProps.positionProps,
9868
+ otherProps = _getPositionProps.otherProps;
9869
+ var positionStyles = usePositionStyles(positionProps);
9866
9870
  var _getDataProps = getDataProps(otherProps),
9867
9871
  dataProps = _getDataProps.dataProps;
9868
9872
  var prevItemsRef = React.useRef([]);
@@ -9933,7 +9937,8 @@ var DataTable = function DataTable(_ref) {
9933
9937
  }
9934
9938
  }, React__default["default"].createElement("div", {
9935
9939
  className: classnames__default["default"](styles$O['data-table']),
9936
- ref: tableRef
9940
+ ref: tableRef,
9941
+ style: positionStyles
9937
9942
  }, React__default["default"].createElement(DataTableStickyColumnsContainer, {
9938
9943
  stickyColumns: stickyColumns,
9939
9944
  isShowingColumns: !!isShowingColumns,
@@ -10019,9 +10024,9 @@ var AccordionItem = function AccordionItem(props) {
10019
10024
  }, React__default["default"].createElement(Inline, {
10020
10025
  justifyContent: "space-between",
10021
10026
  alignItems: "center"
10022
- }, React__default["default"].createElement(Text, {
10027
+ }, typeof title === 'string' ? React__default["default"].createElement(Text, {
10023
10028
  emphasis: "bold"
10024
- }, title), React__default["default"].createElement(IconChevronDown, {
10029
+ }, title) : title, React__default["default"].createElement(IconChevronDown, {
10025
10030
  className: styles$x["accordion-item__icon" + (isOpen ? '--active' : '')],
10026
10031
  color: 'surface-on-color-subtle'
10027
10032
  }))), React__default["default"].createElement("div", {
@@ -10032,15 +10037,19 @@ var AccordionItem = function AccordionItem(props) {
10032
10037
 
10033
10038
  var styles$w = {"accordion":"_058SP"};
10034
10039
 
10035
- var Accordion = function Accordion(props) {
10036
- var items = props.items,
10037
- onExpand = props.onExpand,
10038
- defaultOpenId = props.defaultOpenId;
10040
+ var _excluded$e = ["items", "onExpand", "defaultOpenId"];
10041
+ var Accordion = function Accordion(_ref) {
10042
+ var items = _ref.items,
10043
+ onExpand = _ref.onExpand,
10044
+ defaultOpenId = _ref.defaultOpenId,
10045
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$e);
10039
10046
  var _useState = React.useState(function () {
10040
10047
  return defaultOpenId || null;
10041
10048
  }),
10042
10049
  activeId = _useState[0],
10043
10050
  setActiveId = _useState[1];
10051
+ var _getDataProps = getDataProps(rest),
10052
+ dataProps = _getDataProps.dataProps;
10044
10053
  var handleAccordionItemOpen = function handleAccordionItemOpen(item) {
10045
10054
  setActiveId((item == null ? void 0 : item.id) || null);
10046
10055
  item && onExpand && onExpand(item);
@@ -10052,9 +10061,9 @@ var Accordion = function Accordion(props) {
10052
10061
  value: {
10053
10062
  isAccordionMounted: true
10054
10063
  }
10055
- }, React__default["default"].createElement("div", {
10064
+ }, React__default["default"].createElement("div", _extends({
10056
10065
  className: styles$w['accordion']
10057
- }, items.map(function (item, index) {
10066
+ }, dataProps), items.map(function (item, index) {
10058
10067
  var id = item.id || index.toString();
10059
10068
  return React__default["default"].createElement(AccordionItem, {
10060
10069
  key: id,
@@ -10263,11 +10272,11 @@ var useSelectFieldControllers = function useSelectFieldControllers(_ref) {
10263
10272
 
10264
10273
  var styles$u = {"custom-control":"_pXQqq"};
10265
10274
 
10266
- var _excluded$c = ["children"];
10275
+ var _excluded$d = ["children"];
10267
10276
  function CustomControl(_ref) {
10268
10277
  var _props$getValue;
10269
10278
  var children = _ref.children,
10270
- props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
10279
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
10271
10280
  var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
10272
10281
  var selectedOption = (_props$getValue = props.getValue()) == null ? void 0 : _props$getValue[0];
10273
10282
  return React__default["default"].createElement(Select.components.Control, _extends({}, props), SelectedOptionPrefix && selectedOption ? React__default["default"].createElement("div", {
@@ -10284,10 +10293,10 @@ function CustomControl(_ref) {
10284
10293
  }, props)), children)) : children);
10285
10294
  }
10286
10295
 
10287
- var _excluded$b = ["children"];
10296
+ var _excluded$c = ["children"];
10288
10297
  function CustomOption(_ref) {
10289
10298
  var children = _ref.children,
10290
- props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
10299
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
10291
10300
  var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
10292
10301
  if (!UserCustomOption) {
10293
10302
  return null;
@@ -10445,10 +10454,10 @@ var CustomContainer = function CustomContainer(props) {
10445
10454
 
10446
10455
  var styles$t = {"custom-menu-text-field":"_AAUjm","custom-menu-hr":"_mFLK9","custom-menu-div":"_1XpI4"};
10447
10456
 
10448
- var _excluded$a = ["children"];
10457
+ var _excluded$b = ["children"];
10449
10458
  function CustomMenu(_ref) {
10450
10459
  var children = _ref.children,
10451
- props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
10460
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
10452
10461
  var _props$selectProps$co = props.selectProps.componentsProps,
10453
10462
  creatableButton = _props$selectProps$co.creatableButton,
10454
10463
  onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
@@ -10561,7 +10570,7 @@ function CustomMenu(_ref) {
10561
10570
  }, __('createButton'))))));
10562
10571
  }
10563
10572
 
10564
- var _excluded$9 = ["asToolbarFilter", "caption", "disabled", "error", "id", "isClearable", "label", "menuShouldScrollIntoView", "name", "noOptionsMessage", "options", "onBlur", "onChange", "placeholder", "value", "defaultValue", "CustomOption", "SelectedOptionPrefix", "testId", "creatableButton", "onCreate", "isSearchable", "autoFocus"];
10573
+ var _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"];
10565
10574
  var useSelectField = function useSelectField(_ref) {
10566
10575
  var _ref$asToolbarFilter = _ref.asToolbarFilter,
10567
10576
  asToolbarFilter = _ref$asToolbarFilter === void 0 ? false : _ref$asToolbarFilter,
@@ -10590,7 +10599,7 @@ var useSelectField = function useSelectField(_ref) {
10590
10599
  _ref$isSearchable = _ref.isSearchable,
10591
10600
  isSearchable = _ref$isSearchable === void 0 ? true : _ref$isSearchable,
10592
10601
  autoFocus = _ref.autoFocus,
10593
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$9);
10602
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$a);
10594
10603
  var _useState = React.useState(false),
10595
10604
  isMenuInputFocus = _useState[0],
10596
10605
  setIsMenuInputFocus = _useState[1];
@@ -10684,6 +10693,7 @@ var SelectField = function SelectField(props) {
10684
10693
  }, React__default["default"].createElement(Select__default["default"], _extends({}, selectProps))));
10685
10694
  };
10686
10695
 
10696
+ var _excluded$9 = ["name", "value", "options", "onChange", "onBlur", "placeholder", "defaultValue", "menuShouldScrollIntoView", "disabled", "prefix", "testId", "creatableButton", "onCreate"];
10687
10697
  /** Toolbar component to make a possible selection from predefined options. */
10688
10698
  var ToolbarSelect = function ToolbarSelect(_ref) {
10689
10699
  var name = _ref.name,
@@ -10698,8 +10708,9 @@ var ToolbarSelect = function ToolbarSelect(_ref) {
10698
10708
  prefix = _ref.prefix,
10699
10709
  testId = _ref.testId,
10700
10710
  creatableButton = _ref.creatableButton,
10701
- onCreate = _ref.onCreate;
10702
- return React__default["default"].createElement(SelectField, {
10711
+ onCreate = _ref.onCreate,
10712
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$9);
10713
+ return React__default["default"].createElement(SelectField, _extends({
10703
10714
  name: name,
10704
10715
  value: value,
10705
10716
  options: options,
@@ -10714,7 +10725,7 @@ var ToolbarSelect = function ToolbarSelect(_ref) {
10714
10725
  creatableButton: creatableButton,
10715
10726
  onCreate: onCreate,
10716
10727
  asToolbarFilter: true
10717
- });
10728
+ }, rest));
10718
10729
  };
10719
10730
 
10720
10731
  var styles$r = {"date-filter":"_PyXfe","date-filter--wide":"_P6ttU"};