@carbon/ibm-products 2.60.0-rc.0 → 2.61.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 (143) hide show
  1. package/css/index-full-carbon.css +113 -497
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +1 -1
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon-released-only.css +64 -492
  6. package/css/index-without-carbon-released-only.css.map +1 -1
  7. package/css/index-without-carbon-released-only.min.css +1 -1
  8. package/css/index-without-carbon-released-only.min.css.map +1 -1
  9. package/css/index-without-carbon.css +93 -492
  10. package/css/index-without-carbon.css.map +1 -1
  11. package/css/index-without-carbon.min.css +1 -1
  12. package/css/index-without-carbon.min.css.map +1 -1
  13. package/css/index.css +93 -510
  14. package/css/index.css.map +1 -1
  15. package/css/index.min.css +1 -1
  16. package/css/index.min.css.map +1 -1
  17. package/es/components/ActionBar/ActionBar.d.ts +3 -3
  18. package/es/components/ActionBar/ActionBar.js +47 -150
  19. package/es/components/ActionBar/ActionBarOverflowItems.js +1 -1
  20. package/es/components/Checklist/ChecklistChart.js +1 -1
  21. package/es/components/Coachmark/Coachmark.js +1 -1
  22. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +1 -1
  23. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +3 -3
  24. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +4 -1
  25. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +7 -2
  26. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +7 -2
  27. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +15 -15
  28. package/es/components/ConditionBuilder/utils/util.d.ts +1 -0
  29. package/es/components/ConditionBuilder/utils/util.js +7 -1
  30. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  31. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -2
  32. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -2
  33. package/es/components/Datagrid/useDatagrid.js +2 -2
  34. package/es/components/Datagrid/useInfiniteScroll.js +2 -5
  35. package/es/components/Datagrid/useRowIsMouseOver.d.ts +1 -1
  36. package/es/components/Datagrid/useRowIsMouseOver.js +2 -1
  37. package/es/components/Datagrid/useStickyColumn.d.ts +1 -1
  38. package/es/components/Datagrid/useStickyColumn.js +1 -1
  39. package/es/components/FilterSummary/FilterSummary.js +1 -1
  40. package/es/components/InterstitialScreen/InterstitialScreen.js +1 -1
  41. package/es/components/Nav/NavItem.js +1 -1
  42. package/es/components/NotificationsPanel/NotificationsPanel.d.ts +5 -0
  43. package/es/components/NotificationsPanel/NotificationsPanel.js +11 -17
  44. package/es/components/OptionsTile/OptionsTile.d.ts +2 -3
  45. package/es/components/OptionsTile/OptionsTile.js +49 -97
  46. package/es/components/PageHeader/PageHeader.js +16 -14
  47. package/es/components/PageHeader/PageHeaderTitle.js +2 -2
  48. package/es/components/ScrollGradient/ScrollGradient.js +74 -25
  49. package/es/components/ScrollGradient/constants.d.ts +0 -5
  50. package/es/components/ScrollGradient/constants.js +2 -47
  51. package/es/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +1 -1
  52. package/es/components/TagOverflow/TagOverflow.d.ts +5 -1
  53. package/es/components/Tearsheet/Tearsheet.d.ts +5 -1
  54. package/es/components/Tearsheet/TearsheetNarrow.d.ts +5 -1
  55. package/es/components/WebTerminal/WebTerminal.js +0 -13
  56. package/es/global/js/hooks/useControllableState.d.ts +12 -24
  57. package/es/global/js/hooks/useControllableState.js +18 -60
  58. package/es/global/js/hooks/useOverflowItems.d.ts +7 -2
  59. package/es/global/js/hooks/useOverflowItems.js +50 -17
  60. package/es/global/js/hooks/useOverflowString.d.ts +9 -0
  61. package/es/global/js/hooks/useOverflowString.js +52 -0
  62. package/es/global/js/hooks/usePresence.d.ts +1 -1
  63. package/es/global/js/hooks/usePresence.js +2 -2
  64. package/es/global/js/utils/checkForOverflow.js +1 -11
  65. package/es/global/js/utils/clamp.d.ts +7 -0
  66. package/es/global/js/utils/clamp.js +25 -0
  67. package/es/global/js/utils/debounce.d.ts +7 -0
  68. package/es/global/js/utils/debounce.js +30 -0
  69. package/es/global/js/utils/deepCompareObject.d.ts +7 -0
  70. package/es/global/js/utils/deepCompareObject.js +47 -0
  71. package/es/global/js/utils/throttle.d.ts +7 -0
  72. package/es/global/js/utils/throttle.js +19 -0
  73. package/es/global/js/utils/uuidv4.d.ts +2 -2
  74. package/es/global/js/utils/uuidv4.js +3 -2
  75. package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +2787 -0
  76. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1013 -943
  77. package/lib/components/ActionBar/ActionBar.d.ts +3 -3
  78. package/lib/components/ActionBar/ActionBar.js +45 -148
  79. package/lib/components/ActionBar/ActionBarOverflowItems.js +1 -1
  80. package/lib/components/Checklist/ChecklistChart.js +2 -2
  81. package/lib/components/Coachmark/Coachmark.js +2 -2
  82. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +4 -4
  83. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +2 -2
  84. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +3 -0
  85. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +6 -1
  86. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +6 -1
  87. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +15 -15
  88. package/lib/components/ConditionBuilder/utils/util.d.ts +1 -0
  89. package/lib/components/ConditionBuilder/utils/util.js +7 -0
  90. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  91. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -2
  92. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -2
  93. package/lib/components/Datagrid/useDatagrid.js +2 -2
  94. package/lib/components/Datagrid/useInfiniteScroll.js +2 -5
  95. package/lib/components/Datagrid/useRowIsMouseOver.d.ts +1 -1
  96. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -2
  97. package/lib/components/Datagrid/useStickyColumn.d.ts +1 -1
  98. package/lib/components/Datagrid/useStickyColumn.js +2 -2
  99. package/lib/components/FilterSummary/FilterSummary.js +2 -2
  100. package/lib/components/InterstitialScreen/InterstitialScreen.js +3 -3
  101. package/lib/components/Nav/NavItem.js +2 -2
  102. package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +5 -0
  103. package/lib/components/NotificationsPanel/NotificationsPanel.js +11 -17
  104. package/lib/components/OptionsTile/OptionsTile.d.ts +2 -3
  105. package/lib/components/OptionsTile/OptionsTile.js +49 -97
  106. package/lib/components/PageHeader/PageHeader.js +16 -14
  107. package/lib/components/PageHeader/PageHeaderTitle.js +2 -2
  108. package/lib/components/ScrollGradient/ScrollGradient.js +72 -23
  109. package/lib/components/ScrollGradient/constants.d.ts +0 -5
  110. package/lib/components/ScrollGradient/constants.js +1 -48
  111. package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +2 -2
  112. package/lib/components/TagOverflow/TagOverflow.d.ts +5 -1
  113. package/lib/components/Tearsheet/Tearsheet.d.ts +5 -1
  114. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +5 -1
  115. package/lib/components/WebTerminal/WebTerminal.js +0 -13
  116. package/lib/global/js/hooks/useControllableState.d.ts +12 -24
  117. package/lib/global/js/hooks/useControllableState.js +17 -59
  118. package/lib/global/js/hooks/useOverflowItems.d.ts +7 -2
  119. package/lib/global/js/hooks/useOverflowItems.js +49 -16
  120. package/lib/global/js/hooks/useOverflowString.d.ts +9 -0
  121. package/lib/global/js/hooks/useOverflowString.js +55 -0
  122. package/lib/global/js/hooks/usePresence.d.ts +1 -1
  123. package/lib/global/js/hooks/usePresence.js +2 -2
  124. package/lib/global/js/utils/checkForOverflow.js +0 -11
  125. package/lib/global/js/utils/clamp.d.ts +7 -0
  126. package/lib/global/js/utils/clamp.js +27 -0
  127. package/lib/global/js/utils/debounce.d.ts +7 -0
  128. package/lib/global/js/utils/debounce.js +32 -0
  129. package/lib/global/js/utils/deepCompareObject.d.ts +7 -0
  130. package/lib/global/js/utils/deepCompareObject.js +49 -0
  131. package/lib/global/js/utils/throttle.d.ts +7 -0
  132. package/lib/global/js/utils/throttle.js +21 -0
  133. package/lib/global/js/utils/uuidv4.d.ts +2 -2
  134. package/lib/global/js/utils/uuidv4.js +3 -2
  135. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +2913 -0
  136. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1018 -948
  137. package/package.json +6 -7
  138. package/scss/components/NotificationsPanel/_notifications-panel.scss +33 -20
  139. package/scss/components/ScrollGradient/_scroll-gradient.scss +30 -0
  140. package/scss/components/UserAvatar/_user-avatar.scss +2 -6
  141. package/scss/components/WebTerminal/_web-terminal.scss +13 -1
  142. package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +0 -2959
  143. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +0 -3085
