@7shifts/sous-chef 4.7.1 → 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.
Files changed (72) hide show
  1. package/dist/empty_states/EmptyState/EmptyState.d.ts +3 -0
  2. package/dist/empty_states/Paywall/Paywall.d.ts +3 -0
  3. package/dist/feedback/CircularProgress/CircularProgress.d.ts +3 -0
  4. package/dist/feedback/InlineBanner/InlineBanner.d.ts +3 -0
  5. package/dist/feedback/MicroBanner/MicroBanner.d.ts +3 -0
  6. package/dist/feedback/PersistentBanner/PersistentBanner.d.ts +3 -0
  7. package/dist/feedback/ProgressBar/ProgressBar.d.ts +3 -0
  8. package/dist/feedback/Skeleton/Skeleton.d.ts +3 -0
  9. package/dist/forms/ColorField/ColorField.d.ts +3 -0
  10. package/dist/forms/FormFeedback/FormFeedback.d.ts +3 -0
  11. package/dist/forms/FormFooter/FormFooter.d.ts +3 -0
  12. package/dist/forms/FormSection/FormSection.d.ts +3 -0
  13. package/dist/forms/PhoneField/PhoneField.d.ts +3 -0
  14. package/dist/forms/TextField/TextField.d.ts +3 -1
  15. package/dist/forms/WeekSelectField/WeekSelectField.d.ts +3 -0
  16. package/dist/icons/components/arrows/IconArrowLeftRight.d.ts +10 -0
  17. package/dist/icons/components/arrows/index.d.ts +1 -0
  18. package/dist/icons/components/communication/IconLanguage.d.ts +10 -0
  19. package/dist/icons/components/communication/index.d.ts +1 -0
  20. package/dist/icons/components/controls/IconInputText.d.ts +10 -0
  21. package/dist/icons/components/controls/IconListRadio.d.ts +10 -0
  22. package/dist/icons/components/controls/index.d.ts +2 -0
  23. package/dist/index.css +1 -1
  24. package/dist/index.css.map +1 -1
  25. package/dist/index.js +433 -152
  26. package/dist/index.js.map +1 -1
  27. package/dist/index.modern.js +430 -153
  28. package/dist/index.modern.js.map +1 -1
  29. package/dist/layout/Card/Card.d.ts +3 -0
  30. package/dist/layout/Page/Page.d.ts +3 -0
  31. package/dist/lists/Accordion/Accordion.d.ts +3 -0
  32. package/dist/lists/ActionList/ActionList.d.ts +3 -0
  33. package/dist/lists/DataTable/DataTable.d.ts +3 -0
  34. package/dist/media/Avatar/Avatar.d.ts +3 -0
  35. package/dist/media/Badge/Badge.d.ts +4 -1
  36. package/dist/media/Chip/Chip.d.ts +3 -0
  37. package/dist/media/Pill/Pill.d.ts +3 -0
  38. package/dist/navigation/Breadcrumbs/Breadcrumbs.d.ts +3 -0
  39. package/dist/navigation/PrimaryNav/PrimaryNav.d.ts +3 -0
  40. package/dist/navigation/Tabs/Tabs.d.ts +3 -0
  41. package/dist/overlay/Calendar/Calendar.d.ts +3 -1
  42. package/dist/overlay/Dropdown/Dropdown.d.ts +3 -0
  43. package/dist/overlay/HintModal/HintModal.d.ts +3 -0
  44. package/dist/overlay/Modal/Modal.d.ts +3 -0
  45. package/dist/overlay/Popover/Popover.d.ts +3 -0
  46. package/dist/overlay/Tooltip/Tooltip.d.ts +3 -0
  47. package/llms-instructions/guidelines/AsyncSelectField.guidelines.md +20 -0
  48. package/llms-instructions/guidelines/Avatar.guidelines.md +1 -0
  49. package/llms-instructions/guidelines/Breadcrumbs.guidelines.md +1 -0
  50. package/llms-instructions/guidelines/CheckboxField.guidelines.md +20 -0
  51. package/llms-instructions/guidelines/ColorField.guidelines.md +18 -0
  52. package/llms-instructions/guidelines/CurrencyField.guidelines.md +28 -0
  53. package/llms-instructions/guidelines/DateField.guidelines.md +22 -0
  54. package/llms-instructions/guidelines/DateRangeField.guidelines.md +21 -0
  55. package/llms-instructions/guidelines/MultiSelectField.guidelines.md +22 -0
  56. package/llms-instructions/guidelines/NumberField.guidelines.md +29 -0
  57. package/llms-instructions/guidelines/PaginationControls.guidelines.md +1 -0
  58. package/llms-instructions/guidelines/PasswordField.guidelines.md +20 -0
  59. package/llms-instructions/guidelines/PercentageField.guidelines.md +22 -0
  60. package/llms-instructions/guidelines/PhoneField.guidelines.md +23 -0
  61. package/llms-instructions/guidelines/PillSelectField.guidelines.md +22 -0
  62. package/llms-instructions/guidelines/RadioGroupField.guidelines.md +20 -0
  63. package/llms-instructions/guidelines/SelectField.guidelines.md +24 -0
  64. package/llms-instructions/guidelines/Tabs.guidelines.md +4 -0
  65. package/llms-instructions/guidelines/TextAreaField.guidelines.md +25 -0
  66. package/llms-instructions/guidelines/TextField.guidelines.md +22 -0
  67. package/llms-instructions/guidelines/TimeField.guidelines.md +23 -0
  68. package/llms-instructions/guidelines/TimeRangeField.guidelines.md +19 -0
  69. package/llms-instructions/guidelines/WeekField.guidelines.md +20 -0
  70. package/llms-instructions/guidelines/WeekSelectField.guidelines.md +1 -0
  71. package/llms-instructions/llms-components.md +80 -0
  72. package/package.json +1 -1
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, {
@@ -953,6 +953,9 @@ var TooltipElement = function TooltipElement(_ref, forwardedRef) {
953
953
  ref: containerRef
954
954
  }), children, overlayElement);
955
955
  };
956
+ /**
957
+ * Tooltip is a small, non-interactive label that appears on hover to provide a brief explanation. It is the lightest overlay in the system — low interruption, no interaction, disappears when the user moves away. Its job is to add micro-clarity: explaining an icon, defining an abbreviation, or surfacing supplementary detail without cluttering the UI.
958
+ */
956
959
  var Tooltip = React.forwardRef(TooltipElement);
