@carbon/ibm-products 2.78.0-rc.0 → 2.79.0-rc.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 (99) hide show
  1. package/css/carbon.css +1762 -1036
  2. package/css/carbon.css.map +1 -1
  3. package/css/index-full-carbon.css +2342 -1239
  4. package/css/index-full-carbon.css.map +1 -1
  5. package/css/index-full-carbon.min.css +1 -1
  6. package/css/index-full-carbon.min.css.map +1 -1
  7. package/css/index-without-carbon-released-only.css +450 -98
  8. package/css/index-without-carbon-released-only.css.map +1 -1
  9. package/css/index-without-carbon-released-only.min.css +1 -1
  10. package/css/index-without-carbon-released-only.min.css.map +1 -1
  11. package/css/index-without-carbon.css +624 -247
  12. package/css/index-without-carbon.css.map +1 -1
  13. package/css/index-without-carbon.min.css +1 -1
  14. package/css/index-without-carbon.min.css.map +1 -1
  15. package/css/index.css +1759 -873
  16. package/css/index.css.map +1 -1
  17. package/css/index.min.css +1 -1
  18. package/css/index.min.css.map +1 -1
  19. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +111 -108
  20. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +1 -1
  21. package/es/components/InterstitialScreen/InterstitialScreenBody.js +15 -8
  22. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +6 -1
  23. package/es/components/InterstitialScreen/InterstitialScreenHeader.d.ts +1 -1
  24. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +1 -1
  25. package/es/components/InterstitialScreen/{_story-assets/InterstitialScreenView/InterstitialScreenView.d.ts → InterstitialScreenView.d.ts} +2 -3
  26. package/es/components/InterstitialScreen/InterstitialScreenView.js +60 -0
  27. package/es/components/InterstitialScreen/index.d.ts +1 -0
  28. package/es/components/Tearsheet/next/Tearsheet.d.ts +85 -0
  29. package/es/components/Tearsheet/next/Tearsheet.js +129 -0
  30. package/es/components/Tearsheet/next/TearsheetBody.d.ts +67 -0
  31. package/es/components/Tearsheet/next/TearsheetBody.js +121 -0
  32. package/es/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  33. package/es/components/Tearsheet/next/TearsheetHeader.js +121 -0
  34. package/es/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  35. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +101 -0
  36. package/es/components/Tearsheet/next/TearsheetHeaderContent.d.ts +28 -0
  37. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +67 -0
  38. package/es/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +22 -0
  39. package/es/components/Tearsheet/next/context.d.ts +26 -0
  40. package/es/components/Tearsheet/next/context.js +26 -0
  41. package/es/components/Tearsheet/next/index.d.ts +12 -0
  42. package/es/components/Tearsheet/next/index.js +8 -0
  43. package/es/components/Toolbar/Toolbar.js +1 -5
  44. package/es/components/TruncatedText/TruncatedText.d.ts +2 -3
  45. package/es/components/TruncatedText/TruncatedText.js +1 -2
  46. package/es/components/TruncatedText/index.d.ts +1 -0
  47. package/es/components/index.d.ts +2 -1
  48. package/es/global/js/hooks/useCollapsible.d.ts +19 -0
  49. package/es/global/js/hooks/useCollapsible.js +68 -0
  50. package/es/global/js/hooks/useMatchMedia.d.ts +13 -0
  51. package/es/global/js/hooks/useMatchMedia.js +33 -0
  52. package/es/index.js +4 -1
  53. package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +845 -805
  54. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +476 -476
  55. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +111 -108
  56. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +1 -1
  57. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +15 -8
  58. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +6 -1
  59. package/lib/components/InterstitialScreen/InterstitialScreenHeader.d.ts +1 -1
  60. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +1 -1
  61. package/lib/components/InterstitialScreen/{_story-assets/InterstitialScreenView/InterstitialScreenView.d.ts → InterstitialScreenView.d.ts} +2 -3
  62. package/lib/components/InterstitialScreen/InterstitialScreenView.js +62 -0
  63. package/lib/components/InterstitialScreen/index.d.ts +1 -0
  64. package/lib/components/Tearsheet/next/Tearsheet.d.ts +85 -0
  65. package/lib/components/Tearsheet/next/Tearsheet.js +131 -0
  66. package/lib/components/Tearsheet/next/TearsheetBody.d.ts +67 -0
  67. package/lib/components/Tearsheet/next/TearsheetBody.js +128 -0
  68. package/lib/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  69. package/lib/components/Tearsheet/next/TearsheetHeader.js +127 -0
  70. package/lib/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  71. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +104 -0
  72. package/lib/components/Tearsheet/next/TearsheetHeaderContent.d.ts +28 -0
  73. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +71 -0
  74. package/lib/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +22 -0
  75. package/lib/components/Tearsheet/next/context.d.ts +26 -0
  76. package/lib/components/Tearsheet/next/context.js +29 -0
  77. package/lib/components/Tearsheet/next/index.d.ts +12 -0
  78. package/lib/components/Tearsheet/next/index.js +14 -0
  79. package/lib/components/Toolbar/Toolbar.js +1 -5
  80. package/lib/components/TruncatedText/TruncatedText.d.ts +2 -3
  81. package/lib/components/TruncatedText/TruncatedText.js +4 -3
  82. package/lib/components/TruncatedText/index.d.ts +1 -0
  83. package/lib/components/index.d.ts +2 -1
  84. package/lib/global/js/hooks/useCollapsible.d.ts +19 -0
  85. package/lib/global/js/hooks/useCollapsible.js +70 -0
  86. package/lib/global/js/hooks/useMatchMedia.d.ts +13 -0
  87. package/lib/global/js/hooks/useMatchMedia.js +35 -0
  88. package/lib/index.js +15 -14
  89. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +863 -823
  90. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +477 -477
  91. package/package.json +16 -15
  92. package/scss/components/FilterSummary/_filter-summary.scss +1 -1
  93. package/scss/components/PageHeader/_page-header.scss +4 -0
  94. package/scss/components/SidePanel/_side-panel.scss +5 -5
  95. package/scss/components/TagOverflow/_tag-overflow.scss +38 -38
  96. package/scss/components/TagSet/_tag-set.scss +28 -12
  97. package/scss/components/Tearsheet/_tearsheet.scss +8 -1
  98. package/scss/components/Tearsheet/_tearsheet_next.scss +408 -0
  99. package/telemetry.yml +32 -6
@@ -11,8 +11,8 @@ var React = require('react');
11
11
  var Icon = require('../Icon.js');
12
12
  var iconPropTypesC5chbmyn = require('../iconPropTypes-C5chbmyn.js');
13
13
 
14
- var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path0, _path1, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _circle, _circle2, _path85, _path86, _path87, _path88, _path89, _path90, _path91, _circle3, _path92, _path93, _circle4, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _circle5, _path105, _path106, _circle6, _path107, _circle7, _circle8, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _circle9, _path115, _path116, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _circle0, _path158, _circle1, _path159, _path160, _circle10, _path161, _circle11, _path162, _path163, _path164, _circle12, _path165, _circle13, _path166, _path167, _circle14, _path168, _circle15, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _circle16, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _circle17, _circle18, _circle19, _circle20, _circle21, _path188, _path189, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _circle22, _path200, _path201, _path202, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219;
15
- const ChartWaterfall = /*#__PURE__*/React.forwardRef(function ChartWaterfall(_ref, ref) {
14
+ var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path0, _path1, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _circle, _circle2, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _circle3, _path93, _path94, _circle4, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _circle5, _path106, _path107, _circle6, _path108, _circle7, _circle8, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _circle9, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _circle0, _path160, _circle1, _path161, _path162, _circle10, _path163, _circle11, _path164, _path165, _path166, _circle12, _path167, _circle13, _path168, _path169, _circle14, _path170, _circle15, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _circle16, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _circle17, _circle18, _circle19, _circle20, _circle21, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _circle22, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219, _path220;
15
+ const ChartViolinPlot = /*#__PURE__*/React.forwardRef(function ChartViolinPlot(_ref, ref) {
16
16
  let {
17
17
  children,
18
18
  size = 16,
@@ -27,15 +27,15 @@ const ChartWaterfall = /*#__PURE__*/React.forwardRef(function ChartWaterfall(_re
27
27
  fill: "currentColor",
28
28
  ...rest
29
29
  }, _path || (_path = /*#__PURE__*/React.createElement("path", {
30
- d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
30
+ d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
31
31
  })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
32
- d: "M14 4H16V18H14z"
32
+ d: "M14.86 7.8232L13 4.7231V2H11V4.7231l-1.86 3.1A7.9986 7.9986 0 008 11.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V19.2769l1.86-3.1A7.9986 7.9986 0 0016 12.061v-.122A7.9961 7.9961 0 0014.86 7.8232zM12 6.9434l1.145 1.9087A6.0027 6.0027 0 0113.9185 11h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0110.0815 13h3.837a6.0086 6.0086 0 01-.7735 2.1484zM27.86 11.8232L26 8.7231V2H24V8.7231l-1.86 3.1A7.9986 7.9986 0 0021 15.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V23.2769l1.86-3.1A7.9986 7.9986 0 0029 16.061v-.122A7.9961 7.9961 0 0027.86 11.8232zm-2.86-.88l1.145 1.9087A6.0027 6.0027 0 0126.9185 15h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0123.0815 17h3.837a6.0086 6.0086 0 01-.7735 2.1484z"
33
33
  })), children);
34
34
  });
35
35
  if (process.env.NODE_ENV !== "production") {
36
- ChartWaterfall.propTypes = iconPropTypesC5chbmyn.i;
36
+ ChartViolinPlot.propTypes = iconPropTypesC5chbmyn.i;
37
37
  }
38
- const ChartWinLoss = /*#__PURE__*/React.forwardRef(function ChartWinLoss(_ref2, ref) {
38
+ const ChartWaterfall = /*#__PURE__*/React.forwardRef(function ChartWaterfall(_ref2, ref) {
39
39
  let {
40
40
  children,
41
41
  size = 16,
@@ -50,18 +50,41 @@ const ChartWinLoss = /*#__PURE__*/React.forwardRef(function ChartWinLoss(_ref2,
50
50
  fill: "currentColor",
51
51
  ...rest
52
52
  }, _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
53
+ d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
54
+ })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
55
+ d: "M14 4H16V18H14z"
56
+ })), children);
57
+ });
58
+ if (process.env.NODE_ENV !== "production") {
59
+ ChartWaterfall.propTypes = iconPropTypesC5chbmyn.i;
60
+ }
61
+ const ChartWinLoss = /*#__PURE__*/React.forwardRef(function ChartWinLoss(_ref3, ref) {
62
+ let {
63
+ children,
64
+ size = 16,
65
+ ...rest
66
+ } = _ref3;
67
+ return /*#__PURE__*/React.createElement(Icon.default, {
68
+ width: size,
69
+ height: size,
70
+ ref: ref,
71
+ xmlns: "http://www.w3.org/2000/svg",
72
+ viewBox: "0 0 32 32",
73
+ fill: "currentColor",
74
+ ...rest
75
+ }, _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
53
76
  d: "M30,15H16V6a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,6v9H2v2H16v9a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V17h2ZM6,6h8v9H6ZM26,26H18V17h8Z"
54
77
  })), children);
55
78
  });
56
79
  if (process.env.NODE_ENV !== "production") {
57
80
  ChartWinLoss.propTypes = iconPropTypesC5chbmyn.i;
58
81
  }
59
- const Chat = /*#__PURE__*/React.forwardRef(function Chat(_ref3, ref) {
82
+ const Chat = /*#__PURE__*/React.forwardRef(function Chat(_ref4, ref) {
60
83
  let {
61
84
  children,
62
85
  size = 16,
63
86
  ...rest
64
- } = _ref3;
87
+ } = _ref4;
65
88
  return /*#__PURE__*/React.createElement(Icon.default, {
66
89
  width: size,
67
90
  height: size,
@@ -70,21 +93,21 @@ const Chat = /*#__PURE__*/React.forwardRef(function Chat(_ref3, ref) {
70
93
  viewBox: "0 0 32 32",
71
94
  fill: "currentColor",
72
95
  ...rest
73
- }, _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
96
+ }, _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
74
97
  d: "M17.74,30,16,29l4-7h6a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2H6A2,2,0,0,0,4,8V20a2,2,0,0,0,2,2h9v2H6a4,4,0,0,1-4-4V8A4,4,0,0,1,6,4H26a4,4,0,0,1,4,4V20a4,4,0,0,1-4,4H21.16Z"
75
- })), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
98
+ })), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
76
99
  d: "M8 10H24V12H8zM8 16H18V18H8z"
77
100
  })), children);
78
101
  });
79
102
  if (process.env.NODE_ENV !== "production") {
80
103
  Chat.propTypes = iconPropTypesC5chbmyn.i;
81
104
  }
82
- const ChatLaunch = /*#__PURE__*/React.forwardRef(function ChatLaunch(_ref4, ref) {
105
+ const ChatLaunch = /*#__PURE__*/React.forwardRef(function ChatLaunch(_ref5, ref) {
83
106
  let {
84
107
  children,
85
108
  size = 16,
86
109
  ...rest
87
- } = _ref4;
110
+ } = _ref5;
88
111
  return /*#__PURE__*/React.createElement(Icon.default, {
89
112
  width: size,
90
113
  height: size,
@@ -93,19 +116,19 @@ const ChatLaunch = /*#__PURE__*/React.forwardRef(function ChatLaunch(_ref4, ref)
93
116
  viewBox: "0 0 32 32",
94
117
  fill: "currentColor",
95
118
  ...rest
96
- }, _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
119
+ }, _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
97
120
  d: "M22 4L22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4zM28 16v4a1.9965 1.9965 0 01-2 2H20l-4 7 1.7358 1 3.4288-6H26a3.9992 3.9992 0 004-4V16zM4 20V8A1.9965 1.9965 0 016 6H18V4H6A3.9986 3.9986 0 002 8V20a3.9992 3.9992 0 004 4h9V22H6A1.9965 1.9965 0 014 20z"
98
121
  })), children);
99
122
  });
100
123
  if (process.env.NODE_ENV !== "production") {
101
124
  ChatLaunch.propTypes = iconPropTypesC5chbmyn.i;
102
125
  }
103
- const ChatOff = /*#__PURE__*/React.forwardRef(function ChatOff(_ref5, ref) {
126
+ const ChatOff = /*#__PURE__*/React.forwardRef(function ChatOff(_ref6, ref) {
104
127
  let {
105
128
  children,
106
129
  size = 16,
107
130
  ...rest
108
- } = _ref5;
131
+ } = _ref6;
109
132
  return /*#__PURE__*/React.createElement(Icon.default, {
110
133
  width: size,
111
134
  height: size,
@@ -114,19 +137,19 @@ const ChatOff = /*#__PURE__*/React.forwardRef(function ChatOff(_ref5, ref) {
114
137
  viewBox: "0 0 32 32",
115
138
  fill: "currentColor",
116
139
  ...rest
117
- }, _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
140
+ }, _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
118
141
  d: "M28 8V21h2V8a3.9986 3.9986 0 00-4-4H8.2429l2 2H26A1.9965 1.9965 0 0128 8zM30 28.5859L3.4141 2 2 3.4141 3.5039 4.918A3.9181 3.9181 0 002 8V20a3.9992 3.9992 0 004 4h6V22H6a1.9965 1.9965 0 01-2-2V8a1.9814 1.9814 0 01.9194-1.6665L20.5859 22H17l-4 7 1.7358 1 3.4288-6h4.4213l6 6z"
119
142
  })), children);
120
143
  });
121
144
  if (process.env.NODE_ENV !== "production") {
122
145
  ChatOff.propTypes = iconPropTypesC5chbmyn.i;
123
146
  }
124
- const ChatOperational = /*#__PURE__*/React.forwardRef(function ChatOperational(_ref6, ref) {
147
+ const ChatOperational = /*#__PURE__*/React.forwardRef(function ChatOperational(_ref7, ref) {
125
148
  let {
126
149
  children,
127
150
  size = 16,
128
151
  ...rest
129
- } = _ref6;
152
+ } = _ref7;
130
153
  return /*#__PURE__*/React.createElement(Icon.default, {
131
154
  width: size,
132
155
  height: size,
@@ -135,23 +158,23 @@ const ChatOperational = /*#__PURE__*/React.forwardRef(function ChatOperational(_
135
158
  viewBox: "0 0 32 32",
136
159
  fill: "currentColor",
137
160
  ...rest
138
- }, _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
161
+ }, _path0 || (_path0 = /*#__PURE__*/React.createElement("path", {
139
162
  d: "M15.586 10.414L19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z"
140
- })), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
163
+ })), _path1 || (_path1 = /*#__PURE__*/React.createElement("path", {
141
164
  d: "M20.586 10.414L24.166 14 24.166 14 20.584 17.587 22 19 27 14 22 9 20.586 10.414zM10 9L11.593 12 15 12.414 12.5 14.667 13 18 10 16.125 7 18 7.5 14.667 5 12.414 8.5 12 10 9z"
142
- })), _path0 || (_path0 = /*#__PURE__*/React.createElement("path", {
165
+ })), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
143
166
  d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
144
167
  })), children);
145
168
  });
146
169
  if (process.env.NODE_ENV !== "production") {
147
170
  ChatOperational.propTypes = iconPropTypesC5chbmyn.i;
148
171
  }
149
- const ChatBot = /*#__PURE__*/React.forwardRef(function ChatBot(_ref7, ref) {
172
+ const ChatBot = /*#__PURE__*/React.forwardRef(function ChatBot(_ref8, ref) {
150
173
  let {
151
174
  children,
152
175
  size = 16,
153
176
  ...rest
154
- } = _ref7;
177
+ } = _ref8;
155
178
  return /*#__PURE__*/React.createElement(Icon.default, {
156
179
  width: size,
157
180
  height: size,
@@ -160,21 +183,21 @@ const ChatBot = /*#__PURE__*/React.forwardRef(function ChatBot(_ref7, ref) {
160
183
  viewBox: "0 0 32 32",
161
184
  fill: "currentColor",
162
185
  ...rest
163
- }, _path1 || (_path1 = /*#__PURE__*/React.createElement("path", {
186
+ }, _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
164
187
  d: "M16 19a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0116 19zM20 8a2 2 0 102 2A1.9806 1.9806 0 0020 8zM12 8a2 2 0 102 2A1.9806 1.9806 0 0012 8z"
165
- })), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
188
+ })), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
166
189
  d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V6a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,6V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V6A3.9988,3.9988,0,0,1,6,2H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
167
190
  })), children);
168
191
  });
169
192
  if (process.env.NODE_ENV !== "production") {
170
193
  ChatBot.propTypes = iconPropTypesC5chbmyn.i;
171
194
  }
172
- const Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref8, ref) {
195
+ const Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref9, ref) {
173
196
  let {
174
197
  children,
175
198
  size = 16,
176
199
  ...rest
177
- } = _ref8;
200
+ } = _ref9;
178
201
  return /*#__PURE__*/React.createElement(Icon.default, {
179
202
  width: size,
180
203
  height: size,
@@ -183,19 +206,19 @@ const Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref8, ref) {
183
206
  viewBox: "0 0 32 32",
184
207
  fill: "currentColor",
185
208
  ...rest
186
- }, _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
209
+ }, _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
187
210
  d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z"
188
211
  })), children);
189
212
  });
190
213
  if (process.env.NODE_ENV !== "production") {
191
214
  Checkbox.propTypes = iconPropTypesC5chbmyn.i;
192
215
  }
193
- const CheckboxChecked = /*#__PURE__*/React.forwardRef(function CheckboxChecked(_ref9, ref) {
216
+ const CheckboxChecked = /*#__PURE__*/React.forwardRef(function CheckboxChecked(_ref10, ref) {
194
217
  let {
195
218
  children,
196
219
  size = 16,
197
220
  ...rest
198
- } = _ref9;
221
+ } = _ref10;
199
222
  return /*#__PURE__*/React.createElement(Icon.default, {
200
223
  width: size,
201
224
  height: size,
@@ -204,21 +227,21 @@ const CheckboxChecked = /*#__PURE__*/React.forwardRef(function CheckboxChecked(_
204
227
  viewBox: "0 0 32 32",
205
228
  fill: "currentColor",
206
229
  ...rest
207
- }, _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
230
+ }, _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
208
231
  d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z"
209
- })), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
232
+ })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
210
233
  d: "M14 21.5L9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z"
211
234
  })), children);
212
235
  });
213
236
  if (process.env.NODE_ENV !== "production") {
214
237
  CheckboxChecked.propTypes = iconPropTypesC5chbmyn.i;
215
238
  }
216
- const CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxCheckedFilled(_ref10, ref) {
239
+ const CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxCheckedFilled(_ref11, ref) {
217
240
  let {
218
241
  children,
219
242
  size = 16,
220
243
  ...rest
221
- } = _ref10;
244
+ } = _ref11;
222
245
  return /*#__PURE__*/React.createElement(Icon.default, {
223
246
  width: size,
224
247
  height: size,
@@ -227,9 +250,9 @@ const CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxChe
227
250
  viewBox: "0 0 32 32",
228
251
  fill: "currentColor",
229
252
  ...rest
230
- }, _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
253
+ }, _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
231
254
  d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z"
232
- })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
255
+ })), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
233
256
  fill: "none",
234
257
  d: "M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z",
235
258
  "data-icon-path": "inner-path"
@@ -238,12 +261,12 @@ const CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxChe
238
261
  if (process.env.NODE_ENV !== "production") {
239
262
  CheckboxCheckedFilled.propTypes = iconPropTypesC5chbmyn.i;
240
263
  }
241
- const CheckboxIndeterminate = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminate(_ref11, ref) {
264
+ const CheckboxIndeterminate = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminate(_ref12, ref) {
242
265
  let {
243
266
  children,
244
267
  size = 16,
245
268
  ...rest
246
- } = _ref11;
269
+ } = _ref12;
247
270
  return /*#__PURE__*/React.createElement(Icon.default, {
248
271
  width: size,
249
272
  height: size,
@@ -252,21 +275,21 @@ const CheckboxIndeterminate = /*#__PURE__*/React.forwardRef(function CheckboxInd
252
275
  viewBox: "0 0 32 32",
253
276
  fill: "currentColor",
254
277
  ...rest
255
- }, _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
278
+ }, _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
256
279
  d: "M10 14H22V18H10z"
257
- })), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
280
+ })), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
258
281
  d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z"
259
282
  })), children);
260
283
  });
261
284
  if (process.env.NODE_ENV !== "production") {
262
285
  CheckboxIndeterminate.propTypes = iconPropTypesC5chbmyn.i;
263
286
  }
264
- const CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminateFilled(_ref12, ref) {
287
+ const CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminateFilled(_ref13, ref) {
265
288
  let {
266
289
  children,
267
290
  size = 16,
268
291
  ...rest
269
- } = _ref12;
292
+ } = _ref13;
270
293
  return /*#__PURE__*/React.createElement(Icon.default, {
271
294
  width: size,
272
295
  height: size,
@@ -275,9 +298,9 @@ const CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function Check
275
298
  viewBox: "0 0 32 32",
276
299
  fill: "currentColor",
277
300
  ...rest
278
- }, _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
301
+ }, _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
279
302
  d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM22,18H10V14H22Z"
280
- })), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
303
+ })), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
281
304
  fill: "none",
282
305
  d: "M22,18H10V14H22Z",
283
306
  "data-icon-path": "inner-path"
@@ -286,12 +309,12 @@ const CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function Check
286
309
  if (process.env.NODE_ENV !== "production") {
287
310
  CheckboxIndeterminateFilled.propTypes = iconPropTypesC5chbmyn.i;
288
311
  }
