@7shifts/sous-chef 4.7.2 → 4.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -349,7 +349,7 @@ var kebabize = function kebabize(str) {
349
349
  });
350
350
  };
351
351
 
352
- var _excluded$en = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
352
+ var _excluded$er = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
353
353
  var getPositionProps = function getPositionProps(_ref) {
354
354
  var m = _ref.m,
355
355
  margin = _ref.margin,
@@ -361,7 +361,7 @@ var getPositionProps = function getPositionProps(_ref) {
361
361
  marginBottom = _ref.marginBottom,
362
362
  ml = _ref.ml,
363
363
  marginLeft = _ref.marginLeft,
364
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$en);
364
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$er);
365
365
  return {
366
366
  positionProps: {
367
367
  m: m,
@@ -395,7 +395,7 @@ var getDataProps = function getDataProps(props, config) {
395
395
  });
396
396
  };
397
397
 
398
- var _excluded$em = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
398
+ var _excluded$eq = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
399
399
  /**
400
400
  * Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
401
401
  */
@@ -420,7 +420,7 @@ var Flex = function Flex(_ref) {
420
420
  flexGrow = _ref.flexGrow,
421
421
  testId = _ref.testId,
422
422
  extraClass = _ref.extraClass,
423
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$em);
423
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$eq);
424
424
  var _getPositionProps = getPositionProps(rest),
425
425
  positionProps = _getPositionProps.positionProps,
426
426
  otherProps = _getPositionProps.otherProps;
@@ -451,14 +451,14 @@ var Flex = function Flex(_ref) {
451
451
  }));
452
452
  };
453
453
 
454
- var _excluded$el = ["alignItems"];
454
+ var _excluded$ep = ["alignItems"];
455
455
  /**
456
456
  * Layout component to easily stack elements up in a column.
457
457
  */