@@ -1,2959 +0,0 @@
1
- /**
2
- * Copyright IBM Corp. 2020, 2025
3
- *
4
- * This source code is licensed under the Apache-2.0 license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
-
8
- import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _objectSpread2 } from '../../../../../_virtual/_rollupPluginBabelHelpers.js';
9
- import React__default from 'react';
10
- import Icon from '../Icon.js';
11
- import { i as iconPropTypes } from '../iconPropTypes-4cbeb95d.js';
12
-
13
- var _excluded = ["children", "size"],
14
- _excluded2 = ["children", "size"],
15
- _excluded3 = ["children", "size"],
16
- _excluded4 = ["children", "size"],
17
- _excluded5 = ["children", "size"],
18
- _excluded6 = ["children", "size"],
19
- _excluded7 = ["children", "size"],
20
- _excluded8 = ["children", "size"],
21
- _excluded9 = ["children", "size"],
22
- _excluded10 = ["children", "size"],
23
- _excluded11 = ["children", "size"],
24
- _excluded12 = ["children", "size"],
25
- _excluded13 = ["children", "size"],
26
- _excluded14 = ["children", "size"],
27
- _excluded15 = ["children", "size"],
28
- _excluded16 = ["children", "size"],
29
- _excluded17 = ["children", "size"],
30
- _excluded18 = ["children", "size"],
31
- _excluded19 = ["children", "size"],
32
- _excluded20 = ["children", "size"],
33
- _excluded21 = ["children", "size"],
34
- _excluded22 = ["children", "size"],
35
- _excluded23 = ["children", "size"],
36
- _excluded24 = ["children", "size"],
37
- _excluded25 = ["children", "size"],
38
- _excluded26 = ["children", "size"],
39
- _excluded27 = ["children", "size"],
40
- _excluded28 = ["children", "size"],
41
- _excluded29 = ["children", "size"],
42
- _excluded30 = ["children", "size"],
43
- _excluded31 = ["children", "size"],
44
- _excluded32 = ["children", "size"],
45
- _excluded33 = ["children", "size"],
46
- _excluded34 = ["children", "size"],
47
- _excluded35 = ["children", "size"],
48
- _excluded36 = ["children", "size"],
49
- _excluded37 = ["children", "size"],
50
- _excluded38 = ["children", "size"],
51
- _excluded39 = ["children", "size"],
52
- _excluded40 = ["children", "size"],
53
- _excluded41 = ["children", "size"],
54
- _excluded42 = ["children", "size"],
55
- _excluded43 = ["children", "size"],
56
- _excluded44 = ["children", "size"],
57
- _excluded45 = ["children", "size"],
58
- _excluded46 = ["children", "size"],
59
- _excluded47 = ["children", "size"],
60
- _excluded48 = ["children", "size"],
61
- _excluded49 = ["children", "size"],
62
- _excluded50 = ["children", "size"],
63
- _excluded51 = ["children", "size"],
64
- _excluded52 = ["children", "size"],
65
- _excluded53 = ["children", "size"],
66
- _excluded54 = ["children", "size"],
67
- _excluded55 = ["children", "size"],
68
- _excluded56 = ["children", "size"],
69
- _excluded57 = ["children", "size"],
70
- _excluded58 = ["children", "size"],
71
- _excluded59 = ["children", "size"],
72
- _excluded60 = ["children", "size"],
73
- _excluded61 = ["children", "size"],
74
- _excluded62 = ["children", "size"],
75
- _excluded63 = ["children", "size"],
76
- _excluded64 = ["children", "size"],
77
- _excluded65 = ["children", "size"],
78
- _excluded66 = ["children", "size"],
79
- _excluded67 = ["children", "size"],
80
- _excluded68 = ["children", "size"],
81
- _excluded69 = ["children", "size"],
82
- _excluded70 = ["children", "size"],
83
- _excluded71 = ["children", "size"],
84
- _excluded72 = ["children", "size"],
85
- _excluded73 = ["children", "size"],
86
- _excluded74 = ["children", "size"],
87
- _excluded75 = ["children", "size"],
88
- _excluded76 = ["children", "size"],
89
- _excluded77 = ["children", "size"],
90
- _excluded78 = ["children", "size"],
91
- _excluded79 = ["children", "size"],
92
- _excluded80 = ["children", "size"],
93
- _excluded81 = ["children", "size"],
94
- _excluded82 = ["children", "size"],
95
- _excluded83 = ["children", "size"],
96
- _excluded84 = ["children", "size"],
97
- _excluded85 = ["children", "size"],
98
- _excluded86 = ["children", "size"],
99
- _excluded87 = ["children", "size"],
100
- _excluded88 = ["children", "size"],
101
- _excluded89 = ["children", "size"],
102
- _excluded90 = ["children", "size"],
103
- _excluded91 = ["children", "size"],
104
- _excluded92 = ["children", "size"],
105
- _excluded93 = ["children", "size"],
106
- _excluded94 = ["children", "size"],
107
- _excluded95 = ["children", "size"],
108
- _excluded96 = ["children", "size"],
109
- _excluded97 = ["children", "size"],
110
- _excluded98 = ["children", "size"],
111
- _excluded99 = ["children", "size"],
112
- _excluded100 = ["children", "size"],
113
- _excluded101 = ["children", "size"],
114
- _excluded102 = ["children", "size"],
115
- _excluded103 = ["children", "size"],
116
- _excluded104 = ["children", "size"],
117
- _excluded105 = ["children", "size"],
118
- _excluded106 = ["children", "size"],
119
- _excluded107 = ["children", "size"],
120
- _excluded108 = ["children", "size"],
121
- _excluded109 = ["children", "size"],
122
- _excluded110 = ["children", "size"],
123
- _excluded111 = ["children", "size"],
124
- _excluded112 = ["children", "size"],
125
- _excluded113 = ["children", "size"],
126
- _excluded114 = ["children", "size"],
127
- _excluded115 = ["children", "size"],
128
- _excluded116 = ["children", "size"],
129
- _excluded117 = ["children", "size"],
130
- _excluded118 = ["children", "size"],
131
- _excluded119 = ["children", "size"],
132
- _excluded120 = ["children", "size"],
133
- _excluded121 = ["children", "size"],
134
- _excluded122 = ["children", "size"],
135
- _excluded123 = ["children", "size"],
136
- _excluded124 = ["children", "size"],
137
- _excluded125 = ["children", "size"];
138
- var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _circle, _circle2, _path11, _circle3, _circle4, _path12, _path13, _circle5, _circle6, _circle7, _path14, _path15, _circle8, _path16, _circle9, _path17, _circle10, _path18, _circle11, _path19, _path20, _circle12, _path21, _circle13, _path22, _path23, _path24, _circle14, _circle15, _circle16, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _circle17, _path38, _circle18, _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, _circle19, _path75, _path76, _path77, _circle20, _path78, _path79, _path80, _path81, _path82, _path83, _circle21, _path84, _path85, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _path118, _path119, _circle22, _path120, _path121, _circle23, _path122, _circle24, _path123, _path124, _circle25, _path125, _circle26, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _circle27, _circle28, _circle29, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _circle30, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _circle31, _circle32, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219, _path220, _path221, _circle33, _path222, _path223, _circle34, _path224, _path225, _circle35, _path226, _path227, _path228, _path229, _path230, _path231, _path232, _rect, _path233, _path234;
139
- var didWarnAboutDeprecation = {};
140
- var IbmWatsonOpenscale = /*#__PURE__*/React__default.forwardRef(function IbmWatsonOpenscale(_ref, ref) {
141
- var children = _ref.children,
142
- _ref$size = _ref.size,
143
- size = _ref$size === undefined ? 16 : _ref$size,
144
- rest = _objectWithoutProperties(_ref, _excluded);
145
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
146
- width: size,
147
- height: size,
148
- ref: ref,
149
- xmlns: "http://www.w3.org/2000/svg",
150
- viewBox: "0 0 32 32",
151
- fill: "currentColor"
152
- }, rest), _path || (_path = /*#__PURE__*/React__default.createElement("path", {
153
- d: "M4 28c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S5.7 28 4 28zM4 24c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1S4.6 24 4 24zM28 28c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S29.7 28 28 28zM28 24c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1S28.6 24 28 24zM22.4 4.4l-.9 1.8C26.1 8.4 29 13 29 18c0 .7-.1 1.4-.2 2.1l2 .3c.1-.8.2-1.6.2-2.5C31 12.2 27.6 6.9 22.4 4.4zM16 7c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S17.7 7 16 7zM16 3c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1S16.6 3 16 3z"
154
- })), _path2 || (_path2 = /*#__PURE__*/React__default.createElement("path", {
155
- d: "M25.5,13.6l-1-1.7L17,16.3V9h-2v7.2L6.2,11c-0.5-0.3-1.1-0.1-1.4,0.3s-0.1,1.1,0.3,1.4L14,18l-6.2,3.6l1,1.7l6.2-3.6V30 c0,0.6,0.4,1,1,1s1-0.4,1-1V19.8l6.2,3.7l1-1.7L18,18L25.5,13.6z"
156
- })), children);
157
- });
158
- if (process.env.NODE_ENV !== "production") {
159
- IbmWatsonOpenscale.propTypes = iconPropTypes;
160
- }
161
- var IbmWatsonOrders = /*#__PURE__*/React__default.forwardRef(function IbmWatsonOrders(_ref2, ref) {
162
- var children = _ref2.children,
163
- _ref2$size = _ref2.size,
164
- size = _ref2$size === undefined ? 16 : _ref2$size,
165
- rest = _objectWithoutProperties(_ref2, _excluded2);
166
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
167
- width: size,
168
- height: size,
169
- ref: ref,
170
- xmlns: "http://www.w3.org/2000/svg",
171
- viewBox: "0 0 32 32",
172
- fill: "currentColor"
173
- }, rest), _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
174
- d: "M28 13h-2v-2c0-2.8-2.2-5-5-5h-3V4h3c3.9 0 7 3.1 7 7V13zM22 20H25V22H22zM22 24H25V26H22z"
175
- })), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
176
- d: "M27 30h-5v-2h5V18h-7v9c0 1.7-1.3 3-3 3s-3-1.3-3-3v-3h2v3c0 .6.4 1 1 1s1-.4 1-1V16h11v12C29 29.1 28.1 30 27 30zM12 28h-1c-3.9 0-7-3.1-7-7v-4h2v4c0 2.8 2.2 5 5 5h1V28zM11 10v2h3c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4C2.9 2 2 2.9 2 4v6c0 1.1.9 2 2 2h2.4l1.7 3 1.7-1-2.3-4H4V4h10v6H11z"
177
- })), children);
178
- });
179
- if (process.env.NODE_ENV !== "production") {
180
- IbmWatsonOrders.propTypes = iconPropTypes;
181
- }
182
- var IbmWatsonQuery = /*#__PURE__*/React__default.forwardRef(function IbmWatsonQuery(_ref3, ref) {
183
- var children = _ref3.children,
184
- _ref3$size = _ref3.size,
185
- size = _ref3$size === undefined ? 16 : _ref3$size,
186
- rest = _objectWithoutProperties(_ref3, _excluded3);
187
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
188
- width: size,
189
- height: size,
190
- ref: ref,
191
- xmlns: "http://www.w3.org/2000/svg",
192
- viewBox: "0 0 32 32",
193
- fill: "currentColor"
194
- }, rest), _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
195
- d: "M22,24c-0.2,0-0.3,0-0.5,0L18.2,18c0.5-0.5,0.8-1.2,0.8-2c0-1.7-1.3-3-3-3s-3,1.3-3,3c0,0.8,0.3,1.5,0.8,2L10.5,24 c-0.2,0-0.3,0-0.5,0c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3c0-0.8-0.3-1.5-0.8-2l3.3-6.1c0.2,0,0.3,0,0.5,0s0.3,0,0.5,0l3.3,6.1 c-0.5,0.5-0.8,1.2-0.8,2c0,1.7,1.3,3,3,3s3-1.3,3-3S23.7,24,22,24z M16,15c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S15.4,15,16,15z M10,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,28,10,28z M22,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S22.6,28,22,28z"
196
- })), _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
197
- d: "M24.8,9.1C23.9,5,20.3,2,16,2S8.1,5,7.2,9.1C4.2,9.7,2,12.4,2,15.5C2,19.1,4.9,22,8.5,22H9v-2H8.5C6,20,4,18,4,15.5 c0-2.3,1.8-4.3,4.1-4.5L9,11l0.1-0.8C9.5,6.6,12.5,4,16,4c3.5,0,6.5,2.6,6.9,6.1L23,11l0.8,0.1c2.3,0.2,4.1,2.2,4.1,4.5 c0,2.5-2,4.5-4.5,4.5H23v2h0.5c3.6,0,6.5-2.9,6.5-6.5C30,12.4,27.8,9.7,24.8,9.1z"
198
- })), children);
199
- });
200
- if (process.env.NODE_ENV !== "production") {
201
- IbmWatsonQuery.propTypes = iconPropTypes;
202
- }
203
- var IbmWatsonSpeechToText = /*#__PURE__*/React__default.forwardRef(function IbmWatsonSpeechToText(_ref4, ref) {
204
- var children = _ref4.children,
205
- _ref4$size = _ref4.size,
206
- size = _ref4$size === undefined ? 16 : _ref4$size,
207
- rest = _objectWithoutProperties(_ref4, _excluded4);
208
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
209
- width: size,
210
- height: size,
211
- ref: ref,
212
- xmlns: "http://www.w3.org/2000/svg",
213
- viewBox: "0 0 32 32",
214
- fill: "currentColor"
215
- }, rest), _path7 || (_path7 = /*#__PURE__*/React__default.createElement("path", {
216
- d: "M14 18H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2.4l1.7 3 1.7-1-2.3-4H4v-6h10v6h-3v2h3c1.1 0 2-.9 2-2v-6C16 18.9 15.1 18 14 18zM19 26h2c3.9 0 7-3.1 7-7v-2h-2v2c0 2.8-2.2 5-5 5h-2V26zM18 11H24V13H18zM18 7H30V9H18zM18 3H30V5H18zM4 14h2v-2c0-2.8 2.2-5 5-5h4V5h-4c-3.9 0-7 3.1-7 7V14z"
217
- })), children);
218
- });
219
- if (process.env.NODE_ENV !== "production") {
220
- IbmWatsonSpeechToText.propTypes = iconPropTypes;
221
- }
222
- var IbmWatsonStudio = /*#__PURE__*/React__default.forwardRef(function IbmWatsonStudio(_ref5, ref) {
223
- var children = _ref5.children,
224
- _ref5$size = _ref5.size,
225
- size = _ref5$size === undefined ? 16 : _ref5$size,
226
- rest = _objectWithoutProperties(_ref5, _excluded5);
227
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
228
- width: size,
229
- height: size,
230
- ref: ref,
231
- xmlns: "http://www.w3.org/2000/svg",
232
- viewBox: "0 0 32 32",
233
- fill: "currentColor"
234
- }, rest), _path8 || (_path8 = /*#__PURE__*/React__default.createElement("path", {
235
- d: "M25 21c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5S27.8 21 25 21zM25 13c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3S26.7 13 25 13zM14 11V6c0-1.1-.9-2-2-2h-2v2h2v5c0 2.1 1.1 3.9 2.7 5-1.6 1.1-2.7 2.9-2.7 5v5h-2v2h2c1.1 0 2-.9 2-2v-5c0-2.2 1.8-4 4-4v-2C15.8 15 14 13.2 14 11zM2 30v-6h6v6H2zM4 26v2h2v-2H4zM2 19v-6h6v6H2zM4 15v2h2v-2H4zM2 8V2h6v6H2zM4 4v2h2V4H4z"
236
- })), children);
237
- });
238
- if (process.env.NODE_ENV !== "production") {
239
- IbmWatsonStudio.propTypes = iconPropTypes;
240
- }
241
- var IbmWatsonTextToSpeech = /*#__PURE__*/React__default.forwardRef(function IbmWatsonTextToSpeech(_ref6, ref) {
242
- var children = _ref6.children,
243
- _ref6$size = _ref6.size,
244
- size = _ref6$size === undefined ? 16 : _ref6$size,
245
- rest = _objectWithoutProperties(_ref6, _excluded6);
246
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
247
- width: size,
248
- height: size,
249
- ref: ref,
250
- xmlns: "http://www.w3.org/2000/svg",
251
- viewBox: "0 0 32 32",
252
- fill: "currentColor"
253
- }, rest), _path9 || (_path9 = /*#__PURE__*/React__default.createElement("path", {
254
- d: "M13 26h-2c-3.9 0-7-3.1-7-7v-2h2v2c0 2.8 2.2 5 5 5h2V26zM18 18h10c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-2.4l-1.7 3-1.7-1 2.3-4H28v-6H18v6h3v2h-3c-1.1 0-2-.9-2-2v-6C16 18.9 16.9 18 18 18zM28 14h-2v-2c0-2.8-2.2-5-5-5h-4V5h4c3.9 0 7 3.1 7 7V14zM2 11H8V13H2zM2 7H14V9H2zM2 3H14V5H2z"
255
- })), children);
256
- });
257
- if (process.env.NODE_ENV !== "production") {
258
- IbmWatsonTextToSpeech.propTypes = iconPropTypes;
259
- }
260
- var IbmWatsonToneAnalyzer = /*#__PURE__*/React__default.forwardRef(function IbmWatsonToneAnalyzer(_ref7, ref) {
261
- var children = _ref7.children,
262
- _ref7$size = _ref7.size,
263
- size = _ref7$size === undefined ? 16 : _ref7$size,
264
- rest = _objectWithoutProperties(_ref7, _excluded7);
265
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
266
- width: size,
267
- height: size,
268
- ref: ref,
269
- xmlns: "http://www.w3.org/2000/svg",
270
- viewBox: "0 0 32 32",
271
- fill: "currentColor"
272
- }, rest), _path10 || (_path10 = /*#__PURE__*/React__default.createElement("path", {
273
- d: "M23.9,10c-0.6-0.6-1.5-1-2.4-1s-1.8,0.4-2.4,1l-1.4-1.4c1-1,2.4-1.6,3.8-1.6s2.9,0.6,3.8,1.6L23.9,10z"
274
- })), _circle || (_circle = /*#__PURE__*/React__default.createElement("circle", {
275
- cx: "24",
276
- cy: "5",
277
- r: "1"
278
- })), _circle2 || (_circle2 = /*#__PURE__*/React__default.createElement("circle", {
279
- cx: "19",
280
- cy: "5",
281
- r: "1"
282
- })), _path11 || (_path11 = /*#__PURE__*/React__default.createElement("path", {
283
- d: "M15 0l13 0c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2h-3.5l-1.7 3L21 16l2.3-4H28V2H15v10h5v2h-5c-1.1 0-2-.9-2-2V2C13 .9 13.9 0 15 0zM20 19v6c0 .6-.4 1-1 1h-5v2h5c1.7 0 3-1.3 3-3v-6H20zM15.4 20.4c-.8 1-2.1 1.6-3.4 1.6s-2.6-.6-3.4-1.6L7 21.6c1.2 1.4 3 2.4 5 2.4s3.8-.9 5-2.4L15.4 20.4z"
284
- })), _circle3 || (_circle3 = /*#__PURE__*/React__default.createElement("circle", {
285
- cx: "15.5",
286
- cy: "17.5",
287
- r: "1.5"
288
- })), _circle4 || (_circle4 = /*#__PURE__*/React__default.createElement("circle", {
289
- cx: "8.5",
290
- cy: "17.5",
291
- r: "1.5"
292
- })), _path12 || (_path12 = /*#__PURE__*/React__default.createElement("path", {
293
- d: "M10.1,26H5c-0.6,0-1-0.4-1-1V14c0-0.6,0.4-1,1-1h5v-2H5c-1.7,0-3,1.3-3,3v11c0,1.7,1.3,3,3,3h4l2.3,4l1.7-1L10.1,26z"
294
- })), children);
295
- });
296
- if (process.env.NODE_ENV !== "production") {
297
- IbmWatsonToneAnalyzer.propTypes = iconPropTypes;
298
- }
299
- var IbmWatsonxAssistant = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxAssistant(_ref8, ref) {
300
- var children = _ref8.children,
301
- _ref8$size = _ref8.size,
302
- size = _ref8$size === undefined ? 16 : _ref8$size,
303
- rest = _objectWithoutProperties(_ref8, _excluded8);
304
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
305
- width: size,
306
- height: size,
307
- ref: ref,
308
- xmlns: "http://www.w3.org/2000/svg",
309
- viewBox: "0 0 32 32",
310
- fill: "currentColor"
311
- }, rest), _path13 || (_path13 = /*#__PURE__*/React__default.createElement("path", {
312
- d: "M28 2h-10c-1.1035 0-2 .8965-2 2v6c0 1.1035.8965 2 2 2h2.4229s1.7314 3 1.7314 3l1.7324-1-2.3096-4h-3.5771V4h10v6h-3s0 2 0 2h3c1.1035 0 2-.8965 2-2V4c0-1.1035-.8965-2-2-2zM14.6904 31l-1.7324-1 3.4648-6h5.5771c1.1046 0 2-.8954 2-2v-5h2v5c0 2.2091-1.7909 4-4 4h-4.4229l-2.8867 5z"
313
- })), _circle5 || (_circle5 = /*#__PURE__*/React__default.createElement("circle", {
314
- cx: "10",
315
- cy: "17",
316
- r: "1"
317
- })), _circle6 || (_circle6 = /*#__PURE__*/React__default.createElement("circle", {
318
- cx: "14",
319
- cy: "17",
320
- r: "1"
321
- })), _circle7 || (_circle7 = /*#__PURE__*/React__default.createElement("circle", {
322
- cx: "18",
323
- cy: "17",
324
- r: "1"
325
- })), _path14 || (_path14 = /*#__PURE__*/React__default.createElement("path", {
326
- d: "m12,26h-6c-2.2091,0-4-1.7909-4-4v-10c0-2.2091,1.7909-4,4-4h8v2H6c-1.1046,0-2,.8954-2,2v10c0,1.1046.8954,2,2,2h6v2Z"
327
- })), children);
328
- });
329
- if (process.env.NODE_ENV !== "production") {
330
- IbmWatsonxAssistant.propTypes = iconPropTypes;
331
- }
332
- var IbmWatsonxCodeAssistant = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxCodeAssistant(_ref9, ref) {
333
- var children = _ref9.children,
334
- _ref9$size = _ref9.size,
335
- size = _ref9$size === undefined ? 16 : _ref9$size,
336
- rest = _objectWithoutProperties(_ref9, _excluded9);
337
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
338
- width: size,
339
- height: size,
340
- ref: ref,
341
- xmlns: "http://www.w3.org/2000/svg",
342
- viewBox: "0 0 32 32",
343
- fill: "currentColor"
344
- }, rest), _path15 || (_path15 = /*#__PURE__*/React__default.createElement("path", {
345
- d: "M11 28h-2c-3.8599 0-7-3.1401-7-7v-2h2v2c0 2.7568 2.2432 5 5 5h2v2zM28.17 26L25.59 28.58 27 30 31 26 27 22 25.58 23.41 28.17 26zM22 31L20.085 30.4229 23 21 24.9149 21.5771 22 31zM16.83 26L19.41 23.42 18 22 14 26 18 30 19.42 28.59 16.83 26zM30 19h-2v-7c0-2.7614-2.2386-5-5-5h-4v-2h4c3.866 0 7 3.134 7 7v7z"
346
- })), _circle8 || (_circle8 = /*#__PURE__*/React__default.createElement("circle", {
347
- cx: "3",
348
- cy: "4",
349
- r: "1"
350
- })), _path16 || (_path16 = /*#__PURE__*/React__default.createElement("path", {
351
- d: "M6 3H16V5H6z"
352
- })), _circle9 || (_circle9 = /*#__PURE__*/React__default.createElement("circle", {
353
- cx: "3",
354
- cy: "12",
355
- r: "1"
356
- })), _path17 || (_path17 = /*#__PURE__*/React__default.createElement("path", {
357
- d: "M6 11H16V13H6zM2 15H12V17H2z"
358
- })), _circle10 || (_circle10 = /*#__PURE__*/React__default.createElement("circle", {
359
- cx: "15",
360
- cy: "8",
361
- r: "1"
362
- })), _path18 || (_path18 = /*#__PURE__*/React__default.createElement("path", {
363
- d: "M2 7H12V9H2z"
364
- })), _circle11 || (_circle11 = /*#__PURE__*/React__default.createElement("circle", {
365
- cx: "15",
366
- cy: "16",
367
- r: "1"
368
- })), children);
369
- });
370
- if (process.env.NODE_ENV !== "production") {
371
- IbmWatsonxCodeAssistant.propTypes = iconPropTypes;
372
- }
373
- var IbmWatsonxCodeAssistantForZ = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxCodeAssistantForZ(_ref10, ref) {
374
- var children = _ref10.children,
375
- _ref10$size = _ref10.size,
376
- size = _ref10$size === undefined ? 16 : _ref10$size,
377
- rest = _objectWithoutProperties(_ref10, _excluded10);
378
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
379
- width: size,
380
- height: size,
381
- ref: ref,
382
- xmlns: "http://www.w3.org/2000/svg",
383
- viewBox: "0 0 32 32",
384
- fill: "currentColor"
385
- }, rest), _path19 || (_path19 = /*#__PURE__*/React__default.createElement("path", {
386
- d: "M29.17 25L26.59 27.58 28 29 32 25 28 21 26.58 22.41 29.17 25zM23 30L21.0851 29.4229 24 20 25.9149 20.5771 23 30zM17.83 25L20.41 22.42 19 21 15 25 19 29 20.42 27.59 17.83 25zM18 19h-2V5c0-1.1028.8972-2 2-2h9c1.1028 0 2 .8972 2 2v11h-2V5h-9v14zM12 3H3c-1.1028 0-2 .8975-2 2v22c0 1.1025.8972 2 2 2h9c1.1028 0 2-.8975 2-2V5c0-1.1025-.8972-2-2-2zm.0002 7.0366l-6.925-5.0366h6.9248l.0002 5.0366zm-.7004 1.9634l-8.2998 6.0361V5.9639l8.2998 6.0361zm.7007 1.9634l.0007 11.8169-8.2795-5.7959 8.2788-6.021zm-9.0005 7.9575l7.2563 5.0791H3v-5.0791zm9 5.0791l.0012-.002v.002h-.0012z"
387
- })), children);
388
- });
389
- if (process.env.NODE_ENV !== "production") {
390
- IbmWatsonxCodeAssistantForZ.propTypes = iconPropTypes;
391
- }
392
- var IbmWatsonxCodeAssistantForZRefactor = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxCodeAssistantForZRefactor(_ref11, ref) {
393
- var children = _ref11.children,
394
- _ref11$size = _ref11.size,
395
- size = _ref11$size === undefined ? 16 : _ref11$size,
396
- rest = _objectWithoutProperties(_ref11, _excluded11);
397
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
398
- width: size,
399
- height: size,
400
- ref: ref,
401
- xmlns: "http://www.w3.org/2000/svg",
402
- viewBox: "0 0 32 32",
403
- fill: "currentColor"
404
- }, rest), _path20 || (_path20 = /*#__PURE__*/React__default.createElement("path", {
405
- d: "M22.17 16L19.59 18.58 21 20 25 16 21 12 19.58 13.41 22.17 16zM15.5 21L13.5851 20.4229 16.5 11 18.4149 11.5771 15.5 21zM9.83 16L12.41 13.42 11 12 7 16 11 20 12.42 18.59 9.83 16z"
406
- })), _circle12 || (_circle12 = /*#__PURE__*/React__default.createElement("circle", {
407
- cx: "19",
408
- cy: "28",
409
- r: "1"
410
- })), _path21 || (_path21 = /*#__PURE__*/React__default.createElement("path", {
411
- d: "m22,29v-2c2.7568,0,5-2.2432,5-5v-12c0-2.7568-2.2432-5-5-5h-6v-2h6c3.8594,0,7,3.1401,7,7v12c0,3.8594-3.1406,7-7,7Z"
412
- })), _circle13 || (_circle13 = /*#__PURE__*/React__default.createElement("circle", {
413
- cx: "13",
414
- cy: "4",
415
- r: "1"
416
- })), _path22 || (_path22 = /*#__PURE__*/React__default.createElement("path", {
417
- d: "m16,29h-6c-3.8594,0-7-3.1406-7-7v-12c0-3.8599,3.1406-7,7-7v2c-2.7568,0-5,2.2432-5,5v12c0,2.7568,2.2432,5,5,5h6v2Z"
418
- })), children);
419
- });
420
- if (process.env.NODE_ENV !== "production") {
421
- IbmWatsonxCodeAssistantForZRefactor.propTypes = iconPropTypes;
422
- }
423
- var IbmWatsonxCodeAssistantForZValidationAssistant = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxCodeAssistantForZValidationAssistant(_ref12, ref) {
424
- var children = _ref12.children,
425
- _ref12$size = _ref12.size,
426
- size = _ref12$size === undefined ? 16 : _ref12$size,
427
- rest = _objectWithoutProperties(_ref12, _excluded12);
428
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
429
- width: size,
430
- height: size,
431
- ref: ref,
432
- xmlns: "http://www.w3.org/2000/svg",
433
- viewBox: "0 0 32 32",
434
- fill: "currentColor"
435
- }, rest), _path23 || (_path23 = /*#__PURE__*/React__default.createElement("path", {
436
- d: "M16,2c-7.7,0-14,6.3-14,14s2.7,9.5,6.7,12l1.1-1.7c-3.5-2.1-5.8-5.9-5.8-10.3,0-6.6,5.4-12,12-12s12,5.4,12,12h2c0-7.7-6.3-14-14-14ZM14,21.4l-5-5,1.4-1.4,3.6,3.6,7.6-7.6,1.4,1.4-9,9ZM29.2,27l-2.6,2.6,1.4,1.4,4-4-4-4-1.4,1.4,2.6,2.6ZM22.5,32l-1.9-.6,2.9-9.4,1.9.6-2.9,9.4ZM16.8,27l2.6-2.6-1.4-1.4-4,4,4,4,1.4-1.4-2.6-2.6Z"
437
- })), children);
438
- });
439
- if (process.env.NODE_ENV !== "production") {
440
- IbmWatsonxCodeAssistantForZValidationAssistant.propTypes = iconPropTypes;
441
- }
442
- var IbmWatsonxOrchestrate = /*#__PURE__*/React__default.forwardRef(function IbmWatsonxOrchestrate(_ref13, ref) {
443
- var children = _ref13.children,
444
- _ref13$size = _ref13.size,
445
- size = _ref13$size === undefined ? 16 : _ref13$size,
446
- rest = _objectWithoutProperties(_ref13, _excluded13);
447
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
448
- width: size,
449
- height: size,
450
- ref: ref,
451
- xmlns: "http://www.w3.org/2000/svg",
452
- viewBox: "0 0 32 32",
453
- fill: "currentColor"
454
- }, rest), _path24 || (_path24 = /*#__PURE__*/React__default.createElement("path", {
455
- d: "m27.9248,19.4282c-1.123,1.6104-2.9641,2.5718-4.9248,2.5718-2.1233,0-4.0464-1.0874-5.1438-2.9092l-1.7129,1.0322c1.4624,2.4277,4.0256,3.877,6.8567,3.877,1.4231,0,2.7925-.3911,3.9922-1.0835-2.3442,3.6958-6.4814,6.0835-10.9922,6.0835-5.7104,0-10.8347-3.8184-12.4617-9.2852l-1.917.5703c1.8774,6.3086,7.79,10.7148,14.3787,10.7148s12.5012-4.4062,14.3787-10.7148l-2.4539-.8569Z"
456
- })), _circle14 || (_circle14 = /*#__PURE__*/React__default.createElement("circle", {
457
- cx: "30",
458
- cy: "16",
459
- r: "2"
460
- })), _circle15 || (_circle15 = /*#__PURE__*/React__default.createElement("circle", {
461
- cx: "2",
462
- cy: "16",
463
- r: "2"
464
- })), _circle16 || (_circle16 = /*#__PURE__*/React__default.createElement("circle", {
465
- cx: "16",
466
- cy: "16",
467
- r: "2"
468
- })), _path25 || (_path25 = /*#__PURE__*/React__default.createElement("path", {
469
- d: "m16,1C9.4114,1,3.4988,5.4062,1.6213,11.7148l2.4539.8569c1.123-1.6104,2.9641-2.5718,4.9248-2.5718s3.8018.9614,4.9248,2.5718l1.6406-1.144c-1.4971-2.1465-3.9514-3.4277-6.5654-3.4277-1.4231,0-2.7925.3911-3.9922,1.0835,2.3442-3.6953,6.4814-6.0835,10.9922-6.0835,5.7104,0,10.8347,3.8184,12.4617,9.2852l1.917-.5703c-1.8774-6.3086-7.79-10.7148-14.3787-10.7148Z"
470
- })), children);
471
- });
472
- if (process.env.NODE_ENV !== "production") {
473
- IbmWatsonxOrchestrate.propTypes = iconPropTypes;
474
- }
475
- var IbmZCloudModStack = /*#__PURE__*/React__default.forwardRef(function IbmZCloudModStack(_ref14, ref) {
476
- var children = _ref14.children,
477
- _ref14$size = _ref14.size,
478
- size = _ref14$size === undefined ? 16 : _ref14$size,
479
- rest = _objectWithoutProperties(_ref14, _excluded14);
480
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
481
- width: size,
482
- height: size,
483
- ref: ref,
484
- xmlns: "http://www.w3.org/2000/svg",
485
- viewBox: "0 0 32 32",
486
- fill: "currentColor"
487
- }, rest), _path26 || (_path26 = /*#__PURE__*/React__default.createElement("path", {
488
- d: "M18.496,27.386L16,28.842L5,22.426v-5.852l10.016-5.843C15.308,10.897,15.641,11,16,11c1.104,0,2-0.896,2-2s-0.896-2-2-2 s-2,0.896-2,2c0,0.003,0.001,0.005,0.001,0.008L3.496,15.136C3.189,15.315,3,15.645,3,16v7c0,0.355,0.189,0.685,0.496,0.864l12,7 C15.652,30.955,15.826,31,16,31s0.348-0.045,0.504-0.136l3-1.75L18.496,27.386z"
489
- })), _path27 || (_path27 = /*#__PURE__*/React__default.createElement("path", {
490
- d: "M28.504,8.136l-3-1.75l-1.008,1.728L27,9.574v12.852l-4.593,2.679l-10.409-6.093C11.999,19.007,12,19.004,12,19 c0-1.104-0.896-2-2-2s-2,0.896-2,2s0.896,2,2,2c0.358,0,0.69-0.102,0.981-0.267l10.92,6.393c0.156,0.091,0.331,0.137,0.505,0.137 c0.174,0,0.348-0.045,0.504-0.136l5.594-3.263C28.811,23.685,29,23.355,29,23V9C29,8.645,28.811,8.315,28.504,8.136z"
491
- })), _path28 || (_path28 = /*#__PURE__*/React__default.createElement("path", {
492
- d: "M23,17.277V5.5c0-0.355-0.189-0.685-0.496-0.864l-6-3.5C16.348,1.045,16.174,1,16,1s-0.348,0.045-0.504,0.136l-12,7 C3.189,8.315,3,8.645,3,9v2.999h2V9.574l11-6.417l5,2.917v11.203c-0.595,0.347-1,0.984-1,1.723c0,1.104,0.896,2,2,2s2-0.896,2-2 C24,18.262,23.595,17.624,23,17.277z"
493
- })), children);
494
- });
495
- if (process.env.NODE_ENV !== "production") {
496
- IbmZCloudModStack.propTypes = iconPropTypes;
497
- }
498
- var IbmZEnvironmentsDevSecOps = /*#__PURE__*/React__default.forwardRef(function IbmZEnvironmentsDevSecOps(_ref15, ref) {
499
- var children = _ref15.children,
500
- _ref15$size = _ref15.size,
501
- size = _ref15$size === undefined ? 16 : _ref15$size,
502
- rest = _objectWithoutProperties(_ref15, _excluded15);
503
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
504
- width: size,
505
- height: size,
506
- ref: ref,
507
- xmlns: "http://www.w3.org/2000/svg",
508
- viewBox: "0 0 32 32",
509
- fill: "currentColor"
510
- }, rest), _path29 || (_path29 = /*#__PURE__*/React__default.createElement("path", {
511
- d: "m23.5,16v2c3.0327,0,5.5,2.4673,5.5,5.5s-2.4673,5.5-5.5,5.5-5.5-2.4673-5.5-5.5h-2c0,4.1422,3.3578,7.5,7.5,7.5s7.5-3.3578,7.5-7.5-3.3578-7.5-7.5-7.5Z"
512
- })), _path30 || (_path30 = /*#__PURE__*/React__default.createElement("path", {
513
- d: "M23.5 26c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5c-.3217 0-.6268.066-.9093.1766l-4.8837-4.8837-1.4141 1.4141 4.8837 4.8837c-.1107.2825-.1766.5876-.1766.9093 0 1.3807 1.1193 2.5 2.5 2.5zM29 13h-2v-3.4257l-11-6.4166-3 1.7499v8.0924h-2V4.3333c0-.3557.189-.6846.4961-.8638l4-2.3333c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12 7c.3071.1792.4961.5081.4961.8638v4zM7 6H9V16H7z"
514
- })), _path31 || (_path31 = /*#__PURE__*/React__default.createElement("path", {
515
- d: "m13.9998,29.991l-10.5037-6.1272c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l10.0076,5.8378-1.0078,1.7275Z"
516
- })), children);
517
- });
518
- if (process.env.NODE_ENV !== "production") {
519
- IbmZEnvironmentsDevSecOps.propTypes = iconPropTypes;
520
- }
521
- var IbmZOpenEditor = /*#__PURE__*/React__default.forwardRef(function IbmZOpenEditor(_ref16, ref) {
522
- var children = _ref16.children,
523
- _ref16$size = _ref16.size,
524
- size = _ref16$size === undefined ? 16 : _ref16$size,
525
- rest = _objectWithoutProperties(_ref16, _excluded16);
526
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
527
- width: size,
528
- height: size,
529
- ref: ref,
530
- xmlns: "http://www.w3.org/2000/svg",
531
- viewBox: "0 0 32 32",
532
- fill: "currentColor"
533
- }, rest), _path32 || (_path32 = /*#__PURE__*/React__default.createElement("path", {
534
- d: "M29,13h-2v-3.4257l-11-6.4166-3,1.7499v8.0924h-2V4.3333c0-.3557.189-.6846.4961-.8638l4-2.3333c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7c.3071.1792.4961.5081.4961.8638v4ZM7,16h2V6h-2v10ZM15,28.2718l-10.0013-5.8403v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001ZM26,17l-1.4141,1.4141,3.5854,3.5859-3.5854,3.5859,1.4141,1.4141,5-5-5-5ZM15,22l5,5,1.4141-1.4141-3.5854-3.5859,3.5854-3.5859-1.4141-1.4141-5,5Z"
535
- })), children);
536
- });
537
- if (process.env.NODE_ENV !== "production") {
538
- IbmZOpenEditor.propTypes = iconPropTypes;
539
- }
540
- var IbmZProcessorCapacityReference = /*#__PURE__*/React__default.forwardRef(function IbmZProcessorCapacityReference(_ref17, ref) {
541
- var children = _ref17.children,
542
- _ref17$size = _ref17.size,
543
- size = _ref17$size === undefined ? 16 : _ref17$size,
544
- rest = _objectWithoutProperties(_ref17, _excluded17);
545
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
546
- width: size,
547
- height: size,
548
- ref: ref,
549
- xmlns: "http://www.w3.org/2000/svg",
550
- viewBox: "0 0 32 32",
551
- fill: "currentColor"
552
- }, rest), _path33 || (_path33 = /*#__PURE__*/React__default.createElement("path", {
553
- d: "M25 25H27V29H25zM21 23H23V29H21zM29 20H31V29H29z"
554
- })), _path34 || (_path34 = /*#__PURE__*/React__default.createElement("path", {
555
- d: "M30 17V5c0-1.1046-.8954-2-2-2h-9c-1.1046 0-2 .8954-2 2v24h2V5h9v12h2zM13 3H4c-1.1046 0-2 .8954-2 2v22c0 1.1046.8954 2 2 2h9c1.1046 0 2-.8954 2-2V5c0-1.1046-.8954-2-2-2zm-9 2.9635l8.2998 6.0365-8.2998 6.0365V5.9635zm0 21.0365v-5.0366l6.9253 5.0366h-6.9253zm9-.9635l-8.2998-6.0365 8.2998-6.0365v12.073zm0-15.9999l-6.9253-5.0366h6.9253v5.0366z"
556
- })), children);
557
- });
558
- if (process.env.NODE_ENV !== "production") {
559
- IbmZProcessorCapacityReference.propTypes = iconPropTypes;
560
- }
561
- var IbmZCloudProvisioning = /*#__PURE__*/React__default.forwardRef(function IbmZCloudProvisioning(_ref18, ref) {
562
- var children = _ref18.children,
563
- _ref18$size = _ref18.size,
564
- size = _ref18$size === undefined ? 16 : _ref18$size,
565
- rest = _objectWithoutProperties(_ref18, _excluded18);
566
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
567
- width: size,
568
- height: size,
569
- ref: ref,
570
- xmlns: "http://www.w3.org/2000/svg",
571
- viewBox: "0 0 32 32",
572
- fill: "currentColor"
573
- }, rest), _path35 || (_path35 = /*#__PURE__*/React__default.createElement("path", {
574
- d: "M10 17H14V21H10zM17 10H21V14H17zM17 17H21V21H17z"
575
- })), _path36 || (_path36 = /*#__PURE__*/React__default.createElement("path", {
576
- d: "M19.758 26.65L16 28.842 5 22.426V18H3v5c0 .355.189.685.496.864l12 7C15.652 30.955 15.826 31 16 31s.348-.045.504-.136l4.282-2.498L19.758 26.65zM28.504 8.136l-4.269-2.49-1.029 1.715L27 9.574v12.852l-3.787 2.209 1.029 1.715 4.262-2.486C28.811 23.685 29 23.355 29 23V9C29 8.645 28.811 8.315 28.504 8.136zM5 9.574l11-6.417 3.751 2.188L20.78 3.63l-4.276-2.494C16.348 1.045 16.174 1 16 1s-.348.045-.504.136l-12 7C3.189 8.315 3 8.645 3 9v5h2V9.574z"
577
- })), children);
578
- });
579
- if (process.env.NODE_ENV !== "production") {
580
- IbmZCloudProvisioning.propTypes = iconPropTypes;
581
- }
582
- var IbmZOs = /*#__PURE__*/React__default.forwardRef(function IbmZOs(_ref19, ref) {
583
- var children = _ref19.children,
584
- _ref19$size = _ref19.size,
585
- size = _ref19$size === undefined ? 16 : _ref19$size,
586
- rest = _objectWithoutProperties(_ref19, _excluded19);
587
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
588
- width: size,
589
- height: size,
590
- ref: ref,
591
- xmlns: "http://www.w3.org/2000/svg",
592
- viewBox: "0 0 32 32",
593
- fill: "currentColor"
594
- }, rest), _path37 || (_path37 = /*#__PURE__*/React__default.createElement("path", {
595
- d: "M16 32c-5.0793 0-9.7449-2.3319-12.7998-6.3979l1.5991-1.2014c2.6736 3.5585 6.7561 5.5994 11.2007 5.5994s8.5281-2.0413 11.2014-5.6005l1.5991 1.2012c-3.0547 4.0668-7.7202 6.3993-12.8005 6.3993zM30 22h-5v-2h5v-3h-3c-1.1028 0-2-.8972-2-2v-3c0-1.1028.8972-2 2-2h5v2h-5v3h3c1.1028 0 2 .8972 2 2v3c0 1.1028-.8972 2-2 2zM21 22h-4c-1.1028 0-2-.8972-2-2v-8c0-1.1028.8972-2 2-2h4c1.1028 0 2 .8972 2 2v8c0 1.1028-.8972 2-2 2zm-4-10v8h4v-8h-4zM11.4458 10L7.4458 22 9.5542 22 13.5542 10 11.4458 10zM6 22L0 22 0 19.6973 3.7981 14 0 14 0 12 6 12 6 14.3027 2.2019 20 6 20 6 22zM16.0001 0C10.9207 0 6.2552 2.3319 3.2003 6.3979l1.5991 1.2014c2.6736-3.5585 6.7561-5.5994 11.2007-5.5994s8.5281 2.0413 11.2014 5.6005l1.5991-1.2012C25.7459 2.3325 21.0804 0 16.0001 0z"
596
- })), children);
597
- });
598
- if (process.env.NODE_ENV !== "production") {
599
- IbmZOs.propTypes = iconPropTypes;
600
- }
601
- var IbmZOsAiControlInterface = /*#__PURE__*/React__default.forwardRef(function IbmZOsAiControlInterface(_ref20, ref) {
602
- var children = _ref20.children,
603
- _ref20$size = _ref20.size,
604
- size = _ref20$size === undefined ? 16 : _ref20$size,
605
- rest = _objectWithoutProperties(_ref20, _excluded20);
606
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
607
- width: size,
608
- height: size,
609
- ref: ref,
610
- xmlns: "http://www.w3.org/2000/svg",
611
- viewBox: "0 0 32 32",
612
- fill: "currentColor"
613
- }, rest), _circle17 || (_circle17 = /*#__PURE__*/React__default.createElement("circle", {
614
- cx: "12",
615
- cy: "21",
616
- r: "1"
617
- })), _path38 || (_path38 = /*#__PURE__*/React__default.createElement("path", {
618
- d: "m23,25h-14c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h14c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-14-6v4h14v-4h-14Z"
619
- })), _circle18 || (_circle18 = /*#__PURE__*/React__default.createElement("circle", {
620
- cx: "12",
621
- cy: "11",
622
- r: "1"
623
- })), _path39 || (_path39 = /*#__PURE__*/React__default.createElement("path", {
624
- d: "m23,15h-14c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h14c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-14-6v4h14v-4h-14Z"
625
- })), _path40 || (_path40 = /*#__PURE__*/React__default.createElement("path", {
626
- d: "m28,30H4c-1.103,0-2-.897-2-2v-12h2v12h24V4h-12v-2h12c1.103,0,2,.897,2,2v24c0,1.103-.897,2-2,2Z"
627
- })), _path41 || (_path41 = /*#__PURE__*/React__default.createElement("path", {
628
- d: "M8.5 1.5H13.5V3.5H8.5z",
629
- transform: "rotate(90 11 2.5)"
630
- })), _path42 || (_path42 = /*#__PURE__*/React__default.createElement("path", {
631
- d: "M1.975 3.475H6.975V5.475H1.975z",
632
- transform: "rotate(45 4.475 4.475)"
633
- })), _path43 || (_path43 = /*#__PURE__*/React__default.createElement("path", {
634
- d: "M0 10H5V12H0z"
635
- })), children);
636
- });
637
- if (process.env.NODE_ENV !== "production") {
638
- IbmZOsAiControlInterface.propTypes = iconPropTypes;
639
- }
640
- var IbmZOsContainers = /*#__PURE__*/React__default.forwardRef(function IbmZOsContainers(_ref21, ref) {
641
- var children = _ref21.children,
642
- _ref21$size = _ref21.size,
643
- size = _ref21$size === undefined ? 16 : _ref21$size,
644
- rest = _objectWithoutProperties(_ref21, _excluded21);
645
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
646
- width: size,
647
- height: size,
648
- ref: ref,
649
- xmlns: "http://www.w3.org/2000/svg",
650
- viewBox: "0 0 32 32",
651
- fill: "currentColor"
652
- }, rest), _path44 || (_path44 = /*#__PURE__*/React__default.createElement("path", {
653
- d: "m29,12h-9V3h9v9Zm-7-2h5v-5h-5v5Z"
654
- })), _path45 || (_path45 = /*#__PURE__*/React__default.createElement("path", {
655
- d: "m20,15v2h7v10h-10V3H5c-1.1028,0-2,.8975-2,2v22c0,1.1025.8972,2,2,2h22c1.1028,0,2-.8975,2-2v-12h-9Zm-13.5859,2h8.5859v8.5859l-8.5859-8.5859Zm8.5859-2H6.4141L15,6.4141v8.5859Zm-1.4141-10L5,13.5859V5h8.5859Zm-8.5859,13.4141l8.5859,8.5859H5v-8.5859Z"
656
- })), children);
657
- });
658
- if (process.env.NODE_ENV !== "production") {
659
- IbmZOsContainers.propTypes = iconPropTypes;
660
- }
661
- var IbmZOsPackageManager = /*#__PURE__*/React__default.forwardRef(function IbmZOsPackageManager(_ref22, ref) {
662
- var children = _ref22.children,
663
- _ref22$size = _ref22.size,
664
- size = _ref22$size === undefined ? 16 : _ref22$size,
665
- rest = _objectWithoutProperties(_ref22, _excluded22);
666
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
667
- width: size,
668
- height: size,
669
- ref: ref,
670
- xmlns: "http://www.w3.org/2000/svg",
671
- viewBox: "0 0 32 32",
672
- fill: "currentColor"
673
- }, rest), _path46 || (_path46 = /*#__PURE__*/React__default.createElement("path", {
674
- d: "M15 9v10.172l-2.586-2.586L11 18l5 5 5-5-1.414-1.414L17 19.172V9H15zM19.758 26.65L16 28.842 5 22.426V18H3v5c0 .355.189.685.496.864l12 7C15.652 30.955 15.826 31 16 31s.348-.045.504-.136l4.282-2.498L19.758 26.65zM28.504 8.136l-4.269-2.49-1.029 1.715L27 9.574v12.852l-3.787 2.209 1.029 1.715 4.262-2.486C28.811 23.685 29 23.355 29 23V9C29 8.645 28.811 8.315 28.504 8.136zM5 9.574l11-6.417 3.751 2.188L20.78 3.63l-4.276-2.494C16.348 1.045 16.174 1 16 1s-.348.045-.504.136l-12 7C3.189 8.315 3 8.645 3 9v5h2V9.574z"
675
- })), children);
676
- });
677
- if (process.env.NODE_ENV !== "production") {
678
- IbmZOsPackageManager.propTypes = iconPropTypes;
679
- }
680
- var WatsonHealthICa_2D = /*#__PURE__*/React__default.forwardRef(function WatsonHealthICa_2D(_ref23, ref) {
681
- var children = _ref23.children,
682
- _ref23$size = _ref23.size,
683
- size = _ref23$size === undefined ? 16 : _ref23$size,
684
- rest = _objectWithoutProperties(_ref23, _excluded23);
685
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
686
- width: size,
687
- height: size,
688
- ref: ref,
689
- xmlns: "http://www.w3.org/2000/svg",
690
- viewBox: "0 0 32 32",
691
- fill: "currentColor"
692
- }, rest), _path47 || (_path47 = /*#__PURE__*/React__default.createElement("path", {
693
- d: "M22 24H10a2.0023 2.0023 0 01-2-2V10a2.0023 2.0023 0 012-2H22a2.0023 2.0023 0 012 2V22A2.0023 2.0023 0 0122 24zM10 10V22H22V10zM11 2L2 2 2 11 4 11 4 4 11 4 11 2zM2 21L2 30 11 30 11 28 4 28 4 21 2 21zM30 11L30 2 21 2 21 4 28 4 28 11 30 11zM21 30L30 30 30 21 28 21 28 28 21 28 21 30z"
694
- })), children);
695
- });
696
- if (process.env.NODE_ENV !== "production") {
697
- WatsonHealthICa_2D.propTypes = iconPropTypes;
698
- }
699
- var IceAccretion = /*#__PURE__*/React__default.forwardRef(function IceAccretion(_ref24, ref) {
700
- var children = _ref24.children,
701
- _ref24$size = _ref24.size,
702
- size = _ref24$size === undefined ? 16 : _ref24$size,
703
- rest = _objectWithoutProperties(_ref24, _excluded24);
704
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
705
- width: size,
706
- height: size,
707
- ref: ref,
708
- xmlns: "http://www.w3.org/2000/svg",
709
- viewBox: "0 0 32 32",
710
- fill: "currentColor"
711
- }, rest), _path48 || (_path48 = /*#__PURE__*/React__default.createElement("path", {
712
- d: "M4 2A2 2 0 002 4V20l1 2 1-2V4H8V14l1 2 1-2V2zM28 2H14v8l1 2 1-2V4h2V17l1 2 1-2V4h4V14l1 2 1-2V4h2V24l1 2 1-2V4A2 2 0 0028 2zM14 28L13 30 12 28 12 16 14 16 14 28z"
713
- })), _path49 || (_path49 = /*#__PURE__*/React__default.createElement("path", {
714
- d: "M24 26L23 28 22 26 22 20 24 20 24 26zM8 24L7 26 6 24 6 18 8 18 8 24z"
715
- })), children);
716
- });
717
- if (process.env.NODE_ENV !== "production") {
718
- IceAccretion.propTypes = iconPropTypes;
719
- }
720
- var IceVision = /*#__PURE__*/React__default.forwardRef(function IceVision(_ref25, ref) {
721
- var children = _ref25.children,
722
- _ref25$size = _ref25.size,
723
- size = _ref25$size === undefined ? 16 : _ref25$size,
724
- rest = _objectWithoutProperties(_ref25, _excluded25);
725
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
726
- width: size,
727
- height: size,
728
- ref: ref,
729
- xmlns: "http://www.w3.org/2000/svg",
730
- viewBox: "0 0 32 32",
731
- fill: "currentColor"
732
- }, rest), _path50 || (_path50 = /*#__PURE__*/React__default.createElement("path", {
733
- d: "M19 14L19 21 20 23 21 21 21 14 19 14zM17 14H13a2 2 0 00-2 2v4l1 2 1-2V16h2v7l1 2 1-2z"
734
- })), _path51 || (_path51 = /*#__PURE__*/React__default.createElement("path", {
735
- d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"
736
- })), children);
737
- });
738
- if (process.env.NODE_ENV !== "production") {
739
- IceVision.propTypes = iconPropTypes;
740
- }
741
- var QID = /*#__PURE__*/React__default.forwardRef(function QID(_ref26, ref) {
742
- var children = _ref26.children,
743
- _ref26$size = _ref26.size,
744
- size = _ref26$size === undefined ? 16 : _ref26$size,
745
- rest = _objectWithoutProperties(_ref26, _excluded26);
746
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
747
- width: size,
748
- height: size,
749
- ref: ref,
750
- xmlns: "http://www.w3.org/2000/svg",
751
- viewBox: "0 0 32 32",
752
- fill: "currentColor"
753
- }, rest), _path52 || (_path52 = /*#__PURE__*/React__default.createElement("path", {
754
- d: "M10 9H12V11H10zM18 23H14V9h4a4 4 0 014 4v6A4 4 0 0118 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H16zM10 13H12V23H10z"
755
- })), children);
756
- });
757
- if (process.env.NODE_ENV !== "production") {
758
- QID.propTypes = iconPropTypes;
759
- }
760
- var IdManagement = /*#__PURE__*/React__default.forwardRef(function IdManagement(_ref27, ref) {
761
- var children = _ref27.children,
762
- _ref27$size = _ref27.size,
763
- size = _ref27$size === undefined ? 16 : _ref27$size,
764
- rest = _objectWithoutProperties(_ref27, _excluded27);
765
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
766
- width: size,
767
- height: size,
768
- ref: ref,
769
- xmlns: "http://www.w3.org/2000/svg",
770
- viewBox: "0 0 32 32",
771
- fill: "currentColor"
772
- }, rest), _path53 || (_path53 = /*#__PURE__*/React__default.createElement("path", {
773
- d: "M15 20H9a3 3 0 00-3 3v2H8V23a1 1 0 011-1h6a1 1 0 011 1v2h2V23A3 3 0 0015 20zM12 19a4 4 0 10-4-4A4 4 0 0012 19zm0-6a2 2 0 11-2 2A2 2 0 0112 13z"
774
- })), _path54 || (_path54 = /*#__PURE__*/React__default.createElement("path", {
775
- d: "M28,19v9H4V8H16V6H4A2,2,0,0,0,2,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19Z"
776
- })), _path55 || (_path55 = /*#__PURE__*/React__default.createElement("path", {
777
- d: "M20 19H26V21H20zM22 23H26V25H22zM32 10V8H29.8989a4.9678 4.9678 0 00-.7319-1.7529l1.49-1.49-1.414-1.414-1.49 1.49A4.9678 4.9678 0 0026 4.1011V2H24V4.1011a4.9678 4.9678 0 00-1.7529.7319l-1.49-1.49-1.414 1.414 1.49 1.49A4.9678 4.9678 0 0020.1011 8H18v2h2.1011a4.9678 4.9678 0 00.7319 1.7529l-1.49 1.49 1.414 1.414 1.49-1.49A4.9678 4.9678 0 0024 13.8989V16h2V13.8989a4.9678 4.9678 0 001.7529-.7319l1.49 1.49 1.414-1.414-1.49-1.49A4.9678 4.9678 0 0029.8989 10zm-7 2a3 3 0 113-3A3.0033 3.0033 0 0125 12z"
778
- })), children);
779
- });
780
- if (process.env.NODE_ENV !== "production") {
781
- IdManagement.propTypes = iconPropTypes;
782
- }
783
- var Idea = /*#__PURE__*/React__default.forwardRef(function Idea(_ref28, ref) {
784
- var children = _ref28.children,
785
- _ref28$size = _ref28.size,
786
- size = _ref28$size === undefined ? 16 : _ref28$size,
787
- rest = _objectWithoutProperties(_ref28, _excluded28);
788
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
789
- width: size,
790
- height: size,
791
- ref: ref,
792
- xmlns: "http://www.w3.org/2000/svg",
793
- viewBox: "0 0 32 32",
794
- fill: "currentColor"
795
- }, rest), _path56 || (_path56 = /*#__PURE__*/React__default.createElement("path", {
796
- d: "M11 24H21V26H11zM13 28H19V30H13zM16 2A10 10 0 006 12a9.19 9.19 0 003.46 7.62c1 .93 1.54 1.46 1.54 2.38h2c0-1.84-1.11-2.87-2.19-3.86A7.2 7.2 0 018 12a8 8 0 0116 0 7.2 7.2 0 01-2.82 6.14c-1.07 1-2.18 2-2.18 3.86h2c0-.92.53-1.45 1.54-2.39A9.18 9.18 0 0026 12 10 10 0 0016 2z"
797
- })), children);
798
- });
799
- if (process.env.NODE_ENV !== "production") {
800
- Idea.propTypes = iconPropTypes;
801
- }
802
- var Identification = /*#__PURE__*/React__default.forwardRef(function Identification(_ref29, ref) {
803
- var children = _ref29.children,
804
- _ref29$size = _ref29.size,
805
- size = _ref29$size === undefined ? 16 : _ref29$size,
806
- rest = _objectWithoutProperties(_ref29, _excluded29);
807
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
808
- width: size,
809
- height: size,
810
- ref: ref,
811
- xmlns: "http://www.w3.org/2000/svg",
812
- viewBox: "0 0 32 32",
813
- fill: "currentColor"
814
- }, rest), _path57 || (_path57 = /*#__PURE__*/React__default.createElement("path", {
815
- d: "M28,6V26H4V6H28m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"
816
- })), _path58 || (_path58 = /*#__PURE__*/React__default.createElement("path", {
817
- d: "M6 10H13V12H6zM6 14H10V16H6zM23 18H17a3 3 0 00-3 3v2h2V21a1 1 0 011-1h6a1 1 0 011 1v2h2V21A3 3 0 0023 18zM20 17a4 4 0 10-4-4A4 4 0 0020 17zm0-6a2 2 0 11-2 2A2 2 0 0120 11z"
818
- })), children);
819
- });
820
- if (process.env.NODE_ENV !== "production") {
821
- Identification.propTypes = iconPropTypes;
822
- }
823
- var Image = /*#__PURE__*/React__default.forwardRef(function Image(_ref30, ref) {
824
- var children = _ref30.children,
825
- _ref30$size = _ref30.size,
826
- size = _ref30$size === undefined ? 16 : _ref30$size,
827
- rest = _objectWithoutProperties(_ref30, _excluded30);
828
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
829
- width: size,
830
- height: size,
831
- ref: ref,
832
- xmlns: "http://www.w3.org/2000/svg",
833
- viewBox: "0 0 32 32",
834
- fill: "currentColor"
835
- }, rest), _path59 || (_path59 = /*#__PURE__*/React__default.createElement("path", {
836
- d: "M19,14a3,3,0,1,0-3-3A3,3,0,0,0,19,14Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,19,10Z"
837
- })), _path60 || (_path60 = /*#__PURE__*/React__default.createElement("path", {
838
- 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,4Zm0,22H6V20l5-5,5.59,5.59a2,2,0,0,0,2.82,0L21,19l5,5Zm0-4.83-3.59-3.59a2,2,0,0,0-2.82,0L18,19.17l-5.59-5.59a2,2,0,0,0-2.82,0L6,17.17V6H26Z"
839
- })), children);
840
- });
841
- if (process.env.NODE_ENV !== "production") {
842
- Image.propTypes = iconPropTypes;
843
- }
844
- var ImageCopy = /*#__PURE__*/React__default.forwardRef(function ImageCopy(_ref31, ref) {
845
- var children = _ref31.children,
846
- _ref31$size = _ref31.size,
847
- size = _ref31$size === undefined ? 16 : _ref31$size,
848
- rest = _objectWithoutProperties(_ref31, _excluded31);
849
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
850
- width: size,
851
- height: size,
852
- ref: ref,
853
- xmlns: "http://www.w3.org/2000/svg",
854
- viewBox: "0 0 32 32",
855
- fill: "currentColor"
856
- }, rest), _path61 || (_path61 = /*#__PURE__*/React__default.createElement("path", {
857
- d: "M4 22H2V4A2.0023 2.0023 0 014 2H22V4H4zM21 17a3 3 0 10-3-3A3.0033 3.0033 0 0021 17zm0-4a1 1 0 11-1 1A1.0009 1.0009 0 0121 13z"
858
- })), _path62 || (_path62 = /*#__PURE__*/React__default.createElement("path", {
859
- d: "M28,7H9A2.0025,2.0025,0,0,0,7,9V28a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V9A2.0025,2.0025,0,0,0,28,7Zm0,21H9v-6l4-3.9971,5.5859,5.586a2,2,0,0,0,2.8282,0L23,22.0034,28,27Zm0-3.8281-3.5859-3.586a2,2,0,0,0-2.8282,0L20,22.1719l-5.5859-5.586a2,2,0,0,0-2.8282,0L9,19.1719V9H28Z"
860
- })), children);
861
- });
862
- if (process.env.NODE_ENV !== "production") {
863
- ImageCopy.propTypes = iconPropTypes;
864
- }
865
- var ImageMedical = /*#__PURE__*/React__default.forwardRef(function ImageMedical(_ref32, ref) {
866
- var children = _ref32.children,
867
- _ref32$size = _ref32.size,
868
- size = _ref32$size === undefined ? 16 : _ref32$size,
869
- rest = _objectWithoutProperties(_ref32, _excluded32);
870
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
871
- width: size,
872
- height: size,
873
- ref: ref,
874
- xmlns: "http://www.w3.org/2000/svg",
875
- viewBox: "0 0 32 32",
876
- fill: "currentColor"
877
- }, rest), _path63 || (_path63 = /*#__PURE__*/React__default.createElement("path", {
878
- d: "M26,6V26H6V6H26m0-2H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"
879
- })), _path64 || (_path64 = /*#__PURE__*/React__default.createElement("path", {
880
- d: "M22 16L22 14 17 14 17 12 20 12 20 10 17 10 17 8 15 8 15 10 12 10 12 12 15 12 15 14 10 14 10 16 15 16 15 18 10 18 10 20 15 20 15 22 12 22 12 24 20 24 20 22 17 22 17 20 22 20 22 18 17 18 17 16 22 16z"
881
- })), children);
882
- });
883
- if (process.env.NODE_ENV !== "production") {
884
- ImageMedical.propTypes = iconPropTypes;
885
- }
886
- var ImageReference = /*#__PURE__*/React__default.forwardRef(function ImageReference(_ref33, ref) {
887
- var children = _ref33.children,
888
- _ref33$size = _ref33.size,
889
- size = _ref33$size === undefined ? 16 : _ref33$size,
890
- rest = _objectWithoutProperties(_ref33, _excluded33);
891
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
892
- width: size,
893
- height: size,
894
- ref: ref,
895
- xmlns: "http://www.w3.org/2000/svg",
896
- viewBox: "0 0 32 32",
897
- fill: "currentColor"
898
- }, rest), _path65 || (_path65 = /*#__PURE__*/React__default.createElement("path", {
899
- d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM19 14a3 3 0 10-3-3A3 3 0 0019 14zm0-4a1 1 0 11-1 1A1 1 0 0119 10z"
900
- })), _path66 || (_path66 = /*#__PURE__*/React__default.createElement("path", {
901
- d: "M26,4H6A2,2,0,0,0,4,6V16H6V6H26V21.17l-3.59-3.59a2,2,0,0,0-2.82,0L18,19.17,11.8308,13l-1.4151,1.4155L14,18l2.59,2.59a2,2,0,0,0,2.82,0L21,19l5,5v2H16v2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Z"
902
- })), children);
903
- });
904
- if (process.env.NODE_ENV !== "production") {
905
- ImageReference.propTypes = iconPropTypes;
906
- }
907
- var ImageSearch = /*#__PURE__*/React__default.forwardRef(function ImageSearch(_ref34, ref) {
908
- var children = _ref34.children,
909
- _ref34$size = _ref34.size,
910
- size = _ref34$size === undefined ? 16 : _ref34$size,
911
- rest = _objectWithoutProperties(_ref34, _excluded34);
912
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
913
- width: size,
914
- height: size,
915
- ref: ref,
916
- xmlns: "http://www.w3.org/2000/svg",
917
- viewBox: "0 0 32 32",
918
- fill: "currentColor"
919
- }, rest), _path67 || (_path67 = /*#__PURE__*/React__default.createElement("path", {
920
- d: "M24 14a5.99 5.99 0 00-4.885 9.4712L14 28.5859 15.4141 30l5.1147-5.1147A5.9971 5.9971 0 1024 14zm0 10a4 4 0 114-4A4.0045 4.0045 0 0124 24zM17 12a3 3 0 10-3-3A3.0033 3.0033 0 0017 12zm0-4a1 1 0 11-1 1A1.0009 1.0009 0 0117 8z"
921
- })), _path68 || (_path68 = /*#__PURE__*/React__default.createElement("path", {
922
- d: "M12,24H4V17.9966L9,13l5.5859,5.5859L16,17.168l-5.5859-5.5855a2,2,0,0,0-2.8282,0L4,15.168V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.002,2.002,0,0,0,2,4V24a2.0023,2.0023,0,0,0,2,2h8Z"
923
- })), children);
924
- });
925
- if (process.env.NODE_ENV !== "production") {
926
- ImageSearch.propTypes = iconPropTypes;
927
- }
928
- var ImageSearchAlt = /*#__PURE__*/React__default.forwardRef(function ImageSearchAlt(_ref35, ref) {
929
- var children = _ref35.children,
930
- _ref35$size = _ref35.size,
931
- size = _ref35$size === undefined ? 16 : _ref35$size,
932
- rest = _objectWithoutProperties(_ref35, _excluded35);
933
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
934
- width: size,
935
- height: size,
936
- ref: ref,
937
- xmlns: "http://www.w3.org/2000/svg",
938
- viewBox: "0 0 32 32",
939
- fill: "currentColor"
940
- }, rest), _path69 || (_path69 = /*#__PURE__*/React__default.createElement("path", {
941
- d: "M10,16a5.9908,5.9908,0,0,0,9.4712,4.8853L24.5859,26,26,24.5859l-5.115-5.1147A5.997,5.997,0,1,0,10,16Zm2,0a4,4,0,1,1,4,4A4.0045,4.0045,0,0,1,12,16Z"
942
- })), _path70 || (_path70 = /*#__PURE__*/React__default.createElement("path", {
943
- d: "M29,7H22.54L20.83,4.45A.9946.9946,0,0,0,20,4H12a.9946.9946,0,0,0-.83.45L9.46,7H3A1.0031,1.0031,0,0,0,2,8V25a1.0031,1.0031,0,0,0,1,1h9V24H4V9h6a.9946.9946,0,0,0,.83-.45L12.54,6h6.92l1.71,2.55A.9946.9946,0,0,0,22,9h6V21h2V8A1.0031,1.0031,0,0,0,29,7Z"
944
- })), children);
945
- });
946
- if (process.env.NODE_ENV !== "production") {
947
- ImageSearchAlt.propTypes = iconPropTypes;
948
- }
949
- var WatsonHealthImageAvailabilityLocal = /*#__PURE__*/React__default.forwardRef(function WatsonHealthImageAvailabilityLocal(_ref36, ref) {
950
- var children = _ref36.children,
951
- _ref36$size = _ref36.size,
952
- size = _ref36$size === undefined ? 16 : _ref36$size,
953
- rest = _objectWithoutProperties(_ref36, _excluded36);
954
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
955
- width: size,
956
- height: size,
957
- ref: ref,
958
- xmlns: "http://www.w3.org/2000/svg",
959
- viewBox: "0 0 32 32",
960
- fill: "currentColor"
961
- }, rest), _path71 || (_path71 = /*#__PURE__*/React__default.createElement("path", {
962
- d: "M16,18c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S18.8,18,16,18z"
963
- })), _path72 || (_path72 = /*#__PURE__*/React__default.createElement("path", {
964
- d: "M16,30l-8.4-9.9c0-0.1-0.3-0.5-0.3-0.5C5.8,17.7,5,15.4,5,13C5,6.9,9.9,2,16,2s11,4.9,11,11c0,2.4-0.8,4.7-2.2,6.6l0,0 c0,0-0.3,0.4-0.3,0.4L16,30z M8.8,18.4c0,0,0.2,0.3,0.3,0.4l6.9,8.1l6.9-8.1c0-0.1,0.3-0.4,0.3-0.4C24.4,16.8,25,15,25,13 c0-5-4-9-9-9s-9,4-9,9C7,15,7.6,16.8,8.8,18.4L8.8,18.4z"
965
- })), children);
966
- });
967
- if (process.env.NODE_ENV !== "production") {
968
- WatsonHealthImageAvailabilityLocal.propTypes = iconPropTypes;
969
- }
970
- var WatsonHealthImageAvailabilityRetrieving = /*#__PURE__*/React__default.forwardRef(function WatsonHealthImageAvailabilityRetrieving(_ref37, ref) {
971
- var children = _ref37.children,
972
- _ref37$size = _ref37.size,
973
- size = _ref37$size === undefined ? 16 : _ref37$size,
974
- rest = _objectWithoutProperties(_ref37, _excluded37);
975
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
976
- width: size,
977
- height: size,
978
- ref: ref,
979
- xmlns: "http://www.w3.org/2000/svg",
980
- viewBox: "0 0 32 32",
981
- fill: "currentColor"
982
- }, rest), _path73 || (_path73 = /*#__PURE__*/React__default.createElement("path", {
983
- d: "M10 13L11.4 11.6 15 15.2 15 2 17 2 17 15.2 20.6 11.6 22 13 16 19z"
984
- })), _path74 || (_path74 = /*#__PURE__*/React__default.createElement("path", {
985
- d: "M20,2.8V5c3,1.5,5,4.5,5,8c0,2-0.6,3.8-1.8,5.4c0,0-0.2,0.3-0.3,0.4L16,26.9l-6.9-8.1c-0.1-0.1-0.3-0.4-0.3-0.4 C7.6,16.8,7,15,7,13c0-3.5,2-6.6,5-8V2.8C7.9,4.4,5,8.3,5,13c0,2.4,0.8,4.7,2.2,6.6c0,0,0.3,0.4,0.3,0.5L16,30l8.4-10 c0-0.1,0.3-0.4,0.3-0.4l0,0c1.4-1.9,2.2-4.2,2.2-6.6C27,8.3,24.1,4.4,20,2.8z"
986
- })), children);
987
- });
988
- if (process.env.NODE_ENV !== "production") {
989
- WatsonHealthImageAvailabilityRetrieving.propTypes = iconPropTypes;
990
- }
991
- var WatsonHealthImageAvailabilityUnavailable = /*#__PURE__*/React__default.forwardRef(function WatsonHealthImageAvailabilityUnavailable(_ref38, ref) {
992
- var children = _ref38.children,
993
- _ref38$size = _ref38.size,
994
- size = _ref38$size === undefined ? 16 : _ref38$size,
995
- rest = _objectWithoutProperties(_ref38, _excluded38);
996
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
997
- width: size,
998
- height: size,
999
- ref: ref,
1000
- xmlns: "http://www.w3.org/2000/svg",
1001
- viewBox: "0 0 32 32",
1002
- fill: "currentColor"
1003
- }, rest), _circle19 || (_circle19 = /*#__PURE__*/React__default.createElement("circle", {
1004
- cx: "16",
1005
- cy: "20.5",
1006
- r: "1.5"
1007
- })), _path75 || (_path75 = /*#__PURE__*/React__default.createElement("path", {
1008
- d: "M17,17h-2v-4h2c1.1,0,2-0.9,2-2s-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2v0.5h-2V11c0-2.2,1.8-4,4-4h2c2.2,0,4,1.8,4,4s-1.8,4-4,4V17 z"
1009
- })), _path76 || (_path76 = /*#__PURE__*/React__default.createElement("path", {
1010
- d: "M16,30l-8.4-9.9c0-0.1-0.3-0.5-0.3-0.5C5.8,17.7,5,15.4,5,13C5,6.9,9.9,2,16,2s11,4.9,11,11c0,2.4-0.8,4.7-2.2,6.6l0,0 c0,0-0.3,0.4-0.3,0.4L16,30z M8.8,18.4c0,0,0.2,0.3,0.3,0.4l6.9,8.1l6.9-8.1c0-0.1,0.3-0.4,0.3-0.4C24.4,16.8,25,15,25,13 c0-5-4-9-9-9s-9,4-9,9C7,15,7.6,16.8,8.8,18.4L8.8,18.4z"
1011
- })), children);
1012
- });
1013
- if (process.env.NODE_ENV !== "production") {
1014
- WatsonHealthImageAvailabilityUnavailable.propTypes = iconPropTypes;
1015
- }
1016
- var ImageService = /*#__PURE__*/React__default.forwardRef(function ImageService(_ref39, ref) {
1017
- var children = _ref39.children,
1018
- _ref39$size = _ref39.size,
1019
- size = _ref39$size === undefined ? 16 : _ref39$size,
1020
- rest = _objectWithoutProperties(_ref39, _excluded39);
1021
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1022
- width: size,
1023
- height: size,
1024
- ref: ref,
1025
- xmlns: "http://www.w3.org/2000/svg",
1026
- viewBox: "0 0 32 32",
1027
- fill: "currentColor"
1028
- }, rest), _path77 || (_path77 = /*#__PURE__*/React__default.createElement("path", {
1029
- d: "M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"
1030
- })), _circle20 || (_circle20 = /*#__PURE__*/React__default.createElement("circle", {
1031
- cx: "7",
1032
- cy: "25",
1033
- r: "1"
1034
- })), _path78 || (_path78 = /*#__PURE__*/React__default.createElement("path", {
1035
- d: "M13 4H15V12H13zM9 4H11V12H9zM21 12H19a2.0021 2.0021 0 01-2-2V6a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0121 12zM19 6v4h2V6zM21 14H23V22H21zM9 14H11V22H9zM17 22H15a2.0021 2.0021 0 01-2-2V16a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0117 22zm-2-6v4h2V16z"
1036
- })), children);
1037
- });
1038
- if (process.env.NODE_ENV !== "production") {
1039
- ImageService.propTypes = iconPropTypes;
1040
- }
1041
- var ImageStoreLocal = /*#__PURE__*/React__default.forwardRef(function ImageStoreLocal(_ref40, ref) {
1042
- var children = _ref40.children,
1043
- _ref40$size = _ref40.size,
1044
- size = _ref40$size === undefined ? 16 : _ref40$size,
1045
- rest = _objectWithoutProperties(_ref40, _excluded40);
1046
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1047
- width: size,
1048
- height: size,
1049
- ref: ref,
1050
- xmlns: "http://www.w3.org/2000/svg",
1051
- viewBox: "0 0 32 32",
1052
- fill: "currentColor"
1053
- }, rest), _path79 || (_path79 = /*#__PURE__*/React__default.createElement("path", {
1054
- strokeWidth: "0",
1055
- d: "m25,2v7h7V2h-7Zm5,5h-3v-3h3v3Z"
1056
- })), _path80 || (_path80 = /*#__PURE__*/React__default.createElement("path", {
1057
- strokeWidth: "0",
1058
- d: "m23,6h-7v12h12v-7h-5v-5Zm-2,10h-3v-3h3v3Zm5-3v3h-3v-3h3Zm-8-2v-3h3v3h-3Z"
1059
- })), _path81 || (_path81 = /*#__PURE__*/React__default.createElement("path", {
1060
- strokeWidth: "0",
1061
- d: "M26 20v2H6v-14h8v-2H6c-1.104.0011-1.999.8959-2 2v14c.0012 1.104.896 1.9987 2 2h20c1.104-.0015 1.9985-.8961 2-2v-2h-2zM2 26H30V28H2z"
1062
- })), children);
1063
- });
1064
- if (process.env.NODE_ENV !== "production") {
1065
- ImageStoreLocal.propTypes = iconPropTypes;
1066
- }
1067
- var ImportExport = /*#__PURE__*/React__default.forwardRef(function ImportExport(_ref41, ref) {
1068
- var children = _ref41.children,
1069
- _ref41$size = _ref41.size,
1070
- size = _ref41$size === undefined ? 16 : _ref41$size,
1071
- rest = _objectWithoutProperties(_ref41, _excluded41);
1072
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1073
- width: size,
1074
- height: size,
1075
- ref: ref,
1076
- xmlns: "http://www.w3.org/2000/svg",
1077
- viewBox: "0 0 32 32",
1078
- fill: "currentColor"
1079
- }, rest), _path82 || (_path82 = /*#__PURE__*/React__default.createElement("path", {
1080
- d: "M28 24v4H4V24H2v4l.0076-.0049A1.9977 1.9977 0 004 30H28a2 2 0 002-2h0V24zM27.6 14.6L24 18.2 24 4 22 4 22 18.2 18.4 14.6 17 16 23 22 29 16 27.6 14.6zM9 4L3 10 4.4 11.4 8 7.8 8 22 10 22 10 7.8 13.6 11.4 15 10 9 4z"
1081
- })), children);
1082
- });
1083
- if (process.env.NODE_ENV !== "production") {
1084
- ImportExport.propTypes = iconPropTypes;
1085
- }
1086
- var ImproveRelevance = /*#__PURE__*/React__default.forwardRef(function ImproveRelevance(_ref42, ref) {
1087
- var children = _ref42.children,
1088
- _ref42$size = _ref42.size,
1089
- size = _ref42$size === undefined ? 16 : _ref42$size,
1090
- rest = _objectWithoutProperties(_ref42, _excluded42);
1091
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1092
- width: size,
1093
- height: size,
1094
- ref: ref,
1095
- xmlns: "http://www.w3.org/2000/svg",
1096
- viewBox: "0 0 32 32",
1097
- fill: "currentColor"
1098
- }, rest), _path83 || (_path83 = /*#__PURE__*/React__default.createElement("path", {
1099
- d: "M22 26.59L19.41 24 18 25.41 22 29.41 30 21.41 28.59 20 22 26.59z"
1100
- })), _circle21 || (_circle21 = /*#__PURE__*/React__default.createElement("circle", {
1101
- cx: "16",
1102
- cy: "16",
1103
- r: "2"
1104
- })), _path84 || (_path84 = /*#__PURE__*/React__default.createElement("path", {
1105
- d: "M16,22a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z"
1106
- })), _path85 || (_path85 = /*#__PURE__*/React__default.createElement("path", {
1107
- d: "M28,16A12,12,0,1,0,16,28V26A10,10,0,1,1,26,16Z"
1108
- })), children);
1109
- });
1110
- if (process.env.NODE_ENV !== "production") {
1111
- ImproveRelevance.propTypes = iconPropTypes;
1112
- }
1113
- var InProgress = /*#__PURE__*/React__default.forwardRef(function InProgress(_ref43, ref) {
1114
- var children = _ref43.children,
1115
- _ref43$size = _ref43.size,
1116
- size = _ref43$size === undefined ? 16 : _ref43$size,
1117
- rest = _objectWithoutProperties(_ref43, _excluded43);
1118
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1119
- width: size,
1120
- height: size,
1121
- ref: ref,
1122
- xmlns: "http://www.w3.org/2000/svg",
1123
- viewBox: "0 0 32 32",
1124
- fill: "currentColor"
1125
- }, rest), _path86 || (_path86 = /*#__PURE__*/React__default.createElement("path", {
1126
- d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm0,26A12,12,0,0,1,16,4V16l8.4812,8.4814A11.9625,11.9625,0,0,1,16,28Z"
1127
- })), children);
1128
- });
1129
- if (process.env.NODE_ENV !== "production") {
1130
- InProgress.propTypes = iconPropTypes;
1131
- }
1132
- var InProgressError = /*#__PURE__*/React__default.forwardRef(function InProgressError(_ref44, ref) {
1133
- var children = _ref44.children,
1134
- _ref44$size = _ref44.size,
1135
- size = _ref44$size === undefined ? 16 : _ref44$size,
1136
- rest = _objectWithoutProperties(_ref44, _excluded44);
1137
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1138
- width: size,
1139
- height: size,
1140
- ref: ref,
1141
- xmlns: "http://www.w3.org/2000/svg",
1142
- viewBox: "0 0 32 32",
1143
- fill: "currentColor"
1144
- }, rest), _path87 || (_path87 = /*#__PURE__*/React__default.createElement("path", {
1145
- 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"
1146
- })), _path88 || (_path88 = /*#__PURE__*/React__default.createElement("path", {
1147
- d: "M14,2a12,12,0,1,0,2,23.8193v-2.021A10,10,0,1,1,14,4V14l4.343,4.3433A7.9751,7.9751,0,0,1,24,16h1.8193A11.93,11.93,0,0,0,14,2Z"
1148
- })), children);
1149
- });
1150
- if (process.env.NODE_ENV !== "production") {
1151
- InProgressError.propTypes = iconPropTypes;
1152
- }
1153
- var InProgressWarning = /*#__PURE__*/React__default.forwardRef(function InProgressWarning(_ref45, ref) {
1154
- var children = _ref45.children,
1155
- _ref45$size = _ref45.size,
1156
- size = _ref45$size === undefined ? 16 : _ref45$size,
1157
- rest = _objectWithoutProperties(_ref45, _excluded45);
1158
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1159
- width: size,
1160
- height: size,
1161
- ref: ref,
1162
- xmlns: "http://www.w3.org/2000/svg",
1163
- viewBox: "0 0 32 32",
1164
- fill: "currentColor"
1165
- }, rest), _path89 || (_path89 = /*#__PURE__*/React__default.createElement("path", {
1166
- 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"
1167
- })), _path90 || (_path90 = /*#__PURE__*/React__default.createElement("path", {
1168
- d: "M18.746,22.7993A9.999,9.999,0,1,1,14,4V14l6.0971,6.0972,1.22-2.44A2.9849,2.9849,0,0,1,24,16h1.8193A11.993,11.993,0,1,0,14,26a11.9337,11.9337,0,0,0,3.3939-.4966Z"
1169
- })), children);
1170
- });
1171
- if (process.env.NODE_ENV !== "production") {
1172
- InProgressWarning.propTypes = iconPropTypes;
1173
- }
1174
- var Incomplete = /*#__PURE__*/React__default.forwardRef(function Incomplete(_ref46, ref) {
1175
- var children = _ref46.children,
1176
- _ref46$size = _ref46.size,
1177
- size = _ref46$size === undefined ? 16 : _ref46$size,
1178
- rest = _objectWithoutProperties(_ref46, _excluded46);
1179
- if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1180
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1181
- width: size,
1182
- height: size,
1183
- ref: ref,
1184
- xmlns: "http://www.w3.org/2000/svg",
1185
- viewBox: "0 0 16 16",
1186
- fill: "currentColor"
1187
- }, rest), _path91 || (_path91 = /*#__PURE__*/React__default.createElement("path", {
1188
- d: "M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2ZM8,4a4.0045,4.0045,0,0,1,4,4H4A4.0045,4.0045,0,0,1,8,4Z"
1189
- })), children);
1190
- }
1191
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1192
- width: size,
1193
- height: size,
1194
- ref: ref,
1195
- xmlns: "http://www.w3.org/2000/svg",
1196
- viewBox: "0 0 32 32",
1197
- fill: "currentColor"
1198
- }, rest), _path92 || (_path92 = /*#__PURE__*/React__default.createElement("path", {
1199
- d: "M23.7642 6.8593l1.2851-1.5315A13.976 13.976 0 0020.8672 2.887l-.6836 1.8776A11.9729 11.9729 0 0123.7642 6.8593zM27.81 14l1.9677-.4128A13.8888 13.8888 0 0028.14 9.0457L26.4087 10A12.52 12.52 0 0127.81 14zM20.1836 27.2354l.6836 1.8776a13.976 13.976 0 004.1821-2.4408l-1.2851-1.5315A11.9729 11.9729 0 0120.1836 27.2354zM26.4087 22L28.14 23a14.14 14.14 0 001.6382-4.5872L27.81 18.0659A12.1519 12.1519 0 0126.4087 22zM16 30V2a14 14 0 000 28z"
1200
- })), children);
1201
- });
1202
- if (process.env.NODE_ENV !== "production") {
1203
- Incomplete.propTypes = iconPropTypes;
1204
- }
1205
- var IncompleteCancel = /*#__PURE__*/React__default.forwardRef(function IncompleteCancel(_ref47, ref) {
1206
- var children = _ref47.children,
1207
- _ref47$size = _ref47.size,
1208
- size = _ref47$size === undefined ? 16 : _ref47$size,
1209
- rest = _objectWithoutProperties(_ref47, _excluded47);
1210
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1211
- width: size,
1212
- height: size,
1213
- ref: ref,
1214
- xmlns: "http://www.w3.org/2000/svg",
1215
- viewBox: "0 0 32 32",
1216
- fill: "currentColor"
1217
- }, rest), _path93 || (_path93 = /*#__PURE__*/React__default.createElement("path", {
1218
- d: "M30 21.41L28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25 30 21.41zM14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14z"
1219
- })), children);
1220
- });
1221
- if (process.env.NODE_ENV !== "production") {
1222
- IncompleteCancel.propTypes = iconPropTypes;
1223
- }
1224
- var IncompleteError = /*#__PURE__*/React__default.forwardRef(function IncompleteError(_ref48, ref) {
1225
- var children = _ref48.children,
1226
- _ref48$size = _ref48.size,
1227
- size = _ref48$size === undefined ? 16 : _ref48$size,
1228
- rest = _objectWithoutProperties(_ref48, _excluded48);
1229
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1230
- width: size,
1231
- height: size,
1232
- ref: ref,
1233
- xmlns: "http://www.w3.org/2000/svg",
1234
- viewBox: "0 0 32 32",
1235
- fill: "currentColor"
1236
- }, rest), _path94 || (_path94 = /*#__PURE__*/React__default.createElement("path", {
1237
- d: "M14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14zM30 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"
1238
- })), children);
1239
- });
1240
- if (process.env.NODE_ENV !== "production") {
1241
- IncompleteError.propTypes = iconPropTypes;
1242
- }
1243
- var IncompleteWarning = /*#__PURE__*/React__default.forwardRef(function IncompleteWarning(_ref49, ref) {
1244
- var children = _ref49.children,
1245
- _ref49$size = _ref49.size,
1246
- size = _ref49$size === undefined ? 16 : _ref49$size,
1247
- rest = _objectWithoutProperties(_ref49, _excluded49);
1248
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1249
- width: size,
1250
- height: size,
1251
- ref: ref,
1252
- xmlns: "http://www.w3.org/2000/svg",
1253
- viewBox: "0 0 32 32",
1254
- fill: "currentColor"
1255
- }, rest), _path95 || (_path95 = /*#__PURE__*/React__default.createElement("path", {
1256
- d: "M14 26A12 12 0 0114 2zM17.8257 4.7642a10.0288 10.0288 0 013.2422 2.1679l1.4133-1.4135a12.0359 12.0359 0 00-3.89-2.6016zM26 14a11.93 11.93 0 00-.9167-4.5908l-1.8472.7651A9.9428 9.9428 0 0124 14zM27.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"
1257
- })), children);
1258
- });
1259
- if (process.env.NODE_ENV !== "production") {
1260
- IncompleteWarning.propTypes = iconPropTypes;
1261
- }
1262
- var IncreaseLevel = /*#__PURE__*/React__default.forwardRef(function IncreaseLevel(_ref50, ref) {
1263
- var children = _ref50.children,
1264
- _ref50$size = _ref50.size,
1265
- size = _ref50$size === undefined ? 16 : _ref50$size,
1266
- rest = _objectWithoutProperties(_ref50, _excluded50);
1267
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1268
- width: size,
1269
- height: size,
1270
- ref: ref,
1271
- xmlns: "http://www.w3.org/2000/svg",
1272
- viewBox: "0 0 32 32",
1273
- fill: "currentColor"
1274
- }, rest), _path96 || (_path96 = /*#__PURE__*/React__default.createElement("path", {
1275
- d: "M23 4L18 7.75 18 14.25 15 12 10 15.75 10 22.25 7 20 2 23.75 2 30 4 30 4 24.75 7 22.5 10 24.75 10 30 12 30 12 16.75 15 14.5 18 16.75 18 30 20 30 20 8.75 23 6.5 26 8.75 26 30 28 30 28 7.75 23 4z"
1276
- })), children);
1277
- });
1278
- if (process.env.NODE_ENV !== "production") {
1279
- IncreaseLevel.propTypes = iconPropTypes;
1280
- }
1281
- var Industry = /*#__PURE__*/React__default.forwardRef(function Industry(_ref51, ref) {
1282
- var children = _ref51.children,
1283
- _ref51$size = _ref51.size,
1284
- size = _ref51$size === undefined ? 16 : _ref51$size,
1285
- rest = _objectWithoutProperties(_ref51, _excluded51);
1286
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1287
- width: size,
1288
- height: size,
1289
- ref: ref,
1290
- xmlns: "http://www.w3.org/2000/svg",
1291
- viewBox: "0 0 32 32",
1292
- fill: "currentColor"
1293
- }, rest), _path97 || (_path97 = /*#__PURE__*/React__default.createElement("path", {
1294
- d: "M29.53,6.15a1,1,0,0,0-1,0L20,10.38V7a1,1,0,0,0-1.45-.89L10,10.38V3A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V28H30V7A1,1,0,0,0,29.53,6.15ZM22,26H18V19h4Zm6,0H24V18a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v8H4V4H8v9.62l10-5v5l10-5Z"
1295
- })), children);
1296
- });
1297
- if (process.env.NODE_ENV !== "production") {
1298
- Industry.propTypes = iconPropTypes;
1299
- }
1300
- var InfinitySymbol = /*#__PURE__*/React__default.forwardRef(function InfinitySymbol(_ref52, ref) {
1301
- var children = _ref52.children,
1302
- _ref52$size = _ref52.size,
1303
- size = _ref52$size === undefined ? 16 : _ref52$size,
1304
- rest = _objectWithoutProperties(_ref52, _excluded52);
1305
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1306
- width: size,
1307
- height: size,
1308
- ref: ref,
1309
- xmlns: "http://www.w3.org/2000/svg",
1310
- viewBox: "0 0 32 32",
1311
- fill: "currentColor"
1312
- }, rest), _path98 || (_path98 = /*#__PURE__*/React__default.createElement("path", {
1313
- d: "m23,23c-5.6558,0-7.8577-6.4109-7.9487-6.6837-.0173-.0514-1.8435-5.3163-6.0513-5.3163-2.7571,0-5,2.243-5,5s2.2429,5,5,5c1.5876,0,3.0134-.7322,4.2373-2.1764l1.5259,1.2932c-1.5989,1.8862-3.5916,2.8832-5.7632,2.8832-3.8599,0-7-3.1401-7-7s3.1401-7,7-7c5.6558,0,7.8577,6.4109,7.9487,6.6837.0173.0514,1.8435,5.3163,6.0513,5.3163,2.7571,0,5-2.243,5-5s-2.2429-5-5-5c-1.5876,0-3.0134.7322-4.2373,2.1764l-1.5259-1.2932c1.5989-1.8862,3.5916-2.8832,5.7632-2.8832,3.8599,0,7,3.1401,7,7s-3.1401,7-7,7Z"
1314
- })), children);
1315
- });
1316
- if (process.env.NODE_ENV !== "production") {
1317
- InfinitySymbol.propTypes = iconPropTypes;
1318
- }
1319
- var Information = /*#__PURE__*/React__default.forwardRef(function Information(_ref53, ref) {
1320
- var children = _ref53.children,
1321
- _ref53$size = _ref53.size,
1322
- size = _ref53$size === undefined ? 16 : _ref53$size,
1323
- rest = _objectWithoutProperties(_ref53, _excluded53);
1324
- if (size === 16 || size === "16" || size === "16px") {
1325
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1326
- width: size,
1327
- height: size,
1328
- ref: ref,
1329
- xmlns: "http://www.w3.org/2000/svg",
1330
- viewBox: "0 0 16 16",
1331
- fill: "currentColor"
1332
- }, rest), _path99 || (_path99 = /*#__PURE__*/React__default.createElement("path", {
1333
- d: "M8.5 11L8.5 6.5 6.5 6.5 6.5 7.5 7.5 7.5 7.5 11 6 11 6 12 10 12 10 11zM8 3.5c-.4 0-.8.3-.8.8S7.6 5 8 5c.4 0 .8-.3.8-.8S8.4 3.5 8 3.5z"
1334
- })), _path100 || (_path100 = /*#__PURE__*/React__default.createElement("path", {
1335
- d: "M8,15c-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S11.9,15,8,15z M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z"
1336
- })), children);
1337
- }
1338
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1339
- width: size,
1340
- height: size,
1341
- ref: ref,
1342
- xmlns: "http://www.w3.org/2000/svg",
1343
- viewBox: "0 0 32 32",
1344
- fill: "currentColor"
1345
- }, rest), _path101 || (_path101 = /*#__PURE__*/React__default.createElement("path", {
1346
- d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
1347
- })), _path102 || (_path102 = /*#__PURE__*/React__default.createElement("path", {
1348
- 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"
1349
- })), children);
1350
- });
1351
- if (process.env.NODE_ENV !== "production") {
1352
- Information.propTypes = iconPropTypes;
1353
- }
1354
- var InformationDisabled = /*#__PURE__*/React__default.forwardRef(function InformationDisabled(_ref54, ref) {
1355
- var children = _ref54.children,
1356
- _ref54$size = _ref54.size,
1357
- size = _ref54$size === undefined ? 16 : _ref54$size,
1358
- rest = _objectWithoutProperties(_ref54, _excluded54);
1359
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1360
- width: size,
1361
- height: size,
1362
- ref: ref,
1363
- xmlns: "http://www.w3.org/2000/svg",
1364
- viewBox: "0 0 32 32",
1365
- fill: "currentColor"
1366
- }, rest), _path103 || (_path103 = /*#__PURE__*/React__default.createElement("path", {
1367
- d: "M30 3.4141L28.5859 2 2 28.5859 3.4141 30l3.4433-3.4434A13.9614 13.9614 0 0026.5565 6.8574zM28 16A11.9734 11.9734 0 018.2678 25.146L15 18.4141V22H13v2h7V22H17V16.4141l8.146-8.146A11.8967 11.8967 0 0128 16zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
1368
- })), _path104 || (_path104 = /*#__PURE__*/React__default.createElement("path", {
1369
- d: "M5.67,22.0854A11.9829,11.9829,0,0,1,22.0856,5.67L23.54,4.2163A13.985,13.985,0,0,0,4.2162,23.54Z"
1370
- })), children);
1371
- });
1372
- if (process.env.NODE_ENV !== "production") {
1373
- InformationDisabled.propTypes = iconPropTypes;
1374
- }
1375
- var InformationFilled = /*#__PURE__*/React__default.forwardRef(function InformationFilled(_ref55, ref) {
1376
- var children = _ref55.children,
1377
- _ref55$size = _ref55.size,
1378
- size = _ref55$size === undefined ? 16 : _ref55$size,
1379
- rest = _objectWithoutProperties(_ref55, _excluded55);
1380
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1381
- width: size,
1382
- height: size,
1383
- ref: ref,
1384
- xmlns: "http://www.w3.org/2000/svg",
1385
- viewBox: "0 0 32 32",
1386
- fill: "currentColor"
1387
- }, rest), _path105 || (_path105 = /*#__PURE__*/React__default.createElement("path", {
1388
- fill: "none",
1389
- d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
1390
- "data-icon-path": "inner-path"
1391
- })), _path106 || (_path106 = /*#__PURE__*/React__default.createElement("path", {
1392
- d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
1393
- })), children);
1394
- });
1395
- if (process.env.NODE_ENV !== "production") {
1396
- InformationFilled.propTypes = iconPropTypes;
1397
- }
1398
- var InformationSquare = /*#__PURE__*/React__default.forwardRef(function InformationSquare(_ref56, ref) {
1399
- var children = _ref56.children,
1400
- _ref56$size = _ref56.size,
1401
- size = _ref56$size === undefined ? 16 : _ref56$size,
1402
- rest = _objectWithoutProperties(_ref56, _excluded56);
1403
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1404
- width: size,
1405
- height: size,
1406
- ref: ref,
1407
- xmlns: "http://www.w3.org/2000/svg",
1408
- viewBox: "0 0 32 32",
1409
- fill: "currentColor"
1410
- }, rest), _path107 || (_path107 = /*#__PURE__*/React__default.createElement("path", {
1411
- d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
1412
- })), _path108 || (_path108 = /*#__PURE__*/React__default.createElement("path", {
1413
- d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26V6Z"
1414
- })), children);
1415
- });
1416
- if (process.env.NODE_ENV !== "production") {
1417
- InformationSquare.propTypes = iconPropTypes;
1418
- }
1419
- var InformationSquareFilled = /*#__PURE__*/React__default.forwardRef(function InformationSquareFilled(_ref57, ref) {
1420
- var children = _ref57.children,
1421
- _ref57$size = _ref57.size,
1422
- size = _ref57$size === undefined ? 16 : _ref57$size,
1423
- rest = _objectWithoutProperties(_ref57, _excluded57);
1424
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1425
- width: size,
1426
- height: size,
1427
- ref: ref,
1428
- xmlns: "http://www.w3.org/2000/svg",
1429
- viewBox: "0 0 32 32",
1430
- fill: "currentColor"
1431
- }, rest), _path109 || (_path109 = /*#__PURE__*/React__default.createElement("path", {
1432
- fill: "none",
1433
- d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
1434
- "data-icon-path": "inner-path"
1435
- })), _path110 || (_path110 = /*#__PURE__*/React__default.createElement("path", {
1436
- 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,4ZM16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
1437
- })), children);
1438
- });
1439
- if (process.env.NODE_ENV !== "production") {
1440
- InformationSquareFilled.propTypes = iconPropTypes;
1441
- }
1442
- var InfrastructureClassic = /*#__PURE__*/React__default.forwardRef(function InfrastructureClassic(_ref58, ref) {
1443
- var children = _ref58.children,
1444
- _ref58$size = _ref58.size,
1445
- size = _ref58$size === undefined ? 16 : _ref58$size,
1446
- rest = _objectWithoutProperties(_ref58, _excluded58);
1447
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1448
- width: size,
1449
- height: size,
1450
- ref: ref,
1451
- xmlns: "http://www.w3.org/2000/svg",
1452
- viewBox: "0 0 32 32",
1453
- fill: "currentColor"
1454
- }, rest), _path111 || (_path111 = /*#__PURE__*/React__default.createElement("path", {
1455
- d: "M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z"
1456
- })), _path112 || (_path112 = /*#__PURE__*/React__default.createElement("path", {
1457
- d: "M14,25H9.5A7.4964,7.4964,0,0,1,8.1782,10.124,10,10,0,0,1,28,12H26a7.999,7.999,0,0,0-15.9507-.87l-.09.8335L9.123,12.02A5.4962,5.4962,0,0,0,9.5,23H14Z"
1458
- })), children);
1459
- });
1460
- if (process.env.NODE_ENV !== "production") {
1461
- InfrastructureClassic.propTypes = iconPropTypes;
1462
- }
1463
- var Insert = /*#__PURE__*/React__default.forwardRef(function Insert(_ref59, ref) {
1464
- var children = _ref59.children,
1465
- _ref59$size = _ref59.size,
1466
- size = _ref59$size === undefined ? 16 : _ref59$size,
1467
- rest = _objectWithoutProperties(_ref59, _excluded59);
1468
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1469
- width: size,
1470
- height: size,
1471
- ref: ref,
1472
- xmlns: "http://www.w3.org/2000/svg",
1473
- viewBox: "0 0 32 32",
1474
- fill: "currentColor"
1475
- }, rest), _path113 || (_path113 = /*#__PURE__*/React__default.createElement("path", {
1476
- d: "M2 9h9V2H2zM4 4H9V7H4zM2 19h9V12H2zm2-5H9v3H4zM2 29h9V22H2zm2-5H9v3H4zM27 9H18l3.41-3.59L20 4l-6 6 6 6 1.41-1.41L18 11h9a1 1 0 011 1V24a1 1 0 01-1 1H15v2H27a3 3 0 003-3V12A3 3 0 0027 9z"
1477
- })), children);
1478
- });
1479
- if (process.env.NODE_ENV !== "production") {
1480
- Insert.propTypes = iconPropTypes;
1481
- }
1482
- var InsertPage = /*#__PURE__*/React__default.forwardRef(function InsertPage(_ref60, ref) {
1483
- var children = _ref60.children,
1484
- _ref60$size = _ref60.size,
1485
- size = _ref60$size === undefined ? 16 : _ref60$size,
1486
- rest = _objectWithoutProperties(_ref60, _excluded60);
1487
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1488
- width: size,
1489
- height: size,
1490
- ref: ref,
1491
- xmlns: "http://www.w3.org/2000/svg",
1492
- viewBox: "0 0 32 32",
1493
- fill: "currentColor"
1494
- }, rest), _path114 || (_path114 = /*#__PURE__*/React__default.createElement("path", {
1495
- d: "M26 30H24V20H12V30H10V20a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2zM5.17 16L2 19.17 3.411 20.589 8 16 3.42 11.42 2 12.83 5.17 16zM24 14H12a2.0021 2.0021 0 01-2-2V2h2V12H24V2h2V12A2.0021 2.0021 0 0124 14z"
1496
- })), children);
1497
- });
1498
- if (process.env.NODE_ENV !== "production") {
1499
- InsertPage.propTypes = iconPropTypes;
1500
- }
1501
- var InsertSyntax = /*#__PURE__*/React__default.forwardRef(function InsertSyntax(_ref61, ref) {
1502
- var children = _ref61.children,
1503
- _ref61$size = _ref61.size,
1504
- size = _ref61$size === undefined ? 16 : _ref61$size,
1505
- rest = _objectWithoutProperties(_ref61, _excluded61);
1506
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1507
- width: size,
1508
- height: size,
1509
- ref: ref,
1510
- xmlns: "http://www.w3.org/2000/svg",
1511
- viewBox: "0 0 32 32",
1512
- fill: "currentColor"
1513
- }, rest), _path115 || (_path115 = /*#__PURE__*/React__default.createElement("path", {
1514
- d: "M20.17 16L17.59 18.58 19 20 23 16 19 12 17.58 13.41 20.17 16zM11.83 16L14.41 13.42 13 12 9 16 13 20 14.42 18.59 11.83 16z"
1515
- })), _path116 || (_path116 = /*#__PURE__*/React__default.createElement("path", {
1516
- d: "M27,22.142V9.858A3.9916,3.9916,0,1,0,22.142,5H9.858A3.9916,3.9916,0,1,0,5,9.858V22.142A3.9916,3.9916,0,1,0,9.858,27H22.142A3.9916,3.9916,0,1,0,27,22.142ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm16.142-3H9.858A3.9937,3.9937,0,0,0,7,22.142V9.858A3.9947,3.9947,0,0,0,9.858,7H22.142A3.9937,3.9937,0,0,0,25,9.858V22.142A3.9931,3.9931,0,0,0,22.142,25ZM26,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z"
1517
- })), children);
1518
- });
1519
- if (process.env.NODE_ENV !== "production") {
1520
- InsertSyntax.propTypes = iconPropTypes;
1521
- }
1522
- var Inspection = /*#__PURE__*/React__default.forwardRef(function Inspection(_ref62, ref) {
1523
- var children = _ref62.children,
1524
- _ref62$size = _ref62.size,
1525
- size = _ref62$size === undefined ? 16 : _ref62$size,
1526
- rest = _objectWithoutProperties(_ref62, _excluded62);
1527
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1528
- width: size,
1529
- height: size,
1530
- ref: ref,
1531
- xmlns: "http://www.w3.org/2000/svg",
1532
- viewBox: "0 0 32 32",
1533
- fill: "currentColor"
1534
- }, rest), _path117 || (_path117 = /*#__PURE__*/React__default.createElement("path", {
1535
- d: "M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z"
1536
- })), _path118 || (_path118 = /*#__PURE__*/React__default.createElement("path", {
1537
- d: "M30,15H27.9492A12.0071,12.0071,0,0,0,17,4.0508V2H15V4.0508A12.0071,12.0071,0,0,0,4.0508,15H2v2H4.0508A12.0071,12.0071,0,0,0,15,27.9492V30h2V27.9492A12.0071,12.0071,0,0,0,27.9492,17H30ZM17,25.9492V23H15v2.9492A10.0166,10.0166,0,0,1,6.0508,17H9V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V9h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H23v2h2.949A10.0165,10.0165,0,0,1,17,25.9492Z"
1538
- })), children);
1539
- });
1540
- if (process.env.NODE_ENV !== "production") {
1541
- Inspection.propTypes = iconPropTypes;
1542
- }
1543
- var InstanceBx = /*#__PURE__*/React__default.forwardRef(function InstanceBx(_ref63, ref) {
1544
- var children = _ref63.children,
1545
- _ref63$size = _ref63.size,
1546
- size = _ref63$size === undefined ? 16 : _ref63$size,
1547
- rest = _objectWithoutProperties(_ref63, _excluded63);
1548
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1549
- width: size,
1550
- height: size,
1551
- ref: ref,
1552
- xmlns: "http://www.w3.org/2000/svg",
1553
- viewBox: "0 0 32 32",
1554
- fill: "currentColor"
1555
- }, rest), _path119 || (_path119 = /*#__PURE__*/React__default.createElement("path", {
1556
- d: "M12 5A3.0033 3.0033 0 009 2H4V15H9a3.0033 3.0033 0 003-3V10.5a2.977 2.977 0 00-.78-2 2.9768 2.9768 0 00.78-2zM6 4H9a1.0013 1.0013 0 011 1V6.5513A.9587.9587 0 019 7.5H6zm4 8a1.0009 1.0009 0 01-1 1H6V9.5H9a1.0009 1.0009 0 011 1zM22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5z"
1557
- })), _circle22 || (_circle22 = /*#__PURE__*/React__default.createElement("circle", {
1558
- cx: "9",
1559
- cy: "27",
1560
- r: "1"
1561
- })), _path120 || (_path120 = /*#__PURE__*/React__default.createElement("path", {
1562
- d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
1563
- })), children);
1564
- });
1565
- if (process.env.NODE_ENV !== "production") {
1566
- InstanceBx.propTypes = iconPropTypes;
1567
- }
1568
- var InstanceClassic = /*#__PURE__*/React__default.forwardRef(function InstanceClassic(_ref64, ref) {
1569
- var children = _ref64.children,
1570
- _ref64$size = _ref64.size,
1571
- size = _ref64$size === undefined ? 16 : _ref64$size,
1572
- rest = _objectWithoutProperties(_ref64, _excluded64);
1573
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1574
- width: size,
1575
- height: size,
1576
- ref: ref,
1577
- xmlns: "http://www.w3.org/2000/svg",
1578
- viewBox: "0 0 32 32",
1579
- fill: "currentColor"
1580
- }, rest), _path121 || (_path121 = /*#__PURE__*/React__default.createElement("path", {
1581
- d: "M23.5,21H23V19h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,19H9v2H8.5A6.4973,6.4973,0,0,1,7.2,8.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,21Z"
1582
- })), _circle23 || (_circle23 = /*#__PURE__*/React__default.createElement("circle", {
1583
- cx: "9",
1584
- cy: "27",
1585
- r: "1"
1586
- })), _path122 || (_path122 = /*#__PURE__*/React__default.createElement("path", {
1587
- d: "M26,23H17V15.83l2.59,2.58L21,17l-5-5-5,5,1.41,1.41L15,15.83V23H6a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V25A2.0023,2.0023,0,0,0,26,23Zm0,6H6V25H26Z"
1588
- })), children);
1589
- });
1590
- if (process.env.NODE_ENV !== "production") {
1591
- InstanceClassic.propTypes = iconPropTypes;
1592
- }
1593
- var InstanceCx = /*#__PURE__*/React__default.forwardRef(function InstanceCx(_ref65, ref) {
1594
- var children = _ref65.children,
1595
- _ref65$size = _ref65.size,
1596
- size = _ref65$size === undefined ? 16 : _ref65$size,
1597
- rest = _objectWithoutProperties(_ref65, _excluded65);
1598
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1599
- width: size,
1600
- height: size,
1601
- ref: ref,
1602
- xmlns: "http://www.w3.org/2000/svg",
1603
- viewBox: "0 0 32 32",
1604
- fill: "currentColor"
1605
- }, rest), _circle24 || (_circle24 = /*#__PURE__*/React__default.createElement("circle", {
1606
- cx: "9",
1607
- cy: "27",
1608
- r: "1"
1609
- })), _path123 || (_path123 = /*#__PURE__*/React__default.createElement("path", {
1610
- d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM12 15H6a2.0023 2.0023 0 01-2-2V4A2.002 2.002 0 016 2h6V4H6v9h6zM2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
1611
- })), children);
1612
- });
1613
- if (process.env.NODE_ENV !== "production") {
1614
- InstanceCx.propTypes = iconPropTypes;
1615
- }
1616
- var InstanceMx = /*#__PURE__*/React__default.forwardRef(function InstanceMx(_ref66, ref) {
1617
- var children = _ref66.children,
1618
- _ref66$size = _ref66.size,
1619
- size = _ref66$size === undefined ? 16 : _ref66$size,
1620
- rest = _objectWithoutProperties(_ref66, _excluded66);
1621
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1622
- width: size,
1623
- height: size,
1624
- ref: ref,
1625
- xmlns: "http://www.w3.org/2000/svg",
1626
- viewBox: "0 0 32 32",
1627
- fill: "currentColor"
1628
- }, rest), _path124 || (_path124 = /*#__PURE__*/React__default.createElement("path", {
1629
- d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM10 2L8.485 6.374 8 8 7.535 6.374 6 2 4 2 4 15 6 15 6 7.374 5.841 5.378 6.421 7.374 8 12 9.579 7.374 10.159 5.374 10 7.374 10 15 12 15 12 2 10 2z"
1630
- })), _circle25 || (_circle25 = /*#__PURE__*/React__default.createElement("circle", {
1631
- cx: "9",
1632
- cy: "27",
1633
- r: "1"
1634
- })), _path125 || (_path125 = /*#__PURE__*/React__default.createElement("path", {
1635
- d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
1636
- })), children);
1637
- });
1638
- if (process.env.NODE_ENV !== "production") {
1639
- InstanceMx.propTypes = iconPropTypes;
1640
- }
1641
- var InstanceVirtual = /*#__PURE__*/React__default.forwardRef(function InstanceVirtual(_ref67, ref) {
1642
- var children = _ref67.children,
1643
- _ref67$size = _ref67.size,
1644
- size = _ref67$size === undefined ? 16 : _ref67$size,
1645
- rest = _objectWithoutProperties(_ref67, _excluded67);
1646
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1647
- width: size,
1648
- height: size,
1649
- ref: ref,
1650
- xmlns: "http://www.w3.org/2000/svg",
1651
- viewBox: "0 0 32 32",
1652
- fill: "currentColor"
1653
- }, rest), _circle26 || (_circle26 = /*#__PURE__*/React__default.createElement("circle", {
1654
- cx: "7",
1655
- cy: "23",
1656
- r: "1"
1657
- })), _path126 || (_path126 = /*#__PURE__*/React__default.createElement("path", {
1658
- d: "M2 6H6V8H2zM8 6H12V8H8zM14 6H18V8H14zM20 6H24V8H20zM26 6H30V8H26zM28 28H4a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 28zM4 20v6H28V20zM2 12H30V14H2z"
1659
- })), children);
1660
- });
1661
- if (process.env.NODE_ENV !== "production") {
1662
- InstanceVirtual.propTypes = iconPropTypes;
1663
- }
1664
- var Integration = /*#__PURE__*/React__default.forwardRef(function Integration(_ref68, ref) {
1665
- var children = _ref68.children,
1666
- _ref68$size = _ref68.size,
1667
- size = _ref68$size === undefined ? 16 : _ref68$size,
1668
- rest = _objectWithoutProperties(_ref68, _excluded68);
1669
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1670
- width: size,
1671
- height: size,
1672
- ref: ref,
1673
- xmlns: "http://www.w3.org/2000/svg",
1674
- viewBox: "0 0 32 32",
1675
- fill: "currentColor"
1676
- }, rest), _path127 || (_path127 = /*#__PURE__*/React__default.createElement("path", {
1677
- d: "M29.88,15.52l-6-11A1,1,0,0,0,23,4H9a1,1,0,0,0-.88.52l-6,11a1,1,0,0,0,0,1l6,11A1,1,0,0,0,9,28H23a1,1,0,0,0,.88-.52l6-11A1,1,0,0,0,29.88,15.52ZM22.93,7l4.39,8h-9.5ZM16,14.14,10.82,6H21.18ZM9.07,7l5.11,8H4.68ZM4.68,17h9.5L9.07,25ZM16,17.86,21.18,26H10.82ZM22.93,25l-5.11-8h9.5Z"
1678
- })), children);
1679
- });
1680
- if (process.env.NODE_ENV !== "production") {
1681
- Integration.propTypes = iconPropTypes;
1682
- }
1683
- var IntentRequestActive = /*#__PURE__*/React__default.forwardRef(function IntentRequestActive(_ref69, ref) {
1684
- var children = _ref69.children,
1685
- _ref69$size = _ref69.size,
1686
- size = _ref69$size === undefined ? 16 : _ref69$size,
1687
- rest = _objectWithoutProperties(_ref69, _excluded69);
1688
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1689
- width: size,
1690
- height: size,
1691
- ref: ref,
1692
- xmlns: "http://www.w3.org/2000/svg",
1693
- viewBox: "0 0 32 32",
1694
- fill: "currentColor"
1695
- }, rest), _path128 || (_path128 = /*#__PURE__*/React__default.createElement("path", {
1696
- d: "M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z"
1697
- })), _path129 || (_path129 = /*#__PURE__*/React__default.createElement("path", {
1698
- d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
1699
- })), children);
1700
- });
1701
- if (process.env.NODE_ENV !== "production") {
1702
- IntentRequestActive.propTypes = iconPropTypes;
1703
- }
1704
- var IntentRequestCreate = /*#__PURE__*/React__default.forwardRef(function IntentRequestCreate(_ref70, ref) {
1705
- var children = _ref70.children,
1706
- _ref70$size = _ref70.size,
1707
- size = _ref70$size === undefined ? 16 : _ref70$size,
1708
- rest = _objectWithoutProperties(_ref70, _excluded70);
1709
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1710
- width: size,
1711
- height: size,
1712
- ref: ref,
1713
- xmlns: "http://www.w3.org/2000/svg",
1714
- viewBox: "0 0 32 32",
1715
- fill: "currentColor"
1716
- }, rest), _path130 || (_path130 = /*#__PURE__*/React__default.createElement("path", {
1717
- d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z"
1718
- })), _path131 || (_path131 = /*#__PURE__*/React__default.createElement("path", {
1719
- d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
1720
- })), children);
1721
- });
1722
- if (process.env.NODE_ENV !== "production") {
1723
- IntentRequestCreate.propTypes = iconPropTypes;
1724
- }
1725
- var IntentRequestHeal = /*#__PURE__*/React__default.forwardRef(function IntentRequestHeal(_ref71, ref) {
1726
- var children = _ref71.children,
1727
- _ref71$size = _ref71.size,
1728
- size = _ref71$size === undefined ? 16 : _ref71$size,
1729
- rest = _objectWithoutProperties(_ref71, _excluded71);
1730
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1731
- width: size,
1732
- height: size,
1733
- ref: ref,
1734
- xmlns: "http://www.w3.org/2000/svg",
1735
- viewBox: "0 0 32 32",
1736
- fill: "currentColor"
1737
- }, rest), _path132 || (_path132 = /*#__PURE__*/React__default.createElement("path", {
1738
- d: "M27,20c-0.8,0-1.5,0.3-2.1,0.9l-0.4,0.5l-0.4-0.5C23.5,20.3,22.7,20,22,20s-1.5,0.3-2.1,0.9c-1.2,1.2-1.2,3.1,0,4.3l4.6,4.8 l4.6-4.8c1.2-1.2,1.2-3.1,0-4.3C28.6,20.3,27.8,20,27,20L27,20z"
1739
- })), _path133 || (_path133 = /*#__PURE__*/React__default.createElement("path", {
1740
- d: "M16.6,28.6L4,16L16,4l12.6,12.6l1.4-1.4L17.5,2.6c-0.8-0.8-2.1-0.8-2.9,0L2.6,14.5c-0.8,0.8-0.8,2.1,0,2.9L15.1,30 L16.6,28.6z"
1741
- })), children);
1742
- });
1743
- if (process.env.NODE_ENV !== "production") {
1744
- IntentRequestHeal.propTypes = iconPropTypes;
1745
- }
1746
- var IntentRequestInactive = /*#__PURE__*/React__default.forwardRef(function IntentRequestInactive(_ref72, ref) {
1747
- var children = _ref72.children,
1748
- _ref72$size = _ref72.size,
1749
- size = _ref72$size === undefined ? 16 : _ref72$size,
1750
- rest = _objectWithoutProperties(_ref72, _excluded72);
1751
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1752
- width: size,
1753
- height: size,
1754
- ref: ref,
1755
- xmlns: "http://www.w3.org/2000/svg",
1756
- viewBox: "0 0 32 32",
1757
- fill: "currentColor"
1758
- }, rest), _circle27 || (_circle27 = /*#__PURE__*/React__default.createElement("circle", {
1759
- cx: "18.5",
1760
- cy: "22.5",
1761
- r: "1.5"
1762
- })), _circle28 || (_circle28 = /*#__PURE__*/React__default.createElement("circle", {
1763
- cx: "23.5",
1764
- cy: "22.5",
1765
- r: "1.5"
1766
- })), _circle29 || (_circle29 = /*#__PURE__*/React__default.createElement("circle", {
1767
- cx: "28.5",
1768
- cy: "22.5",
1769
- r: "1.5"
1770
- })), _path134 || (_path134 = /*#__PURE__*/React__default.createElement("path", {
1771
- d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
1772
- })), children);
1773
- });
1774
- if (process.env.NODE_ENV !== "production") {
1775
- IntentRequestInactive.propTypes = iconPropTypes;
1776
- }
1777
- var IntentRequestScaleIn = /*#__PURE__*/React__default.forwardRef(function IntentRequestScaleIn(_ref73, ref) {
1778
- var children = _ref73.children,
1779
- _ref73$size = _ref73.size,
1780
- size = _ref73$size === undefined ? 16 : _ref73$size,
1781
- rest = _objectWithoutProperties(_ref73, _excluded73);
1782
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1783
- width: size,
1784
- height: size,
1785
- ref: ref,
1786
- xmlns: "http://www.w3.org/2000/svg",
1787
- viewBox: "0 0 32 32",
1788
- fill: "currentColor"
1789
- }, rest), _path135 || (_path135 = /*#__PURE__*/React__default.createElement("path", {
1790
- d: "M28.6 30L30 28.6 22.4 21 29 21 29 19 19 19 19 29 21 29 21 22.4zM2 28.6L3.4 30 11 22.4 11 29 13 29 13 19 3 19 3 21 9.6 21zM17 2L15 2 15 12.2 10.4 7.6 9 9 16 16 23 9 21.6 7.6 17 12.2z"
1791
- })), children);
1792
- });
1793
- if (process.env.NODE_ENV !== "production") {
1794
- IntentRequestScaleIn.propTypes = iconPropTypes;
1795
- }
1796
- var IntentRequestScaleOut = /*#__PURE__*/React__default.forwardRef(function IntentRequestScaleOut(_ref74, ref) {
1797
- var children = _ref74.children,
1798
- _ref74$size = _ref74.size,
1799
- size = _ref74$size === undefined ? 16 : _ref74$size,
1800
- rest = _objectWithoutProperties(_ref74, _excluded74);
1801
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1802
- width: size,
1803
- height: size,
1804
- ref: ref,
1805
- xmlns: "http://www.w3.org/2000/svg",
1806
- viewBox: "0 0 32 32",
1807
- fill: "currentColor"
1808
- }, rest), _path136 || (_path136 = /*#__PURE__*/React__default.createElement("path", {
1809
- d: "M19 20.4L20.4 19 28 26.6 28 20 30 20 30 30 20 30 20 28 26.6 28zM13 20.4L11.6 19 4 26.6 4 20 2 20 2 30 12 30 12 28 5.4 28zM17 16L15 16 15 5.8 10.4 10.4 9 9 16 2 23 9 21.6 10.4 17 5.8z"
1810
- })), children);
1811
- });
1812
- if (process.env.NODE_ENV !== "production") {
1813
- IntentRequestScaleOut.propTypes = iconPropTypes;
1814
- }
1815
- var IntentRequestUninstall = /*#__PURE__*/React__default.forwardRef(function IntentRequestUninstall(_ref75, ref) {
1816
- var children = _ref75.children,
1817
- _ref75$size = _ref75.size,
1818
- size = _ref75$size === undefined ? 16 : _ref75$size,
1819
- rest = _objectWithoutProperties(_ref75, _excluded75);
1820
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1821
- width: size,
1822
- height: size,
1823
- ref: ref,
1824
- xmlns: "http://www.w3.org/2000/svg",
1825
- viewBox: "0 0 32 32",
1826
- fill: "currentColor"
1827
- }, rest), _path137 || (_path137 = /*#__PURE__*/React__default.createElement("path", {
1828
- d: "M30 21.4L28.6 20 25 23.6 21.4 20 20 21.4 23.6 25 20 28.6 21.4 30 25 26.4 28.6 30 30 28.6 26.4 25z"
1829
- })), _path138 || (_path138 = /*#__PURE__*/React__default.createElement("path", {
1830
- d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
1831
- })), children);
1832
- });
1833
- if (process.env.NODE_ENV !== "production") {
1834
- IntentRequestUninstall.propTypes = iconPropTypes;
1835
- }
1836
- var IntentRequestUpgrade = /*#__PURE__*/React__default.forwardRef(function IntentRequestUpgrade(_ref76, ref) {
1837
- var children = _ref76.children,
1838
- _ref76$size = _ref76.size,
1839
- size = _ref76$size === undefined ? 16 : _ref76$size,
1840
- rest = _objectWithoutProperties(_ref76, _excluded76);
1841
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1842
- width: size,
1843
- height: size,
1844
- ref: ref,
1845
- xmlns: "http://www.w3.org/2000/svg",
1846
- viewBox: "0 0 32 32",
1847
- fill: "currentColor"
1848
- }, rest), _path139 || (_path139 = /*#__PURE__*/React__default.createElement("path", {
1849
- d: "M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z"
1850
- })), _path140 || (_path140 = /*#__PURE__*/React__default.createElement("path", {
1851
- d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
1852
- })), children);
1853
- });
1854
- if (process.env.NODE_ENV !== "production") {
1855
- IntentRequestUpgrade.propTypes = iconPropTypes;
1856
- }
1857
- var Interactions = /*#__PURE__*/React__default.forwardRef(function Interactions(_ref77, ref) {
1858
- var children = _ref77.children,
1859
- _ref77$size = _ref77.size,
1860
- size = _ref77$size === undefined ? 16 : _ref77$size,
1861
- rest = _objectWithoutProperties(_ref77, _excluded77);
1862
- if (size === 16 || size === "16" || size === "16px") {
1863
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1864
- width: size,
1865
- height: size,
1866
- ref: ref,
1867
- xmlns: "http://www.w3.org/2000/svg",
1868
- viewBox: "0 0 16 16",
1869
- fill: "currentColor"
1870
- }, rest), _path141 || (_path141 = /*#__PURE__*/React__default.createElement("path", {
1871
- fillRule: "evenodd",
1872
- d: "M11,7 L11,9 L13,9 C13.5522847,9 14,9.44771525 14,10 L14,10 L14,13 C14,13.5522847 13.5522847,14 13,14 L13,14 L10,14 L10,7 L11,7 Z M5,9 C5.55228475,9 6,9.44771525 6,10 L6,10 L6,14 L3,14 C2.44771525,14 2,13.5522847 2,13 L2,13 L2,12 C2,11.4477153 2.44771525,11 3,11 L3,11 L5,11 L5,10 L2.5,10 L2.5,9 Z M13,10 L11,10 L11,13 L13,13 L13,10 Z M5,12 L3,12 L3,13 L5,13 L5,12 Z M7.912,2 L7.834,3.911 L9.628,3.248 L9.914,4.119 L8.068,4.626 L9.251,6.134 L8.523,6.667 L7.457,5.068 L6.391,6.667 L5.663,6.134 L6.846,4.626 L5,4.119 L5.286,3.248 L7.08,3.911 L7.002,2 L7.912,2 Z"
1873
- })), children);
1874
- }
1875
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1876
- width: size,
1877
- height: size,
1878
- ref: ref,
1879
- xmlns: "http://www.w3.org/2000/svg",
1880
- viewBox: "0 0 32 32",
1881
- fill: "currentColor"
1882
- }, rest), _path142 || (_path142 = /*#__PURE__*/React__default.createElement("path", {
1883
- d: "M26 18H22V14H20V28h6a2.0027 2.0027 0 002-2V20A2.0023 2.0023 0 0026 18zm-4 8V20h4v6zM20 6.076L19.256 4.219 16 5.522 16 2 14 2 14 5.523 10.744 4.22 10 6.077 13.417 7.444 10.9 10.8 12.5 12 15 8.667 17.5 12 19.1 10.8 16.583 7.443 20 6.076zM10 18H5v2h5v2H6a2 2 0 00-2 2v2a2 2 0 002 2h6V20A2.0023 2.0023 0 0010 18zm0 8H6V24h4z"
1884
- })), children);
1885
- });
1886
- if (process.env.NODE_ENV !== "production") {
1887
- Interactions.propTypes = iconPropTypes;
1888
- }
1889
- var WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React__default.forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref78, ref) {
1890
- var children = _ref78.children,
1891
- _ref78$size = _ref78.size,
1892
- size = _ref78$size === undefined ? 16 : _ref78$size,
1893
- rest = _objectWithoutProperties(_ref78, _excluded78);
1894
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1895
- width: size,
1896
- height: size,
1897
- ref: ref,
1898
- xmlns: "http://www.w3.org/2000/svg",
1899
- viewBox: "0 0 32 32",
1900
- fill: "currentColor"
1901
- }, rest), _path143 || (_path143 = /*#__PURE__*/React__default.createElement("path", {
1902
- d: "M29.4139,24,15.9989,10.5663a2.0473,2.0473,0,0,0-2.8281,0l-2.586,2.586a2.0023,2.0023,0,0,0,0,2.8283L23.9989,29.4145a2.0021,2.0021,0,0,0,2.8281,0l2.5869-2.5865a1.9993,1.9993,0,0,0,0-2.8283Zm-17.415-9.4335,2.5859-2.5859,3.5,3.5L15.498,18.0676l-3.5-3.5ZM25.413,28l-8.5009-8.5188,2.5867-2.587L28,25.4143Z"
1903
- })), _path144 || (_path144 = /*#__PURE__*/React__default.createElement("path", {
1904
- d: "M7.586 18.586H10.414V21.413999999999998H7.586z",
1905
- transform: "rotate(-45 9 20)"
1906
- })), _path145 || (_path145 = /*#__PURE__*/React__default.createElement("path", {
1907
- d: "M18.586 7.586H21.413999999999998V10.414H18.586z",
1908
- transform: "rotate(-45 20 9)"
1909
- })), _path146 || (_path146 = /*#__PURE__*/React__default.createElement("path", {
1910
- d: "M7.586 7.586H10.414V10.414H7.586z",
1911
- transform: "rotate(-45 9 9)"
1912
- })), _path147 || (_path147 = /*#__PURE__*/React__default.createElement("path", {
1913
- d: "M11 2L2 2 2 11 4 11 4 4 11 4 11 2z"
1914
- })), children);
1915
- });
1916
- if (process.env.NODE_ENV !== "production") {
1917
- WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypes;
1918
- }
1919
- var InterfaceUsage = /*#__PURE__*/React__default.forwardRef(function InterfaceUsage(_ref79, ref) {
1920
- var children = _ref79.children,
1921
- _ref79$size = _ref79.size,
1922
- size = _ref79$size === undefined ? 16 : _ref79$size,
1923
- rest = _objectWithoutProperties(_ref79, _excluded79);
1924
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1925
- width: size,
1926
- height: size,
1927
- ref: ref,
1928
- xmlns: "http://www.w3.org/2000/svg",
1929
- viewBox: "0 0 32 32",
1930
- fill: "currentColor"
1931
- }, rest), _path148 || (_path148 = /*#__PURE__*/React__default.createElement("path", {
1932
- strokeWidth: "0",
1933
- d: "M18.3242 11.7334v1.29h-1.3242v1.7368h1.3242v7.2397h2.2012v-7.2397h1.8398v-1.7368h-1.8398v-1.9951h1.8398v-1.7539h-1.5649c-1.6167 0-2.4761.877-2.4761 2.459zM10 11.8193L11.582 11.8193 11.582 20.1772 10 20.1772 10 22 15.4516 22 15.4516 20.1772 13.8525 20.1772 13.8525 11.8193 15.4516 11.8193 15.4516 9.9966 10 9.9966 10 11.8193z"
1934
- })), _path149 || (_path149 = /*#__PURE__*/React__default.createElement("path", {
1935
- strokeWidth: "0",
1936
- d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
1937
- })), children);
1938
- });
1939
- if (process.env.NODE_ENV !== "production") {
1940
- InterfaceUsage.propTypes = iconPropTypes;
1941
- }
1942
- var Intersect = /*#__PURE__*/React__default.forwardRef(function Intersect(_ref80, ref) {
1943
- var children = _ref80.children,
1944
- _ref80$size = _ref80.size,
1945
- size = _ref80$size === undefined ? 16 : _ref80$size,
1946
- rest = _objectWithoutProperties(_ref80, _excluded80);
1947
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1948
- width: size,
1949
- height: size,
1950
- ref: ref,
1951
- xmlns: "http://www.w3.org/2000/svg",
1952
- viewBox: "0 0 32 32",
1953
- fill: "currentColor"
1954
- }, rest), _path150 || (_path150 = /*#__PURE__*/React__default.createElement("path", {
1955
- d: "M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z"
1956
- })), _path151 || (_path151 = /*#__PURE__*/React__default.createElement("path", {
1957
- d: "M28,8H24V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V22a2.0023,2.0023,0,0,0,2,2H8v4a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V10A2.0023,2.0023,0,0,0,28,8Zm0,20H10V24h4V22H10V18H8v4H4V4H22V8H18v2h4v4h2V10h4Z"
1958
- })), children);
1959
- });
1960
- if (process.env.NODE_ENV !== "production") {
1961
- Intersect.propTypes = iconPropTypes;
1962
- }
1963
- var IntrusionPrevention = /*#__PURE__*/React__default.forwardRef(function IntrusionPrevention(_ref81, ref) {
1964
- var children = _ref81.children,
1965
- _ref81$size = _ref81.size,
1966
- size = _ref81$size === undefined ? 16 : _ref81$size,
1967
- rest = _objectWithoutProperties(_ref81, _excluded81);
1968
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1969
- width: size,
1970
- height: size,
1971
- ref: ref,
1972
- xmlns: "http://www.w3.org/2000/svg",
1973
- viewBox: "0 0 32 32",
1974
- fill: "currentColor"
1975
- }, rest), _circle30 || (_circle30 = /*#__PURE__*/React__default.createElement("circle", {
1976
- cx: "22",
1977
- cy: "23.887",
1978
- r: "2"
1979
- })), _path152 || (_path152 = /*#__PURE__*/React__default.createElement("path", {
1980
- d: "M29.7769 23.4785A8.64 8.64 0 0022 18a8.64 8.64 0 00-7.7769 5.4785L14 24l.2231.5215A8.64 8.64 0 0022 30a8.64 8.64 0 007.7769-5.4785L30 24zM22 28a4 4 0 114-4A4.0045 4.0045 0 0122 28zM25 10H4A2.0021 2.0021 0 012 8V4A2.0021 2.0021 0 014 2H25a2.0021 2.0021 0 012 2V8A2.0021 2.0021 0 0125 10zM4 4V8H25V4zM12 28H4V24h8V22H4a2.0023 2.0023 0 00-2 2v4a2.0023 2.0023 0 002 2h8z"
1981
- })), _path153 || (_path153 = /*#__PURE__*/React__default.createElement("path", {
1982
- d: "M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h5V18H7V14H28l.0007,2H30V14A2.0023,2.0023,0,0,0,28,12Z"
1983
- })), children);
1984
- });
1985
- if (process.env.NODE_ENV !== "production") {
1986
- IntrusionPrevention.propTypes = iconPropTypes;
1987
- }
1988
- var InventoryManagement = /*#__PURE__*/React__default.forwardRef(function InventoryManagement(_ref82, ref) {
1989
- var children = _ref82.children,
1990
- _ref82$size = _ref82.size,
1991
- size = _ref82$size === undefined ? 16 : _ref82$size,
1992
- rest = _objectWithoutProperties(_ref82, _excluded82);
1993
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
1994
- width: size,
1995
- height: size,
1996
- ref: ref,
1997
- xmlns: "http://www.w3.org/2000/svg",
1998
- viewBox: "0 0 32 32",
1999
- fill: "currentColor"
2000
- }, rest), _path154 || (_path154 = /*#__PURE__*/React__default.createElement("path", {
2001
- d: "M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z"
2002
- })), _path155 || (_path155 = /*#__PURE__*/React__default.createElement("path", {
2003
- d: "M17,24H4V10H28v5h2V10a2.0023,2.0023,0,0,0-2-2H22V4a2.0023,2.0023,0,0,0-2-2H12a2.002,2.002,0,0,0-2,2V8H4a2.002,2.002,0,0,0-2,2V24a2.0023,2.0023,0,0,0,2,2H17ZM12,4h8V8H12Z"
2004
- })), children);
2005
- });
2006
- if (process.env.NODE_ENV !== "production") {
2007
- InventoryManagement.propTypes = iconPropTypes;
2008
- }
2009
- var IotConnect = /*#__PURE__*/React__default.forwardRef(function IotConnect(_ref83, ref) {
2010
- var children = _ref83.children,
2011
- _ref83$size = _ref83.size,
2012
- size = _ref83$size === undefined ? 16 : _ref83$size,
2013
- rest = _objectWithoutProperties(_ref83, _excluded83);
2014
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2015
- width: size,
2016
- height: size,
2017
- ref: ref,
2018
- xmlns: "http://www.w3.org/2000/svg",
2019
- viewBox: "0 0 32 32",
2020
- fill: "currentColor"
2021
- }, rest), _path156 || (_path156 = /*#__PURE__*/React__default.createElement("path", {
2022
- d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
2023
- })), _path157 || (_path157 = /*#__PURE__*/React__default.createElement("path", {
2024
- d: "M26,2a4.0042,4.0042,0,0,0-4,4,3.9556,3.9556,0,0,0,.5668,2.0192L19.5859,11H11V21H21V12.4141l2.9808-2.9808A3.9553,3.9553,0,0,0,26,10a4,4,0,0,0,0-8ZM19,19H13V13h6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z"
2025
- })), children);
2026
- });
2027
- if (process.env.NODE_ENV !== "production") {
2028
- IotConnect.propTypes = iconPropTypes;
2029
- }
2030
- var IotPlatform = /*#__PURE__*/React__default.forwardRef(function IotPlatform(_ref84, ref) {
2031
- var children = _ref84.children,
2032
- _ref84$size = _ref84.size,
2033
- size = _ref84$size === undefined ? 16 : _ref84$size,
2034
- rest = _objectWithoutProperties(_ref84, _excluded84);
2035
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2036
- width: size,
2037
- height: size,
2038
- ref: ref,
2039
- xmlns: "http://www.w3.org/2000/svg",
2040
- viewBox: "0 0 32 32",
2041
- fill: "currentColor"
2042
- }, rest), _path158 || (_path158 = /*#__PURE__*/React__default.createElement("path", {
2043
- d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
2044
- })), _path159 || (_path159 = /*#__PURE__*/React__default.createElement("path", {
2045
- d: "M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z"
2046
- })), _path160 || (_path160 = /*#__PURE__*/React__default.createElement("path", {
2047
- d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z"
2048
- })), children);
2049
- });
2050
- if (process.env.NODE_ENV !== "production") {
2051
- IotPlatform.propTypes = iconPropTypes;
2052
- }
2053
- var Ip = /*#__PURE__*/React__default.forwardRef(function Ip(_ref85, ref) {
2054
- var children = _ref85.children,
2055
- _ref85$size = _ref85.size,
2056
- size = _ref85$size === undefined ? 16 : _ref85$size,
2057
- rest = _objectWithoutProperties(_ref85, _excluded85);
2058
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2059
- width: size,
2060
- height: size,
2061
- ref: ref,
2062
- xmlns: "http://www.w3.org/2000/svg",
2063
- viewBox: "0 0 32 32",
2064
- fill: "currentColor"
2065
- }, rest), _path161 || (_path161 = /*#__PURE__*/React__default.createElement("path", {
2066
- strokeWidth: "0",
2067
- d: "M19 23h-2v-14h6c1.103 0 2 .897 2 2v5c0 1.103-.897 2-2 2h-4v5zm0-7h4v-5.0015h-4v5.0015zM7 11L10 11 10 21 7 21 7 23 15 23 15 21 12 21 12 11 15 11 15 9 7 9 7 11z"
2068
- })), children);
2069
- });
2070
- if (process.env.NODE_ENV !== "production") {
2071
- Ip.propTypes = iconPropTypes;
2072
- }
2073
- var Iso = /*#__PURE__*/React__default.forwardRef(function Iso(_ref86, ref) {
2074
- var children = _ref86.children,
2075
- _ref86$size = _ref86.size,
2076
- size = _ref86$size === undefined ? 16 : _ref86$size,
2077
- rest = _objectWithoutProperties(_ref86, _excluded86);
2078
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2079
- width: size,
2080
- height: size,
2081
- ref: ref,
2082
- xmlns: "http://www.w3.org/2000/svg",
2083
- viewBox: "0 0 32 32",
2084
- fill: "currentColor"
2085
- }, rest), _path162 || (_path162 = /*#__PURE__*/React__default.createElement("path", {
2086
- d: "M28 23H24a2 2 0 01-2-2V11a2 2 0 012-2h4a2 2 0 012 2V21A2 2 0 0128 23zM24 11V21h4V11zM18 23H12V21h6V17H14a2 2 0 01-2-2V11a2 2 0 012-2h6v2H14v4h4a2 2 0 012 2v4A2 2 0 0118 23zM2 11L5 11 5 21 2 21 2 23 10 23 10 21 7 21 7 11 10 11 10 9 2 9 2 11z"
2087
- })), children);
2088
- });
2089
- if (process.env.NODE_ENV !== "production") {
2090
- Iso.propTypes = iconPropTypes;
2091
- }
2092
- var IsoFilled = /*#__PURE__*/React__default.forwardRef(function IsoFilled(_ref87, ref) {
2093
- var children = _ref87.children,
2094
- _ref87$size = _ref87.size,
2095
- size = _ref87$size === undefined ? 16 : _ref87$size,
2096
- rest = _objectWithoutProperties(_ref87, _excluded87);
2097
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2098
- width: size,
2099
- height: size,
2100
- ref: ref,
2101
- xmlns: "http://www.w3.org/2000/svg",
2102
- viewBox: "0 0 32 32",
2103
- fill: "currentColor"
2104
- }, rest), _path163 || (_path163 = /*#__PURE__*/React__default.createElement("path", {
2105
- d: "M21 13H24V19H21z"
2106
- })), _path164 || (_path164 = /*#__PURE__*/React__default.createElement("path", {
2107
- 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,6ZM8,21H6V11H8Zm9-8H12v2h3a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H10V19h5V17H12a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm9,6a2,2,0,0,1-2,2H21a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2Z"
2108
- })), children);
2109
- });
2110
- if (process.env.NODE_ENV !== "production") {
2111
- IsoFilled.propTypes = iconPropTypes;
2112
- }
2113
- var IsoOutline = /*#__PURE__*/React__default.forwardRef(function IsoOutline(_ref88, ref) {
2114
- var children = _ref88.children,
2115
- _ref88$size = _ref88.size,
2116
- size = _ref88$size === undefined ? 16 : _ref88$size,
2117
- rest = _objectWithoutProperties(_ref88, _excluded88);
2118
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2119
- width: size,
2120
- height: size,
2121
- ref: ref,
2122
- xmlns: "http://www.w3.org/2000/svg",
2123
- viewBox: "0 0 32 32",
2124
- fill: "currentColor"
2125
- }, rest), _path165 || (_path165 = /*#__PURE__*/React__default.createElement("path", {
2126
- d: "M24 21H21a2 2 0 01-2-2V13a2 2 0 012-2h3a2 2 0 012 2v6A2 2 0 0124 21zm-3-8v6h3V13zM15 21H10V19h5V17H12a2 2 0 01-2-2V13a2 2 0 012-2h5v2H12v2h3a2 2 0 012 2v2A2 2 0 0115 21zM6 11H8V21H6z"
2127
- })), _path166 || (_path166 = /*#__PURE__*/React__default.createElement("path", {
2128
- 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,6ZM4,24V8H28V24Z"
2129
- })), children);
2130
- });
2131
- if (process.env.NODE_ENV !== "production") {
2132
- IsoOutline.propTypes = iconPropTypes;
2133
- }
2134
- var JobDaemon = /*#__PURE__*/React__default.forwardRef(function JobDaemon(_ref89, ref) {
2135
- var children = _ref89.children,
2136
- _ref89$size = _ref89.size,
2137
- size = _ref89$size === undefined ? 16 : _ref89$size,
2138
- rest = _objectWithoutProperties(_ref89, _excluded89);
2139
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2140
- width: size,
2141
- height: size,
2142
- ref: ref,
2143
- xmlns: "http://www.w3.org/2000/svg",
2144
- viewBox: "0 0 32 32",
2145
- fill: "currentColor"
2146
- }, rest), _path167 || (_path167 = /*#__PURE__*/React__default.createElement("path", {
2147
- d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM27,20c-1.6,0-3.1,1.4-4,2.4-.9-1-2.4-2.4-4-2.4-2.6,0-4,2-4,4s1.4,4,4,4,3.1-1.4,4-2.4c.9,1,2.4,2.4,4,2.4,2.6,0,4-2,4-4s-1.4-4-4-4ZM19,26c-1.5,0-2-1.1-2-2s.5-2,2-2,2,1.1,2.8,2c-.7.9-1.9,2-2.8,2ZM27,26c-.9,0-2-1.1-2.8-2,.7-.9,1.9-2,2.8-2,1.5,0,2,1.1,2,2s-.5,2-2,2Z"
2148
- })), children);
2149
- });
2150
- if (process.env.NODE_ENV !== "production") {
2151
- JobDaemon.propTypes = iconPropTypes;
2152
- }
2153
- var JobRun = /*#__PURE__*/React__default.forwardRef(function JobRun(_ref90, ref) {
2154
- var children = _ref90.children,
2155
- _ref90$size = _ref90.size,
2156
- size = _ref90$size === undefined ? 16 : _ref90$size,
2157
- rest = _objectWithoutProperties(_ref90, _excluded90);
2158
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2159
- width: size,
2160
- height: size,
2161
- ref: ref,
2162
- xmlns: "http://www.w3.org/2000/svg",
2163
- viewBox: "0 0 32 32",
2164
- fill: "currentColor"
2165
- }, rest), _path168 || (_path168 = /*#__PURE__*/React__default.createElement("path", {
2166
- d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM30,24l-6,6-1.4-1.4,3.6-3.6h-9.2v-2h9.2l-3.6-3.6,1.4-1.4,6,6Z"
2167
- })), children);
2168
- });
2169
- if (process.env.NODE_ENV !== "production") {
2170
- JobRun.propTypes = iconPropTypes;
2171
- }
2172
- var JoinFull = /*#__PURE__*/React__default.forwardRef(function JoinFull(_ref91, ref) {
2173
- var children = _ref91.children,
2174
- _ref91$size = _ref91.size,
2175
- size = _ref91$size === undefined ? 16 : _ref91$size,
2176
- rest = _objectWithoutProperties(_ref91, _excluded91);
2177
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2178
- width: size,
2179
- height: size,
2180
- ref: ref,
2181
- xmlns: "http://www.w3.org/2000/svg",
2182
- viewBox: "0 0 32 32",
2183
- fill: "currentColor"
2184
- }, rest), _path169 || (_path169 = /*#__PURE__*/React__default.createElement("path", {
2185
- fill: "none",
2186
- d: "M16,9.0752a7.9941,7.9941,0,0,1,0,13.85,7.9941,7.9941,0,0,1,0-13.85m0-2.2373a9.9953,9.9953,0,0,0,0,18.3242A9.9953,9.9953,0,0,0,16,6.8379Z",
2187
- "data-icon-path": "inner-path"
2188
- })), _path170 || (_path170 = /*#__PURE__*/React__default.createElement("path", {
2189
- d: "M10,16a9.9976,9.9976,0,0,1,6-9.1621,10,10,0,1,0,0,18.3242A9.9976,9.9976,0,0,1,10,16Z"
2190
- })), _path171 || (_path171 = /*#__PURE__*/React__default.createElement("path", {
2191
- d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z"
2192
- })), _path172 || (_path172 = /*#__PURE__*/React__default.createElement("path", {
2193
- d: "M20,6a9.9539,9.9539,0,0,0-4,.8379,9.9953,9.9953,0,0,1,0,18.3242A9.9988,9.9988,0,1,0,20,6Z"
2194
- })), children);
2195
- });
2196
- if (process.env.NODE_ENV !== "production") {
2197
- JoinFull.propTypes = iconPropTypes;
2198
- }
2199
- var JoinInner = /*#__PURE__*/React__default.forwardRef(function JoinInner(_ref92, ref) {
2200
- var children = _ref92.children,
2201
- _ref92$size = _ref92.size,
2202
- size = _ref92$size === undefined ? 16 : _ref92$size,
2203
- rest = _objectWithoutProperties(_ref92, _excluded92);
2204
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2205
- width: size,
2206
- height: size,
2207
- ref: ref,
2208
- xmlns: "http://www.w3.org/2000/svg",
2209
- viewBox: "0 0 32 32",
2210
- fill: "currentColor"
2211
- }, rest), _path173 || (_path173 = /*#__PURE__*/React__default.createElement("path", {
2212
- d: "M20,6a9.9355,9.9355,0,0,0-4,.8418A9.999,9.999,0,1,0,16,25.16,9.998,9.998,0,1,0,20,6ZM12,24A8,8,0,1,1,13.7573,8.2017a9.9734,9.9734,0,0,0,0,15.5986A7.9919,7.9919,0,0,1,12,24Zm8,0a7.9919,7.9919,0,0,1-1.7573-.2,9.9734,9.9734,0,0,0,0-15.5986A7.9972,7.9972,0,1,1,20,24Z"
2213
- })), children);
2214
- });
2215
- if (process.env.NODE_ENV !== "production") {
2216
- JoinInner.propTypes = iconPropTypes;
2217
- }
2218
- var JoinLeft = /*#__PURE__*/React__default.forwardRef(function JoinLeft(_ref93, ref) {
2219
- var children = _ref93.children,
2220
- _ref93$size = _ref93.size,
2221
- size = _ref93$size === undefined ? 16 : _ref93$size,
2222
- rest = _objectWithoutProperties(_ref93, _excluded93);
2223
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2224
- width: size,
2225
- height: size,
2226
- ref: ref,
2227
- xmlns: "http://www.w3.org/2000/svg",
2228
- viewBox: "0 0 32 32",
2229
- fill: "currentColor"
2230
- }, rest), _path174 || (_path174 = /*#__PURE__*/React__default.createElement("path", {
2231
- d: "M20,6a9.9272,9.9272,0,0,0-3.9968.8394,9.9758,9.9758,0,0,1,2.2451,1.36,8,8,0,1,1,0,15.6016,9.9758,9.9758,0,0,1-2.2451,1.36A9.9976,9.9976,0,1,0,20,6Z"
2232
- })), _path175 || (_path175 = /*#__PURE__*/React__default.createElement("path", {
2233
- d: "M12,16a8.01,8.01,0,0,0,6.2483,7.8008,9.9858,9.9858,0,0,0,0-15.6016A8.01,8.01,0,0,0,12,16Z"
2234
- })), _path176 || (_path176 = /*#__PURE__*/React__default.createElement("path", {
2235
- fill: "none",
2236
- d: "M12,16a8.01,8.01,0,0,1,6.2483-7.8008,9.9758,9.9758,0,0,0-2.2451-1.36,9.9909,9.9909,0,0,0,0,18.3212,9.9758,9.9758,0,0,0,2.2451-1.36A8.01,8.01,0,0,1,12,16Z",
2237
- "data-icon-path": "inner-path"
2238
- })), _path177 || (_path177 = /*#__PURE__*/React__default.createElement("path", {
2239
- d: "M10,16a10.0105,10.0105,0,0,1,6.0032-9.1606,10,10,0,1,0,0,18.3212A10.0105,10.0105,0,0,1,10,16Z"
2240
- })), children);
2241
- });
2242
- if (process.env.NODE_ENV !== "production") {
2243
- JoinLeft.propTypes = iconPropTypes;
2244
- }
2245
- var JoinOuter = /*#__PURE__*/React__default.forwardRef(function JoinOuter(_ref94, ref) {
2246
- var children = _ref94.children,
2247
- _ref94$size = _ref94.size,
2248
- size = _ref94$size === undefined ? 16 : _ref94$size,
2249
- rest = _objectWithoutProperties(_ref94, _excluded94);
2250
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2251
- width: size,
2252
- height: size,
2253
- ref: ref,
2254
- xmlns: "http://www.w3.org/2000/svg",
2255
- viewBox: "0 0 32 32",
2256
- fill: "currentColor"
2257
- }, rest), _path178 || (_path178 = /*#__PURE__*/React__default.createElement("path", {
2258
- d: "M20 6a9.9539 9.9539 0 00-4 .8379 9.9953 9.9953 0 010 18.3242A9.9988 9.9988 0 1020 6zM10 16a9.9976 9.9976 0 016-9.1621 10 10 0 100 18.3242A9.9976 9.9976 0 0110 16z"
2259
- })), children);
2260
- });
2261
- if (process.env.NODE_ENV !== "production") {
2262
- JoinOuter.propTypes = iconPropTypes;
2263
- }
2264
- var JoinRight = /*#__PURE__*/React__default.forwardRef(function JoinRight(_ref95, ref) {
2265
- var children = _ref95.children,
2266
- _ref95$size = _ref95.size,
2267
- size = _ref95$size === undefined ? 16 : _ref95$size,
2268
- rest = _objectWithoutProperties(_ref95, _excluded95);
2269
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2270
- width: size,
2271
- height: size,
2272
- ref: ref,
2273
- xmlns: "http://www.w3.org/2000/svg",
2274
- viewBox: "0 0 32 32",
2275
- fill: "currentColor"
2276
- }, rest), _path179 || (_path179 = /*#__PURE__*/React__default.createElement("path", {
2277
- d: "M20,6a9.95,9.95,0,0,0-4.0032.8394,9.9909,9.9909,0,0,1,0,18.3212A9.9988,9.9988,0,1,0,20,6Z"
2278
- })), _path180 || (_path180 = /*#__PURE__*/React__default.createElement("path", {
2279
- fill: "none",
2280
- d: "M20,16a8.01,8.01,0,0,0-6.2483-7.8008,9.9758,9.9758,0,0,1,2.2451-1.36,9.9909,9.9909,0,0,1,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A8.01,8.01,0,0,0,20,16Z",
2281
- "data-icon-path": "inner-path"
2282
- })), _path181 || (_path181 = /*#__PURE__*/React__default.createElement("path", {
2283
- d: "M10,16a9.9759,9.9759,0,0,0,3.7517,7.8008,7.9937,7.9937,0,0,0,0-15.6016A9.9759,9.9759,0,0,0,10,16Z"
2284
- })), _path182 || (_path182 = /*#__PURE__*/React__default.createElement("path", {
2285
- d: "M12,24A8,8,0,1,1,13.7517,8.1992a9.9758,9.9758,0,0,1,2.2451-1.36,10,10,0,1,0,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A7.9727,7.9727,0,0,1,12,24Z"
2286
- })), children);
2287
- });
2288
- if (process.env.NODE_ENV !== "production") {
2289
- JoinRight.propTypes = iconPropTypes;
2290
- }
2291
- var JoinNode = /*#__PURE__*/React__default.forwardRef(function JoinNode(_ref96, ref) {
2292
- var children = _ref96.children,
2293
- _ref96$size = _ref96.size,
2294
- size = _ref96$size === undefined ? 16 : _ref96$size,
2295
- rest = _objectWithoutProperties(_ref96, _excluded96);
2296
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2297
- width: size,
2298
- height: size,
2299
- ref: ref,
2300
- xmlns: "http://www.w3.org/2000/svg",
2301
- viewBox: "0 0 32 32",
2302
- fill: "currentColor"
2303
- }, rest), _path183 || (_path183 = /*#__PURE__*/React__default.createElement("path", {
2304
- strokeWidth: "0",
2305
- d: "M2 9H6V11H2zM2 21H6V23H2zM25 11L23.5859 12.4141 26.1719 15 18 15 18 4 12 4 12 9 8 9 8 11 12 11 12 21 8 21 8 23 12 23 12 28 18 28 18 17 26.1719 17 23.5859 19.5859 25 21 30 16 25 11z"
2306
- })), children);
2307
- });
2308
- if (process.env.NODE_ENV !== "production") {
2309
- JoinNode.propTypes = iconPropTypes;
2310
- }
2311
- var Jpg = /*#__PURE__*/React__default.forwardRef(function Jpg(_ref97, ref) {
2312
- var children = _ref97.children,
2313
- _ref97$size = _ref97.size,
2314
- size = _ref97$size === undefined ? 16 : _ref97$size,
2315
- rest = _objectWithoutProperties(_ref97, _excluded97);
2316
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2317
- width: size,
2318
- height: size,
2319
- ref: ref,
2320
- xmlns: "http://www.w3.org/2000/svg",
2321
- viewBox: "0 0 32 32",
2322
- fill: "currentColor"
2323
- }, rest), _path184 || (_path184 = /*#__PURE__*/React__default.createElement("path", {
2324
- d: "M30 23H24a2 2 0 01-2-2V11a2 2 0 012-2h6v2H24V21h4V17H26V15h4zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM8 23H4a2 2 0 01-2-2V19H4v2H8V9h2V21A2 2 0 018 23z"
2325
- })), children);
2326
- });
2327
- if (process.env.NODE_ENV !== "production") {
2328
- Jpg.propTypes = iconPropTypes;
2329
- }
2330
- var JsError = /*#__PURE__*/React__default.forwardRef(function JsError(_ref98, ref) {
2331
- var children = _ref98.children,
2332
- _ref98$size = _ref98.size,
2333
- size = _ref98$size === undefined ? 16 : _ref98$size,
2334
- rest = _objectWithoutProperties(_ref98, _excluded98);
2335
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2336
- width: size,
2337
- height: size,
2338
- ref: ref,
2339
- xmlns: "http://www.w3.org/2000/svg",
2340
- viewBox: "0 0 32 32",
2341
- fill: "currentColor"
2342
- }, rest), _path185 || (_path185 = /*#__PURE__*/React__default.createElement("path", {
2343
- d: "M20.3335 30h-2.667c-.9189 0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM28.3335 30h-4.3335v-2h4v-2h-2c-1.103 0-2-.897-2-2v-2.3335c0-.9189.7476-1.6665 1.6665-1.6665h4.3335v2h-4v2h2c1.103 0 2 .897 2 2v2.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM16 18c-.8284 0-1.5.6716-1.5 1.5s.6716 1.5 1.5 1.5 1.5-.6716 1.5-1.5-.6716-1.5-1.5-1.5h0zM15 7H17V16H15z"
2344
- })), _path186 || (_path186 = /*#__PURE__*/React__default.createElement("path", {
2345
- d: "m14,26h-4.5c-.3538,0-.6809-.1868-.8608-.4912L2.1392,14.5088c-.0928-.1569-.1392-.3329-.1392-.5088s.0464-.3519.1392-.5088L8.6392,2.4912c.1799-.3044.5071-.4912.8608-.4912h13c.3538,0,.6809.1868.8608.4912l6.5,11c.0928.1569.1392.3328.1392.5088s-.0464.3519-.1392.5088l-2,3.3845-1.7217-1.0173,1.6992-2.876-5.9089-10h-11.8589l-5.9089,10,5.9089,10h3.9294v2Z"
2346
- })), children);
2347
- });
2348
- if (process.env.NODE_ENV !== "production") {
2349
- JsError.propTypes = iconPropTypes;
2350
- }
2351
- var Json = /*#__PURE__*/React__default.forwardRef(function Json(_ref99, ref) {
2352
- var children = _ref99.children,
2353
- _ref99$size = _ref99.size,
2354
- size = _ref99$size === undefined ? 16 : _ref99$size,
2355
- rest = _objectWithoutProperties(_ref99, _excluded99);
2356
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2357
- width: size,
2358
- height: size,
2359
- ref: ref,
2360
- xmlns: "http://www.w3.org/2000/svg",
2361
- viewBox: "0 0 32 32",
2362
- fill: "currentColor"
2363
- }, rest), _path187 || (_path187 = /*#__PURE__*/React__default.createElement("path", {
2364
- d: "M31 11L31 21 29 21 27 15 27 21 25 21 25 11 27 11 29 17 29 11 31 11zM21.3335 21h-2.667A1.6684 1.6684 0 0117 19.3335v-6.667A1.6684 1.6684 0 0118.6665 11h2.667A1.6684 1.6684 0 0123 12.6665v6.667A1.6684 1.6684 0 0121.3335 21zM19 19h2V13H19zM13.3335 21H9V19h4V17H11a2.002 2.002 0 01-2-2V12.6665A1.6684 1.6684 0 0110.6665 11H15v2H11v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0113.3335 21zM5.3335 21H2.6665A1.6684 1.6684 0 011 19.3335V17H3v2H5V11H7v8.3335A1.6684 1.6684 0 015.3335 21z"
2365
- })), children);
2366
- });
2367
- if (process.env.NODE_ENV !== "production") {
2368
- Json.propTypes = iconPropTypes;
2369
- }
2370
- var JsonReference = /*#__PURE__*/React__default.forwardRef(function JsonReference(_ref100, ref) {
2371
- var children = _ref100.children,
2372
- _ref100$size = _ref100.size,
2373
- size = _ref100$size === undefined ? 16 : _ref100$size,
2374
- rest = _objectWithoutProperties(_ref100, _excluded100);
2375
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2376
- width: size,
2377
- height: size,
2378
- ref: ref,
2379
- xmlns: "http://www.w3.org/2000/svg",
2380
- viewBox: "0 0 32 32",
2381
- fill: "currentColor"
2382
- }, rest), _path188 || (_path188 = /*#__PURE__*/React__default.createElement("path", {
2383
- d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM29 12L27 6 25 6 25 16 27 16 27 10 29 16 31 16 31 6 29 6 29 12zM21.3335 6h-2.667A1.6683 1.6683 0 0017 7.6665v6.667A1.6684 1.6684 0 0018.6665 16h2.667A1.6683 1.6683 0 0023 14.3335V7.6665A1.6683 1.6683 0 0021.3335 6zM21 14H19V8h2zM9 7.6665V10a2.002 2.002 0 002 2h2v2H9v2h4.3335A1.6683 1.6683 0 0015 14.3335V12a2.002 2.002 0 00-2-2H11V8h4V6H10.6665A1.6683 1.6683 0 009 7.6665zM5 14H3V12H1v2.3335A1.6684 1.6684 0 002.6665 16h2.667A1.6683 1.6683 0 007 14.3335V6H5z"
2384
- })), children);
2385
- });
2386
- if (process.env.NODE_ENV !== "production") {
2387
- JsonReference.propTypes = iconPropTypes;
2388
- }
2389
- var JumpLink = /*#__PURE__*/React__default.forwardRef(function JumpLink(_ref101, ref) {
2390
- var children = _ref101.children,
2391
- _ref101$size = _ref101.size,
2392
- size = _ref101$size === undefined ? 16 : _ref101$size,
2393
- rest = _objectWithoutProperties(_ref101, _excluded101);
2394
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2395
- width: size,
2396
- height: size,
2397
- ref: ref,
2398
- xmlns: "http://www.w3.org/2000/svg",
2399
- viewBox: "0 0 32 32",
2400
- fill: "currentColor"
2401
- }, rest), _path189 || (_path189 = /*#__PURE__*/React__default.createElement("path", {
2402
- d: "M13.4141,17.5859,18,22.1719V8H8V6H18a2.0024,2.0024,0,0,1,2,2V22.1719l4.5859-4.586L26,19l-7,7-7-7Z"
2403
- })), children);
2404
- });
2405
- if (process.env.NODE_ENV !== "production") {
2406
- JumpLink.propTypes = iconPropTypes;
2407
- }
2408
- var KeepDry = /*#__PURE__*/React__default.forwardRef(function KeepDry(_ref102, ref) {
2409
- var children = _ref102.children,
2410
- _ref102$size = _ref102.size,
2411
- size = _ref102$size === undefined ? 16 : _ref102$size,
2412
- rest = _objectWithoutProperties(_ref102, _excluded102);
2413
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2414
- width: size,
2415
- height: size,
2416
- ref: ref,
2417
- xmlns: "http://www.w3.org/2000/svg",
2418
- viewBox: "0 0 32 32",
2419
- fill: "currentColor"
2420
- }, rest), _path190 || (_path190 = /*#__PURE__*/React__default.createElement("path", {
2421
- d: "M25,10a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L24.17.4141a1.0381,1.0381,0,0,1,1.6592,0L28.3154,4.11A3.9693,3.9693,0,0,1,29,6.223,3.8978,3.8978,0,0,1,25,10Zm0-7.2368L23.3438,5.2257A1.89,1.89,0,0,0,23,6.223a2.014,2.014,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"
2422
- })), _path191 || (_path191 = /*#__PURE__*/React__default.createElement("path", {
2423
- d: "M29.9854,15.83a13.9726,13.9726,0,0,0-1.8147-4.8323L26.4329,12.001a12.092,12.092,0,0,1,1.07,2.2124A5.4079,5.4079,0,0,0,26,14a6.5439,6.5439,0,0,0-3.939,1.333,14.5177,14.5177,0,0,0-3.0456-8.9341A13.8858,13.8858,0,0,0,17,4.4014V2H15V4.0464A14.3808,14.3808,0,0,0,2.0146,15.83,1,1,0,0,0,3.51,16.86,4.8551,4.8551,0,0,1,6,16a4.8653,4.8653,0,0,1,4.1406,2.5107,1.0393,1.0393,0,0,0,1.7188,0A5.02,5.02,0,0,1,15,16.1255V25.5a2.5,2.5,0,0,1-5,0V25H8v.5a4.5,4.5,0,0,0,9,0V16.1255a5.02,5.02,0,0,1,3.1406,2.3852.9994.9994,0,0,0,1.7188,0A4.8653,4.8653,0,0,1,26,16a4.8551,4.8551,0,0,1,2.49.86,1,1,0,0,0,1.4957-1.03ZM9.939,15.333A6.5439,6.5439,0,0,0,6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4413,12.4413,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333ZM16,14a6.5526,6.5526,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0564-9.1763,3.4307,2.6768,4.009,6.9487,4.0522,9.1728A6.552,6.552,0,0,0,16,14Z"
2424
- })), children);
2425
- });
2426
- if (process.env.NODE_ENV !== "production") {
2427
- KeepDry.propTypes = iconPropTypes;
2428
- }
2429
- var Key = /*#__PURE__*/React__default.forwardRef(function Key(_ref103, ref) {
2430
- var children = _ref103.children,
2431
- _ref103$size = _ref103.size,
2432
- size = _ref103$size === undefined ? 16 : _ref103$size,
2433
- rest = _objectWithoutProperties(_ref103, _excluded103);
2434
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2435
- width: size,
2436
- height: size,
2437
- ref: ref,
2438
- xmlns: "http://www.w3.org/2000/svg",
2439
- viewBox: "0 0 32 32",
2440
- fill: "currentColor"
2441
- }, rest), _path192 || (_path192 = /*#__PURE__*/React__default.createElement("path", {
2442
- strokeWidth: "0",
2443
- d: "M30 9L28.0001 9 26 16 24.0001 9 22 9 25 17.9996 25 23 27 23 27 18 27.0001 18 30 9zM21 11L21 9 13 9 13 23 21 23 21 21 15 21 15 17 20 17 20 15 15 15 15 11 21 11zM11 9L8.8941 9 5 15.5527 5 9 3 9 3 23 5 23 5 18.7062 5.9277 17.2208 8.8941 23 11 23 7.1093 15.4308 11 9z"
2444
- })), children);
2445
- });
2446
- if (process.env.NODE_ENV !== "production") {
2447
- Key.propTypes = iconPropTypes;
2448
- }
2449
- var Keyboard = /*#__PURE__*/React__default.forwardRef(function Keyboard(_ref104, ref) {
2450
- var children = _ref104.children,
2451
- _ref104$size = _ref104.size,
2452
- size = _ref104$size === undefined ? 16 : _ref104$size,
2453
- rest = _objectWithoutProperties(_ref104, _excluded104);
2454
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2455
- width: size,
2456
- height: size,
2457
- ref: ref,
2458
- xmlns: "http://www.w3.org/2000/svg",
2459
- viewBox: "0 0 32 32",
2460
- fill: "currentColor"
2461
- }, rest), _path193 || (_path193 = /*#__PURE__*/React__default.createElement("path", {
2462
- d: "M28,26H4a2,2,0,0,1-2-2V10A2,2,0,0,1,4,8H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,10V24H28V10Z"
2463
- })), _path194 || (_path194 = /*#__PURE__*/React__default.createElement("path", {
2464
- d: "M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z"
2465
- })), children);
2466
- });
2467
- if (process.env.NODE_ENV !== "production") {
2468
- Keyboard.propTypes = iconPropTypes;
2469
- }
2470
- var KeyboardOff = /*#__PURE__*/React__default.forwardRef(function KeyboardOff(_ref105, ref) {
2471
- var children = _ref105.children,
2472
- _ref105$size = _ref105.size,
2473
- size = _ref105$size === undefined ? 16 : _ref105$size,
2474
- rest = _objectWithoutProperties(_ref105, _excluded105);
2475
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2476
- width: size,
2477
- height: size,
2478
- ref: ref,
2479
- xmlns: "http://www.w3.org/2000/svg",
2480
- viewBox: "0 0 32 32",
2481
- fill: "currentColor"
2482
- }, rest), _path195 || (_path195 = /*#__PURE__*/React__default.createElement("path", {
2483
- d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z"
2484
- })), _path196 || (_path196 = /*#__PURE__*/React__default.createElement("path", {
2485
- d: "M14.2 10H28v13h2V10c0-1.1-.9-2-2-2H12.2L14.2 10zM30 28.6L3.4 2 2 3.4 6.6 8H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h20.6l4 4L30 28.6zM4 24V10h4.6l2 2H10v2h2.6l2 2H14v2h2.6l2 2H10v2h10.6l2 2H4z"
2486
- })), children);
2487
- });
2488
- if (process.env.NODE_ENV !== "production") {
2489
- KeyboardOff.propTypes = iconPropTypes;
2490
- }
2491
- var Kubelet = /*#__PURE__*/React__default.forwardRef(function Kubelet(_ref106, ref) {
2492
- var children = _ref106.children,
2493
- _ref106$size = _ref106.size,
2494
- size = _ref106$size === undefined ? 16 : _ref106$size,
2495
- rest = _objectWithoutProperties(_ref106, _excluded106);
2496
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2497
- width: size,
2498
- height: size,
2499
- ref: ref,
2500
- xmlns: "http://www.w3.org/2000/svg",
2501
- viewBox: "0 0 32 32",
2502
- fill: "currentColor"
2503
- }, rest), _path197 || (_path197 = /*#__PURE__*/React__default.createElement("path", {
2504
- strokeWidth: "0",
2505
- d: "m20.0444,27.2942l-3.0825-10.018-1.0132,3.04c-.1361.4084-.5183.6838-.9487.6838h-6s0-2,0-2h5.2793s1.772-5.3162,1.772-5.3162c.1307-.4123.5162-.6902.9487-.6838.4374.0046.8225.2891.9555.7058l3.0088,9.7783,1.0742-3.7589c.1227-.4293.5151-.7252.9615-.7252h5s0,2,0,2h-4.2456s-1.7933,6.2747-1.7933,6.2747c-.1216.4256-.5085.7207-.9511.7253h-.01c-.4389,0-.8265-.2863-.9556-.7058Z"
2506
- })), _path198 || (_path198 = /*#__PURE__*/React__default.createElement("path", {
2507
- strokeWidth: "0",
2508
- d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
2509
- })), children);
2510
- });
2511
- if (process.env.NODE_ENV !== "production") {
2512
- Kubelet.propTypes = iconPropTypes;
2513
- }
2514
- var Kubernetes = /*#__PURE__*/React__default.forwardRef(function Kubernetes(_ref107, ref) {
2515
- var children = _ref107.children,
2516
- _ref107$size = _ref107.size,
2517
- size = _ref107$size === undefined ? 16 : _ref107$size,
2518
- rest = _objectWithoutProperties(_ref107, _excluded107);
2519
- if (process.env.NODE_ENV !== "production") {
2520
- if (!didWarnAboutDeprecation["Kubernetes"]) {
2521
- didWarnAboutDeprecation["Kubernetes"] = true;
2522
- console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react.");
2523
- }
2524
- }
2525
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2526
- width: size,
2527
- height: size,
2528
- ref: ref,
2529
- xmlns: "http://www.w3.org/2000/svg",
2530
- viewBox: "0 0 32 32",
2531
- fill: "currentColor"
2532
- }, rest), _path199 || (_path199 = /*#__PURE__*/React__default.createElement("path", {
2533
- d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z"
2534
- })), children);
2535
- });
2536
- if (process.env.NODE_ENV !== "production") {
2537
- Kubernetes.propTypes = iconPropTypes;
2538
- }
2539
- var KubernetesControlPlaneNode = /*#__PURE__*/React__default.forwardRef(function KubernetesControlPlaneNode(_ref108, ref) {
2540
- var children = _ref108.children,
2541
- _ref108$size = _ref108.size,
2542
- size = _ref108$size === undefined ? 16 : _ref108$size,
2543
- rest = _objectWithoutProperties(_ref108, _excluded108);
2544
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2545
- width: size,
2546
- height: size,
2547
- ref: ref,
2548
- xmlns: "http://www.w3.org/2000/svg",
2549
- viewBox: "0 0 32 32",
2550
- fill: "currentColor"
2551
- }, rest), _path200 || (_path200 = /*#__PURE__*/React__default.createElement("path", {
2552
- d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z"
2553
- })), _path201 || (_path201 = /*#__PURE__*/React__default.createElement("path", {
2554
- d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z"
2555
- })), _path202 || (_path202 = /*#__PURE__*/React__default.createElement("path", {
2556
- fill: "none",
2557
- d: "M0 0h32v32H0z"
2558
- })), children);
2559
- });
2560
- if (process.env.NODE_ENV !== "production") {
2561
- KubernetesControlPlaneNode.propTypes = iconPropTypes;
2562
- }
2563
- var KubernetesIpAddress = /*#__PURE__*/React__default.forwardRef(function KubernetesIpAddress(_ref109, ref) {
2564
- var children = _ref109.children,
2565
- _ref109$size = _ref109.size,
2566
- size = _ref109$size === undefined ? 16 : _ref109$size,
2567
- rest = _objectWithoutProperties(_ref109, _excluded109);
2568
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2569
- width: size,
2570
- height: size,
2571
- ref: ref,
2572
- xmlns: "http://www.w3.org/2000/svg",
2573
- viewBox: "0 0 32 32",
2574
- fill: "currentColor"
2575
- }, rest), _circle31 || (_circle31 = /*#__PURE__*/React__default.createElement("circle", {
2576
- cx: "16",
2577
- cy: "9",
2578
- r: "2"
2579
- })), _circle32 || (_circle32 = /*#__PURE__*/React__default.createElement("circle", {
2580
- cx: "16",
2581
- cy: "16",
2582
- r: "2"
2583
- })), _path203 || (_path203 = /*#__PURE__*/React__default.createElement("path", {
2584
- d: "m18.8157,26c-.302-.8472-.9685-1.5137-1.8157-1.8159v-2.1841h3c.2969,0,.5781-.1318.7683-.3599l5-6c.1982-.2378.2751-.5547.2078-.8569l-2-9c-.0696-.3145-.2864-.5757-.5823-.7021l-7-3c-.1257-.0542-.2598-.0811-.3938-.0811s-.2681.0269-.3938.0811l-7.0015,3c-.2959.1265-.5127.3877-.5825.7021l-1.9985,9c-.0671.3027.0098.6191.208.8569l5,6c.1902.228.4714.3599.7683.3599h3v2.1846c-.8472.3018-1.5137.9683-1.8157,1.8154H4v2h9.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h9.1843v-2h-9.1843Zm-10.7329-11.2627l1.7808-8.02,6.1365-2.6294,6.135,2.6294,1.7822,8.02-4.3855,5.2627h-7.0635l-4.3855-5.2627Zm7.9172,13.2627c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
2585
- })), children);
2586
- });
2587
- if (process.env.NODE_ENV !== "production") {
2588
- KubernetesIpAddress.propTypes = iconPropTypes;
2589
- }
2590
- var KubernetesOperator = /*#__PURE__*/React__default.forwardRef(function KubernetesOperator(_ref110, ref) {
2591
- var children = _ref110.children,
2592
- _ref110$size = _ref110.size,
2593
- size = _ref110$size === undefined ? 16 : _ref110$size,
2594
- rest = _objectWithoutProperties(_ref110, _excluded110);
2595
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2596
- width: size,
2597
- height: size,
2598
- ref: ref,
2599
- xmlns: "http://www.w3.org/2000/svg",
2600
- viewBox: "0 0 32 32",
2601
- fill: "currentColor"
2602
- }, rest), _path204 || (_path204 = /*#__PURE__*/React__default.createElement("path", {
2603
- strokeWidth: "0",
2604
- d: "m19,21h-6c-1.1028,0-2-.8972-2-2v-6c0-1.1028.8972-2,2-2h6c1.1028,0,2,.8972,2,2v6c0,1.1028-.8972,2-2,2Zm-6-8v6h6v-6h-6Z"
2605
- })), _path205 || (_path205 = /*#__PURE__*/React__default.createElement("path", {
2606
- strokeWidth: "0",
2607
- d: "m30,16c0-7.7197-6.2803-14-14-14S2,8.2803,2,16s6.2803,14,14,14c2.7773,0,5.417-.7959,7.7012-2.3081.3948.1914.8315.3081,1.2988.3081,1.6543,0,3-1.3457,3-3,0-.4673-.1167-.9043-.3079-1.2988,1.5122-2.2842,2.3079-4.9238,2.3079-7.7012Zm-26,0c0-6.6167,5.3833-12,12-12s12,5.3833,12,12c0,2.248-.6152,4.3877-1.7744,6.2681-.375-.1689-.7881-.2681-1.2256-.2681-1.6543,0-3,1.3457-3,3,0,.4375.0991.8506.2681,1.2256-1.8801,1.1592-4.0198,1.7744-6.2681,1.7744-6.6167,0-12-5.3833-12-12Zm21,10c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
2608
- })), children);
2609
- });
2610
- if (process.env.NODE_ENV !== "production") {
2611
- KubernetesOperator.propTypes = iconPropTypes;
2612
- }
2613
- var KubernetesPod = /*#__PURE__*/React__default.forwardRef(function KubernetesPod(_ref111, ref) {
2614
- var children = _ref111.children,
2615
- _ref111$size = _ref111.size,
2616
- size = _ref111$size === undefined ? 16 : _ref111$size,
2617
- rest = _objectWithoutProperties(_ref111, _excluded111);
2618
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2619
- width: size,
2620
- height: size,
2621
- ref: ref,
2622
- xmlns: "http://www.w3.org/2000/svg",
2623
- viewBox: "0 0 32 32",
2624
- fill: "currentColor"
2625
- }, rest), _path206 || (_path206 = /*#__PURE__*/React__default.createElement("path", {
2626
- d: "m22.5046,11.6368l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"
2627
- })), _path207 || (_path207 = /*#__PURE__*/React__default.createElement("path", {
2628
- d: "m16,31c-.1741,0-.3481-.0454-.5039-.1362l-12-7c-.3071-.1792-.4961-.5081-.4961-.8638v-14c0-.3557.189-.6846.4961-.8638L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l11,6.4166-1.0078,1.7275-10.4961-6.1227-11,6.4166v12.8513l11,6.4166,11-6.4166v-7.4257h2v8c0,.3557-.189.6846-.4961.8638l-12,7c-.1558.0908-.3298.1362-.5039.1362Z"
2629
- })), children);
2630
- });
2631
- if (process.env.NODE_ENV !== "production") {
2632
- KubernetesPod.propTypes = iconPropTypes;
2633
- }
2634
- var KubernetesWorkerNode = /*#__PURE__*/React__default.forwardRef(function KubernetesWorkerNode(_ref112, ref) {
2635
- var children = _ref112.children,
2636
- _ref112$size = _ref112.size,
2637
- size = _ref112$size === undefined ? 16 : _ref112$size,
2638
- rest = _objectWithoutProperties(_ref112, _excluded112);
2639
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2640
- width: size,
2641
- height: size,
2642
- ref: ref,
2643
- xmlns: "http://www.w3.org/2000/svg",
2644
- viewBox: "0 0 32 32",
2645
- fill: "currentColor"
2646
- }, rest), _path208 || (_path208 = /*#__PURE__*/React__default.createElement("path", {
2647
- d: "M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"
2648
- })), _path209 || (_path209 = /*#__PURE__*/React__default.createElement("path", {
2649
- d: "m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"
2650
- })), _path210 || (_path210 = /*#__PURE__*/React__default.createElement("path", {
2651
- fill: "none",
2652
- d: "M0 0h32v32H0z"
2653
- })), children);
2654
- });
2655
- if (process.env.NODE_ENV !== "production") {
2656
- KubernetesWorkerNode.propTypes = iconPropTypes;
2657
- }
2658
- var Label = /*#__PURE__*/React__default.forwardRef(function Label(_ref113, ref) {
2659
- var children = _ref113.children,
2660
- _ref113$size = _ref113.size,
2661
- size = _ref113$size === undefined ? 16 : _ref113$size,
2662
- rest = _objectWithoutProperties(_ref113, _excluded113);
2663
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2664
- width: size,
2665
- height: size,
2666
- ref: ref,
2667
- xmlns: "http://www.w3.org/2000/svg",
2668
- viewBox: "0 0 32 32",
2669
- fill: "currentColor"
2670
- }, rest), _path211 || (_path211 = /*#__PURE__*/React__default.createElement("path", {
2671
- d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 0023 13zm0 8H19V19h4zM13 9H9a2.002 2.002 0 00-2 2V23H9V18h4v5h2V11A2.002 2.002 0 0013 9zM9 16V11h4v5z"
2672
- })), _path212 || (_path212 = /*#__PURE__*/React__default.createElement("path", {
2673
- d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"
2674
- })), children);
2675
- });
2676
- if (process.env.NODE_ENV !== "production") {
2677
- Label.propTypes = iconPropTypes;
2678
- }
2679
- var Language = /*#__PURE__*/React__default.forwardRef(function Language(_ref114, ref) {
2680
- var children = _ref114.children,
2681
- _ref114$size = _ref114.size,
2682
- size = _ref114$size === undefined ? 16 : _ref114$size,
2683
- rest = _objectWithoutProperties(_ref114, _excluded114);
2684
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2685
- width: size,
2686
- height: size,
2687
- ref: ref,
2688
- xmlns: "http://www.w3.org/2000/svg",
2689
- viewBox: "0 0 32 32",
2690
- fill: "currentColor"
2691
- }, rest), _path213 || (_path213 = /*#__PURE__*/React__default.createElement("path", {
2692
- d: "M18 19H24V21H18zM18 15H30V17H18zM18 11H30V13H18zM14 21V19H9V17H7v2H2v2h8.2148a8.5914 8.5914 0 01-2.2159 3.9771A9.2731 9.2731 0 016.5521 23H4.3334a10.8553 10.8553 0 002.1451 3.2966A14.6584 14.6584 0 013 28.127L3.7021 30a16.42 16.42 0 004.2907-2.3362A16.4883 16.4883 0 0012.2979 30L13 28.127A14.664 14.664 0 019.5228 26.3 10.3132 10.3132 0 0012.2516 21zM11.1666 13H13.333L8.75 2H6.5832L2 13H4.1664L5 11h5.3335zM5.8331 9L7.6665 4.6 9.5 9z"
2693
- })), children);
2694
- });
2695
- if (process.env.NODE_ENV !== "production") {
2696
- Language.propTypes = iconPropTypes;
2697
- }
2698
- var Laptop = /*#__PURE__*/React__default.forwardRef(function Laptop(_ref115, ref) {
2699
- var children = _ref115.children,
2700
- _ref115$size = _ref115.size,
2701
- size = _ref115$size === undefined ? 16 : _ref115$size,
2702
- rest = _objectWithoutProperties(_ref115, _excluded115);
2703
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2704
- width: size,
2705
- height: size,
2706
- ref: ref,
2707
- xmlns: "http://www.w3.org/2000/svg",
2708
- viewBox: "0 0 32 32",
2709
- fill: "currentColor"
2710
- }, rest), _path214 || (_path214 = /*#__PURE__*/React__default.createElement("path", {
2711
- d: "M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",
2712
- transform: "translate(0 .005)"
2713
- })), _path215 || (_path215 = /*#__PURE__*/React__default.createElement("path", {
2714
- d: "M2 26.005H30V28.005H2z"
2715
- })), children);
2716
- });
2717
- if (process.env.NODE_ENV !== "production") {
2718
- Laptop.propTypes = iconPropTypes;
2719
- }
2720
- var Lasso = /*#__PURE__*/React__default.forwardRef(function Lasso(_ref116, ref) {
2721
- var children = _ref116.children,
2722
- _ref116$size = _ref116.size,
2723
- size = _ref116$size === undefined ? 16 : _ref116$size,
2724
- rest = _objectWithoutProperties(_ref116, _excluded116);
2725
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2726
- width: size,
2727
- height: size,
2728
- ref: ref,
2729
- xmlns: "http://www.w3.org/2000/svg",
2730
- viewBox: "0 0 32 32",
2731
- fill: "currentColor"
2732
- }, rest), _path216 || (_path216 = /*#__PURE__*/React__default.createElement("path", {
2733
- d: "M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"
2734
- })), children);
2735
- });
2736
- if (process.env.NODE_ENV !== "production") {
2737
- Lasso.propTypes = iconPropTypes;
2738
- }
2739
- var LassoPolygon = /*#__PURE__*/React__default.forwardRef(function LassoPolygon(_ref117, ref) {
2740
- var children = _ref117.children,
2741
- _ref117$size = _ref117.size,
2742
- size = _ref117$size === undefined ? 16 : _ref117$size,
2743
- rest = _objectWithoutProperties(_ref117, _excluded117);
2744
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2745
- width: size,
2746
- height: size,
2747
- ref: ref,
2748
- xmlns: "http://www.w3.org/2000/svg",
2749
- viewBox: "0 0 32 32",
2750
- fill: "currentColor"
2751
- }, rest), _path217 || (_path217 = /*#__PURE__*/React__default.createElement("path", {
2752
- d: "M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"
2753
- })), children);
2754
- });
2755
- if (process.env.NODE_ENV !== "production") {
2756
- LassoPolygon.propTypes = iconPropTypes;
2757
- }
2758
- var Launch = /*#__PURE__*/React__default.forwardRef(function Launch(_ref118, ref) {
2759
- var children = _ref118.children,
2760
- _ref118$size = _ref118.size,
2761
- size = _ref118$size === undefined ? 16 : _ref118$size,
2762
- rest = _objectWithoutProperties(_ref118, _excluded118);
2763
- if (size === 16 || size === "16" || size === "16px") {
2764
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2765
- width: size,
2766
- height: size,
2767
- ref: ref,
2768
- xmlns: "http://www.w3.org/2000/svg",
2769
- viewBox: "0 0 16 16",
2770
- fill: "currentColor"
2771
- }, rest), _path218 || (_path218 = /*#__PURE__*/React__default.createElement("path", {
2772
- d: "M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"
2773
- })), _path219 || (_path219 = /*#__PURE__*/React__default.createElement("path", {
2774
- d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"
2775
- })), children);
2776
- }
2777
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2778
- width: size,
2779
- height: size,
2780
- ref: ref,
2781
- xmlns: "http://www.w3.org/2000/svg",
2782
- viewBox: "0 0 32 32",
2783
- fill: "currentColor"
2784
- }, rest), _path220 || (_path220 = /*#__PURE__*/React__default.createElement("path", {
2785
- d: "M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"
2786
- })), _path221 || (_path221 = /*#__PURE__*/React__default.createElement("path", {
2787
- d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"
2788
- })), children);
2789
- });
2790
- if (process.env.NODE_ENV !== "production") {
2791
- Launch.propTypes = iconPropTypes;
2792
- }
2793
- var WatsonHealthLaunchStudy_1 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_1(_ref119, ref) {
2794
- var children = _ref119.children,
2795
- _ref119$size = _ref119.size,
2796
- size = _ref119$size === undefined ? 16 : _ref119$size,
2797
- rest = _objectWithoutProperties(_ref119, _excluded119);
2798
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2799
- width: size,
2800
- height: size,
2801
- ref: ref,
2802
- xmlns: "http://www.w3.org/2000/svg",
2803
- viewBox: "0 0 32 32",
2804
- fill: "currentColor"
2805
- }, rest), _circle33 || (_circle33 = /*#__PURE__*/React__default.createElement("circle", {
2806
- cx: "23",
2807
- cy: "25",
2808
- r: "1"
2809
- })), _path222 || (_path222 = /*#__PURE__*/React__default.createElement("path", {
2810
- d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 10.59L17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"
2811
- })), _path223 || (_path223 = /*#__PURE__*/React__default.createElement("path", {
2812
- d: "M8 24H20V26H8z"
2813
- })), children);
2814
- });
2815
- if (process.env.NODE_ENV !== "production") {
2816
- WatsonHealthLaunchStudy_1.propTypes = iconPropTypes;
2817
- }
2818
- var WatsonHealthLaunchStudy_2 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_2(_ref120, ref) {
2819
- var children = _ref120.children,
2820
- _ref120$size = _ref120.size,
2821
- size = _ref120$size === undefined ? 16 : _ref120$size,
2822
- rest = _objectWithoutProperties(_ref120, _excluded120);
2823
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2824
- width: size,
2825
- height: size,
2826
- ref: ref,
2827
- xmlns: "http://www.w3.org/2000/svg",
2828
- viewBox: "0 0 32 32",
2829
- fill: "currentColor"
2830
- }, rest), _circle34 || (_circle34 = /*#__PURE__*/React__default.createElement("circle", {
2831
- cx: "23",
2832
- cy: "7",
2833
- r: "1"
2834
- })), _path224 || (_path224 = /*#__PURE__*/React__default.createElement("path", {
2835
- d: "M26 4v6H6V4H26m0-2H6A2 2 0 004 4v6a2 2 0 002 2H26a2 2 0 002-2V4a2 2 0 00-2-2zM20.59 21.41L17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"
2836
- })), _path225 || (_path225 = /*#__PURE__*/React__default.createElement("path", {
2837
- d: "M8 6H20V8H8z"
2838
- })), children);
2839
- });
2840
- if (process.env.NODE_ENV !== "production") {
2841
- WatsonHealthLaunchStudy_2.propTypes = iconPropTypes;
2842
- }
2843
- var WatsonHealthLaunchStudy_3 = /*#__PURE__*/React__default.forwardRef(function WatsonHealthLaunchStudy_3(_ref121, ref) {
2844
- var children = _ref121.children,
2845
- _ref121$size = _ref121.size,
2846
- size = _ref121$size === undefined ? 16 : _ref121$size,
2847
- rest = _objectWithoutProperties(_ref121, _excluded121);
2848
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2849
- width: size,
2850
- height: size,
2851
- ref: ref,
2852
- xmlns: "http://www.w3.org/2000/svg",
2853
- viewBox: "0 0 32 32",
2854
- fill: "currentColor"
2855
- }, rest), _circle35 || (_circle35 = /*#__PURE__*/React__default.createElement("circle", {
2856
- cx: "23",
2857
- cy: "25",
2858
- r: "1"
2859
- })), _path226 || (_path226 = /*#__PURE__*/React__default.createElement("path", {
2860
- d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 4.59L17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"
2861
- })), _path227 || (_path227 = /*#__PURE__*/React__default.createElement("path", {
2862
- d: "M20.59 10.59L16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59zM8 24H20V26H8z"
2863
- })), children);
2864
- });
2865
- if (process.env.NODE_ENV !== "production") {
2866
- WatsonHealthLaunchStudy_3.propTypes = iconPropTypes;
2867
- }
2868
- var Layers = /*#__PURE__*/React__default.forwardRef(function Layers(_ref122, ref) {
2869
- var children = _ref122.children,
2870
- _ref122$size = _ref122.size,
2871
- size = _ref122$size === undefined ? 16 : _ref122$size,
2872
- rest = _objectWithoutProperties(_ref122, _excluded122);
2873
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2874
- width: size,
2875
- height: size,
2876
- ref: ref,
2877
- xmlns: "http://www.w3.org/2000/svg",
2878
- viewBox: "0 0 32 32",
2879
- fill: "currentColor"
2880
- }, rest), _path228 || (_path228 = /*#__PURE__*/React__default.createElement("path", {
2881
- d: "M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"
2882
- })), _path229 || (_path229 = /*#__PURE__*/React__default.createElement("path", {
2883
- d: "M16 30a.9967.9967 0 01-.4741-.12l-13-7L3.4741 21.12 16 27.8643 28.5259 21.12l.9482 1.7607-13 7A.9967.9967 0 0116 30zM16 18a.9967.9967 0 01-.4741-.12l-13-7a1 1 0 010-1.7607l13-7a.9982.9982 0 01.9482 0l13 7a1 1 0 010 1.7607l-13 7A.9967.9967 0 0116 18zM5.1094 10L16 15.8643 26.8906 10 16 4.1358z"
2884
- })), children);
2885
- });
2886
- if (process.env.NODE_ENV !== "production") {
2887
- Layers.propTypes = iconPropTypes;
2888
- }
2889
- var LayersExternal = /*#__PURE__*/React__default.forwardRef(function LayersExternal(_ref123, ref) {
2890
- var children = _ref123.children,
2891
- _ref123$size = _ref123.size,
2892
- size = _ref123$size === undefined ? 16 : _ref123$size,
2893
- rest = _objectWithoutProperties(_ref123, _excluded123);
2894
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2895
- width: size,
2896
- height: size,
2897
- ref: ref,
2898
- xmlns: "http://www.w3.org/2000/svg",
2899
- viewBox: "0 0 32 32",
2900
- fill: "currentColor"
2901
- }, rest), _path230 || (_path230 = /*#__PURE__*/React__default.createElement("path", {
2902
- strokeWidth: "0",
2903
- d: "m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"
2904
- })), _path231 || (_path231 = /*#__PURE__*/React__default.createElement("path", {
2905
- strokeWidth: "0",
2906
- d: "M16 30c-.1631 0-.3262-.0398-.4741-.1196l-13-7 .9482-1.7607 12.5259 6.7446 12.5259-6.7446.9482 1.7607-13 7c-.1479.0798-.311.1196-.4741.1196zM29.4741 9.1196L16 1.8643v2.2715l10.8906 5.8643-10.8906 5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804zM4.4141 9.4141l3.5859-3.586v8.1719s2 0 2 0V5.8281s3.5859 3.5859 3.5859 3.5859l1.4141-1.414L9 2 3 8l1.4141 1.4141z"
2907
- })), children);
2908
- });
2909
- if (process.env.NODE_ENV !== "production") {
2910
- LayersExternal.propTypes = iconPropTypes;
2911
- }
2912
- var Legend = /*#__PURE__*/React__default.forwardRef(function Legend(_ref124, ref) {
2913
- var children = _ref124.children,
2914
- _ref124$size = _ref124.size,
2915
- size = _ref124$size === undefined ? 16 : _ref124$size,
2916
- rest = _objectWithoutProperties(_ref124, _excluded124);
2917
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2918
- width: size,
2919
- height: size,
2920
- ref: ref,
2921
- xmlns: "http://www.w3.org/2000/svg",
2922
- viewBox: "0 0 32 32",
2923
- fill: "currentColor"
2924
- }, rest), _path232 || (_path232 = /*#__PURE__*/React__default.createElement("path", {
2925
- d: "M16 22H30V24H16z"
2926
- })), _rect || (_rect = /*#__PURE__*/React__default.createElement("rect", {
2927
- width: "6",
2928
- height: "6",
2929
- x: "4",
2930
- y: "20",
2931
- rx: "1"
2932
- })), _path233 || (_path233 = /*#__PURE__*/React__default.createElement("path", {
2933
- d: "M16 8H30V10H16zM9.5 12h-5a.5.5 0 01-.4473-.7236l2.5-5.0224a.5206.5206 0 01.8945 0l2.5 5.0225A.5.5 0 019.5 12z"
2934
- })), children);
2935
- });
2936
- if (process.env.NODE_ENV !== "production") {
2937
- Legend.propTypes = iconPropTypes;
2938
- }
2939
- var LetterAa = /*#__PURE__*/React__default.forwardRef(function LetterAa(_ref125, ref) {
2940
- var children = _ref125.children,
2941
- _ref125$size = _ref125.size,
2942
- size = _ref125$size === undefined ? 16 : _ref125$size,
2943
- rest = _objectWithoutProperties(_ref125, _excluded125);
2944
- return /*#__PURE__*/React__default.createElement(Icon, _objectSpread2({
2945
- width: size,
2946
- height: size,
2947
- ref: ref,
2948
- xmlns: "http://www.w3.org/2000/svg",
2949
- viewBox: "0 0 32 32",
2950
- fill: "currentColor"
2951
- }, rest), _path234 || (_path234 = /*#__PURE__*/React__default.createElement("path", {
2952
- d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2 2 0 0023 13zm0 8H19V19h4zM13 9H9a2 2 0 00-2 2V23H9V18h4v5h2V11A2 2 0 0013 9zM9 16V11h4v5z"
2953
- })), children);
2954
- });
2955
- if (process.env.NODE_ENV !== "production") {
2956
- LetterAa.propTypes = iconPropTypes;
2957
- }
2958
-
2959
- export { IbmWatsonOpenscale, IbmWatsonOrders, IbmWatsonQuery, IbmWatsonSpeechToText, IbmWatsonStudio, IbmWatsonTextToSpeech, IbmWatsonToneAnalyzer, IbmWatsonxAssistant, IbmWatsonxCodeAssistant, IbmWatsonxCodeAssistantForZ, IbmWatsonxCodeAssistantForZRefactor, IbmWatsonxCodeAssistantForZValidationAssistant, IbmWatsonxOrchestrate, IbmZCloudModStack, IbmZCloudProvisioning, IbmZEnvironmentsDevSecOps, IbmZOpenEditor, IbmZOs, IbmZOsAiControlInterface, IbmZOsContainers, IbmZOsPackageManager, IbmZProcessorCapacityReference, IceAccretion, IceVision, IdManagement, Idea, Identification, Image, ImageCopy, ImageMedical, ImageReference, ImageSearch, ImageSearchAlt, ImageService, ImageStoreLocal, ImportExport, ImproveRelevance, InProgress, InProgressError, InProgressWarning, Incomplete, IncompleteCancel, IncompleteError, IncompleteWarning, IncreaseLevel, Industry, InfinitySymbol, Information, InformationDisabled, InformationFilled, InformationSquare, InformationSquareFilled, InfrastructureClassic, Insert, InsertPage, InsertSyntax, Inspection, InstanceBx, InstanceClassic, InstanceCx, InstanceMx, InstanceVirtual, Integration, IntentRequestActive, IntentRequestCreate, IntentRequestHeal, IntentRequestInactive, IntentRequestScaleIn, IntentRequestScaleOut, IntentRequestUninstall, IntentRequestUpgrade, Interactions, InterfaceUsage, Intersect, IntrusionPrevention, InventoryManagement, IotConnect, IotPlatform, Ip, Iso, IsoFilled, IsoOutline, JobDaemon, JobRun, JoinFull, JoinInner, JoinLeft, JoinNode, JoinOuter, JoinRight, Jpg, JsError, Json, JsonReference, JumpLink, KeepDry, Key, Keyboard, KeyboardOff, Kubelet, Kubernetes, KubernetesControlPlaneNode, KubernetesIpAddress, KubernetesOperator, KubernetesPod, KubernetesWorkerNode, Label, Language, Laptop, Lasso, LassoPolygon, Launch, Layers, LayersExternal, Legend, LetterAa, QID, WatsonHealthICa_2D, WatsonHealthImageAvailabilityLocal, WatsonHealthImageAvailabilityRetrieving, WatsonHealthImageAvailabilityUnavailable, WatsonHealthInteractiveSegmentationCursor, WatsonHealthLaunchStudy_1, WatsonHealthLaunchStudy_2, WatsonHealthLaunchStudy_3 };