289
- const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref13, ref) {
312
+ const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref14, ref) {
290
313
  let {
291
314
  children,
292
315
  size = 16,
293
316
  ...rest
294
- } = _ref13;
317
+ } = _ref14;
295
318
  if (size === 20 || size === "20" || size === "20px") {
296
319
  return /*#__PURE__*/React.createElement(Icon.default, {
297
320
  width: size,
@@ -301,9 +324,9 @@ const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref13, ref)
301
324
  viewBox: "0 0 20 20",
302
325
  fill: "currentColor",
303
326
  ...rest
304
- }, _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
327
+ }, _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
305
328
  d: "M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
306
- })), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
329
+ })), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
307
330
  d: "M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
308
331
  })), children);
309
332
  }
@@ -316,7 +339,7 @@ const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref13, ref)
316
339
  viewBox: "0 0 24 24",
317
340
  fill: "currentColor",
318
341
  ...rest
319
- }, _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
342
+ }, _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
320
343
  d: "M10 15.9L4.7 10.6 3.6 11.6 8.9 16.9 10 18 20.6 7.4 19.5 6.3z"
321
344
  })), children);
322
345
  }
@@ -328,19 +351,19 @@ const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref13, ref)
328
351
  viewBox: "0 0 32 32",
329
352
  fill: "currentColor",
330
353
  ...rest
331
- }, _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
354
+ }, _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
332
355
  d: "M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"
333
356
  })), children);
334
357
  });
335
358
  if (process.env.NODE_ENV !== "production") {
336
359
  Checkmark.propTypes = iconPropTypesC5chbmyn.i;
337
360
  }
338
- const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_ref14, ref) {
361
+ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_ref15, ref) {
339
362
  let {
340
363
  children,
341
364
  size = 16,
342
365
  ...rest
343
- } = _ref14;
366
+ } = _ref15;
344
367
  if (size === 16 || size === "16" || size === "16px") {
345
368
  return /*#__PURE__*/React.createElement(Icon.default, {
346
369
  width: size,
@@ -350,9 +373,9 @@ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_
350
373
  viewBox: "0 0 16 16",
351
374
  fill: "currentColor",
352
375
  ...rest
353
- }, _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
376
+ }, _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
354
377
  d: "M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"
355
- })), _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
378
+ })), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
356
379
  d: "M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z",
357
380
  "data-icon-path": "inner-path",
358
381
  opacity: "0"
@@ -367,9 +390,9 @@ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_
367
390
  viewBox: "0 0 20 20",
368
391
  fill: "currentColor",
369
392
  ...rest
370
- }, _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
393
+ }, _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
371
394
  d: "M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z"
372
- })), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
395
+ })), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
373
396
  fill: "none",
374
397
  d: "M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z",
375
398
  "data-icon-path": "inner-path",
@@ -385,9 +408,9 @@ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_
385
408
  viewBox: "0 0 24 24",
386
409
  fill: "currentColor",
387
410
  ...rest
388
- }, _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
411
+ }, _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
389
412
  d: "M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z"
390
- })), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
413
+ })), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
391
414
  fill: "none",
392
415
  d: "M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z",
393
416
  "data-icon-path": "inner-path",
@@ -402,9 +425,9 @@ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_
402
425
  viewBox: "0 0 32 32",
403
426
  fill: "currentColor",
404
427
  ...rest
405
- }, _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
428
+ }, _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
406
429
  d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z"
407
- })), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
430
+ })), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
408
431
  fill: "none",
409
432
  d: "M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z",
410
433
  "data-icon-path": "inner-path"
@@ -413,12 +436,12 @@ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_
413
436
  if (process.env.NODE_ENV !== "production") {
414
437
  CheckmarkFilled.propTypes = iconPropTypesC5chbmyn.i;
415
438
  }
416
- const CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFilledError(_ref15, ref) {
439
+ const CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFilledError(_ref16, ref) {
417
440
  let {
418
441
  children,
419
442
  size = 16,
420
443
  ...rest
421
- } = _ref15;
444
+ } = _ref16;
422
445
  return /*#__PURE__*/React.createElement(Icon.default, {
423
446
  width: size,
424
447
  height: size,
@@ -427,11 +450,11 @@ const CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFil
427
450
  viewBox: "0 0 32 32",
428
451
  fill: "currentColor",
429
452
  ...rest
430
- }, _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
453
+ }, _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
431
454
  d: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z"
432
- })), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
455
+ })), _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
433
456
  d: "M14,2a12,12,0,1,0,2,23.82V24a8,8,0,0,1,8-8h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
434
- })), _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
457
+ })), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
435
458
  fill: "none",
436
459
  d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
437
460
  "data-icon-path": "inner-path"
@@ -440,12 +463,12 @@ const CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFil
440
463
  if (process.env.NODE_ENV !== "production") {
441
464
  CheckmarkFilledError.propTypes = iconPropTypesC5chbmyn.i;
442
465
  }
443
- const CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkFilledWarning(_ref16, ref) {
466
+ const CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkFilledWarning(_ref17, ref) {
444
467
  let {
445
468
  children,
446
469
  size = 16,
447
470
  ...rest
448
- } = _ref16;
471
+ } = _ref17;
449
472
  return /*#__PURE__*/React.createElement(Icon.default, {
450
473
  width: size,
451
474
  height: size,
@@ -454,11 +477,11 @@ const CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkF
454
477
  viewBox: "0 0 32 32",
455
478
  fill: "currentColor",
456
479
  ...rest
457
- }, _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
480
+ }, _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
458
481
  d: "M14,2a12,12,0,1,0,3.3928,23.5059l3.9246-7.8492A2.9846,2.9846,0,0,1,24,16h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
459
- })), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
482
+ })), _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
460
483
  d: "M27.38,28H20.6178L24,21.2358ZM24,18a1,1,0,0,0-.8947.5527l-5,10A1.0005,1.0005,0,0,0,19,30H29a1,1,0,0,0,.9214-1.3892L24.8946,18.5527A1,1,0,0,0,24,18Z"
461
- })), _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
484
+ })), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
462
485
  fill: "none",
463
486
  d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
464
487
  "data-icon-path": "inner-path"
@@ -467,12 +490,12 @@ const CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkF
467
490
  if (process.env.NODE_ENV !== "production") {
468
491
  CheckmarkFilledWarning.propTypes = iconPropTypesC5chbmyn.i;
469
492
  }
470
- const CheckmarkOutline = /*#__PURE__*/React.forwardRef(function CheckmarkOutline(_ref17, ref) {
493
+ const CheckmarkOutline = /*#__PURE__*/React.forwardRef(function CheckmarkOutline(_ref18, ref) {
471
494
  let {
472
495
  children,
473
496
  size = 16,
474
497
  ...rest
475
- } = _ref17;
498
+ } = _ref18;
476
499
  return /*#__PURE__*/React.createElement(Icon.default, {
477
500
  width: size,
478
501
  height: size,
@@ -481,21 +504,21 @@ const CheckmarkOutline = /*#__PURE__*/React.forwardRef(function CheckmarkOutline
481
504
  viewBox: "0 0 32 32",
482
505
  fill: "currentColor",
483
506
  ...rest
484
- }, _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
507
+ }, _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
485
508
  d: "M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"
486
- })), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
509
+ })), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
487
510
  d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"
488
511
  })), children);
489
512
  });
490
513
  if (process.env.NODE_ENV !== "production") {
491
514
  CheckmarkOutline.propTypes = iconPropTypesC5chbmyn.i;
492
515
  }
493
- const CheckmarkOutlineError = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineError(_ref18, ref) {
516
+ const CheckmarkOutlineError = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineError(_ref19, ref) {
494
517
  let {
495
518
  children,
496
519
  size = 16,
497
520
  ...rest
498
- } = _ref18;
521
+ } = _ref19;
499
522
  return /*#__PURE__*/React.createElement(Icon.default, {
500
523
  width: size,
501
524
  height: size,
@@ -504,21 +527,21 @@ const CheckmarkOutlineError = /*#__PURE__*/React.forwardRef(function CheckmarkOu
504
527
  viewBox: "0 0 32 32",
505
528
  fill: "currentColor",
506
529
  ...rest
507
- }, _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
530
+ }, _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
508
531
  d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
509
- })), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
532
+ })), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
510
533
  d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM30 24a6 6 0 10-6 6A6.0066 6.0066 0 0030 24zm-2 0a3.9521 3.9521 0 01-.5669 2.019L21.981 20.5669A3.9529 3.9529 0 0124 20 4.0045 4.0045 0 0128 24zm-8 0a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0124 28 4.0045 4.0045 0 0120 24z"
511
534
  })), children);
512
535
  });
513
536
  if (process.env.NODE_ENV !== "production") {
514
537
  CheckmarkOutlineError.propTypes = iconPropTypesC5chbmyn.i;
515
538
  }
516
- const CheckmarkOutlineWarning = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineWarning(_ref19, ref) {
539
+ const CheckmarkOutlineWarning = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineWarning(_ref20, ref) {
517
540
  let {
518
541
  children,
519
542
  size = 16,
520
543
  ...rest
521
- } = _ref19;
544
+ } = _ref20;
522
545
  return /*#__PURE__*/React.createElement(Icon.default, {
523
546
  width: size,
524
547
  height: size,
@@ -527,21 +550,21 @@ const CheckmarkOutlineWarning = /*#__PURE__*/React.forwardRef(function Checkmark
527
550
  viewBox: "0 0 32 32",
528
551
  fill: "currentColor",
529
552
  ...rest
530
- }, _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
553
+ }, _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
531
554
  d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
532
- })), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
555
+ })), _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
533
556
  d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM27.38 28H20.6178L24 21.2358zM24 18a1 1 0 00-.8947.5527l-5 10A1.0005 1.0005 0 0019 30H29a1 1 0 00.9214-1.3892L24.8946 18.5527A1 1 0 0024 18z"
534
557
  })), children);
535
558
  });
536
559
  if (process.env.NODE_ENV !== "production") {
537
560
  CheckmarkOutlineWarning.propTypes = iconPropTypesC5chbmyn.i;
538
561
  }
539
- const Chemistry = /*#__PURE__*/React.forwardRef(function Chemistry(_ref20, ref) {
562
+ const Chemistry = /*#__PURE__*/React.forwardRef(function Chemistry(_ref21, ref) {
540
563
  let {
541
564
  children,
542
565
  size = 16,
543
566
  ...rest
544
- } = _ref20;
567
+ } = _ref21;
545
568
  return /*#__PURE__*/React.createElement(Icon.default, {
546
569
  width: size,
547
570
  height: size,
@@ -550,19 +573,19 @@ const Chemistry = /*#__PURE__*/React.forwardRef(function Chemistry(_ref20, ref)
550
573
  viewBox: "0 0 32 32",
551
574
  fill: "currentColor",
552
575
  ...rest
553
- }, _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
576
+ }, _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
554
577
  d: "M27.2314,23.6182,20,13.6748V4h2V2H10V4h2v9.6748L4.7686,23.6182A4.0183,4.0183,0,0,0,8.0186,30H23.9814a4.0183,4.0183,0,0,0,3.25-6.3818ZM14,14.3252V4h4V14.3252L20.6728,18H11.3272ZM23.9814,28H8.0186a2.0192,2.0192,0,0,1-1.6329-3.2061L9.8726,20H22.1274l3.4869,4.7939A2.0192,2.0192,0,0,1,23.9814,28Z"
555
578
  })), children);
556
579
  });
557
580
  if (process.env.NODE_ENV !== "production") {
558
581
  Chemistry.propTypes = iconPropTypesC5chbmyn.i;
559
582
  }
560
- const ChemistryReference = /*#__PURE__*/React.forwardRef(function ChemistryReference(_ref21, ref) {
583
+ const ChemistryReference = /*#__PURE__*/React.forwardRef(function ChemistryReference(_ref22, ref) {
561
584
  let {
562
585
  children,
563
586
  size = 16,
564
587
  ...rest
565
- } = _ref21;
588
+ } = _ref22;
566
589
  return /*#__PURE__*/React.createElement(Icon.default, {
567
590
  width: size,
568
591
  height: size,
@@ -571,21 +594,21 @@ const ChemistryReference = /*#__PURE__*/React.forwardRef(function ChemistryRefer
571
594
  viewBox: "0 0 32 32",
572
595
  fill: "currentColor",
573
596
  ...rest
574
- }, _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
597
+ }, _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
575
598
  d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
576
- })), _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
599
+ })), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
577
600
  d: "M20,13.67V4h2V2H10V4h2v9.67L9.58,17h2.4767L14,14.33V4h4V14.33l7.61,10.46a2.0133,2.0133,0,0,1-.44,2.82,2.0406,2.0406,0,0,1-1.19.39H15v2h8.98a4.0154,4.0154,0,0,0,3.25-6.38Z"
578
601
  })), children);
579
602
  });
580
603
  if (process.env.NODE_ENV !== "production") {
581
604
  ChemistryReference.propTypes = iconPropTypesC5chbmyn.i;
582
605
  }
583
- const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref22, ref) {
606
+ const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref23, ref) {
584
607
  let {
585
608
  children,
586
609
  size = 16,
587
610
  ...rest
588
- } = _ref22;
611
+ } = _ref23;
589
612
  if (size === "glyph" || size === "glyph" || size === "glyphpx") {
590
613
  return /*#__PURE__*/React.createElement(Icon.default, {
591
614
  width: size,
@@ -595,7 +618,7 @@ const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref22, r
595
618
  viewBox: "0 0 10 6",
596
619
  fill: "currentColor",
597
620
  ...rest
598
- }, _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
621
+ }, _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
599
622
  d: "M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z"
600
623
  })), children);
601
624
  }
@@ -608,7 +631,7 @@ const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref22, r
608
631
  viewBox: "0 0 16 16",
609
632
  fill: "currentColor",
610
633
  ...rest
611
- }, _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
634
+ }, _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
612
635
  d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"
613
636
  })), children);
614
637
  }
@@ -620,19 +643,19 @@ const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref22, r
620
643
  viewBox: "0 0 32 32",
621
644
  fill: "currentColor",
622
645
  ...rest
623
- }, _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
646
+ }, _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
624
647
  d: "M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z"
625
648
  })), children);
626
649
  });
627
650
  if (process.env.NODE_ENV !== "production") {
628
651
  ChevronDown.propTypes = iconPropTypesC5chbmyn.i;
629
652
  }
630
- const ChevronDownOutline = /*#__PURE__*/React.forwardRef(function ChevronDownOutline(_ref23, ref) {
653
+ const ChevronDownOutline = /*#__PURE__*/React.forwardRef(function ChevronDownOutline(_ref24, ref) {
631
654
  let {
632
655
  children,
633
656
  size = 16,
634
657
  ...rest
635
- } = _ref23;
658
+ } = _ref24;
636
659
  return /*#__PURE__*/React.createElement(Icon.default, {
637
660
  width: size,
638
661
  height: size,
@@ -641,21 +664,21 @@ const ChevronDownOutline = /*#__PURE__*/React.forwardRef(function ChevronDownOut
641
664
  viewBox: "0 0 32 32",
642
665
  fill: "currentColor",
643
666
  ...rest
644
- }, _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
667
+ }, _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
645
668
  d: "M9.4142 12.5858L16 19.1714 22.5858 12.5858 24 14 16 22 8 14 9.4142 12.5858z"
646
- })), _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
669
+ })), _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
647
670
  d: "m30,16c0,7.7197-6.2803,14-14,14S2,23.7197,2,16,8.2803,2,16,2s14,6.2803,14,14Zm-26,0c0,6.6167,5.3833,12,12,12s12-5.3833,12-12-5.3833-12-12-12S4,9.3833,4,16Z"
648
671
  })), children);
649
672
  });
650
673
  if (process.env.NODE_ENV !== "production") {
651
674
  ChevronDownOutline.propTypes = iconPropTypesC5chbmyn.i;
652
675
  }
653
- const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref24, ref) {
676
+ const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref25, ref) {
654
677
  let {
655
678
  children,
656
679
  size = 16,
657
680
  ...rest
658
- } = _ref24;
681
+ } = _ref25;
659
682
  if (size === "glyph" || size === "glyph" || size === "glyphpx") {
660
683
  return /*#__PURE__*/React.createElement(Icon.default, {
661
684
  width: size,
@@ -665,7 +688,7 @@ const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref24, r
665
688
  viewBox: "0 0 6 10",
666
689
  fill: "currentColor",
667
690
  ...rest
668
- }, _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
691
+ }, _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
669
692
  d: "M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z"
670
693
  })), children);
671
694
  }
@@ -678,7 +701,7 @@ const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref24, r
678
701
  viewBox: "0 0 16 16",
679
702
  fill: "currentColor",
680
703
  ...rest
681
- }, _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
704
+ }, _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
682
705
  d: "M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"
683
706
  })), children);
684
707
  }
@@ -690,19 +713,19 @@ const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref24, r
690
713
  viewBox: "0 0 32 32",
691
714
  fill: "currentColor",
692
715
  ...rest
693
- }, _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
716
+ }, _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
694
717
  d: "M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z"
695
718
  })), children);
696
719
  });
697
720
  if (process.env.NODE_ENV !== "production") {
698
721
  ChevronLeft.propTypes = iconPropTypesC5chbmyn.i;
699
722
  }
700
- const ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref25, ref) {
723
+ const ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref26, ref) {
701
724
  let {
702
725
  children,
703
726
  size = 16,
704
727
  ...rest
705
- } = _ref25;
728
+ } = _ref26;
706
729
  if (size === 16 || size === "16" || size === "16px") {
707
730
  return /*#__PURE__*/React.createElement(Icon.default, {
708
731
  width: size,
@@ -712,7 +735,7 @@ const ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref25, r
712
735
  viewBox: "0 0 16 16",
713
736
  fill: "currentColor",
714
737
  ...rest
715
- }, _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
738
+ }, _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
716
739
  d: "M15 9L15 15 9 15z"
717
740
  })), children);
718
741
  }
@@ -724,19 +747,19 @@ const ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref25, r
724
747
  viewBox: "0 0 32 32",
725
748
  fill: "currentColor",
726
749
  ...rest
727
- }, _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
750
+ }, _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
728
751
  d: "M31 19L31 31 19 31 31 19z"
729
752
  })), children);
730
753
  });
731
754
  if (process.env.NODE_ENV !== "production") {
732
755
  ChevronMini.propTypes = iconPropTypesC5chbmyn.i;
733
756
  }
734
- const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref26, ref) {
757
+ const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref27, ref) {
735
758
  let {
736
759
  children,
737
760
  size = 16,
738
761
  ...rest
739
- } = _ref26;
762
+ } = _ref27;
740
763
  if (size === "glyph" || size === "glyph" || size === "glyphpx") {
741
764
  return /*#__PURE__*/React.createElement(Icon.default, {
742
765
  width: size,
@@ -746,7 +769,7 @@ const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref26,
746
769
  viewBox: "0 0 6 10",
747
770
  fill: "currentColor",
748
771
  ...rest
749
- }, _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
772
+ }, _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
750
773
  d: "M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z"
751
774
  })), children);
752
775
  }
@@ -759,7 +782,7 @@ const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref26,
759
782
  viewBox: "0 0 16 16",
760
783
  fill: "currentColor",
761
784
  ...rest
762
- }, _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
785
+ }, _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
763
786
  d: "M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"
764
787
  })), children);
765
788
  }
@@ -771,19 +794,19 @@ const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref26,
771
794
  viewBox: "0 0 32 32",
772
795
  fill: "currentColor",
773
796
  ...rest
774
- }, _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
797
+ }, _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
775
798
  d: "M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z"
776
799
  })), children);
777
800
  });
778
801
  if (process.env.NODE_ENV !== "production") {
779
802
  ChevronRight.propTypes = iconPropTypesC5chbmyn.i;
780
803
  }
781
- const ChevronSort = /*#__PURE__*/React.forwardRef(function ChevronSort(_ref27, ref) {
804
+ const ChevronSort = /*#__PURE__*/React.forwardRef(function ChevronSort(_ref28, ref) {
782
805
  let {
783
806
  children,
784
807
  size = 16,
785
808
  ...rest
786
- } = _ref27;
809
+ } = _ref28;
787
810
  if (size === 16 || size === "16" || size === "16px") {
788
811
  return /*#__PURE__*/React.createElement(Icon.default, {
789
812
  width: size,
@@ -793,7 +816,7 @@ const ChevronSort = /*#__PURE__*/React.forwardRef(function ChevronSort(_ref27, r
793
816
  viewBox: "0 0 16 16",
794
817
  fill: "currentColor",
795
818
  ...rest
796
- }, _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
819
+ }, _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
797
820
  d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5zM8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z"
798
821
  })), children);
799
822
  }
@@ -805,19 +828,19 @@ const ChevronSort = /*#__PURE__*/React.forwardRef(function ChevronSort(_ref27, r
805
828
  viewBox: "0 0 32 32",
806
829
  fill: "currentColor",
807
830
  ...rest
808
- }, _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
831
+ }, _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
809
832
  d: "M16 28L9 21 10.41 19.59 16 25.17 21.59 19.59 23 21 16 28zM16 4L23 11 21.59 12.41 16 6.83 10.41 12.41 9 11 16 4z"
810
833
  })), children);
811
834
  });
812
835
  if (process.env.NODE_ENV !== "production") {
813
836
  ChevronSort.propTypes = iconPropTypesC5chbmyn.i;
814
837
  }
815
- const ChevronSortDown = /*#__PURE__*/React.forwardRef(function ChevronSortDown(_ref28, ref) {
838
+ const ChevronSortDown = /*#__PURE__*/React.forwardRef(function ChevronSortDown(_ref29, ref) {
816
839
  let {
817
840
  children,
818
841
  size = 16,
819
842
  ...rest
820
- } = _ref28;
843
+ } = _ref29;
821
844
  if (size === 16 || size === "16" || size === "16px") {
822
845
  return /*#__PURE__*/React.createElement(Icon.default, {
823
846
  width: size,
@@ -827,7 +850,7 @@ const ChevronSortDown = /*#__PURE__*/React.forwardRef(function ChevronSortDown(_
827
850
  viewBox: "0 0 16 16",
828
851
  fill: "currentColor",
829
852
  ...rest
830
- }, _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
853
+ }, _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
831
854
  d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5z"
832
855
  })), children);
833
856
  }
@@ -839,19 +862,19 @@ const ChevronSortDown = /*#__PURE__*/React.forwardRef(function ChevronSortDown(_
839
862
  viewBox: "0 0 32 32",
840
863
  fill: "currentColor",
841
864
  ...rest
842
- }, _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
865
+ }, _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
843
866
  d: "M16 28L9 21 10.4 19.6 16 25.2 21.6 19.6 23 21z"
844
867
  })), children);
845
868
  });
846
869
  if (process.env.NODE_ENV !== "production") {
847
870
  ChevronSortDown.propTypes = iconPropTypesC5chbmyn.i;
848
871
  }
849
- const ChevronSortUp = /*#__PURE__*/React.forwardRef(function ChevronSortUp(_ref29, ref) {
872
+ const ChevronSortUp = /*#__PURE__*/React.forwardRef(function ChevronSortUp(_ref30, ref) {
850
873
  let {
851
874
  children,
852
875
  size = 16,
853
876
  ...rest
854
- } = _ref29;
877
+ } = _ref30;
855
878
  if (size === 16 || size === "16" || size === "16px") {
856
879
  return /*#__PURE__*/React.createElement(Icon.default, {
857
880
  width: size,
@@ -861,7 +884,7 @@ const ChevronSortUp = /*#__PURE__*/React.forwardRef(function ChevronSortUp(_ref2
861
884
  viewBox: "0 0 16 16",
862
885
  fill: "currentColor",
863
886
  ...rest
864
- }, _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
887
+ }, _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
865
888
  d: "M8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z"
866
889
  })), children);
867
890
  }
@@ -873,19 +896,19 @@ const ChevronSortUp = /*#__PURE__*/React.forwardRef(function ChevronSortUp(_ref2
873
896
  viewBox: "0 0 32 32",
874
897
  fill: "currentColor",
875
898
  ...rest
876
- }, _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
899
+ }, _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
877
900
  d: "M16 4L23 11 21.6 12.4 16 6.8 10.4 12.4 9 11z"
878
901
  })), children);