458
458
  var Stack = function Stack(_ref) {
459
459
  var _ref$alignItems = _ref.alignItems,
460
460
  alignItems = _ref$alignItems === void 0 ? 'stretch' : _ref$alignItems,
461
- props = _objectWithoutPropertiesLoose(_ref, _excluded$el);
461
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ep);
462
462
  return React__namespace.createElement(Flex, _extends({}, props, {
463
463
  alignItems: alignItems,
464
464
  direction: "column"
@@ -467,7 +467,7 @@ var Stack = function Stack(_ref) {
467
467
 
468
468
  var styles$1H = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
469
469
 
470
- var _excluded$ek = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
470
+ var _excluded$eo = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
471
471
  /**
472
472
  * Used when you want to allow the user to turn some information ON and OFF.
473
473
  *
@@ -482,7 +482,7 @@ var Toggle = function Toggle(_ref) {
482
482
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
483
483
  id = _ref.id,
484
484
  testId = _ref.testId,
485
- otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$ek);
485
+ otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$eo);
486
486
  var _getDataProps = getDataProps(otherProps),
487
487
  dataProps = _getDataProps.dataProps;
488
488
  return React__default["default"].createElement(Stack, {
@@ -1014,7 +1014,7 @@ var COMPONENT_NAMES = {
1014
1014
  BUTTON: 'BUTTON'
1015
1015
  };
1016
1016
 
1017
- var _excluded$ej = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
1017
+ var _excluded$en = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
1018
1018
  _excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
1019
1019
  var ButtonComponent = function ButtonComponent(_ref, ref) {
1020
1020
  var _classnames;
@@ -1039,7 +1039,7 @@ var ButtonComponent = function ButtonComponent(_ref, ref) {
1039
1039
  target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
1040
1040
  testId = _ref.testId,
1041
1041
  size = _ref.size,
1042
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$ej);
1042
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$en);
1043
1043
  var _getPositionProps = getPositionProps(rest),
1044
1044
  positionProps = _getPositionProps.positionProps,
1045
1045
  otherProps = _getPositionProps.otherProps;
@@ -1163,7 +1163,7 @@ var useIsInsideComponent = function useIsInsideComponent(parentComponentName) {
1163
1163
  return componentName === parentComponentName;
1164
1164
  };
1165
1165
 
1166
- var _excluded$ei = ["testId", "size", "color", "style", "variant"];
1166
+ var _excluded$em = ["testId", "size", "color", "style", "variant"];
1167
1167
  var IconArrowDown = React.forwardRef(function (_ref, ref) {
1168
1168
  var _ref$testId = _ref.testId,
1169
1169
  testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
@@ -1172,7 +1172,7 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
1172
1172
  style = _ref.style,
1173
1173
  _ref$variant = _ref.variant,
1174
1174
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1175
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ei);
1175
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$em);
1176
1176
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1177
1177
  var styleProps = {
1178
1178
  size: !size && isInsideButton ? 'medium' : size,
@@ -1210,7 +1210,7 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
1210
1210
  });
1211
1211
  IconArrowDown.displayName = 'IconArrowDown';
1212
1212
 
1213
- var _excluded$eh = ["testId", "size", "color", "style", "variant"];
1213
+ var _excluded$el = ["testId", "size", "color", "style", "variant"];
1214
1214
  var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1215
1215
  var _ref$testId = _ref.testId,
1216
1216
  testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
@@ -1219,7 +1219,7 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1219
1219
  style = _ref.style,
1220
1220
  _ref$variant = _ref.variant,
1221
1221
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1222
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eh);
1222
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$el);
1223
1223
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1224
1224
  var styleProps = {
1225
1225
  size: !size && isInsideButton ? 'medium' : size,
@@ -1255,7 +1255,7 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1255
1255
  });
1256
1256
  IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
1257
1257
 
1258
- var _excluded$eg = ["testId", "size", "color", "style", "variant"];
1258
+ var _excluded$ek = ["testId", "size", "color", "style", "variant"];
1259
1259
  var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1260
1260
  var _ref$testId = _ref.testId,
1261
1261
  testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
@@ -1264,7 +1264,7 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1264
1264
  style = _ref.style,
1265
1265
  _ref$variant = _ref.variant,
1266
1266
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1267
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eg);
1267
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ek);
1268
1268
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1269
1269
  var styleProps = {
1270
1270
  size: !size && isInsideButton ? 'medium' : size,
@@ -1302,7 +1302,52 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1302
1302
  });
1303
1303
  IconArrowLeft.displayName = 'IconArrowLeft';
1304
1304
 
1305
- var _excluded$ef = ["testId", "size", "color", "style", "variant"];
1305
+ var _excluded$ej = ["testId", "size", "color", "style", "variant"];
1306
+ var IconArrowLeftRight = React.forwardRef(function (_ref, ref) {
1307
+ var _ref$testId = _ref.testId,
1308
+ testId = _ref$testId === void 0 ? 'icon-arrow-left-right' : _ref$testId,
1309
+ size = _ref.size,
1310
+ color = _ref.color,
1311
+ style = _ref.style,
1312
+ _ref$variant = _ref.variant,
1313
+ variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1314
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ej);
1315
+ var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1316
+ var styleProps = {
1317
+ size: !size && isInsideButton ? 'medium' : size,
1318
+ color: color,
1319
+ style: style
1320
+ };
1321
+ if (variant === 'solid') {
1322
+ return React__default["default"].createElement("svg", _extends({
1323
+ style: getIconStyles(styleProps),
1324
+ "data-testid": testId,
1325
+ ref: ref
1326
+ }, props, {
1327
+ xmlns: "http://www.w3.org/2000/svg",
1328
+ fill: "none",
1329
+ viewBox: "0 0 24 24"
1330
+ }), React__default["default"].createElement("path", {
1331
+ fill: "currentColor",
1332
+ d: "m19.61 16.945 4-4c.52-.52.52-1.366 0-1.887l-4-3.999a1.335 1.335 0 0 0-1.887 1.887l1.725 1.725H4.554l1.724-1.725A1.335 1.335 0 0 0 4.391 7.06l-4 4a1.331 1.331 0 0 0 0 1.883l4 3.999a1.335 1.335 0 0 0 1.887-1.887l-1.724-1.725h14.894l-1.725 1.725a1.335 1.335 0 0 0 1.887 1.887v.004Z"
1333
+ }));
1334
+ }
1335
+ return React__default["default"].createElement("svg", _extends({
1336
+ style: getIconStyles(styleProps),
1337
+ "data-testid": testId,
1338
+ ref: ref
1339
+ }, props, {
1340
+ xmlns: "http://www.w3.org/2000/svg",
1341
+ fill: "none",
1342
+ viewBox: "0 0 24 24"
1343
+ }), React__default["default"].createElement("path", {
1344
+ fill: "currentColor",
1345
+ d: "m19.138 17.139 4.668-4.668a.67.67 0 0 0 0-.942l-4.668-4.668a.67.67 0 0 0-.942 0 .67.67 0 0 0 0 .942l3.53 3.53H2.277l3.53-3.53a.67.67 0 0 0 0-.942.67.67 0 0 0-.942 0L.196 11.53A.67.67 0 0 0 0 12c0 .175.07.346.196.471l4.668 4.668a.67.67 0 0 0 .942 0 .67.67 0 0 0 0-.942l-3.53-3.53h19.45l-3.53 3.53a.67.67 0 0 0 0 .942.67.67 0 0 0 .942 0Z"
1346
+ }));
1347
+ });
1348
+ IconArrowLeftRight.displayName = 'IconArrowLeftRight';
1349
+
1350
+ var _excluded$ei = ["testId", "size", "color", "style", "variant"];
1306
1351
  var IconArrowRight = React.forwardRef(function (_ref, ref) {
1307
1352
  var _ref$testId = _ref.testId,
1308
1353
  testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
@@ -1311,7 +1356,7 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
1311
1356
  style = _ref.style,
1312
1357
  _ref$variant = _ref.variant,
1313
1358
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1314
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ef);
1359
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ei);
1315
1360
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1316
1361
  var styleProps = {
1317
1362
  size: !size && isInsideButton ? 'medium' : size,
@@ -1349,7 +1394,7 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
1349
1394
  });
1350
1395
  IconArrowRight.displayName = 'IconArrowRight';
1351
1396
 
1352
- var _excluded$ee = ["testId", "size", "color", "style", "variant"];
1397
+ var _excluded$eh = ["testId", "size", "color", "style", "variant"];
1353
1398
  var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1354
1399
  var _ref$testId = _ref.testId,
1355
1400
  testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
@@ -1358,7 +1403,7 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1358
1403
  style = _ref.style,
1359
1404
  _ref$variant = _ref.variant,
1360
1405
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1361
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ee);
1406
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eh);
1362
1407
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1363
1408
  var styleProps = {
1364
1409
  size: !size && isInsideButton ? 'medium' : size,
@@ -1394,7 +1439,7 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1394
1439
  });
1395
1440
  IconArrowToTop.displayName = 'IconArrowToTop';
1396
1441
 
1397
- var _excluded$ed = ["testId", "size", "color", "style", "variant"];
1442
+ var _excluded$eg = ["testId", "size", "color", "style", "variant"];
1398
1443
  var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1399
1444
  var _ref$testId = _ref.testId,
1400
1445
  testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
@@ -1403,7 +1448,7 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1403
1448
  style = _ref.style,
1404
1449
  _ref$variant = _ref.variant,
1405
1450
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1406
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ed);
1451
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eg);
1407
1452
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1408
1453
  var styleProps = {
1409
1454
  size: !size && isInsideButton ? 'medium' : size,
@@ -1454,7 +1499,7 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1454
1499
  });
1455
1500
  IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
1456
1501
 
1457
- var _excluded$ec = ["testId", "size", "color", "style", "variant"];
1502
+ var _excluded$ef = ["testId", "size", "color", "style", "variant"];
1458
1503
  var IconArrowUp = React.forwardRef(function (_ref, ref) {
1459
1504
  var _ref$testId = _ref.testId,
1460
1505
  testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
@@ -1463,7 +1508,7 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
1463
1508
  style = _ref.style,
1464
1509
  _ref$variant = _ref.variant,
1465
1510
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1466
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ec);
1511
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ef);
1467
1512
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1468
1513
  var styleProps = {
1469
1514
  size: !size && isInsideButton ? 'medium' : size,
@@ -1501,7 +1546,7 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
1501
1546
  });
1502
1547
  IconArrowUp.displayName = 'IconArrowUp';
1503
1548
 
1504
- var _excluded$eb = ["testId", "size", "color", "style", "variant"];
1549
+ var _excluded$ee = ["testId", "size", "color", "style", "variant"];
1505
1550
  var IconChevronDown = React.forwardRef(function (_ref, ref) {
1506
1551
  var _ref$testId = _ref.testId,
1507
1552
  testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
@@ -1510,7 +1555,7 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
1510
1555
  style = _ref.style,
1511
1556
  _ref$variant = _ref.variant,
1512
1557
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1513
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eb);
1558
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ee);
1514
1559
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1515
1560
  var styleProps = {
1516
1561
  size: !size && isInsideButton ? 'medium' : size,
@@ -1548,7 +1593,7 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
1548
1593
  });
1549
1594
  IconChevronDown.displayName = 'IconChevronDown';
1550
1595
 
1551
- var _excluded$ea = ["testId", "size", "color", "style", "variant"];
1596
+ var _excluded$ed = ["testId", "size", "color", "style", "variant"];
1552
1597
  var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1553
1598
  var _ref$testId = _ref.testId,
1554
1599
  testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
@@ -1557,7 +1602,7 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1557
1602
  style = _ref.style,
1558
1603
  _ref$variant = _ref.variant,
1559
1604
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1560
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ea);
1605
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ed);
1561
1606
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1562
1607
  var styleProps = {
1563
1608
  size: !size && isInsideButton ? 'medium' : size,
@@ -1595,7 +1640,7 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1595
1640
  });
1596
1641
  IconChevronLeft.displayName = 'IconChevronLeft';
1597
1642
 
1598
- var _excluded$e9 = ["testId", "size", "color", "style", "variant"];
1643
+ var _excluded$ec = ["testId", "size", "color", "style", "variant"];
1599
1644
  var IconChevronRight = React.forwardRef(function (_ref, ref) {
1600
1645
  var _ref$testId = _ref.testId,
1601
1646
  testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
@@ -1604,7 +1649,7 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
1604
1649
  style = _ref.style,
1605
1650
  _ref$variant = _ref.variant,
1606
1651
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1607
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e9);
1652
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ec);
1608
1653
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1609
1654
  var styleProps = {
1610
1655
  size: !size && isInsideButton ? 'medium' : size,
@@ -1642,7 +1687,7 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
1642
1687
  });
1643
1688
  IconChevronRight.displayName = 'IconChevronRight';
1644
1689
 
1645
- var _excluded$e8 = ["testId", "size", "color", "style", "variant"];
1690
+ var _excluded$eb = ["testId", "size", "color", "style", "variant"];
1646
1691
  var IconChevronUp = React.forwardRef(function (_ref, ref) {
1647
1692
  var _ref$testId = _ref.testId,
1648
1693
  testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
@@ -1651,7 +1696,7 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
1651
1696
  style = _ref.style,
1652
1697
  _ref$variant = _ref.variant,
1653
1698
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1654
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e8);
1699
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eb);
1655
1700
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1656
1701
  var styleProps = {
1657
1702
  size: !size && isInsideButton ? 'medium' : size,
@@ -1689,7 +1734,7 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
1689
1734
  });
1690
1735
  IconChevronUp.displayName = 'IconChevronUp';
1691
1736
 
1692
- var _excluded$e7 = ["testId", "size", "color", "style", "variant"];
1737
+ var _excluded$ea = ["testId", "size", "color", "style", "variant"];
1693
1738
  var IconExpand = React.forwardRef(function (_ref, ref) {
1694
1739
  var _ref$testId = _ref.testId,
1695
1740
  testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
@@ -1698,7 +1743,7 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
1698
1743
  style = _ref.style,
1699
1744
  _ref$variant = _ref.variant,
1700
1745
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1701
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e7);
1746
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ea);
1702
1747
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1703
1748
  var styleProps = {
1704
1749
  size: !size && isInsideButton ? 'medium' : size,
@@ -1734,7 +1779,7 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
1734
1779
  });
1735
1780
  IconExpand.displayName = 'IconExpand';
1736
1781
 
1737
- var _excluded$e6 = ["testId", "size", "color", "style", "variant"];
1782
+ var _excluded$e9 = ["testId", "size", "color", "style", "variant"];
1738
1783
  var IconRepeat = React.forwardRef(function (_ref, ref) {
1739
1784
  var _ref$testId = _ref.testId,
1740
1785
  testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
@@ -1743,7 +1788,7 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
1743
1788
  style = _ref.style,
1744
1789
  _ref$variant = _ref.variant,
1745
1790
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1746
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e6);
1791
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e9);
1747
1792
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1748
1793
  var styleProps = {
1749
1794
  size: !size && isInsideButton ? 'medium' : size,
@@ -1779,7 +1824,7 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
1779
1824
  });
1780
1825
  IconRepeat.displayName = 'IconRepeat';
1781
1826
 
1782
- var _excluded$e5 = ["testId", "size", "color", "style", "variant"];
1827
+ var _excluded$e8 = ["testId", "size", "color", "style", "variant"];
1783
1828
  var IconReply = React.forwardRef(function (_ref, ref) {
1784
1829
  var _ref$testId = _ref.testId,
1785
1830
  testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
@@ -1788,7 +1833,7 @@ var IconReply = React.forwardRef(function (_ref, ref) {
1788
1833
  style = _ref.style,
1789
1834
  _ref$variant = _ref.variant,
1790
1835
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1791
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e5);
1836
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e8);
1792
1837
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1793
1838
  var styleProps = {
1794
1839
  size: !size && isInsideButton ? 'medium' : size,
@@ -1831,7 +1876,7 @@ var IconReply = React.forwardRef(function (_ref, ref) {
1831
1876
  });
1832
1877
  IconReply.displayName = 'IconReply';
1833
1878
 
1834
- var _excluded$e4 = ["testId", "size", "color", "style", "variant"];
1879
+ var _excluded$e7 = ["testId", "size", "color", "style", "variant"];
1835
1880
  var IconSort = React.forwardRef(function (_ref, ref) {
1836
1881
  var _ref$testId = _ref.testId,
1837
1882
  testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
@@ -1840,7 +1885,7 @@ var IconSort = React.forwardRef(function (_ref, ref) {
1840
1885
  style = _ref.style,
1841
1886
  _ref$variant = _ref.variant,
1842
1887
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1843
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e4);
1888
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e7);
1844
1889
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1845
1890
  var styleProps = {
1846
1891
  size: !size && isInsideButton ? 'medium' : size,
@@ -1876,7 +1921,7 @@ var IconSort = React.forwardRef(function (_ref, ref) {
1876
1921
  });
1877
1922
  IconSort.displayName = 'IconSort';
1878
1923
 
1879
- var _excluded$e3 = ["testId", "size", "color", "style", "variant"];
1924
+ var _excluded$e6 = ["testId", "size", "color", "style", "variant"];
1880
1925
  var IconSync = React.forwardRef(function (_ref, ref) {
1881
1926
  var _ref$testId = _ref.testId,
1882
1927
  testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
@@ -1885,7 +1930,7 @@ var IconSync = React.forwardRef(function (_ref, ref) {
1885
1930
  style = _ref.style,
1886
1931
  _ref$variant = _ref.variant,
1887
1932
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1888
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e3);
1933
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e6);
1889
1934
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1890
1935
  var styleProps = {
1891
1936
  size: !size && isInsideButton ? 'medium' : size,
@@ -1935,7 +1980,7 @@ var IconSync = React.forwardRef(function (_ref, ref) {
1935
1980
  });
1936
1981
  IconSync.displayName = 'IconSync';
1937
1982
 
1938
- var _excluded$e2 = ["testId", "size", "color", "style", "variant"];
1983
+ var _excluded$e5 = ["testId", "size", "color", "style", "variant"];
1939
1984
  var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1940
1985
  var _ref$testId = _ref.testId,
1941
1986
  testId = _ref$testId === void 0 ? 'icon-sync-exclamation' : _ref$testId,
@@ -1944,7 +1989,7 @@ var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1944
1989
  style = _ref.style,
1945
1990
  _ref$variant = _ref.variant,
1946
1991
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1947
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e2);
1992
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e5);
1948
1993
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1949
1994
  var styleProps = {
1950
1995
  size: !size && isInsideButton ? 'medium' : size,
@@ -1996,7 +2041,7 @@ var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1996
2041
  });
1997
2042
  IconSyncExclamation.displayName = 'IconSyncExclamation';
1998
2043
 
1999
- var _excluded$e1 = ["testId", "size", "color", "style", "variant"];
2044
+ var _excluded$e4 = ["testId", "size", "color", "style", "variant"];
2000
2045
  var IconUndo = React.forwardRef(function (_ref, ref) {
2001
2046
  var _ref$testId = _ref.testId,
2002
2047
  testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
@@ -2005,7 +2050,7 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
2005
2050
  style = _ref.style,
2006
2051
  _ref$variant = _ref.variant,
2007
2052
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2008
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e1);
2053
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e4);
2009
2054
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2010
2055
  var styleProps = {
2011
2056
  size: !size && isInsideButton ? 'medium' : size,
@@ -2055,7 +2100,7 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
2055
2100
  });
2056
2101
  IconUndo.displayName = 'IconUndo';
2057
2102
 
2058
- var _excluded$e0 = ["testId", "size", "color", "style", "variant"];
2103
+ var _excluded$e3 = ["testId", "size", "color", "style", "variant"];
2059
2104
  var IconAnalytics = React.forwardRef(function (_ref, ref) {
2060
2105
  var _ref$testId = _ref.testId,
2061
2106
  testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
@@ -2064,7 +2109,7 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
2064
2109
  style = _ref.style,
2065
2110
  _ref$variant = _ref.variant,
2066
2111
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2067
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e0);
2112
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e3);
2068
2113
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2069
2114
  var styleProps = {
2070
2115
  size: !size && isInsideButton ? 'medium' : size,
@@ -2102,7 +2147,7 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
2102
2147
  });
2103
2148
  IconAnalytics.displayName = 'IconAnalytics';
2104
2149
 
2105
- var _excluded$d$ = ["testId", "size", "color", "style", "variant"];
2150
+ var _excluded$e2 = ["testId", "size", "color", "style", "variant"];
2106
2151
  var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2107
2152
  var _ref$testId = _ref.testId,
2108
2153
  testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
@@ -2111,7 +2156,7 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2111
2156
  style = _ref.style,
2112
2157
  _ref$variant = _ref.variant,
2113
2158
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2114
- props = _objectWithoutPropertiesLoose(_ref, _excluded$d$);
2159
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e2);
2115
2160
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2116
2161
  var styleProps = {
2117
2162
  size: !size && isInsideButton ? 'medium' : size,
@@ -2154,7 +2199,7 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2154
2199
  });
2155
2200
  IconBalanceScale.displayName = 'IconBalanceScale';
2156
2201
 
2157
- var _excluded$d_ = ["testId", "size", "color", "style", "variant"];
2202
+ var _excluded$e1 = ["testId", "size", "color", "style", "variant"];
2158
2203
  var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2159
2204
  var _ref$testId = _ref.testId,
2160
2205
  testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
@@ -2163,7 +2208,7 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2163
2208
  style = _ref.style,
2164
2209
  _ref$variant = _ref.variant,
2165
2210
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2166
- props = _objectWithoutPropertiesLoose(_ref, _excluded$d_);
2211
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e1);
2167
2212
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2168
2213
  var styleProps = {
2169
2214
  size: !size && isInsideButton ? 'medium' : size,
@@ -2206,7 +2251,7 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2206
2251
  });
2207
2252
  IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
2208
2253
 
2209
- var _excluded$dZ = ["testId", "size", "color", "style", "variant"];
2254
+ var _excluded$e0 = ["testId", "size", "color", "style", "variant"];
2210
2255
  var IconBarsV = React.forwardRef(function (_ref, ref) {
2211
2256
  var _ref$testId = _ref.testId,
2212
2257
  testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
@@ -2215,7 +2260,7 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
2215
2260
  style = _ref.style,
2216
2261
  _ref$variant = _ref.variant,
2217
2262
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2218
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dZ);
2263
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e0);
2219
2264
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2220
2265
  var styleProps = {
2221
2266
  size: !size && isInsideButton ? 'medium' : size,
@@ -2251,7 +2296,7 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
2251
2296
  });
2252
2297
  IconBarsV.displayName = 'IconBarsV';
2253
2298
 
2254
- var _excluded$dY = ["testId", "size", "color", "style", "variant"];
2299
+ var _excluded$d$ = ["testId", "size", "color", "style", "variant"];
2255
2300
  var IconBook = React.forwardRef(function (_ref, ref) {
2256
2301
  var _ref$testId = _ref.testId,
2257
2302
  testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
@@ -2260,7 +2305,7 @@ var IconBook = React.forwardRef(function (_ref, ref) {
2260
2305
  style = _ref.style,
2261
2306
  _ref$variant = _ref.variant,
2262
2307
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2263
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dY);
2308
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d$);
2264
2309
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2265
2310
  var styleProps = {
2266
2311
  size: !size && isInsideButton ? 'medium' : size,
@@ -2296,7 +2341,7 @@ var IconBook = React.forwardRef(function (_ref, ref) {
2296
2341
  });
2297
2342
  IconBook.displayName = 'IconBook';
2298
2343
 
2299
- var _excluded$dX = ["testId", "size", "color", "style", "variant"];
2344
+ var _excluded$d_ = ["testId", "size", "color", "style", "variant"];
2300
2345
  var IconCalculator = React.forwardRef(function (_ref, ref) {
2301
2346
  var _ref$testId = _ref.testId,
2302
2347
  testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
@@ -2305,7 +2350,7 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
2305
2350
  style = _ref.style,
2306
2351
  _ref$variant = _ref.variant,
2307
2352
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2308
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dX);
2353
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d_);
2309
2354
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2310
2355
  var styleProps = {
2311
2356
  size: !size && isInsideButton ? 'medium' : size,
@@ -2343,7 +2388,7 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
2343
2388
  });
2344
2389
  IconCalculator.displayName = 'IconCalculator';
2345
2390
 
2346
- var _excluded$dW = ["testId", "size", "color", "style", "variant"];
2391
+ var _excluded$dZ = ["testId", "size", "color", "style", "variant"];
2347
2392
  var IconCashRegister = React.forwardRef(function (_ref, ref) {
2348
2393
  var _ref$testId = _ref.testId,
2349
2394
  testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
@@ -2352,7 +2397,7 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
2352
2397
  style = _ref.style,
2353
2398
  _ref$variant = _ref.variant,
2354
2399
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2355
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dW);
2400
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dZ);
2356
2401
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2357
2402
  var styleProps = {
2358
2403
  size: !size && isInsideButton ? 'medium' : size,
@@ -2402,7 +2447,7 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
2402
2447
  });
2403
2448
  IconCashRegister.displayName = 'IconCashRegister';
2404
2449
 
2405
- var _excluded$dV = ["testId", "size", "color", "style", "variant"];
2450
+ var _excluded$dY = ["testId", "size", "color", "style", "variant"];
2406
2451
  var IconChartBar = React.forwardRef(function (_ref, ref) {
2407
2452
  var _ref$testId = _ref.testId,
2408
2453
  testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
@@ -2411,7 +2456,7 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
2411
2456
  style = _ref.style,
2412
2457
  _ref$variant = _ref.variant,
2413
2458
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2414
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dV);
2459
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dY);
2415
2460
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2416
2461
  var styleProps = {
2417
2462
  size: !size && isInsideButton ? 'medium' : size,
@@ -2449,7 +2494,7 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
2449
2494
  });
2450
2495
  IconChartBar.displayName = 'IconChartBar';
2451
2496
 
2452
- var _excluded$dU = ["testId", "size", "color", "style", "variant"];
2497
+ var _excluded$dX = ["testId", "size", "color", "style", "variant"];
2453
2498
  var IconCreditCard = React.forwardRef(function (_ref, ref) {
2454
2499
  var _ref$testId = _ref.testId,
2455
2500
  testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
@@ -2458,7 +2503,7 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
2458
2503
  style = _ref.style,
2459
2504
  _ref$variant = _ref.variant,
2460
2505
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2461
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dU);
2506
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dX);
2462
2507
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2463
2508
  var styleProps = {
2464
2509
  size: !size && isInsideButton ? 'medium' : size,
@@ -2494,7 +2539,7 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
2494
2539
  });
2495
2540
  IconCreditCard.displayName = 'IconCreditCard';
2496
2541
 
2497
- var _excluded$dT = ["testId", "size", "color", "style", "variant"];
2542
+ var _excluded$dW = ["testId", "size", "color", "style", "variant"];
2498
2543
  var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2499
2544
  var _ref$testId = _ref.testId,
2500
2545
  testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
@@ -2503,7 +2548,7 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2503
2548
  style = _ref.style,
2504
2549
  _ref$variant = _ref.variant,
2505
2550
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2506
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dT);
2551
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dW);
2507
2552
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2508
2553
  var styleProps = {
2509
2554
  size: !size && isInsideButton ? 'medium' : size,
@@ -2559,7 +2604,7 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2559
2604
  });
2560
2605
  IconCreditCardPlus.displayName = 'IconCreditCardPlus';
2561
2606
 
2562
- var _excluded$dS = ["testId", "size", "color", "style", "variant"];
2607
+ var _excluded$dV = ["testId", "size", "color", "style", "variant"];
2563
2608
  var IconDollarSign = React.forwardRef(function (_ref, ref) {
2564
2609
  var _ref$testId = _ref.testId,
2565
2610
  testId = _ref$testId === void 0 ? 'icon-dollar-sign' : _ref$testId,
@@ -2568,7 +2613,7 @@ var IconDollarSign = React.forwardRef(function (_ref, ref) {
2568
2613
  style = _ref.style,
2569
2614
  _ref$variant = _ref.variant,
2570
2615
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2571
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dS);
2616
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dV);
2572
2617
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2573
2618
  var styleProps = {
2574
2619
  size: !size && isInsideButton ? 'medium' : size,
@@ -2604,7 +2649,7 @@ var IconDollarSign = React.forwardRef(function (_ref, ref) {
2604
2649
  });
2605
2650
  IconDollarSign.displayName = 'IconDollarSign';
2606
2651
 
2607
- var _excluded$dR = ["testId", "size", "color", "style", "variant"];
2652
+ var _excluded$dU = ["testId", "size", "color", "style", "variant"];
2608
2653
  var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2609
2654
  var _ref$testId = _ref.testId,
2610
2655
  testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
@@ -2613,7 +2658,7 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2613
2658
  style = _ref.style,
2614
2659
  _ref$variant = _ref.variant,
2615
2660
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2616
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dR);
2661
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dU);
2617
2662
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2618
2663
  var styleProps = {
2619
2664
  size: !size && isInsideButton ? 'medium' : size,
@@ -2663,7 +2708,7 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2663
2708
  });
2664
2709
  IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
2665
2710
 
2666
- var _excluded$dQ = ["testId", "size", "color", "style", "variant"];
2711
+ var _excluded$dT = ["testId", "size", "color", "style", "variant"];
2667
2712
  var IconGanttChart = React.forwardRef(function (_ref, ref) {
2668
2713
  var _ref$testId = _ref.testId,
2669
2714
  testId = _ref$testId === void 0 ? 'icon-gantt-chart' : _ref$testId,
@@ -2672,7 +2717,7 @@ var IconGanttChart = React.forwardRef(function (_ref, ref) {
2672
2717
  style = _ref.style,
2673
2718
  _ref$variant = _ref.variant,
2674
2719
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2675
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dQ);
2720
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dT);
2676
2721
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2677
2722
  var styleProps = {
2678
2723
  size: !size && isInsideButton ? 'medium' : size,
@@ -2708,7 +2753,7 @@ var IconGanttChart = React.forwardRef(function (_ref, ref) {
2708
2753
  });
2709
2754
  IconGanttChart.displayName = 'IconGanttChart';
2710
2755
 
2711
- var _excluded$dP = ["testId", "size", "color", "style", "variant"];
2756
+ var _excluded$dS = ["testId", "size", "color", "style", "variant"];
2712
2757
  var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2713
2758
  var _ref$testId = _ref.testId,
2714
2759
  testId = _ref$testId === void 0 ? 'icon-hand-holding-coin' : _ref$testId,
@@ -2717,7 +2762,7 @@ var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2717
2762
  style = _ref.style,
2718
2763
  _ref$variant = _ref.variant,
2719
2764
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2720
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dP);
2765
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dS);
2721
2766
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2722
2767
  var styleProps = {
2723
2768
  size: !size && isInsideButton ? 'medium' : size,
@@ -2767,7 +2812,7 @@ var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2767
2812
  });
2768
2813
  IconHandHoldingCoin.displayName = 'IconHandHoldingCoin';
2769
2814
 
2770
- var _excluded$dO = ["testId", "size", "color", "style", "variant"];
2815
+ var _excluded$dR = ["testId", "size", "color", "style", "variant"];
2771
2816
  var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2772
2817
  var _ref$testId = _ref.testId,
2773
2818
  testId = _ref$testId === void 0 ? 'icon-hand-holding-dollar' : _ref$testId,
@@ -2776,7 +2821,7 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2776
2821
  style = _ref.style,
2777
2822
  _ref$variant = _ref.variant,
2778
2823
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2779
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dO);
2824
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dR);
2780
2825
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2781
2826
  var styleProps = {
2782
2827
  size: !size && isInsideButton ? 'medium' : size,
@@ -2826,7 +2871,7 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2826
2871
  });
2827
2872
  IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
2828
2873
 
2829
- var _excluded$dN = ["testId", "size", "color", "style", "variant"];
2874
+ var _excluded$dQ = ["testId", "size", "color", "style", "variant"];
2830
2875
  var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2831
2876
  var _ref$testId = _ref.testId,
2832
2877
  testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
@@ -2835,7 +2880,7 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2835
2880
  style = _ref.style,
2836
2881
  _ref$variant = _ref.variant,
2837
2882
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2838
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dN);
2883
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dQ);
2839
2884
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2840
2885
  var styleProps = {
2841
2886
  size: !size && isInsideButton ? 'medium' : size,
@@ -2871,7 +2916,7 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2871
2916
  });
2872
2917
  IconMoneyBill.displayName = 'IconMoneyBill';
2873
2918
 
2874
- var _excluded$dM = ["testId", "size", "color", "style", "variant"];
2919
+ var _excluded$dP = ["testId", "size", "color", "style", "variant"];
2875
2920
  var IconPercentage = React.forwardRef(function (_ref, ref) {
2876
2921
  var _ref$testId = _ref.testId,
2877
2922
  testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
@@ -2880,7 +2925,7 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
2880
2925
  style = _ref.style,
2881
2926
  _ref$variant = _ref.variant,
2882
2927
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2883
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dM);
2928
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dP);
2884
2929
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2885
2930
  var styleProps = {
2886
2931
  size: !size && isInsideButton ? 'medium' : size,
@@ -2916,7 +2961,7 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
2916
2961
  });
2917
2962
  IconPercentage.displayName = 'IconPercentage';
2918
2963
 
2919
- var _excluded$dL = ["testId", "size", "color", "style", "variant"];
2964
+ var _excluded$dO = ["testId", "size", "color", "style", "variant"];
2920
2965
  var IconSitemap = React.forwardRef(function (_ref, ref) {
2921
2966
  var _ref$testId = _ref.testId,
2922
2967
  testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
@@ -2925,7 +2970,7 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
2925
2970
  style = _ref.style,
2926
2971
  _ref$variant = _ref.variant,
2927
2972
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2928
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dL);
2973
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dO);
2929
2974
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2930
2975
  var styleProps = {
2931
2976
  size: !size && isInsideButton ? 'medium' : size,
@@ -2961,7 +3006,7 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
2961
3006
  });
2962
3007
  IconSitemap.displayName = 'IconSitemap';
2963
3008
 
2964
- var _excluded$dK = ["testId", "size", "color", "style", "variant"];
3009
+ var _excluded$dN = ["testId", "size", "color", "style", "variant"];
2965
3010
  var IconTable = React.forwardRef(function (_ref, ref) {
2966
3011
  var _ref$testId = _ref.testId,
2967
3012
  testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
@@ -2970,7 +3015,7 @@ var IconTable = React.forwardRef(function (_ref, ref) {
2970
3015
  style = _ref.style,
2971
3016
  _ref$variant = _ref.variant,
2972
3017
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2973
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dK);
3018
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dN);
2974
3019
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2975
3020
  var styleProps = {
2976
3021
  size: !size && isInsideButton ? 'medium' : size,
@@ -3006,7 +3051,7 @@ var IconTable = React.forwardRef(function (_ref, ref) {
3006
3051
  });
3007
3052
  IconTable.displayName = 'IconTable';
3008
3053
 
3009
- var _excluded$dJ = ["testId", "size", "color", "style", "variant"];
3054
+ var _excluded$dM = ["testId", "size", "color", "style", "variant"];
3010
3055
  var IconBell = React.forwardRef(function (_ref, ref) {
3011
3056
  var _ref$testId = _ref.testId,
3012
3057
  testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
@@ -3015,7 +3060,7 @@ var IconBell = React.forwardRef(function (_ref, ref) {
3015
3060
  style = _ref.style,
3016
3061
  _ref$variant = _ref.variant,
3017
3062
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3018
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dJ);
3063
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dM);
3019
3064
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3020
3065
  var styleProps = {
3021
3066
  size: !size && isInsideButton ? 'medium' : size,
@@ -3051,7 +3096,7 @@ var IconBell = React.forwardRef(function (_ref, ref) {
3051
3096
  });
3052
3097
  IconBell.displayName = 'IconBell';
3053
3098
 
3054
- var _excluded$dI = ["testId", "size", "color", "style", "variant"];
3099
+ var _excluded$dL = ["testId", "size", "color", "style", "variant"];
3055
3100
  var IconBullhorn = React.forwardRef(function (_ref, ref) {
3056
3101
  var _ref$testId = _ref.testId,
3057
3102
  testId = _ref$testId === void 0 ? 'icon-bullhorn' : _ref$testId,
@@ -3060,7 +3105,7 @@ var IconBullhorn = React.forwardRef(function (_ref, ref) {
3060
3105
  style = _ref.style,
3061
3106
  _ref$variant = _ref.variant,
3062
3107
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3063
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dI);
3108
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dL);
3064
3109
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3065
3110
  var styleProps = {
3066
3111
  size: !size && isInsideButton ? 'medium' : size,
@@ -3096,7 +3141,7 @@ var IconBullhorn = React.forwardRef(function (_ref, ref) {
3096
3141
  });
3097
3142
  IconBullhorn.displayName = 'IconBullhorn';
3098
3143
 
3099
- var _excluded$dH = ["testId", "size", "color", "style", "variant"];
3144
+ var _excluded$dK = ["testId", "size", "color", "style", "variant"];
3100
3145
  var IconCamera = React.forwardRef(function (_ref, ref) {
3101
3146
  var _ref$testId = _ref.testId,
3102
3147
  testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
@@ -3105,7 +3150,7 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
3105
3150
  style = _ref.style,
3106
3151
  _ref$variant = _ref.variant,
3107
3152
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3108
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dH);
3153
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dK);
3109
3154
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3110
3155
  var styleProps = {
3111
3156
  size: !size && isInsideButton ? 'medium' : size,
@@ -3141,7 +3186,7 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
3141
3186
  });
3142
3187
  IconCamera.displayName = 'IconCamera';
3143
3188
 
3144
- var _excluded$dG = ["testId", "size", "color", "style", "variant"];
3189
+ var _excluded$dJ = ["testId", "size", "color", "style", "variant"];
3145
3190
  var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3146
3191
  var _ref$testId = _ref.testId,
3147
3192
  testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
@@ -3150,7 +3195,7 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3150
3195
  style = _ref.style,
3151
3196
  _ref$variant = _ref.variant,
3152
3197
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3153
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dG);
3198
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dJ);
3154
3199
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3155
3200
  var styleProps = {
3156
3201
  size: !size && isInsideButton ? 'medium' : size,
@@ -3186,7 +3231,7 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3186
3231
  });
3187
3232
  IconCameraSlash.displayName = 'IconCameraSlash';
3188
3233
 
3189
- var _excluded$dF = ["testId", "size", "color", "style", "variant"];
3234
+ var _excluded$dI = ["testId", "size", "color", "style", "variant"];
3190
3235
  var IconComment = React.forwardRef(function (_ref, ref) {
3191
3236
  var _ref$testId = _ref.testId,
3192
3237
  testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
@@ -3195,7 +3240,7 @@ var IconComment = React.forwardRef(function (_ref, ref) {
3195
3240
  style = _ref.style,
3196
3241
  _ref$variant = _ref.variant,
3197
3242
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3198
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dF);
3243
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dI);
3199
3244
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3200
3245
  var styleProps = {
3201
3246
  size: !size && isInsideButton ? 'medium' : size,
@@ -3231,7 +3276,7 @@ var IconComment = React.forwardRef(function (_ref, ref) {
3231
3276
  });
3232
3277
  IconComment.displayName = 'IconComment';
3233
3278
 
3234
- var _excluded$dE = ["testId", "size", "color", "style", "variant"];
3279
+ var _excluded$dH = ["testId", "size", "color", "style", "variant"];
3235
3280
  var IconCommentLines = React.forwardRef(function (_ref, ref) {
3236
3281
  var _ref$testId = _ref.testId,
3237
3282
  testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
@@ -3240,7 +3285,7 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
3240
3285
  style = _ref.style,
3241
3286
  _ref$variant = _ref.variant,
3242
3287
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3243
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dE);
3288
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dH);
3244
3289
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3245
3290
  var styleProps = {
3246
3291
  size: !size && isInsideButton ? 'medium' : size,
@@ -3276,7 +3321,7 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
3276
3321
  });
3277
3322
  IconCommentLines.displayName = 'IconCommentLines';
3278
3323
 
3279
- var _excluded$dD = ["testId", "size", "color", "style", "variant"];
3324
+ var _excluded$dG = ["testId", "size", "color", "style", "variant"];
3280
3325
  var IconEnvelope = React.forwardRef(function (_ref, ref) {
3281
3326
  var _ref$testId = _ref.testId,
3282
3327
  testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
@@ -3285,7 +3330,7 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
3285
3330
  style = _ref.style,
3286
3331
  _ref$variant = _ref.variant,
3287
3332
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3288
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dD);
3333
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dG);
3289
3334
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3290
3335
  var styleProps = {
3291
3336
  size: !size && isInsideButton ? 'medium' : size,
@@ -3321,7 +3366,52 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
3321
3366
  });
3322
3367
  IconEnvelope.displayName = 'IconEnvelope';
3323
3368
 
3324
- var _excluded$dC = ["testId", "size", "color", "style", "variant"];
3369
+ var _excluded$dF = ["testId", "size", "color", "style", "variant"];
3370
+ var IconLanguage = React.forwardRef(function (_ref, ref) {
3371
+ var _ref$testId = _ref.testId,
3372
+ testId = _ref$testId === void 0 ? 'icon-language' : _ref$testId,
3373
+ size = _ref.size,
3374
+ color = _ref.color,
3375
+ style = _ref.style,
3376
+ _ref$variant = _ref.variant,
3377
+ variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3378
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dF);
3379
+ var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3380
+ var styleProps = {
3381
+ size: !size && isInsideButton ? 'medium' : size,
3382
+ color: color,
3383
+ style: style
3384
+ };
3385
+ if (variant === 'solid') {
3386
+ return React__default["default"].createElement("svg", _extends({
3387
+ style: getIconStyles(styleProps),
3388
+ "data-testid": testId,
3389
+ ref: ref
3390
+ }, props, {
3391
+ xmlns: "http://www.w3.org/2000/svg",
3392
+ fill: "none",
3393
+ viewBox: "0 0 20 20"
3394
+ }), React__default["default"].createElement("path", {
3395
+ fill: "currentColor",
3396
+ d: "M5.556 1.11a1.11 1.11 0 0 1 1.11 1.112v1.111h4.446a1.11 1.11 0 1 1 0 2.222h-.334l-.291.803a13.339 13.339 0 0 1-2.508 4.236c.494.305 1.007.576 1.542.816l1.75.778 2.16-4.862a1.107 1.107 0 0 1 2.028 0l4.445 10a1.108 1.108 0 0 1-.563 1.466 1.112 1.112 0 0 1-1.465-.562l-.695-1.563h-5.469l-.694 1.563a1.11 1.11 0 0 1-2.028-.903l1.382-3.108-1.75-.778a14.942 14.942 0 0 1-2.285-1.264 13.433 13.433 0 0 1-2.413 1.552l-1.205.598a1.11 1.11 0 1 1-.993-1.986l1.198-.601a11.684 11.684 0 0 0 1.61-.983c-.478-.44-.93-.917-1.35-1.42l-.35-.424A1.112 1.112 0 0 1 4.541 7.49l.354.423c.4.483.837.93 1.299 1.344A11.126 11.126 0 0 0 8.4 5.597l.017-.042H1.115a1.11 1.11 0 1 1-.004-2.222h3.334V2.222a1.11 1.11 0 0 1 1.11-1.111Zm8.89 9.404-1.748 3.93h3.494l-1.747-3.93Z"
3397
+ }));
3398
+ }
3399
+ return React__default["default"].createElement("svg", _extends({
3400
+ style: getIconStyles(styleProps),
3401
+ "data-testid": testId,
3402
+ ref: ref
3403
+ }, props, {
3404
+ xmlns: "http://www.w3.org/2000/svg",
3405
+ fill: "none",
3406
+ viewBox: "0 0 20 20"
3407
+ }), React__default["default"].createElement("path", {
3408
+ fill: "currentColor",
3409
+ d: "M4.997 1.107c.306 0 .556.25.556.556V4.44h6.112c.306 0 .556.25.556.556 0 .305-.25.555-.556.555h-.743l-.545 1.271a12.791 12.791 0 0 1-3.358 4.609c.486.33 1 .628 1.535.885h.003l2.452 1.185 2.928-6.509a.558.558 0 0 1 1.014 0l5 11.113a.56.56 0 0 1-.277.737.558.558 0 0 1-.737-.278l-1.354-3.008h-6.282l-1.355 3.008a.553.553 0 0 1-.736.278.554.554 0 0 1-.278-.736l1.615-3.591-2.48-1.195c-.69-.33-1.35-.722-1.965-1.167-.615.445-1.271.834-1.966 1.167l-2.233 1.066a.556.556 0 0 1-.74-.26.557.557 0 0 1 .26-.74l2.24-1.073a11.37 11.37 0 0 0 1.536-.886 12.774 12.774 0 0 1-2.754-3.382.557.557 0 0 1 .969-.546 11.605 11.605 0 0 0 2.695 3.24c1.4-1.17 2.518-2.66 3.247-4.358l.358-.833H.556A.557.557 0 0 1 0 4.993c0-.306.247-.552.552-.552h3.89V1.663c0-.306.25-.556.555-.556Zm12.09 13.336-2.643-5.87-2.64 5.87h5.282Z"
3410
+ }));
3411
+ });
3412
+ IconLanguage.displayName = 'IconLanguage';
3413
+
3414
+ var _excluded$dE = ["testId", "size", "color", "style", "variant"];
3325
3415
  var IconMessages = React.forwardRef(function (_ref, ref) {
3326
3416
  var _ref$testId = _ref.testId,
3327
3417
  testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
@@ -3330,7 +3420,7 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
3330
3420
  style = _ref.style,
3331
3421
  _ref$variant = _ref.variant,
3332
3422
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3333
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dC);
3423
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dE);
3334
3424
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3335
3425
  var styleProps = {
3336
3426
  size: !size && isInsideButton ? 'medium' : size,
@@ -3366,7 +3456,7 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
3366
3456
  });
3367
3457
  IconMessages.displayName = 'IconMessages';
3368
3458
 
3369
- var _excluded$dB = ["testId", "size", "color", "style", "variant"];
3459
+ var _excluded$dD = ["testId", "size", "color", "style", "variant"];
3370
3460
  var IconMicrophone = React.forwardRef(function (_ref, ref) {
3371
3461
  var _ref$testId = _ref.testId,
3372
3462
  testId = _ref$testId === void 0 ? 'icon-microphone' : _ref$testId,
@@ -3375,7 +3465,7 @@ var IconMicrophone = React.forwardRef(function (_ref, ref) {
3375
3465
  style = _ref.style,
3376
3466
  _ref$variant = _ref.variant,
3377
3467
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3378
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dB);
3468
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dD);
3379
3469
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3380
3470
  var styleProps = {
3381
3471
  size: !size && isInsideButton ? 'medium' : size,
@@ -3425,7 +3515,7 @@ var IconMicrophone = React.forwardRef(function (_ref, ref) {
3425
3515
  });
3426
3516
  IconMicrophone.displayName = 'IconMicrophone';
3427
3517
 
3428
- var _excluded$dA = ["testId", "size", "color", "style", "variant"];
3518
+ var _excluded$dC = ["testId", "size", "color", "style", "variant"];
3429
3519
  var IconMobile = React.forwardRef(function (_ref, ref) {
3430
3520
  var _ref$testId = _ref.testId,
3431
3521
  testId = _ref$testId === void 0 ? 'icon-mobile' : _ref$testId,
@@ -3434,7 +3524,7 @@ var IconMobile = React.forwardRef(function (_ref, ref) {
3434
3524
  style = _ref.style,
3435
3525
  _ref$variant = _ref.variant,
3436
3526
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3437
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dA);
3527
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dC);
3438
3528
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3439
3529
  var styleProps = {
3440
3530
  size: !size && isInsideButton ? 'medium' : size,
@@ -3470,7 +3560,7 @@ var IconMobile = React.forwardRef(function (_ref, ref) {
3470
3560
  });
3471
3561
  IconMobile.displayName = 'IconMobile';
3472
3562
 
3473
- var _excluded$dz = ["testId", "size", "color", "style", "variant"];
3563
+ var _excluded$dB = ["testId", "size", "color", "style", "variant"];
3474
3564
  var IconPhone = React.forwardRef(function (_ref, ref) {
3475
3565
  var _ref$testId = _ref.testId,
3476
3566
  testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
@@ -3479,7 +3569,7 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
3479
3569
  style = _ref.style,
3480
3570
  _ref$variant = _ref.variant,
3481
3571
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3482
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dz);
3572
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dB);
3483
3573
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3484
3574
  var styleProps = {
3485
3575
  size: !size && isInsideButton ? 'medium' : size,
@@ -3515,7 +3605,7 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
3515
3605
  });
3516
3606
  IconPhone.displayName = 'IconPhone';
3517
3607
 
3518
- var _excluded$dy = ["testId", "size", "color", "style", "variant"];
3608
+ var _excluded$dA = ["testId", "size", "color", "style", "variant"];
3519
3609
  var IconVideo = React.forwardRef(function (_ref, ref) {
3520
3610
  var _ref$testId = _ref.testId,
3521
3611
  testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
@@ -3524,7 +3614,7 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
3524
3614
  style = _ref.style,
3525
3615
  _ref$variant = _ref.variant,
3526
3616
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3527
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dy);
3617
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dA);
3528
3618
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3529
3619
  var styleProps = {
3530
3620
  size: !size && isInsideButton ? 'medium' : size,
@@ -3567,7 +3657,7 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
3567
3657
  });
3568
3658
  IconVideo.displayName = 'IconVideo';
3569
3659
 
3570
- var _excluded$dx = ["testId", "size", "color", "style", "variant"];
3660
+ var _excluded$dz = ["testId", "size", "color", "style", "variant"];
3571
3661
  var IconWifi = React.forwardRef(function (_ref, ref) {
3572
3662
  var _ref$testId = _ref.testId,
3573
3663
  testId = _ref$testId === void 0 ? 'icon-wifi' : _ref$testId,
@@ -3576,7 +3666,7 @@ var IconWifi = React.forwardRef(function (_ref, ref) {
3576
3666
  style = _ref.style,
3577
3667
  _ref$variant = _ref.variant,
3578
3668
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3579
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dx);
3669
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dz);
3580
3670
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3581
3671
  var styleProps = {
3582
3672
  size: !size && isInsideButton ? 'medium' : size,
@@ -3612,7 +3702,7 @@ var IconWifi = React.forwardRef(function (_ref, ref) {
3612
3702
  });
3613
3703
  IconWifi.displayName = 'IconWifi';
3614
3704
 
3615
- var _excluded$dw = ["testId", "size", "color", "style", "variant"];
3705
+ var _excluded$dy = ["testId", "size", "color", "style", "variant"];
3616
3706
  var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3617
3707
  var _ref$testId = _ref.testId,
3618
3708
  testId = _ref$testId === void 0 ? 'icon-wifi-slash' : _ref$testId,
@@ -3621,7 +3711,7 @@ var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3621
3711
  style = _ref.style,
3622
3712
  _ref$variant = _ref.variant,
3623
3713
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3624
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dw);
3714
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dy);
3625
3715
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3626
3716
  var styleProps = {
3627
3717
  size: !size && isInsideButton ? 'medium' : size,
@@ -3657,7 +3747,7 @@ var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3657
3747
  });
3658
3748
  IconWifiSlash.displayName = 'IconWifiSlash';
3659
3749
 
3660
- var _excluded$dv = ["testId", "size", "color", "style", "variant"];
3750
+ var _excluded$dx = ["testId", "size", "color", "style", "variant"];
3661
3751
  var IconBarsH = React.forwardRef(function (_ref, ref) {
3662
3752
  var _ref$testId = _ref.testId,
3663
3753
  testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
@@ -3666,7 +3756,7 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
3666
3756
  style = _ref.style,
3667
3757
  _ref$variant = _ref.variant,
3668
3758
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3669
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dv);
3759
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dx);
3670
3760
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3671
3761
  var styleProps = {
3672
3762
  size: !size && isInsideButton ? 'medium' : size,
@@ -3704,7 +3794,7 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
3704
3794
  });
3705
3795
  IconBarsH.displayName = 'IconBarsH';
3706
3796
 
3707
- var _excluded$du = ["testId", "size", "color", "style", "variant"];
3797
+ var _excluded$dw = ["testId", "size", "color", "style", "variant"];
3708
3798
  var IconBold = React.forwardRef(function (_ref, ref) {
3709
3799
  var _ref$testId = _ref.testId,
3710
3800
  testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
@@ -3713,7 +3803,7 @@ var IconBold = React.forwardRef(function (_ref, ref) {
3713
3803
  style = _ref.style,
3714
3804
  _ref$variant = _ref.variant,
3715
3805
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3716
- props = _objectWithoutPropertiesLoose(_ref, _excluded$du);
3806
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dw);
3717
3807
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3718
3808
  var styleProps = {
3719
3809
  size: !size && isInsideButton ? 'medium' : size,
@@ -3749,7 +3839,7 @@ var IconBold = React.forwardRef(function (_ref, ref) {
3749
3839
  });
3750
3840
  IconBold.displayName = 'IconBold';
3751
3841
 
3752
- var _excluded$dt = ["testId", "size", "color", "style", "variant"];
3842
+ var _excluded$dv = ["testId", "size", "color", "style", "variant"];
3753
3843
  var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3754
3844
  var _ref$testId = _ref.testId,
3755
3845
  testId = _ref$testId === void 0 ? 'icon-check-circle' : _ref$testId,
@@ -3758,7 +3848,7 @@ var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3758
3848
  style = _ref.style,
3759
3849
  _ref$variant = _ref.variant,
3760
3850
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3761
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dt);
3851
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dv);
3762
3852
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3763
3853
  var styleProps = {
3764
3854
  size: !size && isInsideButton ? 'medium' : size,
@@ -3794,7 +3884,7 @@ var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3794
3884
  });
3795
3885
  IconCheckCircle.displayName = 'IconCheckCircle';
3796
3886
 
3797
- var _excluded$ds = ["testId", "size", "color", "style", "variant"];
3887
+ var _excluded$du = ["testId", "size", "color", "style", "variant"];
3798
3888
  var IconCog = React.forwardRef(function (_ref, ref) {
3799
3889
  var _ref$testId = _ref.testId,
3800
3890
  testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
@@ -3803,7 +3893,7 @@ var IconCog = React.forwardRef(function (_ref, ref) {
3803
3893
  style = _ref.style,
3804
3894
  _ref$variant = _ref.variant,
3805
3895
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3806
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ds);
3896
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$du);
3807
3897
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3808
3898
  var styleProps = {
3809
3899
  size: !size && isInsideButton ? 'medium' : size,
@@ -3853,7 +3943,7 @@ var IconCog = React.forwardRef(function (_ref, ref) {
3853
3943
  });
3854
3944
  IconCog.displayName = 'IconCog';
3855
3945
 
3856
- var _excluded$dr = ["testId", "size", "color", "style", "variant"];
3946
+ var _excluded$dt = ["testId", "size", "color", "style", "variant"];
3857
3947
  var IconCopy = React.forwardRef(function (_ref, ref) {
3858
3948
  var _ref$testId = _ref.testId,
3859
3949
  testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
@@ -3862,7 +3952,7 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
3862
3952
  style = _ref.style,
3863
3953
  _ref$variant = _ref.variant,
3864
3954
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3865
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dr);
3955
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dt);
3866
3956
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3867
3957
  var styleProps = {
3868
3958
  size: !size && isInsideButton ? 'medium' : size,
@@ -3912,7 +4002,7 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
3912
4002
  });
3913
4003
  IconCopy.displayName = 'IconCopy';
3914
4004
 
3915
- var _excluded$dq = ["testId", "size", "color", "style", "variant"];
4005
+ var _excluded$ds = ["testId", "size", "color", "style", "variant"];
3916
4006
  var IconEdit = React.forwardRef(function (_ref, ref) {
3917
4007
  var _ref$testId = _ref.testId,
3918
4008
  testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
@@ -3921,7 +4011,7 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
3921
4011
  style = _ref.style,
3922
4012
  _ref$variant = _ref.variant,
3923
4013
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3924
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dq);
4014
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ds);
3925
4015
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3926
4016
  var styleProps = {
3927
4017
  size: !size && isInsideButton ? 'medium' : size,
@@ -3957,7 +4047,7 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
3957
4047
  });
3958
4048
  IconEdit.displayName = 'IconEdit';
3959
4049
 
3960
- var _excluded$dp = ["testId", "size", "color", "style", "variant"];
4050
+ var _excluded$dr = ["testId", "size", "color", "style", "variant"];
3961
4051
  var IconEllipsis = React.forwardRef(function (_ref, ref) {
3962
4052
  var _ref$testId = _ref.testId,
3963
4053
  testId = _ref$testId === void 0 ? 'icon-ellipsis' : _ref$testId,
@@ -3966,7 +4056,7 @@ var IconEllipsis = React.forwardRef(function (_ref, ref) {
3966
4056
  style = _ref.style,
3967
4057
  _ref$variant = _ref.variant,
3968
4058
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3969
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dp);
4059
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dr);
3970
4060
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3971
4061
  var styleProps = {
3972
4062
  size: !size && isInsideButton ? 'medium' : size,
@@ -4004,7 +4094,7 @@ var IconEllipsis = React.forwardRef(function (_ref, ref) {
4004
4094
  });
4005
4095
  IconEllipsis.displayName = 'IconEllipsis';
4006
4096
 
4007
- var _excluded$do = ["testId", "size", "color", "style", "variant"];
4097
+ var _excluded$dq = ["testId", "size", "color", "style", "variant"];
4008
4098
  var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4009
4099
  var _ref$testId = _ref.testId,
4010
4100
  testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
@@ -4013,7 +4103,7 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4013
4103
  style = _ref.style,
4014
4104
  _ref$variant = _ref.variant,
4015
4105
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4016
- props = _objectWithoutPropertiesLoose(_ref, _excluded$do);
4106
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dq);
4017
4107
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4018
4108
  var styleProps = {
4019
4109
  size: !size && isInsideButton ? 'medium' : size,
@@ -4051,7 +4141,7 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4051
4141
  });
4052
4142
  IconEllipsisV.displayName = 'IconEllipsisV';
4053
4143
 
4054
- var _excluded$dn = ["testId", "size", "color", "style", "variant"];
4144
+ var _excluded$dp = ["testId", "size", "color", "style", "variant"];
4055
4145
  var IconExternalLink = React.forwardRef(function (_ref, ref) {
4056
4146
  var _ref$testId = _ref.testId,
4057
4147
  testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
@@ -4060,7 +4150,7 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
4060
4150
  style = _ref.style,
4061
4151
  _ref$variant = _ref.variant,
4062
4152
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4063
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dn);
4153
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dp);
4064
4154
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4065
4155
  var styleProps = {
4066
4156
  size: !size && isInsideButton ? 'medium' : size,
@@ -4098,7 +4188,7 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
4098
4188
  });
4099
4189
  IconExternalLink.displayName = 'IconExternalLink';
4100
4190
 
4101
- var _excluded$dm = ["testId", "size", "color", "style", "variant"];
4191
+ var _excluded$do = ["testId", "size", "color", "style", "variant"];
4102
4192
  var IconEye = React.forwardRef(function (_ref, ref) {
4103
4193
  var _ref$testId = _ref.testId,
4104
4194
  testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
@@ -4107,7 +4197,7 @@ var IconEye = React.forwardRef(function (_ref, ref) {
4107
4197
  style = _ref.style,
4108
4198
  _ref$variant = _ref.variant,
4109
4199
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4110
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dm);
4200
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$do);
4111
4201
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4112
4202
  var styleProps = {
4113
4203
  size: !size && isInsideButton ? 'medium' : size,
@@ -4143,7 +4233,7 @@ var IconEye = React.forwardRef(function (_ref, ref) {
4143
4233
  });
4144
4234
  IconEye.displayName = 'IconEye';
4145
4235
 
4146
- var _excluded$dl = ["testId", "size", "color", "style", "variant"];
4236
+ var _excluded$dn = ["testId", "size", "color", "style", "variant"];
4147
4237
  var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4148
4238
  var _ref$testId = _ref.testId,
4149
4239
  testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
@@ -4152,7 +4242,7 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4152
4242
  style = _ref.style,
4153
4243
  _ref$variant = _ref.variant,
4154
4244
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4155
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dl);
4245
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dn);
4156
4246
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4157
4247
  var styleProps = {
4158
4248
  size: !size && isInsideButton ? 'medium' : size,
@@ -4202,7 +4292,7 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4202
4292
  });
4203
4293
  IconEyeSlash.displayName = 'IconEyeSlash';
4204
4294
 
4205
- var _excluded$dk = ["testId", "size", "color", "style", "variant"];
4295
+ var _excluded$dm = ["testId", "size", "color", "style", "variant"];
4206
4296
  var IconFile = React.forwardRef(function (_ref, ref) {
4207
4297
  var _ref$testId = _ref.testId,
4208
4298
  testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
@@ -4211,7 +4301,7 @@ var IconFile = React.forwardRef(function (_ref, ref) {
4211
4301
  style = _ref.style,
4212
4302
  _ref$variant = _ref.variant,
4213
4303
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4214
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dk);
4304
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dm);
4215
4305
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4216
4306
  var styleProps = {
4217
4307
  size: !size && isInsideButton ? 'medium' : size,
@@ -4261,7 +4351,7 @@ var IconFile = React.forwardRef(function (_ref, ref) {
4261
4351
  });
4262
4352
  IconFile.displayName = 'IconFile';
4263
4353
 
4264
- var _excluded$dj = ["testId", "size", "color", "style", "variant"];
4354
+ var _excluded$dl = ["testId", "size", "color", "style", "variant"];
4265
4355
  var IconGripVertical = React.forwardRef(function (_ref, ref) {
4266
4356
  var _ref$testId = _ref.testId,
4267
4357
  testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
@@ -4270,7 +4360,7 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
4270
4360
  style = _ref.style,
4271
4361
  _ref$variant = _ref.variant,
4272
4362
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4273
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dj);
4363
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dl);
4274
4364
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4275
4365
  var styleProps = {
4276
4366
  size: !size && isInsideButton ? 'medium' : size,
@@ -4306,7 +4396,7 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
4306
4396
  });
4307
4397
  IconGripVertical.displayName = 'IconGripVertical';
4308
4398
 
4309
- var _excluded$di = ["testId", "size", "color", "style", "variant"];
4399
+ var _excluded$dk = ["testId", "size", "color", "style", "variant"];
4310
4400
  var IconHouse = React.forwardRef(function (_ref, ref) {
4311
4401
  var _ref$testId = _ref.testId,
4312
4402
  testId = _ref$testId === void 0 ? 'icon-house' : _ref$testId,
@@ -4315,7 +4405,7 @@ var IconHouse = React.forwardRef(function (_ref, ref) {
4315
4405
  style = _ref.style,
4316
4406
  _ref$variant = _ref.variant,
4317
4407
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4318
- props = _objectWithoutPropertiesLoose(_ref, _excluded$di);
4408
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dk);
4319
4409
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4320
4410
  var styleProps = {
4321
4411
  size: !size && isInsideButton ? 'medium' : size,
@@ -4351,7 +4441,7 @@ var IconHouse = React.forwardRef(function (_ref, ref) {
4351
4441
  });
4352
4442
  IconHouse.displayName = 'IconHouse';
4353
4443
 
4354
- var _excluded$dh = ["testId", "size", "color", "style", "variant"];
4444
+ var _excluded$dj = ["testId", "size", "color", "style", "variant"];
4355
4445
  var IconImage = React.forwardRef(function (_ref, ref) {
4356
4446
  var _ref$testId = _ref.testId,
4357
4447
  testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
@@ -4360,7 +4450,7 @@ var IconImage = React.forwardRef(function (_ref, ref) {
4360
4450
  style = _ref.style,
4361
4451
  _ref$variant = _ref.variant,
4362
4452
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4363
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dh);
4453
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dj);
4364
4454
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4365
4455
  var styleProps = {
4366
4456
  size: !size && isInsideButton ? 'medium' : size,
@@ -4396,7 +4486,52 @@ var IconImage = React.forwardRef(function (_ref, ref) {
4396
4486
  });
4397
4487
  IconImage.displayName = 'IconImage';
4398
4488
 
4399
- var _excluded$dg = ["testId", "size", "color", "style", "variant"];
4489
+ var _excluded$di = ["testId", "size", "color", "style", "variant"];
4490
+ var IconInputText = React.forwardRef(function (_ref, ref) {
4491
+ var _ref$testId = _ref.testId,
4492
+ testId = _ref$testId === void 0 ? 'icon-input-text' : _ref$testId,
4493
+ size = _ref.size,
4494
+ color = _ref.color,
4495
+ style = _ref.style,
4496
+ _ref$variant = _ref.variant,
4497
+ variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4498
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$di);
4499
+ var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4500
+ var styleProps = {
4501
+ size: !size && isInsideButton ? 'medium' : size,
4502
+ color: color,
4503
+ style: style
4504
+ };
4505
+ if (variant === 'solid') {
4506
+ return React__default["default"].createElement("svg", _extends({
4507
+ style: getIconStyles(styleProps),
4508
+ "data-testid": testId,
4509
+ ref: ref
4510
+ }, props, {
4511
+ xmlns: "http://www.w3.org/2000/svg",
4512
+ fill: "none",
4513
+ viewBox: "0 0 24 24"
4514
+ }), React__default["default"].createElement("path", {
4515
+ fill: "currentColor",
4516
+ d: "M21.333 6.667v10.666H2.667V6.667h18.666ZM2.667 4A2.67 2.67 0 0 0 0 6.667v10.666A2.67 2.67 0 0 0 2.667 20h18.666A2.67 2.67 0 0 0 24 17.333V6.667A2.67 2.67 0 0 0 21.333 4H2.667Zm2 6.667V15c0 .554.446 1 1 1s1-.446 1-1v-1H8v1c0 .554.446 1 1 1s1-.446 1-1v-4.333A2.67 2.67 0 0 0 7.333 8a2.67 2.67 0 0 0-2.666 2.667ZM8 12H6.667v-1.333c0-.367.3-.667.666-.667.367 0 .667.3.667.667V12Zm4-3v6c0 .554.446 1 1 1h2.167a2.498 2.498 0 0 0 1.812-4.22c.225-.376.354-.813.354-1.28 0-1.38-1.12-2.5-2.5-2.5H13c-.554 0-1 .446-1 1Zm3.333 1.5c0 .275-.225.5-.5.5H14v-1h.833c.275 0 .5.225.5.5ZM14 14v-1h1.167c.275 0 .5.225.5.5s-.225.5-.5.5H14Z"
4517
+ }));
4518
+ }
4519
+ return React__default["default"].createElement("svg", _extends({
4520
+ style: getIconStyles(styleProps),
4521
+ "data-testid": testId,
4522
+ ref: ref
4523
+ }, props, {
4524
+ xmlns: "http://www.w3.org/2000/svg",
4525
+ fill: "none",
4526
+ viewBox: "0 0 24 24"
4527
+ }), React__default["default"].createElement("path", {
4528
+ fill: "currentColor",
4529
+ d: "M21.333 5.333c.738 0 1.334.596 1.334 1.334v10.666c0 .738-.596 1.334-1.334 1.334H2.667a1.332 1.332 0 0 1-1.334-1.334V6.667c0-.738.596-1.334 1.334-1.334h18.666ZM2.667 4A2.67 2.67 0 0 0 0 6.667v10.666A2.67 2.67 0 0 0 2.667 20h18.666A2.67 2.67 0 0 0 24 17.333V6.667A2.67 2.67 0 0 0 21.333 4H2.667ZM4 10.667v4.666c0 .367.3.667.667.667.366 0 .666-.3.666-.667v-2H8v2c0 .367.3.667.667.667.366 0 .666-.3.666-.667v-4.666A2.67 2.67 0 0 0 6.667 8 2.67 2.67 0 0 0 4 10.667ZM8 12H5.333v-1.333c0-.738.596-1.334 1.334-1.334.737 0 1.333.596 1.333 1.334V12Zm3.333-3.333v6.666c0 .367.3.667.667.667h2.667a2.335 2.335 0 0 0 1.45-4.162A2.335 2.335 0 0 0 14.334 8H12c-.367 0-.667.3-.667.667Zm4 1.666c0 .554-.446 1-1 1h-1.666v-2h1.666c.554 0 1 .446 1 1Zm-2.666 4.334v-2h2c.554 0 1 .446 1 1s-.446 1-1 1h-2Z"
4530
+ }));
4531
+ });
4532
+ IconInputText.displayName = 'IconInputText';
4533
+
4534
+ var _excluded$dh = ["testId", "size", "color", "style", "variant"];
4400
4535
  var IconItalic = React.forwardRef(function (_ref, ref) {
4401
4536
  var _ref$testId = _ref.testId,
4402
4537
  testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
@@ -4405,7 +4540,7 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
4405
4540
  style = _ref.style,
4406
4541
  _ref$variant = _ref.variant,
4407
4542
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4408
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dg);
4543
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dh);
4409
4544
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4410
4545
  var styleProps = {
4411
4546
  size: !size && isInsideButton ? 'medium' : size,
@@ -4441,7 +4576,7 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
4441
4576
  });
4442
4577
  IconItalic.displayName = 'IconItalic';
4443
4578
 
4444
- var _excluded$df = ["testId", "size", "color", "style", "variant"];
4579
+ var _excluded$dg = ["testId", "size", "color", "style", "variant"];
4445
4580
  var IconLink = React.forwardRef(function (_ref, ref) {
4446
4581
  var _ref$testId = _ref.testId,
4447
4582
  testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
@@ -4450,7 +4585,7 @@ var IconLink = React.forwardRef(function (_ref, ref) {
4450
4585
  style = _ref.style,
4451
4586
  _ref$variant = _ref.variant,
4452
4587
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4453
- props = _objectWithoutPropertiesLoose(_ref, _excluded$df);
4588
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dg);
4454
4589
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4455
4590
  var styleProps = {
4456
4591
  size: !size && isInsideButton ? 'medium' : size,
@@ -4486,7 +4621,7 @@ var IconLink = React.forwardRef(function (_ref, ref) {
4486
4621
  });
4487
4622
  IconLink.displayName = 'IconLink';
4488
4623
 
4489
- var _excluded$de = ["testId", "size", "color", "style", "variant"];
4624
+ var _excluded$df = ["testId", "size", "color", "style", "variant"];
4490
4625
  var IconList = React.forwardRef(function (_ref, ref) {
4491
4626
  var _ref$testId = _ref.testId,
4492
4627
  testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
@@ -4495,7 +4630,7 @@ var IconList = React.forwardRef(function (_ref, ref) {
4495
4630
  style = _ref.style,
4496
4631
  _ref$variant = _ref.variant,
4497
4632
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4498
- props = _objectWithoutPropertiesLoose(_ref, _excluded$de);
4633
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$df);
4499
4634
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4500
4635
  var styleProps = {
4501
4636
  size: !size && isInsideButton ? 'medium' : size,
@@ -4538,7 +4673,7 @@ var IconList = React.forwardRef(function (_ref, ref) {
4538
4673
  });
4539
4674
  IconList.displayName = 'IconList';
4540
4675
 
4541
- var _excluded$dd = ["testId", "size", "color", "style", "variant"];
4676
+ var _excluded$de = ["testId", "size", "color", "style", "variant"];
4542
4677
  var IconListOl = React.forwardRef(function (_ref, ref) {
4543
4678
  var _ref$testId = _ref.testId,
4544
4679
  testId = _ref$testId === void 0 ? 'icon-list-ol' : _ref$testId,
@@ -4547,7 +4682,7 @@ var IconListOl = React.forwardRef(function (_ref, ref) {
4547
4682
  style = _ref.style,
4548
4683
  _ref$variant = _ref.variant,
4549
4684
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4550
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dd);
4685
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$de);
4551
4686
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4552
4687
  var styleProps = {
4553
4688
  size: !size && isInsideButton ? 'medium' : size,
@@ -4583,6 +4718,51 @@ var IconListOl = React.forwardRef(function (_ref, ref) {
4583
4718
  });
4584
4719
  IconListOl.displayName = 'IconListOl';
4585
4720
 
4721
+ var _excluded$dd = ["testId", "size", "color", "style", "variant"];
4722
+ var IconListRadio = React.forwardRef(function (_ref, ref) {
4723
+ var _ref$testId = _ref.testId,
4724
+ testId = _ref$testId === void 0 ? 'icon-list-radio' : _ref$testId,
4725
+ size = _ref.size,
4726
+ color = _ref.color,
4727
+ style = _ref.style,
4728
+ _ref$variant = _ref.variant,
4729
+ variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4730
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dd);
4731
+ var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4732
+ var styleProps = {
4733
+ size: !size && isInsideButton ? 'medium' : size,
4734
+ color: color,
4735
+ style: style
4736
+ };
4737
+ if (variant === 'solid') {
4738
+ return React__default["default"].createElement("svg", _extends({
4739
+ style: getIconStyles(styleProps),
4740
+ "data-testid": testId,
4741
+ ref: ref
4742
+ }, props, {
4743
+ xmlns: "http://www.w3.org/2000/svg",
4744
+ fill: "none",
4745
+ viewBox: "0 0 24 24"
4746
+ }), React__default["default"].createElement("path", {
4747
+ fill: "currentColor",
4748
+ d: "M3 7.5c1.655 0 3-1.345 3-3s-1.345-3-3-3-3 1.345-3 3 1.345 3 3 3ZM10.5 3C9.67 3 9 3.67 9 4.5S9.67 6 10.5 6h12c.83 0 1.5-.67 1.5-1.5S23.33 3 22.5 3h-12Zm0 7.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-12Zm0 7.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-12Zm-8.625 1.5c0-.623.502-1.125 1.125-1.125s1.125.502 1.125 1.125S3.623 20.625 3 20.625A1.122 1.122 0 0 1 1.875 19.5ZM6 19.5c0-1.655-1.345-3-3-3s-3 1.345-3 3 1.345 3 3 3 3-1.345 3-3Zm-3-8.625c.623 0 1.125.502 1.125 1.125S3.623 13.125 3 13.125A1.122 1.122 0 0 1 1.875 12c0-.623.502-1.125 1.125-1.125ZM3 15c1.655 0 3-1.345 3-3S4.655 9 3 9s-3 1.345-3 3 1.345 3 3 3Z"
4749
+ }));
4750
+ }
4751
+ return React__default["default"].createElement("svg", _extends({
4752
+ style: getIconStyles(styleProps),
4753
+ "data-testid": testId,
4754
+ ref: ref
4755
+ }, props, {
4756
+ xmlns: "http://www.w3.org/2000/svg",
4757
+ fill: "none",
4758
+ viewBox: "0 0 24 24"
4759
+ }), React__default["default"].createElement("path", {
4760
+ fill: "currentColor",
4761
+ d: "M3.586 3.117 1.617 5.086A1.52 1.52 0 0 1 1.5 4.5C1.5 3.67 2.17 3 3 3c.206 0 .408.042.586.117Zm.797.797c.075.178.117.38.117.586C4.5 5.33 3.83 6 3 6a1.52 1.52 0 0 1-.586-.117l1.969-1.969ZM6 4.5c0-1.655-1.345-3-3-3s-3 1.345-3 3 1.345 3 3 3 3-1.345 3-3Zm3 0c0 .412.338.75.75.75h13.5c.413 0 .75-.338.75-.75a.752.752 0 0 0-.75-.75H9.75A.752.752 0 0 0 9 4.5ZM9 12c0 .412.338.75.75.75h13.5c.413 0 .75-.338.75-.75a.752.752 0 0 0-.75-.75H9.75A.752.752 0 0 0 9 12Zm0 7.5c0 .412.338.75.75.75h13.5c.413 0 .75-.338.75-.75a.752.752 0 0 0-.75-.75H9.75a.752.752 0 0 0-.75.75Zm-6-6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5ZM3 9c-1.655 0-3 1.345-3 3s1.345 3 3 3 3-1.345 3-3-1.345-3-3-3Zm0 12c-.83 0-1.5-.67-1.5-1.5S2.17 18 3 18s1.5.67 1.5 1.5S3.83 21 3 21Zm0-4.5c-1.655 0-3 1.345-3 3s1.345 3 3 3 3-1.345 3-3-1.345-3-3-3Z"
4762
+ }));
4763
+ });
4764
+ IconListRadio.displayName = 'IconListRadio';
4765
+
4586
4766
  var _excluded$dc = ["testId", "size", "color", "style", "variant"];
4587
4767
  var IconLock = React.forwardRef(function (_ref, ref) {
4588
4768
  var _ref$testId = _ref.testId,
@@ -64288,6 +64468,7 @@ exports.IconAnalytics = IconAnalytics;
64288
64468
  exports.IconArrowDown = IconArrowDown;
64289
64469
  exports.IconArrowDownWideShort = IconArrowDownWideShort;
64290
64470
  exports.IconArrowLeft = IconArrowLeft;
64471
+ exports.IconArrowLeftRight = IconArrowLeftRight;
64291
64472
  exports.IconArrowRight = IconArrowRight;
64292
64473
  exports.IconArrowToTop = IconArrowToTop;
64293
64474
  exports.IconArrowTurnDownRight = IconArrowTurnDownRight;
@@ -64387,12 +64568,15 @@ exports.IconHatChef = IconHatChef;
64387
64568
  exports.IconHouse = IconHouse;
64388
64569
  exports.IconImage = IconImage;
64389
64570
  exports.IconInfoCircle = IconInfoCircle;
64571
+ exports.IconInputText = IconInputText;
64390
64572
  exports.IconIslandTropical = IconIslandTropical;
64391
64573
  exports.IconItalic = IconItalic;
64574
+ exports.IconLanguage = IconLanguage;
64392
64575
  exports.IconLaptopSearch = IconLaptopSearch;
64393
64576
  exports.IconLink = IconLink;
64394
64577
  exports.IconList = IconList;
64395
64578
  exports.IconListOl = IconListOl;
64579
+ exports.IconListRadio = IconListRadio;
64396
64580
  exports.IconLock = IconLock;
64397
64581
  exports.IconMagic = IconMagic;
64398
64582
  exports.IconMapMarker = IconMapMarker;