@7shifts/sous-chef 3.64.0-beta0 → 3.65.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -154,7 +154,7 @@ const capitalizeFirstLetter = text => {
154
154
  };
155
155
  const kebabize = str => str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, ($, ofs) => (ofs ? '-' : '') + $.toLowerCase());
156
156
 
157
- const _excluded$2W = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
157
+ const _excluded$2X = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
158
158
  const getPositionProps = _ref => {
159
159
  let {
160
160
  m,
@@ -168,7 +168,7 @@ const getPositionProps = _ref => {
168
168
  ml,
169
169
  marginLeft
170
170
  } = _ref,
171
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
171
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2X);
172
172
  return {
173
173
  positionProps: {
174
174
  m,
@@ -204,7 +204,7 @@ const getDataProps = (props, config) => {
204
204
  });
205
205
  };
206
206
 
207
- const _excluded$2V = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
207
+ const _excluded$2W = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
208
208
  /**
209
209
  * Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
210
210
  */
@@ -223,7 +223,7 @@ const Flex = _ref => {
223
223
  testId,
224
224
  extraClass
225
225
  } = _ref,
226
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
226
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
227
227
  const {
228
228
  positionProps,
229
229
  otherProps
@@ -264,7 +264,7 @@ const Flex = _ref => {
264
264
  }, child)));
265
265
  };
266
266
 
267
- const _excluded$2U = ["alignItems"];
267
+ const _excluded$2V = ["alignItems"];
268
268
  /**
269
269
  * Layout component to easily stack elements up in a column.
270
270
  */