879
902
  });
880
903
  if (process.env.NODE_ENV !== "production") {
881
904
  ChevronSortUp.propTypes = iconPropTypesC5chbmyn.i;
882
905
  }
883
- const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref30, ref) {
906
+ const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref31, ref) {
884
907
  let {
885
908
  children,
886
909
  size = 16,
887
910
  ...rest
888
- } = _ref30;
911
+ } = _ref31;
889
912
  if (size === "glyph" || size === "glyph" || size === "glyphpx") {
890
913
  return /*#__PURE__*/React.createElement(Icon.default, {
891
914
  width: size,
@@ -895,7 +918,7 @@ const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref30, ref)
895
918
  viewBox: "0 0 10 6",
896
919
  fill: "currentColor",
897
920
  ...rest
898
- }, _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
921
+ }, _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
899
922
  d: "M5 0L10 5 9.3 5.7 5 1.4 0.7 5.7 0 5z"
900
923
  })), children);
901
924
  }
@@ -908,7 +931,7 @@ const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref30, ref)
908
931
  viewBox: "0 0 16 16",
909
932
  fill: "currentColor",
910
933
  ...rest
911
- }, _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
934
+ }, _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
912
935
  d: "M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
913
936
  })), children);
914
937
  }
@@ -920,19 +943,19 @@ const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref30, ref)
920
943
  viewBox: "0 0 32 32",
921
944
  fill: "currentColor",
922
945
  ...rest
923
- }, _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
946
+ }, _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
924
947
  d: "M16 10L26 20 24.6 21.4 16 12.8 7.4 21.4 6 20z"
925
948
  })), children);
926
949
  });
927
950
  if (process.env.NODE_ENV !== "production") {
928
951
  ChevronUp.propTypes = iconPropTypesC5chbmyn.i;
929
952
  }
930
- const ChevronUpOutline = /*#__PURE__*/React.forwardRef(function ChevronUpOutline(_ref31, ref) {
953
+ const ChevronUpOutline = /*#__PURE__*/React.forwardRef(function ChevronUpOutline(_ref32, ref) {
931
954
  let {
932
955
  children,
933
956
  size = 16,
934
957
  ...rest
935
- } = _ref31;
958
+ } = _ref32;
936
959
  return /*#__PURE__*/React.createElement(Icon.default, {
937
960
  width: size,
938
961
  height: size,
@@ -941,21 +964,21 @@ const ChevronUpOutline = /*#__PURE__*/React.forwardRef(function ChevronUpOutline
941
964
  viewBox: "0 0 32 32",
942
965
  fill: "currentColor",
943
966
  ...rest
944
- }, _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
967
+ }, _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
945
968
  d: "M9.4142 19.4142L16 12.8286 22.5858 19.4142 24 18 16 10 8 18 9.4142 19.4142z"
946
- })), _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
969
+ })), _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
947
970
  d: "m30,16c0,7.7197-6.2803,14-14,14S2,23.7197,2,16,8.2803,2,16,2s14,6.2803,14,14Zm-26,0c0,6.6167,5.3833,12,12,12s12-5.3833,12-12-5.3833-12-12-12S4,9.3833,4,16Z"
948
971
  })), children);
949
972
  });
950
973
  if (process.env.NODE_ENV !== "production") {
951
974
  ChevronUpOutline.propTypes = iconPropTypesC5chbmyn.i;
952
975
  }
953
- const ChildNode = /*#__PURE__*/React.forwardRef(function ChildNode(_ref32, ref) {
976
+ const ChildNode = /*#__PURE__*/React.forwardRef(function ChildNode(_ref33, ref) {
954
977
  let {
955
978
  children,
956
979
  size = 16,
957
980
  ...rest
958
- } = _ref32;
981
+ } = _ref33;
959
982
  return /*#__PURE__*/React.createElement(Icon.default, {
960
983
  width: size,
961
984
  height: size,
@@ -964,19 +987,19 @@ const ChildNode = /*#__PURE__*/React.forwardRef(function ChildNode(_ref32, ref)
964
987
  viewBox: "0 0 32 32",
965
988
  fill: "currentColor",
966
989
  ...rest
967
- }, _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
990
+ }, _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
968
991
  d: "M23,20c-2.41,0-4.43,1.72-4.9,4h-4.1c-2.21,0-4-1.79-4-4v-8.1c2.28-.46,4-2.48,4-4.9,0-2.76-2.24-5-5-5s-5,2.24-5,5c0,2.41,1.72,4.43,4,4.9v8.1c0,3.31,2.69,6,6,6h4.1c.46,2.28,2.48,4,4.9,4,2.76,0,5-2.24,5-5s-2.24-5-5-5ZM6,7c0-1.65,1.35-3,3-3s3,1.35,3,3-1.35,3-3,3-3-1.35-3-3Z"
969
992
  })), children);
970
993
  });
971
994
  if (process.env.NODE_ENV !== "production") {
972
995
  ChildNode.propTypes = iconPropTypesC5chbmyn.i;
973
996
  }
974
- const Chip = /*#__PURE__*/React.forwardRef(function Chip(_ref33, ref) {
997
+ const Chip = /*#__PURE__*/React.forwardRef(function Chip(_ref34, ref) {
975
998
  let {
976
999
  children,
977
1000
  size = 16,
978
1001
  ...rest
979
- } = _ref33;
1002
+ } = _ref34;
980
1003
  return /*#__PURE__*/React.createElement(Icon.default, {
981
1004
  width: size,
982
1005
  height: size,
@@ -985,21 +1008,21 @@ const Chip = /*#__PURE__*/React.forwardRef(function Chip(_ref33, ref) {
985
1008
  viewBox: "0 0 32 32",
986
1009
  fill: "currentColor",
987
1010
  ...rest
988
- }, _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
1011
+ }, _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
989
1012
  d: "M11,11V21H21V11Zm8,8H13V13h6Z"
990
- })), _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
1013
+ })), _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
991
1014
  d: "M30,13V11H26V8a2,2,0,0,0-2-2H21V2H19V6H13V2H11V6H8A2,2,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2,2,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2,2,0,0,0,2-2V21h4V19H26V13ZM24,24H8V8H24Z"
992
1015
  })), children);
993
1016
  });
994
1017
  if (process.env.NODE_ENV !== "production") {
995
1018
  Chip.propTypes = iconPropTypesC5chbmyn.i;
996
1019
  }
997
- const Choices = /*#__PURE__*/React.forwardRef(function Choices(_ref34, ref) {
1020
+ const Choices = /*#__PURE__*/React.forwardRef(function Choices(_ref35, ref) {
998
1021
  let {
999
1022
  children,
1000
1023
  size = 16,
1001
1024
  ...rest
1002
- } = _ref34;
1025
+ } = _ref35;
1003
1026
  return /*#__PURE__*/React.createElement(Icon.default, {
1004
1027
  width: size,
1005
1028
  height: size,
@@ -1008,34 +1031,13 @@ const Choices = /*#__PURE__*/React.forwardRef(function Choices(_ref34, ref) {
1008
1031
  viewBox: "0 0 32 32",
1009
1032
  fill: "currentColor",
1010
1033
  ...rest
1011
- }, _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
1034
+ }, _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
1012
1035
  d: "M28 13L28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13 6 7.414 15 16.414 15 26 4 26 4 28 28 28 28 26 17 26 17 16.414 26 7.414 26 13 28 13z"
1013
1036
  })), children);
1014
1037
  });
1015
1038
  if (process.env.NODE_ENV !== "production") {
1016
1039
  Choices.propTypes = iconPropTypesC5chbmyn.i;
1017
1040
  }
1018
- const Comments = /*#__PURE__*/React.forwardRef(function Comments(_ref35, ref) {
1019
- let {
1020
- children,
1021
- size = 16,
1022
- ...rest
1023
- } = _ref35;
1024
- return /*#__PURE__*/React.createElement(Icon.default, {
1025
- width: size,
1026
- height: size,
1027
- ref: ref,
1028
- xmlns: "http://www.w3.org/2000/svg",
1029
- viewBox: "0 0 32 32",
1030
- fill: "currentColor",
1031
- ...rest
1032
- }, _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
1033
- d: "M29.3163,9.4912l-8.004-6.997c-.3645-.3186-.8322-.4942-1.3163-.4942H4c-1.1046,0-2,.8954-2,2v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V10.997c0-.577-.2493-1.126-.6837-1.5058ZM28,28H4V4h14v7c0,1.1046.8954,2,2,2h8v15ZM20,11v-7l8,7h-8ZM6,20.084c0-4.041,2.0122-6.2939,5.1763-6.2939,2.1499,0,3.5425.9121,4.3853,2.7686l-1.9434,1.0322c-.3438-1.0664-1.1006-1.7881-2.4419-1.7881-1.6851,0-2.7686,1.2207-2.7686,3.2666v1.8916c0,2.0645,1.0835,3.2334,2.7686,3.2334,1.3584,0,2.2012-.8252,2.5967-1.9092l1.8403,1.084c-.8599,1.7881-2.2871,2.8369-4.437,2.8369-3.1641,0-5.1763-2.0801-5.1763-6.1221ZM16.8193,21.4941c0-2.8711,1.5991-4.6768,4.1611-4.6768,2.5796,0,4.1792,1.8057,4.1792,4.6768,0,2.8896-1.5996,4.7119-4.1792,4.7119-2.562,0-4.1611-1.8223-4.1611-4.7119ZM22.855,22.3369v-1.668c0-1.3408-.7222-2.0811-1.8745-2.0811-1.1348,0-1.8569.7402-1.8569,2.0811v1.668c0,1.3584.7222,2.0986,1.8569,2.0986,1.1523,0,1.8745-.7402,1.8745-2.0986Z"
1034
- })), children);
1035
- });
1036
- if (process.env.NODE_ENV !== "production") {
1037
- Comments.propTypes = iconPropTypesC5chbmyn.i;
1038
- }
1039
1041
  const ChooseItem = /*#__PURE__*/React.forwardRef(function ChooseItem(_ref36, ref) {
1040
1042
  let {
1041
1043
  children,
@@ -1050,7 +1052,7 @@ const ChooseItem = /*#__PURE__*/React.forwardRef(function ChooseItem(_ref36, ref
1050
1052
  viewBox: "0 0 32 32",
1051
1053
  fill: "currentColor",
1052
1054
  ...rest
1053
- }, _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
1055
+ }, _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
1054
1056
  d: "M28 6H30V26H28zM17 6L15.57 7.393 23.15 15 2 15 2 17 23.15 17 15.57 24.573 17 26 27 16 17 6z"
1055
1057
  })), children);
1056
1058
  });
@@ -1071,7 +1073,7 @@ const ChoroplethMap = /*#__PURE__*/React.forwardRef(function ChoroplethMap(_ref3
1071
1073
  viewBox: "0 0 32 32",
1072
1074
  fill: "currentColor",
1073
1075
  ...rest
1074
- }, _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
1076
+ }, _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
1075
1077
  d: "M29.2427,4.03l-8-2a1.0065,1.0065,0,0,0-.6143.0415l-9.7,3.88L3.2427,4.03A1,1,0,0,0,2,5V27a1,1,0,0,0,.7573.97l8,2A1.0244,1.0244,0,0,0,11,30a.9953.9953,0,0,0,.3716-.0718l9.7-3.88,7.686,1.9219A1,1,0,0,0,30,27V5A1,1,0,0,0,29.2427,4.03ZM28,11H22V4.2806l6,1.5ZM10,19H4V13h6Zm2-8V7.6771l8-3.2V11Zm8,2v6H12V13Zm-8,8h8v3.3227l-8,3.2Zm10-8h6v6H22ZM10,7.7806V11H4V6.2806ZM4,21h6v6.7192l-6-1.5Zm18,3.2187V21h6v4.7192Z"
1076
1078
  })), children);
1077
1079
  });
@@ -1092,9 +1094,9 @@ const CicsCmas = /*#__PURE__*/React.forwardRef(function CicsCmas(_ref38, ref) {
1092
1094
  viewBox: "0 0 32 32",
1093
1095
  fill: "currentColor",
1094
1096
  ...rest
1095
- }, _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
1097
+ }, _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
1096
1098
  d: "M30.3335 30H26V28h4V26H28a2.002 2.002 0 01-2-2V21.6665A1.6684 1.6684 0 0127.6665 20H32v2H28v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0130.3335 30zM22.3335 20h-2.667A1.6665 1.6665 0 0018 21.6665V30h2V26h2v4h2V21.6665A1.6665 1.6665 0 0022.3335 20zM20 24V22h2v2zM12.5 24L11 20 9 20 9 30 11 30 11 23 12.5 27 14 23 14 30 16 30 16 20 14 20 12.5 24zM1 22v6.5A1.4727 1.4727 0 002.5 30H7V28H3V22H7V20H3A2.0059 2.0059 0 001 22zM13 8L11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11 13 11 13 8z"
1097
- })), _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
1099
+ })), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
1098
1100
  d: "M6,6H26V18h2V6a2.0059,2.0059,0,0,0-2-2H6A2.0059,2.0059,0,0,0,4,6V18H6Z"
1099
1101
  })), children);
1100
1102
  });
@@ -1115,9 +1117,9 @@ const CicsDb2Connection = /*#__PURE__*/React.forwardRef(function CicsDb2Connecti
1115
1117
  viewBox: "0 0 32 32",
1116
1118
  fill: "currentColor",
1117
1119
  ...rest
1118
- }, _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
1120
+ }, _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
1119
1121
  d: "M22.5,30c-1.9299,0-3.5-1.5701-3.5-3.5,0-.9346,.3638-1.8134,1.0244-2.4742l1.4146,1.4138c-.283,.2832-.439,.6598-.439,1.0604,0,.8271,.6729,1.5,1.5,1.5,.4009,0,.7776-.1561,1.061-.4396l4.9998-4.9998c.2832-.2833,.4392-.66,.4392-1.0607,0-.8271-.6729-1.5-1.5-1.5-.4011,0-.7783,.1564-1.0618,.4404l-1.4155-1.4131c.6616-.6625,1.5413-1.0273,2.4773-1.0273,1.9299,0,3.5,1.5701,3.5,3.5,0,.9348-.364,1.8137-1.0249,2.4749l-4.9998,4.9996c-.6609,.6613-1.54,1.0255-2.4753,1.0255Z"
1120
- })), _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
1122
+ })), _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
1121
1123
  d: "M16.5 31c-1.9299 0-3.5-1.5701-3.5-3.5 0-.9348.364-1.8137 1.0249-2.4749l4.9998-4.9996c.6609-.6613 1.54-1.0255 2.4753-1.0255 1.9299 0 3.5 1.5701 3.5 3.5 0 .9346-.3638 1.8134-1.0244 2.4742l-1.4146-1.4138c.283-.2832.439-.6598.439-1.0604 0-.8271-.6729-1.5-1.5-1.5-.4009 0-.7776.1561-1.061.4396l-4.9998 4.9998c-.2832.2833-.4392.66-.4392 1.0607 0 .8271.6729 1.5 1.5 1.5.4011 0 .7783-.1564 1.0618-.4404l1.4155 1.4131c-.6616.6625-1.5413 1.0273-2.4773 1.0273zM16 2c-5.2979 0-11 1.252-11 4V24c0 1.6797 2.134 2.7979 5 3.415v-2.0459c-1.9939-.4727-2.9453-1.1431-3-1.3691v-3.5723c1.4937.749 3.6738 1.2153 6 1.4302v-1.9976c-3.8779-.3774-5.8774-1.4219-6-1.8604v-3.5723c2.1279 1.0674 5.6426 1.5723 9 1.5723 5.2979 0 11-1.252 11-4V5.9995c-.0007-2.748-5.7024-3.9995-11-3.9995zM6.9985 6.0151c.1523-.5552 3.1514-2.0151 9.0015-2.0151 5.7976 0 8.7949 1.4341 8.9968 2-.2019.5659-3.1992 2-8.9968 2-5.8501 0-8.8491-1.46-9.0015-1.9849zm18.0015 5.9722c-.1606.5571-3.1587 2.0127-9 2.0127-5.8501 0-8.8491-1.46-9-2v-3.5723c2.1279 1.0674 5.6426 1.5723 9 1.5723s6.8721-.5049 9-1.5723v3.5596z"
1122
1124
  })), children);
1123
1125
  });
@@ -1138,9 +1140,9 @@ const CicsExplorer = /*#__PURE__*/React.forwardRef(function CicsExplorer(_ref40,
1138
1140
  viewBox: "0 0 32 32",
1139
1141
  fill: "currentColor",
1140
1142
  ...rest
1141
- }, _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
1143
+ }, _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
1142
1144
  d: "M24 16L19.4 14.6 21.7 10.3 17.4 12.6 16 8 14.6 12.6 10.3 10.3 12.6 14.6 8 16 12.6 17.4 10.3 21.7 14.6 19.4 16 24 17.4 19.4 21.7 21.7 19.4 17.4 24 16z"
1143
- })), _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
1145
+ })), _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
1144
1146
  d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"
1145
1147
  })), children);
1146
1148
  });
@@ -1161,7 +1163,7 @@ const CicsProgram = /*#__PURE__*/React.forwardRef(function CicsProgram(_ref41, r
1161
1163
  viewBox: "0 0 32 32",
1162
1164
  fill: "currentColor",
1163
1165
  ...rest
1164
- }, _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
1166
+ }, _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
1165
1167
  d: "M20.17 19L17.58 21.59 19 23 23 19 19 15 17.58 16.41 20.17 19zM11.83 19L14.42 16.41 13 15 9 19 13 23 14.42 21.59 11.83 19z"
1166
1168
  })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
1167
1169
  cx: "9",
@@ -1171,7 +1173,7 @@ const CicsProgram = /*#__PURE__*/React.forwardRef(function CicsProgram(_ref41, r
1171
1173
  cx: "6",
1172
1174
  cy: "8",
1173
1175
  r: "1"
1174
- })), _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
1176
+ })), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
1175
1177
  d: "M28,4H4c-1.1028,0-2,.8975-2,2V26c0,1.1025,.8972,2,2,2H28c1.1028,0,2-.8975,2-2V6c0-1.1025-.8972-2-2-2Zm0,2v4H4V6H28ZM4,26V12H28v14H4Z"
1176
1178
  })), children);
1177
1179
  });
@@ -1192,9 +1194,9 @@ const CicsSit = /*#__PURE__*/React.forwardRef(function CicsSit(_ref42, ref) {
1192
1194
  viewBox: "0 0 32 32",
1193
1195
  fill: "currentColor",
1194
1196
  ...rest
1195
- }, _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
1197
+ }, _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
1196
1198
  d: "M23 22L30 27 23 32 23 22z"
1197
- })), _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
1199
+ })), _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
1198
1200
  d: "M26,3H6c-1.6543,0-3,1.3457-3,3V26c0,1.6543,1.3457,3,3,3h11v-9h12V6c0-1.6543-1.3457-3-3-3ZM6,5H26c.5515,0,1,.4482,1,1v3H5v-3c0-.5518,.4485-1,1-1Zm9,6v7H5v-7H15Zm0,16H6c-.5515,0-1-.4482-1-1v-6H15v7Zm2-9v-7h10v7h-10Z"
1199
1201
  })), children);
1200
1202
  });
@@ -1215,7 +1217,7 @@ const CicsSitOverrides = /*#__PURE__*/React.forwardRef(function CicsSitOverrides
1215
1217
  viewBox: "0 0 32 32",
1216
1218
  fill: "currentColor",
1217
1219
  ...rest
1218
- }, _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
1220
+ }, _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
1219
1221
  d: "M31.707 20.293l-3-3c-.3901-.3906-1.0239-.3906-1.4141 0l-9.293 9.293v4.4141h4.4143l9.2927-9.293c.3906-.3906.3906-1.0234 0-1.4141zm-7.4141 6l-2.7073 2.707h-1.5857v-1.5859l2.707-2.707 2.293-2.293 1.5859 1.5859-2.293 2.293zm3.707-3.707l-1.5859-1.5859 1.5859-1.5859 1.5857 1.5859-1.5857 1.5859zM20 20v-2h-4v-7h10v2h2V6c0-1.6543-1.3457-3-3-3H5c-1.6543 0-3 1.3457-3 3V26c0 1.6543 1.3457 3 3 3h11v-9h4zm-6-2H4v-7H14v7zM5 5H25c.5515 0 1 .4482 1 1v3H4v-3c0-.5518.4485-1 1-1zM14 27H5c-.5515 0-1-.4482-1-1v-6H14v7z"
1220
1222
  })), children);
1221
1223
  });
@@ -1236,11 +1238,11 @@ const CicsSystemGroup = /*#__PURE__*/React.forwardRef(function CicsSystemGroup(_
1236
1238
  viewBox: "0 0 32 32",
1237
1239
  fill: "currentColor",
1238
1240
  ...rest
1239
- }, _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
1241
+ }, _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
1240
1242
  d: "M28 2H23V4h5V28H23v2h5a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0028 2zM14 17H8a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V18A.9448.9448 0 0014 17zm-1 6H9V19h4z"
1241
- })), _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
1242
- d: "M25 24V18a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6A1.0021 1.0021 0 0025 24zm-2-1H19V19h4zM14 7H8A.9448.9448 0 007 8v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V8A.9448.9448 0 0014 7zm-1 6H9V9h4zM18 15h6a.9448.9448 0 001-1V8a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6A1.0021 1.0021 0 0018 15zm1-6h4v4H19z"
1243
1243
  })), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
1244
+ d: "M25 24V18a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6A1.0021 1.0021 0 0025 24zm-2-1H19V19h4zM14 7H8A.9448.9448 0 007 8v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V8A.9448.9448 0 0014 7zm-1 6H9V9h4zM18 15h6a.9448.9448 0 001-1V8a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6A1.0021 1.0021 0 0018 15zm1-6h4v4H19z"
1245
+ })), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
1244
1246
  d: "M4,4H9V2H4A2.0059,2.0059,0,0,0,2,4V28a2.0059,2.0059,0,0,0,2,2H9V28H4Z"
1245
1247
  })), children);
1246
1248
  });
@@ -1265,15 +1267,15 @@ const CicsTransactionServerZos = /*#__PURE__*/React.forwardRef(function CicsTran
1265
1267
  cx: "28",
1266
1268
  cy: "10",
1267
1269
  r: "2"
1268
- })), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
1269
- d: "M18,29h-7v-2h7c4.9626,0,9-4.0374,9-9v-4h2v4c0,6.0654-4.9346,11-11,11Z"
1270
1270
  })), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
1271
+ d: "M18,29h-7v-2h7c4.9626,0,9-4.0374,9-9v-4h2v4c0,6.0654-4.9346,11-11,11Z"
1272
+ })), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
1271
1273
  d: "M16,21c-2.7571,0-5-2.2429-5-5s2.2429-5,5-5,5,2.2429,5,5-2.2429,5-5,5Zm0-8c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3Z"
1272
1274
  })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
1273
1275
  cx: "4",
1274
1276
  cy: "22",
1275
1277
  r: "2"