957
960
  var isTooltipCompatible = function isTooltipCompatible(element) {
958
961
  return React__default["default"].isValidElement(element) && typeof element.type === 'string';
@@ -1011,7 +1014,7 @@ var COMPONENT_NAMES = {
1011
1014
  BUTTON: 'BUTTON'
1012
1015
  };
1013
1016
 
1014
- 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"],
1015
1018
  _excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
1016
1019
  var ButtonComponent = function ButtonComponent(_ref, ref) {
1017
1020
  var _classnames;
@@ -1036,7 +1039,7 @@ var ButtonComponent = function ButtonComponent(_ref, ref) {
1036
1039
  target = _ref$target === void 0 ? BUTTON_TARGETS.SELF : _ref$target,
1037
1040
  testId = _ref.testId,
1038
1041
  size = _ref.size,
1039
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$ej);
1042
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$en);
1040
1043
  var _getPositionProps = getPositionProps(rest),
1041
1044
  positionProps = _getPositionProps.positionProps,
1042
1045
  otherProps = _getPositionProps.otherProps;
@@ -1160,7 +1163,7 @@ var useIsInsideComponent = function useIsInsideComponent(parentComponentName) {
1160
1163
  return componentName === parentComponentName;
1161
1164
  };
1162
1165
 
1163
- var _excluded$ei = ["testId", "size", "color", "style", "variant"];
1166
+ var _excluded$em = ["testId", "size", "color", "style", "variant"];
1164
1167
  var IconArrowDown = React.forwardRef(function (_ref, ref) {
1165
1168
  var _ref$testId = _ref.testId,
1166
1169
  testId = _ref$testId === void 0 ? 'icon-arrow-down' : _ref$testId,
@@ -1169,7 +1172,7 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
1169
1172
  style = _ref.style,
1170
1173
  _ref$variant = _ref.variant,
1171
1174
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1172
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ei);
1175
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$em);
1173
1176
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1174
1177
  var styleProps = {
1175
1178
  size: !size && isInsideButton ? 'medium' : size,
@@ -1207,7 +1210,7 @@ var IconArrowDown = React.forwardRef(function (_ref, ref) {
1207
1210
  });
1208
1211
  IconArrowDown.displayName = 'IconArrowDown';
1209
1212
 
1210
- var _excluded$eh = ["testId", "size", "color", "style", "variant"];
1213
+ var _excluded$el = ["testId", "size", "color", "style", "variant"];
1211
1214
  var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1212
1215
  var _ref$testId = _ref.testId,
1213
1216
  testId = _ref$testId === void 0 ? 'icon-arrow-down-wide-short' : _ref$testId,
@@ -1216,7 +1219,7 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1216
1219
  style = _ref.style,
1217
1220
  _ref$variant = _ref.variant,
1218
1221
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1219
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eh);
1222
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$el);
1220
1223
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1221
1224
  var styleProps = {
1222
1225
  size: !size && isInsideButton ? 'medium' : size,
@@ -1252,7 +1255,7 @@ var IconArrowDownWideShort = React.forwardRef(function (_ref, ref) {
1252
1255
  });
1253
1256
  IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
1254
1257
 
1255
- var _excluded$eg = ["testId", "size", "color", "style", "variant"];
1258
+ var _excluded$ek = ["testId", "size", "color", "style", "variant"];
1256
1259
  var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1257
1260
  var _ref$testId = _ref.testId,
1258
1261
  testId = _ref$testId === void 0 ? 'icon-arrow-left' : _ref$testId,
@@ -1261,7 +1264,7 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1261
1264
  style = _ref.style,
1262
1265
  _ref$variant = _ref.variant,
1263
1266
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1264
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eg);
1267
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ek);
1265
1268
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1266
1269
  var styleProps = {
1267
1270
  size: !size && isInsideButton ? 'medium' : size,
@@ -1299,7 +1302,52 @@ var IconArrowLeft = React.forwardRef(function (_ref, ref) {
1299
1302
  });
1300
1303
  IconArrowLeft.displayName = 'IconArrowLeft';
1301
1304
 
1302
- 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"];
1303
1351
  var IconArrowRight = React.forwardRef(function (_ref, ref) {
1304
1352
  var _ref$testId = _ref.testId,
1305
1353
  testId = _ref$testId === void 0 ? 'icon-arrow-right' : _ref$testId,
@@ -1308,7 +1356,7 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
1308
1356
  style = _ref.style,
1309
1357
  _ref$variant = _ref.variant,
1310
1358
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1311
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ef);
1359
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ei);
1312
1360
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1313
1361
  var styleProps = {
1314
1362
  size: !size && isInsideButton ? 'medium' : size,
@@ -1346,7 +1394,7 @@ var IconArrowRight = React.forwardRef(function (_ref, ref) {
1346
1394
  });
1347
1395
  IconArrowRight.displayName = 'IconArrowRight';
1348
1396
 
1349
- var _excluded$ee = ["testId", "size", "color", "style", "variant"];
1397
+ var _excluded$eh = ["testId", "size", "color", "style", "variant"];
1350
1398
  var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1351
1399
  var _ref$testId = _ref.testId,
1352
1400
  testId = _ref$testId === void 0 ? 'icon-arrow-to-top' : _ref$testId,
@@ -1355,7 +1403,7 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1355
1403
  style = _ref.style,
1356
1404
  _ref$variant = _ref.variant,
1357
1405
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1358
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ee);
1406
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eh);
1359
1407
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1360
1408
  var styleProps = {
1361
1409
  size: !size && isInsideButton ? 'medium' : size,
@@ -1391,7 +1439,7 @@ var IconArrowToTop = React.forwardRef(function (_ref, ref) {
1391
1439
  });
1392
1440
  IconArrowToTop.displayName = 'IconArrowToTop';
1393
1441
 
1394
- var _excluded$ed = ["testId", "size", "color", "style", "variant"];
1442
+ var _excluded$eg = ["testId", "size", "color", "style", "variant"];
1395
1443
  var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1396
1444
  var _ref$testId = _ref.testId,
1397
1445
  testId = _ref$testId === void 0 ? 'icon-arrow-turn-down-right' : _ref$testId,
@@ -1400,7 +1448,7 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1400
1448
  style = _ref.style,
1401
1449
  _ref$variant = _ref.variant,
1402
1450
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1403
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ed);
1451
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eg);
1404
1452
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1405
1453
  var styleProps = {
1406
1454
  size: !size && isInsideButton ? 'medium' : size,
@@ -1451,7 +1499,7 @@ var IconArrowTurnDownRight = React.forwardRef(function (_ref, ref) {
1451
1499
  });
1452
1500
  IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
1453
1501
 
1454
- var _excluded$ec = ["testId", "size", "color", "style", "variant"];
1502
+ var _excluded$ef = ["testId", "size", "color", "style", "variant"];
1455
1503
  var IconArrowUp = React.forwardRef(function (_ref, ref) {
1456
1504
  var _ref$testId = _ref.testId,
1457
1505
  testId = _ref$testId === void 0 ? 'icon-arrow-up' : _ref$testId,
@@ -1460,7 +1508,7 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
1460
1508
  style = _ref.style,
1461
1509
  _ref$variant = _ref.variant,
1462
1510
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1463
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ec);
1511
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ef);
1464
1512
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1465
1513
  var styleProps = {
1466
1514
  size: !size && isInsideButton ? 'medium' : size,
@@ -1498,7 +1546,7 @@ var IconArrowUp = React.forwardRef(function (_ref, ref) {
1498
1546
  });
1499
1547
  IconArrowUp.displayName = 'IconArrowUp';
1500
1548
 
1501
- var _excluded$eb = ["testId", "size", "color", "style", "variant"];
1549
+ var _excluded$ee = ["testId", "size", "color", "style", "variant"];
1502
1550
  var IconChevronDown = React.forwardRef(function (_ref, ref) {
1503
1551
  var _ref$testId = _ref.testId,
1504
1552
  testId = _ref$testId === void 0 ? 'icon-chevron-down' : _ref$testId,
@@ -1507,7 +1555,7 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
1507
1555
  style = _ref.style,
1508
1556
  _ref$variant = _ref.variant,
1509
1557
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1510
- props = _objectWithoutPropertiesLoose(_ref, _excluded$eb);
1558
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ee);
1511
1559
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1512
1560
  var styleProps = {
1513
1561
  size: !size && isInsideButton ? 'medium' : size,
@@ -1545,7 +1593,7 @@ var IconChevronDown = React.forwardRef(function (_ref, ref) {
1545
1593
  });
1546
1594
  IconChevronDown.displayName = 'IconChevronDown';
1547
1595
 
1548
- var _excluded$ea = ["testId", "size", "color", "style", "variant"];
1596
+ var _excluded$ed = ["testId", "size", "color", "style", "variant"];
1549
1597
  var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1550
1598
  var _ref$testId = _ref.testId,
1551
1599
  testId = _ref$testId === void 0 ? 'icon-chevron-left' : _ref$testId,
@@ -1554,7 +1602,7 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1554
1602
  style = _ref.style,
1555
1603
  _ref$variant = _ref.variant,
1556
1604
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1557
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ea);
1605
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ed);
1558
1606
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1559
1607
  var styleProps = {
1560
1608
  size: !size && isInsideButton ? 'medium' : size,
@@ -1592,7 +1640,7 @@ var IconChevronLeft = React.forwardRef(function (_ref, ref) {
1592
1640
  });
1593
1641
  IconChevronLeft.displayName = 'IconChevronLeft';
1594
1642
 
1595
- var _excluded$e9 = ["testId", "size", "color", "style", "variant"];
1643
+ var _excluded$ec = ["testId", "size", "color", "style", "variant"];
1596
1644
  var IconChevronRight = React.forwardRef(function (_ref, ref) {
1597
1645
  var _ref$testId = _ref.testId,
1598
1646
  testId = _ref$testId === void 0 ? 'icon-chevron-right' : _ref$testId,
@@ -1601,7 +1649,7 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
1601
1649
  style = _ref.style,
1602
1650
  _ref$variant = _ref.variant,
1603
1651
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1604
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e9);
1652
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ec);
1605
1653
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1606
1654
  var styleProps = {
1607
1655
  size: !size && isInsideButton ? 'medium' : size,
@@ -1639,7 +1687,7 @@ var IconChevronRight = React.forwardRef(function (_ref, ref) {
1639
1687
  });
1640
1688
  IconChevronRight.displayName = 'IconChevronRight';
1641
1689
 
1642
- var _excluded$e8 = ["testId", "size", "color", "style", "variant"];
1690
+ var _excluded$eb = ["testId", "size", "color", "style", "variant"];
1643
1691
  var IconChevronUp = React.forwardRef(function (_ref, ref) {
1644
1692
  var _ref$testId = _ref.testId,
1645
1693
  testId = _ref$testId === void 0 ? 'icon-chevron-up' : _ref$testId,
@@ -1648,7 +1696,7 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
1648
1696
  style = _ref.style,
1649
1697
  _ref$variant = _ref.variant,
1650
1698
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1651
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e8);
1699
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$eb);
1652
1700
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1653
1701
  var styleProps = {
1654
1702
  size: !size && isInsideButton ? 'medium' : size,
@@ -1686,7 +1734,7 @@ var IconChevronUp = React.forwardRef(function (_ref, ref) {
1686
1734
  });
1687
1735
  IconChevronUp.displayName = 'IconChevronUp';
1688
1736
 
1689
- var _excluded$e7 = ["testId", "size", "color", "style", "variant"];
1737
+ var _excluded$ea = ["testId", "size", "color", "style", "variant"];
1690
1738
  var IconExpand = React.forwardRef(function (_ref, ref) {
1691
1739
  var _ref$testId = _ref.testId,
1692
1740
  testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
@@ -1695,7 +1743,7 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
1695
1743
  style = _ref.style,
1696
1744
  _ref$variant = _ref.variant,
1697
1745
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1698
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e7);
1746
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ea);
1699
1747
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1700
1748
  var styleProps = {
1701
1749
  size: !size && isInsideButton ? 'medium' : size,
@@ -1731,7 +1779,7 @@ var IconExpand = React.forwardRef(function (_ref, ref) {
1731
1779
  });
1732
1780
  IconExpand.displayName = 'IconExpand';
1733
1781
 
1734
- var _excluded$e6 = ["testId", "size", "color", "style", "variant"];
1782
+ var _excluded$e9 = ["testId", "size", "color", "style", "variant"];
1735
1783
  var IconRepeat = React.forwardRef(function (_ref, ref) {
1736
1784
  var _ref$testId = _ref.testId,
1737
1785
  testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
@@ -1740,7 +1788,7 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
1740
1788
  style = _ref.style,
1741
1789
  _ref$variant = _ref.variant,
1742
1790
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1743
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e6);
1791
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e9);
1744
1792
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1745
1793
  var styleProps = {
1746
1794
  size: !size && isInsideButton ? 'medium' : size,
@@ -1776,7 +1824,7 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
1776
1824
  });
1777
1825
  IconRepeat.displayName = 'IconRepeat';
1778
1826
 
1779
- var _excluded$e5 = ["testId", "size", "color", "style", "variant"];
1827
+ var _excluded$e8 = ["testId", "size", "color", "style", "variant"];
1780
1828
  var IconReply = React.forwardRef(function (_ref, ref) {
1781
1829
  var _ref$testId = _ref.testId,
1782
1830
  testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
@@ -1785,7 +1833,7 @@ var IconReply = React.forwardRef(function (_ref, ref) {
1785
1833
  style = _ref.style,
1786
1834
  _ref$variant = _ref.variant,
1787
1835
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1788
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e5);
1836
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e8);
1789
1837
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1790
1838
  var styleProps = {
1791
1839
  size: !size && isInsideButton ? 'medium' : size,
@@ -1828,7 +1876,7 @@ var IconReply = React.forwardRef(function (_ref, ref) {
1828
1876
  });
1829
1877
  IconReply.displayName = 'IconReply';
1830
1878
 
1831
- var _excluded$e4 = ["testId", "size", "color", "style", "variant"];
1879
+ var _excluded$e7 = ["testId", "size", "color", "style", "variant"];
1832
1880
  var IconSort = React.forwardRef(function (_ref, ref) {
1833
1881
  var _ref$testId = _ref.testId,
1834
1882
  testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
@@ -1837,7 +1885,7 @@ var IconSort = React.forwardRef(function (_ref, ref) {
1837
1885
  style = _ref.style,
1838
1886
  _ref$variant = _ref.variant,
1839
1887
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1840
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e4);
1888
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e7);
1841
1889
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1842
1890
  var styleProps = {
1843
1891
  size: !size && isInsideButton ? 'medium' : size,
@@ -1873,7 +1921,7 @@ var IconSort = React.forwardRef(function (_ref, ref) {
1873
1921
  });
1874
1922
  IconSort.displayName = 'IconSort';
1875
1923
 
1876
- var _excluded$e3 = ["testId", "size", "color", "style", "variant"];
1924
+ var _excluded$e6 = ["testId", "size", "color", "style", "variant"];
1877
1925
  var IconSync = React.forwardRef(function (_ref, ref) {
1878
1926
  var _ref$testId = _ref.testId,
1879
1927
  testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
@@ -1882,7 +1930,7 @@ var IconSync = React.forwardRef(function (_ref, ref) {
1882
1930
  style = _ref.style,
1883
1931
  _ref$variant = _ref.variant,
1884
1932
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1885
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e3);
1933
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e6);
1886
1934
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1887
1935
  var styleProps = {
1888
1936
  size: !size && isInsideButton ? 'medium' : size,
@@ -1932,7 +1980,7 @@ var IconSync = React.forwardRef(function (_ref, ref) {
1932
1980
  });
1933
1981
  IconSync.displayName = 'IconSync';
1934
1982
 
1935
- var _excluded$e2 = ["testId", "size", "color", "style", "variant"];
1983
+ var _excluded$e5 = ["testId", "size", "color", "style", "variant"];
1936
1984
  var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1937
1985
  var _ref$testId = _ref.testId,
1938
1986
  testId = _ref$testId === void 0 ? 'icon-sync-exclamation' : _ref$testId,
@@ -1941,7 +1989,7 @@ var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1941
1989
  style = _ref.style,
1942
1990
  _ref$variant = _ref.variant,
1943
1991
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
1944
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e2);
1992
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e5);
1945
1993
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
1946
1994
  var styleProps = {
1947
1995
  size: !size && isInsideButton ? 'medium' : size,
@@ -1993,7 +2041,7 @@ var IconSyncExclamation = React.forwardRef(function (_ref, ref) {
1993
2041
  });
1994
2042
  IconSyncExclamation.displayName = 'IconSyncExclamation';
1995
2043
 
1996
- var _excluded$e1 = ["testId", "size", "color", "style", "variant"];
2044
+ var _excluded$e4 = ["testId", "size", "color", "style", "variant"];
1997
2045
  var IconUndo = React.forwardRef(function (_ref, ref) {
1998
2046
  var _ref$testId = _ref.testId,
1999
2047
  testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
@@ -2002,7 +2050,7 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
2002
2050
  style = _ref.style,
2003
2051
  _ref$variant = _ref.variant,
2004
2052
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2005
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e1);
2053
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e4);
2006
2054
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2007
2055
  var styleProps = {
2008
2056
  size: !size && isInsideButton ? 'medium' : size,
@@ -2052,7 +2100,7 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
2052
2100
  });
2053
2101
  IconUndo.displayName = 'IconUndo';
2054
2102
 
2055
- var _excluded$e0 = ["testId", "size", "color", "style", "variant"];
2103
+ var _excluded$e3 = ["testId", "size", "color", "style", "variant"];
2056
2104
  var IconAnalytics = React.forwardRef(function (_ref, ref) {
2057
2105
  var _ref$testId = _ref.testId,
2058
2106
  testId = _ref$testId === void 0 ? 'icon-analytics' : _ref$testId,
@@ -2061,7 +2109,7 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
2061
2109
  style = _ref.style,
2062
2110
  _ref$variant = _ref.variant,
2063
2111
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2064
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e0);
2112
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e3);
2065
2113
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2066
2114
  var styleProps = {
2067
2115
  size: !size && isInsideButton ? 'medium' : size,
@@ -2099,7 +2147,7 @@ var IconAnalytics = React.forwardRef(function (_ref, ref) {
2099
2147
  });
2100
2148
  IconAnalytics.displayName = 'IconAnalytics';
2101
2149
 
2102
- var _excluded$d$ = ["testId", "size", "color", "style", "variant"];
2150
+ var _excluded$e2 = ["testId", "size", "color", "style", "variant"];
2103
2151
  var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2104
2152
  var _ref$testId = _ref.testId,
2105
2153
  testId = _ref$testId === void 0 ? 'icon-balance-scale' : _ref$testId,
@@ -2108,7 +2156,7 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2108
2156
  style = _ref.style,
2109
2157
  _ref$variant = _ref.variant,
2110
2158
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2111
- props = _objectWithoutPropertiesLoose(_ref, _excluded$d$);
2159
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e2);
2112
2160
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2113
2161
  var styleProps = {
2114
2162
  size: !size && isInsideButton ? 'medium' : size,
@@ -2151,7 +2199,7 @@ var IconBalanceScale = React.forwardRef(function (_ref, ref) {
2151
2199
  });
2152
2200
  IconBalanceScale.displayName = 'IconBalanceScale';
2153
2201
 
2154
- var _excluded$d_ = ["testId", "size", "color", "style", "variant"];
2202
+ var _excluded$e1 = ["testId", "size", "color", "style", "variant"];
2155
2203
  var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2156
2204
  var _ref$testId = _ref.testId,
2157
2205
  testId = _ref$testId === void 0 ? 'icon-balance-scale-left' : _ref$testId,
@@ -2160,7 +2208,7 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2160
2208
  style = _ref.style,
2161
2209
  _ref$variant = _ref.variant,
2162
2210
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2163
- props = _objectWithoutPropertiesLoose(_ref, _excluded$d_);
2211
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e1);
2164
2212
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2165
2213
  var styleProps = {
2166
2214
  size: !size && isInsideButton ? 'medium' : size,
@@ -2203,7 +2251,7 @@ var IconBalanceScaleLeft = React.forwardRef(function (_ref, ref) {
2203
2251
  });
2204
2252
  IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
2205
2253
 
2206
- var _excluded$dZ = ["testId", "size", "color", "style", "variant"];
2254
+ var _excluded$e0 = ["testId", "size", "color", "style", "variant"];
2207
2255
  var IconBarsV = React.forwardRef(function (_ref, ref) {
2208
2256
  var _ref$testId = _ref.testId,
2209
2257
  testId = _ref$testId === void 0 ? 'icon-bars-v' : _ref$testId,
@@ -2212,7 +2260,7 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
2212
2260
  style = _ref.style,
2213
2261
  _ref$variant = _ref.variant,
2214
2262
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2215
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dZ);
2263
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e0);
2216
2264
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2217
2265
  var styleProps = {
2218
2266
  size: !size && isInsideButton ? 'medium' : size,
@@ -2248,7 +2296,7 @@ var IconBarsV = React.forwardRef(function (_ref, ref) {
2248
2296
  });
2249
2297
  IconBarsV.displayName = 'IconBarsV';
2250
2298
 
2251
- var _excluded$dY = ["testId", "size", "color", "style", "variant"];
2299
+ var _excluded$d$ = ["testId", "size", "color", "style", "variant"];
2252
2300
  var IconBook = React.forwardRef(function (_ref, ref) {
2253
2301
  var _ref$testId = _ref.testId,
2254
2302
  testId = _ref$testId === void 0 ? 'icon-book' : _ref$testId,
@@ -2257,7 +2305,7 @@ var IconBook = React.forwardRef(function (_ref, ref) {
2257
2305
  style = _ref.style,
2258
2306
  _ref$variant = _ref.variant,
2259
2307
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2260
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dY);
2308
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d$);
2261
2309
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2262
2310
  var styleProps = {
2263
2311
  size: !size && isInsideButton ? 'medium' : size,
@@ -2293,7 +2341,7 @@ var IconBook = React.forwardRef(function (_ref, ref) {
2293
2341
  });
2294
2342
  IconBook.displayName = 'IconBook';
2295
2343
 
2296
- var _excluded$dX = ["testId", "size", "color", "style", "variant"];
2344
+ var _excluded$d_ = ["testId", "size", "color", "style", "variant"];
2297
2345
  var IconCalculator = React.forwardRef(function (_ref, ref) {
2298
2346
  var _ref$testId = _ref.testId,
2299
2347
  testId = _ref$testId === void 0 ? 'icon-calculator' : _ref$testId,
@@ -2302,7 +2350,7 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
2302
2350
  style = _ref.style,
2303
2351
  _ref$variant = _ref.variant,
2304
2352
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2305
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dX);
2353
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d_);
2306
2354
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2307
2355
  var styleProps = {
2308
2356
  size: !size && isInsideButton ? 'medium' : size,
@@ -2340,7 +2388,7 @@ var IconCalculator = React.forwardRef(function (_ref, ref) {
2340
2388
  });
2341
2389
  IconCalculator.displayName = 'IconCalculator';
2342
2390
 
2343
- var _excluded$dW = ["testId", "size", "color", "style", "variant"];
2391
+ var _excluded$dZ = ["testId", "size", "color", "style", "variant"];
2344
2392
  var IconCashRegister = React.forwardRef(function (_ref, ref) {
2345
2393
  var _ref$testId = _ref.testId,
2346
2394
  testId = _ref$testId === void 0 ? 'icon-cash-register' : _ref$testId,
@@ -2349,7 +2397,7 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
2349
2397
  style = _ref.style,
2350
2398
  _ref$variant = _ref.variant,
2351
2399
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2352
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dW);
2400
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dZ);
2353
2401
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2354
2402
  var styleProps = {
2355
2403
  size: !size && isInsideButton ? 'medium' : size,
@@ -2399,7 +2447,7 @@ var IconCashRegister = React.forwardRef(function (_ref, ref) {
2399
2447
  });
2400
2448
  IconCashRegister.displayName = 'IconCashRegister';
2401
2449
 
2402
- var _excluded$dV = ["testId", "size", "color", "style", "variant"];
2450
+ var _excluded$dY = ["testId", "size", "color", "style", "variant"];
2403
2451
  var IconChartBar = React.forwardRef(function (_ref, ref) {
2404
2452
  var _ref$testId = _ref.testId,
2405
2453
  testId = _ref$testId === void 0 ? 'icon-chart-bar' : _ref$testId,
@@ -2408,7 +2456,7 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
2408
2456
  style = _ref.style,
2409
2457
  _ref$variant = _ref.variant,
2410
2458
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2411
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dV);
2459
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dY);
2412
2460
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2413
2461
  var styleProps = {
2414
2462
  size: !size && isInsideButton ? 'medium' : size,
@@ -2446,7 +2494,7 @@ var IconChartBar = React.forwardRef(function (_ref, ref) {
2446
2494
  });
2447
2495
  IconChartBar.displayName = 'IconChartBar';
2448
2496
 
2449
- var _excluded$dU = ["testId", "size", "color", "style", "variant"];
2497
+ var _excluded$dX = ["testId", "size", "color", "style", "variant"];
2450
2498
  var IconCreditCard = React.forwardRef(function (_ref, ref) {
2451
2499
  var _ref$testId = _ref.testId,
2452
2500
  testId = _ref$testId === void 0 ? 'icon-credit-card' : _ref$testId,
@@ -2455,7 +2503,7 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
2455
2503
  style = _ref.style,
2456
2504
  _ref$variant = _ref.variant,
2457
2505
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2458
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dU);
2506
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dX);
2459
2507
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2460
2508
  var styleProps = {
2461
2509
  size: !size && isInsideButton ? 'medium' : size,
@@ -2491,7 +2539,7 @@ var IconCreditCard = React.forwardRef(function (_ref, ref) {
2491
2539
  });
2492
2540
  IconCreditCard.displayName = 'IconCreditCard';
2493
2541
 
2494
- var _excluded$dT = ["testId", "size", "color", "style", "variant"];
2542
+ var _excluded$dW = ["testId", "size", "color", "style", "variant"];
2495
2543
  var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2496
2544
  var _ref$testId = _ref.testId,
2497
2545
  testId = _ref$testId === void 0 ? 'icon-credit-card-plus' : _ref$testId,
@@ -2500,7 +2548,7 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2500
2548
  style = _ref.style,
2501
2549
  _ref$variant = _ref.variant,
2502
2550
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2503
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dT);
2551
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dW);
2504
2552
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2505
2553
  var styleProps = {
2506
2554
  size: !size && isInsideButton ? 'medium' : size,
@@ -2556,7 +2604,7 @@ var IconCreditCardPlus = React.forwardRef(function (_ref, ref) {
2556
2604
  });
2557
2605
  IconCreditCardPlus.displayName = 'IconCreditCardPlus';
2558
2606
 
2559
- var _excluded$dS = ["testId", "size", "color", "style", "variant"];
2607
+ var _excluded$dV = ["testId", "size", "color", "style", "variant"];
2560
2608
  var IconDollarSign = React.forwardRef(function (_ref, ref) {
2561
2609
  var _ref$testId = _ref.testId,
2562
2610
  testId = _ref$testId === void 0 ? 'icon-dollar-sign' : _ref$testId,
@@ -2565,7 +2613,7 @@ var IconDollarSign = React.forwardRef(function (_ref, ref) {
2565
2613
  style = _ref.style,
2566
2614
  _ref$variant = _ref.variant,
2567
2615
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2568
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dS);
2616
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dV);
2569
2617
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2570
2618
  var styleProps = {
2571
2619
  size: !size && isInsideButton ? 'medium' : size,
@@ -2601,7 +2649,7 @@ var IconDollarSign = React.forwardRef(function (_ref, ref) {
2601
2649
  });
2602
2650
  IconDollarSign.displayName = 'IconDollarSign';
2603
2651
 
2604
- var _excluded$dR = ["testId", "size", "color", "style", "variant"];
2652
+ var _excluded$dU = ["testId", "size", "color", "style", "variant"];
2605
2653
  var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2606
2654
  var _ref$testId = _ref.testId,
2607
2655
  testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
@@ -2610,7 +2658,7 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2610
2658
  style = _ref.style,
2611
2659
  _ref$variant = _ref.variant,
2612
2660
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2613
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dR);
2661
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dU);
2614
2662
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2615
2663
  var styleProps = {
2616
2664
  size: !size && isInsideButton ? 'medium' : size,
@@ -2660,7 +2708,7 @@ var IconEnvelopeOpenDollar = React.forwardRef(function (_ref, ref) {
2660
2708
  });
2661
2709
  IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
2662
2710
 
2663
- var _excluded$dQ = ["testId", "size", "color", "style", "variant"];
2711
+ var _excluded$dT = ["testId", "size", "color", "style", "variant"];
2664
2712
  var IconGanttChart = React.forwardRef(function (_ref, ref) {
2665
2713
  var _ref$testId = _ref.testId,
2666
2714
  testId = _ref$testId === void 0 ? 'icon-gantt-chart' : _ref$testId,
@@ -2669,7 +2717,7 @@ var IconGanttChart = React.forwardRef(function (_ref, ref) {
2669
2717
  style = _ref.style,
2670
2718
  _ref$variant = _ref.variant,
2671
2719
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2672
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dQ);
2720
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dT);
2673
2721
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2674
2722
  var styleProps = {
2675
2723
  size: !size && isInsideButton ? 'medium' : size,
@@ -2705,7 +2753,7 @@ var IconGanttChart = React.forwardRef(function (_ref, ref) {
2705
2753
  });
2706
2754
  IconGanttChart.displayName = 'IconGanttChart';
2707
2755
 
2708
- var _excluded$dP = ["testId", "size", "color", "style", "variant"];
2756
+ var _excluded$dS = ["testId", "size", "color", "style", "variant"];
2709
2757
  var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2710
2758
  var _ref$testId = _ref.testId,
2711
2759
  testId = _ref$testId === void 0 ? 'icon-hand-holding-coin' : _ref$testId,
@@ -2714,7 +2762,7 @@ var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2714
2762
  style = _ref.style,
2715
2763
  _ref$variant = _ref.variant,
2716
2764
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2717
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dP);
2765
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dS);
2718
2766
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2719
2767
  var styleProps = {
2720
2768
  size: !size && isInsideButton ? 'medium' : size,
@@ -2764,7 +2812,7 @@ var IconHandHoldingCoin = React.forwardRef(function (_ref, ref) {
2764
2812
  });
2765
2813
  IconHandHoldingCoin.displayName = 'IconHandHoldingCoin';
2766
2814
 
2767
- var _excluded$dO = ["testId", "size", "color", "style", "variant"];
2815
+ var _excluded$dR = ["testId", "size", "color", "style", "variant"];
2768
2816
  var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2769
2817
  var _ref$testId = _ref.testId,
2770
2818
  testId = _ref$testId === void 0 ? 'icon-hand-holding-dollar' : _ref$testId,
@@ -2773,7 +2821,7 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2773
2821
  style = _ref.style,
2774
2822
  _ref$variant = _ref.variant,
2775
2823
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2776
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dO);
2824
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dR);
2777
2825
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2778
2826
  var styleProps = {
2779
2827
  size: !size && isInsideButton ? 'medium' : size,
@@ -2823,7 +2871,7 @@ var IconHandHoldingDollar = React.forwardRef(function (_ref, ref) {
2823
2871
  });
2824
2872
  IconHandHoldingDollar.displayName = 'IconHandHoldingDollar';
2825
2873
 
2826
- var _excluded$dN = ["testId", "size", "color", "style", "variant"];
2874
+ var _excluded$dQ = ["testId", "size", "color", "style", "variant"];
2827
2875
  var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2828
2876
  var _ref$testId = _ref.testId,
2829
2877
  testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
@@ -2832,7 +2880,7 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2832
2880
  style = _ref.style,
2833
2881
  _ref$variant = _ref.variant,
2834
2882
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2835
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dN);
2883
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dQ);
2836
2884
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2837
2885
  var styleProps = {
2838
2886
  size: !size && isInsideButton ? 'medium' : size,
@@ -2868,7 +2916,7 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
2868
2916
  });
2869
2917
  IconMoneyBill.displayName = 'IconMoneyBill';
2870
2918
 
2871
- var _excluded$dM = ["testId", "size", "color", "style", "variant"];
2919
+ var _excluded$dP = ["testId", "size", "color", "style", "variant"];
2872
2920
  var IconPercentage = React.forwardRef(function (_ref, ref) {
2873
2921
  var _ref$testId = _ref.testId,
2874
2922
  testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
@@ -2877,7 +2925,7 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
2877
2925
  style = _ref.style,
2878
2926
  _ref$variant = _ref.variant,
2879
2927
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2880
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dM);
2928
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dP);
2881
2929
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2882
2930
  var styleProps = {
2883
2931
  size: !size && isInsideButton ? 'medium' : size,
@@ -2913,7 +2961,7 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
2913
2961
  });
2914
2962
  IconPercentage.displayName = 'IconPercentage';
2915
2963
 
2916
- var _excluded$dL = ["testId", "size", "color", "style", "variant"];
2964
+ var _excluded$dO = ["testId", "size", "color", "style", "variant"];
2917
2965
  var IconSitemap = React.forwardRef(function (_ref, ref) {
2918
2966
  var _ref$testId = _ref.testId,
2919
2967
  testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
@@ -2922,7 +2970,7 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
2922
2970
  style = _ref.style,
2923
2971
  _ref$variant = _ref.variant,
2924
2972
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2925
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dL);
2973
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dO);
2926
2974
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2927
2975
  var styleProps = {
2928
2976
  size: !size && isInsideButton ? 'medium' : size,
@@ -2958,7 +3006,7 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
2958
3006
  });
2959
3007
  IconSitemap.displayName = 'IconSitemap';
2960
3008
 
2961
- var _excluded$dK = ["testId", "size", "color", "style", "variant"];
3009
+ var _excluded$dN = ["testId", "size", "color", "style", "variant"];
2962
3010
  var IconTable = React.forwardRef(function (_ref, ref) {
2963
3011
  var _ref$testId = _ref.testId,
2964
3012
  testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
@@ -2967,7 +3015,7 @@ var IconTable = React.forwardRef(function (_ref, ref) {
2967
3015
  style = _ref.style,
2968
3016
  _ref$variant = _ref.variant,
2969
3017
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
2970
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dK);
3018
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dN);
2971
3019
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
2972
3020
  var styleProps = {
2973
3021
  size: !size && isInsideButton ? 'medium' : size,
@@ -3003,7 +3051,7 @@ var IconTable = React.forwardRef(function (_ref, ref) {
3003
3051
  });
3004
3052
  IconTable.displayName = 'IconTable';
3005
3053
 
3006
- var _excluded$dJ = ["testId", "size", "color", "style", "variant"];
3054
+ var _excluded$dM = ["testId", "size", "color", "style", "variant"];
3007
3055
  var IconBell = React.forwardRef(function (_ref, ref) {
3008
3056
  var _ref$testId = _ref.testId,
3009
3057
  testId = _ref$testId === void 0 ? 'icon-bell' : _ref$testId,
@@ -3012,7 +3060,7 @@ var IconBell = React.forwardRef(function (_ref, ref) {
3012
3060
  style = _ref.style,
3013
3061
  _ref$variant = _ref.variant,
3014
3062
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3015
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dJ);
3063
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dM);
3016
3064
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3017
3065
  var styleProps = {
3018
3066
  size: !size && isInsideButton ? 'medium' : size,
@@ -3048,7 +3096,7 @@ var IconBell = React.forwardRef(function (_ref, ref) {
3048
3096
  });
3049
3097
  IconBell.displayName = 'IconBell';
3050
3098
 
3051
- var _excluded$dI = ["testId", "size", "color", "style", "variant"];
3099
+ var _excluded$dL = ["testId", "size", "color", "style", "variant"];
3052
3100
  var IconBullhorn = React.forwardRef(function (_ref, ref) {
3053
3101
  var _ref$testId = _ref.testId,
3054
3102
  testId = _ref$testId === void 0 ? 'icon-bullhorn' : _ref$testId,
@@ -3057,7 +3105,7 @@ var IconBullhorn = React.forwardRef(function (_ref, ref) {
3057
3105
  style = _ref.style,
3058
3106
  _ref$variant = _ref.variant,
3059
3107
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3060
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dI);
3108
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dL);
3061
3109
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3062
3110
  var styleProps = {
3063
3111
  size: !size && isInsideButton ? 'medium' : size,
@@ -3093,7 +3141,7 @@ var IconBullhorn = React.forwardRef(function (_ref, ref) {
3093
3141
  });
3094
3142
  IconBullhorn.displayName = 'IconBullhorn';
3095
3143
 
3096
- var _excluded$dH = ["testId", "size", "color", "style", "variant"];
3144
+ var _excluded$dK = ["testId", "size", "color", "style", "variant"];
3097
3145
  var IconCamera = React.forwardRef(function (_ref, ref) {
3098
3146
  var _ref$testId = _ref.testId,
3099
3147
  testId = _ref$testId === void 0 ? 'icon-camera' : _ref$testId,
@@ -3102,7 +3150,7 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
3102
3150
  style = _ref.style,
3103
3151
  _ref$variant = _ref.variant,
3104
3152
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3105
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dH);
3153
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dK);
3106
3154
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3107
3155
  var styleProps = {
3108
3156
  size: !size && isInsideButton ? 'medium' : size,
@@ -3138,7 +3186,7 @@ var IconCamera = React.forwardRef(function (_ref, ref) {
3138
3186
  });
3139
3187
  IconCamera.displayName = 'IconCamera';
3140
3188
 
3141
- var _excluded$dG = ["testId", "size", "color", "style", "variant"];
3189
+ var _excluded$dJ = ["testId", "size", "color", "style", "variant"];
3142
3190
  var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3143
3191
  var _ref$testId = _ref.testId,
3144
3192
  testId = _ref$testId === void 0 ? 'icon-camera-slash' : _ref$testId,
@@ -3147,7 +3195,7 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3147
3195
  style = _ref.style,
3148
3196
  _ref$variant = _ref.variant,
3149
3197
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3150
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dG);
3198
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dJ);
3151
3199
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3152
3200
  var styleProps = {
3153
3201
  size: !size && isInsideButton ? 'medium' : size,
@@ -3183,7 +3231,7 @@ var IconCameraSlash = React.forwardRef(function (_ref, ref) {
3183
3231
  });
3184
3232
  IconCameraSlash.displayName = 'IconCameraSlash';
3185
3233
 
3186
- var _excluded$dF = ["testId", "size", "color", "style", "variant"];
3234
+ var _excluded$dI = ["testId", "size", "color", "style", "variant"];
3187
3235
  var IconComment = React.forwardRef(function (_ref, ref) {
3188
3236
  var _ref$testId = _ref.testId,
3189
3237
  testId = _ref$testId === void 0 ? 'icon-comment' : _ref$testId,
@@ -3192,7 +3240,7 @@ var IconComment = React.forwardRef(function (_ref, ref) {
3192
3240
  style = _ref.style,
3193
3241
  _ref$variant = _ref.variant,
3194
3242
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3195
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dF);
3243
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dI);
3196
3244
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3197
3245
  var styleProps = {
3198
3246
  size: !size && isInsideButton ? 'medium' : size,
@@ -3228,7 +3276,7 @@ var IconComment = React.forwardRef(function (_ref, ref) {
3228
3276
  });
3229
3277
  IconComment.displayName = 'IconComment';
3230
3278
 
3231
- var _excluded$dE = ["testId", "size", "color", "style", "variant"];
3279
+ var _excluded$dH = ["testId", "size", "color", "style", "variant"];
3232
3280
  var IconCommentLines = React.forwardRef(function (_ref, ref) {
3233
3281
  var _ref$testId = _ref.testId,
3234
3282
  testId = _ref$testId === void 0 ? 'icon-comment-lines' : _ref$testId,
@@ -3237,7 +3285,7 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
3237
3285
  style = _ref.style,
3238
3286
  _ref$variant = _ref.variant,
3239
3287
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3240
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dE);
3288
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dH);
3241
3289
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3242
3290
  var styleProps = {
3243
3291
  size: !size && isInsideButton ? 'medium' : size,
@@ -3273,7 +3321,7 @@ var IconCommentLines = React.forwardRef(function (_ref, ref) {
3273
3321
  });
3274
3322
  IconCommentLines.displayName = 'IconCommentLines';
3275
3323
 
3276
- var _excluded$dD = ["testId", "size", "color", "style", "variant"];
3324
+ var _excluded$dG = ["testId", "size", "color", "style", "variant"];
3277
3325
  var IconEnvelope = React.forwardRef(function (_ref, ref) {
3278
3326
  var _ref$testId = _ref.testId,
3279
3327
  testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
@@ -3282,7 +3330,7 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
3282
3330
  style = _ref.style,
3283
3331
  _ref$variant = _ref.variant,
3284
3332
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3285
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dD);
3333
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dG);
3286
3334
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3287
3335
  var styleProps = {
3288
3336
  size: !size && isInsideButton ? 'medium' : size,
@@ -3318,7 +3366,52 @@ var IconEnvelope = React.forwardRef(function (_ref, ref) {
3318
3366
  });
3319
3367
  IconEnvelope.displayName = 'IconEnvelope';
3320
3368
 
3321
- 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"];
3322
3415
  var IconMessages = React.forwardRef(function (_ref, ref) {
3323
3416
  var _ref$testId = _ref.testId,
3324
3417
  testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
@@ -3327,7 +3420,7 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
3327
3420
  style = _ref.style,
3328
3421
  _ref$variant = _ref.variant,
3329
3422
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3330
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dC);
3423
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dE);
3331
3424
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3332
3425
  var styleProps = {
3333
3426
  size: !size && isInsideButton ? 'medium' : size,
@@ -3363,7 +3456,7 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
3363
3456
  });
3364
3457
  IconMessages.displayName = 'IconMessages';
3365
3458
 
3366
- var _excluded$dB = ["testId", "size", "color", "style", "variant"];
3459
+ var _excluded$dD = ["testId", "size", "color", "style", "variant"];
3367
3460
  var IconMicrophone = React.forwardRef(function (_ref, ref) {
3368
3461
  var _ref$testId = _ref.testId,
3369
3462
  testId = _ref$testId === void 0 ? 'icon-microphone' : _ref$testId,
@@ -3372,7 +3465,7 @@ var IconMicrophone = React.forwardRef(function (_ref, ref) {
3372
3465
  style = _ref.style,
3373
3466
  _ref$variant = _ref.variant,
3374
3467
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3375
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dB);
3468
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dD);
3376
3469
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3377
3470
  var styleProps = {
3378
3471
  size: !size && isInsideButton ? 'medium' : size,
@@ -3422,7 +3515,7 @@ var IconMicrophone = React.forwardRef(function (_ref, ref) {
3422
3515
  });
3423
3516
  IconMicrophone.displayName = 'IconMicrophone';
3424
3517
 
3425
- var _excluded$dA = ["testId", "size", "color", "style", "variant"];
3518
+ var _excluded$dC = ["testId", "size", "color", "style", "variant"];
3426
3519
  var IconMobile = React.forwardRef(function (_ref, ref) {
3427
3520
  var _ref$testId = _ref.testId,
3428
3521
  testId = _ref$testId === void 0 ? 'icon-mobile' : _ref$testId,
@@ -3431,7 +3524,7 @@ var IconMobile = React.forwardRef(function (_ref, ref) {
3431
3524
  style = _ref.style,
3432
3525
  _ref$variant = _ref.variant,
3433
3526
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3434
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dA);
3527
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dC);
3435
3528
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3436
3529
  var styleProps = {
3437
3530
  size: !size && isInsideButton ? 'medium' : size,
@@ -3467,7 +3560,7 @@ var IconMobile = React.forwardRef(function (_ref, ref) {
3467
3560
  });
3468
3561
  IconMobile.displayName = 'IconMobile';
3469
3562
 
3470
- var _excluded$dz = ["testId", "size", "color", "style", "variant"];
3563
+ var _excluded$dB = ["testId", "size", "color", "style", "variant"];
3471
3564
  var IconPhone = React.forwardRef(function (_ref, ref) {
3472
3565
  var _ref$testId = _ref.testId,
3473
3566
  testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
@@ -3476,7 +3569,7 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
3476
3569
  style = _ref.style,
3477
3570
  _ref$variant = _ref.variant,
3478
3571
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3479
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dz);
3572
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dB);
3480
3573
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3481
3574
  var styleProps = {
3482
3575
  size: !size && isInsideButton ? 'medium' : size,
@@ -3512,7 +3605,7 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
3512
3605
  });
3513
3606
  IconPhone.displayName = 'IconPhone';
3514
3607
 
3515
- var _excluded$dy = ["testId", "size", "color", "style", "variant"];
3608
+ var _excluded$dA = ["testId", "size", "color", "style", "variant"];
3516
3609
  var IconVideo = React.forwardRef(function (_ref, ref) {
3517
3610
  var _ref$testId = _ref.testId,
3518
3611
  testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
@@ -3521,7 +3614,7 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
3521
3614
  style = _ref.style,
3522
3615
  _ref$variant = _ref.variant,
3523
3616
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3524
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dy);
3617
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dA);
3525
3618
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3526
3619
  var styleProps = {
3527
3620
  size: !size && isInsideButton ? 'medium' : size,
@@ -3564,7 +3657,7 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
3564
3657
  });
3565
3658
  IconVideo.displayName = 'IconVideo';
3566
3659
 
3567
- var _excluded$dx = ["testId", "size", "color", "style", "variant"];
3660
+ var _excluded$dz = ["testId", "size", "color", "style", "variant"];
3568
3661
  var IconWifi = React.forwardRef(function (_ref, ref) {
3569
3662
  var _ref$testId = _ref.testId,
3570
3663
  testId = _ref$testId === void 0 ? 'icon-wifi' : _ref$testId,
@@ -3573,7 +3666,7 @@ var IconWifi = React.forwardRef(function (_ref, ref) {
3573
3666
  style = _ref.style,
3574
3667
  _ref$variant = _ref.variant,
3575
3668
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3576
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dx);
3669
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dz);
3577
3670
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3578
3671
  var styleProps = {
3579
3672
  size: !size && isInsideButton ? 'medium' : size,
@@ -3609,7 +3702,7 @@ var IconWifi = React.forwardRef(function (_ref, ref) {
3609
3702
  });
3610
3703
  IconWifi.displayName = 'IconWifi';
3611
3704
 
3612
- var _excluded$dw = ["testId", "size", "color", "style", "variant"];
3705
+ var _excluded$dy = ["testId", "size", "color", "style", "variant"];
3613
3706
  var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3614
3707
  var _ref$testId = _ref.testId,
3615
3708
  testId = _ref$testId === void 0 ? 'icon-wifi-slash' : _ref$testId,
@@ -3618,7 +3711,7 @@ var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3618
3711
  style = _ref.style,
3619
3712
  _ref$variant = _ref.variant,
3620
3713
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3621
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dw);
3714
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dy);
3622
3715
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3623
3716
  var styleProps = {
3624
3717
  size: !size && isInsideButton ? 'medium' : size,
@@ -3654,7 +3747,7 @@ var IconWifiSlash = React.forwardRef(function (_ref, ref) {
3654
3747
  });
3655
3748
  IconWifiSlash.displayName = 'IconWifiSlash';
3656
3749
 
3657
- var _excluded$dv = ["testId", "size", "color", "style", "variant"];
3750
+ var _excluded$dx = ["testId", "size", "color", "style", "variant"];
3658
3751
  var IconBarsH = React.forwardRef(function (_ref, ref) {
3659
3752
  var _ref$testId = _ref.testId,
3660
3753
  testId = _ref$testId === void 0 ? 'icon-bars-h' : _ref$testId,
@@ -3663,7 +3756,7 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
3663
3756
  style = _ref.style,
3664
3757
  _ref$variant = _ref.variant,
3665
3758
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3666
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dv);
3759
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dx);
3667
3760
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3668
3761
  var styleProps = {
3669
3762
  size: !size && isInsideButton ? 'medium' : size,
@@ -3701,7 +3794,7 @@ var IconBarsH = React.forwardRef(function (_ref, ref) {
3701
3794
  });
3702
3795
  IconBarsH.displayName = 'IconBarsH';
3703
3796
 
3704
- var _excluded$du = ["testId", "size", "color", "style", "variant"];
3797
+ var _excluded$dw = ["testId", "size", "color", "style", "variant"];
3705
3798
  var IconBold = React.forwardRef(function (_ref, ref) {
3706
3799
  var _ref$testId = _ref.testId,
3707
3800
  testId = _ref$testId === void 0 ? 'icon-bold' : _ref$testId,
@@ -3710,7 +3803,7 @@ var IconBold = React.forwardRef(function (_ref, ref) {
3710
3803
  style = _ref.style,
3711
3804
  _ref$variant = _ref.variant,
3712
3805
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3713
- props = _objectWithoutPropertiesLoose(_ref, _excluded$du);
3806
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dw);
3714
3807
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3715
3808
  var styleProps = {
3716
3809
  size: !size && isInsideButton ? 'medium' : size,
@@ -3746,7 +3839,7 @@ var IconBold = React.forwardRef(function (_ref, ref) {
3746
3839
  });
3747
3840
  IconBold.displayName = 'IconBold';
3748
3841
 
3749
- var _excluded$dt = ["testId", "size", "color", "style", "variant"];
3842
+ var _excluded$dv = ["testId", "size", "color", "style", "variant"];
3750
3843
  var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3751
3844
  var _ref$testId = _ref.testId,
3752
3845
  testId = _ref$testId === void 0 ? 'icon-check-circle' : _ref$testId,
@@ -3755,7 +3848,7 @@ var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3755
3848
  style = _ref.style,
3756
3849
  _ref$variant = _ref.variant,
3757
3850
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3758
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dt);
3851
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dv);
3759
3852
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3760
3853
  var styleProps = {
3761
3854
  size: !size && isInsideButton ? 'medium' : size,
@@ -3791,7 +3884,7 @@ var IconCheckCircle = React.forwardRef(function (_ref, ref) {
3791
3884
  });
3792
3885
  IconCheckCircle.displayName = 'IconCheckCircle';
3793
3886
 
3794
- var _excluded$ds = ["testId", "size", "color", "style", "variant"];
3887
+ var _excluded$du = ["testId", "size", "color", "style", "variant"];
3795
3888
  var IconCog = React.forwardRef(function (_ref, ref) {
3796
3889
  var _ref$testId = _ref.testId,
3797
3890
  testId = _ref$testId === void 0 ? 'icon-cog' : _ref$testId,
@@ -3800,7 +3893,7 @@ var IconCog = React.forwardRef(function (_ref, ref) {
3800
3893
  style = _ref.style,
3801
3894
  _ref$variant = _ref.variant,
3802
3895
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3803
- props = _objectWithoutPropertiesLoose(_ref, _excluded$ds);
3896
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$du);
3804
3897
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3805
3898
  var styleProps = {
3806
3899
  size: !size && isInsideButton ? 'medium' : size,
@@ -3850,7 +3943,7 @@ var IconCog = React.forwardRef(function (_ref, ref) {
3850
3943
  });
3851
3944
  IconCog.displayName = 'IconCog';
3852
3945
 
3853
- var _excluded$dr = ["testId", "size", "color", "style", "variant"];
3946
+ var _excluded$dt = ["testId", "size", "color", "style", "variant"];
3854
3947
  var IconCopy = React.forwardRef(function (_ref, ref) {
3855
3948
  var _ref$testId = _ref.testId,
3856
3949
  testId = _ref$testId === void 0 ? 'icon-copy' : _ref$testId,
@@ -3859,7 +3952,7 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
3859
3952
  style = _ref.style,
3860
3953
  _ref$variant = _ref.variant,
3861
3954
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3862
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dr);
3955
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dt);
3863
3956
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3864
3957
  var styleProps = {
3865
3958
  size: !size && isInsideButton ? 'medium' : size,
@@ -3909,7 +4002,7 @@ var IconCopy = React.forwardRef(function (_ref, ref) {
3909
4002
  });
3910
4003
  IconCopy.displayName = 'IconCopy';
3911
4004
 
3912
- var _excluded$dq = ["testId", "size", "color", "style", "variant"];
4005
+ var _excluded$ds = ["testId", "size", "color", "style", "variant"];
3913
4006
  var IconEdit = React.forwardRef(function (_ref, ref) {
3914
4007
  var _ref$testId = _ref.testId,
3915
4008
  testId = _ref$testId === void 0 ? 'icon-edit' : _ref$testId,
@@ -3918,7 +4011,7 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
3918
4011
  style = _ref.style,
3919
4012
  _ref$variant = _ref.variant,
3920
4013
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3921
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dq);
4014
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$ds);
3922
4015
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3923
4016
  var styleProps = {
3924
4017
  size: !size && isInsideButton ? 'medium' : size,
@@ -3954,7 +4047,7 @@ var IconEdit = React.forwardRef(function (_ref, ref) {
3954
4047
  });
3955
4048
  IconEdit.displayName = 'IconEdit';
3956
4049
 
3957
- var _excluded$dp = ["testId", "size", "color", "style", "variant"];
4050
+ var _excluded$dr = ["testId", "size", "color", "style", "variant"];
3958
4051
  var IconEllipsis = React.forwardRef(function (_ref, ref) {
3959
4052
  var _ref$testId = _ref.testId,
3960
4053
  testId = _ref$testId === void 0 ? 'icon-ellipsis' : _ref$testId,
@@ -3963,7 +4056,7 @@ var IconEllipsis = React.forwardRef(function (_ref, ref) {
3963
4056
  style = _ref.style,
3964
4057
  _ref$variant = _ref.variant,
3965
4058
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
3966
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dp);
4059
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dr);
3967
4060
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
3968
4061
  var styleProps = {
3969
4062
  size: !size && isInsideButton ? 'medium' : size,
@@ -4001,7 +4094,7 @@ var IconEllipsis = React.forwardRef(function (_ref, ref) {
4001
4094
  });
4002
4095
  IconEllipsis.displayName = 'IconEllipsis';
4003
4096
 
4004
- var _excluded$do = ["testId", "size", "color", "style", "variant"];
4097
+ var _excluded$dq = ["testId", "size", "color", "style", "variant"];
4005
4098
  var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4006
4099
  var _ref$testId = _ref.testId,
4007
4100
  testId = _ref$testId === void 0 ? 'icon-ellipsis-v' : _ref$testId,
@@ -4010,7 +4103,7 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4010
4103
  style = _ref.style,
4011
4104
  _ref$variant = _ref.variant,
4012
4105
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4013
- props = _objectWithoutPropertiesLoose(_ref, _excluded$do);
4106
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dq);
4014
4107
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4015
4108
  var styleProps = {
4016
4109
  size: !size && isInsideButton ? 'medium' : size,
@@ -4048,7 +4141,7 @@ var IconEllipsisV = React.forwardRef(function (_ref, ref) {
4048
4141
  });
4049
4142
  IconEllipsisV.displayName = 'IconEllipsisV';
4050
4143
 
4051
- var _excluded$dn = ["testId", "size", "color", "style", "variant"];
4144
+ var _excluded$dp = ["testId", "size", "color", "style", "variant"];
4052
4145
  var IconExternalLink = React.forwardRef(function (_ref, ref) {
4053
4146
  var _ref$testId = _ref.testId,
4054
4147
  testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
@@ -4057,7 +4150,7 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
4057
4150
  style = _ref.style,
4058
4151
  _ref$variant = _ref.variant,
4059
4152
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4060
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dn);
4153
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dp);
4061
4154
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4062
4155
  var styleProps = {
4063
4156
  size: !size && isInsideButton ? 'medium' : size,
@@ -4095,7 +4188,7 @@ var IconExternalLink = React.forwardRef(function (_ref, ref) {
4095
4188
  });
4096
4189
  IconExternalLink.displayName = 'IconExternalLink';
4097
4190
 
4098
- var _excluded$dm = ["testId", "size", "color", "style", "variant"];
4191
+ var _excluded$do = ["testId", "size", "color", "style", "variant"];
4099
4192
  var IconEye = React.forwardRef(function (_ref, ref) {
4100
4193
  var _ref$testId = _ref.testId,
4101
4194
  testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
@@ -4104,7 +4197,7 @@ var IconEye = React.forwardRef(function (_ref, ref) {
4104
4197
  style = _ref.style,
4105
4198
  _ref$variant = _ref.variant,
4106
4199
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4107
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dm);
4200
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$do);
4108
4201
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4109
4202
  var styleProps = {
4110
4203
  size: !size && isInsideButton ? 'medium' : size,
@@ -4140,7 +4233,7 @@ var IconEye = React.forwardRef(function (_ref, ref) {
4140
4233
  });
4141
4234
  IconEye.displayName = 'IconEye';
4142
4235
 
4143
- var _excluded$dl = ["testId", "size", "color", "style", "variant"];
4236
+ var _excluded$dn = ["testId", "size", "color", "style", "variant"];
4144
4237
  var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4145
4238
  var _ref$testId = _ref.testId,
4146
4239
  testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
@@ -4149,7 +4242,7 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4149
4242
  style = _ref.style,
4150
4243
  _ref$variant = _ref.variant,
4151
4244
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4152
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dl);
4245
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dn);
4153
4246
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4154
4247
  var styleProps = {
4155
4248
  size: !size && isInsideButton ? 'medium' : size,
@@ -4199,7 +4292,7 @@ var IconEyeSlash = React.forwardRef(function (_ref, ref) {
4199
4292
  });
4200
4293
  IconEyeSlash.displayName = 'IconEyeSlash';
4201
4294
 
4202
- var _excluded$dk = ["testId", "size", "color", "style", "variant"];
4295
+ var _excluded$dm = ["testId", "size", "color", "style", "variant"];
4203
4296
  var IconFile = React.forwardRef(function (_ref, ref) {
4204
4297
  var _ref$testId = _ref.testId,
4205
4298
  testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
@@ -4208,7 +4301,7 @@ var IconFile = React.forwardRef(function (_ref, ref) {
4208
4301
  style = _ref.style,
4209
4302
  _ref$variant = _ref.variant,
4210
4303
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4211
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dk);
4304
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dm);
4212
4305
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4213
4306
  var styleProps = {
4214
4307
  size: !size && isInsideButton ? 'medium' : size,
@@ -4258,7 +4351,7 @@ var IconFile = React.forwardRef(function (_ref, ref) {
4258
4351
  });
4259
4352
  IconFile.displayName = 'IconFile';
4260
4353
 
4261
- var _excluded$dj = ["testId", "size", "color", "style", "variant"];
4354
+ var _excluded$dl = ["testId", "size", "color", "style", "variant"];
4262
4355
  var IconGripVertical = React.forwardRef(function (_ref, ref) {
4263
4356
  var _ref$testId = _ref.testId,
4264
4357
  testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
@@ -4267,7 +4360,7 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
4267
4360
  style = _ref.style,
4268
4361
  _ref$variant = _ref.variant,
4269
4362
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4270
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dj);
4363
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dl);
4271
4364
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4272
4365
  var styleProps = {
4273
4366
  size: !size && isInsideButton ? 'medium' : size,
@@ -4303,7 +4396,7 @@ var IconGripVertical = React.forwardRef(function (_ref, ref) {
4303
4396
  });
4304
4397
  IconGripVertical.displayName = 'IconGripVertical';
4305
4398
 
4306
- var _excluded$di = ["testId", "size", "color", "style", "variant"];
4399
+ var _excluded$dk = ["testId", "size", "color", "style", "variant"];
4307
4400
  var IconHouse = React.forwardRef(function (_ref, ref) {
4308
4401
  var _ref$testId = _ref.testId,
4309
4402
  testId = _ref$testId === void 0 ? 'icon-house' : _ref$testId,
@@ -4312,7 +4405,7 @@ var IconHouse = React.forwardRef(function (_ref, ref) {
4312
4405
  style = _ref.style,
4313
4406
  _ref$variant = _ref.variant,
4314
4407
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4315
- props = _objectWithoutPropertiesLoose(_ref, _excluded$di);
4408
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dk);
4316
4409
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4317
4410
  var styleProps = {
4318
4411
  size: !size && isInsideButton ? 'medium' : size,
@@ -4348,7 +4441,7 @@ var IconHouse = React.forwardRef(function (_ref, ref) {
4348
4441
  });
4349
4442
  IconHouse.displayName = 'IconHouse';
4350
4443
 
4351
- var _excluded$dh = ["testId", "size", "color", "style", "variant"];
4444
+ var _excluded$dj = ["testId", "size", "color", "style", "variant"];
4352
4445
  var IconImage = React.forwardRef(function (_ref, ref) {
4353
4446
  var _ref$testId = _ref.testId,
4354
4447
  testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
@@ -4357,7 +4450,7 @@ var IconImage = React.forwardRef(function (_ref, ref) {
4357
4450
  style = _ref.style,
4358
4451
  _ref$variant = _ref.variant,
4359
4452
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4360
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dh);
4453
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dj);
4361
4454
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4362
4455
  var styleProps = {
4363
4456
  size: !size && isInsideButton ? 'medium' : size,
@@ -4393,7 +4486,52 @@ var IconImage = React.forwardRef(function (_ref, ref) {
4393
4486
  });
4394
4487
  IconImage.displayName = 'IconImage';
4395
4488
 
4396
- 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"];
4397
4535
  var IconItalic = React.forwardRef(function (_ref, ref) {
4398
4536
  var _ref$testId = _ref.testId,
4399
4537
  testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
@@ -4402,7 +4540,7 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
4402
4540
  style = _ref.style,
4403
4541
  _ref$variant = _ref.variant,
4404
4542
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4405
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dg);
4543
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dh);
4406
4544
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4407
4545
  var styleProps = {
4408
4546
  size: !size && isInsideButton ? 'medium' : size,
@@ -4438,7 +4576,7 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
4438
4576
  });
4439
4577
  IconItalic.displayName = 'IconItalic';
4440
4578
 
4441
- var _excluded$df = ["testId", "size", "color", "style", "variant"];
4579
+ var _excluded$dg = ["testId", "size", "color", "style", "variant"];
4442
4580
  var IconLink = React.forwardRef(function (_ref, ref) {
4443
4581
  var _ref$testId = _ref.testId,
4444
4582
  testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
@@ -4447,7 +4585,7 @@ var IconLink = React.forwardRef(function (_ref, ref) {
4447
4585
  style = _ref.style,
4448
4586
  _ref$variant = _ref.variant,
4449
4587
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4450
- props = _objectWithoutPropertiesLoose(_ref, _excluded$df);
4588
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$dg);
4451
4589
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4452
4590
  var styleProps = {
4453
4591
  size: !size && isInsideButton ? 'medium' : size,
@@ -4483,7 +4621,7 @@ var IconLink = React.forwardRef(function (_ref, ref) {
4483
4621
  });
4484
4622
  IconLink.displayName = 'IconLink';
4485
4623
 
4486
- var _excluded$de = ["testId", "size", "color", "style", "variant"];
4624
+ var _excluded$df = ["testId", "size", "color", "style", "variant"];
4487
4625
  var IconList = React.forwardRef(function (_ref, ref) {
4488
4626
  var _ref$testId = _ref.testId,
4489
4627
  testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
@@ -4492,7 +4630,7 @@ var IconList = React.forwardRef(function (_ref, ref) {
4492
4630
  style = _ref.style,
4493
4631
  _ref$variant = _ref.variant,
4494
4632
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4495
- props = _objectWithoutPropertiesLoose(_ref, _excluded$de);
4633
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$df);
4496
4634
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4497
4635
  var styleProps = {
4498
4636
  size: !size && isInsideButton ? 'medium' : size,
@@ -4535,7 +4673,7 @@ var IconList = React.forwardRef(function (_ref, ref) {
4535
4673
  });
4536
4674
  IconList.displayName = 'IconList';
4537
4675
 
4538
- var _excluded$dd = ["testId", "size", "color", "style", "variant"];
4676
+ var _excluded$de = ["testId", "size", "color", "style", "variant"];
4539
4677
  var IconListOl = React.forwardRef(function (_ref, ref) {
4540
4678
  var _ref$testId = _ref.testId,
4541
4679
  testId = _ref$testId === void 0 ? 'icon-list-ol' : _ref$testId,
@@ -4544,7 +4682,7 @@ var IconListOl = React.forwardRef(function (_ref, ref) {
4544
4682
  style = _ref.style,
4545
4683
  _ref$variant = _ref.variant,
4546
4684
  variant = _ref$variant === void 0 ? 'outline' : _ref$variant,
4547
- props = _objectWithoutPropertiesLoose(_ref, _excluded$dd);
4685
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$de);
4548
4686
  var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
4549
4687
  var styleProps = {
4550
4688
  size: !size && isInsideButton ? 'medium' : size,
@@ -4580,6 +4718,51 @@ var IconListOl = React.forwardRef(function (_ref, ref) {
4580
4718
  });
4581
4719
  IconListOl.displayName = 'IconListOl';
4582
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
+
4583
4766
  var _excluded$dc = ["testId", "size", "color", "style", "variant"];
4584
4767
  var IconLock = React.forwardRef(function (_ref, ref) {
4585
4768
  var _ref$testId = _ref.testId,
@@ -11132,6 +11315,9 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
11132
11315
  };
11133
11316
  var TimeFieldDropdownTrigger = React.forwardRef(TimeFieldDropdownElement);
11134
11317
 
11318
+ /**
11319
+ * Dropdown is an overlay that reveals a list of actions or options when a user clicks or hovers a trigger element. It is the go-to pattern for contextual menus — things like "Edit, Duplicate, Delete" on a table row, or a set of filter options behind a button.
11320
+ */
11135
11321
  var Dropdown = function Dropdown(_ref) {
11136
11322
  var trigger = _ref.trigger,
11137
11323
  _ref$triggersOn = _ref.triggersOn,
@@ -11907,6 +12093,9 @@ var useCardContext = function useCardContext() {
11907
12093
  };
11908
12094
 
11909
12095
  var _excluded$bl = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
12096
+ /**
12097
+ * Card is a versatile container that groups related content or options into a visually distinct surface. It's used to introduce visual separation between pieces of content without requiring a full page boundary. It is used to perceptually group content into a meaningful whole. Cards are simple container components that can hold whatever content the designer sees fit.
12098
+ */
11910
12099
  var Card = function Card(_ref) {
11911
12100
  var _classnames, _classnames2, _classnames3, _classnames4;
11912
12101
  var children = _ref.children,
@@ -12000,6 +12189,9 @@ var CalloutCard = function CalloutCard(_ref) {
12000
12189
  }, React__default["default"].createElement(IconTimes, null)))));
12001
12190
  };
12002
12191
 
12192
+ /**
12193
+ * Breadcrumbs show the user where they are in the app's hierarchy and let them navigate back up to a parent page. They appear at the top of a page when that page is reached by drilling into a deeper level of the product.
12194
+ */
12003
12195
  var Breadcrumbs = function Breadcrumbs(_ref) {
12004
12196
  var children = _ref.children;
12005
12197
  return React__default["default"].createElement(Inline, {
@@ -12068,6 +12260,9 @@ var PAGE_SIZES = {
12068
12260
  RESTRICTED: 'restricted'
12069
12261
  };
12070
12262
 
12263
+ /**
12264
+ * Page component is used to control the elements within a page like breadcrumbs, title, subtitle, actions, banner, and filter bar.
12265
+ */
12071
12266
  var Page = function Page(_ref) {
12072
12267
  var _classNames;
12073
12268
  var children = _ref.children,
@@ -12155,6 +12350,9 @@ var useModalContext = function useModalContext() {
12155
12350
  };
12156
12351
 
12157
12352
  var _excluded$bk = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
12353
+ /**
12354
+ * Modal is a focused overlay that interrupts the current experience and demands the user's attention. It blocks all interaction with the rest of the page until the user responds — making it best suited for decisions, confirmations, and self-contained flows where that level of focus is warranted.
12355
+ */
12158
12356
  var Modal = function Modal(_ref) {
12159
12357
  var children = _ref.children,
12160
12358
  header = _ref.header,
@@ -12764,7 +12962,9 @@ var StarShape = function StarShape(_ref7) {
12764
12962
  }));
12765
12963
  };
12766
12964
 
12767
- /**Calendar overlay component*/
12965
+ /**
12966
+ * Calendar is a date picker component that allows users to select a single day or a week. Used when you want to trigger it from a custom element such a button.
12967
+ */
12768
12968
  var Calendar = function Calendar(_ref) {
12769
12969
  var _ref$mode = _ref.mode,
12770
12970
  mode = _ref$mode === void 0 ? CALENDAR_MODE.DAY : _ref$mode,
@@ -13026,6 +13226,9 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
13026
13226
  var styles$17 = {"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"};
13027
13227
 
13028
13228
  var _excluded$bi = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "secondaryButton", "testId", "onSetDoNotShowAgainStatus"];
13229
+ /**
13230
+ * Hint Modal is a lightweight modal used to surface tips, guidance, or onboarding callouts to users the first time they encounter a feature or page. Unlike a regular Modal, it is not triggered by a user action — it appears automatically when the user navigates somewhere that warrants a guided introduction. It includes a "Don't show this again" option so users can dismiss it permanently once they've absorbed the information.
13231
+ */
13029
13232
  var HintModal = function HintModal(_ref) {
13030
13233
  var header = _ref.header,
13031
13234
  children = _ref.children,
@@ -13126,6 +13329,9 @@ var HintModal = function HintModal(_ref) {
13126
13329
  }, secondaryButtonUpdated, primaryButtonUpdated)))));
13127
13330
  };
13128
13331
 
13332
+ /**
13333
+ * Popover is a contextual overlay "widget" that appears anchored to a trigger element and can contain rich, interactive content. It sits between a `Tooltip` and a `Modal` in terms of weight — less disruptive than a modal, but capable of real interaction unlike a tooltip. Use it when you need the user to take action in context, without pulling them away from what they were doing.
13334
+ */
13129
13335
  var Popover = function Popover(props) {
13130
13336
  /**
13131
13337
  * We are using the Dropdown component to implement the Popover component because they share a lot of the same functionality and structure.
@@ -13158,6 +13364,9 @@ var BadgeElement = function BadgeElement(_ref, forwardedRef) {
13158
13364
  "data-testid": testId
13159
13365
  }, otherProps), children));
13160
13366
  };
13367
+ /**
13368
+ * Badge is a small circular indicator used to draw attention to something associated with another element — a count, a status, or a quick action.
13369
+ */
13161
13370
  var Badge = React.forwardRef(BadgeElement);
13162
13371
 
13163
13372
  var MenuItem = function MenuItem(_ref) {
@@ -13758,6 +13967,9 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
13758
13967
  };
13759
13968
 
13760
13969
  var _excluded$bg = ["children", "theme", "icon", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
13970
+ /**
13971
+ * InlineBanner displays a contextual message inline within a page or section.
13972
+ */
13761
13973
  var InlineBanner = function InlineBanner(_ref) {
13762
13974
  var _classnames, _classnames2, _classnames3;
13763
13975
  var children = _ref.children,
@@ -13865,6 +14077,9 @@ var ButtonCTA = function ButtonCTA(_ref) {
13865
14077
  };
13866
14078
 
13867
14079
  var _excluded$bf = ["children", "theme", "icon", "hideIcon", "title", "primaryButton", "testId"];
14080
+ /**
14081
+ * MicroBanner is a compact notification component for tight spaces (like top bars).
14082
+ */
13868
14083
  var MicroBanner = function MicroBanner(_ref) {
13869
14084
  var children = _ref.children,
13870
14085
  _ref$theme = _ref.theme,
@@ -13915,6 +14130,9 @@ var PERSISTENT_BANNER_THEME = {
13915
14130
 
13916
14131
  var styles$$ = {"persistent-banner":"_FsCJQ","persistent-banner--info":"_zt-xK","persistent-banner--danger":"_rmUys","persistent-banner--upsell":"_UGrRR","persistent-banner--warning":"_9eFhn","persistent-banner--success":"_hU34n"};
13917
14132
 
14133
+ /**
14134
+ * PersistentBanner displays a full-width message above the main navigation.
14135
+ */
13918
14136
  var PersistentBanner = function PersistentBanner(_ref) {
13919
14137
  var _classNames;
13920
14138
  var _ref$theme = _ref.theme,
@@ -14014,6 +14232,9 @@ var useProgress = function useProgress(progress, maxValue, getMetric) {
14014
14232
 
14015
14233
  var styles$_ = {"circular-progress":"_UI0Fo","circular-progress__label":"_6PNwZ","circular-progress__track":"_alBLB","circular-progress__indicator":"_VADa6"};
14016
14234
 
14235
+ /**
14236
+ * CircularProgress displays a circular track that fills as a count advances toward a total.
14237
+ */
14017
14238
  var CircularProgress = function CircularProgress(_ref) {
14018
14239
  var progress = _ref.progress,
14019
14240
  _ref$maxValue = _ref.maxValue,
@@ -14050,6 +14271,9 @@ var CircularProgress = function CircularProgress(_ref) {
14050
14271
 
14051
14272
  var styles$Z = {"progress-bar":"_fWvQF","progress-bar__indicator":"_vd0xc","progress-bar__indicator--complete":"_D9yNp","progress-bar__steps":"_8kdeO"};
14052
14273
 
14274
+ /**
14275
+ * ProgressBar shows a horizontal bar that fills as a task advances.
14276
+ */
14053
14277
  var ProgressBar = function ProgressBar(_ref) {
14054
14278
  var _classNames;
14055
14279
  var progress = _ref.progress,
@@ -14091,6 +14315,9 @@ var SKELETON_COMPONENT = {
14091
14315
  };
14092
14316
 
14093
14317
  var _excluded$be = ["as", "testId", "width", "height"];
14318
+ /**
14319
+ * Skeleton renders an animated placeholder that mirrors the shape of content while it is loading.
14320
+ */
14094
14321
  var Skeleton = function Skeleton(_ref) {
14095
14322
  var _classnames;
14096
14323
  var as = _ref.as,
@@ -14705,6 +14932,9 @@ var DataTableEmptyState = function DataTableEmptyState(_ref) {
14705
14932
  };
14706
14933
 
14707
14934
  var _excluded$bc = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns", "emptyState"];
14935
+ /**
14936
+ * DataTable displays structured data in rows and columns. Use it when data is inherently tabular — each row represents a record and each column represents an attribute of that record.
14937
+ */
14708
14938
  var DataTable = function DataTable(_ref) {
14709
14939
  var _classNames, _classNames2, _classNames3;
14710
14940
  var items = _ref.items,
@@ -14905,6 +15135,9 @@ var AccordionItem = function AccordionItem(props) {
14905
15135
  var styles$N = {"accordion":"_058SP"};
14906
15136
 
14907
15137
  var _excluded$bb = ["items", "onExpand", "defaultOpenId"];
15138
+ /**
15139
+ * Accordion groups related content into a list of collapsible sections. Only one section can be open at a time, keeping the interface compact while still making all content accessible.
15140
+ */
14908
15141
  var Accordion = function Accordion(_ref) {
14909
15142
  var items = _ref.items,
14910
15143
  onExpand = _ref.onExpand,
@@ -14945,6 +15178,9 @@ var Accordion = function Accordion(_ref) {
14945
15178
 
14946
15179
  var styles$M = {"action-list":"_pWke5","action-list__title":"_p8I7K","action-list__empty-state":"_l-tFB"};
14947
15180
 
15181
+ /**
15182
+ * A list of tasks or items that require user attention and can be completed with an action. Each item should have at least one clear action for the user to take.
15183
+ */
14948
15184
  var ActionList = function ActionList(_ref) {
14949
15185
  var children = _ref.children,
14950
15186
  testId = _ref.testId,
@@ -16073,6 +16309,9 @@ var styles$C = {"form--standard-size":"_8-Ykj"};
16073
16309
 
16074
16310
  var styles$B = {"form-section":"_3uYIj","form-section__title":"_2WdOf","form-section__subtitle":"_zybxx","form-section--no-margin":"_xT-U1"};
16075
16311
 
16312
+ /**
16313
+ * FormSection is a component that groups related form fields together, optionally with a title and subtitle. It can also be rendered as a card for visual separation.
16314
+ */
16076
16315
  var FormSection = function FormSection(_ref) {
16077
16316
  var _classnames;
16078
16317
  var children = _ref.children,
@@ -16131,6 +16370,9 @@ var FormFooterActions = function FormFooterActions(_ref) {
16131
16370
  }, primaryButton, secondaryButton), tertiaryButton);
16132
16371
  };
16133
16372
 
16373
+ /**
16374
+ * FormFooter is meant to be used as the footer of a form, and it contains actions (primary, secondary, tertiary).
16375
+ */
16134
16376
  var FormFooter = function FormFooter(_ref) {
16135
16377
  var children = _ref.children,
16136
16378
  actions = _ref.actions,
@@ -16363,7 +16605,9 @@ var TextFieldElement = function TextFieldElement(_ref, ref) {
16363
16605
  suffix: suffix
16364
16606
  }, React__default["default"].createElement("input", _extends({}, inputProps))));
16365
16607
  };
16366
- /** A basic open input field used to get text from the user, with options to add a prefix or suffix element if necessary. Accepts any characters, so do not use it if you want to limit the format of the input to numbers only. */
16608
+ /**
16609
+ * TextField is a basic open input field used to get text from the user, with options to add a prefix or suffix element if necessary. Accepts any characters, so do not use it if you want to limit the format of the input to numbers only.
16610
+ */
16367
16611
  var TextField = React.forwardRef(TextFieldElement);
16368
16612
 
16369
16613
  var styles$x = {"pill-select-field":"_Yti6k","pill-select-field__creating-input":"_dw-VP","pill-select-field__custom-input":"_JXakU","pill-select-field__add-new-input":"_MsKVV","pill-select-field__creating-custom-input":"_ZxEwG","pill-select-field__removable-icon":"_Odw1V"};
@@ -16582,6 +16826,9 @@ var styles$w = {"week-select-field":"_IYHYX","week-select-field__day":"_JnbPv","
16582
16826
  var toKey = function toKey(d) {
16583
16827
  return d.getFullYear() + "-" + d.getMonth() + "-" + d.getDate();
16584
16828
  };
16829
+ /**
16830
+ * WeekSelectField is a form field that allows the user to select one or more days from a week, displayed as pill-shaped buttons.
16831
+ */
16585
16832
  var WeekSelectField = function WeekSelectField(_ref) {
16586
16833
  var _formikState$value;
16587
16834
  var name = _ref.name,
@@ -18468,6 +18715,9 @@ var PercentageElement = function PercentageElement(_ref, ref) {
18468
18715
  */
18469
18716
  var PercentageField = React.forwardRef(PercentageElement);
18470
18717
 
18718
+ /**
18719
+ * FormFeedback displays contextual feedback for a form field, such as an error message or validation message.
18720
+ */
18471
18721
  var FormFeedback = function FormFeedback(_ref) {
18472
18722
  var children = _ref.children,
18473
18723
  fieldId = _ref.fieldId,
@@ -19449,6 +19699,9 @@ var CountrySelector = function CountrySelector(_ref) {
19449
19699
  };
19450
19700
 
19451
19701
  var _excluded$a_ = ["disabledCountry", "priorityCountries"];
19702
+ /**
19703
+ * PhoneField is a text field that allows the user to input a phone number, with an optional country selector for international numbers.
19704
+ */
19452
19705
  var PhoneField = function PhoneField(_ref) {
19453
19706
  var _classNames;
19454
19707
  var _ref$disabledCountry = _ref.disabledCountry,
@@ -20044,6 +20297,9 @@ var ColorFieldElement = function ColorFieldElement(props, ref) {
20044
20297
  allowCustomColor: props.allowCustomColor
20045
20298
  }));
20046
20299
  };
20300
+ /**
20301
+ * ColorField is a text field that allows the user to select a color from a palette of sequential colors or a custom color picker.
20302
+ */
20047
20303
  var ColorField = React.forwardRef(ColorFieldElement);
20048
20304
 
20049
20305
  /**
@@ -20260,6 +20516,9 @@ function useIsVisibleInViewPort() {
20260
20516
  };
20261
20517
  }
20262
20518
 
20519
+ /**
20520
+ * Avatar represents a person or entity — such as a company, location, department, or role — with a visual identifier. It appears wherever a person or entity's identity needs to be communicated at a glance.
20521
+ */
20263
20522
  var Avatar = function Avatar(_ref) {
20264
20523
  var _classnames;
20265
20524
  var children = _ref.children,
@@ -20318,6 +20577,9 @@ var CHIP_THEME = {
20318
20577
 
20319
20578
  var styles$e = {"chip":"_Cg5Nf","chip__children":"_e3zFF","chip--marketing":"_b60R5","chip--success":"_ItVyo","chip--upsell":"_iUCAH","chip--warning":"_RbXoR","chip--info":"_NiP9z","chip--danger":"_2ltep","chip--ai":"_1ZhCH"};
20320
20579
 
20580
+ /**
20581
+ * Chip is a compact label used to communicate status about a nearby element — things like feature availability, product tier, or release stage. It is visually similar to Pill but serves a distinct purpose: where Pill communicates the status of data or records, Chip communicates the status of the product or interface itself.
20582
+ */
20321
20583
  var Chip = function Chip(_ref) {
20322
20584
  var _classnames;
20323
20585
  var children = _ref.children,
@@ -20379,6 +20641,9 @@ var PillElement = function PillElement(_ref, forwardedRef) {
20379
20641
  className: styles$d['pill__children']
20380
20642
  }, formattedChildren));
20381
20643
  };
20644
+ /**
20645
+ * Pill is a compact status label that communicates the current state of a data record or object. It appears alongside the thing it describes and gives users a quick, at-a-glance read on what state something is in — approved, pending, active, declined, and so on.
20646
+ */
20382
20647
  var Pill = React.forwardRef(PillElement);
20383
20648
 
20384
20649
  var getIllustrationStyles = function getIllustrationStyles(style, theme, size) {
@@ -63523,6 +63788,9 @@ var PrimaryNavHeader = function PrimaryNavHeader(_ref) {
63523
63788
 
63524
63789
  var styles$b = {"primary-nav":"_Smo46","primary-nav--dark":"_-6GAa","primary-nav--collapsed":"_w-QAC","primary-nav__content":"_UCA59","primary-nav--expanded":"_B7Nse"};
63525
63790
 
63791
+ /**
63792
+ * PrimaryNav is a vertical navigation component that provides a consistent way for users to navigate through the main sections of an application.
63793
+ */
63526
63794
  var PrimaryNav = function PrimaryNav(_ref) {
63527
63795
  var children = _ref.children,
63528
63796
  isExpanded = _ref.isExpanded,
@@ -63828,6 +64096,9 @@ function TabsContextProvider(_ref) {
63828
64096
  }, children);
63829
64097
  }
63830
64098
 
64099
+ /**
64100
+ * Tabs organize content into sections within a single view, letting users switch between them without leaving the page.
64101
+ */
63831
64102
  var Tabs = function Tabs(_ref) {
63832
64103
  var children = _ref.children,
63833
64104
  value = _ref.value,
@@ -64075,6 +64346,9 @@ var EmptyStateContainer = function EmptyStateContainer(_ref) {
64075
64346
 
64076
64347
  var styles$1 = {"paywall--as-card":"_Eod9y","paywall--as-card--centered":"_dpIXc"};
64077
64348
 
64349
+ /**
64350
+ * Paywall is a specialised empty state for content that is locked behind a paid plan or add-on the user does not currently have.
64351
+ */
64078
64352
  var Paywall = function Paywall(props) {
64079
64353
  var header = props.header,
64080
64354
  title = props.title,
@@ -64111,6 +64385,9 @@ var Paywall = function Paywall(props) {
64111
64385
 
64112
64386
  var styles = {"empty-state--as-card":"_KzIqD","empty-state--as-card--centered":"_3TdW7"};
64113
64387
 
64388
+ /**
64389
+ * EmptyState component renders a message or illustration when there is no data to display. Most commonly seen in first time interactions with a product or page, but also when data’s been deleted or unavailable.
64390
+ */
64114
64391
  var EmptyState = function EmptyState(props) {
64115
64392
  var header = props.header,
64116
64393
  title = props.title,
@@ -64191,6 +64468,7 @@ exports.IconAnalytics = IconAnalytics;
64191
64468
  exports.IconArrowDown = IconArrowDown;
64192
64469
  exports.IconArrowDownWideShort = IconArrowDownWideShort;
64193
64470
  exports.IconArrowLeft = IconArrowLeft;
64471
+ exports.IconArrowLeftRight = IconArrowLeftRight;
64194
64472
  exports.IconArrowRight = IconArrowRight;
64195
64473
  exports.IconArrowToTop = IconArrowToTop;
64196
64474
  exports.IconArrowTurnDownRight = IconArrowTurnDownRight;
@@ -64290,12 +64568,15 @@ exports.IconHatChef = IconHatChef;
64290
64568
  exports.IconHouse = IconHouse;
64291
64569
  exports.IconImage = IconImage;
64292
64570
  exports.IconInfoCircle = IconInfoCircle;
64571
+ exports.IconInputText = IconInputText;
64293
64572
  exports.IconIslandTropical = IconIslandTropical;
64294
64573
  exports.IconItalic = IconItalic;
64574
+ exports.IconLanguage = IconLanguage;
64295
64575
  exports.IconLaptopSearch = IconLaptopSearch;
64296
64576
  exports.IconLink = IconLink;
64297
64577
  exports.IconList = IconList;
64298
64578
  exports.IconListOl = IconListOl;
64579
+ exports.IconListRadio = IconListRadio;
64299
64580
  exports.IconLock = IconLock;
64300
64581
  exports.IconMagic = IconMagic;
64301
64582
  exports.IconMapMarker = IconMapMarker;