@@ -272,7 +272,7 @@ const Stack = _ref => {
272
272
  let {
273
273
  alignItems = 'stretch'
274
274
  } = _ref,
275
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
275
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
276
276
  return React.createElement(Flex, _extends({}, props, {
277
277
  alignItems: alignItems,
278
278
  direction: "column"
@@ -281,7 +281,7 @@ const Stack = _ref => {
281
281
 
282
282
  var styles$1k = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
283
283
 
284
- const _excluded$2T = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
284
+ const _excluded$2U = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
285
285
  /**
286
286
  * Used when you want to allow the user to turn some information ON and OFF.
287
287
  *
@@ -297,7 +297,7 @@ const Toggle = _ref => {
297
297
  id,
298
298
  testId
299
299
  } = _ref,
300
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
300
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
301
301
  const {
302
302
  dataProps
303
303
  } = getDataProps(otherProps);
@@ -820,7 +820,7 @@ const COMPONENT_NAMES = {
820
820
  BUTTON: 'BUTTON'
821
821
  };
822
822
 
823
- const _excluded$2S = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
823
+ const _excluded$2T = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
824
824
  _excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
825
825
  const ButtonComponent = (_ref, ref) => {
826
826
  let {
@@ -842,7 +842,7 @@ const ButtonComponent = (_ref, ref) => {
842
842
  testId,
843
843
  size
844
844
  } = _ref,
845
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
845
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
846
846
  const {
847
847
  positionProps,
848
848
  otherProps
@@ -959,7 +959,8 @@ const ICON_SIZES = {
959
959
  small: '12px',
960
960
  medium: '16px',
961
961
  default: '20px',
962
- large: '24px'
962
+ large: '24px',
963
+ "extra-large": '40px'
963
964
  };
964
965
 
965
966
  const getIconStyles = ({
@@ -981,7 +982,7 @@ const useIsInsideComponent = parentComponentName => {
981
982
  return componentName === parentComponentName;
982
983
  };
983
984
 
984
- const _excluded$2R = ["testId", "size", "color", "style"];
985
+ const _excluded$2S = ["testId", "size", "color", "style"];
985
986
  const IconInfoCircle = forwardRef((_ref, ref) => {
986
987
  let {
987
988
  testId = 'icon-info-circle',
@@ -989,7 +990,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
989
990
  color,
990
991
  style
991
992
  } = _ref,
992
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
993
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
993
994
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
994
995
  const styleProps = {
995
996
  size: !size && isInsideButton ? 'medium' : size,
@@ -1012,7 +1013,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
1012
1013
  });
1013
1014
  IconInfoCircle.displayName = 'IconInfoCircle';
1014
1015
 
1015
- const _excluded$2Q = ["testId", "size", "color", "style"];
1016
+ const _excluded$2R = ["testId", "size", "color", "style"];
1016
1017
  const IconAnalytics = forwardRef((_ref, ref) => {
1017
1018
  let {
1018
1019
  testId = 'icon-analytics',
@@ -1020,7 +1021,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
1020
1021
  color,
1021
1022
  style
1022
1023
  } = _ref,
1023
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
1024
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
1024
1025
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1025
1026
  const styleProps = {
1026
1027
  size: !size && isInsideButton ? 'medium' : size,
@@ -1043,7 +1044,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
1043
1044
  });
1044
1045
  IconAnalytics.displayName = 'IconAnalytics';
1045
1046
 
1046
- const _excluded$2P = ["testId", "size", "color", "style"];
1047
+ const _excluded$2Q = ["testId", "size", "color", "style"];
1047
1048
  const IconArrowDownWideShort = forwardRef((_ref, ref) => {
1048
1049
  let {
1049
1050
  testId = 'icon-arrow-down-wide-short',
@@ -1051,7 +1052,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
1051
1052
  color,
1052
1053
  style
1053
1054
  } = _ref,
1054
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
1055
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
1055
1056
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1056
1057
  const styleProps = {
1057
1058
  size: !size && isInsideButton ? 'medium' : size,
@@ -1072,7 +1073,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
1072
1073
  });
1073
1074
  IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
1074
1075
 
1075
- const _excluded$2O = ["testId", "size", "color", "style"];
1076
+ const _excluded$2P = ["testId", "size", "color", "style"];
1076
1077
  const IconArrowDown = forwardRef((_ref, ref) => {
1077
1078
  let {
1078
1079
  testId = 'icon-arrow-down',
@@ -1080,7 +1081,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
1080
1081
  color,
1081
1082
  style
1082
1083
  } = _ref,
1083
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
1084
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
1084
1085
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1085
1086
  const styleProps = {
1086
1087
  size: !size && isInsideButton ? 'medium' : size,
@@ -1103,7 +1104,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
1103
1104
  });
1104
1105
  IconArrowDown.displayName = 'IconArrowDown';
1105
1106
 
1106
- const _excluded$2N = ["testId", "size", "color", "style"];
1107
+ const _excluded$2O = ["testId", "size", "color", "style"];
1107
1108
  const IconArrowLeft = forwardRef((_ref, ref) => {
1108
1109
  let {
1109
1110
  testId = 'icon-arrow-left',
@@ -1111,7 +1112,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
1111
1112
  color,
1112
1113
  style
1113
1114
  } = _ref,
1114
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
1115
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
1115
1116
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1116
1117
  const styleProps = {
1117
1118
  size: !size && isInsideButton ? 'medium' : size,
@@ -1134,7 +1135,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
1134
1135
  });
1135
1136
  IconArrowLeft.displayName = 'IconArrowLeft';
1136
1137
 
1137
- const _excluded$2M = ["testId", "size", "color", "style"];
1138
+ const _excluded$2N = ["testId", "size", "color", "style"];
1138
1139
  const IconArrowRight = forwardRef((_ref, ref) => {
1139
1140
  let {
1140
1141
  testId = 'icon-arrow-right',
@@ -1142,7 +1143,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
1142
1143
  color,
1143
1144
  style
1144
1145
  } = _ref,
1145
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
1146
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
1146
1147
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1147
1148
  const styleProps = {
1148
1149
  size: !size && isInsideButton ? 'medium' : size,
@@ -1165,7 +1166,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
1165
1166
  });
1166
1167
  IconArrowRight.displayName = 'IconArrowRight';
1167
1168
 
1168
- const _excluded$2L = ["testId", "size", "color", "style"];
1169
+ const _excluded$2M = ["testId", "size", "color", "style"];
1169
1170
  const IconArrowToTop = forwardRef((_ref, ref) => {
1170
1171
  let {
1171
1172
  testId = 'icon-arrow-to-top',
@@ -1173,7 +1174,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
1173
1174
  color,
1174
1175
  style
1175
1176
  } = _ref,
1176
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
1177
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
1177
1178
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1178
1179
  const styleProps = {
1179
1180
  size: !size && isInsideButton ? 'medium' : size,
@@ -1194,7 +1195,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
1194
1195
  });
1195
1196
  IconArrowToTop.displayName = 'IconArrowToTop';
1196
1197
 
1197
- const _excluded$2K = ["testId", "size", "color", "style"];
1198
+ const _excluded$2L = ["testId", "size", "color", "style"];
1198
1199
  const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
1199
1200
  let {
1200
1201
  testId = 'icon-arrow-turn-down-right',
@@ -1202,7 +1203,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
1202
1203
  color,
1203
1204
  style
1204
1205
  } = _ref,
1205
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
1206
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
1206
1207
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1207
1208
  const styleProps = {
1208
1209
  size: !size && isInsideButton ? 'medium' : size,
@@ -1231,7 +1232,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
1231
1232
  });
1232
1233
  IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
1233
1234
 
1234
- const _excluded$2J = ["testId", "size", "color", "style"];
1235
+ const _excluded$2K = ["testId", "size", "color", "style"];
1235
1236
  const IconArrowUp = forwardRef((_ref, ref) => {
1236
1237
  let {
1237
1238
  testId = 'icon-arrow-up',
@@ -1239,7 +1240,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
1239
1240
  color,
1240
1241
  style
1241
1242
  } = _ref,
1242
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
1243
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
1243
1244
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1244
1245
  const styleProps = {
1245
1246
  size: !size && isInsideButton ? 'medium' : size,
@@ -1262,7 +1263,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
1262
1263
  });
1263
1264
  IconArrowUp.displayName = 'IconArrowUp';
1264
1265
 
1265
- const _excluded$2I = ["testId", "size", "color", "style"];
1266
+ const _excluded$2J = ["testId", "size", "color", "style"];
1266
1267
  const IconAward = forwardRef((_ref, ref) => {
1267
1268
  let {
1268
1269
  testId = 'icon-award',
@@ -1270,7 +1271,7 @@ const IconAward = forwardRef((_ref, ref) => {
1270
1271
  color,
1271
1272
  style
1272
1273
  } = _ref,
1273
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
1274
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
1274
1275
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1275
1276
  const styleProps = {
1276
1277
  size: !size && isInsideButton ? 'medium' : size,
@@ -1293,7 +1294,7 @@ const IconAward = forwardRef((_ref, ref) => {
1293
1294
  });
1294
1295
  IconAward.displayName = 'IconAward';
1295
1296
 
1296
- const _excluded$2H = ["testId", "size", "color", "style"];
1297
+ const _excluded$2I = ["testId", "size", "color", "style"];
1297
1298
  const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
1298
1299
  let {
1299
1300
  testId = 'icon-awful-monochromatic',
@@ -1301,7 +1302,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
1301
1302
  color,
1302
1303
  style
1303
1304
  } = _ref,
1304
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
1305
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
1305
1306
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1306
1307
  const styleProps = {
1307
1308
  size: !size && isInsideButton ? 'medium' : size,
@@ -1354,7 +1355,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
1354
1355
  });
1355
1356
  IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
1356
1357
 
1357
- const _excluded$2G = ["testId", "size", "color", "style"];
1358
+ const _excluded$2H = ["testId", "size", "color", "style"];
1358
1359
  const IconAwful = forwardRef((_ref, ref) => {
1359
1360
  let {
1360
1361
  testId = 'icon-awful',
@@ -1362,7 +1363,7 @@ const IconAwful = forwardRef((_ref, ref) => {
1362
1363
  color,
1363
1364
  style
1364
1365
  } = _ref,
1365
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
1366
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
1366
1367
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1367
1368
  const styleProps = {
1368
1369
  size: !size && isInsideButton ? 'medium' : size,
@@ -1403,7 +1404,7 @@ const IconAwful = forwardRef((_ref, ref) => {
1403
1404
  });
1404
1405
  IconAwful.displayName = 'IconAwful';
1405
1406
 
1406
- const _excluded$2F = ["testId", "size", "color", "style"];
1407
+ const _excluded$2G = ["testId", "size", "color", "style"];
1407
1408
  const IconBadMonochromatic = forwardRef((_ref, ref) => {
1408
1409
  let {
1409
1410
  testId = 'icon-bad-monochromatic',
@@ -1411,7 +1412,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
1411
1412
  color,
1412
1413
  style
1413
1414
  } = _ref,
1414
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
1415
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
1415
1416
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1416
1417
  const styleProps = {
1417
1418
  size: !size && isInsideButton ? 'medium' : size,
@@ -1450,7 +1451,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
1450
1451
  });
1451
1452
  IconBadMonochromatic.displayName = 'IconBadMonochromatic';
1452
1453
 
1453
- const _excluded$2E = ["testId", "size", "color", "style"];
1454
+ const _excluded$2F = ["testId", "size", "color", "style"];
1454
1455
  const IconBad = forwardRef((_ref, ref) => {
1455
1456
  let {
1456
1457
  testId = 'icon-bad',
@@ -1458,7 +1459,7 @@ const IconBad = forwardRef((_ref, ref) => {
1458
1459
  color,
1459
1460
  style
1460
1461
  } = _ref,
1461
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
1462
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
1462
1463
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1463
1464
  const styleProps = {
1464
1465
  size: !size && isInsideButton ? 'medium' : size,
@@ -1485,7 +1486,7 @@ const IconBad = forwardRef((_ref, ref) => {
1485
1486
  });
1486
1487
  IconBad.displayName = 'IconBad';
1487
1488
 
1488
- const _excluded$2D = ["testId", "size", "color", "style"];
1489
+ const _excluded$2E = ["testId", "size", "color", "style"];
1489
1490
  const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
1490
1491
  let {
1491
1492
  testId = 'icon-balance-scale-left',
@@ -1493,7 +1494,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
1493
1494
  color,
1494
1495
  style
1495
1496
  } = _ref,
1496
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
1497
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
1497
1498
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1498
1499
  const styleProps = {
1499
1500
  size: !size && isInsideButton ? 'medium' : size,
@@ -1521,7 +1522,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
1521
1522
  });
1522
1523
  IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
1523
1524
 
1524
- const _excluded$2C = ["testId", "size", "color", "style"];
1525
+ const _excluded$2D = ["testId", "size", "color", "style"];
1525
1526
  const IconBalanceScale = forwardRef((_ref, ref) => {
1526
1527
  let {
1527
1528
  testId = 'icon-balance-scale',
@@ -1529,7 +1530,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
1529
1530
  color,
1530
1531
  style
1531
1532
  } = _ref,
1532
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
1533
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
1533
1534
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1534
1535
  const styleProps = {
1535
1536
  size: !size && isInsideButton ? 'medium' : size,
@@ -1557,7 +1558,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
1557
1558
  });
1558
1559
  IconBalanceScale.displayName = 'IconBalanceScale';
1559
1560
 
1560
- const _excluded$2B = ["testId", "size", "color", "style"];
1561
+ const _excluded$2C = ["testId", "size", "color", "style"];
1561
1562
  const IconBan = forwardRef((_ref, ref) => {
1562
1563
  let {
1563
1564
  testId = 'icon-ban',
@@ -1565,7 +1566,7 @@ const IconBan = forwardRef((_ref, ref) => {
1565
1566
  color,
1566
1567
  style
1567
1568
  } = _ref,
1568
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
1569
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
1569
1570
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1570
1571
  const styleProps = {
1571
1572
  size: !size && isInsideButton ? 'medium' : size,
@@ -1586,7 +1587,7 @@ const IconBan = forwardRef((_ref, ref) => {
1586
1587
  });
1587
1588
  IconBan.displayName = 'IconBan';
1588
1589
 
1589
- const _excluded$2A = ["testId", "size", "color", "style"];
1590
+ const _excluded$2B = ["testId", "size", "color", "style"];
1590
1591
  const IconBarsH = forwardRef((_ref, ref) => {
1591
1592
  let {
1592
1593
  testId = 'icon-bars-h',
@@ -1594,7 +1595,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
1594
1595
  color,
1595
1596
  style
1596
1597
  } = _ref,
1597
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
1598
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
1598
1599
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1599
1600
  const styleProps = {
1600
1601
  size: !size && isInsideButton ? 'medium' : size,
@@ -1617,7 +1618,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
1617
1618
  });
1618
1619
  IconBarsH.displayName = 'IconBarsH';
1619
1620
 
1620
- const _excluded$2z = ["testId", "size", "color", "style"];
1621
+ const _excluded$2A = ["testId", "size", "color", "style"];
1621
1622
  const IconBarsV = forwardRef((_ref, ref) => {
1622
1623
  let {
1623
1624
  testId = 'icon-bars-v',
@@ -1625,7 +1626,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
1625
1626
  color,
1626
1627
  style
1627
1628
  } = _ref,
1628
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
1629
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
1629
1630
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1630
1631
  const styleProps = {
1631
1632
  size: !size && isInsideButton ? 'medium' : size,
@@ -1646,7 +1647,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
1646
1647
  });
1647
1648
  IconBarsV.displayName = 'IconBarsV';
1648
1649
 
1649
- const _excluded$2y = ["testId", "size", "color", "style"];
1650
+ const _excluded$2z = ["testId", "size", "color", "style"];
1650
1651
  const IconBell = forwardRef((_ref, ref) => {
1651
1652
  let {
1652
1653
  testId = 'icon-bell',
@@ -1654,7 +1655,7 @@ const IconBell = forwardRef((_ref, ref) => {
1654
1655
  color,
1655
1656
  style
1656
1657
  } = _ref,
1657
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
1658
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
1658
1659
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1659
1660
  const styleProps = {
1660
1661
  size: !size && isInsideButton ? 'medium' : size,
@@ -1677,7 +1678,7 @@ const IconBell = forwardRef((_ref, ref) => {
1677
1678
  });
1678
1679
  IconBell.displayName = 'IconBell';
1679
1680
 
1680
- const _excluded$2x = ["testId", "size", "color", "style"];
1681
+ const _excluded$2y = ["testId", "size", "color", "style"];
1681
1682
  const IconBirthdayCake = forwardRef((_ref, ref) => {
1682
1683
  let {
1683
1684
  testId = 'icon-birthday-cake',
@@ -1685,7 +1686,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
1685
1686
  color,
1686
1687
  style
1687
1688
  } = _ref,
1688
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
1689
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
1689
1690
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1690
1691
  const styleProps = {
1691
1692
  size: !size && isInsideButton ? 'medium' : size,
@@ -1706,7 +1707,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
1706
1707
  });
1707
1708
  IconBirthdayCake.displayName = 'IconBirthdayCake';
1708
1709
 
1709
- const _excluded$2w = ["testId", "size", "color", "style"];
1710
+ const _excluded$2x = ["testId", "size", "color", "style"];
1710
1711
  const IconBold = forwardRef((_ref, ref) => {
1711
1712
  let {
1712
1713
  testId = 'icon-bold',
@@ -1714,7 +1715,7 @@ const IconBold = forwardRef((_ref, ref) => {
1714
1715
  color,
1715
1716
  style
1716
1717
  } = _ref,
1717
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
1718
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
1718
1719
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1719
1720
  const styleProps = {
1720
1721
  size: !size && isInsideButton ? 'medium' : size,
@@ -1735,7 +1736,7 @@ const IconBold = forwardRef((_ref, ref) => {
1735
1736
  });
1736
1737
  IconBold.displayName = 'IconBold';
1737
1738
 
1738
- const _excluded$2v = ["testId", "size", "color", "style"];
1739
+ const _excluded$2w = ["testId", "size", "color", "style"];
1739
1740
  const IconBolt = forwardRef((_ref, ref) => {
1740
1741
  let {
1741
1742
  testId = 'icon-bolt',
@@ -1743,7 +1744,7 @@ const IconBolt = forwardRef((_ref, ref) => {
1743
1744
  color,
1744
1745
  style
1745
1746
  } = _ref,
1746
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
1747
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
1747
1748
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1748
1749
  const styleProps = {
1749
1750
  size: !size && isInsideButton ? 'medium' : size,
@@ -1771,7 +1772,7 @@ const IconBolt = forwardRef((_ref, ref) => {
1771
1772
  });
1772
1773
  IconBolt.displayName = 'IconBolt';
1773
1774
 
1774
- const _excluded$2u = ["testId", "size", "color", "style"];
1775
+ const _excluded$2v = ["testId", "size", "color", "style"];
1775
1776
  const IconBook = forwardRef((_ref, ref) => {
1776
1777
  let {
1777
1778
  testId = 'icon-book',
@@ -1779,7 +1780,7 @@ const IconBook = forwardRef((_ref, ref) => {
1779
1780
  color,
1780
1781
  style
1781
1782
  } = _ref,
1782
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
1783
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
1783
1784
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1784
1785
  const styleProps = {
1785
1786
  size: !size && isInsideButton ? 'medium' : size,
@@ -1802,7 +1803,7 @@ const IconBook = forwardRef((_ref, ref) => {
1802
1803
  });
1803
1804
  IconBook.displayName = 'IconBook';
1804
1805
 
1805
- const _excluded$2t = ["testId", "size", "color", "style"];
1806
+ const _excluded$2u = ["testId", "size", "color", "style"];
1806
1807
  const IconBriefcase = forwardRef((_ref, ref) => {
1807
1808
  let {
1808
1809
  testId = 'icon-briefcase',
@@ -1810,7 +1811,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
1810
1811
  color,
1811
1812
  style
1812
1813
  } = _ref,
1813
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
1814
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
1814
1815
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1815
1816
  const styleProps = {
1816
1817
  size: !size && isInsideButton ? 'medium' : size,
@@ -1831,7 +1832,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
1831
1832
  });
1832
1833
  IconBriefcase.displayName = 'IconBriefcase';
1833
1834
 
1834
- const _excluded$2s = ["testId", "size", "color", "style"];
1835
+ const _excluded$2t = ["testId", "size", "color", "style"];
1835
1836
  const IconBullseyeArrow = forwardRef((_ref, ref) => {
1836
1837
  let {
1837
1838
  testId = 'icon-bullseye-arrow',
@@ -1839,7 +1840,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
1839
1840
  color,
1840
1841
  style
1841
1842
  } = _ref,
1842
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
1843
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
1843
1844
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1844
1845
  const styleProps = {
1845
1846
  size: !size && isInsideButton ? 'medium' : size,
@@ -1862,7 +1863,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
1862
1863
  });
1863
1864
  IconBullseyeArrow.displayName = 'IconBullseyeArrow';
1864
1865
 
1865
- const _excluded$2r = ["testId", "size", "color", "style"];
1866
+ const _excluded$2s = ["testId", "size", "color", "style"];
1866
1867
  const IconCalculator = forwardRef((_ref, ref) => {
1867
1868
  let {
1868
1869
  testId = 'icon-calculator',
@@ -1870,7 +1871,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
1870
1871
  color,
1871
1872
  style
1872
1873
  } = _ref,
1873
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
1874
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
1874
1875
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1875
1876
  const styleProps = {
1876
1877
  size: !size && isInsideButton ? 'medium' : size,
@@ -1893,7 +1894,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
1893
1894
  });
1894
1895
  IconCalculator.displayName = 'IconCalculator';
1895
1896
 
1896
- const _excluded$2q = ["testId", "size", "color", "style"];
1897
+ const _excluded$2r = ["testId", "size", "color", "style"];
1897
1898
  const IconCalendarAlt = forwardRef((_ref, ref) => {
1898
1899
  let {
1899
1900
  testId = 'icon-calendar-alt',
@@ -1901,7 +1902,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
1901
1902
  color,
1902
1903
  style
1903
1904
  } = _ref,
1904
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
1905
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
1905
1906
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1906
1907
  const styleProps = {
1907
1908
  size: !size && isInsideButton ? 'medium' : size,
@@ -1924,7 +1925,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
1924
1925
  });
1925
1926
  IconCalendarAlt.displayName = 'IconCalendarAlt';
1926
1927
 
1927
- const _excluded$2p = ["testId", "size", "color", "style"];
1928
+ const _excluded$2q = ["testId", "size", "color", "style"];
1928
1929
  const IconCalendarCheck = forwardRef((_ref, ref) => {
1929
1930
  let {
1930
1931
  testId = 'icon-calendar-check',
@@ -1932,7 +1933,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
1932
1933
  color,
1933
1934
  style
1934
1935
  } = _ref,
1935
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
1936
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
1936
1937
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1937
1938
  const styleProps = {
1938
1939
  size: !size && isInsideButton ? 'medium' : size,
@@ -1955,7 +1956,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
1955
1956
  });
1956
1957
  IconCalendarCheck.displayName = 'IconCalendarCheck';
1957
1958
 
1958
- const _excluded$2o = ["testId", "size", "color", "style"];
1959
+ const _excluded$2p = ["testId", "size", "color", "style"];
1959
1960
  const IconCalendarDay = forwardRef((_ref, ref) => {
1960
1961
  let {
1961
1962
  testId = 'icon-calendar-day',
@@ -1963,7 +1964,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
1963
1964
  color,
1964
1965
  style
1965
1966
  } = _ref,
1966
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
1967
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
1967
1968
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1968
1969
  const styleProps = {
1969
1970
  size: !size && isInsideButton ? 'medium' : size,
@@ -1991,7 +1992,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
1991
1992
  });
1992
1993
  IconCalendarDay.displayName = 'IconCalendarDay';
1993
1994
 
1994
- const _excluded$2n = ["testId", "size", "color", "style"];
1995
+ const _excluded$2o = ["testId", "size", "color", "style"];
1995
1996
  const IconCalendarExclamation = forwardRef((_ref, ref) => {
1996
1997
  let {
1997
1998
  testId = 'icon-calendar-exclamation',
@@ -1999,7 +2000,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
1999
2000
  color,
2000
2001
  style
2001
2002
  } = _ref,
2002
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
2003
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
2003
2004
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2004
2005
  const styleProps = {
2005
2006
  size: !size && isInsideButton ? 'medium' : size,
@@ -2020,7 +2021,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
2020
2021
  });
2021
2022
  IconCalendarExclamation.displayName = 'IconCalendarExclamation';
2022
2023
 
2023
- const _excluded$2m = ["testId", "size", "color", "style"];
2024
+ const _excluded$2n = ["testId", "size", "color", "style"];
2024
2025
  const IconCalendarStar = forwardRef((_ref, ref) => {
2025
2026
  let {
2026
2027
  testId = 'icon-calendar-star',
@@ -2028,7 +2029,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
2028
2029
  color,
2029
2030
  style
2030
2031
  } = _ref,
2031
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
2032
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
2032
2033
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2033
2034
  const styleProps = {
2034
2035
  size: !size && isInsideButton ? 'medium' : size,
@@ -2049,7 +2050,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
2049
2050
  });
2050
2051
  IconCalendarStar.displayName = 'IconCalendarStar';
2051
2052
 
2052
- const _excluded$2l = ["testId", "size", "color", "style"];
2053
+ const _excluded$2m = ["testId", "size", "color", "style"];
2053
2054
  const IconCalendarTomorrow = forwardRef((_ref, ref) => {
2054
2055
  let {
2055
2056
  testId = 'icon-calendar-tomorrow',
@@ -2057,7 +2058,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
2057
2058
  color,
2058
2059
  style
2059
2060
  } = _ref,
2060
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
2061
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
2061
2062
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2062
2063
  const styleProps = {
2063
2064
  size: !size && isInsideButton ? 'medium' : size,
@@ -2087,7 +2088,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
2087
2088
  });
2088
2089
  IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
2089
2090
 
2090
- const _excluded$2k = ["testId", "size", "color", "style"];
2091
+ const _excluded$2l = ["testId", "size", "color", "style"];
2091
2092
  const IconCalendar = forwardRef((_ref, ref) => {
2092
2093
  let {
2093
2094
  testId = 'icon-calendar',
@@ -2095,7 +2096,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
2095
2096
  color,
2096
2097
  style
2097
2098
  } = _ref,
2098
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
2099
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
2099
2100
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2100
2101
  const styleProps = {
2101
2102
  size: !size && isInsideButton ? 'medium' : size,
@@ -2118,7 +2119,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
2118
2119
  });
2119
2120
  IconCalendar.displayName = 'IconCalendar';
2120
2121
 
2121
- const _excluded$2j = ["testId", "size", "color", "style"];
2122
+ const _excluded$2k = ["testId", "size", "color", "style"];
2122
2123
  const IconCameraSlash = forwardRef((_ref, ref) => {
2123
2124
  let {
2124
2125
  testId = 'icon-camera-slash',
@@ -2126,7 +2127,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
2126
2127
  color,
2127
2128
  style
2128
2129
  } = _ref,
2129
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
2130
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
2130
2131
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2131
2132
  const styleProps = {
2132
2133
  size: !size && isInsideButton ? 'medium' : size,
@@ -2150,7 +2151,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
2150
2151
  });
2151
2152
  IconCameraSlash.displayName = 'IconCameraSlash';
2152
2153
 
2153
- const _excluded$2i = ["testId", "size", "color", "style"];
2154
+ const _excluded$2j = ["testId", "size", "color", "style"];
2154
2155
  const IconCamera = forwardRef((_ref, ref) => {
2155
2156
  let {
2156
2157
  testId = 'icon-camera',
@@ -2158,7 +2159,7 @@ const IconCamera = forwardRef((_ref, ref) => {
2158
2159
  color,
2159
2160
  style
2160
2161
  } = _ref,
2161
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
2162
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
2162
2163
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2163
2164
  const styleProps = {
2164
2165
  size: !size && isInsideButton ? 'medium' : size,
@@ -2179,7 +2180,7 @@ const IconCamera = forwardRef((_ref, ref) => {
2179
2180
  });
2180
2181
  IconCamera.displayName = 'IconCamera';
2181
2182
 
2182
- const _excluded$2h = ["testId", "size", "color", "style"];
2183
+ const _excluded$2i = ["testId", "size", "color", "style"];
2183
2184
  const IconCashRegister = forwardRef((_ref, ref) => {
2184
2185
  let {
2185
2186
  testId = 'icon-cash-register',
@@ -2187,7 +2188,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
2187
2188
  color,
2188
2189
  style
2189
2190
  } = _ref,
2190
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
2191
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
2191
2192
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2192
2193
  const styleProps = {
2193
2194
  size: !size && isInsideButton ? 'medium' : size,
@@ -2208,7 +2209,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
2208
2209
  });
2209
2210
  IconCashRegister.displayName = 'IconCashRegister';
2210
2211
 
2211
- const _excluded$2g = ["testId", "size", "color", "style"];
2212
+ const _excluded$2h = ["testId", "size", "color", "style"];
2212
2213
  const IconChartBar = forwardRef((_ref, ref) => {
2213
2214
  let {
2214
2215
  testId = 'icon-chart-bar',
@@ -2216,7 +2217,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
2216
2217
  color,
2217
2218
  style
2218
2219
  } = _ref,
2219
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
2220
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
2220
2221
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2221
2222
  const styleProps = {
2222
2223
  size: !size && isInsideButton ? 'medium' : size,
@@ -2239,7 +2240,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
2239
2240
  });
2240
2241
  IconChartBar.displayName = 'IconChartBar';
2241
2242
 
2242
- const _excluded$2f = ["testId", "size", "color", "style"];
2243
+ const _excluded$2g = ["testId", "size", "color", "style"];
2243
2244
  const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
2244
2245
  let {
2245
2246
  testId = 'icon-check-circle-incomplete',
@@ -2247,7 +2248,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
2247
2248
  color,
2248
2249
  style
2249
2250
  } = _ref,
2250
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
2251
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
2251
2252
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2252
2253
  const styleProps = {
2253
2254
  size: !size && isInsideButton ? 'medium' : size,
@@ -2268,7 +2269,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
2268
2269
  });
2269
2270
  IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
2270
2271
 
2271
- const _excluded$2e = ["testId", "size", "color", "style"];
2272
+ const _excluded$2f = ["testId", "size", "color", "style"];
2272
2273
  const IconCheck = forwardRef((_ref, ref) => {
2273
2274
  let {
2274
2275
  testId = 'icon-check',
@@ -2276,7 +2277,7 @@ const IconCheck = forwardRef((_ref, ref) => {
2276
2277
  color,
2277
2278
  style
2278
2279
  } = _ref,
2279
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
2280
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
2280
2281
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2281
2282
  const styleProps = {
2282
2283
  size: !size && isInsideButton ? 'medium' : size,
@@ -2299,7 +2300,7 @@ const IconCheck = forwardRef((_ref, ref) => {
2299
2300
  });
2300
2301
  IconCheck.displayName = 'IconCheck';
2301
2302
 
2302
- const _excluded$2d = ["testId", "size", "color", "style"];
2303
+ const _excluded$2e = ["testId", "size", "color", "style"];
2303
2304
  const IconChevronDown = forwardRef((_ref, ref) => {
2304
2305
  let {
2305
2306
  testId = 'icon-chevron-down',
@@ -2307,7 +2308,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
2307
2308
  color,
2308
2309
  style
2309
2310
  } = _ref,
2310
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
2311
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
2311
2312
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2312
2313
  const styleProps = {
2313
2314
  size: !size && isInsideButton ? 'medium' : size,
@@ -2330,7 +2331,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
2330
2331
  });
2331
2332
  IconChevronDown.displayName = 'IconChevronDown';
2332
2333
 
2333
- const _excluded$2c = ["testId", "size", "color", "style"];
2334
+ const _excluded$2d = ["testId", "size", "color", "style"];
2334
2335
  const IconChevronLeft = forwardRef((_ref, ref) => {
2335
2336
  let {
2336
2337
  testId = 'icon-chevron-left',
@@ -2338,7 +2339,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
2338
2339
  color,
2339
2340
  style
2340
2341
  } = _ref,
2341
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
2342
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
2342
2343
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2343
2344
  const styleProps = {
2344
2345
  size: !size && isInsideButton ? 'medium' : size,
@@ -2361,7 +2362,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
2361
2362
  });
2362
2363
  IconChevronLeft.displayName = 'IconChevronLeft';
2363
2364
 
2364
- const _excluded$2b = ["testId", "size", "color", "style"];
2365
+ const _excluded$2c = ["testId", "size", "color", "style"];
2365
2366
  const IconChevronRight = forwardRef((_ref, ref) => {
2366
2367
  let {
2367
2368
  testId = 'icon-chevron-right',
@@ -2369,7 +2370,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
2369
2370
  color,
2370
2371
  style
2371
2372
  } = _ref,
2372
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
2373
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
2373
2374
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2374
2375
  const styleProps = {
2375
2376
  size: !size && isInsideButton ? 'medium' : size,
@@ -2392,7 +2393,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
2392
2393
  });
2393
2394
  IconChevronRight.displayName = 'IconChevronRight';
2394
2395
 
2395
- const _excluded$2a = ["testId", "size", "color", "style"];
2396
+ const _excluded$2b = ["testId", "size", "color", "style"];
2396
2397
  const IconChevronUp = forwardRef((_ref, ref) => {
2397
2398
  let {
2398
2399
  testId = 'icon-chevron-up',
@@ -2400,7 +2401,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
2400
2401
  color,
2401
2402
  style
2402
2403
  } = _ref,
2403
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
2404
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
2404
2405
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2405
2406
  const styleProps = {
2406
2407
  size: !size && isInsideButton ? 'medium' : size,
@@ -2423,7 +2424,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
2423
2424
  });
2424
2425
  IconChevronUp.displayName = 'IconChevronUp';
2425
2426
 
2426
- const _excluded$29 = ["testId", "size", "color", "style"];
2427
+ const _excluded$2a = ["testId", "size", "color", "style"];
2427
2428
  const IconClipboardList = forwardRef((_ref, ref) => {
2428
2429
  let {
2429
2430
  testId = 'icon-clipboard-list',
@@ -2431,7 +2432,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
2431
2432
  color,
2432
2433
  style
2433
2434
  } = _ref,
2434
- props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
2435
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
2435
2436
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2436
2437
  const styleProps = {
2437
2438
  size: !size && isInsideButton ? 'medium' : size,
@@ -2454,7 +2455,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
2454
2455
  });
2455
2456
  IconClipboardList.displayName = 'IconClipboardList';
2456
2457
 
2457
- const _excluded$28 = ["testId", "size", "color", "style"];
2458
+ const _excluded$29 = ["testId", "size", "color", "style"];
2458
2459
  const IconClockExclamation = forwardRef((_ref, ref) => {
2459
2460
  let {
2460
2461
  testId = 'icon-clock-exclamation',
@@ -2462,7 +2463,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
2462
2463
  color,
2463
2464
  style
2464
2465
  } = _ref,
2465
- props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
2466
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
2466
2467
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2467
2468
  const styleProps = {
2468
2469
  size: !size && isInsideButton ? 'medium' : size,
@@ -2490,7 +2491,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
2490
2491
  });
2491
2492
  IconClockExclamation.displayName = 'IconClockExclamation';
2492
2493
 
2493
- const _excluded$27 = ["testId", "size", "color", "style"];
2494
+ const _excluded$28 = ["testId", "size", "color", "style"];
2494
2495
  const IconClockRewind = forwardRef((_ref, ref) => {
2495
2496
  let {
2496
2497
  testId = 'icon-clock-rewind',
@@ -2498,7 +2499,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
2498
2499
  color,
2499
2500
  style
2500
2501
  } = _ref,
2501
- props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
2502
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
2502
2503
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2503
2504
  const styleProps = {
2504
2505
  size: !size && isInsideButton ? 'medium' : size,
@@ -2526,7 +2527,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
2526
2527
  });
2527
2528
  IconClockRewind.displayName = 'IconClockRewind';
2528
2529
 
2529
- const _excluded$26 = ["testId", "size", "color", "style"];
2530
+ const _excluded$27 = ["testId", "size", "color", "style"];
2530
2531
  const IconClock = forwardRef((_ref, ref) => {
2531
2532
  let {
2532
2533
  testId = 'icon-clock',
@@ -2534,7 +2535,7 @@ const IconClock = forwardRef((_ref, ref) => {
2534
2535
  color,
2535
2536
  style
2536
2537
  } = _ref,
2537
- props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
2538
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
2538
2539
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2539
2540
  const styleProps = {
2540
2541
  size: !size && isInsideButton ? 'medium' : size,
@@ -2555,7 +2556,7 @@ const IconClock = forwardRef((_ref, ref) => {
2555
2556
  });
2556
2557
  IconClock.displayName = 'IconClock';
2557
2558
 
2558
- const _excluded$25 = ["testId", "size", "color", "style"];
2559
+ const _excluded$26 = ["testId", "size", "color", "style"];
2559
2560
  const IconCog = forwardRef((_ref, ref) => {
2560
2561
  let {
2561
2562
  testId = 'icon-cog',
@@ -2563,7 +2564,7 @@ const IconCog = forwardRef((_ref, ref) => {
2563
2564
  color,
2564
2565
  style
2565
2566
  } = _ref,
2566
- props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
2567
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
2567
2568
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2568
2569
  const styleProps = {
2569
2570
  size: !size && isInsideButton ? 'medium' : size,
@@ -2584,7 +2585,7 @@ const IconCog = forwardRef((_ref, ref) => {
2584
2585
  });
2585
2586
  IconCog.displayName = 'IconCog';
2586
2587
 
2587
- const _excluded$24 = ["testId", "size", "color", "style"];
2588
+ const _excluded$25 = ["testId", "size", "color", "style"];
2588
2589
  const IconCommentLines = forwardRef((_ref, ref) => {
2589
2590
  let {
2590
2591
  testId = 'icon-comment-lines',
@@ -2592,7 +2593,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
2592
2593
  color,
2593
2594
  style
2594
2595
  } = _ref,
2595
- props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
2596
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
2596
2597
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2597
2598
  const styleProps = {
2598
2599
  size: !size && isInsideButton ? 'medium' : size,
@@ -2618,7 +2619,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
2618
2619
  });
2619
2620
  IconCommentLines.displayName = 'IconCommentLines';
2620
2621
 
2621
- const _excluded$23 = ["testId", "size", "color", "style"];
2622
+ const _excluded$24 = ["testId", "size", "color", "style"];
2622
2623
  const IconComment = forwardRef((_ref, ref) => {
2623
2624
  let {
2624
2625
  testId = 'icon-comment',
@@ -2626,7 +2627,7 @@ const IconComment = forwardRef((_ref, ref) => {
2626
2627
  color,
2627
2628
  style
2628
2629
  } = _ref,
2629
- props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
2630
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
2630
2631
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2631
2632
  const styleProps = {
2632
2633
  size: !size && isInsideButton ? 'medium' : size,
@@ -2649,7 +2650,7 @@ const IconComment = forwardRef((_ref, ref) => {
2649
2650
  });
2650
2651
  IconComment.displayName = 'IconComment';
2651
2652
 
2652
- const _excluded$22 = ["testId", "size", "color", "style"];
2653
+ const _excluded$23 = ["testId", "size", "color", "style"];
2653
2654
  const IconCopy = forwardRef((_ref, ref) => {
2654
2655
  let {
2655
2656
  testId = 'icon-copy',
@@ -2657,7 +2658,7 @@ const IconCopy = forwardRef((_ref, ref) => {
2657
2658
  color,
2658
2659
  style
2659
2660
  } = _ref,
2660
- props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
2661
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
2661
2662
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2662
2663
  const styleProps = {
2663
2664
  size: !size && isInsideButton ? 'medium' : size,
@@ -2685,7 +2686,7 @@ const IconCopy = forwardRef((_ref, ref) => {
2685
2686
  });
2686
2687
  IconCopy.displayName = 'IconCopy';
2687
2688
 
2688
- const _excluded$21 = ["testId", "size", "color", "style"];
2689
+ const _excluded$22 = ["testId", "size", "color", "style"];
2689
2690
  const IconCreditCardPlus = forwardRef((_ref, ref) => {
2690
2691
  let {
2691
2692
  testId = 'icon-credit-card-plus',
@@ -2693,7 +2694,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
2693
2694
  color,
2694
2695
  style
2695
2696
  } = _ref,
2696
- props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
2697
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
2697
2698
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2698
2699
  const styleProps = {
2699
2700
  size: !size && isInsideButton ? 'medium' : size,
@@ -2723,7 +2724,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
2723
2724
  });
2724
2725
  IconCreditCardPlus.displayName = 'IconCreditCardPlus';
2725
2726
 
2726
- const _excluded$20 = ["testId", "size", "color", "style"];
2727
+ const _excluded$21 = ["testId", "size", "color", "style"];
2727
2728
  const IconCreditCard = forwardRef((_ref, ref) => {
2728
2729
  let {
2729
2730
  testId = 'icon-credit-card',
@@ -2731,7 +2732,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
2731
2732
  color,
2732
2733
  style
2733
2734
  } = _ref,
2734
- props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
2735
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
2735
2736
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2736
2737
  const styleProps = {
2737
2738
  size: !size && isInsideButton ? 'medium' : size,
@@ -2759,7 +2760,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
2759
2760
  });
2760
2761
  IconCreditCard.displayName = 'IconCreditCard';
2761
2762
 
2762
- const _excluded$1$ = ["testId", "size", "color", "style"];
2763
+ const _excluded$20 = ["testId", "size", "color", "style"];
2763
2764
  const IconDecentMonochromatic = forwardRef((_ref, ref) => {
2764
2765
  let {
2765
2766
  testId = 'icon-decent-monochromatic',
@@ -2767,7 +2768,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
2767
2768
  color,
2768
2769
  style
2769
2770
  } = _ref,
2770
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
2771
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
2771
2772
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2772
2773
  const styleProps = {
2773
2774
  size: !size && isInsideButton ? 'medium' : size,
@@ -2810,7 +2811,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
2810
2811
  });
2811
2812
  IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
2812
2813
 
2813
- const _excluded$1_ = ["testId", "size", "color", "style"];
2814
+ const _excluded$1$ = ["testId", "size", "color", "style"];
2814
2815
  const IconDecent = forwardRef((_ref, ref) => {
2815
2816
  let {
2816
2817
  testId = 'icon-decent',
@@ -2818,7 +2819,7 @@ const IconDecent = forwardRef((_ref, ref) => {
2818
2819
  color,
2819
2820
  style
2820
2821
  } = _ref,
2821
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
2822
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
2822
2823
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2823
2824
  const styleProps = {
2824
2825
  size: !size && isInsideButton ? 'medium' : size,
@@ -2849,7 +2850,7 @@ const IconDecent = forwardRef((_ref, ref) => {
2849
2850
  });
2850
2851
  IconDecent.displayName = 'IconDecent';
2851
2852
 
2852
- const _excluded$1Z = ["testId", "size", "color", "style"];
2853
+ const _excluded$1_ = ["testId", "size", "color", "style"];
2853
2854
  const IconDownload = forwardRef((_ref, ref) => {
2854
2855
  let {
2855
2856
  testId = 'icon-download',
@@ -2857,7 +2858,7 @@ const IconDownload = forwardRef((_ref, ref) => {
2857
2858
  color,
2858
2859
  style
2859
2860
  } = _ref,
2860
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
2861
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
2861
2862
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2862
2863
  const styleProps = {
2863
2864
  size: !size && isInsideButton ? 'medium' : size,
@@ -2880,7 +2881,7 @@ const IconDownload = forwardRef((_ref, ref) => {
2880
2881
  });
2881
2882
  IconDownload.displayName = 'IconDownload';
2882
2883
 
2883
- const _excluded$1Y = ["testId", "size", "color", "style"];
2884
+ const _excluded$1Z = ["testId", "size", "color", "style"];
2884
2885
  const IconEdit = forwardRef((_ref, ref) => {
2885
2886
  let {
2886
2887
  testId = 'icon-edit',
@@ -2888,7 +2889,7 @@ const IconEdit = forwardRef((_ref, ref) => {
2888
2889
  color,
2889
2890
  style
2890
2891
  } = _ref,
2891
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
2892
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
2892
2893
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2893
2894
  const styleProps = {
2894
2895
  size: !size && isInsideButton ? 'medium' : size,
@@ -2909,7 +2910,7 @@ const IconEdit = forwardRef((_ref, ref) => {
2909
2910
  });
2910
2911
  IconEdit.displayName = 'IconEdit';
2911
2912
 
2912
- const _excluded$1X = ["testId", "size", "color", "style"];
2913
+ const _excluded$1Y = ["testId", "size", "color", "style"];
2913
2914
  const IconEllipsisV = forwardRef((_ref, ref) => {
2914
2915
  let {
2915
2916
  testId = 'icon-ellipsis-v',
@@ -2917,7 +2918,7 @@ const IconEllipsisV = forwardRef((_ref, ref) => {
2917
2918
  color,
2918
2919
  style
2919
2920
  } = _ref,
2920
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
2921
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
2921
2922
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2922
2923
  const styleProps = {
2923
2924
  size: !size && isInsideButton ? 'medium' : size,
@@ -2940,7 +2941,7 @@ const IconEllipsisV = forwardRef((_ref, ref) => {
2940
2941
  });
2941
2942
  IconEllipsisV.displayName = 'IconEllipsisV';
2942
2943
 
2943
- const _excluded$1W = ["testId", "size", "color", "style"];
2944
+ const _excluded$1X = ["testId", "size", "color", "style"];
2944
2945
  const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
2945
2946
  let {
2946
2947
  testId = 'icon-envelope-open-dollar',
@@ -2948,7 +2949,7 @@ const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
2948
2949
  color,
2949
2950
  style
2950
2951
  } = _ref,
2951
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
2952
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
2952
2953
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2953
2954
  const styleProps = {
2954
2955
  size: !size && isInsideButton ? 'medium' : size,
@@ -2976,7 +2977,7 @@ const IconEnvelopeOpenDollar = forwardRef((_ref, ref) => {
2976
2977
  });
2977
2978
  IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
2978
2979
 
2979
- const _excluded$1V = ["testId", "size", "color", "style"];
2980
+ const _excluded$1W = ["testId", "size", "color", "style"];
2980
2981
  const IconEnvelope = forwardRef((_ref, ref) => {
2981
2982
  let {
2982
2983
  testId = 'icon-envelope',
@@ -2984,7 +2985,7 @@ const IconEnvelope = forwardRef((_ref, ref) => {
2984
2985
  color,
2985
2986
  style
2986
2987
  } = _ref,
2987
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
2988
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
2988
2989
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2989
2990
  const styleProps = {
2990
2991
  size: !size && isInsideButton ? 'medium' : size,
@@ -3005,7 +3006,7 @@ const IconEnvelope = forwardRef((_ref, ref) => {
3005
3006
  });
3006
3007
  IconEnvelope.displayName = 'IconEnvelope';
3007
3008
 
3008
- const _excluded$1U = ["testId", "size", "color", "style"];
3009
+ const _excluded$1V = ["testId", "size", "color", "style"];
3009
3010
  const IconExclaimationTriangle = forwardRef((_ref, ref) => {
3010
3011
  let {
3011
3012
  testId = 'icon-exclaimation-triangle',
@@ -3013,7 +3014,7 @@ const IconExclaimationTriangle = forwardRef((_ref, ref) => {
3013
3014
  color,
3014
3015
  style
3015
3016
  } = _ref,
3016
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
3017
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
3017
3018
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3018
3019
  const styleProps = {
3019
3020
  size: !size && isInsideButton ? 'medium' : size,
@@ -3036,7 +3037,7 @@ const IconExclaimationTriangle = forwardRef((_ref, ref) => {
3036
3037
  });
3037
3038
  IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
3038
3039
 
3039
- const _excluded$1T = ["testId", "size", "color", "style"];
3040
+ const _excluded$1U = ["testId", "size", "color", "style"];
3040
3041
  const IconExclaimation = forwardRef((_ref, ref) => {
3041
3042
  let {
3042
3043
  testId = 'icon-exclaimation',
@@ -3044,7 +3045,7 @@ const IconExclaimation = forwardRef((_ref, ref) => {
3044
3045
  color,
3045
3046
  style
3046
3047
  } = _ref,
3047
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
3048
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
3048
3049
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3049
3050
  const styleProps = {
3050
3051
  size: !size && isInsideButton ? 'medium' : size,
@@ -3065,7 +3066,7 @@ const IconExclaimation = forwardRef((_ref, ref) => {
3065
3066
  });
3066
3067
  IconExclaimation.displayName = 'IconExclaimation';
3067
3068
 
3068
- const _excluded$1S = ["testId", "size", "color", "style"];
3069
+ const _excluded$1T = ["testId", "size", "color", "style"];
3069
3070
  const IconExpand = forwardRef((_ref, ref) => {
3070
3071
  let {
3071
3072
  testId = 'icon-expand',
@@ -3073,7 +3074,7 @@ const IconExpand = forwardRef((_ref, ref) => {
3073
3074
  color,
3074
3075
  style
3075
3076
  } = _ref,
3076
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
3077
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
3077
3078
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3078
3079
  const styleProps = {
3079
3080
  size: !size && isInsideButton ? 'medium' : size,
@@ -3094,7 +3095,7 @@ const IconExpand = forwardRef((_ref, ref) => {
3094
3095
  });
3095
3096
  IconExpand.displayName = 'IconExpand';
3096
3097
 
3097
- const _excluded$1R = ["testId", "size", "color", "style"];
3098
+ const _excluded$1S = ["testId", "size", "color", "style"];
3098
3099
  const IconExternalLink = forwardRef((_ref, ref) => {
3099
3100
  let {
3100
3101
  testId = 'icon-external-link',
@@ -3102,7 +3103,7 @@ const IconExternalLink = forwardRef((_ref, ref) => {
3102
3103
  color,
3103
3104
  style
3104
3105
  } = _ref,
3105
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
3106
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
3106
3107
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3107
3108
  const styleProps = {
3108
3109
  size: !size && isInsideButton ? 'medium' : size,
@@ -3125,7 +3126,7 @@ const IconExternalLink = forwardRef((_ref, ref) => {
3125
3126
  });
3126
3127
  IconExternalLink.displayName = 'IconExternalLink';
3127
3128
 
3128
- const _excluded$1Q = ["testId", "size", "color", "style"];
3129
+ const _excluded$1R = ["testId", "size", "color", "style"];
3129
3130
  const IconEyeSlash = forwardRef((_ref, ref) => {
3130
3131
  let {
3131
3132
  testId = 'icon-eye-slash',
@@ -3133,7 +3134,7 @@ const IconEyeSlash = forwardRef((_ref, ref) => {
3133
3134
  color,
3134
3135
  style
3135
3136
  } = _ref,
3136
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
3137
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
3137
3138
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3138
3139
  const styleProps = {
3139
3140
  size: !size && isInsideButton ? 'medium' : size,
@@ -3168,7 +3169,7 @@ const IconEyeSlash = forwardRef((_ref, ref) => {
3168
3169
  });
3169
3170
  IconEyeSlash.displayName = 'IconEyeSlash';
3170
3171
 
3171
- const _excluded$1P = ["testId", "size", "color", "style"];
3172
+ const _excluded$1Q = ["testId", "size", "color", "style"];
3172
3173
  const IconEye = forwardRef((_ref, ref) => {
3173
3174
  let {
3174
3175
  testId = 'icon-eye',
@@ -3176,7 +3177,7 @@ const IconEye = forwardRef((_ref, ref) => {
3176
3177
  color,
3177
3178
  style
3178
3179
  } = _ref,
3179
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
3180
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
3180
3181
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3181
3182
  const styleProps = {
3182
3183
  size: !size && isInsideButton ? 'medium' : size,
@@ -3204,7 +3205,7 @@ const IconEye = forwardRef((_ref, ref) => {
3204
3205
  });
3205
3206
  IconEye.displayName = 'IconEye';
3206
3207
 
3207
- const _excluded$1O = ["testId", "size", "color", "style"];
3208
+ const _excluded$1P = ["testId", "size", "color", "style"];
3208
3209
  const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
3209
3210
  let {
3210
3211
  testId = 'icon-face-smile-relaxed',
@@ -3212,7 +3213,7 @@ const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
3212
3213
  color,
3213
3214
  style
3214
3215
  } = _ref,
3215
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
3216
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
3216
3217
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3217
3218
  const styleProps = {
3218
3219
  size: !size && isInsideButton ? 'medium' : size,
@@ -3240,7 +3241,7 @@ const IconFaceSmileRelaxed = forwardRef((_ref, ref) => {
3240
3241
  });
3241
3242
  IconFaceSmileRelaxed.displayName = 'IconFaceSmileRelaxed';
3242
3243
 
3243
- const _excluded$1N = ["testId", "size", "color", "style"];
3244
+ const _excluded$1O = ["testId", "size", "color", "style"];
3244
3245
  const IconFilePdf = forwardRef((_ref, ref) => {
3245
3246
  let {
3246
3247
  testId = 'icon-file-pdf',
@@ -3248,7 +3249,7 @@ const IconFilePdf = forwardRef((_ref, ref) => {
3248
3249
  color,
3249
3250
  style
3250
3251
  } = _ref,
3251
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
3252
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
3252
3253
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3253
3254
  const styleProps = {
3254
3255
  size: !size && isInsideButton ? 'medium' : size,
@@ -3276,7 +3277,7 @@ const IconFilePdf = forwardRef((_ref, ref) => {
3276
3277
  });
3277
3278
  IconFilePdf.displayName = 'IconFilePdf';
3278
3279
 
3279
- const _excluded$1M = ["testId", "size", "color", "style"];
3280
+ const _excluded$1N = ["testId", "size", "color", "style"];
3280
3281
  const IconFile = forwardRef((_ref, ref) => {
3281
3282
  let {
3282
3283
  testId = 'icon-file',
@@ -3284,7 +3285,7 @@ const IconFile = forwardRef((_ref, ref) => {
3284
3285
  color,
3285
3286
  style
3286
3287
  } = _ref,
3287
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
3288
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
3288
3289
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3289
3290
  const styleProps = {
3290
3291
  size: !size && isInsideButton ? 'medium' : size,
@@ -3312,7 +3313,7 @@ const IconFile = forwardRef((_ref, ref) => {
3312
3313
  });
3313
3314
  IconFile.displayName = 'IconFile';
3314
3315
 
3315
- const _excluded$1L = ["testId", "size", "color", "style"];
3316
+ const _excluded$1M = ["testId", "size", "color", "style"];
3316
3317
  const IconFlag = forwardRef((_ref, ref) => {
3317
3318
  let {
3318
3319
  testId = 'icon-flag',
@@ -3320,7 +3321,7 @@ const IconFlag = forwardRef((_ref, ref) => {
3320
3321
  color,
3321
3322
  style
3322
3323
  } = _ref,
3323
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
3324
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
3324
3325
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3325
3326
  const styleProps = {
3326
3327
  size: !size && isInsideButton ? 'medium' : size,
@@ -3348,7 +3349,7 @@ const IconFlag = forwardRef((_ref, ref) => {
3348
3349
  });
3349
3350
  IconFlag.displayName = 'IconFlag';
3350
3351
 
3351
- const _excluded$1K = ["testId", "size", "color", "style"];
3352
+ const _excluded$1L = ["testId", "size", "color", "style"];
3352
3353
  const IconFourDotsCircle = forwardRef((_ref, ref) => {
3353
3354
  let {
3354
3355
  testId = 'icon-four-dots-circle',
@@ -3356,7 +3357,7 @@ const IconFourDotsCircle = forwardRef((_ref, ref) => {
3356
3357
  color,
3357
3358
  style
3358
3359
  } = _ref,
3359
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
3360
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
3360
3361
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3361
3362
  const styleProps = {
3362
3363
  size: !size && isInsideButton ? 'medium' : size,
@@ -3379,7 +3380,7 @@ const IconFourDotsCircle = forwardRef((_ref, ref) => {
3379
3380
  });
3380
3381
  IconFourDotsCircle.displayName = 'IconFourDotsCircle';
3381
3382
 
3382
- const _excluded$1J = ["testId", "size", "color", "style"];
3383
+ const _excluded$1K = ["testId", "size", "color", "style"];
3383
3384
  const IconFourSquares = forwardRef((_ref, ref) => {
3384
3385
  let {
3385
3386
  testId = 'icon-four-squares',
@@ -3387,7 +3388,7 @@ const IconFourSquares = forwardRef((_ref, ref) => {
3387
3388
  color,
3388
3389
  style
3389
3390
  } = _ref,
3390
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
3391
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
3391
3392
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3392
3393
  const styleProps = {
3393
3394
  size: !size && isInsideButton ? 'medium' : size,
@@ -3433,7 +3434,7 @@ const IconFourSquares = forwardRef((_ref, ref) => {
3433
3434
  });
3434
3435
  IconFourSquares.displayName = 'IconFourSquares';
3435
3436
 
3436
- const _excluded$1I = ["testId", "size", "color", "style"];
3437
+ const _excluded$1J = ["testId", "size", "color", "style"];
3437
3438
  const IconGavel = forwardRef((_ref, ref) => {
3438
3439
  let {
3439
3440
  testId = 'icon-gavel',
@@ -3441,7 +3442,7 @@ const IconGavel = forwardRef((_ref, ref) => {
3441
3442
  color,
3442
3443
  style
3443
3444
  } = _ref,
3444
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
3445
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
3445
3446
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3446
3447
  const styleProps = {
3447
3448
  size: !size && isInsideButton ? 'medium' : size,
@@ -3462,7 +3463,7 @@ const IconGavel = forwardRef((_ref, ref) => {
3462
3463
  });
3463
3464
  IconGavel.displayName = 'IconGavel';
3464
3465
 
3465
- const _excluded$1H = ["testId", "size", "color", "style"];
3466
+ const _excluded$1I = ["testId", "size", "color", "style"];
3466
3467
  const IconGif = forwardRef((_ref, ref) => {
3467
3468
  let {
3468
3469
  testId = 'icon-gif',
@@ -3470,7 +3471,7 @@ const IconGif = forwardRef((_ref, ref) => {
3470
3471
  color,
3471
3472
  style
3472
3473
  } = _ref,
3473
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
3474
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
3474
3475
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3475
3476
  const styleProps = {
3476
3477
  size: !size && isInsideButton ? 'medium' : size,
@@ -3495,7 +3496,7 @@ const IconGif = forwardRef((_ref, ref) => {
3495
3496
  });
3496
3497
  IconGif.displayName = 'IconGif';
3497
3498
 
3498
- const _excluded$1G = ["testId", "size", "color", "style"];
3499
+ const _excluded$1H = ["testId", "size", "color", "style"];
3499
3500
  const IconGift = forwardRef((_ref, ref) => {
3500
3501
  let {
3501
3502
  testId = 'icon-gift',
@@ -3503,7 +3504,7 @@ const IconGift = forwardRef((_ref, ref) => {
3503
3504
  color,
3504
3505
  style
3505
3506
  } = _ref,
3506
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
3507
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
3507
3508
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3508
3509
  const styleProps = {
3509
3510
  size: !size && isInsideButton ? 'medium' : size,
@@ -3524,7 +3525,7 @@ const IconGift = forwardRef((_ref, ref) => {
3524
3525
  });
3525
3526
  IconGift.displayName = 'IconGift';
3526
3527
 
3527
- const _excluded$1F = ["testId", "size", "color", "style"];
3528
+ const _excluded$1G = ["testId", "size", "color", "style"];
3528
3529
  const IconGoodMonochromatic = forwardRef((_ref, ref) => {
3529
3530
  let {
3530
3531
  testId = 'icon-good-monochromatic',
@@ -3532,7 +3533,7 @@ const IconGoodMonochromatic = forwardRef((_ref, ref) => {
3532
3533
  color,
3533
3534
  style
3534
3535
  } = _ref,
3535
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
3536
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
3536
3537
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3537
3538
  const styleProps = {
3538
3539
  size: !size && isInsideButton ? 'medium' : size,
@@ -3571,7 +3572,7 @@ const IconGoodMonochromatic = forwardRef((_ref, ref) => {
3571
3572
  });
3572
3573
  IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
3573
3574
 
3574
- const _excluded$1E = ["testId", "size", "color", "style"];
3575
+ const _excluded$1F = ["testId", "size", "color", "style"];
3575
3576
  const IconGood = forwardRef((_ref, ref) => {
3576
3577
  let {
3577
3578
  testId = 'icon-good',
@@ -3579,7 +3580,7 @@ const IconGood = forwardRef((_ref, ref) => {
3579
3580
  color,
3580
3581
  style
3581
3582
  } = _ref,
3582
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
3583
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
3583
3584
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3584
3585
  const styleProps = {
3585
3586
  size: !size && isInsideButton ? 'medium' : size,
@@ -3606,7 +3607,7 @@ const IconGood = forwardRef((_ref, ref) => {
3606
3607
  });
3607
3608
  IconGood.displayName = 'IconGood';
3608
3609
 
3609
- const _excluded$1D = ["testId", "size", "color", "style"];
3610
+ const _excluded$1E = ["testId", "size", "color", "style"];
3610
3611
  const IconGreatMonochromatic = forwardRef((_ref, ref) => {
3611
3612
  let {
3612
3613
  testId = 'icon-great-monochromatic',
@@ -3614,7 +3615,7 @@ const IconGreatMonochromatic = forwardRef((_ref, ref) => {
3614
3615
  color,
3615
3616
  style
3616
3617
  } = _ref,
3617
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
3618
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
3618
3619
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3619
3620
  const styleProps = {
3620
3621
  size: !size && isInsideButton ? 'medium' : size,
@@ -3655,7 +3656,7 @@ const IconGreatMonochromatic = forwardRef((_ref, ref) => {
3655
3656
  });
3656
3657
  IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
3657
3658
 
3658
- const _excluded$1C = ["testId", "size", "color", "style"];
3659
+ const _excluded$1D = ["testId", "size", "color", "style"];
3659
3660
  const IconGreat = forwardRef((_ref, ref) => {
3660
3661
  let {
3661
3662
  testId = 'icon-great',
@@ -3663,7 +3664,7 @@ const IconGreat = forwardRef((_ref, ref) => {
3663
3664
  color,
3664
3665
  style
3665
3666
  } = _ref,
3666
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
3667
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
3667
3668
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3668
3669
  const styleProps = {
3669
3670
  size: !size && isInsideButton ? 'medium' : size,
@@ -3692,7 +3693,7 @@ const IconGreat = forwardRef((_ref, ref) => {
3692
3693
  });
3693
3694
  IconGreat.displayName = 'IconGreat';
3694
3695
 
3695
- const _excluded$1B = ["testId", "size", "color", "style"];
3696
+ const _excluded$1C = ["testId", "size", "color", "style"];
3696
3697
  const IconGrinBeam = forwardRef((_ref, ref) => {
3697
3698
  let {
3698
3699
  testId = 'icon-grin-beam',
@@ -3700,7 +3701,7 @@ const IconGrinBeam = forwardRef((_ref, ref) => {
3700
3701
  color,
3701
3702
  style
3702
3703
  } = _ref,
3703
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
3704
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
3704
3705
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3705
3706
  const styleProps = {
3706
3707
  size: !size && isInsideButton ? 'medium' : size,
@@ -3721,7 +3722,7 @@ const IconGrinBeam = forwardRef((_ref, ref) => {
3721
3722
  });
3722
3723
  IconGrinBeam.displayName = 'IconGrinBeam';
3723
3724
 
3724
- const _excluded$1A = ["testId", "size", "color", "style"];
3725
+ const _excluded$1B = ["testId", "size", "color", "style"];
3725
3726
  const IconGripVertical = forwardRef((_ref, ref) => {
3726
3727
  let {
3727
3728
  testId = 'icon-grip-vertical',
@@ -3729,7 +3730,7 @@ const IconGripVertical = forwardRef((_ref, ref) => {
3729
3730
  color,
3730
3731
  style
3731
3732
  } = _ref,
3732
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
3733
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
3733
3734
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3734
3735
  const styleProps = {
3735
3736
  size: !size && isInsideButton ? 'medium' : size,
@@ -3777,7 +3778,7 @@ const IconGripVertical = forwardRef((_ref, ref) => {
3777
3778
  });
3778
3779
  IconGripVertical.displayName = 'IconGripVertical';
3779
3780
 
3780
- const _excluded$1z = ["testId", "size", "color", "style"];
3781
+ const _excluded$1A = ["testId", "size", "color", "style"];
3781
3782
  const IconHandHoldingDollar = forwardRef((_ref, ref) => {
3782
3783
  let {
3783
3784
  testId = 'icon-hand-holding-dollar',
@@ -3785,7 +3786,7 @@ const IconHandHoldingDollar = forwardRef((_ref, ref) => {
3785
3786
  color,
3786
3787
  style
3787
3788
  } = _ref,
3788
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
3789
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
3789
3790
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3790
3791
  const styleProps = {
3791
3792
  size: !size && isInsideButton ? 'medium' : size,
@@ -3813,7 +3814,7 @@ const IconHandHoldingDollar = forwardRef((_ref, ref) => {
3813
3814
  });
3814
3815
  IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
3815
3816
 
3816
- const _excluded$1y = ["testId", "size", "color", "style"];
3817
+ const _excluded$1z = ["testId", "size", "color", "style"];
3817
3818
  const IconHandPointRight = forwardRef((_ref, ref) => {
3818
3819
  let {
3819
3820
  testId = 'icon-hand-point-right',
@@ -3821,7 +3822,7 @@ const IconHandPointRight = forwardRef((_ref, ref) => {
3821
3822
  color,
3822
3823
  style
3823
3824
  } = _ref,
3824
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
3825
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
3825
3826
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3826
3827
  const styleProps = {
3827
3828
  size: !size && isInsideButton ? 'medium' : size,
@@ -3842,7 +3843,7 @@ const IconHandPointRight = forwardRef((_ref, ref) => {
3842
3843
  });
3843
3844
  IconHandPointRight.displayName = 'IconHandPointRight';
3844
3845
 
3845
- const _excluded$1x = ["testId", "size", "color", "style"];
3846
+ const _excluded$1y = ["testId", "size", "color", "style"];
3846
3847
  const IconHandshake = forwardRef((_ref, ref) => {
3847
3848
  let {
3848
3849
  testId = 'icon-handshake',
@@ -3850,7 +3851,7 @@ const IconHandshake = forwardRef((_ref, ref) => {
3850
3851
  color,
3851
3852
  style
3852
3853
  } = _ref,
3853
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
3854
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
3854
3855
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3855
3856
  const styleProps = {
3856
3857
  size: !size && isInsideButton ? 'medium' : size,
@@ -3878,7 +3879,7 @@ const IconHandshake = forwardRef((_ref, ref) => {
3878
3879
  });
3879
3880
  IconHandshake.displayName = 'IconHandshake';
3880
3881
 
3881
- const _excluded$1w = ["testId", "size", "color", "style"];
3882
+ const _excluded$1x = ["testId", "size", "color", "style"];
3882
3883
  const IconHatChef = forwardRef((_ref, ref) => {
3883
3884
  let {
3884
3885
  testId = 'icon-hat-chef',
@@ -3886,7 +3887,7 @@ const IconHatChef = forwardRef((_ref, ref) => {
3886
3887
  color,
3887
3888
  style
3888
3889
  } = _ref,
3889
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
3890
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
3890
3891
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3891
3892
  const styleProps = {
3892
3893
  size: !size && isInsideButton ? 'medium' : size,
@@ -3907,7 +3908,7 @@ const IconHatChef = forwardRef((_ref, ref) => {
3907
3908
  });
3908
3909
  IconHatChef.displayName = 'IconHatChef';
3909
3910
 
3910
- const _excluded$1v = ["testId", "size", "color", "style"];
3911
+ const _excluded$1w = ["testId", "size", "color", "style"];
3911
3912
  const IconImage = forwardRef((_ref, ref) => {
3912
3913
  let {
3913
3914
  testId = 'icon-image',
@@ -3915,7 +3916,7 @@ const IconImage = forwardRef((_ref, ref) => {
3915
3916
  color,
3916
3917
  style
3917
3918
  } = _ref,
3918
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
3919
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
3919
3920
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3920
3921
  const styleProps = {
3921
3922
  size: !size && isInsideButton ? 'medium' : size,
@@ -3943,7 +3944,7 @@ const IconImage = forwardRef((_ref, ref) => {
3943
3944
  });
3944
3945
  IconImage.displayName = 'IconImage';
3945
3946
 
3946
- const _excluded$1u = ["testId", "size", "color", "style"];
3947
+ const _excluded$1v = ["testId", "size", "color", "style"];
3947
3948
  const IconIslandTropical = forwardRef((_ref, ref) => {
3948
3949
  let {
3949
3950
  testId = 'icon-island-tropical',
@@ -3951,7 +3952,7 @@ const IconIslandTropical = forwardRef((_ref, ref) => {
3951
3952
  color,
3952
3953
  style
3953
3954
  } = _ref,
3954
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
3955
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
3955
3956
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3956
3957
  const styleProps = {
3957
3958
  size: !size && isInsideButton ? 'medium' : size,
@@ -3974,7 +3975,7 @@ const IconIslandTropical = forwardRef((_ref, ref) => {
3974
3975
  });
3975
3976
  IconIslandTropical.displayName = 'IconIslandTropical';
3976
3977
 
3977
- const _excluded$1t = ["testId", "size", "color", "style"];
3978
+ const _excluded$1u = ["testId", "size", "color", "style"];
3978
3979
  const IconItalic = forwardRef((_ref, ref) => {
3979
3980
  let {
3980
3981
  testId = 'icon-italic',
@@ -3982,7 +3983,7 @@ const IconItalic = forwardRef((_ref, ref) => {
3982
3983
  color,
3983
3984
  style
3984
3985
  } = _ref,
3985
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
3986
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
3986
3987
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3987
3988
  const styleProps = {
3988
3989
  size: !size && isInsideButton ? 'medium' : size,
@@ -4003,7 +4004,7 @@ const IconItalic = forwardRef((_ref, ref) => {
4003
4004
  });
4004
4005
  IconItalic.displayName = 'IconItalic';
4005
4006
 
4006
- const _excluded$1s = ["testId", "size", "color", "style"];
4007
+ const _excluded$1t = ["testId", "size", "color", "style"];
4007
4008
  const IconLaptopSearch = forwardRef((_ref, ref) => {
4008
4009
  let {
4009
4010
  testId = 'icon-laptop-search',
@@ -4011,7 +4012,7 @@ const IconLaptopSearch = forwardRef((_ref, ref) => {
4011
4012
  color,
4012
4013
  style
4013
4014
  } = _ref,
4014
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
4015
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
4015
4016
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4016
4017
  const styleProps = {
4017
4018
  size: !size && isInsideButton ? 'medium' : size,
@@ -4041,7 +4042,7 @@ const IconLaptopSearch = forwardRef((_ref, ref) => {
4041
4042
  });
4042
4043
  IconLaptopSearch.displayName = 'IconLaptopSearch';
4043
4044
 
4044
- const _excluded$1r = ["testId", "size", "color", "style"];
4045
+ const _excluded$1s = ["testId", "size", "color", "style"];
4045
4046
  const IconLink = forwardRef((_ref, ref) => {
4046
4047
  let {
4047
4048
  testId = 'icon-link',
@@ -4049,7 +4050,7 @@ const IconLink = forwardRef((_ref, ref) => {
4049
4050
  color,
4050
4051
  style
4051
4052
  } = _ref,
4052
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
4053
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
4053
4054
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4054
4055
  const styleProps = {
4055
4056
  size: !size && isInsideButton ? 'medium' : size,
@@ -4077,7 +4078,7 @@ const IconLink = forwardRef((_ref, ref) => {
4077
4078
  });
4078
4079
  IconLink.displayName = 'IconLink';
4079
4080
 
4080
- const _excluded$1q = ["testId", "size", "color", "style"];
4081
+ const _excluded$1r = ["testId", "size", "color", "style"];
4081
4082
  const IconListOI = forwardRef((_ref, ref) => {
4082
4083
  let {
4083
4084
  testId = 'icon-list-o-i',
@@ -4085,7 +4086,7 @@ const IconListOI = forwardRef((_ref, ref) => {
4085
4086
  color,
4086
4087
  style
4087
4088
  } = _ref,
4088
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
4089
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
4089
4090
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4090
4091
  const styleProps = {
4091
4092
  size: !size && isInsideButton ? 'medium' : size,
@@ -4113,7 +4114,7 @@ const IconListOI = forwardRef((_ref, ref) => {
4113
4114
  });
4114
4115
  IconListOI.displayName = 'IconListOI';
4115
4116
 
4116
- const _excluded$1p = ["testId", "size", "color", "style"];
4117
+ const _excluded$1q = ["testId", "size", "color", "style"];
4117
4118
  const IconList = forwardRef((_ref, ref) => {
4118
4119
  let {
4119
4120
  testId = 'icon-list',
@@ -4121,7 +4122,7 @@ const IconList = forwardRef((_ref, ref) => {
4121
4122
  color,
4122
4123
  style
4123
4124
  } = _ref,
4124
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
4125
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
4125
4126
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4126
4127
  const styleProps = {
4127
4128
  size: !size && isInsideButton ? 'medium' : size,
@@ -4142,7 +4143,7 @@ const IconList = forwardRef((_ref, ref) => {
4142
4143
  });
4143
4144
  IconList.displayName = 'IconList';
4144
4145
 
4145
- const _excluded$1o = ["testId", "size", "color", "style"];
4146
+ const _excluded$1p = ["testId", "size", "color", "style"];
4146
4147
  const IconLock = forwardRef((_ref, ref) => {
4147
4148
  let {
4148
4149
  testId = 'icon-lock',
@@ -4150,7 +4151,7 @@ const IconLock = forwardRef((_ref, ref) => {
4150
4151
  color,
4151
4152
  style
4152
4153
  } = _ref,
4153
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
4154
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
4154
4155
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4155
4156
  const styleProps = {
4156
4157
  size: !size && isInsideButton ? 'medium' : size,
@@ -4171,7 +4172,7 @@ const IconLock = forwardRef((_ref, ref) => {
4171
4172
  });
4172
4173
  IconLock.displayName = 'IconLock';
4173
4174
 
4174
- const _excluded$1n = ["testId", "size", "color", "style"];
4175
+ const _excluded$1o = ["testId", "size", "color", "style"];
4175
4176
  const IconMagicSolid = forwardRef((_ref, ref) => {
4176
4177
  let {
4177
4178
  testId = 'icon-magic-solid',
@@ -4179,7 +4180,7 @@ const IconMagicSolid = forwardRef((_ref, ref) => {
4179
4180
  color,
4180
4181
  style
4181
4182
  } = _ref,
4182
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
4183
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
4183
4184
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4184
4185
  const styleProps = {
4185
4186
  size: !size && isInsideButton ? 'medium' : size,
@@ -4202,7 +4203,7 @@ const IconMagicSolid = forwardRef((_ref, ref) => {
4202
4203
  });
4203
4204
  IconMagicSolid.displayName = 'IconMagicSolid';
4204
4205
 
4205
- const _excluded$1m = ["testId", "size", "color", "style"];
4206
+ const _excluded$1n = ["testId", "size", "color", "style"];
4206
4207
  const IconMapMarker = forwardRef((_ref, ref) => {
4207
4208
  let {
4208
4209
  testId = 'icon-map-marker',
@@ -4210,7 +4211,7 @@ const IconMapMarker = forwardRef((_ref, ref) => {
4210
4211
  color,
4211
4212
  style
4212
4213
  } = _ref,
4213
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
4214
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
4214
4215
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4215
4216
  const styleProps = {
4216
4217
  size: !size && isInsideButton ? 'medium' : size,
@@ -4233,7 +4234,7 @@ const IconMapMarker = forwardRef((_ref, ref) => {
4233
4234
  });
4234
4235
  IconMapMarker.displayName = 'IconMapMarker';
4235
4236
 
4236
- const _excluded$1l = ["testId", "size", "color", "style"];
4237
+ const _excluded$1m = ["testId", "size", "color", "style"];
4237
4238
  const IconMedal = forwardRef((_ref, ref) => {
4238
4239
  let {
4239
4240
  testId = 'icon-medal',
@@ -4241,7 +4242,7 @@ const IconMedal = forwardRef((_ref, ref) => {
4241
4242
  color,
4242
4243
  style
4243
4244
  } = _ref,
4244
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
4245
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
4245
4246
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4246
4247
  const styleProps = {
4247
4248
  size: !size && isInsideButton ? 'medium' : size,
@@ -4269,7 +4270,7 @@ const IconMedal = forwardRef((_ref, ref) => {
4269
4270
  });
4270
4271
  IconMedal.displayName = 'IconMedal';
4271
4272
 
4272
- const _excluded$1k = ["testId", "size", "color", "style"];
4273
+ const _excluded$1l = ["testId", "size", "color", "style"];
4273
4274
  const IconMegaphone = forwardRef((_ref, ref) => {
4274
4275
  let {
4275
4276
  testId = 'icon-megaphone',
@@ -4277,7 +4278,7 @@ const IconMegaphone = forwardRef((_ref, ref) => {
4277
4278
  color,
4278
4279
  style
4279
4280
  } = _ref,
4280
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
4281
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
4281
4282
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4282
4283
  const styleProps = {
4283
4284
  size: !size && isInsideButton ? 'medium' : size,
@@ -4300,7 +4301,7 @@ const IconMegaphone = forwardRef((_ref, ref) => {
4300
4301
  });
4301
4302
  IconMegaphone.displayName = 'IconMegaphone';
4302
4303
 
4303
- const _excluded$1j = ["testId", "size", "color", "style"];
4304
+ const _excluded$1k = ["testId", "size", "color", "style"];
4304
4305
  const IconMessages = forwardRef((_ref, ref) => {
4305
4306
  let {
4306
4307
  testId = 'icon-messages',
@@ -4308,7 +4309,7 @@ const IconMessages = forwardRef((_ref, ref) => {
4308
4309
  color,
4309
4310
  style
4310
4311
  } = _ref,
4311
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
4312
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
4312
4313
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4313
4314
  const styleProps = {
4314
4315
  size: !size && isInsideButton ? 'medium' : size,
@@ -4329,7 +4330,7 @@ const IconMessages = forwardRef((_ref, ref) => {
4329
4330
  });
4330
4331
  IconMessages.displayName = 'IconMessages';
4331
4332
 
4332
- const _excluded$1i = ["testId", "size", "color", "style"];
4333
+ const _excluded$1j = ["testId", "size", "color", "style"];
4333
4334
  const IconMinusCircle = forwardRef((_ref, ref) => {
4334
4335
  let {
4335
4336
  testId = 'icon-minus-circle',
@@ -4337,7 +4338,7 @@ const IconMinusCircle = forwardRef((_ref, ref) => {
4337
4338
  color,
4338
4339
  style
4339
4340
  } = _ref,
4340
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
4341
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
4341
4342
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4342
4343
  const styleProps = {
4343
4344
  size: !size && isInsideButton ? 'medium' : size,
@@ -4358,7 +4359,7 @@ const IconMinusCircle = forwardRef((_ref, ref) => {
4358
4359
  });
4359
4360
  IconMinusCircle.displayName = 'IconMinusCircle';
4360
4361
 
4361
- const _excluded$1h = ["testId", "size", "color", "style"];
4362
+ const _excluded$1i = ["testId", "size", "color", "style"];
4362
4363
  const IconMinus = forwardRef((_ref, ref) => {
4363
4364
  let {
4364
4365
  testId = 'icon-minus',
@@ -4366,7 +4367,7 @@ const IconMinus = forwardRef((_ref, ref) => {
4366
4367
  color,
4367
4368
  style
4368
4369
  } = _ref,
4369
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
4370
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
4370
4371
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4371
4372
  const styleProps = {
4372
4373
  size: !size && isInsideButton ? 'medium' : size,
@@ -4387,7 +4388,7 @@ const IconMinus = forwardRef((_ref, ref) => {
4387
4388
  });
4388
4389
  IconMinus.displayName = 'IconMinus';
4389
4390
 
4390
- const _excluded$1g = ["testId", "size", "color", "style"];
4391
+ const _excluded$1h = ["testId", "size", "color", "style"];
4391
4392
  const IconMoneyBill = forwardRef((_ref, ref) => {
4392
4393
  let {
4393
4394
  testId = 'icon-money-bill',
@@ -4395,7 +4396,7 @@ const IconMoneyBill = forwardRef((_ref, ref) => {
4395
4396
  color,
4396
4397
  style
4397
4398
  } = _ref,
4398
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
4399
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
4399
4400
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4400
4401
  const styleProps = {
4401
4402
  size: !size && isInsideButton ? 'medium' : size,
@@ -4416,7 +4417,7 @@ const IconMoneyBill = forwardRef((_ref, ref) => {
4416
4417
  });
4417
4418
  IconMoneyBill.displayName = 'IconMoneyBill';
4418
4419
 
4419
- const _excluded$1f = ["testId", "size", "color", "style"];
4420
+ const _excluded$1g = ["testId", "size", "color", "style"];
4420
4421
  const IconMugSaucerSolid = forwardRef((_ref, ref) => {
4421
4422
  let {
4422
4423
  testId = 'icon-mug-saucer-solid',
@@ -4424,7 +4425,7 @@ const IconMugSaucerSolid = forwardRef((_ref, ref) => {
4424
4425
  color,
4425
4426
  style
4426
4427
  } = _ref,
4427
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
4428
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
4428
4429
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4429
4430
  const styleProps = {
4430
4431
  size: !size && isInsideButton ? 'medium' : size,
@@ -4445,7 +4446,7 @@ const IconMugSaucerSolid = forwardRef((_ref, ref) => {
4445
4446
  });
4446
4447
  IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
4447
4448
 
4448
- const _excluded$1e = ["testId", "size", "color", "style"];
4449
+ const _excluded$1f = ["testId", "size", "color", "style"];
4449
4450
  const IconNotesMedical = forwardRef((_ref, ref) => {
4450
4451
  let {
4451
4452
  testId = 'icon-notes-medical',
@@ -4453,7 +4454,7 @@ const IconNotesMedical = forwardRef((_ref, ref) => {
4453
4454
  color,
4454
4455
  style
4455
4456
  } = _ref,
4456
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
4457
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
4457
4458
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4458
4459
  const styleProps = {
4459
4460
  size: !size && isInsideButton ? 'medium' : size,
@@ -4474,7 +4475,7 @@ const IconNotesMedical = forwardRef((_ref, ref) => {
4474
4475
  });
4475
4476
  IconNotesMedical.displayName = 'IconNotesMedical';
4476
4477
 
4477
- const _excluded$1d = ["testId", "size", "color", "style"];
4478
+ const _excluded$1e = ["testId", "size", "color", "style"];
4478
4479
  const IconOvertime = forwardRef((_ref, ref) => {
4479
4480
  let {
4480
4481
  testId = 'icon-overtime',
@@ -4482,7 +4483,7 @@ const IconOvertime = forwardRef((_ref, ref) => {
4482
4483
  color,
4483
4484
  style
4484
4485
  } = _ref,
4485
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
4486
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
4486
4487
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4487
4488
  const styleProps = {
4488
4489
  size: !size && isInsideButton ? 'medium' : size,
@@ -4510,7 +4511,7 @@ const IconOvertime = forwardRef((_ref, ref) => {
4510
4511
  });
4511
4512
  IconOvertime.displayName = 'IconOvertime';
4512
4513
 
4513
- const _excluded$1c = ["testId", "size", "color", "style"];
4514
+ const _excluded$1d = ["testId", "size", "color", "style"];
4514
4515
  const IconPaperPlaneClock = forwardRef((_ref, ref) => {
4515
4516
  let {
4516
4517
  testId = 'icon-paper-plane-clock',
@@ -4518,7 +4519,7 @@ const IconPaperPlaneClock = forwardRef((_ref, ref) => {
4518
4519
  color,
4519
4520
  style
4520
4521
  } = _ref,
4521
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
4522
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
4522
4523
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4523
4524
  const styleProps = {
4524
4525
  size: !size && isInsideButton ? 'medium' : size,
@@ -4550,7 +4551,7 @@ const IconPaperPlaneClock = forwardRef((_ref, ref) => {
4550
4551
  });
4551
4552
  IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
4552
4553
 
4553
- const _excluded$1b = ["testId", "size", "color", "style"];
4554
+ const _excluded$1c = ["testId", "size", "color", "style"];
4554
4555
  const IconPaperPlane = forwardRef((_ref, ref) => {
4555
4556
  let {
4556
4557
  testId = 'icon-paper-plane',
@@ -4558,7 +4559,7 @@ const IconPaperPlane = forwardRef((_ref, ref) => {
4558
4559
  color,
4559
4560
  style
4560
4561
  } = _ref,
4561
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
4562
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
4562
4563
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4563
4564
  const styleProps = {
4564
4565
  size: !size && isInsideButton ? 'medium' : size,
@@ -4581,7 +4582,7 @@ const IconPaperPlane = forwardRef((_ref, ref) => {
4581
4582
  });
4582
4583
  IconPaperPlane.displayName = 'IconPaperPlane';
4583
4584
 
4584
- const _excluded$1a = ["testId", "size", "color", "style"];
4585
+ const _excluded$1b = ["testId", "size", "color", "style"];
4585
4586
  const IconPaperclip = forwardRef((_ref, ref) => {
4586
4587
  let {
4587
4588
  testId = 'icon-paperclip',
@@ -4589,7 +4590,7 @@ const IconPaperclip = forwardRef((_ref, ref) => {
4589
4590
  color,
4590
4591
  style
4591
4592
  } = _ref,
4592
- props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
4593
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
4593
4594
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4594
4595
  const styleProps = {
4595
4596
  size: !size && isInsideButton ? 'medium' : size,
@@ -4617,7 +4618,7 @@ const IconPaperclip = forwardRef((_ref, ref) => {
4617
4618
  });
4618
4619
  IconPaperclip.displayName = 'IconPaperclip';
4619
4620
 
4620
- const _excluded$19 = ["testId", "size", "color", "style"];
4621
+ const _excluded$1a = ["testId", "size", "color", "style"];
4621
4622
  const IconPencil = forwardRef((_ref, ref) => {
4622
4623
  let {
4623
4624
  testId = 'icon-pencil',
@@ -4625,7 +4626,7 @@ const IconPencil = forwardRef((_ref, ref) => {
4625
4626
  color,
4626
4627
  style
4627
4628
  } = _ref,
4628
- props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
4629
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
4629
4630
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4630
4631
  const styleProps = {
4631
4632
  size: !size && isInsideButton ? 'medium' : size,
@@ -4648,7 +4649,7 @@ const IconPencil = forwardRef((_ref, ref) => {
4648
4649
  });
4649
4650
  IconPencil.displayName = 'IconPencil';
4650
4651
 
4651
- const _excluded$18 = ["testId", "size", "color", "style"];
4652
+ const _excluded$19 = ["testId", "size", "color", "style"];
4652
4653
  const IconPercentage = forwardRef((_ref, ref) => {
4653
4654
  let {
4654
4655
  testId = 'icon-percentage',
@@ -4656,7 +4657,7 @@ const IconPercentage = forwardRef((_ref, ref) => {
4656
4657
  color,
4657
4658
  style
4658
4659
  } = _ref,
4659
- props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
4660
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
4660
4661
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4661
4662
  const styleProps = {
4662
4663
  size: !size && isInsideButton ? 'medium' : size,
@@ -4677,7 +4678,7 @@ const IconPercentage = forwardRef((_ref, ref) => {
4677
4678
  });
4678
4679
  IconPercentage.displayName = 'IconPercentage';
4679
4680
 
4680
- const _excluded$17 = ["testId", "size", "color", "style"];
4681
+ const _excluded$18 = ["testId", "size", "color", "style"];
4681
4682
  const IconPhone = forwardRef((_ref, ref) => {
4682
4683
  let {
4683
4684
  testId = 'icon-phone',
@@ -4685,7 +4686,7 @@ const IconPhone = forwardRef((_ref, ref) => {
4685
4686
  color,
4686
4687
  style
4687
4688
  } = _ref,
4688
- props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
4689
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
4689
4690
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4690
4691
  const styleProps = {
4691
4692
  size: !size && isInsideButton ? 'medium' : size,
@@ -4706,7 +4707,7 @@ const IconPhone = forwardRef((_ref, ref) => {
4706
4707
  });
4707
4708
  IconPhone.displayName = 'IconPhone';
4708
4709
 
4709
- const _excluded$16 = ["testId", "size", "color", "style"];
4710
+ const _excluded$17 = ["testId", "size", "color", "style"];
4710
4711
  const IconPlateUtensils = forwardRef((_ref, ref) => {
4711
4712
  let {
4712
4713
  testId = 'icon-plate-utensils',
@@ -4714,7 +4715,7 @@ const IconPlateUtensils = forwardRef((_ref, ref) => {
4714
4715
  color,
4715
4716
  style
4716
4717
  } = _ref,
4717
- props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
4718
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
4718
4719
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4719
4720
  const styleProps = {
4720
4721
  size: !size && isInsideButton ? 'medium' : size,
@@ -4735,7 +4736,7 @@ const IconPlateUtensils = forwardRef((_ref, ref) => {
4735
4736
  });
4736
4737
  IconPlateUtensils.displayName = 'IconPlateUtensils';
4737
4738
 
4738
- const _excluded$15 = ["testId", "size", "color", "style"];
4739
+ const _excluded$16 = ["testId", "size", "color", "style"];
4739
4740
  const IconPlug = forwardRef((_ref, ref) => {
4740
4741
  let {
4741
4742
  testId = 'icon-plug',
@@ -4743,7 +4744,7 @@ const IconPlug = forwardRef((_ref, ref) => {
4743
4744
  color,
4744
4745
  style
4745
4746
  } = _ref,
4746
- props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
4747
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
4747
4748
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4748
4749
  const styleProps = {
4749
4750
  size: !size && isInsideButton ? 'medium' : size,
@@ -4766,7 +4767,7 @@ const IconPlug = forwardRef((_ref, ref) => {
4766
4767
  });
4767
4768
  IconPlug.displayName = 'IconPlug';
4768
4769
 
4769
- const _excluded$14 = ["testId", "size", "color", "style"];
4770
+ const _excluded$15 = ["testId", "size", "color", "style"];
4770
4771
  const IconPlus = forwardRef((_ref, ref) => {
4771
4772
  let {
4772
4773
  testId = 'icon-plus',
@@ -4774,7 +4775,7 @@ const IconPlus = forwardRef((_ref, ref) => {
4774
4775
  color,
4775
4776
  style
4776
4777
  } = _ref,
4777
- props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
4778
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
4778
4779
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4779
4780
  const styleProps = {
4780
4781
  size: !size && isInsideButton ? 'medium' : size,
@@ -4797,7 +4798,7 @@ const IconPlus = forwardRef((_ref, ref) => {
4797
4798
  });
4798
4799
  IconPlus.displayName = 'IconPlus';
4799
4800
 
4800
- const _excluded$13 = ["testId", "size", "color", "style"];
4801
+ const _excluded$14 = ["testId", "size", "color", "style"];
4801
4802
  const IconPrint = forwardRef((_ref, ref) => {
4802
4803
  let {
4803
4804
  testId = 'icon-print',
@@ -4805,7 +4806,7 @@ const IconPrint = forwardRef((_ref, ref) => {
4805
4806
  color,
4806
4807
  style
4807
4808
  } = _ref,
4808
- props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
4809
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
4809
4810
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4810
4811
  const styleProps = {
4811
4812
  size: !size && isInsideButton ? 'medium' : size,
@@ -4828,7 +4829,7 @@ const IconPrint = forwardRef((_ref, ref) => {
4828
4829
  });
4829
4830
  IconPrint.displayName = 'IconPrint';
4830
4831
 
4831
- const _excluded$12 = ["testId", "size", "color", "style"];
4832
+ const _excluded$13 = ["testId", "size", "color", "style"];
4832
4833
  const IconQuestionCircle = forwardRef((_ref, ref) => {
4833
4834
  let {
4834
4835
  testId = 'icon-question-circle',
@@ -4836,7 +4837,7 @@ const IconQuestionCircle = forwardRef((_ref, ref) => {
4836
4837
  color,
4837
4838
  style
4838
4839
  } = _ref,
4839
- props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
4840
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
4840
4841
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4841
4842
  const styleProps = {
4842
4843
  size: !size && isInsideButton ? 'medium' : size,
@@ -4857,7 +4858,7 @@ const IconQuestionCircle = forwardRef((_ref, ref) => {
4857
4858
  });
4858
4859
  IconQuestionCircle.displayName = 'IconQuestionCircle';
4859
4860
 
4860
- const _excluded$11 = ["testId", "size", "color", "style"];
4861
+ const _excluded$12 = ["testId", "size", "color", "style"];
4861
4862
  const IconRepeat = forwardRef((_ref, ref) => {
4862
4863
  let {
4863
4864
  testId = 'icon-repeat',
@@ -4865,7 +4866,7 @@ const IconRepeat = forwardRef((_ref, ref) => {
4865
4866
  color,
4866
4867
  style
4867
4868
  } = _ref,
4868
- props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
4869
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
4869
4870
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4870
4871
  const styleProps = {
4871
4872
  size: !size && isInsideButton ? 'medium' : size,
@@ -4886,7 +4887,7 @@ const IconRepeat = forwardRef((_ref, ref) => {
4886
4887
  });
4887
4888
  IconRepeat.displayName = 'IconRepeat';
4888
4889
 
4889
- const _excluded$10 = ["testId", "size", "color", "style"];
4890
+ const _excluded$11 = ["testId", "size", "color", "style"];
4890
4891
  const IconReply = forwardRef((_ref, ref) => {
4891
4892
  let {
4892
4893
  testId = 'icon-reply',
@@ -4894,7 +4895,7 @@ const IconReply = forwardRef((_ref, ref) => {
4894
4895
  color,
4895
4896
  style
4896
4897
  } = _ref,
4897
- props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
4898
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
4898
4899
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4899
4900
  const styleProps = {
4900
4901
  size: !size && isInsideButton ? 'medium' : size,
@@ -4915,7 +4916,7 @@ const IconReply = forwardRef((_ref, ref) => {
4915
4916
  });
4916
4917
  IconReply.displayName = 'IconReply';
4917
4918
 
4918
- const _excluded$$ = ["testId", "size", "color", "style"];
4919
+ const _excluded$10 = ["testId", "size", "color", "style"];
4919
4920
  const IconRocket = forwardRef((_ref, ref) => {
4920
4921
  let {
4921
4922
  testId = 'icon-rocket',
@@ -4923,7 +4924,7 @@ const IconRocket = forwardRef((_ref, ref) => {
4923
4924
  color,
4924
4925
  style
4925
4926
  } = _ref,
4926
- props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
4927
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
4927
4928
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4928
4929
  const styleProps = {
4929
4930
  size: !size && isInsideButton ? 'medium' : size,
@@ -4944,7 +4945,7 @@ const IconRocket = forwardRef((_ref, ref) => {
4944
4945
  });
4945
4946
  IconRocket.displayName = 'IconRocket';
4946
4947
 
4947
- const _excluded$_ = ["testId", "size", "color", "style"];
4948
+ const _excluded$$ = ["testId", "size", "color", "style"];
4948
4949
  const IconSearch = forwardRef((_ref, ref) => {
4949
4950
  let {
4950
4951
  testId = 'icon-search',
@@ -4952,7 +4953,7 @@ const IconSearch = forwardRef((_ref, ref) => {
4952
4953
  color,
4953
4954
  style
4954
4955
  } = _ref,
4955
- props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
4956
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
4956
4957
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4957
4958
  const styleProps = {
4958
4959
  size: !size && isInsideButton ? 'medium' : size,
@@ -4975,7 +4976,7 @@ const IconSearch = forwardRef((_ref, ref) => {
4975
4976
  });
4976
4977
  IconSearch.displayName = 'IconSearch';
4977
4978
 
4978
- const _excluded$Z = ["testId", "size", "color", "style"];
4979
+ const _excluded$_ = ["testId", "size", "color", "style"];
4979
4980
  const IconSignOut = forwardRef((_ref, ref) => {
4980
4981
  let {
4981
4982
  testId = 'icon-sign-out',
@@ -4983,7 +4984,7 @@ const IconSignOut = forwardRef((_ref, ref) => {
4983
4984
  color,
4984
4985
  style
4985
4986
  } = _ref,
4986
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
4987
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
4987
4988
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4988
4989
  const styleProps = {
4989
4990
  size: !size && isInsideButton ? 'medium' : size,
@@ -5004,7 +5005,7 @@ const IconSignOut = forwardRef((_ref, ref) => {
5004
5005
  });
5005
5006
  IconSignOut.displayName = 'IconSignOut';
5006
5007
 
5007
- const _excluded$Y = ["testId", "size", "color", "style"];
5008
+ const _excluded$Z = ["testId", "size", "color", "style"];
5008
5009
  const IconSitemap = forwardRef((_ref, ref) => {
5009
5010
  let {
5010
5011
  testId = 'icon-sitemap',
@@ -5012,7 +5013,7 @@ const IconSitemap = forwardRef((_ref, ref) => {
5012
5013
  color,
5013
5014
  style
5014
5015
  } = _ref,
5015
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
5016
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
5016
5017
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5017
5018
  const styleProps = {
5018
5019
  size: !size && isInsideButton ? 'medium' : size,
@@ -5035,7 +5036,7 @@ const IconSitemap = forwardRef((_ref, ref) => {
5035
5036
  });
5036
5037
  IconSitemap.displayName = 'IconSitemap';
5037
5038
 
5038
- const _excluded$X = ["testId", "size", "color", "style"];
5039
+ const _excluded$Y = ["testId", "size", "color", "style"];
5039
5040
  const IconSlidersH = forwardRef((_ref, ref) => {
5040
5041
  let {
5041
5042
  testId = 'icon-sliders-h',
@@ -5043,7 +5044,7 @@ const IconSlidersH = forwardRef((_ref, ref) => {
5043
5044
  color,
5044
5045
  style
5045
5046
  } = _ref,
5046
- props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
5047
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
5047
5048
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5048
5049
  const styleProps = {
5049
5050
  size: !size && isInsideButton ? 'medium' : size,
@@ -5071,7 +5072,7 @@ const IconSlidersH = forwardRef((_ref, ref) => {
5071
5072
  });
5072
5073
  IconSlidersH.displayName = 'IconSlidersH';
5073
5074
 
5074
- const _excluded$W = ["testId", "size", "color", "style"];
5075
+ const _excluded$X = ["testId", "size", "color", "style"];
5075
5076
  const IconSort = forwardRef((_ref, ref) => {
5076
5077
  let {
5077
5078
  testId = 'icon-sort',
@@ -5079,7 +5080,7 @@ const IconSort = forwardRef((_ref, ref) => {
5079
5080
  color,
5080
5081
  style
5081
5082
  } = _ref,
5082
- props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
5083
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
5083
5084
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5084
5085
  const styleProps = {
5085
5086
  size: !size && isInsideButton ? 'medium' : size,
@@ -5100,7 +5101,7 @@ const IconSort = forwardRef((_ref, ref) => {
5100
5101
  });
5101
5102
  IconSort.displayName = 'IconSort';
5102
5103
 
5103
- const _excluded$V = ["testId", "size", "color", "style"];
5104
+ const _excluded$W = ["testId", "size", "color", "style"];
5104
5105
  const IconStarSolid = forwardRef((_ref, ref) => {
5105
5106
  let {
5106
5107
  testId = 'icon-star-solid',
@@ -5108,7 +5109,7 @@ const IconStarSolid = forwardRef((_ref, ref) => {
5108
5109
  color,
5109
5110
  style
5110
5111
  } = _ref,
5111
- props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
5112
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
5112
5113
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5113
5114
  const styleProps = {
5114
5115
  size: !size && isInsideButton ? 'medium' : size,
@@ -5129,7 +5130,7 @@ const IconStarSolid = forwardRef((_ref, ref) => {
5129
5130
  });
5130
5131
  IconStarSolid.displayName = 'IconStarSolid';
5131
5132
 
5132
- const _excluded$U = ["testId", "size", "color", "style"];
5133
+ const _excluded$V = ["testId", "size", "color", "style"];
5133
5134
  const IconStar = forwardRef((_ref, ref) => {
5134
5135
  let {
5135
5136
  testId = 'icon-star',
@@ -5137,7 +5138,7 @@ const IconStar = forwardRef((_ref, ref) => {
5137
5138
  color,
5138
5139
  style
5139
5140
  } = _ref,
5140
- props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
5141
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$V);
5141
5142
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5142
5143
  const styleProps = {
5143
5144
  size: !size && isInsideButton ? 'medium' : size,
@@ -5158,7 +5159,7 @@ const IconStar = forwardRef((_ref, ref) => {
5158
5159
  });
5159
5160
  IconStar.displayName = 'IconStar';
5160
5161
 
5161
- const _excluded$T = ["testId", "size", "color", "style"];
5162
+ const _excluded$U = ["testId", "size", "color", "style"];
5162
5163
  const IconStickyNoteLines = forwardRef((_ref, ref) => {
5163
5164
  let {
5164
5165
  testId = 'icon-sticky-note-lines',
@@ -5166,7 +5167,7 @@ const IconStickyNoteLines = forwardRef((_ref, ref) => {
5166
5167
  color,
5167
5168
  style
5168
5169
  } = _ref,
5169
- props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
5170
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$U);
5170
5171
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5171
5172
  const styleProps = {
5172
5173
  size: !size && isInsideButton ? 'medium' : size,
@@ -5190,7 +5191,7 @@ const IconStickyNoteLines = forwardRef((_ref, ref) => {
5190
5191
  });
5191
5192
  IconStickyNoteLines.displayName = 'IconStickyNoteLines';
5192
5193
 
5193
- const _excluded$S = ["testId", "size", "color", "style"];
5194
+ const _excluded$T = ["testId", "size", "color", "style"];
5194
5195
  const IconStopwatch = forwardRef((_ref, ref) => {
5195
5196
  let {
5196
5197
  testId = 'icon-stopwatch',
@@ -5198,7 +5199,7 @@ const IconStopwatch = forwardRef((_ref, ref) => {
5198
5199
  color,
5199
5200
  style
5200
5201
  } = _ref,
5201
- props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
5202
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$T);
5202
5203
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5203
5204
  const styleProps = {
5204
5205
  size: !size && isInsideButton ? 'medium' : size,
@@ -5221,7 +5222,7 @@ const IconStopwatch = forwardRef((_ref, ref) => {
5221
5222
  });
5222
5223
  IconStopwatch.displayName = 'IconStopwatch';
5223
5224
 
5224
- const _excluded$R = ["testId", "size", "color", "style"];
5225
+ const _excluded$S = ["testId", "size", "color", "style"];
5225
5226
  const IconStrikethrough = forwardRef((_ref, ref) => {
5226
5227
  let {
5227
5228
  testId = 'icon-strikethrough',
@@ -5229,7 +5230,7 @@ const IconStrikethrough = forwardRef((_ref, ref) => {
5229
5230
  color,
5230
5231
  style
5231
5232
  } = _ref,
5232
- props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
5233
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$S);
5233
5234
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5234
5235
  const styleProps = {
5235
5236
  size: !size && isInsideButton ? 'medium' : size,
@@ -5257,7 +5258,7 @@ const IconStrikethrough = forwardRef((_ref, ref) => {
5257
5258
  });
5258
5259
  IconStrikethrough.displayName = 'IconStrikethrough';
5259
5260
 
5260
- const _excluded$Q = ["testId", "size", "color", "style"];
5261
+ const _excluded$R = ["testId", "size", "color", "style"];
5261
5262
  const IconSyncExclaimation = forwardRef((_ref, ref) => {
5262
5263
  let {
5263
5264
  testId = 'icon-sync-exclaimation',
@@ -5265,7 +5266,7 @@ const IconSyncExclaimation = forwardRef((_ref, ref) => {
5265
5266
  color,
5266
5267
  style
5267
5268
  } = _ref,
5268
- props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
5269
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$R);
5269
5270
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5270
5271
  const styleProps = {
5271
5272
  size: !size && isInsideButton ? 'medium' : size,
@@ -5286,7 +5287,7 @@ const IconSyncExclaimation = forwardRef((_ref, ref) => {
5286
5287
  });
5287
5288
  IconSyncExclaimation.displayName = 'IconSyncExclaimation';
5288
5289
 
5289
- const _excluded$P = ["testId", "size", "color", "style"];
5290
+ const _excluded$Q = ["testId", "size", "color", "style"];
5290
5291
  const IconSync = forwardRef((_ref, ref) => {
5291
5292
  let {
5292
5293
  testId = 'icon-sync',
@@ -5294,7 +5295,7 @@ const IconSync = forwardRef((_ref, ref) => {
5294
5295
  color,
5295
5296
  style
5296
5297
  } = _ref,
5297
- props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
5298
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$Q);
5298
5299
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5299
5300
  const styleProps = {
5300
5301
  size: !size && isInsideButton ? 'medium' : size,
@@ -5315,7 +5316,7 @@ const IconSync = forwardRef((_ref, ref) => {
5315
5316
  });
5316
5317
  IconSync.displayName = 'IconSync';
5317
5318
 
5318
- const _excluded$O = ["testId", "size", "color", "style"];
5319
+ const _excluded$P = ["testId", "size", "color", "style"];
5319
5320
  const IconTable = forwardRef((_ref, ref) => {
5320
5321
  let {
5321
5322
  testId = 'icon-table',
@@ -5323,7 +5324,7 @@ const IconTable = forwardRef((_ref, ref) => {
5323
5324
  color,
5324
5325
  style
5325
5326
  } = _ref,
5326
- props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
5327
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$P);
5327
5328
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5328
5329
  const styleProps = {
5329
5330
  size: !size && isInsideButton ? 'medium' : size,
@@ -5351,7 +5352,7 @@ const IconTable = forwardRef((_ref, ref) => {
5351
5352
  });
5352
5353
  IconTable.displayName = 'IconTable';
5353
5354
 
5354
- const _excluded$N = ["testId", "size", "color", "style"];
5355
+ const _excluded$O = ["testId", "size", "color", "style"];
5355
5356
  const IconTachometer = forwardRef((_ref, ref) => {
5356
5357
  let {
5357
5358
  testId = 'icon-tachometer',
@@ -5359,7 +5360,7 @@ const IconTachometer = forwardRef((_ref, ref) => {
5359
5360
  color,
5360
5361
  style
5361
5362
  } = _ref,
5362
- props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
5363
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$O);
5363
5364
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5364
5365
  const styleProps = {
5365
5366
  size: !size && isInsideButton ? 'medium' : size,
@@ -5379,7 +5380,7 @@ const IconTachometer = forwardRef((_ref, ref) => {
5379
5380
  });
5380
5381
  IconTachometer.displayName = 'IconTachometer';
5381
5382
 
5382
- const _excluded$M = ["testId", "size", "color", "style"];
5383
+ const _excluded$N = ["testId", "size", "color", "style"];
5383
5384
  const IconTimesOctagon = forwardRef((_ref, ref) => {
5384
5385
  let {
5385
5386
  testId = 'icon-times-octagon',
@@ -5387,7 +5388,7 @@ const IconTimesOctagon = forwardRef((_ref, ref) => {
5387
5388
  color,
5388
5389
  style
5389
5390
  } = _ref,
5390
- props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
5391
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$N);
5391
5392
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5392
5393
  const styleProps = {
5393
5394
  size: !size && isInsideButton ? 'medium' : size,
@@ -5410,7 +5411,7 @@ const IconTimesOctagon = forwardRef((_ref, ref) => {
5410
5411
  });
5411
5412
  IconTimesOctagon.displayName = 'IconTimesOctagon';
5412
5413
 
5413
- const _excluded$L = ["testId", "size", "color", "style"];
5414
+ const _excluded$M = ["testId", "size", "color", "style"];
5414
5415
  const IconTimes = forwardRef((_ref, ref) => {
5415
5416
  let {
5416
5417
  testId = 'icon-times',
@@ -5418,7 +5419,7 @@ const IconTimes = forwardRef((_ref, ref) => {
5418
5419
  color,
5419
5420
  style
5420
5421
  } = _ref,
5421
- props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
5422
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
5422
5423
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5423
5424
  const styleProps = {
5424
5425
  size: !size && isInsideButton ? 'medium' : size,
@@ -5441,7 +5442,7 @@ const IconTimes = forwardRef((_ref, ref) => {
5441
5442
  });
5442
5443
  IconTimes.displayName = 'IconTimes';
5443
5444
 
5444
- const _excluded$K = ["testId", "size", "color", "style"];
5445
+ const _excluded$L = ["testId", "size", "color", "style"];
5445
5446
  const IconTrash = forwardRef((_ref, ref) => {
5446
5447
  let {
5447
5448
  testId = 'icon-trash',
@@ -5449,7 +5450,7 @@ const IconTrash = forwardRef((_ref, ref) => {
5449
5450
  color,
5450
5451
  style
5451
5452
  } = _ref,
5452
- props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
5453
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
5453
5454
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5454
5455
  const styleProps = {
5455
5456
  size: !size && isInsideButton ? 'medium' : size,
@@ -5472,7 +5473,7 @@ const IconTrash = forwardRef((_ref, ref) => {
5472
5473
  });
5473
5474
  IconTrash.displayName = 'IconTrash';
5474
5475
 
5475
- const _excluded$J = ["testId", "size", "color", "style"];
5476
+ const _excluded$K = ["testId", "size", "color", "style"];
5476
5477
  const IconUnderline = forwardRef((_ref, ref) => {
5477
5478
  let {
5478
5479
  testId = 'icon-underline',
@@ -5480,7 +5481,7 @@ const IconUnderline = forwardRef((_ref, ref) => {
5480
5481
  color,
5481
5482
  style
5482
5483
  } = _ref,
5483
- props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
5484
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
5484
5485
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5485
5486
  const styleProps = {
5486
5487
  size: !size && isInsideButton ? 'medium' : size,
@@ -5501,7 +5502,7 @@ const IconUnderline = forwardRef((_ref, ref) => {
5501
5502
  });
5502
5503
  IconUnderline.displayName = 'IconUnderline';
5503
5504
 
5504
- const _excluded$I = ["testId", "size", "color", "style"];
5505
+ const _excluded$J = ["testId", "size", "color", "style"];
5505
5506
  const IconUndo = forwardRef((_ref, ref) => {
5506
5507
  let {
5507
5508
  testId = 'icon-undo',
@@ -5509,7 +5510,7 @@ const IconUndo = forwardRef((_ref, ref) => {
5509
5510
  color,
5510
5511
  style
5511
5512
  } = _ref,
5512
- props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5513
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
5513
5514
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5514
5515
  const styleProps = {
5515
5516
  size: !size && isInsideButton ? 'medium' : size,
@@ -5530,7 +5531,7 @@ const IconUndo = forwardRef((_ref, ref) => {
5530
5531
  });
5531
5532
  IconUndo.displayName = 'IconUndo';
5532
5533
 
5533
- const _excluded$H = ["testId", "size", "color", "style"];
5534
+ const _excluded$I = ["testId", "size", "color", "style"];
5534
5535
  const IconUniversity = forwardRef((_ref, ref) => {
5535
5536
  let {
5536
5537
  testId = 'icon-university',
@@ -5538,7 +5539,7 @@ const IconUniversity = forwardRef((_ref, ref) => {
5538
5539
  color,
5539
5540
  style
5540
5541
  } = _ref,
5541
- props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5542
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5542
5543
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5543
5544
  const styleProps = {
5544
5545
  size: !size && isInsideButton ? 'medium' : size,
@@ -5566,7 +5567,7 @@ const IconUniversity = forwardRef((_ref, ref) => {
5566
5567
  });
5567
5568
  IconUniversity.displayName = 'IconUniversity';
5568
5569
 
5569
- const _excluded$G = ["testId", "size", "color", "style"];
5570
+ const _excluded$H = ["testId", "size", "color", "style"];
5570
5571
  const IconUnlock = forwardRef((_ref, ref) => {
5571
5572
  let {
5572
5573
  testId = 'icon-unlock',
@@ -5574,7 +5575,7 @@ const IconUnlock = forwardRef((_ref, ref) => {
5574
5575
  color,
5575
5576
  style
5576
5577
  } = _ref,
5577
- props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
5578
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5578
5579
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5579
5580
  const styleProps = {
5580
5581
  size: !size && isInsideButton ? 'medium' : size,
@@ -5602,7 +5603,7 @@ const IconUnlock = forwardRef((_ref, ref) => {
5602
5603
  });
5603
5604
  IconUnlock.displayName = 'IconUnlock';
5604
5605
 
5605
- const _excluded$F = ["testId", "size", "color", "style"];
5606
+ const _excluded$G = ["testId", "size", "color", "style"];
5606
5607
  const IconUserComputer = forwardRef((_ref, ref) => {
5607
5608
  let {
5608
5609
  testId = 'icon-user-computer',
@@ -5610,7 +5611,7 @@ const IconUserComputer = forwardRef((_ref, ref) => {
5610
5611
  color,
5611
5612
  style
5612
5613
  } = _ref,
5613
- props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
5614
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$G);
5614
5615
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5615
5616
  const styleProps = {
5616
5617
  size: !size && isInsideButton ? 'medium' : size,
@@ -5642,7 +5643,7 @@ const IconUserComputer = forwardRef((_ref, ref) => {
5642
5643
  });
5643
5644
  IconUserComputer.displayName = 'IconUserComputer';
5644
5645
 
5645
- const _excluded$E = ["testId", "size", "color", "style"];
5646
+ const _excluded$F = ["testId", "size", "color", "style"];
5646
5647
  const IconUserFriends = forwardRef((_ref, ref) => {
5647
5648
  let {
5648
5649
  testId = 'icon-user-friends',
@@ -5650,7 +5651,7 @@ const IconUserFriends = forwardRef((_ref, ref) => {
5650
5651
  color,
5651
5652
  style
5652
5653
  } = _ref,
5653
- props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5654
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$F);
5654
5655
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5655
5656
  const styleProps = {
5656
5657
  size: !size && isInsideButton ? 'medium' : size,
@@ -5671,7 +5672,7 @@ const IconUserFriends = forwardRef((_ref, ref) => {
5671
5672
  });
5672
5673
  IconUserFriends.displayName = 'IconUserFriends';
5673
5674
 
5674
- const _excluded$D = ["testId", "size", "color", "style"];
5675
+ const _excluded$E = ["testId", "size", "color", "style"];
5675
5676
  const IconUserLight = forwardRef((_ref, ref) => {
5676
5677
  let {
5677
5678
  testId = 'icon-user-light',
@@ -5679,7 +5680,7 @@ const IconUserLight = forwardRef((_ref, ref) => {
5679
5680
  color,
5680
5681
  style
5681
5682
  } = _ref,
5682
- props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5683
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5683
5684
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5684
5685
  const styleProps = {
5685
5686
  size: !size && isInsideButton ? 'medium' : size,
@@ -5702,7 +5703,7 @@ const IconUserLight = forwardRef((_ref, ref) => {
5702
5703
  });
5703
5704
  IconUserLight.displayName = 'IconUserLight';
5704
5705
 
5705
- const _excluded$C = ["testId", "size", "color", "style"];
5706
+ const _excluded$D = ["testId", "size", "color", "style"];
5706
5707
  const IconUserPlus = forwardRef((_ref, ref) => {
5707
5708
  let {
5708
5709
  testId = 'icon-user-plus',
@@ -5710,7 +5711,7 @@ const IconUserPlus = forwardRef((_ref, ref) => {
5710
5711
  color,
5711
5712
  style
5712
5713
  } = _ref,
5713
- props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5714
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5714
5715
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5715
5716
  const styleProps = {
5716
5717
  size: !size && isInsideButton ? 'medium' : size,
@@ -5731,7 +5732,7 @@ const IconUserPlus = forwardRef((_ref, ref) => {
5731
5732
  });
5732
5733
  IconUserPlus.displayName = 'IconUserPlus';
5733
5734
 
5734
- const _excluded$B = ["testId", "size", "color", "style"];
5735
+ const _excluded$C = ["testId", "size", "color", "style"];
5735
5736
  const IconUserSearch = forwardRef((_ref, ref) => {
5736
5737
  let {
5737
5738
  testId = 'icon-user-search',
@@ -5739,7 +5740,7 @@ const IconUserSearch = forwardRef((_ref, ref) => {
5739
5740
  color,
5740
5741
  style
5741
5742
  } = _ref,
5742
- props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5743
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5743
5744
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5744
5745
  const styleProps = {
5745
5746
  size: !size && isInsideButton ? 'medium' : size,
@@ -5769,7 +5770,7 @@ const IconUserSearch = forwardRef((_ref, ref) => {
5769
5770
  });
5770
5771
  IconUserSearch.displayName = 'IconUserSearch';
5771
5772
 
5772
- const _excluded$A = ["testId", "size", "color", "style"];
5773
+ const _excluded$B = ["testId", "size", "color", "style"];
5773
5774
  const IconUserSlash = forwardRef((_ref, ref) => {
5774
5775
  let {
5775
5776
  testId = 'icon-user-slash',
@@ -5777,7 +5778,7 @@ const IconUserSlash = forwardRef((_ref, ref) => {
5777
5778
  color,
5778
5779
  style
5779
5780
  } = _ref,
5780
- props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
5781
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5781
5782
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5782
5783
  const styleProps = {
5783
5784
  size: !size && isInsideButton ? 'medium' : size,
@@ -5805,7 +5806,7 @@ const IconUserSlash = forwardRef((_ref, ref) => {
5805
5806
  });
5806
5807
  IconUserSlash.displayName = 'IconUserSlash';
5807
5808
 
5808
- const _excluded$z = ["testId", "size", "color", "style"];
5809
+ const _excluded$A = ["testId", "size", "color", "style"];
5809
5810
  const IconUserSolid = forwardRef((_ref, ref) => {
5810
5811
  let {
5811
5812
  testId = 'icon-user-solid',
@@ -5813,7 +5814,7 @@ const IconUserSolid = forwardRef((_ref, ref) => {
5813
5814
  color,
5814
5815
  style
5815
5816
  } = _ref,
5816
- props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
5817
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
5817
5818
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5818
5819
  const styleProps = {
5819
5820
  size: !size && isInsideButton ? 'medium' : size,
@@ -5834,7 +5835,7 @@ const IconUserSolid = forwardRef((_ref, ref) => {
5834
5835
  });
5835
5836
  IconUserSolid.displayName = 'IconUserSolid';
5836
5837
 
5837
- const _excluded$y = ["testId", "size", "color", "style"];
5838
+ const _excluded$z = ["testId", "size", "color", "style"];
5838
5839
  const IconUserTag = forwardRef((_ref, ref) => {
5839
5840
  let {
5840
5841
  testId = 'icon-user-tag',
@@ -5842,7 +5843,7 @@ const IconUserTag = forwardRef((_ref, ref) => {
5842
5843
  color,
5843
5844
  style
5844
5845
  } = _ref,
5845
- props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5846
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
5846
5847
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5847
5848
  const styleProps = {
5848
5849
  size: !size && isInsideButton ? 'medium' : size,
@@ -5865,7 +5866,7 @@ const IconUserTag = forwardRef((_ref, ref) => {
5865
5866
  });
5866
5867
  IconUserTag.displayName = 'IconUserTag';
5867
5868
 
5868
- const _excluded$x = ["testId", "size", "color", "style"];
5869
+ const _excluded$y = ["testId", "size", "color", "style"];
5869
5870
  const IconUserTie = forwardRef((_ref, ref) => {
5870
5871
  let {
5871
5872
  testId = 'icon-user-tie',
@@ -5873,7 +5874,7 @@ const IconUserTie = forwardRef((_ref, ref) => {
5873
5874
  color,
5874
5875
  style
5875
5876
  } = _ref,
5876
- props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5877
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5877
5878
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5878
5879
  const styleProps = {
5879
5880
  size: !size && isInsideButton ? 'medium' : size,
@@ -5894,7 +5895,7 @@ const IconUserTie = forwardRef((_ref, ref) => {
5894
5895
  });
5895
5896
  IconUserTie.displayName = 'IconUserTie';
5896
5897
 
5897
- const _excluded$w = ["testId", "size", "color", "style"];
5898
+ const _excluded$x = ["testId", "size", "color", "style"];
5898
5899
  const IconUsers = forwardRef((_ref, ref) => {
5899
5900
  let {
5900
5901
  testId = 'icon-users',
@@ -5902,7 +5903,7 @@ const IconUsers = forwardRef((_ref, ref) => {
5902
5903
  color,
5903
5904
  style
5904
5905
  } = _ref,
5905
- props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5906
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5906
5907
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5907
5908
  const styleProps = {
5908
5909
  size: !size && isInsideButton ? 'medium' : size,
@@ -5923,7 +5924,7 @@ const IconUsers = forwardRef((_ref, ref) => {
5923
5924
  });
5924
5925
  IconUsers.displayName = 'IconUsers';
5925
5926
 
5926
- const _excluded$v = ["testId", "size", "color", "style"];
5927
+ const _excluded$w = ["testId", "size", "color", "style"];
5927
5928
  const IconVideo = forwardRef((_ref, ref) => {
5928
5929
  let {
5929
5930
  testId = 'icon-video',
@@ -5931,7 +5932,7 @@ const IconVideo = forwardRef((_ref, ref) => {
5931
5932
  color,
5932
5933
  style
5933
5934
  } = _ref,
5934
- props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
5935
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5935
5936
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5936
5937
  const styleProps = {
5937
5938
  size: !size && isInsideButton ? 'medium' : size,
@@ -5952,7 +5953,7 @@ const IconVideo = forwardRef((_ref, ref) => {
5952
5953
  });
5953
5954
  IconVideo.displayName = 'IconVideo';
5954
5955
 
5955
- const _excluded$u = ["testId", "size", "color", "style"];
5956
+ const _excluded$v = ["testId", "size", "color", "style"];
5956
5957
  const IconVolumeMute = forwardRef((_ref, ref) => {
5957
5958
  let {
5958
5959
  testId = 'icon-volume-mute',
@@ -5960,7 +5961,7 @@ const IconVolumeMute = forwardRef((_ref, ref) => {
5960
5961
  color,
5961
5962
  style
5962
5963
  } = _ref,
5963
- props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
5964
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
5964
5965
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5965
5966
  const styleProps = {
5966
5967
  size: !size && isInsideButton ? 'medium' : size,
@@ -5981,7 +5982,7 @@ const IconVolumeMute = forwardRef((_ref, ref) => {
5981
5982
  });
5982
5983
  IconVolumeMute.displayName = 'IconVolumeMute';
5983
5984
 
5984
- const _excluded$t = ["testId", "size", "color", "style"];
5985
+ const _excluded$u = ["testId", "size", "color", "style"];
5985
5986
  const IconVolume = forwardRef((_ref, ref) => {
5986
5987
  let {
5987
5988
  testId = 'icon-volume',
@@ -5989,7 +5990,7 @@ const IconVolume = forwardRef((_ref, ref) => {
5989
5990
  color,
5990
5991
  style
5991
5992
  } = _ref,
5992
- props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
5993
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
5993
5994
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
5994
5995
  const styleProps = {
5995
5996
  size: !size && isInsideButton ? 'medium' : size,
@@ -6010,7 +6011,7 @@ const IconVolume = forwardRef((_ref, ref) => {
6010
6011
  });
6011
6012
  IconVolume.displayName = 'IconVolume';
6012
6013
 
6013
- const _excluded$s = ["testId", "size", "color", "style"];
6014
+ const _excluded$t = ["testId", "size", "color", "style"];
6014
6015
  const IconWrench = forwardRef((_ref, ref) => {
6015
6016
  let {
6016
6017
  testId = 'icon-wrench',
@@ -6018,7 +6019,7 @@ const IconWrench = forwardRef((_ref, ref) => {
6018
6019
  color,
6019
6020
  style
6020
6021
  } = _ref,
6021
- props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
6022
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
6022
6023
  const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
6023
6024
  const styleProps = {
6024
6025
  size: !size && isInsideButton ? 'medium' : size,
@@ -6103,6 +6104,9 @@ var SelectField$1 = {
6103
6104
  var HintModal$1 = {
6104
6105
  dontShowAgainLabel: "Don’t show this again"
6105
6106
  };
6107
+ var ConfirmModal$1 = {
6108
+ cancel: "Cancel"
6109
+ };
6106
6110
  var Calendar$1 = {
6107
6111
  sunday: "Sunday",
6108
6112
  monday: "Monday",
@@ -6142,6 +6146,7 @@ var en = {
6142
6146
  AsyncSelectField: AsyncSelectField$1,
6143
6147
  SelectField: SelectField$1,
6144
6148
  HintModal: HintModal$1,
6149
+ ConfirmModal: ConfirmModal$1,
6145
6150
  Calendar: Calendar$1,
6146
6151
  Card: Card$1,
6147
6152
  DataTable: DataTable$1,
@@ -6174,7 +6179,7 @@ const useTranslation = context => {
6174
6179
  return translate;
6175
6180
  };
6176
6181
 
6177
- const _excluded$r = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
6182
+ const _excluded$s = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
6178
6183
  /**
6179
6184
  * `PaginationControls` are two buttons side by side.
6180
6185
  */
@@ -6187,7 +6192,7 @@ const PaginationControls = _ref => {
6187
6192
  testId,
6188
6193
  scrollTarget
6189
6194
  } = _ref,
6190
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$r);
6195
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$s);
6191
6196
  const __ = useTranslation('PaginationControls');
6192
6197
  const {
6193
6198
  dataProps
@@ -6256,7 +6261,7 @@ const LINK_TARGET = {
6256
6261
 
6257
6262
  var styles$1d = {"link":"_EiQ4c"};
6258
6263
 
6259
- const _excluded$q = ["href", "target", "theme", "onClick", "children"];
6264
+ const _excluded$r = ["href", "target", "theme", "onClick", "children"];
6260
6265
  const Link = _ref => {
6261
6266
  let {
6262
6267
  href,
@@ -6265,7 +6270,7 @@ const Link = _ref => {
6265
6270
  onClick,
6266
6271
  children
6267
6272
  } = _ref,
6268
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
6273
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$r);
6269
6274
  const {
6270
6275
  dataProps
6271
6276
  } = getDataProps(otherProps);
@@ -6691,7 +6696,7 @@ const InlineBannerIcon = ({
6691
6696
  }
6692
6697
  };
6693
6698
 
6694
- const _excluded$p = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
6699
+ const _excluded$q = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
6695
6700
  const InlineBanner = _ref => {
6696
6701
  let {
6697
6702
  children,
@@ -6703,7 +6708,7 @@ const InlineBanner = _ref => {
6703
6708
  secondaryButton,
6704
6709
  testId
6705
6710
  } = _ref,
6706
- positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$p);
6711
+ positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$q);
6707
6712
  const positionStyles = usePositionStyles(positionProps);
6708
6713
  const multiLine = !!title;
6709
6714
  const dismissable = !!onClose;
@@ -7063,7 +7068,7 @@ const ALIGNMENTS = {
7063
7068
 
7064
7069
  var styles$11 = {"text":"_6SgoN","text__body":"_SF95f","text__caption":"_HHohB","text__insight":"_xdhK0","text--bold":"_i2LHD","text--italic":"_NgSTT","text--underline":"_ouqVK","text--monospace":"_Vi-V1","text--align-left":"_tfSIf","text--align-right":"_AK1Nr","text--align-center":"_N-tR4","text--align-justify":"_LkMr0"};
7065
7070
 
7066
- const _excluded$o = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
7071
+ const _excluded$p = ["children", "as", "emphasis", "alignment", "color", "testId", "textWrap"];
7067
7072
  const TextComponent = (_ref, ref) => {
7068
7073
  let {
7069
7074
  children,
@@ -7074,7 +7079,7 @@ const TextComponent = (_ref, ref) => {
7074
7079
  testId,
7075
7080
  textWrap
7076
7081
  } = _ref,
7077
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$o);
7082
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$p);
7078
7083
  const {
7079
7084
  positionProps,
7080
7085
  otherProps
@@ -7136,7 +7141,7 @@ const Italic = ({
7136
7141
  }, children);
7137
7142
  };
7138
7143
 
7139
- const _excluded$n = ["id", "label", "caption", "characterCount", "error", "children"];
7144
+ const _excluded$o = ["id", "label", "caption", "characterCount", "error", "children"];
7140
7145
  const Field = _ref => {
7141
7146
  let {
7142
7147
  id,
@@ -7146,7 +7151,7 @@ const Field = _ref => {
7146
7151
  error,
7147
7152
  children
7148
7153
  } = _ref,
7149
- dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
7154
+ dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$o);
7150
7155
  const shouldRenderLabel = label || typeof label === 'string';
7151
7156
  const CharacterConter = () => React__default.createElement(Inline, {
7152
7157
  justifyContent: "space-between",
@@ -7271,7 +7276,7 @@ const useFieldControllers = ({
7271
7276
 
7272
7277
  var styles$10 = {"text-field":"_G6LsE","text-field--invalid":"_2ZYtt","text-field--prefixed":"_rWp7H","text-field--suffixed":"_Xq8xX"};
7273
7278
 
7274
- const _excluded$m = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
7279
+ const _excluded$n = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
7275
7280
  const useTextField = _ref => {
7276
7281
  let {
7277
7282
  autoComplete,
@@ -7293,7 +7298,7 @@ const useTextField = _ref => {
7293
7298
  ref,
7294
7299
  testId
7295
7300
  } = _ref,
7296
- dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
7301
+ dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$n);
7297
7302
  const controllers = useFieldControllers({
7298
7303
  error,
7299
7304
  id,
@@ -7430,7 +7435,7 @@ const TimeFieldInput = ({
7430
7435
  })));
7431
7436
  };
7432
7437
 
7433
- const _excluded$l = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
7438
+ const _excluded$m = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
7434
7439
  const TimeFieldDropdownElement = (_ref, ref) => {
7435
7440
  let {
7436
7441
  placeholder = '9:00 AM',
@@ -7439,7 +7444,7 @@ const TimeFieldDropdownElement = (_ref, ref) => {
7439
7444
  prefix,
7440
7445
  duration
7441
7446
  } = _ref,
7442
- allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$l);
7447
+ allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
7443
7448
  const {
7444
7449
  inputProps,
7445
7450
  fieldProps
@@ -7891,7 +7896,7 @@ const KebabMenu = ({
7891
7896
 
7892
7897
  var styles$X = {"card":"_TXXpM","card__body":"_C3waP","card__body--interactive":"_uc-GV","card--focus":"_ft0I1","card__body--focus":"_wx2MU","card__body--disabled":"_TQDZH","card__body--with-kebab":"_kkYit","card__kebab":"_xrEdS","card__kebab--disabled":"_0WiOn","card__close":"_yODES","card__close--disabled":"_Vqf6o"};
7893
7898
 
7894
- const _excluded$k = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
7899
+ const _excluded$l = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
7895
7900
  const Card = _ref => {
7896
7901
  let {
7897
7902
  children,
@@ -7902,7 +7907,7 @@ const Card = _ref => {
7902
7907
  actions,
7903
7908
  testId
7904
7909
  } = _ref,
7905
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$k);
7910
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$l);
7906
7911
  const translate = useTranslation('Card');
7907
7912
  const {
7908
7913
  positionProps,
@@ -8279,7 +8284,7 @@ const SKELETON_COMPONENT = {
8279
8284
  PILL: 'pill'
8280
8285
  };
8281
8286
 
8282
- const _excluded$j = ["as", "testId", "width", "height"];
8287
+ const _excluded$k = ["as", "testId", "width", "height"];
8283
8288
  const Skeleton = _ref => {
8284
8289
  let {
8285
8290
  as,
@@ -8287,7 +8292,7 @@ const Skeleton = _ref => {
8287
8292
  width,
8288
8293
  height
8289
8294
  } = _ref,
8290
- positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$j);
8295
+ positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$k);
8291
8296
  const positioning = usePositionStyles(positionStyles);
8292
8297
  return React__default.createElement("div", {
8293
8298
  "data-testid": testId,
@@ -8351,14 +8356,14 @@ const ModalHeader = ({
8351
8356
  }, subHeader));
8352
8357
  };
8353
8358
 
8354
- const _excluded$i = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
8359
+ const _excluded$j = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
8355
8360
  const Modal = _ref => {
8356
8361
  let {
8357
8362
  children,
8358
8363
  header,
8359
8364
  subHeader,
8360
8365
  onClose,
8361
- loading,
8366
+ loading = false,
8362
8367
  zIndex = 'modal',
8363
8368
  rootElementId,
8364
8369
  width = 566,
@@ -8368,7 +8373,7 @@ const Modal = _ref => {
8368
8373
  shouldReturnFocusAfterClose = true,
8369
8374
  testId
8370
8375
  } = _ref,
8371
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
8376
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$j);
8372
8377
  const style = {
8373
8378
  content: {
8374
8379
  width,
@@ -8832,7 +8837,7 @@ const useCheckBoxFieldControllers = ({
8832
8837
 
8833
8838
  var styles$G = {"check-box-field":"_Id4qm","check-box-field__caption":"_s9d-m","check-box-field__custom-input":"_kmvBP"};
8834
8839
 
8835
- const _excluded$h = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
8840
+ const _excluded$i = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
8836
8841
  /** CheckboxField form element. */
8837
8842
  const CheckboxField = _ref => {
8838
8843
  let {
@@ -8847,7 +8852,7 @@ const CheckboxField = _ref => {
8847
8852
  disabled,
8848
8853
  testId
8849
8854
  } = _ref,
8850
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
8855
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
8851
8856
  const controllers = useCheckBoxFieldControllers({
8852
8857
  name,
8853
8858
  id: inputId,
@@ -8923,7 +8928,7 @@ const useLocalStorage = (key, initialValue) => {
8923
8928
 
8924
8929
  var styles$F = {"hint-modal":"_NwD6V","hint-modal--after-open":"_4ofZb","hint-modal--before-close":"_hGoMD","hint-modal__overlay":"_iK5zl","hint-modal__image":"_V9hLa","hint-modal__body":"_oOqUg","hint-modal__close-button":"_5zcBK"};
8925
8930
 
8926
- const _excluded$g = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
8931
+ const _excluded$h = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
8927
8932
  const HintModal = _ref => {
8928
8933
  let {
8929
8934
  header,
@@ -8934,7 +8939,7 @@ const HintModal = _ref => {
8934
8939
  primaryButton,
8935
8940
  testId
8936
8941
  } = _ref,
8937
- positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
8942
+ positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
8938
8943
  const __ = useTranslation('HintModal');
8939
8944
  const [doNotShowAgain, setDoNotShowAgain] = useState(false);
8940
8945
  const [persistedDoNotShow, setPersistedDoNotShow] = useLocalStorage(modalId, false);
@@ -9001,6 +9006,29 @@ const HintModal = _ref => {
9001
9006
  }), button))));
9002
9007
  };
9003
9008
 
9009
+ const _excluded$g = ["header", "primaryButton", "onClose", "children", "loading"];
9010
+ const ConfirmModal = _ref => {
9011
+ let {
9012
+ header,
9013
+ primaryButton,
9014
+ onClose,
9015
+ children
9016
+ } = _ref,
9017
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$g);
9018
+ const __ = useTranslation('ConfirmModal');
9019
+ return React__default.createElement(Modal, _extends({
9020
+ header: header,
9021
+ onClose: onClose
9022
+ }, otherProps), React__default.createElement(ModalBody, null, children), React__default.createElement(ModalFooter, {
9023
+ actions: {
9024
+ primary: primaryButton,
9025
+ secondary: React__default.createElement(Button, {
9026
+ onClick: onClose
9027
+ }, __('cancel'))
9028
+ }
9029
+ }));
9030
+ };
9031
+
9004
9032
  const DataTableCellElement = ({
9005
9033
  children,
9006
9034
  columnIndex,
@@ -11730,7 +11758,13 @@ const DateField = ({
11730
11758
  }
11731
11759
  setInputValue(event.target.value);
11732
11760
  },
11733
- onBlur: controllers.onBlur,
11761
+ onBlur: event => {
11762
+ controllers.onBlur();
11763
+ if (event.target.value === '') {
11764
+ // @ts-expect-error the types will be changed on the next major release https://github.com/7shifts/sous-chef/pull/356
11765
+ controllers.onChange(undefined);
11766
+ }
11767
+ },
11734
11768
  maxLength: _format.length,
11735
11769
  value: inputValue
11736
11770
  })), showCalendar && React__default.createElement(Calendar, {
@@ -14133,5 +14167,5 @@ const EmptyState = props => {
14133
14167
  return emptyStateContainer;
14134
14168
  };
14135
14169
 
14136
- export { Accordion, ActionList, ActionListItem, AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconClockExclamation, IconClockRewind, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFaceSmileRelaxed, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandHoldingDollar, IconHandPointRight, IconHandshake, IconHatChef, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMedal, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlateUtensils, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, NumberField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
14170
+ export { Accordion, ActionList, ActionListItem, AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, ConfirmModal, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconClockExclamation, IconClockRewind, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFaceSmileRelaxed, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandHoldingDollar, IconHandPointRight, IconHandshake, IconHatChef, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMedal, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlateUtensils, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, NumberField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
14137
14171
  //# sourceMappingURL=index.modern.mjs.map