1276
- })), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
1278
+ })), _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
1277
1279
  d: "M5,18H3v-4C3,7.9346,7.9346,3,14,3h7v2h-7c-4.9626,0-9,4.0374-9,9v4Z"
1278
1280
  })), children);
1279
1281
  });
@@ -1294,9 +1296,9 @@ const CicsWuiRegion = /*#__PURE__*/React.forwardRef(function CicsWuiRegion(_ref4
1294
1296
  viewBox: "0 0 32 32",
1295
1297
  fill: "currentColor",
1296
1298
  ...rest
1297
- }, _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
1299
+ }, _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
1298
1300
  d: "M22 22L24 22 24 28 22 28 22 30 28 30 28 28 26 28 26 22 28 22 28 20 22 20 22 22zM18 28H16V20H14v8.6A1.4529 1.4529 0 0015.5 30h3A1.4529 1.4529 0 0020 28.6V20H18zM10.2 20L10 28.5 9 22 7 22 6 28.5 5.8 20 4 20 4.72 30 7 30 8 23.5 9 30 11.28 30 12 20 10.2 20zM16 11L13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11z"
1299
- })), _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
1301
+ })), _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
1300
1302
  d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V18H6V6H26V18h2V6A2.0059,2.0059,0,0,0,26,4Z"
1301
1303
  })), children);
1302
1304
  });
@@ -1317,9 +1319,9 @@ const CicsRegion = /*#__PURE__*/React.forwardRef(function CicsRegion(_ref47, ref
1317
1319
  viewBox: "0 0 32 32",
1318
1320
  fill: "currentColor",
1319
1321
  ...rest
1320
- }, _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
1322
+ }, _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
1321
1323
  d: "M23.5 18L21 18.7 21 16 19 16 19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18zM16 13L16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13z"
1322
- })), _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
1324
+ })), _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
1323
1325
  d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,26,4ZM6,26V6H26V26Z"
1324
1326
  })), children);
1325
1327
  });
@@ -1340,7 +1342,7 @@ const CicsRegionAlt = /*#__PURE__*/React.forwardRef(function CicsRegionAlt(_ref4
1340
1342
  viewBox: "0 0 32 32",
1341
1343
  fill: "currentColor",
1342
1344
  ...rest
1343
- }, _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
1345
+ }, _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
1344
1346
  d: "M31 13v-2h-4c-1.1028 0-2 .8975-2 2v2c0 1.1025.8972 2 2 2h2v2h-4v2h4c1.1028 0 2-.8975 2-2v-2c0-1.1025-.8972-2-2-2h-2v-2h4zM17 13v6c0 1.1025.8972 2 2 2h4v-2h-4v-6h4v-2h-4c-1.1028 0-2 .8975-2 2zM9 13L11 13 11 19 9 19 9 21 15 21 15 19 13 19 13 13 15 13 15 11 9 11 9 13zM1 13v6c0 1.1025.8972 2 2 2H7v-2H3v-6H7v-2H3c-1.1028 0-2 .8975-2 2z"
1345
1347
  })), children);
1346
1348
  });
@@ -1361,9 +1363,9 @@ const CicsRegionRouting = /*#__PURE__*/React.forwardRef(function CicsRegionRouti
1361
1363
  viewBox: "0 0 32 32",
1362
1364
  fill: "currentColor",
1363
1365
  ...rest
1364
- }, _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
1366
+ }, _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
1365
1367
  d: "M22 2L22 4 26.6 4 20 10.6 21.4 12 28 5.4 28 10 30 10 30 2 22 2zM19 16L19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z"
1366
- })), _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
1368
+ })), _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
1367
1369
  d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z"
1368
1370
  })), children);
1369
1371
  });
@@ -1384,9 +1386,9 @@ const CicsRegionTarget = /*#__PURE__*/React.forwardRef(function CicsRegionTarget
1384
1386
  viewBox: "0 0 32 32",
1385
1387
  fill: "currentColor",
1386
1388
  ...rest
1387
- }, _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
1389
+ }, _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
1388
1390
  d: "M26 7H28V10H26zM29 4H32V6H29zM26 0H28V3H26zM22 4H25V6H22zM19 16L19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z"
1389
- })), _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
1391
+ })), _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
1390
1392
  d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z"
1391
1393
  })), children);
1392
1394
  });
@@ -1407,7 +1409,7 @@ const Cicsplex = /*#__PURE__*/React.forwardRef(function Cicsplex(_ref51, ref) {
1407
1409
  viewBox: "0 0 32 32",
1408
1410
  fill: "currentColor",
1409
1411
  ...rest
1410
- }, _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
1412
+ }, _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
1411
1413
  d: "M8 18.6V17H6v1.6A7.3833 7.3833 0 0013.4 26H15V24H13.4A5.3775 5.3775 0 018 18.6zM28 18H20a2.0059 2.0059 0 00-2 2v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V20A2.0059 2.0059 0 0028 18zM20 28V20h8v8zM24 13.4V15h2V13.4A7.3833 7.3833 0 0018.6 6H17V8h1.6A5.3775 5.3775 0 0124 13.4zM12 2H4A2.0059 2.0059 0 002 4v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0012 2zM4 12V4h8v8z"
1412
1414
  })), children);
1413
1415
  });
@@ -1432,7 +1434,7 @@ const CircleFilled = /*#__PURE__*/React.forwardRef(function CircleFilled(_ref52,
1432
1434
  cx: "16",
1433
1435
  cy: "16",
1434
1436
  r: "10"
1435
- })), _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
1437
+ })), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
1436
1438
  d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"
1437
1439
  })), children);
1438
1440
  });
@@ -1453,7 +1455,7 @@ const CircleOutline = /*#__PURE__*/React.forwardRef(function CircleOutline(_ref5
1453
1455
  viewBox: "0 0 32 32",
1454
1456
  fill: "currentColor",
1455
1457
  ...rest
1456
- }, _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
1458
+ }, _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
1457
1459
  strokeWidth: "0",
1458
1460
  d: "m16,2c-7.732,0-14,6.268-14,14s6.268,14,14,14,14-6.268,14-14S23.732,2,16,2Zm0,26c-6.6274,0-12-5.3726-12-12s5.3726-12,12-12,12,5.3726,12,12-5.3726,12-12,12Z"
1459
1461
  })), children);
@@ -1498,7 +1500,7 @@ const CircleDash = /*#__PURE__*/React.forwardRef(function CircleDash(_ref55, ref
1498
1500
  viewBox: "0 0 32 32",
1499
1501
  fill: "currentColor",
1500
1502
  ...rest
1501
- }, _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
1503
+ }, _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
1502
1504
  d: "M7.7 4.7a14.7 14.7 0 00-3 3.1L6.3 9A13.26 13.26 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.51 12.51 0 002 16H4A11.48 11.48 0 014.6 12.3zM2.7 20.4a14.4 14.4 0 002 3.9l1.6-1.2a12.89 12.89 0 01-1.7-3.3zM7.8 27.3a14.4 14.4 0 003.9 2l.6-1.9A12.89 12.89 0 019 25.7zM11.7 2.7l.6 1.9A11.48 11.48 0 0116 4V2A12.51 12.51 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.53 11.53 0 0123 25.7zM27.4 19.7l1.9.6A15.47 15.47 0 0030 16H28A11.48 11.48 0 0127.4 19.7zM29.2 11.6a14.4 14.4 0 00-2-3.9L25.6 8.9a12.89 12.89 0 011.7 3.3zM24.1 4.6a14.4 14.4 0 00-3.9-2l-.6 1.9a12.89 12.89 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.48 11.48 0 0116 28v2A21.42 21.42 0 0020.3 29.3z"
1503
1505
  })), children);
1504
1506
  });
@@ -1557,9 +1559,9 @@ const WatsonHealthCircleMeasurement = /*#__PURE__*/React.forwardRef(function Wat
1557
1559
  viewBox: "0 0 32 32",
1558
1560
  fill: "currentColor",
1559
1561
  ...rest
1560
- }, _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
1562
+ }, _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
1561
1563
  d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z"
1562
- })), _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
1564
+ })), _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
1563
1565
  d: "M21,12.41V16h2V9H16v2h3.59L11,19.59V16H9v7h7V21H12.41Z"
1564
1566
  })), children);
1565
1567
  });
@@ -1580,7 +1582,7 @@ const CirclePacking = /*#__PURE__*/React.forwardRef(function CirclePacking(_ref5
1580
1582
  viewBox: "0 0 32 32",
1581
1583
  fill: "currentColor",
1582
1584
  ...rest
1583
- }, _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
1585
+ }, _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
1584
1586
  d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.5,7A3.5,3.5,0,1,1,20,12.5,3.5041,3.5041,0,0,1,23.5,9Zm.4348-1.978C23.791,7.0107,23.6467,7,23.5,7a5.4826,5.4826,0,0,0-4.1323,1.8784,8.0109,8.0109,0,0,0-5.5664-4.6675A11.8554,11.8554,0,0,1,23.9348,7.022ZM16,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,28ZM12,18a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,12,18ZM4,16a11.97,11.97,0,0,1,.2112-2.1987,7.9921,7.9921,0,0,0,7.3459,6.1762,5.9581,5.9581,0,0,0-.89,6.7564A12.0025,12.0025,0,0,1,4,16ZM21.3325,26.7339a5.9834,5.9834,0,0,0-4.1782-8.6206,8.02,8.02,0,0,0,1.9126-2.3672,5.4883,5.4883,0,0,0,8.9167-.0679c.003.1079.0164.2134.0164.3218A12.0025,12.0025,0,0,1,21.3325,26.7339Z"
1585
1587
  })), children);
1586
1588
  });
@@ -1602,7 +1604,7 @@ const CircleStroke = /*#__PURE__*/React.forwardRef(function CircleStroke(_ref59,
1602
1604
  viewBox: "0 0 16 16",
1603
1605
  fill: "currentColor",
1604
1606
  ...rest
1605
- }, _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
1607
+ }, _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
1606
1608
  d: "M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z"
1607
1609
  })), children);
1608
1610
  }
@@ -1614,7 +1616,7 @@ const CircleStroke = /*#__PURE__*/React.forwardRef(function CircleStroke(_ref59,
1614
1616
  viewBox: "0 0 16 16",
1615
1617
  fill: "currentColor",
1616
1618
  ...rest
1617
- }, _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
1619
+ }, _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
1618
1620
  d: "M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z"
1619
1621
  })), children);
1620
1622
  });
@@ -1635,21 +1637,42 @@ const QCircuitComposer = /*#__PURE__*/React.forwardRef(function QCircuitComposer
1635
1637
  viewBox: "0 0 32 32",
1636
1638
  fill: "currentColor",
1637
1639
  ...rest
1638
- }, _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
1640
+ }, _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
1639
1641
  d: "M18 9L18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z"
1640
- })), _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
1642
+ })), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
1641
1643
  d: "M30,15H26V6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6v9H2v2H6v9a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V17h4ZM8,26V6H24V26Z"
1642
1644
  })), children);
1643
1645
  });
1644
1646
  if (process.env.NODE_ENV !== "production") {
1645
1647
  QCircuitComposer.propTypes = iconPropTypesC5chbmyn.i;
1646
1648
  }
1647
- const Classification = /*#__PURE__*/React.forwardRef(function Classification(_ref61, ref) {
1649
+ const ClassicBatch = /*#__PURE__*/React.forwardRef(function ClassicBatch(_ref61, ref) {
1648
1650
  let {
1649
1651
  children,
1650
1652
  size = 16,
1651
1653
  ...rest
1652
1654
  } = _ref61;
1655
+ return /*#__PURE__*/React.createElement(Icon.default, {
1656
+ width: size,
1657
+ height: size,
1658
+ ref: ref,
1659
+ xmlns: "http://www.w3.org/2000/svg",
1660
+ viewBox: "0 0 32 32",
1661
+ fill: "currentColor",
1662
+ ...rest
1663
+ }, _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
1664
+ d: "M30,4v16c0,1.1-.9,2-2,2H12c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h16c1.1,0,2,.9,2,2ZM28,20V4H12v16h16ZM8,6h-2v18c0,1.1.9,2,2,2h18v-2H8V6ZM4,10h-2v18c0,1.1.9,2,2,2h18v-2H4V10Z"
1665
+ })), children);
1666
+ });
1667
+ if (process.env.NODE_ENV !== "production") {
1668
+ ClassicBatch.propTypes = iconPropTypesC5chbmyn.i;
1669
+ }
1670
+ const Classification = /*#__PURE__*/React.forwardRef(function Classification(_ref62, ref) {
1671
+ let {
1672
+ children,
1673
+ size = 16,
1674
+ ...rest
1675
+ } = _ref62;
1653
1676
  return /*#__PURE__*/React.createElement(Icon.default, {
1654
1677
  width: size,
1655
1678
  height: size,
@@ -1662,19 +1685,19 @@ const Classification = /*#__PURE__*/React.forwardRef(function Classification(_re
1662
1685
  cx: "15",
1663
1686
  cy: "19",
1664
1687
  r: "1"
1665
- })), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
1688
+ })), _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
1666
1689
  d: "M27.7,9.3l-7-7A.9087.9087,0,0,0,20,2H10A2.0058,2.0058,0,0,0,8,4V14H6a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2H8v4a2.0058,2.0058,0,0,0,2,2H26a2.0058,2.0058,0,0,0,2-2V10A.9092.9092,0,0,0,27.7,9.3ZM20,4.4,25.6,10H20ZM6,16h9.5972L19,19l-3.3926,3H6ZM26,28H10V24h5.6089a2.0076,2.0076,0,0,0,1.3135-.4927l3.3833-2.9917a2.0015,2.0015,0,0,0,.01-3.0229l-3.4033-3.0083A1.9961,1.9961,0,0,0,15.6089,14H10V4h8v6a2.0058,2.0058,0,0,0,2,2h6Z"
1667
1690
  })), children);
1668
1691
  });
1669
1692
  if (process.env.NODE_ENV !== "production") {
1670
1693
  Classification.propTypes = iconPropTypesC5chbmyn.i;
1671
1694
  }
1672
- const ClassifierLanguage = /*#__PURE__*/React.forwardRef(function ClassifierLanguage(_ref62, ref) {
1695
+ const ClassifierLanguage = /*#__PURE__*/React.forwardRef(function ClassifierLanguage(_ref63, ref) {
1673
1696
  let {
1674
1697
  children,
1675
1698
  size = 16,
1676
1699
  ...rest
1677
- } = _ref62;
1700
+ } = _ref63;
1678
1701
  return /*#__PURE__*/React.createElement(Icon.default, {
1679
1702
  width: size,
1680
1703
  height: size,
@@ -1683,19 +1706,19 @@ const ClassifierLanguage = /*#__PURE__*/React.forwardRef(function ClassifierLang
1683
1706
  viewBox: "0 0 32 32",
1684
1707
  fill: "currentColor",
1685
1708
  ...rest
1686
- }, _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
1709
+ }, _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
1687
1710
  d: "M30 10V2H22v8h3v4H23v2h7V14H27V10zM24 4h4V8H24zM20 23.41L18.59 22 16 24.59 13.41 22 12 23.41 14.59 26 12 28.59 13.41 30 16 27.41 18.59 30 20 28.59 17.41 26 20 23.41zM20 14L12 14 12 16 15 16 15 21 17 21 17 16 20 16 20 14zM7 9.86a4 4 0 10-2 0V14H2v2H9V14H7zM4 6A2 2 0 116 8 2 2 0 014 6z"
1688
1711
  })), children);
1689
1712
  });
1690
1713
  if (process.env.NODE_ENV !== "production") {
1691
1714
  ClassifierLanguage.propTypes = iconPropTypesC5chbmyn.i;
1692
1715
  }
1693
- const Clean = /*#__PURE__*/React.forwardRef(function Clean(_ref63, ref) {
1716
+ const Clean = /*#__PURE__*/React.forwardRef(function Clean(_ref64, ref) {
1694
1717
  let {
1695
1718
  children,
1696
1719
  size = 16,
1697
1720
  ...rest
1698
- } = _ref63;
1721
+ } = _ref64;
1699
1722
  return /*#__PURE__*/React.createElement(Icon.default, {
1700
1723
  width: size,
1701
1724
  height: size,
@@ -1704,28 +1727,28 @@ const Clean = /*#__PURE__*/React.forwardRef(function Clean(_ref63, ref) {
1704
1727
  viewBox: "0 0 32 32",
1705
1728
  fill: "currentColor",
1706
1729
  ...rest
1707
- }, _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
1730
+ }, _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
1708
1731
  d: "M20 18H26V20H20z",
1709
1732
  transform: "rotate(-180 23 19)"
1710
- })), _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
1733
+ })), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
1711
1734
  d: "M24 26H30V28H24z",
1712
1735
  transform: "rotate(-180 27 27)"
1713
- })), _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
1736
+ })), _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
1714
1737
  d: "M22 22H28V24H22z",
1715
1738
  transform: "rotate(-180 25 23)"
1716
- })), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
1739
+ })), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
1717
1740
  d: "M17.0029,20a4.8952,4.8952,0,0,0-2.4044-4.1729L22,3,20.2691,2,12.6933,15.126A5.6988,5.6988,0,0,0,7.45,16.6289C3.7064,20.24,3.9963,28.6821,4.01,29.04a1,1,0,0,0,1,.96H20.0012a1,1,0,0,0,.6-1.8C17.0615,25.5439,17.0029,20.0537,17.0029,20ZM11.93,16.9971A3.11,3.11,0,0,1,15.0041,20c0,.0381.0019.208.0168.4688L9.1215,17.8452A3.8,3.8,0,0,1,11.93,16.9971ZM15.4494,28A5.2,5.2,0,0,1,14,25H12a6.4993,6.4993,0,0,0,.9684,3H10.7451A16.6166,16.6166,0,0,1,10,24H8a17.3424,17.3424,0,0,0,.6652,4H6c.031-1.8364.29-5.8921,1.8027-8.5527l7.533,3.35A13.0253,13.0253,0,0,0,17.5968,28Z"
1718
1741
  })), children);
1719
1742
  });
1720
1743
  if (process.env.NODE_ENV !== "production") {
1721
1744
  Clean.propTypes = iconPropTypesC5chbmyn.i;
1722
1745
  }
1723
- const Close = /*#__PURE__*/React.forwardRef(function Close(_ref64, ref) {
1746
+ const Close = /*#__PURE__*/React.forwardRef(function Close(_ref65, ref) {
1724
1747
  let {
1725
1748
  children,
1726
1749
  size = 16,
1727
1750
  ...rest
1728
- } = _ref64;
1751
+ } = _ref65;
1729
1752
  return /*#__PURE__*/React.createElement(Icon.default, {
1730
1753
  width: size,
1731
1754
  height: size,
@@ -1734,19 +1757,19 @@ const Close = /*#__PURE__*/React.forwardRef(function Close(_ref64, ref) {
1734
1757
  viewBox: "0 0 32 32",
1735
1758
  fill: "currentColor",
1736
1759
  ...rest
1737
- }, _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
1760
+ }, _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
1738
1761
  d: "M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z"
1739
1762
  })), children);
1740
1763
  });
1741
1764
  if (process.env.NODE_ENV !== "production") {
1742
1765
  Close.propTypes = iconPropTypesC5chbmyn.i;
1743
1766
  }
1744
- const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref65, ref) {
1767
+ const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref66, ref) {
1745
1768
  let {
1746
1769
  children,
1747
1770
  size = 16,
1748
1771
  ...rest
1749
- } = _ref65;
1772
+ } = _ref66;
1750
1773
  if (size === 16 || size === "16" || size === "16px") {
1751
1774
  return /*#__PURE__*/React.createElement(Icon.default, {
1752
1775
  width: size,
@@ -1756,7 +1779,7 @@ const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref65, r
1756
1779
  viewBox: "0 0 16 16",
1757
1780
  fill: "currentColor",
1758
1781
  ...rest
1759
- }, _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
1782
+ }, _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
1760
1783
  d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M10.7,11.5L8,8.8l-2.7,2.7l-0.8-0.8L7.2,8L4.5,5.3l0.8-0.8L8,7.2 l2.7-2.7l0.8,0.8L8.8,8l2.7,2.7L10.7,11.5z"
1761
1784
  })), children);
1762
1785
  }
@@ -1768,9 +1791,9 @@ const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref65, r
1768
1791
  viewBox: "0 0 32 32",
1769
1792
  fill: "currentColor",
1770
1793
  ...rest
1771
- }, _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
1794
+ }, _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
1772
1795
  d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M21.4,23L16,17.6L10.6,23L9,21.4l5.4-5.4L9,10.6L10.6,9 l5.4,5.4L21.4,9l1.6,1.6L17.6,16l5.4,5.4L21.4,23z"
1773
- })), _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
1796
+ })), _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
1774
1797
  d: "M14.4 16L9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4 21.4 23 16 17.6 10.6 23 9 21.4 14.4 16",
1775
1798
  "data-icon-path": "inner-path",
1776
1799
  opacity: "0"
@@ -1779,12 +1802,12 @@ const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref65, r
1779
1802
  if (process.env.NODE_ENV !== "production") {
1780
1803
  CloseFilled.propTypes = iconPropTypesC5chbmyn.i;
1781
1804
  }
1782
- const CloseLarge = /*#__PURE__*/React.forwardRef(function CloseLarge(_ref66, ref) {
1805
+ const CloseLarge = /*#__PURE__*/React.forwardRef(function CloseLarge(_ref67, ref) {
1783
1806
  let {
1784
1807
  children,
1785
1808
  size = 16,
1786
1809
  ...rest
1787
- } = _ref66;
1810
+ } = _ref67;
1788
1811
  return /*#__PURE__*/React.createElement(Icon.default, {
1789
1812
  width: size,
1790
1813
  height: size,
@@ -1793,19 +1816,19 @@ const CloseLarge = /*#__PURE__*/React.forwardRef(function CloseLarge(_ref66, ref
1793
1816
  viewBox: "0 0 32 32",
1794
1817
  fill: "currentColor",
1795
1818
  ...rest
1796
- }, _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
1819
+ }, _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
1797
1820
  d: "M17.4141 16L26 7.4141 24.5859 6 16 14.5859 7.4143 6 6 7.4141 14.5859 16 6 24.5859 7.4143 26 16 17.4141 24.5859 26 26 24.5859 17.4141 16z"
1798
1821
  })), children);
1799
1822
  });
1800
1823
  if (process.env.NODE_ENV !== "production") {
1801
1824
  CloseLarge.propTypes = iconPropTypesC5chbmyn.i;
1802
1825
  }
1803
- const CloseOutline = /*#__PURE__*/React.forwardRef(function CloseOutline(_ref67, ref) {
1826
+ const CloseOutline = /*#__PURE__*/React.forwardRef(function CloseOutline(_ref68, ref) {
1804
1827
  let {
1805
1828
  children,
1806
1829
  size = 16,
1807
1830
  ...rest
1808
- } = _ref67;
1831
+ } = _ref68;
1809
1832
  return /*#__PURE__*/React.createElement(Icon.default, {
1810
1833
  width: size,
1811
1834
  height: size,
@@ -1814,21 +1837,21 @@ const CloseOutline = /*#__PURE__*/React.forwardRef(function CloseOutline(_ref67,
1814
1837
  viewBox: "0 0 32 32",
1815
1838
  fill: "currentColor",
1816
1839
  ...rest
1817
- }, _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
1840
+ }, _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
1818
1841
  d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M16,28C9.4,28,4,22.6,4,16S9.4,4,16,4s12,5.4,12,12 S22.6,28,16,28z"
1819
- })), _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
1842
+ })), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
1820
1843
  d: "M21.4 23L16 17.6 10.6 23 9 21.4 14.4 16 9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4z"
1821
1844
  })), children);
1822
1845
  });
1823
1846
  if (process.env.NODE_ENV !== "production") {
1824
1847
  CloseOutline.propTypes = iconPropTypesC5chbmyn.i;
1825
1848
  }
1826
- const ClosedCaption = /*#__PURE__*/React.forwardRef(function ClosedCaption(_ref68, ref) {
1849
+ const ClosedCaption = /*#__PURE__*/React.forwardRef(function ClosedCaption(_ref69, ref) {
1827
1850
  let {
1828
1851
  children,
1829
1852
  size = 16,
1830
1853
  ...rest
1831
- } = _ref68;
1854
+ } = _ref69;
1832
1855
  return /*#__PURE__*/React.createElement(Icon.default, {
1833
1856
  width: size,
1834
1857
  height: size,
@@ -1837,21 +1860,21 @@ const ClosedCaption = /*#__PURE__*/React.forwardRef(function ClosedCaption(_ref6
1837
1860
  viewBox: "0 0 32 32",
1838
1861
  fill: "currentColor",
1839
1862
  ...rest
1840
- }, _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
1863
+ }, _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
1841
1864
  d: "M15 21H10a2 2 0 01-2-2V13a2 2 0 012-2h5v2H10v6h5zM25 21H20a2 2 0 01-2-2V13a2 2 0 012-2h5v2H20v6h5z"
1842
- })), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
1865
+ })), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
1843
1866
  d: "M28,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,8V24H28V8Z"
1844
1867
  })), children);
1845
1868
  });
1846
1869
  if (process.env.NODE_ENV !== "production") {
1847
1870
  ClosedCaption.propTypes = iconPropTypesC5chbmyn.i;
1848
1871
  }
1849
- const ClosedCaptionAlt = /*#__PURE__*/React.forwardRef(function ClosedCaptionAlt(_ref69, ref) {
1872
+ const ClosedCaptionAlt = /*#__PURE__*/React.forwardRef(function ClosedCaptionAlt(_ref70, ref) {
1850
1873
  let {
1851
1874
  children,
1852
1875
  size = 16,
1853
1876
  ...rest
1854
- } = _ref69;
1877
+ } = _ref70;
1855
1878
  return /*#__PURE__*/React.createElement(Icon.default, {
1856
1879
  width: size,
1857
1880
  height: size,
@@ -1860,21 +1883,21 @@ const ClosedCaptionAlt = /*#__PURE__*/React.forwardRef(function ClosedCaptionAlt
1860
1883
  viewBox: "0 0 32 32",
1861
1884
  fill: "currentColor",
1862
1885
  ...rest
1863
- }, _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
1886
+ }, _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
1864
1887
  d: "M19 17H25V19H19zM11 17H17V19H11zM6 17H9V19H6zM22 13H26V15H22zM13 13H20V15H13zM6 13H11V15H6z"
1865
- })), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
1888
+ })), _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
1866
1889
  d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
1867
1890
  })), children);
1868
1891
  });
1869
1892
  if (process.env.NODE_ENV !== "production") {
1870
1893
  ClosedCaptionAlt.propTypes = iconPropTypesC5chbmyn.i;
1871
1894
  }
1872
- const ClosedCaptionFilled = /*#__PURE__*/React.forwardRef(function ClosedCaptionFilled(_ref70, ref) {
1895
+ const ClosedCaptionFilled = /*#__PURE__*/React.forwardRef(function ClosedCaptionFilled(_ref71, ref) {
1873
1896
  let {
1874
1897
  children,
1875
1898
  size = 16,
1876
1899
  ...rest
1877
- } = _ref70;
1900
+ } = _ref71;
1878
1901
  return /*#__PURE__*/React.createElement(Icon.default, {
1879
1902
  width: size,
1880
1903
  height: size,
@@ -1883,19 +1906,19 @@ const ClosedCaptionFilled = /*#__PURE__*/React.forwardRef(function ClosedCaption
1883
1906
  viewBox: "0 0 32 32",
1884
1907
  fill: "currentColor",
1885
1908
  ...rest
1886
- }, _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
1909
+ }, _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
1887
1910
  d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,13H10v6h5v2H10a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm10,0H20v6h5v2H20a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Z"
1888
1911
  })), children);
1889
1912
  });
1890
1913
  if (process.env.NODE_ENV !== "production") {
1891
1914
  ClosedCaptionFilled.propTypes = iconPropTypesC5chbmyn.i;
1892
1915
  }
1893
- const Cloud = /*#__PURE__*/React.forwardRef(function Cloud(_ref71, ref) {
1916
+ const Cloud = /*#__PURE__*/React.forwardRef(function Cloud(_ref72, ref) {
1894
1917
  let {
1895
1918
  children,
1896
1919
  size = 16,
1897
1920
  ...rest
1898
- } = _ref71;
1921
+ } = _ref72;
1899
1922
  return /*#__PURE__*/React.createElement(Icon.default, {
1900
1923
  width: size,
1901
1924
  height: size,
@@ -1904,19 +1927,19 @@ const Cloud = /*#__PURE__*/React.forwardRef(function Cloud(_ref71, ref) {
1904
1927
  viewBox: "0 0 32 32",
1905
1928
  fill: "currentColor",
1906
1929
  ...rest
1907
- }, _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
1930
+ }, _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
1908
1931
  d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z"
1909
1932
  })), children);
1910
1933
  });
1911
1934
  if (process.env.NODE_ENV !== "production") {
1912
1935
  Cloud.propTypes = iconPropTypesC5chbmyn.i;
1913
1936
  }
1914
- const CloudAlerting = /*#__PURE__*/React.forwardRef(function CloudAlerting(_ref72, ref) {
1937
+ const CloudAlerting = /*#__PURE__*/React.forwardRef(function CloudAlerting(_ref73, ref) {
1915
1938
  let {
1916
1939
  children,
1917
1940
  size = 16,
1918
1941
  ...rest
1919
- } = _ref72;
1942
+ } = _ref73;
1920
1943
  return /*#__PURE__*/React.createElement(Icon.default, {
1921
1944
  width: size,
1922
1945
  height: size,
@@ -1925,21 +1948,21 @@ const CloudAlerting = /*#__PURE__*/React.forwardRef(function CloudAlerting(_ref7
1925
1948
  viewBox: "0 0 32 32",
1926
1949
  fill: "currentColor",
1927
1950
  ...rest
1928
- }, _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
1951
+ }, _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
1929
1952
  d: "M28,17v5H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
1930
- })), _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
1953
+ })), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
1931
1954
  d: "M29,14H17a1,1,0,0,1-.8574-1.5144l6-10a1,1,0,0,1,1.7154,0l6,10A1,1,0,0,1,29,14ZM18.7661,12h8.4678L23,4.9436Z"
1932
1955
  })), children);
1933
1956
  });
1934
1957
  if (process.env.NODE_ENV !== "production") {
1935
1958
  CloudAlerting.propTypes = iconPropTypesC5chbmyn.i;
1936
1959
  }
1937
- const CloudAuditing = /*#__PURE__*/React.forwardRef(function CloudAuditing(_ref73, ref) {
1960
+ const CloudAuditing = /*#__PURE__*/React.forwardRef(function CloudAuditing(_ref74, ref) {
1938
1961
  let {
1939
1962
  children,
1940
1963
  size = 16,
1941
1964
  ...rest
1942
- } = _ref73;
1965
+ } = _ref74;
1943
1966
  return /*#__PURE__*/React.createElement(Icon.default, {
1944
1967
  width: size,
1945
1968
  height: size,
@@ -1948,21 +1971,21 @@ const CloudAuditing = /*#__PURE__*/React.forwardRef(function CloudAuditing(_ref7
1948
1971
  viewBox: "0 0 32 32",
1949
1972
  fill: "currentColor",
1950
1973
  ...rest
1951
- }, _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
1974
+ }, _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
1952
1975
  d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
1953
- })), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
1976
+ })), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
1954
1977
  d: "M21 15L16 10.04 17.59 8.47 21 11.85 28.41 4.5 30 6.08 21 15z"
1955
1978
  })), children);
1956
1979
  });
1957
1980
  if (process.env.NODE_ENV !== "production") {
1958
1981
  CloudAuditing.propTypes = iconPropTypesC5chbmyn.i;
1959
1982
  }
1960
- const CloudDataOps = /*#__PURE__*/React.forwardRef(function CloudDataOps(_ref74, ref) {
1983
+ const CloudDataOps = /*#__PURE__*/React.forwardRef(function CloudDataOps(_ref75, ref) {
1961
1984
  let {
1962
1985
  children,
1963
1986
  size = 16,
1964
1987
  ...rest
1965
- } = _ref74;
1988
+ } = _ref75;
1966
1989
  return /*#__PURE__*/React.createElement(Icon.default, {
1967
1990
  width: size,
1968
1991
  height: size,
@@ -1971,19 +1994,19 @@ const CloudDataOps = /*#__PURE__*/React.forwardRef(function CloudDataOps(_ref74,
1971
1994
  viewBox: "0 0 32 32",
1972
1995
  fill: "currentColor",
1973
1996
  ...rest
1974
- }, _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
1997
+ }, _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
1975
1998
  d: "M28 18H30V28H28zM24 14H26V28H24zM20 22H22V28H20zM22.175 10L23.76 8.7339A9.9522 9.9522 0 0017.89 5.1816 10.0025 10.0025 0 006.17 13.1152 7.5054 7.5054 0 00.0544 21.4087 7.6843 7.6843 0 007.7692 28H16V26H7.6945a5.632 5.632 0 01-5.6023-4.4858 5.5064 5.5064 0 014.4339-6.4307l1.3486-.2441.2139-1.11a8.206 8.206 0 016.7426-6.6426 7.9666 7.9666 0 013.0137.13A7.8037 7.8037 0 0122.175 10z"
1976
1999
  })), children);
1977
2000
  });
1978
2001
  if (process.env.NODE_ENV !== "production") {
1979
2002
  CloudDataOps.propTypes = iconPropTypesC5chbmyn.i;
1980
2003
  }
1981
- const CloudDownload = /*#__PURE__*/React.forwardRef(function CloudDownload(_ref75, ref) {
2004
+ const CloudDownload = /*#__PURE__*/React.forwardRef(function CloudDownload(_ref76, ref) {
1982
2005
  let {
1983
2006
  children,
1984
2007
  size = 16,
1985
2008
  ...rest
1986
- } = _ref75;
2009
+ } = _ref76;
1987
2010
  return /*#__PURE__*/React.createElement(Icon.default, {
1988
2011
  width: size,
1989
2012
  height: size,
@@ -1992,21 +2015,21 @@ const CloudDownload = /*#__PURE__*/React.forwardRef(function CloudDownload(_ref7
1992
2015
  viewBox: "0 0 32 32",
1993
2016
  fill: "currentColor",
1994
2017
  ...rest
1995
- }, _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
2018
+ }, _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
1996
2019
  d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z"
1997
- })), _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
2020
+ })), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
1998
2021
  d: "M17 26.17L17 14 15 14 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17z"
1999
2022
  })), children);
2000
2023
  });
2001
2024
  if (process.env.NODE_ENV !== "production") {
2002
2025
  CloudDownload.propTypes = iconPropTypesC5chbmyn.i;
2003
2026
  }
2004
- const CloudLogging = /*#__PURE__*/React.forwardRef(function CloudLogging(_ref76, ref) {
2027
+ const CloudLogging = /*#__PURE__*/React.forwardRef(function CloudLogging(_ref77, ref) {
2005
2028
  let {
2006
2029
  children,
2007
2030
  size = 16,
2008
2031
  ...rest
2009
- } = _ref76;
2032
+ } = _ref77;
2010
2033
  return /*#__PURE__*/React.createElement(Icon.default, {
2011
2034
  width: size,
2012
2035
  height: size,
@@ -2015,21 +2038,21 @@ const CloudLogging = /*#__PURE__*/React.forwardRef(function CloudLogging(_ref76,
2015
2038
  viewBox: "0 0 32 32",
2016
2039
  fill: "currentColor",
2017
2040
  ...rest
2018
- }, _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
2041
+ }, _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
2019
2042
  d: "M28 16v6H4V6H15V4H4A2 2 0 002 6V22a2 2 0 002 2h8v4H8v2H24V28H20V24h8a2 2 0 002-2V16zM18 28H14V24h4zM18 4H30V6H18z"
2020
- })), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
2043
+ })), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
2021
2044
  d: "M18 8H30V10H18zM18 12H24V14H18z"
2022
2045
  })), children);
2023
2046
  });
2024
2047
  if (process.env.NODE_ENV !== "production") {
2025
2048
  CloudLogging.propTypes = iconPropTypesC5chbmyn.i;
2026
2049
  }
2027
- const CloudMonitoring = /*#__PURE__*/React.forwardRef(function CloudMonitoring(_ref77, ref) {
2050
+ const CloudMonitoring = /*#__PURE__*/React.forwardRef(function CloudMonitoring(_ref78, ref) {
2028
2051
  let {
2029
2052
  children,
2030
2053
  size = 16,
2031
2054
  ...rest
2032
- } = _ref77;
2055
+ } = _ref78;
2033
2056
  return /*#__PURE__*/React.createElement(Icon.default, {
2034
2057
  width: size,
2035
2058
  height: size,
@@ -2038,21 +2061,21 @@ const CloudMonitoring = /*#__PURE__*/React.forwardRef(function CloudMonitoring(_
2038
2061
  viewBox: "0 0 32 32",
2039
2062
  fill: "currentColor",
2040
2063
  ...rest
2041
- }, _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
2064
+ }, _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
2042
2065
  d: "M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
2043
- })), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
2066
+ })), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
2044
2067
  d: "M18,18h-.01a1,1,0,0,1-.9511-.7253L15.2456,11H11V9h5a1,1,0,0,1,.9615.7252l1.0742,3.7589,3.0088-9.7783A1.0142,1.0142,0,0,1,22,3a.98.98,0,0,1,.9487.6838L24.7207,9H30v2H24a1,1,0,0,1-.9487-.6838l-1.0132-3.04L18.9556,17.2942A1,1,0,0,1,18,18Z"
2045
2068
  })), children);
2046
2069
  });
2047
2070
  if (process.env.NODE_ENV !== "production") {
2048
2071
  CloudMonitoring.propTypes = iconPropTypesC5chbmyn.i;
2049
2072
  }
2050
- const CloudOffline = /*#__PURE__*/React.forwardRef(function CloudOffline(_ref78, ref) {
2073
+ const CloudOffline = /*#__PURE__*/React.forwardRef(function CloudOffline(_ref79, ref) {
2051
2074
  let {
2052
2075
  children,
2053
2076
  size = 16,
2054
2077
  ...rest
2055
- } = _ref78;
2078
+ } = _ref79;
2056
2079
  return /*#__PURE__*/React.createElement(Icon.default, {
2057
2080
  width: size,
2058
2081
  height: size,
@@ -2061,19 +2084,19 @@ const CloudOffline = /*#__PURE__*/React.forwardRef(function CloudOffline(_ref78,
2061
2084
  viewBox: "0 0 32 32",
2062
2085
  fill: "currentColor",
2063
2086
  ...rest
2064
- }, _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
2087
+ }, _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
2065
2088
  d: "M24.8008 12.1362a8.8694 8.8694 0 00-.9795-2.5434L30 3.4142 28.5872 2 2 28.5872 3.4142 30l5-5H23.5a6.4974 6.4974 0 001.3008-12.8638zM23.5 23H10.4141L22.3418 11.0723a6.9049 6.9049 0 01.6006 2.0708l.0986.812.8154.0639A4.4975 4.4975 0 0123.5 23zM4.2964 23.4487l1.4313-1.4311A4.4774 4.4774 0 018.144 14.019l.8155-.0639.0991-.812a6.9867 6.9867 0 0110.63-5.0865l1.4431-1.4428A8.9859 8.9859 0 007.2 12.1362 6.4891 6.4891 0 004.2964 23.4487z"
2066
2089
  })), children);
2067
2090
  });
2068
2091
  if (process.env.NODE_ENV !== "production") {
2069
2092
  CloudOffline.propTypes = iconPropTypesC5chbmyn.i;
2070
2093
  }
2071
- const CloudServiceManagement = /*#__PURE__*/React.forwardRef(function CloudServiceManagement(_ref79, ref) {
2094
+ const CloudServiceManagement = /*#__PURE__*/React.forwardRef(function CloudServiceManagement(_ref80, ref) {
2072
2095
  let {
2073
2096
  children,
2074
2097
  size = 16,
2075
2098
  ...rest
2076
- } = _ref79;
2099
+ } = _ref80;
2077
2100
  return /*#__PURE__*/React.createElement(Icon.default, {
2078
2101
  width: size,
2079
2102
  height: size,
@@ -2082,21 +2105,21 @@ const CloudServiceManagement = /*#__PURE__*/React.forwardRef(function CloudServi
2082
2105
  viewBox: "0 0 32 32",
2083
2106
  fill: "currentColor",
2084
2107
  ...rest
2085
- }, _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
2108
+ }, _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
2086
2109
  d: "M28,17v5H4V6H14V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
2087
- })), _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
2110
+ })), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
2088
2111
  d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z"
2089
2112
  })), children);
2090
2113
  });
2091
2114
  if (process.env.NODE_ENV !== "production") {
2092
2115
  CloudServiceManagement.propTypes = iconPropTypesC5chbmyn.i;
2093
2116
  }
2094
- const CloudUpload = /*#__PURE__*/React.forwardRef(function CloudUpload(_ref80, ref) {
2117
+ const CloudUpload = /*#__PURE__*/React.forwardRef(function CloudUpload(_ref81, ref) {
2095
2118
  let {
2096
2119
  children,
2097
2120
  size = 16,
2098
2121
  ...rest
2099
- } = _ref80;
2122
+ } = _ref81;
2100
2123
  return /*#__PURE__*/React.createElement(Icon.default, {
2101
2124
  width: size,
2102
2125
  height: size,
@@ -2105,21 +2128,21 @@ const CloudUpload = /*#__PURE__*/React.forwardRef(function CloudUpload(_ref80, r
2105
2128
  viewBox: "0 0 32 32",
2106
2129
  fill: "currentColor",
2107
2130
  ...rest
2108
- }, _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
2131
+ }, _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
2109
2132
  d: "M11 18L12.41 19.41 15 16.83 15 29 17 29 17 16.83 19.59 19.41 21 18 16 13 11 18z"
2110
- })), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
2133
+ })), _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
2111
2134
  d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z"
2112
2135
  })), children);
2113
2136
  });
2114
2137
  if (process.env.NODE_ENV !== "production") {
2115
2138
  CloudUpload.propTypes = iconPropTypesC5chbmyn.i;
2116
2139
  }
2117
- const CloudApp = /*#__PURE__*/React.forwardRef(function CloudApp(_ref81, ref) {
2140
+ const CloudApp = /*#__PURE__*/React.forwardRef(function CloudApp(_ref82, ref) {
2118
2141
  let {
2119
2142
  children,
2120
2143
  size = 16,
2121
2144
  ...rest
2122
- } = _ref81;
2145
+ } = _ref82;
2123
2146
  return /*#__PURE__*/React.createElement(Icon.default, {
2124
2147
  width: size,
2125
2148
  height: size,
@@ -2128,19 +2151,19 @@ const CloudApp = /*#__PURE__*/React.forwardRef(function CloudApp(_ref81, ref) {
2128
2151
  viewBox: "0 0 32 32",
2129
2152
  fill: "currentColor",
2130
2153
  ...rest
2131
- }, _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
2154
+ }, _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
2132
2155
  d: "M25.8289 13.1155A10.02 10.02 0 0016 5.0005V7a8.0233 8.0233 0 017.8649 6.4934l.2591 1.346 1.3488.2441A5.5019 5.5019 0 0124.5076 26H16v2h8.5076a7.5019 7.5019 0 001.3213-14.8845zM8 24H14V26H8zM4 24H6V26H4zM6 20H14V22H6zM2 20H4V22H2zM8 16H14V18H8zM4 16H6V18H4zM10 12H14V14H10zM6 12H8V14H6zM12 8H14V10H12z"
2133
2156
  })), children);
2134
2157
  });
2135
2158
  if (process.env.NODE_ENV !== "production") {
2136
2159
  CloudApp.propTypes = iconPropTypesC5chbmyn.i;
2137
2160
  }
2138
- const CloudCeiling = /*#__PURE__*/React.forwardRef(function CloudCeiling(_ref82, ref) {
2161
+ const CloudCeiling = /*#__PURE__*/React.forwardRef(function CloudCeiling(_ref83, ref) {
2139
2162
  let {
2140
2163
  children,
2141
2164
  size = 16,
2142
2165
  ...rest
2143
- } = _ref82;
2166
+ } = _ref83;
2144
2167
  return /*#__PURE__*/React.createElement(Icon.default, {
2145
2168
  width: size,
2146
2169
  height: size,
@@ -2149,21 +2172,21 @@ const CloudCeiling = /*#__PURE__*/React.forwardRef(function CloudCeiling(_ref82,
2149
2172
  viewBox: "0 0 32 32",
2150
2173
  fill: "currentColor",
2151
2174
  ...rest
2152
- }, _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
2175
+ }, _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
2153
2176
  d: "M2 28H11V30H2zM21 28H30V30H21zM17 26.167L17 17.832 19.586 20.414 21 19 16 14 11 19 12.413 20.415 15 17.832 15 26.167 12.413 23.584 11 25 16 30 21 25 19.586 23.586 17 26.167z"
2154
- })), _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
2177
+ })), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
2155
2178
  d: "M23,16H21V14h2a3,3,0,0,0,0-6c-.0938.0144-.1538.0219-.2153.0263l-.8037.0572L21.7544,7.31a5.9927,5.9927,0,0,0-11.1758-.8655l-.2832.5994-.8423-.0455A3.5008,3.5008,0,0,0,9.5,14H11v2H9.5A5.5,5.5,0,0,1,9.07,5.0166,7.9909,7.9909,0,0,1,23.42,6.0175,5,5,0,0,1,23,16Z"
2156
2179
  })), children);
2157
2180
  });
2158
2181
  if (process.env.NODE_ENV !== "production") {
2159
2182
  CloudCeiling.propTypes = iconPropTypesC5chbmyn.i;
2160
2183
  }
2161
- const CloudFoundry_1 = /*#__PURE__*/React.forwardRef(function CloudFoundry_1(_ref83, ref) {
2184
+ const CloudFoundry_1 = /*#__PURE__*/React.forwardRef(function CloudFoundry_1(_ref84, ref) {
2162
2185
  let {
2163
2186
  children,
2164
2187
  size = 16,
2165
2188
  ...rest
2166
- } = _ref83;
2189
+ } = _ref84;
2167
2190
  return /*#__PURE__*/React.createElement(Icon.default, {
2168
2191
  width: size,
2169
2192
  height: size,
@@ -2172,21 +2195,21 @@ const CloudFoundry_1 = /*#__PURE__*/React.forwardRef(function CloudFoundry_1(_re
2172
2195
  viewBox: "0 0 32 32",
2173
2196
  fill: "currentColor",
2174
2197
  ...rest
2175
- }, _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
2198
+ }, _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
2176
2199
  d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z"
2177
- })), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
2200
+ })), _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
2178
2201
  d: "M14 24H11a2 2 0 01-2-2V19a2 2 0 012-2h3v2H11v3h3zM21 15V13H19a2 2 0 00-2 2v2H16v2h1v5h2V19h2V17H19V15z"
2179
2202
  })), children);
2180
2203
  });
2181
2204
  if (process.env.NODE_ENV !== "production") {
2182
2205
  CloudFoundry_1.propTypes = iconPropTypesC5chbmyn.i;
2183
2206
  }
2184
- const CloudFoundry_2 = /*#__PURE__*/React.forwardRef(function CloudFoundry_2(_ref84, ref) {
2207
+ const CloudFoundry_2 = /*#__PURE__*/React.forwardRef(function CloudFoundry_2(_ref85, ref) {
2185
2208
  let {
2186
2209
  children,
2187
2210
  size = 16,
2188
2211
  ...rest
2189
- } = _ref84;
2212
+ } = _ref85;
2190
2213
  return /*#__PURE__*/React.createElement(Icon.default, {
2191
2214
  width: size,
2192
2215
  height: size,
@@ -2195,19 +2218,19 @@ const CloudFoundry_2 = /*#__PURE__*/React.forwardRef(function CloudFoundry_2(_re
2195
2218
  viewBox: "0 0 32 32",
2196
2219
  fill: "currentColor",
2197
2220
  ...rest
2198
- }, _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
2221
+ }, _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
2199
2222
  d: "M25 11L25 9 17 9 17 23 19 23 19 17 24 17 24 15 19 15 19 11 25 11zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z"
2200
2223
  })), children);
2201
2224
  });
2202
2225
  if (process.env.NODE_ENV !== "production") {
2203
2226
  CloudFoundry_2.propTypes = iconPropTypesC5chbmyn.i;
2204
2227
  }
2205
- const CloudRegistry = /*#__PURE__*/React.forwardRef(function CloudRegistry(_ref85, ref) {
2228
+ const CloudRegistry = /*#__PURE__*/React.forwardRef(function CloudRegistry(_ref86, ref) {
2206
2229
  let {
2207
2230
  children,
2208
2231
  size = 16,
2209
2232
  ...rest
2210
- } = _ref85;
2233
+ } = _ref86;
2211
2234
  return /*#__PURE__*/React.createElement(Icon.default, {
2212
2235
  width: size,
2213
2236
  height: size,
@@ -2216,21 +2239,21 @@ const CloudRegistry = /*#__PURE__*/React.forwardRef(function CloudRegistry(_ref8
2216
2239
  viewBox: "0 0 32 32",
2217
2240
  fill: "currentColor",
2218
2241
  ...rest
2219
- }, _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
2242
+ }, _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
2220
2243
  d: "M28 30H23a2.0023 2.0023 0 01-2-2V23a2.0023 2.0023 0 012-2h5a2.0023 2.0023 0 012 2v5A2.0023 2.0023 0 0128 30zm-5-7h-.0012L23 28h5V23zM16 23H11a2.0023 2.0023 0 01-2-2V11a2.0023 2.0023 0 012-2H21a2.0023 2.0023 0 012 2v5H21V11H11V21h5z"
2221
- })), _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
2244
+ })), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
2222
2245
  d: "M16,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V16H28V4H4V28H16Z"
2223
2246
  })), children);
2224
2247
  });
2225
2248
  if (process.env.NODE_ENV !== "production") {
2226
2249
  CloudRegistry.propTypes = iconPropTypesC5chbmyn.i;
2227
2250
  }
2228
- const CloudSatellite = /*#__PURE__*/React.forwardRef(function CloudSatellite(_ref86, ref) {
2251
+ const CloudSatellite = /*#__PURE__*/React.forwardRef(function CloudSatellite(_ref87, ref) {
2229
2252
  let {
2230
2253
  children,
2231
2254
  size = 16,
2232
2255
  ...rest
2233
- } = _ref86;
2256
+ } = _ref87;
2234
2257
  return /*#__PURE__*/React.createElement(Icon.default, {
2235
2258
  width: size,
2236
2259
  height: size,
@@ -2243,25 +2266,25 @@ const CloudSatellite = /*#__PURE__*/React.forwardRef(function CloudSatellite(_re
2243
2266
  cx: "9",
2244
2267
  cy: "20",
2245
2268
  r: "2"
2246
- })), _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
2269
+ })), _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
2247
2270
  d: "M16,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,14Z"
2248
2271
  })), _circle1 || (_circle1 = /*#__PURE__*/React.createElement("circle", {
2249
2272
  cx: "23",
2250
2273
  cy: "12",
2251
2274
  r: "2"
2252
- })), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
2275
+ })), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
2253
2276
  d: "M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z"
2254
2277
  })), children);
2255
2278
  });
2256
2279
  if (process.env.NODE_ENV !== "production") {
2257
2280
  CloudSatellite.propTypes = iconPropTypesC5chbmyn.i;
2258
2281
  }
2259
- const CloudSatelliteConfig = /*#__PURE__*/React.forwardRef(function CloudSatelliteConfig(_ref87, ref) {
2282
+ const CloudSatelliteConfig = /*#__PURE__*/React.forwardRef(function CloudSatelliteConfig(_ref88, ref) {
2260
2283
  let {
2261
2284
  children,
2262
2285
  size = 16,
2263
2286
  ...rest
2264
- } = _ref87;
2287
+ } = _ref88;
2265
2288
  return /*#__PURE__*/React.createElement(Icon.default, {
2266
2289
  width: size,
2267
2290
  height: size,
@@ -2270,31 +2293,31 @@ const CloudSatelliteConfig = /*#__PURE__*/React.forwardRef(function CloudSatelli
2270
2293
  viewBox: "0 0 32 32",
2271
2294
  fill: "currentColor",
2272
2295
  ...rest
2273
- }, _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
2296
+ }, _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
2274
2297
  d: "M32,26V24H29.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,26,20.1011V18H24v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,20.1011,24H18v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,24,29.8989V32h2V29.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,29.8989,26Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,28Z"
2275
2298
  })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
2276
2299
  cx: "7",
2277
2300
  cy: "20",
2278
2301
  r: "2"
2279
- })), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
2302
+ })), _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
2280
2303
  d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z"
2281
2304
  })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
2282
2305
  cx: "21",
2283
2306
  cy: "12",
2284
2307
  r: "2"
2285
- })), _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
2308
+ })), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
2286
2309
  d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z"
2287
2310
  })), children);
2288
2311
  });
2289
2312
  if (process.env.NODE_ENV !== "production") {
2290
2313
  CloudSatelliteConfig.propTypes = iconPropTypesC5chbmyn.i;
2291
2314
  }
2292
- const CloudSatelliteLink = /*#__PURE__*/React.forwardRef(function CloudSatelliteLink(_ref88, ref) {
2315
+ const CloudSatelliteLink = /*#__PURE__*/React.forwardRef(function CloudSatelliteLink(_ref89, ref) {
2293
2316
  let {
2294
2317
  children,
2295
2318
  size = 16,
2296
2319
  ...rest
2297
- } = _ref88;
2320
+ } = _ref89;
2298
2321
  return /*#__PURE__*/React.createElement(Icon.default, {
2299
2322
  width: size,
2300
2323
  height: size,
@@ -2303,33 +2326,33 @@ const CloudSatelliteLink = /*#__PURE__*/React.forwardRef(function CloudSatellite
2303
2326
  viewBox: "0 0 32 32",
2304
2327
  fill: "currentColor",
2305
2328
  ...rest
2306
- }, _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
2329
+ }, _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
2307
2330
  d: "M30.9763,24.9748l-5.0015,5.0015a3.501,3.501,0,0,1-4.9511-4.9511L22.4383,26.44A1.5,1.5,0,0,0,24.56,28.5617L29.5617,23.56A1.5,1.5,0,0,0,27.44,21.4383l-1.4146-1.4146a3.501,3.501,0,0,1,4.9511,4.9511Z"
2308
- })), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
2331
+ })), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
2309
2332
  d: "M20.0252,21.0237l-5.0015,5.0015a3.501,3.501,0,0,0,4.9511,4.9511L18.56,29.5617A1.5,1.5,0,0,1,16.4383,27.44L21.44,22.4383A1.5,1.5,0,0,1,23.5617,24.56l1.4146,1.4146a3.501,3.501,0,0,0-4.9511-4.9511Z"
2310
2333
  })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
2311
2334
  cx: "7",
2312
2335
  cy: "20",
2313
2336
  r: "2"
2314
- })), _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
2337
+ })), _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
2315
2338
  d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z"
2316
2339
  })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
2317
2340
  cx: "21",
2318
2341
  cy: "12",
2319
2342
  r: "2"
2320
- })), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
2343
+ })), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
2321
2344
  d: "M11.3076,27.2725,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L10.3,29Z"
2322
2345
  })), children);
2323
2346
  });
2324
2347
  if (process.env.NODE_ENV !== "production") {
2325
2348
  CloudSatelliteLink.propTypes = iconPropTypesC5chbmyn.i;
2326
2349
  }
2327
- const CloudSatelliteServices = /*#__PURE__*/React.forwardRef(function CloudSatelliteServices(_ref89, ref) {
2350
+ const CloudSatelliteServices = /*#__PURE__*/React.forwardRef(function CloudSatelliteServices(_ref90, ref) {
2328
2351
  let {
2329
2352
  children,
2330
2353
  size = 16,
2331
2354
  ...rest
2332
- } = _ref89;
2355
+ } = _ref90;
2333
2356
  return /*#__PURE__*/React.createElement(Icon.default, {
2334
2357
  width: size,
2335
2358
  height: size,
@@ -2338,31 +2361,31 @@ const CloudSatelliteServices = /*#__PURE__*/React.forwardRef(function CloudSatel
2338
2361
  viewBox: "0 0 32 32",
2339
2362
  fill: "currentColor",
2340
2363
  ...rest
2341
- }, _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
2364
+ }, _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
2342
2365
  d: "M29,26a2.97,2.97,0,0,0-1.8551.6607L25,25.4224V23.8157a3,3,0,1,0-2,0v1.6067l-2.1449,1.2383A2.97,2.97,0,0,0,19,26a3.02,3.02,0,1,0,2.9254,2.3525L24,27.1548l2.0746,1.1977A2.9978,2.9978,0,1,0,29,26ZM19,30a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,19,30Zm5-10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,24,20Zm5,10a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,29,30Z"
2343
2366
  })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
2344
2367
  cx: "7",
2345
2368
  cy: "20",
2346
2369
  r: "2"
2347
- })), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
2370
+ })), _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
2348
2371
  d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z"
2349
2372
  })), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
2350
2373
  cx: "21",
2351
2374
  cy: "12",
2352
2375
  r: "2"
2353
- })), _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
2376
+ })), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
2354
2377
  d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z"
2355
2378
  })), children);
2356
2379
  });
2357
2380
  if (process.env.NODE_ENV !== "production") {
2358
2381
  CloudSatelliteServices.propTypes = iconPropTypesC5chbmyn.i;
2359
2382
  }
2360
- const CloudServices = /*#__PURE__*/React.forwardRef(function CloudServices(_ref90, ref) {
2383
+ const CloudServices = /*#__PURE__*/React.forwardRef(function CloudServices(_ref91, ref) {
2361
2384
  let {
2362
2385
  children,
2363
2386
  size = 16,
2364
2387
  ...rest
2365
- } = _ref90;
2388
+ } = _ref91;
2366
2389
  return /*#__PURE__*/React.createElement(Icon.default, {
2367
2390
  width: size,
2368
2391
  height: size,
@@ -2371,21 +2394,21 @@ const CloudServices = /*#__PURE__*/React.forwardRef(function CloudServices(_ref9
2371
2394
  viewBox: "0 0 32 32",
2372
2395
  fill: "currentColor",
2373
2396
  ...rest
2374
- }, _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
2397
+ }, _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
2375
2398
  d: "M25.8218,10.124a9.9991,9.9991,0,0,0-19.6435,0A7.4964,7.4964,0,0,0,7.5,25H8V23H7.5a5.4961,5.4961,0,0,1-.3769-10.9795l.8364-.0571.09-.8335a7.9979,7.9979,0,0,1,15.9013,0l.09.8335.8364.0571A5.4961,5.4961,0,0,1,24.5,23H24v2h.5a7.4964,7.4964,0,0,0,1.3218-14.876Z"
2376
- })), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
2399
+ })), _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
2377
2400
  d: "M23,22V20H20.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,17,16.1011V14H15v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,11.1011,20H9v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,15,25.8989V28h2V25.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,20.8989,22Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,24Z"
2378
2401
  })), children);
2379
2402
  });
2380
2403
  if (process.env.NODE_ENV !== "production") {
2381
2404
  CloudServices.propTypes = iconPropTypesC5chbmyn.i;
2382
2405
  }
2383
- const Cloudy = /*#__PURE__*/React.forwardRef(function Cloudy(_ref91, ref) {
2406
+ const Cloudy = /*#__PURE__*/React.forwardRef(function Cloudy(_ref92, ref) {
2384
2407
  let {
2385
2408
  children,
2386
2409
  size = 16,
2387
2410
  ...rest
2388
- } = _ref91;
2411
+ } = _ref92;
2389
2412
  return /*#__PURE__*/React.createElement(Icon.default, {
2390
2413
  width: size,
2391
2414
  height: size,
@@ -2394,19 +2417,19 @@ const Cloudy = /*#__PURE__*/React.forwardRef(function Cloudy(_ref91, ref) {
2394
2417
  viewBox: "0 0 32 32",
2395
2418
  fill: "currentColor",
2396
2419
  ...rest
2397
- }, _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
2420
+ }, _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
2398
2421
  d: "M30.0005,15.5005a6.5324,6.5324,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0,6.5321,6.5321,0,0,0-5.2,6.3638,6.4543,6.4543,0,0,0,1.6887,4.35A5.9829,5.9829,0,0,0,8,30H19a5.9764,5.9764,0,0,0,5.6094-8.1016A6.5051,6.5051,0,0,0,30.0005,15.5005ZM19,28H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,19.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,28Zm4.5-8h-.0554a5.9562,5.9562,0,0,0-2.7959-1.7564,7.4952,7.4952,0,0,0-14.2984,0,5.9877,5.9877,0,0,0-1.0315.4073A4.4446,4.4446,0,0,1,4,15.5005a4.5171,4.5171,0,0,1,4.144-4.481l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639a4.4975,4.4975,0,0,1-.3564,8.981Z"
2399
2422
  })), children);
2400
2423
  });
2401
2424
  if (process.env.NODE_ENV !== "production") {
2402
2425
  Cloudy.propTypes = iconPropTypesC5chbmyn.i;
2403
2426
  }
2404
- const WatsonHealthCobbAngle = /*#__PURE__*/React.forwardRef(function WatsonHealthCobbAngle(_ref92, ref) {
2427
+ const WatsonHealthCobbAngle = /*#__PURE__*/React.forwardRef(function WatsonHealthCobbAngle(_ref93, ref) {
2405
2428
  let {
2406
2429
  children,
2407
2430
  size = 16,
2408
2431
  ...rest
2409
- } = _ref92;
2432
+ } = _ref93;
2410
2433
  return /*#__PURE__*/React.createElement(Icon.default, {
2411
2434
  width: size,
2412
2435
  height: size,
@@ -2415,19 +2438,19 @@ const WatsonHealthCobbAngle = /*#__PURE__*/React.forwardRef(function WatsonHealt
2415
2438
  viewBox: "0 0 32 32",
2416
2439
  fill: "currentColor",
2417
2440
  ...rest
2418
- }, _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
2441
+ }, _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
2419
2442
  d: "M20 17V15a2 2 0 00-2-2H10a2 2 0 00-2 2v2a2 2 0 002 2h8A2 2 0 0020 17zM10 15h8v2H10zM23.42 24.48A2 2 0 0021 23.06l-7.73 2.07a2 2 0 00-1.42 2.44h0l.52 1.93A2 2 0 0014.27 31a3 3 0 00.52-.07l7.73-2.07h0a2 2 0 001.41-2.45zM14.27 29l-.51-1.94L21.48 25 22 26.92zM13.24 6.86L21 8.93h0a2.24 2.24 0 00.51.07 2 2 0 001.94-1.48L24 5.58a2 2 0 00-1.41-2.45L14.79 1.06a2 2 0 00-2.45 1.41h0l-.52 1.93a2 2 0 001.42 2.44zm1-3.86L22 5.07 21.48 7 13.76 4.93zM14 21H16V23H14zM14 9H16V11H14z"
2420
2443
  })), children);
2421
2444
  });
2422
2445
  if (process.env.NODE_ENV !== "production") {
2423
2446
  WatsonHealthCobbAngle.propTypes = iconPropTypesC5chbmyn.i;
2424
2447
  }
2425
- const Code = /*#__PURE__*/React.forwardRef(function Code(_ref93, ref) {
2448
+ const Code = /*#__PURE__*/React.forwardRef(function Code(_ref94, ref) {
2426
2449
  let {
2427
2450
  children,
2428
2451
  size = 16,
2429
2452
  ...rest
2430
- } = _ref93;
2453
+ } = _ref94;
2431
2454
  return /*#__PURE__*/React.createElement(Icon.default, {
2432
2455
  width: size,
2433
2456
  height: size,
@@ -2436,9 +2459,9 @@ const Code = /*#__PURE__*/React.forwardRef(function Code(_ref93, ref) {
2436
2459
  viewBox: "0 0 32 32",
2437
2460
  fill: "currentColor",
2438
2461
  ...rest
2439
- }, _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
2462
+ }, _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
2440
2463
  d: "M31 16L24 23 22.59 21.59 28.17 16 22.59 10.41 24 9 31 16zM1 16L8 9 9.41 10.41 3.83 16 9.41 21.59 8 23 1 16z"
2441
- })), _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
2464
+ })), _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
2442
2465
  d: "M5.91 15H26.080000000000002V17H5.91z",
2443
2466
  transform: "rotate(-75 15.996 16)"
2444
2467
  })), children);
@@ -2446,12 +2469,12 @@ const Code = /*#__PURE__*/React.forwardRef(function Code(_ref93, ref) {
2446
2469
  if (process.env.NODE_ENV !== "production") {
2447
2470
  Code.propTypes = iconPropTypesC5chbmyn.i;
2448
2471
  }
2449
- const CodeHide = /*#__PURE__*/React.forwardRef(function CodeHide(_ref94, ref) {
2472
+ const CodeHide = /*#__PURE__*/React.forwardRef(function CodeHide(_ref95, ref) {
2450
2473
  let {
2451
2474
  children,
2452
2475
  size = 16,
2453
2476
  ...rest
2454
- } = _ref94;
2477
+ } = _ref95;
2455
2478
  return /*#__PURE__*/React.createElement(Icon.default, {
2456
2479
  width: size,
2457
2480
  height: size,
@@ -2460,19 +2483,19 @@ const CodeHide = /*#__PURE__*/React.forwardRef(function CodeHide(_ref94, ref) {
2460
2483
  viewBox: "0 0 32 32",
2461
2484
  fill: "currentColor",
2462
2485
  ...rest
2463
- }, _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
2486
+ }, _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
2464
2487
  d: "M17.713 13.471L19.576 6.518 17.645 6 16.08 11.838 17.713 13.471zM24.207 19.965L25.621 21.379 31 16 24 9 22.586 10.414 28.172 16 24.207 19.965zM30 28.586L3.414 2 2 3.414 7.793 9.207 1 16 8 23 9.414 21.586 3.828 16 9.207 10.621 14.884 16.298 12.423 25.482 14.355 26 16.517 17.931 28.586 30 30 28.586z"
2465
2488
  })), children);
2466
2489
  });
2467
2490
  if (process.env.NODE_ENV !== "production") {
2468
2491
  CodeHide.propTypes = iconPropTypesC5chbmyn.i;
2469
2492
  }
2470
- const CodeReference = /*#__PURE__*/React.forwardRef(function CodeReference(_ref95, ref) {
2493
+ const CodeReference = /*#__PURE__*/React.forwardRef(function CodeReference(_ref96, ref) {
2471
2494
  let {
2472
2495
  children,
2473
2496
  size = 16,
2474
2497
  ...rest
2475
- } = _ref95;
2498
+ } = _ref96;
2476
2499
  return /*#__PURE__*/React.createElement(Icon.default, {
2477
2500
  width: size,
2478
2501
  height: size,
@@ -2481,24 +2504,24 @@ const CodeReference = /*#__PURE__*/React.forwardRef(function CodeReference(_ref9
2481
2504
  viewBox: "0 0 32 32",
2482
2505
  fill: "currentColor",
2483
2506
  ...rest
2484
- }, _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
2507
+ }, _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
2485
2508
  d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM30 10L24 4 22.586 5.414 27.172 10 22.586 14.586 24 16 30 10z"
2486
- })), _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
2509
+ })), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
2487
2510
  d: "M8.944 9.001H24.974000000000004V11.001H8.944z",
2488
2511
  transform: "rotate(-74.995 16.96 10)"
2489
- })), _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
2512
+ })), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
2490
2513
  d: "M4 10L10 4 11.414 5.414 6.828 10 11.414 14.586 10 16 4 10z"
2491
2514
  })), children);
2492
2515
  });
2493
2516
  if (process.env.NODE_ENV !== "production") {
2494
2517
  CodeReference.propTypes = iconPropTypesC5chbmyn.i;
2495
2518
  }
2496
- const CodeBlock = /*#__PURE__*/React.forwardRef(function CodeBlock(_ref96, ref) {
2519
+ const CodeBlock = /*#__PURE__*/React.forwardRef(function CodeBlock(_ref97, ref) {
2497
2520
  let {
2498
2521
  children,
2499
2522
  size = 16,
2500
2523
  ...rest
2501
- } = _ref96;
2524
+ } = _ref97;
2502
2525
  return /*#__PURE__*/React.createElement(Icon.default, {
2503
2526
  width: size,
2504
2527
  height: size,
@@ -2507,7 +2530,7 @@ const CodeBlock = /*#__PURE__*/React.forwardRef(function CodeBlock(_ref96, ref)
2507
2530
  viewBox: "0 0 32 32",
2508
2531
  fill: "currentColor",
2509
2532
  ...rest
2510
- }, _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
2533
+ }, _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
2511
2534
  strokeWidth: "0",
2512
2535
  d: "M2 3H10V5H2zM6 9H30V11H6zM6 15H30V17H6zM2 27H10V29H2zM6 21H22V23H6z"
2513
2536
  })), children);
@@ -2515,12 +2538,12 @@ const CodeBlock = /*#__PURE__*/React.forwardRef(function CodeBlock(_ref96, ref)
2515
2538
  if (process.env.NODE_ENV !== "production") {
2516
2539
  CodeBlock.propTypes = iconPropTypesC5chbmyn.i;
2517
2540
  }
2518
- const CodeSigningService = /*#__PURE__*/React.forwardRef(function CodeSigningService(_ref97, ref) {
2541
+ const CodeSigningService = /*#__PURE__*/React.forwardRef(function CodeSigningService(_ref98, ref) {
2519
2542
  let {
2520
2543
  children,
2521
2544
  size = 16,
2522
2545
  ...rest
2523
- } = _ref97;
2546
+ } = _ref98;
2524
2547
  return /*#__PURE__*/React.createElement(Icon.default, {
2525
2548
  width: size,
2526
2549
  height: size,
@@ -2533,19 +2556,19 @@ const CodeSigningService = /*#__PURE__*/React.forwardRef(function CodeSigningSer
2533
2556
  cx: "25",
2534
2557
  cy: "20",
2535
2558
  r: "1"
2536
- })), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
2559
+ })), _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
2537
2560
  d: "M19.4141 30H15V25.5857l5.0337-5.0337A4.6069 4.6069 0 0120 20a5 5 0 114.4478 4.9663zM17 28h1.5859l5.2061-5.2063.5395.1238a3.0351 3.0351 0 10-2.249-2.2488l.1236.5393L17 26.4143zM6 8H8V16H6zM2 8H4V16H2zM18 8H20V14H18zM14 16H12a2 2 0 01-2-2V10a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0114 16zm-2-2h2V10H12zM2 18H4V26H2zM14 18H16V22H14zM10 26H8a2 2 0 01-2-2V20a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0110 26zM8 24h2V20H8zM2 2H4V6H2zM14 2H16V6H14zM18 2H20V6H18zM10 6H8A2 2 0 016 4V2H8V4h2V2h2V4A2 2 0 0110 6z"
2538
2561
  })), children);
2539
2562
  });
2540
2563
  if (process.env.NODE_ENV !== "production") {
2541
2564
  CodeSigningService.propTypes = iconPropTypesC5chbmyn.i;
2542
2565
  }
2543
- const Cognitive = /*#__PURE__*/React.forwardRef(function Cognitive(_ref98, ref) {
2566
+ const Cognitive = /*#__PURE__*/React.forwardRef(function Cognitive(_ref99, ref) {
2544
2567
  let {
2545
2568
  children,
2546
2569
  size = 16,
2547
2570
  ...rest
2548
- } = _ref98;
2571
+ } = _ref99;
2549
2572
  return /*#__PURE__*/React.createElement(Icon.default, {
2550
2573
  width: size,
2551
2574
  height: size,
@@ -2554,19 +2577,19 @@ const Cognitive = /*#__PURE__*/React.forwardRef(function Cognitive(_ref98, ref)
2554
2577
  viewBox: "0 0 32 32",
2555
2578
  fill: "currentColor",
2556
2579
  ...rest
2557
- }, _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
2580
+ }, _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
2558
2581
  d: "M30,13A11,11,0,0,0,19,2H11a9,9,0,0,0-9,9v3a5,5,0,0,0,5,5H8.1A5,5,0,0,0,13,23h1.38l4,7,1.73-1-4-6.89A2,2,0,0,0,14.38,21H13a3,3,0,0,1,0-6h1V13H13a5,5,0,0,0-4.9,4H7a3,3,0,0,1-3-3V12H6A3,3,0,0,0,9,9V8H7V9a1,1,0,0,1-1,1H4.08A7,7,0,0,1,11,4h6V6a1,1,0,0,1-1,1H14V9h2a3,3,0,0,0,3-3V4a9,9,0,0,1,8.05,5H26a3,3,0,0,0-3,3v1h2V12a1,1,0,0,1,1-1h1.77A8.76,8.76,0,0,1,28,13v1a5,5,0,0,1-5,5H20v2h3a7,7,0,0,0,3-.68V21a3,3,0,0,1-3,3H22v2h1a5,5,0,0,0,5-5V18.89A7,7,0,0,0,30,14Z"
2559
2582
  })), children);
2560
2583
  });
2561
2584
  if (process.env.NODE_ENV !== "production") {
2562
2585
  Cognitive.propTypes = iconPropTypesC5chbmyn.i;
2563
2586
  }
2564
- const Collaborate = /*#__PURE__*/React.forwardRef(function Collaborate(_ref99, ref) {
2587
+ const Collaborate = /*#__PURE__*/React.forwardRef(function Collaborate(_ref100, ref) {
2565
2588
  let {
2566
2589
  children,
2567
2590
  size = 16,
2568
2591
  ...rest
2569
- } = _ref99;
2592
+ } = _ref100;
2570
2593
  return /*#__PURE__*/React.createElement(Icon.default, {
2571
2594
  width: size,
2572
2595
  height: size,
@@ -2575,19 +2598,19 @@ const Collaborate = /*#__PURE__*/React.forwardRef(function Collaborate(_ref99, r
2575
2598
  viewBox: "0 0 32 32",
2576
2599
  fill: "currentColor",
2577
2600
  ...rest
2578
- }, _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
2601
+ }, _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
2579
2602
  d: "M6 21V20H4v1a7 7 0 007 7h3V26H11A5 5 0 016 21zM24 11v1h2V11a7 7 0 00-7-7H16V6h3A5 5 0 0124 11zM11 11H5a3 3 0 00-3 3v2H4V14a1 1 0 011-1h6a1 1 0 011 1v2h2V14A3 3 0 0011 11zM8 10A4 4 0 104 6 4 4 0 008 10zM8 4A2 2 0 116 6 2 2 0 018 4zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM20 20a4 4 0 104-4A4 4 0 0020 20zm6 0a2 2 0 11-2-2A2 2 0 0126 20z"
2580
2603
  })), children);
2581
2604
  });
2582
2605
  if (process.env.NODE_ENV !== "production") {
2583
2606
  Collaborate.propTypes = iconPropTypesC5chbmyn.i;
2584
2607
  }
2585
- const CollapseAll = /*#__PURE__*/React.forwardRef(function CollapseAll(_ref100, ref) {
2608
+ const CollapseAll = /*#__PURE__*/React.forwardRef(function CollapseAll(_ref101, ref) {
2586
2609
  let {
2587
2610
  children,
2588
2611
  size = 16,
2589
2612
  ...rest
2590
- } = _ref100;
2613
+ } = _ref101;
2591
2614
  return /*#__PURE__*/React.createElement(Icon.default, {
2592
2615
  width: size,
2593
2616
  height: size,
@@ -2596,23 +2619,23 @@ const CollapseAll = /*#__PURE__*/React.forwardRef(function CollapseAll(_ref100,
2596
2619
  viewBox: "0 0 32 32",
2597
2620
  fill: "currentColor",
2598
2621
  ...rest
2599
- }, _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
2622
+ }, _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
2600
2623
  d: "M30,15H28V7H13V5H28a2.0023,2.0023,0,0,1,2,2Z"
2601
- })), _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
2624
+ })), _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
2602
2625
  d: "M25,20H23V12H8V10H23a2.0023,2.0023,0,0,1,2,2Z"
2603
- })), _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
2626
+ })), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
2604
2627
  d: "M18,27H4a2.0023,2.0023,0,0,1-2-2V17a2.0023,2.0023,0,0,1,2-2H18a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,18,27ZM4,17v8H18.0012L18,17Z"
2605
2628
  })), children);
2606
2629
  });
2607
2630
  if (process.env.NODE_ENV !== "production") {
2608
2631
  CollapseAll.propTypes = iconPropTypesC5chbmyn.i;
2609
2632
  }
2610
- const CollapseCategories = /*#__PURE__*/React.forwardRef(function CollapseCategories(_ref101, ref) {
2633
+ const CollapseCategories = /*#__PURE__*/React.forwardRef(function CollapseCategories(_ref102, ref) {
2611
2634
  let {
2612
2635
  children,
2613
2636
  size = 16,
2614
2637
  ...rest
2615
- } = _ref101;
2638
+ } = _ref102;
2616
2639
  return /*#__PURE__*/React.createElement(Icon.default, {
2617
2640
  width: size,
2618
2641
  height: size,
@@ -2621,19 +2644,19 @@ const CollapseCategories = /*#__PURE__*/React.forwardRef(function CollapseCatego
2621
2644
  viewBox: "0 0 32 32",
2622
2645
  fill: "currentColor",
2623
2646
  ...rest
2624
- }, _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
2647
+ }, _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
2625
2648
  d: "M14 25H28V27H14zM7.17 26L4.59 28.58 6 30 10 26 6 22 4.58 23.41 7.17 26zM14 15H28V17H14zM7.17 16L4.59 18.58 6 20 10 16 6 12 4.58 13.41 7.17 16zM14 5H28V7H14zM7.17 6L4.59 8.58 6 10 10 6 6 2 4.58 3.41 7.17 6z"
2626
2649
  })), children);
2627
2650
  });
2628
2651
  if (process.env.NODE_ENV !== "production") {
2629
2652
  CollapseCategories.propTypes = iconPropTypesC5chbmyn.i;
2630
2653
  }
2631
- const ColorPalette = /*#__PURE__*/React.forwardRef(function ColorPalette(_ref102, ref) {
2654
+ const ColorPalette = /*#__PURE__*/React.forwardRef(function ColorPalette(_ref103, ref) {
2632
2655
  let {
2633
2656
  children,
2634
2657
  size = 16,
2635
2658
  ...rest
2636
- } = _ref102;
2659
+ } = _ref103;
2637
2660
  return /*#__PURE__*/React.createElement(Icon.default, {
2638
2661
  width: size,
2639
2662
  height: size,
@@ -2662,19 +2685,19 @@ const ColorPalette = /*#__PURE__*/React.forwardRef(function ColorPalette(_ref102
2662
2685
  cx: "19",
2663
2686
  cy: "23",
2664
2687
  r: "2"
2665
- })), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
2688
+ })), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
2666
2689
  d: "M16.54,2A14,14,0,0,0,2,16a4.82,4.82,0,0,0,6.09,4.65l1.12-.31A3,3,0,0,1,13,23.24V27a3,3,0,0,0,3,3A14,14,0,0,0,30,15.46,14.05,14.05,0,0,0,16.54,2Zm8.11,22.31A11.93,11.93,0,0,1,16,28a1,1,0,0,1-1-1V23.24a5,5,0,0,0-5-5,5.07,5.07,0,0,0-1.33.18l-1.12.31A2.82,2.82,0,0,1,4,16,12,12,0,0,1,16.47,4,12.18,12.18,0,0,1,28,15.53,11.89,11.89,0,0,1,24.65,24.32Z"
2667
2690
  })), children);
2668
2691
  });
2669
2692
  if (process.env.NODE_ENV !== "production") {
2670
2693
  ColorPalette.propTypes = iconPropTypesC5chbmyn.i;
2671
2694
  }
2672
- const ColorSwitch = /*#__PURE__*/React.forwardRef(function ColorSwitch(_ref103, ref) {
2695
+ const ColorSwitch = /*#__PURE__*/React.forwardRef(function ColorSwitch(_ref104, ref) {
2673
2696
  let {
2674
2697
  children,
2675
2698
  size = 16,
2676
2699
  ...rest
2677
- } = _ref103;
2700
+ } = _ref104;
2678
2701
  return /*#__PURE__*/React.createElement(Icon.default, {
2679
2702
  width: size,
2680
2703
  height: size,
@@ -2683,19 +2706,19 @@ const ColorSwitch = /*#__PURE__*/React.forwardRef(function ColorSwitch(_ref103,
2683
2706
  viewBox: "0 0 32 32",
2684
2707
  fill: "currentColor",
2685
2708
  ...rest
2686
- }, _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
2709
+ }, _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
2687
2710
  d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM6,26,26,6V26Z"
2688
2711
  })), children);
2689
2712
  });
2690
2713
  if (process.env.NODE_ENV !== "production") {
2691
2714
  ColorSwitch.propTypes = iconPropTypesC5chbmyn.i;
2692
2715
  }
2693
- const Column = /*#__PURE__*/React.forwardRef(function Column(_ref104, ref) {
2716
+ const Column = /*#__PURE__*/React.forwardRef(function Column(_ref105, ref) {
2694
2717
  let {
2695
2718
  children,
2696
2719
  size = 16,
2697
2720
  ...rest
2698
- } = _ref104;
2721
+ } = _ref105;
2699
2722
  return /*#__PURE__*/React.createElement(Icon.default, {
2700
2723
  width: size,
2701
2724
  height: size,
@@ -2704,19 +2727,19 @@ const Column = /*#__PURE__*/React.forwardRef(function Column(_ref104, ref) {
2704
2727
  viewBox: "0 0 32 32",
2705
2728
  fill: "currentColor",
2706
2729
  ...rest
2707
- }, _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
2730
+ }, _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
2708
2731
  d: "M24 4H26V28H24zM18 6V26H14V6h4m0-2H14a2 2 0 00-2 2V26a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2zM6 4H8V28H6z"
2709
2732
  })), children);
2710
2733
  });
2711
2734
  if (process.env.NODE_ENV !== "production") {
2712
2735
  Column.propTypes = iconPropTypesC5chbmyn.i;
2713
2736
  }
2714
- const ColumnDelete = /*#__PURE__*/React.forwardRef(function ColumnDelete(_ref105, ref) {
2737
+ const ColumnDelete = /*#__PURE__*/React.forwardRef(function ColumnDelete(_ref106, ref) {
2715
2738
  let {
2716
2739
  children,
2717
2740
  size = 16,
2718
2741
  ...rest
2719
- } = _ref105;
2742
+ } = _ref106;
2720
2743
  return /*#__PURE__*/React.createElement(Icon.default, {
2721
2744
  width: size,
2722
2745
  height: size,
@@ -2725,21 +2748,21 @@ const ColumnDelete = /*#__PURE__*/React.forwardRef(function ColumnDelete(_ref105
2725
2748
  viewBox: "0 0 32 32",
2726
2749
  fill: "currentColor",
2727
2750
  ...rest
2728
- }, _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
2751
+ }, _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
2729
2752
  d: "M30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z"
2730
- })), _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
2753
+ })), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
2731
2754
  d: "M24 14V28H18V6H16V28a2.0023 2.0023 0 002 2h6a2.0023 2.0023 0 002-2V14zM10 30H4a2.0021 2.0021 0 01-2-2V8A2.0021 2.0021 0 014 6h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 8V28h6V8z"
2732
2755
  })), children);
2733
2756
  });
2734
2757
  if (process.env.NODE_ENV !== "production") {
2735
2758
  ColumnDelete.propTypes = iconPropTypesC5chbmyn.i;
2736
2759
  }
2737
- const ColumnInsert = /*#__PURE__*/React.forwardRef(function ColumnInsert(_ref106, ref) {
2760
+ const ColumnInsert = /*#__PURE__*/React.forwardRef(function ColumnInsert(_ref107, ref) {
2738
2761
  let {
2739
2762
  children,
2740
2763
  size = 16,
2741
2764
  ...rest
2742
- } = _ref106;
2765
+ } = _ref107;
2743
2766
  return /*#__PURE__*/React.createElement(Icon.default, {
2744
2767
  width: size,
2745
2768
  height: size,
@@ -2748,19 +2771,19 @@ const ColumnInsert = /*#__PURE__*/React.forwardRef(function ColumnInsert(_ref106
2748
2771
  viewBox: "0 0 32 32",
2749
2772
  fill: "currentColor",
2750
2773
  ...rest
2751
- }, _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
2774
+ }, _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
2752
2775
  d: "M28 30H22a2.0021 2.0021 0 01-2-2V10a2.0021 2.0021 0 012-2h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30zM22 10V28h6V10zM16 9L21.586 3.414 20.172 2 16 6.172 11.828 2 10.414 3.414 16 9zM10 30H4a2.0021 2.0021 0 01-2-2V10A2.0021 2.0021 0 014 8h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 10V28h6V10z"
2753
2776
  })), children);
2754
2777
  });
2755
2778
  if (process.env.NODE_ENV !== "production") {
2756
2779
  ColumnInsert.propTypes = iconPropTypesC5chbmyn.i;
2757
2780
  }
2758
- const ColumnDependency = /*#__PURE__*/React.forwardRef(function ColumnDependency(_ref107, ref) {
2781
+ const ColumnDependency = /*#__PURE__*/React.forwardRef(function ColumnDependency(_ref108, ref) {
2759
2782
  let {
2760
2783
  children,
2761
2784
  size = 16,
2762
2785
  ...rest
2763
- } = _ref107;
2786
+ } = _ref108;
2764
2787
  return /*#__PURE__*/React.createElement(Icon.default, {
2765
2788
  width: size,
2766
2789
  height: size,
@@ -2769,19 +2792,19 @@ const ColumnDependency = /*#__PURE__*/React.forwardRef(function ColumnDependency
2769
2792
  viewBox: "0 0 32 32",
2770
2793
  fill: "currentColor",
2771
2794
  ...rest
2772
- }, _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
2795
+ }, _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
2773
2796
  d: "M30,10V2H22V5H17a2.0023,2.0023,0,0,0-2,2v8H10V12H2v8h8V17h5v8a2.0023,2.0023,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3h8V12H22v3H17V7h5v3ZM8,18H4V14H8Zm16,6h4v4H24Zm0-10h4v4H24ZM24,4h4V8H24Z"
2774
2797
  })), children);
2775
2798
  });
2776
2799
  if (process.env.NODE_ENV !== "production") {
2777
2800
  ColumnDependency.propTypes = iconPropTypesC5chbmyn.i;
2778
2801
  }
2779
- const Commit = /*#__PURE__*/React.forwardRef(function Commit(_ref108, ref) {
2802
+ const Comments = /*#__PURE__*/React.forwardRef(function Comments(_ref109, ref) {
2780
2803
  let {
2781
2804
  children,
2782
2805
  size = 16,
2783
2806
  ...rest
2784
- } = _ref108;
2807
+ } = _ref109;
2785
2808
  return /*#__PURE__*/React.createElement(Icon.default, {
2786
2809
  width: size,
2787
2810
  height: size,
@@ -2790,19 +2813,40 @@ const Commit = /*#__PURE__*/React.forwardRef(function Commit(_ref108, ref) {
2790
2813
  viewBox: "0 0 32 32",
2791
2814
  fill: "currentColor",
2792
2815
  ...rest
2793
- }, _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
2816
+ }, _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
2817
+ d: "M29.3163,9.4912l-8.004-6.997c-.3645-.3186-.8322-.4942-1.3163-.4942H4c-1.1046,0-2,.8954-2,2v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V10.997c0-.577-.2493-1.126-.6837-1.5058ZM28,28H4V4h14v7c0,1.1046.8954,2,2,2h8v15ZM20,11v-7l8,7h-8ZM6,20.084c0-4.041,2.0122-6.2939,5.1763-6.2939,2.1499,0,3.5425.9121,4.3853,2.7686l-1.9434,1.0322c-.3438-1.0664-1.1006-1.7881-2.4419-1.7881-1.6851,0-2.7686,1.2207-2.7686,3.2666v1.8916c0,2.0645,1.0835,3.2334,2.7686,3.2334,1.3584,0,2.2012-.8252,2.5967-1.9092l1.8403,1.084c-.8599,1.7881-2.2871,2.8369-4.437,2.8369-3.1641,0-5.1763-2.0801-5.1763-6.1221ZM16.8193,21.4941c0-2.8711,1.5991-4.6768,4.1611-4.6768,2.5796,0,4.1792,1.8057,4.1792,4.6768,0,2.8896-1.5996,4.7119-4.1792,4.7119-2.562,0-4.1611-1.8223-4.1611-4.7119ZM22.855,22.3369v-1.668c0-1.3408-.7222-2.0811-1.8745-2.0811-1.1348,0-1.8569.7402-1.8569,2.0811v1.668c0,1.3584.7222,2.0986,1.8569,2.0986,1.1523,0,1.8745-.7402,1.8745-2.0986Z"
2818
+ })), children);
2819
+ });
2820
+ if (process.env.NODE_ENV !== "production") {
2821
+ Comments.propTypes = iconPropTypesC5chbmyn.i;
2822
+ }
2823
+ const Commit = /*#__PURE__*/React.forwardRef(function Commit(_ref110, ref) {
2824
+ let {
2825
+ children,
2826
+ size = 16,
2827
+ ...rest
2828
+ } = _ref110;
2829
+ return /*#__PURE__*/React.createElement(Icon.default, {
2830
+ width: size,
2831
+ height: size,
2832
+ ref: ref,
2833
+ xmlns: "http://www.w3.org/2000/svg",
2834
+ viewBox: "0 0 32 32",
2835
+ fill: "currentColor",
2836
+ ...rest
2837
+ }, _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
2794
2838
  d: "M30,15H21.91A5.9925,5.9925,0,0,0,10.09,15H2v2h8.09A5.9925,5.9925,0,0,0,21.91,17H30ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Z"
2795
2839
  })), children);
2796
2840
  });
2797
2841
  if (process.env.NODE_ENV !== "production") {
2798
2842
  Commit.propTypes = iconPropTypesC5chbmyn.i;
2799
2843
  }
2800
- const CommunicationUnified = /*#__PURE__*/React.forwardRef(function CommunicationUnified(_ref109, ref) {
2844
+ const CommunicationUnified = /*#__PURE__*/React.forwardRef(function CommunicationUnified(_ref111, ref) {
2801
2845
  let {
2802
2846
  children,
2803
2847
  size = 16,
2804
2848
  ...rest
2805
- } = _ref109;
2849
+ } = _ref111;
2806
2850
  return /*#__PURE__*/React.createElement(Icon.default, {
2807
2851
  width: size,
2808
2852
  height: size,
@@ -2811,19 +2855,19 @@ const CommunicationUnified = /*#__PURE__*/React.forwardRef(function Communicatio
2811
2855
  viewBox: "0 0 32 32",
2812
2856
  fill: "currentColor",
2813
2857
  ...rest
2814
- }, _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
2858
+ }, _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
2815
2859
  d: "M28 17H18a2.0025 2.0025 0 00-2 2v6a2.0025 2.0025 0 002 2h4V25H18V19H28v6H25.4648l-2.5937 3.8906L24.5352 30l2-3H28a2.0025 2.0025 0 002-2V19A2.0025 2.0025 0 0028 17zM8.6667 24.1086l.8614-.8615a.8334.8334 0 01.8988-.1844l1.0493.42A.8334.8334 0 0112 24.2561v1.9082a.8334.8334 0 01-.8786.8341c-7.3546-.4578-8.84-6.6863-9.1158-9.0723A.8316.8316 0 012.8343 17H4.7085a.8335.8335 0 01.7737.5238l.42 1.0493a.8332.8332 0 01-.1845.8988l-.8614.8614A4.5267 4.5267 0 008.6667 24.1086zM21 9H28V11H21zM21 5H30V7H21zM17 6L14 8.2V6a2.0024 2.0024 0 00-2-2H4A2.0024 2.0024 0 002 6v6a2.0024 2.0024 0 002 2h8a2.0024 2.0024 0 002-2V9.8L17 12zM4 12V6h8v6z"
2816
2860
  })), children);
2817
2861
  });
2818
2862
  if (process.env.NODE_ENV !== "production") {
2819
2863
  CommunicationUnified.propTypes = iconPropTypesC5chbmyn.i;
2820
2864
  }
2821
- const Compare = /*#__PURE__*/React.forwardRef(function Compare(_ref110, ref) {
2865
+ const Compare = /*#__PURE__*/React.forwardRef(function Compare(_ref112, ref) {
2822
2866
  let {
2823
2867
  children,
2824
2868
  size = 16,
2825
2869
  ...rest
2826
- } = _ref110;
2870
+ } = _ref112;
2827
2871
  return /*#__PURE__*/React.createElement(Icon.default, {
2828
2872
  width: size,
2829
2873
  height: size,
@@ -2832,19 +2876,19 @@ const Compare = /*#__PURE__*/React.forwardRef(function Compare(_ref110, ref) {
2832
2876
  viewBox: "0 0 32 32",
2833
2877
  fill: "currentColor",
2834
2878
  ...rest
2835
- }, _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
2879
+ }, _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
2836
2880
  d: "M28,6H18V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H14v2a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,15h6.17L7.59,17.59,9,19l5-5L9,9,7.59,10.41,10.17,13H4V4H16V24H4ZM16,28V26a2,2,0,0,0,2-2V8H28v9H21.83l2.58-2.59L23,13l-5,5,5,5,1.41-1.41L21.83,19H28v9Z"
2837
2881
  })), children);
2838
2882
  });
2839
2883
  if (process.env.NODE_ENV !== "production") {
2840
2884
  Compare.propTypes = iconPropTypesC5chbmyn.i;
2841
2885
  }
2842
- const Compass = /*#__PURE__*/React.forwardRef(function Compass(_ref111, ref) {
2886
+ const Compass = /*#__PURE__*/React.forwardRef(function Compass(_ref113, ref) {
2843
2887
  let {
2844
2888
  children,
2845
2889
  size = 16,
2846
2890
  ...rest
2847
- } = _ref111;
2891
+ } = _ref113;
2848
2892
  return /*#__PURE__*/React.createElement(Icon.default, {
2849
2893
  width: size,
2850
2894
  height: size,
@@ -2853,9 +2897,9 @@ const Compass = /*#__PURE__*/React.forwardRef(function Compass(_ref111, ref) {
2853
2897
  viewBox: "0 0 32 32",
2854
2898
  fill: "currentColor",
2855
2899
  ...rest
2856
- }, _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
2900
+ }, _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
2857
2901
  d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"
2858
- })), _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
2902
+ })), _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
2859
2903
  d: "M23,10.41,21.59,9l-4.3,4.3a3,3,0,0,0-4,4L9,21.59,10.41,23l4.3-4.3a3,3,0,0,0,4-4ZM17,16a1,1,0,1,1-1-1A1,1,0,0,1,17,16Z"
2860
2904
  })), _circle22 || (_circle22 = /*#__PURE__*/React.createElement("circle", {
2861
2905
  cx: "16",
@@ -2866,12 +2910,12 @@ const Compass = /*#__PURE__*/React.forwardRef(function Compass(_ref111, ref) {
2866
2910
  if (process.env.NODE_ENV !== "production") {
2867
2911
  Compass.propTypes = iconPropTypesC5chbmyn.i;
2868
2912
  }
2869
- const QComposerEdit = /*#__PURE__*/React.forwardRef(function QComposerEdit(_ref112, ref) {
2913
+ const QComposerEdit = /*#__PURE__*/React.forwardRef(function QComposerEdit(_ref114, ref) {
2870
2914
  let {
2871
2915
  children,
2872
2916
  size = 16,
2873
2917
  ...rest
2874
- } = _ref112;
2918
+ } = _ref114;
2875
2919
  return /*#__PURE__*/React.createElement(Icon.default, {
2876
2920
  width: size,
2877
2921
  height: size,
@@ -2880,19 +2924,19 @@ const QComposerEdit = /*#__PURE__*/React.forwardRef(function QComposerEdit(_ref1
2880
2924
  viewBox: "0 0 32 32",
2881
2925
  fill: "currentColor",
2882
2926
  ...rest
2883
- }, _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
2927
+ }, _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
2884
2928
  d: "M25.82,10H30V8H25.82a3,3,0,0,0-5.64,0H13V5H5V8H2v2H5v3h8V10h7.18A3,3,0,0,0,22,11.82v7.32A4,4,0,0,0,19.14,22H2v2H19.14a4,4,0,0,0,7.72,0H30V22H26.86A4,4,0,0,0,24,19.14V11.82A3,3,0,0,0,25.82,10ZM11,11H7V7h4ZM25,23a2,2,0,1,1-2-2A2,2,0,0,1,25,23Z"
2885
2929
  })), children);
2886
2930
  });
2887
2931
  if (process.env.NODE_ENV !== "production") {
2888
2932
  QComposerEdit.propTypes = iconPropTypesC5chbmyn.i;
2889
2933
  }
2890
- const Concept = /*#__PURE__*/React.forwardRef(function Concept(_ref113, ref) {
2934
+ const Concept = /*#__PURE__*/React.forwardRef(function Concept(_ref115, ref) {
2891
2935
  let {
2892
2936
  children,
2893
2937
  size = 16,
2894
2938
  ...rest
2895
- } = _ref113;
2939
+ } = _ref115;
2896
2940
  return /*#__PURE__*/React.createElement(Icon.default, {
2897
2941
  width: size,
2898
2942
  height: size,
@@ -2901,19 +2945,19 @@ const Concept = /*#__PURE__*/React.forwardRef(function Concept(_ref113, ref) {
2901
2945
  viewBox: "0 0 32 32",
2902
2946
  fill: "currentColor",
2903
2947
  ...rest
2904
- }, _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
2948
+ }, _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
2905
2949
  d: "M20.8851,19.4711a5.9609,5.9609,0,0,0,0-6.9422L23,10.4141l1.293,1.2929a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414l-4-4a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414L21.5859,9l-2.1148,2.1149a5.9609,5.9609,0,0,0-6.9422,0L10,8.5859V2H2v8H8.5859l2.529,2.5289a5.9609,5.9609,0,0,0,0,6.9422L9,21.5859,7.707,20.293a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l4,4a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414L10.4141,23l2.1148-2.1149a5.9609,5.9609,0,0,0,6.9422,0L22,23.4141V30h8V22H23.4141ZM25,4.4141,27.5859,7,25,9.5859,22.4141,7ZM7,27.5859,4.4141,25,7,22.4141,9.5859,25ZM8,8H4V4H8Zm4,8a4,4,0,1,1,4,4A4.0045,4.0045,0,0,1,12,16Zm12,8h4v4H24Z"
2906
2950
  })), children);
2907
2951
  });
2908
2952
  if (process.env.NODE_ENV !== "production") {
2909
2953
  Concept.propTypes = iconPropTypesC5chbmyn.i;
2910
2954
  }
2911
- const ConditionPoint = /*#__PURE__*/React.forwardRef(function ConditionPoint(_ref114, ref) {
2955
+ const ConditionPoint = /*#__PURE__*/React.forwardRef(function ConditionPoint(_ref116, ref) {
2912
2956
  let {
2913
2957
  children,
2914
2958
  size = 16,
2915
2959
  ...rest
2916
- } = _ref114;
2960
+ } = _ref116;
2917
2961
  return /*#__PURE__*/React.createElement(Icon.default, {
2918
2962
  width: size,
2919
2963
  height: size,
@@ -2922,22 +2966,22 @@ const ConditionPoint = /*#__PURE__*/React.forwardRef(function ConditionPoint(_re
2922
2966
  viewBox: "0 0 32 32",
2923
2967
  fill: "currentColor",
2924
2968
  ...rest
2925
- }, _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
2969
+ }, _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
2926
2970
  d: "M10.343 10.343H21.657V21.657H10.343z",
2927
2971
  transform: "rotate(-45 16 16)"
2928
- })), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
2972
+ })), _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
2929
2973
  d: "M29.3906,14.5269,17.4731,2.6094a2.0852,2.0852,0,0,0-2.9462,0L2.6094,14.5269a2.0852,2.0852,0,0,0,0,2.9462L14.5269,29.3906a2.0852,2.0852,0,0,0,2.9462,0L29.3906,17.4731a2.0852,2.0852,0,0,0,0-2.9462ZM16,28.0356,3.9646,16,16,3.9644,28.0356,16Z"
2930
2974
  })), children);
2931
2975
  });
2932
2976
  if (process.env.NODE_ENV !== "production") {
2933
2977
  ConditionPoint.propTypes = iconPropTypesC5chbmyn.i;
2934
2978
  }
2935
- const ConditionWaitPoint = /*#__PURE__*/React.forwardRef(function ConditionWaitPoint(_ref115, ref) {
2979
+ const ConditionWaitPoint = /*#__PURE__*/React.forwardRef(function ConditionWaitPoint(_ref117, ref) {
2936
2980
  let {
2937
2981
  children,
2938
2982
  size = 16,
2939
2983
  ...rest
2940
- } = _ref115;
2984
+ } = _ref117;
2941
2985
  return /*#__PURE__*/React.createElement(Icon.default, {
2942
2986
  width: size,
2943
2987
  height: size,
@@ -2946,22 +2990,22 @@ const ConditionWaitPoint = /*#__PURE__*/React.forwardRef(function ConditionWaitP
2946
2990
  viewBox: "0 0 32 32",
2947
2991
  fill: "currentColor",
2948
2992
  ...rest
2949
- }, _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
2993
+ }, _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
2950
2994
  d: "M10.343 10.343H21.657V21.657H10.343z",
2951
2995
  transform: "rotate(-45 16 16)"
2952
- })), _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
2996
+ })), _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
2953
2997
  d: "M16,4A12,12,0,1,1,4,16,12.0136,12.0136,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"
2954
2998
  })), children);
2955
2999
  });
2956
3000
  if (process.env.NODE_ENV !== "production") {
2957
3001
  ConditionWaitPoint.propTypes = iconPropTypesC5chbmyn.i;
2958
3002
  }
2959
- const Connect = /*#__PURE__*/React.forwardRef(function Connect(_ref116, ref) {
3003
+ const Connect = /*#__PURE__*/React.forwardRef(function Connect(_ref118, ref) {
2960
3004
  let {
2961
3005
  children,
2962
3006
  size = 16,
2963
3007
  ...rest
2964
- } = _ref116;
3008
+ } = _ref118;
2965
3009
  return /*#__PURE__*/React.createElement(Icon.default, {
2966
3010
  width: size,
2967
3011
  height: size,
@@ -2970,7 +3014,7 @@ const Connect = /*#__PURE__*/React.forwardRef(function Connect(_ref116, ref) {
2970
3014
  viewBox: "0 0 32 32",
2971
3015
  fill: "currentColor",
2972
3016
  ...rest
2973
- }, _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
3017
+ }, _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
2974
3018
  d: "M23,16a7,7,0,0,0-4.18,1.39L14.6,13.17A6.86,6.86,0,0,0,16,9a7,7,0,1,0-2.81,5.59l4.21,4.22A7,7,0,1,0,23,16ZM4,9a5,5,0,1,1,5,5A5,5,0,0,1,4,9Z",
2975
3019
  transform: "translate(0 .01)"
2976
3020
  })), children);
@@ -2978,12 +3022,12 @@ const Connect = /*#__PURE__*/React.forwardRef(function Connect(_ref116, ref) {
2978
3022
  if (process.env.NODE_ENV !== "production") {
2979
3023
  Connect.propTypes = iconPropTypesC5chbmyn.i;
2980
3024
  }
2981
- const ConnectRecursive = /*#__PURE__*/React.forwardRef(function ConnectRecursive(_ref117, ref) {
3025
+ const ConnectRecursive = /*#__PURE__*/React.forwardRef(function ConnectRecursive(_ref119, ref) {
2982
3026
  let {
2983
3027
  children,
2984
3028
  size = 16,
2985
3029
  ...rest
2986
- } = _ref117;
3030
+ } = _ref119;
2987
3031
  return /*#__PURE__*/React.createElement(Icon.default, {
2988
3032
  width: size,
2989
3033
  height: size,
@@ -2992,19 +3036,19 @@ const ConnectRecursive = /*#__PURE__*/React.forwardRef(function ConnectRecursive
2992
3036
  viewBox: "0 0 32 32",
2993
3037
  fill: "currentColor",
2994
3038
  ...rest
2995
- }, _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
3039
+ }, _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
2996
3040
  d: "M28,7H13.8281l3.586-3.5859L16,2,10,8l6,6,1.4141-1.4141L13.8281,9H28V20H11.8989A5.0145,5.0145,0,0,0,8,16.1011V2H6V16.1011a5,5,0,0,0,0,9.7978V30H8V25.8989A5.0145,5.0145,0,0,0,11.8989,22H28a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,28,7ZM7,24a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,24Z"
2997
3041
  })), children);
2998
3042
  });
2999
3043
  if (process.env.NODE_ENV !== "production") {
3000
3044
  ConnectRecursive.propTypes = iconPropTypesC5chbmyn.i;
3001
3045
  }
3002
- const ConnectReference = /*#__PURE__*/React.forwardRef(function ConnectReference(_ref118, ref) {
3046
+ const ConnectReference = /*#__PURE__*/React.forwardRef(function ConnectReference(_ref120, ref) {
3003
3047
  let {
3004
3048
  children,
3005
3049
  size = 16,
3006
3050
  ...rest
3007
- } = _ref118;
3051
+ } = _ref120;
3008
3052
  return /*#__PURE__*/React.createElement(Icon.default, {
3009
3053
  width: size,
3010
3054
  height: size,
@@ -3013,21 +3057,21 @@ const ConnectReference = /*#__PURE__*/React.forwardRef(function ConnectReference
3013
3057
  viewBox: "0 0 32 32",
3014
3058
  fill: "currentColor",
3015
3059
  ...rest
3016
- }, _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
3060
+ }, _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
3017
3061
  d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
3018
- })), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
3062
+ })), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
3019
3063
  d: "M23,16c-1.5696,0-3.0124,.5159-4.1813,1.3919l-4.2173-4.2174c.876-1.1689,1.3986-2.6048,1.3986-4.1745,0-3.8599-3.1406-7-7-7S2,5.1401,2,9s3.1406,7,7,7c1.5696,0,3.0184-.5355,4.1873-1.4114l4.2173,4.2174c-.8759,1.1689-1.4046,2.6243-1.4046,4.194,0,3.8599,3.1406,7,7,7s7-3.1401,7-7-3.1406-7-7-7ZM4,9c0-2.7568,2.2432-5,5-5s5,2.2432,5,5-2.2432,5-5,5-5-2.2432-5-5Z"
3020
3064
  })), children);
3021
3065
  });
3022
3066
  if (process.env.NODE_ENV !== "production") {
3023
3067
  ConnectReference.propTypes = iconPropTypesC5chbmyn.i;
3024
3068
  }
3025
- const ConnectSource = /*#__PURE__*/React.forwardRef(function ConnectSource(_ref119, ref) {
3069
+ const ConnectSource = /*#__PURE__*/React.forwardRef(function ConnectSource(_ref121, ref) {
3026
3070
  let {
3027
3071
  children,
3028
3072
  size = 16,
3029
3073
  ...rest
3030
- } = _ref119;
3074
+ } = _ref121;
3031
3075
  return /*#__PURE__*/React.createElement(Icon.default, {
3032
3076
  width: size,
3033
3077
  height: size,
@@ -3036,19 +3080,19 @@ const ConnectSource = /*#__PURE__*/React.forwardRef(function ConnectSource(_ref1
3036
3080
  viewBox: "0 0 32 32",
3037
3081
  fill: "currentColor",
3038
3082
  ...rest
3039
- }, _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
3083
+ }, _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
3040
3084
  d: "M24,10l-1.4141,1.4141L26.1719,15H11.8989A5.0145,5.0145,0,0,0,8,11.1011V2H6v9.1011a5,5,0,0,0,0,9.7978V30H8V20.8989A5.0145,5.0145,0,0,0,11.8989,17h14.273l-3.586,3.5859L24,22l6-6ZM7,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,19Z"
3041
3085
  })), children);
3042
3086
  });
3043
3087
  if (process.env.NODE_ENV !== "production") {
3044
3088
  ConnectSource.propTypes = iconPropTypesC5chbmyn.i;
3045
3089
  }
3046
- const ConnectTarget = /*#__PURE__*/React.forwardRef(function ConnectTarget(_ref120, ref) {
3090
+ const ConnectTarget = /*#__PURE__*/React.forwardRef(function ConnectTarget(_ref122, ref) {
3047
3091
  let {
3048
3092
  children,
3049
3093
  size = 16,
3050
3094
  ...rest
3051
- } = _ref120;
3095
+ } = _ref122;
3052
3096
  return /*#__PURE__*/React.createElement(Icon.default, {
3053
3097
  width: size,
3054
3098
  height: size,
@@ -3057,19 +3101,19 @@ const ConnectTarget = /*#__PURE__*/React.forwardRef(function ConnectTarget(_ref1
3057
3101
  viewBox: "0 0 32 32",
3058
3102
  fill: "currentColor",
3059
3103
  ...rest
3060
- }, _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
3104
+ }, _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
3061
3105
  d: "M28 2H30V30H28zM20 10l-1.4141 1.4141L22.1719 15H11.8989a5 5 0 100 2h10.273l-3.586 3.5859L20 22l6-6zM7 19a3 3 0 113-3A3.0033 3.0033 0 017 19z"
3062
3106
  })), children);
3063
3107
  });
3064
3108
  if (process.env.NODE_ENV !== "production") {
3065
3109
  ConnectTarget.propTypes = iconPropTypesC5chbmyn.i;
3066
3110
  }
3067
- const ConnectionReceive = /*#__PURE__*/React.forwardRef(function ConnectionReceive(_ref121, ref) {
3111
+ const ConnectionReceive = /*#__PURE__*/React.forwardRef(function ConnectionReceive(_ref123, ref) {
3068
3112
  let {
3069
3113
  children,
3070
3114
  size = 16,
3071
3115
  ...rest
3072
- } = _ref121;
3116
+ } = _ref123;
3073
3117
  return /*#__PURE__*/React.createElement(Icon.default, {
3074
3118
  width: size,
3075
3119
  height: size,
@@ -3078,21 +3122,21 @@ const ConnectionReceive = /*#__PURE__*/React.forwardRef(function ConnectionRecei
3078
3122
  viewBox: "0 0 32 32",
3079
3123
  fill: "currentColor",
3080
3124
  ...rest
3081
- }, _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
3125
+ }, _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
3082
3126
  d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM30 14L21.83 14 24.41 16.59 23 18 18 13 23 8 24.41 9.41 21.83 12 30 12 30 14z"
3083
- })), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
3127
+ })), _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
3084
3128
  d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3085
3129
  })), children);
3086
3130
  });
3087
3131
  if (process.env.NODE_ENV !== "production") {
3088
3132
  ConnectionReceive.propTypes = iconPropTypesC5chbmyn.i;
3089
3133
  }
3090
- const ConnectionSend = /*#__PURE__*/React.forwardRef(function ConnectionSend(_ref122, ref) {
3134
+ const ConnectionSend = /*#__PURE__*/React.forwardRef(function ConnectionSend(_ref124, ref) {
3091
3135
  let {
3092
3136
  children,
3093
3137
  size = 16,
3094
3138
  ...rest
3095
- } = _ref122;
3139
+ } = _ref124;
3096
3140
  return /*#__PURE__*/React.createElement(Icon.default, {
3097
3141
  width: size,
3098
3142
  height: size,
@@ -3101,21 +3145,21 @@ const ConnectionSend = /*#__PURE__*/React.forwardRef(function ConnectionSend(_re
3101
3145
  viewBox: "0 0 32 32",
3102
3146
  fill: "currentColor",
3103
3147
  ...rest
3104
- }, _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
3148
+ }, _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
3105
3149
  d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM18 14L26.17 14 23.59 16.59 25 18 30 13 25 8 23.59 9.41 26.17 12 18 12 18 14z"
3106
- })), _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
3150
+ })), _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
3107
3151
  d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3108
3152
  })), children);
3109
3153
  });
3110
3154
  if (process.env.NODE_ENV !== "production") {
3111
3155
  ConnectionSend.propTypes = iconPropTypesC5chbmyn.i;
3112
3156
  }
3113
- const ConnectionTwoWay = /*#__PURE__*/React.forwardRef(function ConnectionTwoWay(_ref123, ref) {
3157
+ const ConnectionTwoWay = /*#__PURE__*/React.forwardRef(function ConnectionTwoWay(_ref125, ref) {
3114
3158
  let {
3115
3159
  children,
3116
3160
  size = 16,
3117
3161
  ...rest
3118
- } = _ref123;
3162
+ } = _ref125;
3119
3163
  return /*#__PURE__*/React.createElement(Icon.default, {
3120
3164
  width: size,
3121
3165
  height: size,
@@ -3124,60 +3168,17 @@ const ConnectionTwoWay = /*#__PURE__*/React.forwardRef(function ConnectionTwoWay
3124
3168
  viewBox: "0 0 32 32",
3125
3169
  fill: "currentColor",
3126
3170
  ...rest
3127
- }, _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
3171
+ }, _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
3128
3172
  d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM30 22L21.83 22 24.41 24.59 23 26 18 21 23 16 24.41 17.41 21.83 20 30 20 30 22zM19 12L27.17 12 24.59 14.59 26 16 31 11 26 6 24.59 7.41 27.17 10 19 10 19 12z"
3129
- })), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
3173
+ })), _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
3130
3174
  d: "M28,26v2H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V26Z"
3131
3175
  })), children);
3132
3176
  });
3133
3177
  if (process.env.NODE_ENV !== "production") {
3134
3178
  ConnectionTwoWay.propTypes = iconPropTypesC5chbmyn.i;
3135
3179
  }
3136
- const ConnectionUsage = /*#__PURE__*/React.forwardRef(function ConnectionUsage(_ref124, ref) {
3137
- let {
3138
- children,
3139
- size = 16,
3140
- ...rest
3141
- } = _ref124;
3142
- return /*#__PURE__*/React.createElement(Icon.default, {
3143
- width: size,
3144
- height: size,
3145
- ref: ref,
3146
- xmlns: "http://www.w3.org/2000/svg",
3147
- viewBox: "0 0 32 32",
3148
- fill: "currentColor",
3149
- ...rest
3150
- }, _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
3151
- strokeWidth: "0",
3152
- d: "m17,26V6c0-1.1046-.8954-2-2-2H4v2h11v20c0,1.1046.8954,2,2,2h11v-2h-11Z"
3153
- })), children);
3154
- });
3155
- if (process.env.NODE_ENV !== "production") {
3156
- ConnectionUsage.propTypes = iconPropTypesC5chbmyn.i;
3157
- }
3158
- const ConnectionFlowUsage = /*#__PURE__*/React.forwardRef(function ConnectionFlowUsage(_ref125, ref) {
3159
- let {
3160
- children,
3161
- size = 16,
3162
- ...rest
3163
- } = _ref125;
3164
- return /*#__PURE__*/React.createElement(Icon.default, {
3165
- width: size,
3166
- height: size,
3167
- ref: ref,
3168
- xmlns: "http://www.w3.org/2000/svg",
3169
- viewBox: "0 0 32 32",
3170
- fill: "currentColor",
3171
- ...rest
3172
- }, _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
3173
- strokeWidth: "0",
3174
- d: "m22,16l-1.4141,1.4141,4.5859,4.5859h-10.1719V5c0-1.1046-.8954-2-2-2H3v2h10v17c0,1.1046.8954,2,2,2h10.1719l-4.5859,4.5859,1.4141,1.4141,7-7-7-7Z"
3175
- })), children);
3176
- });
3177
- if (process.env.NODE_ENV !== "production") {
3178
- ConnectionFlowUsage.propTypes = iconPropTypesC5chbmyn.i;
3179
- }
3180
3180
 
3181
+ exports.ChartViolinPlot = ChartViolinPlot;
3181
3182
  exports.ChartWaterfall = ChartWaterfall;
3182
3183
  exports.ChartWinLoss = ChartWinLoss;
3183
3184
  exports.Chat = Chat;
@@ -3235,6 +3236,7 @@ exports.CircleOutline = CircleOutline;
3235
3236
  exports.CirclePacking = CirclePacking;
3236
3237
  exports.CircleSolid = CircleSolid;
3237
3238
  exports.CircleStroke = CircleStroke;
3239
+ exports.ClassicBatch = ClassicBatch;
3238
3240
  exports.Classification = Classification;
3239
3241
  exports.ClassifierLanguage = ClassifierLanguage;
3240
3242
  exports.Clean = Clean;
@@ -3294,11 +3296,9 @@ exports.ConnectRecursive = ConnectRecursive;
3294
3296
  exports.ConnectReference = ConnectReference;
3295
3297
  exports.ConnectSource = ConnectSource;
3296
3298
  exports.ConnectTarget = ConnectTarget;
3297
- exports.ConnectionFlowUsage = ConnectionFlowUsage;
3298
3299
  exports.ConnectionReceive = ConnectionReceive;
3299
3300
  exports.ConnectionSend = ConnectionSend;
3300
3301
  exports.ConnectionTwoWay = ConnectionTwoWay;
3301
- exports.ConnectionUsage = ConnectionUsage;
3302
3302
  exports.QCircuitComposer = QCircuitComposer;
3303
3303
  exports.QComposerEdit = QComposerEdit;
3304
3304
  exports.WatsonHealthCircleMeasurement = WatsonHealthCircleMeasurement;