@carbon/ibm-products 2.60.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,3085 +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
- 'use strict';
9
-
10
- var _rollupPluginBabelHelpers = require('../../../../../_virtual/_rollupPluginBabelHelpers.js');
11
- var React = require('react');
12
- var Icon = require('../Icon.js');
13
- var iconPropTypes4cbeb95d = require('../iconPropTypes-4cbeb95d.js');
14
-
15
- var _excluded = ["children", "size"],
16
- _excluded2 = ["children", "size"],
17
- _excluded3 = ["children", "size"],
18
- _excluded4 = ["children", "size"],
19
- _excluded5 = ["children", "size"],
20
- _excluded6 = ["children", "size"],
21
- _excluded7 = ["children", "size"],
22
- _excluded8 = ["children", "size"],
23
- _excluded9 = ["children", "size"],
24
- _excluded10 = ["children", "size"],
25
- _excluded11 = ["children", "size"],
26
- _excluded12 = ["children", "size"],
27
- _excluded13 = ["children", "size"],
28
- _excluded14 = ["children", "size"],
29
- _excluded15 = ["children", "size"],
30
- _excluded16 = ["children", "size"],
31
- _excluded17 = ["children", "size"],
32
- _excluded18 = ["children", "size"],
33
- _excluded19 = ["children", "size"],
34
- _excluded20 = ["children", "size"],
35
- _excluded21 = ["children", "size"],
36
- _excluded22 = ["children", "size"],
37
- _excluded23 = ["children", "size"],
38
- _excluded24 = ["children", "size"],
39
- _excluded25 = ["children", "size"],
40
- _excluded26 = ["children", "size"],
41
- _excluded27 = ["children", "size"],
42
- _excluded28 = ["children", "size"],
43
- _excluded29 = ["children", "size"],
44
- _excluded30 = ["children", "size"],
45
- _excluded31 = ["children", "size"],
46
- _excluded32 = ["children", "size"],
47
- _excluded33 = ["children", "size"],
48
- _excluded34 = ["children", "size"],
49
- _excluded35 = ["children", "size"],
50
- _excluded36 = ["children", "size"],
51
- _excluded37 = ["children", "size"],
52
- _excluded38 = ["children", "size"],
53
- _excluded39 = ["children", "size"],
54
- _excluded40 = ["children", "size"],
55
- _excluded41 = ["children", "size"],
56
- _excluded42 = ["children", "size"],
57
- _excluded43 = ["children", "size"],
58
- _excluded44 = ["children", "size"],
59
- _excluded45 = ["children", "size"],
60
- _excluded46 = ["children", "size"],
61
- _excluded47 = ["children", "size"],
62
- _excluded48 = ["children", "size"],
63
- _excluded49 = ["children", "size"],
64
- _excluded50 = ["children", "size"],
65
- _excluded51 = ["children", "size"],
66
- _excluded52 = ["children", "size"],
67
- _excluded53 = ["children", "size"],
68
- _excluded54 = ["children", "size"],
69
- _excluded55 = ["children", "size"],
70
- _excluded56 = ["children", "size"],
71
- _excluded57 = ["children", "size"],
72
- _excluded58 = ["children", "size"],
73
- _excluded59 = ["children", "size"],
74
- _excluded60 = ["children", "size"],
75
- _excluded61 = ["children", "size"],
76
- _excluded62 = ["children", "size"],
77
- _excluded63 = ["children", "size"],
78
- _excluded64 = ["children", "size"],
79
- _excluded65 = ["children", "size"],
80
- _excluded66 = ["children", "size"],
81
- _excluded67 = ["children", "size"],
82
- _excluded68 = ["children", "size"],
83
- _excluded69 = ["children", "size"],
84
- _excluded70 = ["children", "size"],
85
- _excluded71 = ["children", "size"],
86
- _excluded72 = ["children", "size"],
87
- _excluded73 = ["children", "size"],
88
- _excluded74 = ["children", "size"],
89
- _excluded75 = ["children", "size"],
90
- _excluded76 = ["children", "size"],
91
- _excluded77 = ["children", "size"],
92
- _excluded78 = ["children", "size"],
93
- _excluded79 = ["children", "size"],
94
- _excluded80 = ["children", "size"],
95
- _excluded81 = ["children", "size"],
96
- _excluded82 = ["children", "size"],
97
- _excluded83 = ["children", "size"],
98
- _excluded84 = ["children", "size"],
99
- _excluded85 = ["children", "size"],
100
- _excluded86 = ["children", "size"],
101
- _excluded87 = ["children", "size"],
102
- _excluded88 = ["children", "size"],
103
- _excluded89 = ["children", "size"],
104
- _excluded90 = ["children", "size"],
105
- _excluded91 = ["children", "size"],
106
- _excluded92 = ["children", "size"],
107
- _excluded93 = ["children", "size"],
108
- _excluded94 = ["children", "size"],
109
- _excluded95 = ["children", "size"],
110
- _excluded96 = ["children", "size"],
111
- _excluded97 = ["children", "size"],
112
- _excluded98 = ["children", "size"],
113
- _excluded99 = ["children", "size"],
114
- _excluded100 = ["children", "size"],
115
- _excluded101 = ["children", "size"],
116
- _excluded102 = ["children", "size"],
117
- _excluded103 = ["children", "size"],
118
- _excluded104 = ["children", "size"],
119
- _excluded105 = ["children", "size"],
120
- _excluded106 = ["children", "size"],
121
- _excluded107 = ["children", "size"],
122
- _excluded108 = ["children", "size"],
123
- _excluded109 = ["children", "size"],
124
- _excluded110 = ["children", "size"],
125
- _excluded111 = ["children", "size"],
126
- _excluded112 = ["children", "size"],
127
- _excluded113 = ["children", "size"],
128
- _excluded114 = ["children", "size"],
129
- _excluded115 = ["children", "size"],
130
- _excluded116 = ["children", "size"],
131
- _excluded117 = ["children", "size"],
132
- _excluded118 = ["children", "size"],
133
- _excluded119 = ["children", "size"],
134
- _excluded120 = ["children", "size"],
135
- _excluded121 = ["children", "size"],
136
- _excluded122 = ["children", "size"],
137
- _excluded123 = ["children", "size"],
138
- _excluded124 = ["children", "size"],
139
- _excluded125 = ["children", "size"];
140
- 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;
141
- var didWarnAboutDeprecation = {};
142
- var IbmWatsonOpenscale = /*#__PURE__*/React.forwardRef(function IbmWatsonOpenscale(_ref, ref) {
143
- var children = _ref.children,
144
- _ref$size = _ref.size,
145
- size = _ref$size === undefined ? 16 : _ref$size,
146
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
147
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
148
- width: size,
149
- height: size,
150
- ref: ref,
151
- xmlns: "http://www.w3.org/2000/svg",
152
- viewBox: "0 0 32 32",
153
- fill: "currentColor"
154
- }, rest), _path || (_path = /*#__PURE__*/React.createElement("path", {
155
- 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"
156
- })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
157
- 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"
158
- })), children);
159
- });
160
- if (process.env.NODE_ENV !== "production") {
161
- IbmWatsonOpenscale.propTypes = iconPropTypes4cbeb95d.i;
162
- }
163
- var IbmWatsonOrders = /*#__PURE__*/React.forwardRef(function IbmWatsonOrders(_ref2, ref) {
164
- var children = _ref2.children,
165
- _ref2$size = _ref2.size,
166
- size = _ref2$size === undefined ? 16 : _ref2$size,
167
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref2, _excluded2);
168
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
169
- width: size,
170
- height: size,
171
- ref: ref,
172
- xmlns: "http://www.w3.org/2000/svg",
173
- viewBox: "0 0 32 32",
174
- fill: "currentColor"
175
- }, rest), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
176
- d: "M28 13h-2v-2c0-2.8-2.2-5-5-5h-3V4h3c3.9 0 7 3.1 7 7V13zM22 20H25V22H22zM22 24H25V26H22z"
177
- })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
178
- 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"
179
- })), children);
180
- });
181
- if (process.env.NODE_ENV !== "production") {
182
- IbmWatsonOrders.propTypes = iconPropTypes4cbeb95d.i;
183
- }
184
- var IbmWatsonQuery = /*#__PURE__*/React.forwardRef(function IbmWatsonQuery(_ref3, ref) {
185
- var children = _ref3.children,
186
- _ref3$size = _ref3.size,
187
- size = _ref3$size === undefined ? 16 : _ref3$size,
188
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref3, _excluded3);
189
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
190
- width: size,
191
- height: size,
192
- ref: ref,
193
- xmlns: "http://www.w3.org/2000/svg",
194
- viewBox: "0 0 32 32",
195
- fill: "currentColor"
196
- }, rest), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
197
- 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"
198
- })), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
199
- 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"
200
- })), children);
201
- });
202
- if (process.env.NODE_ENV !== "production") {
203
- IbmWatsonQuery.propTypes = iconPropTypes4cbeb95d.i;
204
- }
205
- var IbmWatsonSpeechToText = /*#__PURE__*/React.forwardRef(function IbmWatsonSpeechToText(_ref4, ref) {
206
- var children = _ref4.children,
207
- _ref4$size = _ref4.size,
208
- size = _ref4$size === undefined ? 16 : _ref4$size,
209
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref4, _excluded4);
210
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
211
- width: size,
212
- height: size,
213
- ref: ref,
214
- xmlns: "http://www.w3.org/2000/svg",
215
- viewBox: "0 0 32 32",
216
- fill: "currentColor"
217
- }, rest), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
218
- 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"
219
- })), children);
220
- });
221
- if (process.env.NODE_ENV !== "production") {
222
- IbmWatsonSpeechToText.propTypes = iconPropTypes4cbeb95d.i;
223
- }
224
- var IbmWatsonStudio = /*#__PURE__*/React.forwardRef(function IbmWatsonStudio(_ref5, ref) {
225
- var children = _ref5.children,
226
- _ref5$size = _ref5.size,
227
- size = _ref5$size === undefined ? 16 : _ref5$size,
228
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref5, _excluded5);
229
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
230
- width: size,
231
- height: size,
232
- ref: ref,
233
- xmlns: "http://www.w3.org/2000/svg",
234
- viewBox: "0 0 32 32",
235
- fill: "currentColor"
236
- }, rest), _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
237
- 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"
238
- })), children);
239
- });
240
- if (process.env.NODE_ENV !== "production") {
241
- IbmWatsonStudio.propTypes = iconPropTypes4cbeb95d.i;
242
- }
243
- var IbmWatsonTextToSpeech = /*#__PURE__*/React.forwardRef(function IbmWatsonTextToSpeech(_ref6, ref) {
244
- var children = _ref6.children,
245
- _ref6$size = _ref6.size,
246
- size = _ref6$size === undefined ? 16 : _ref6$size,
247
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref6, _excluded6);
248
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
249
- width: size,
250
- height: size,
251
- ref: ref,
252
- xmlns: "http://www.w3.org/2000/svg",
253
- viewBox: "0 0 32 32",
254
- fill: "currentColor"
255
- }, rest), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
256
- 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"
257
- })), children);
258
- });
259
- if (process.env.NODE_ENV !== "production") {
260
- IbmWatsonTextToSpeech.propTypes = iconPropTypes4cbeb95d.i;
261
- }
262
- var IbmWatsonToneAnalyzer = /*#__PURE__*/React.forwardRef(function IbmWatsonToneAnalyzer(_ref7, ref) {
263
- var children = _ref7.children,
264
- _ref7$size = _ref7.size,
265
- size = _ref7$size === undefined ? 16 : _ref7$size,
266
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref7, _excluded7);
267
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
268
- width: size,
269
- height: size,
270
- ref: ref,
271
- xmlns: "http://www.w3.org/2000/svg",
272
- viewBox: "0 0 32 32",
273
- fill: "currentColor"
274
- }, rest), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
275
- 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"
276
- })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
277
- cx: "24",
278
- cy: "5",
279
- r: "1"
280
- })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
281
- cx: "19",
282
- cy: "5",
283
- r: "1"
284
- })), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
285
- 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"
286
- })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
287
- cx: "15.5",
288
- cy: "17.5",
289
- r: "1.5"
290
- })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
291
- cx: "8.5",
292
- cy: "17.5",
293
- r: "1.5"
294
- })), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
295
- 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"
296
- })), children);
297
- });
298
- if (process.env.NODE_ENV !== "production") {
299
- IbmWatsonToneAnalyzer.propTypes = iconPropTypes4cbeb95d.i;
300
- }
301
- var IbmWatsonxAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxAssistant(_ref8, ref) {
302
- var children = _ref8.children,
303
- _ref8$size = _ref8.size,
304
- size = _ref8$size === undefined ? 16 : _ref8$size,
305
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref8, _excluded8);
306
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
307
- width: size,
308
- height: size,
309
- ref: ref,
310
- xmlns: "http://www.w3.org/2000/svg",
311
- viewBox: "0 0 32 32",
312
- fill: "currentColor"
313
- }, rest), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
314
- 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"
315
- })), _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
316
- cx: "10",
317
- cy: "17",
318
- r: "1"
319
- })), _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
320
- cx: "14",
321
- cy: "17",
322
- r: "1"
323
- })), _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
324
- cx: "18",
325
- cy: "17",
326
- r: "1"
327
- })), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
328
- 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"
329
- })), children);
330
- });
331
- if (process.env.NODE_ENV !== "production") {
332
- IbmWatsonxAssistant.propTypes = iconPropTypes4cbeb95d.i;
333
- }
334
- var IbmWatsonxCodeAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistant(_ref9, ref) {
335
- var children = _ref9.children,
336
- _ref9$size = _ref9.size,
337
- size = _ref9$size === undefined ? 16 : _ref9$size,
338
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref9, _excluded9);
339
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
340
- width: size,
341
- height: size,
342
- ref: ref,
343
- xmlns: "http://www.w3.org/2000/svg",
344
- viewBox: "0 0 32 32",
345
- fill: "currentColor"
346
- }, rest), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
347
- 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"
348
- })), _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
349
- cx: "3",
350
- cy: "4",
351
- r: "1"
352
- })), _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
353
- d: "M6 3H16V5H6z"
354
- })), _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
355
- cx: "3",
356
- cy: "12",
357
- r: "1"
358
- })), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
359
- d: "M6 11H16V13H6zM2 15H12V17H2z"
360
- })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
361
- cx: "15",
362
- cy: "8",
363
- r: "1"
364
- })), _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
365
- d: "M2 7H12V9H2z"
366
- })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
367
- cx: "15",
368
- cy: "16",
369
- r: "1"
370
- })), children);
371
- });
372
- if (process.env.NODE_ENV !== "production") {
373
- IbmWatsonxCodeAssistant.propTypes = iconPropTypes4cbeb95d.i;
374
- }
375
- var IbmWatsonxCodeAssistantForZ = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZ(_ref10, ref) {
376
- var children = _ref10.children,
377
- _ref10$size = _ref10.size,
378
- size = _ref10$size === undefined ? 16 : _ref10$size,
379
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref10, _excluded10);
380
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
381
- width: size,
382
- height: size,
383
- ref: ref,
384
- xmlns: "http://www.w3.org/2000/svg",
385
- viewBox: "0 0 32 32",
386
- fill: "currentColor"
387
- }, rest), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
388
- 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"
389
- })), children);
390
- });
391
- if (process.env.NODE_ENV !== "production") {
392
- IbmWatsonxCodeAssistantForZ.propTypes = iconPropTypes4cbeb95d.i;
393
- }
394
- var IbmWatsonxCodeAssistantForZRefactor = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZRefactor(_ref11, ref) {
395
- var children = _ref11.children,
396
- _ref11$size = _ref11.size,
397
- size = _ref11$size === undefined ? 16 : _ref11$size,
398
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref11, _excluded11);
399
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
400
- width: size,
401
- height: size,
402
- ref: ref,
403
- xmlns: "http://www.w3.org/2000/svg",
404
- viewBox: "0 0 32 32",
405
- fill: "currentColor"
406
- }, rest), _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
407
- 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"
408
- })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
409
- cx: "19",
410
- cy: "28",
411
- r: "1"
412
- })), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
413
- 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"
414
- })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
415
- cx: "13",
416
- cy: "4",
417
- r: "1"
418
- })), _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
419
- 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"
420
- })), children);
421
- });
422
- if (process.env.NODE_ENV !== "production") {
423
- IbmWatsonxCodeAssistantForZRefactor.propTypes = iconPropTypes4cbeb95d.i;
424
- }
425
- var IbmWatsonxCodeAssistantForZValidationAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZValidationAssistant(_ref12, ref) {
426
- var children = _ref12.children,
427
- _ref12$size = _ref12.size,
428
- size = _ref12$size === undefined ? 16 : _ref12$size,
429
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref12, _excluded12);
430
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
431
- width: size,
432
- height: size,
433
- ref: ref,
434
- xmlns: "http://www.w3.org/2000/svg",
435
- viewBox: "0 0 32 32",
436
- fill: "currentColor"
437
- }, rest), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
438
- 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"
439
- })), children);
440
- });
441
- if (process.env.NODE_ENV !== "production") {
442
- IbmWatsonxCodeAssistantForZValidationAssistant.propTypes = iconPropTypes4cbeb95d.i;
443
- }
444
- var IbmWatsonxOrchestrate = /*#__PURE__*/React.forwardRef(function IbmWatsonxOrchestrate(_ref13, ref) {
445
- var children = _ref13.children,
446
- _ref13$size = _ref13.size,
447
- size = _ref13$size === undefined ? 16 : _ref13$size,
448
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref13, _excluded13);
449
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
450
- width: size,
451
- height: size,
452
- ref: ref,
453
- xmlns: "http://www.w3.org/2000/svg",
454
- viewBox: "0 0 32 32",
455
- fill: "currentColor"
456
- }, rest), _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
457
- 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"
458
- })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
459
- cx: "30",
460
- cy: "16",
461
- r: "2"
462
- })), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
463
- cx: "2",
464
- cy: "16",
465
- r: "2"
466
- })), _circle16 || (_circle16 = /*#__PURE__*/React.createElement("circle", {
467
- cx: "16",
468
- cy: "16",
469
- r: "2"
470
- })), _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
471
- 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"
472
- })), children);
473
- });
474
- if (process.env.NODE_ENV !== "production") {
475
- IbmWatsonxOrchestrate.propTypes = iconPropTypes4cbeb95d.i;
476
- }
477
- var IbmZCloudModStack = /*#__PURE__*/React.forwardRef(function IbmZCloudModStack(_ref14, ref) {
478
- var children = _ref14.children,
479
- _ref14$size = _ref14.size,
480
- size = _ref14$size === undefined ? 16 : _ref14$size,
481
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref14, _excluded14);
482
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
483
- width: size,
484
- height: size,
485
- ref: ref,
486
- xmlns: "http://www.w3.org/2000/svg",
487
- viewBox: "0 0 32 32",
488
- fill: "currentColor"
489
- }, rest), _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
490
- 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"
491
- })), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
492
- 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"
493
- })), _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
494
- 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"
495
- })), children);
496
- });
497
- if (process.env.NODE_ENV !== "production") {
498
- IbmZCloudModStack.propTypes = iconPropTypes4cbeb95d.i;
499
- }
500
- var IbmZEnvironmentsDevSecOps = /*#__PURE__*/React.forwardRef(function IbmZEnvironmentsDevSecOps(_ref15, ref) {
501
- var children = _ref15.children,
502
- _ref15$size = _ref15.size,
503
- size = _ref15$size === undefined ? 16 : _ref15$size,
504
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref15, _excluded15);
505
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
506
- width: size,
507
- height: size,
508
- ref: ref,
509
- xmlns: "http://www.w3.org/2000/svg",
510
- viewBox: "0 0 32 32",
511
- fill: "currentColor"
512
- }, rest), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
513
- 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"
514
- })), _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
515
- 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"
516
- })), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
517
- d: "m13.9998,29.991l-10.5037-6.1272c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l10.0076,5.8378-1.0078,1.7275Z"
518
- })), children);
519
- });
520
- if (process.env.NODE_ENV !== "production") {
521
- IbmZEnvironmentsDevSecOps.propTypes = iconPropTypes4cbeb95d.i;
522
- }
523
- var IbmZOpenEditor = /*#__PURE__*/React.forwardRef(function IbmZOpenEditor(_ref16, ref) {
524
- var children = _ref16.children,
525
- _ref16$size = _ref16.size,
526
- size = _ref16$size === undefined ? 16 : _ref16$size,
527
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref16, _excluded16);
528
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
529
- width: size,
530
- height: size,
531
- ref: ref,
532
- xmlns: "http://www.w3.org/2000/svg",
533
- viewBox: "0 0 32 32",
534
- fill: "currentColor"
535
- }, rest), _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
536
- 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"
537
- })), children);
538
- });
539
- if (process.env.NODE_ENV !== "production") {
540
- IbmZOpenEditor.propTypes = iconPropTypes4cbeb95d.i;
541
- }
542
- var IbmZProcessorCapacityReference = /*#__PURE__*/React.forwardRef(function IbmZProcessorCapacityReference(_ref17, ref) {
543
- var children = _ref17.children,
544
- _ref17$size = _ref17.size,
545
- size = _ref17$size === undefined ? 16 : _ref17$size,
546
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref17, _excluded17);
547
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
548
- width: size,
549
- height: size,
550
- ref: ref,
551
- xmlns: "http://www.w3.org/2000/svg",
552
- viewBox: "0 0 32 32",
553
- fill: "currentColor"
554
- }, rest), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
555
- d: "M25 25H27V29H25zM21 23H23V29H21zM29 20H31V29H29z"
556
- })), _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
557
- 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"
558
- })), children);
559
- });
560
- if (process.env.NODE_ENV !== "production") {
561
- IbmZProcessorCapacityReference.propTypes = iconPropTypes4cbeb95d.i;
562
- }
563
- var IbmZCloudProvisioning = /*#__PURE__*/React.forwardRef(function IbmZCloudProvisioning(_ref18, ref) {
564
- var children = _ref18.children,
565
- _ref18$size = _ref18.size,
566
- size = _ref18$size === undefined ? 16 : _ref18$size,
567
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref18, _excluded18);
568
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
569
- width: size,
570
- height: size,
571
- ref: ref,
572
- xmlns: "http://www.w3.org/2000/svg",
573
- viewBox: "0 0 32 32",
574
- fill: "currentColor"
575
- }, rest), _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
576
- d: "M10 17H14V21H10zM17 10H21V14H17zM17 17H21V21H17z"
577
- })), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
578
- 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"
579
- })), children);
580
- });
581
- if (process.env.NODE_ENV !== "production") {
582
- IbmZCloudProvisioning.propTypes = iconPropTypes4cbeb95d.i;
583
- }
584
- var IbmZOs = /*#__PURE__*/React.forwardRef(function IbmZOs(_ref19, ref) {
585
- var children = _ref19.children,
586
- _ref19$size = _ref19.size,
587
- size = _ref19$size === undefined ? 16 : _ref19$size,
588
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref19, _excluded19);
589
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
590
- width: size,
591
- height: size,
592
- ref: ref,
593
- xmlns: "http://www.w3.org/2000/svg",
594
- viewBox: "0 0 32 32",
595
- fill: "currentColor"
596
- }, rest), _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
597
- 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"
598
- })), children);
599
- });
600
- if (process.env.NODE_ENV !== "production") {
601
- IbmZOs.propTypes = iconPropTypes4cbeb95d.i;
602
- }
603
- var IbmZOsAiControlInterface = /*#__PURE__*/React.forwardRef(function IbmZOsAiControlInterface(_ref20, ref) {
604
- var children = _ref20.children,
605
- _ref20$size = _ref20.size,
606
- size = _ref20$size === undefined ? 16 : _ref20$size,
607
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref20, _excluded20);
608
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
609
- width: size,
610
- height: size,
611
- ref: ref,
612
- xmlns: "http://www.w3.org/2000/svg",
613
- viewBox: "0 0 32 32",
614
- fill: "currentColor"
615
- }, rest), _circle17 || (_circle17 = /*#__PURE__*/React.createElement("circle", {
616
- cx: "12",
617
- cy: "21",
618
- r: "1"
619
- })), _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
620
- 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"
621
- })), _circle18 || (_circle18 = /*#__PURE__*/React.createElement("circle", {
622
- cx: "12",
623
- cy: "11",
624
- r: "1"
625
- })), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
626
- 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"
627
- })), _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
628
- 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"
629
- })), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
630
- d: "M8.5 1.5H13.5V3.5H8.5z",
631
- transform: "rotate(90 11 2.5)"
632
- })), _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
633
- d: "M1.975 3.475H6.975V5.475H1.975z",
634
- transform: "rotate(45 4.475 4.475)"
635
- })), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
636
- d: "M0 10H5V12H0z"
637
- })), children);
638
- });
639
- if (process.env.NODE_ENV !== "production") {
640
- IbmZOsAiControlInterface.propTypes = iconPropTypes4cbeb95d.i;
641
- }
642
- var IbmZOsContainers = /*#__PURE__*/React.forwardRef(function IbmZOsContainers(_ref21, ref) {
643
- var children = _ref21.children,
644
- _ref21$size = _ref21.size,
645
- size = _ref21$size === undefined ? 16 : _ref21$size,
646
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref21, _excluded21);
647
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
648
- width: size,
649
- height: size,
650
- ref: ref,
651
- xmlns: "http://www.w3.org/2000/svg",
652
- viewBox: "0 0 32 32",
653
- fill: "currentColor"
654
- }, rest), _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
655
- d: "m29,12h-9V3h9v9Zm-7-2h5v-5h-5v5Z"
656
- })), _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
657
- 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"
658
- })), children);
659
- });
660
- if (process.env.NODE_ENV !== "production") {
661
- IbmZOsContainers.propTypes = iconPropTypes4cbeb95d.i;
662
- }
663
- var IbmZOsPackageManager = /*#__PURE__*/React.forwardRef(function IbmZOsPackageManager(_ref22, ref) {
664
- var children = _ref22.children,
665
- _ref22$size = _ref22.size,
666
- size = _ref22$size === undefined ? 16 : _ref22$size,
667
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref22, _excluded22);
668
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
669
- width: size,
670
- height: size,
671
- ref: ref,
672
- xmlns: "http://www.w3.org/2000/svg",
673
- viewBox: "0 0 32 32",
674
- fill: "currentColor"
675
- }, rest), _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
676
- 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"
677
- })), children);
678
- });
679
- if (process.env.NODE_ENV !== "production") {
680
- IbmZOsPackageManager.propTypes = iconPropTypes4cbeb95d.i;
681
- }
682
- var WatsonHealthICa_2D = /*#__PURE__*/React.forwardRef(function WatsonHealthICa_2D(_ref23, ref) {
683
- var children = _ref23.children,
684
- _ref23$size = _ref23.size,
685
- size = _ref23$size === undefined ? 16 : _ref23$size,
686
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref23, _excluded23);
687
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
688
- width: size,
689
- height: size,
690
- ref: ref,
691
- xmlns: "http://www.w3.org/2000/svg",
692
- viewBox: "0 0 32 32",
693
- fill: "currentColor"
694
- }, rest), _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
695
- 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"
696
- })), children);
697
- });
698
- if (process.env.NODE_ENV !== "production") {
699
- WatsonHealthICa_2D.propTypes = iconPropTypes4cbeb95d.i;
700
- }
701
- var IceAccretion = /*#__PURE__*/React.forwardRef(function IceAccretion(_ref24, ref) {
702
- var children = _ref24.children,
703
- _ref24$size = _ref24.size,
704
- size = _ref24$size === undefined ? 16 : _ref24$size,
705
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref24, _excluded24);
706
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
707
- width: size,
708
- height: size,
709
- ref: ref,
710
- xmlns: "http://www.w3.org/2000/svg",
711
- viewBox: "0 0 32 32",
712
- fill: "currentColor"
713
- }, rest), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
714
- 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"
715
- })), _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
716
- d: "M24 26L23 28 22 26 22 20 24 20 24 26zM8 24L7 26 6 24 6 18 8 18 8 24z"
717
- })), children);
718
- });
719
- if (process.env.NODE_ENV !== "production") {
720
- IceAccretion.propTypes = iconPropTypes4cbeb95d.i;
721
- }
722
- var IceVision = /*#__PURE__*/React.forwardRef(function IceVision(_ref25, ref) {
723
- var children = _ref25.children,
724
- _ref25$size = _ref25.size,
725
- size = _ref25$size === undefined ? 16 : _ref25$size,
726
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref25, _excluded25);
727
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
728
- width: size,
729
- height: size,
730
- ref: ref,
731
- xmlns: "http://www.w3.org/2000/svg",
732
- viewBox: "0 0 32 32",
733
- fill: "currentColor"
734
- }, rest), _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
735
- d: "M19 14L19 21 20 23 21 21 21 14 19 14zM17 14H13a2 2 0 00-2 2v4l1 2 1-2V16h2v7l1 2 1-2z"
736
- })), _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
737
- d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"
738
- })), children);
739
- });
740
- if (process.env.NODE_ENV !== "production") {
741
- IceVision.propTypes = iconPropTypes4cbeb95d.i;
742
- }
743
- var QID = /*#__PURE__*/React.forwardRef(function QID(_ref26, ref) {
744
- var children = _ref26.children,
745
- _ref26$size = _ref26.size,
746
- size = _ref26$size === undefined ? 16 : _ref26$size,
747
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref26, _excluded26);
748
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
749
- width: size,
750
- height: size,
751
- ref: ref,
752
- xmlns: "http://www.w3.org/2000/svg",
753
- viewBox: "0 0 32 32",
754
- fill: "currentColor"
755
- }, rest), _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
756
- d: "M10 9H12V11H10zM18 23H14V9h4a4 4 0 014 4v6A4 4 0 0118 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H16zM10 13H12V23H10z"
757
- })), children);
758
- });
759
- if (process.env.NODE_ENV !== "production") {
760
- QID.propTypes = iconPropTypes4cbeb95d.i;
761
- }
762
- var IdManagement = /*#__PURE__*/React.forwardRef(function IdManagement(_ref27, ref) {
763
- var children = _ref27.children,
764
- _ref27$size = _ref27.size,
765
- size = _ref27$size === undefined ? 16 : _ref27$size,
766
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref27, _excluded27);
767
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
768
- width: size,
769
- height: size,
770
- ref: ref,
771
- xmlns: "http://www.w3.org/2000/svg",
772
- viewBox: "0 0 32 32",
773
- fill: "currentColor"
774
- }, rest), _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
775
- 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"
776
- })), _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
777
- d: "M28,19v9H4V8H16V6H4A2,2,0,0,0,2,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19Z"
778
- })), _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
779
- 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"
780
- })), children);
781
- });
782
- if (process.env.NODE_ENV !== "production") {
783
- IdManagement.propTypes = iconPropTypes4cbeb95d.i;
784
- }
785
- var Idea = /*#__PURE__*/React.forwardRef(function Idea(_ref28, ref) {
786
- var children = _ref28.children,
787
- _ref28$size = _ref28.size,
788
- size = _ref28$size === undefined ? 16 : _ref28$size,
789
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref28, _excluded28);
790
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
791
- width: size,
792
- height: size,
793
- ref: ref,
794
- xmlns: "http://www.w3.org/2000/svg",
795
- viewBox: "0 0 32 32",
796
- fill: "currentColor"
797
- }, rest), _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
798
- 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"
799
- })), children);
800
- });
801
- if (process.env.NODE_ENV !== "production") {
802
- Idea.propTypes = iconPropTypes4cbeb95d.i;
803
- }
804
- var Identification = /*#__PURE__*/React.forwardRef(function Identification(_ref29, ref) {
805
- var children = _ref29.children,
806
- _ref29$size = _ref29.size,
807
- size = _ref29$size === undefined ? 16 : _ref29$size,
808
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref29, _excluded29);
809
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
810
- width: size,
811
- height: size,
812
- ref: ref,
813
- xmlns: "http://www.w3.org/2000/svg",
814
- viewBox: "0 0 32 32",
815
- fill: "currentColor"
816
- }, rest), _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
817
- 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"
818
- })), _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
819
- 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"
820
- })), children);
821
- });
822
- if (process.env.NODE_ENV !== "production") {
823
- Identification.propTypes = iconPropTypes4cbeb95d.i;
824
- }
825
- var Image = /*#__PURE__*/React.forwardRef(function Image(_ref30, ref) {
826
- var children = _ref30.children,
827
- _ref30$size = _ref30.size,
828
- size = _ref30$size === undefined ? 16 : _ref30$size,
829
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref30, _excluded30);
830
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
831
- width: size,
832
- height: size,
833
- ref: ref,
834
- xmlns: "http://www.w3.org/2000/svg",
835
- viewBox: "0 0 32 32",
836
- fill: "currentColor"
837
- }, rest), _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
838
- 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"
839
- })), _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
840
- 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"
841
- })), children);
842
- });
843
- if (process.env.NODE_ENV !== "production") {
844
- Image.propTypes = iconPropTypes4cbeb95d.i;
845
- }
846
- var ImageCopy = /*#__PURE__*/React.forwardRef(function ImageCopy(_ref31, ref) {
847
- var children = _ref31.children,
848
- _ref31$size = _ref31.size,
849
- size = _ref31$size === undefined ? 16 : _ref31$size,
850
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref31, _excluded31);
851
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
852
- width: size,
853
- height: size,
854
- ref: ref,
855
- xmlns: "http://www.w3.org/2000/svg",
856
- viewBox: "0 0 32 32",
857
- fill: "currentColor"
858
- }, rest), _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
859
- 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"
860
- })), _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
861
- 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"
862
- })), children);
863
- });
864
- if (process.env.NODE_ENV !== "production") {
865
- ImageCopy.propTypes = iconPropTypes4cbeb95d.i;
866
- }
867
- var ImageMedical = /*#__PURE__*/React.forwardRef(function ImageMedical(_ref32, ref) {
868
- var children = _ref32.children,
869
- _ref32$size = _ref32.size,
870
- size = _ref32$size === undefined ? 16 : _ref32$size,
871
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref32, _excluded32);
872
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
873
- width: size,
874
- height: size,
875
- ref: ref,
876
- xmlns: "http://www.w3.org/2000/svg",
877
- viewBox: "0 0 32 32",
878
- fill: "currentColor"
879
- }, rest), _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
880
- 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"
881
- })), _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
882
- 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"
883
- })), children);
884
- });
885
- if (process.env.NODE_ENV !== "production") {
886
- ImageMedical.propTypes = iconPropTypes4cbeb95d.i;
887
- }
888
- var ImageReference = /*#__PURE__*/React.forwardRef(function ImageReference(_ref33, ref) {
889
- var children = _ref33.children,
890
- _ref33$size = _ref33.size,
891
- size = _ref33$size === undefined ? 16 : _ref33$size,
892
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref33, _excluded33);
893
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
894
- width: size,
895
- height: size,
896
- ref: ref,
897
- xmlns: "http://www.w3.org/2000/svg",
898
- viewBox: "0 0 32 32",
899
- fill: "currentColor"
900
- }, rest), _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
901
- 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"
902
- })), _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
903
- 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"
904
- })), children);
905
- });
906
- if (process.env.NODE_ENV !== "production") {
907
- ImageReference.propTypes = iconPropTypes4cbeb95d.i;
908
- }
909
- var ImageSearch = /*#__PURE__*/React.forwardRef(function ImageSearch(_ref34, ref) {
910
- var children = _ref34.children,
911
- _ref34$size = _ref34.size,
912
- size = _ref34$size === undefined ? 16 : _ref34$size,
913
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref34, _excluded34);
914
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
915
- width: size,
916
- height: size,
917
- ref: ref,
918
- xmlns: "http://www.w3.org/2000/svg",
919
- viewBox: "0 0 32 32",
920
- fill: "currentColor"
921
- }, rest), _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
922
- 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"
923
- })), _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
924
- 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"
925
- })), children);
926
- });
927
- if (process.env.NODE_ENV !== "production") {
928
- ImageSearch.propTypes = iconPropTypes4cbeb95d.i;
929
- }
930
- var ImageSearchAlt = /*#__PURE__*/React.forwardRef(function ImageSearchAlt(_ref35, ref) {
931
- var children = _ref35.children,
932
- _ref35$size = _ref35.size,
933
- size = _ref35$size === undefined ? 16 : _ref35$size,
934
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref35, _excluded35);
935
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
936
- width: size,
937
- height: size,
938
- ref: ref,
939
- xmlns: "http://www.w3.org/2000/svg",
940
- viewBox: "0 0 32 32",
941
- fill: "currentColor"
942
- }, rest), _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
943
- 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"
944
- })), _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
945
- 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"
946
- })), children);
947
- });
948
- if (process.env.NODE_ENV !== "production") {
949
- ImageSearchAlt.propTypes = iconPropTypes4cbeb95d.i;
950
- }
951
- var WatsonHealthImageAvailabilityLocal = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityLocal(_ref36, ref) {
952
- var children = _ref36.children,
953
- _ref36$size = _ref36.size,
954
- size = _ref36$size === undefined ? 16 : _ref36$size,
955
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref36, _excluded36);
956
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
957
- width: size,
958
- height: size,
959
- ref: ref,
960
- xmlns: "http://www.w3.org/2000/svg",
961
- viewBox: "0 0 32 32",
962
- fill: "currentColor"
963
- }, rest), _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
964
- d: "M16,18c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S18.8,18,16,18z"
965
- })), _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
966
- 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"
967
- })), children);
968
- });
969
- if (process.env.NODE_ENV !== "production") {
970
- WatsonHealthImageAvailabilityLocal.propTypes = iconPropTypes4cbeb95d.i;
971
- }
972
- var WatsonHealthImageAvailabilityRetrieving = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityRetrieving(_ref37, ref) {
973
- var children = _ref37.children,
974
- _ref37$size = _ref37.size,
975
- size = _ref37$size === undefined ? 16 : _ref37$size,
976
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref37, _excluded37);
977
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
978
- width: size,
979
- height: size,
980
- ref: ref,
981
- xmlns: "http://www.w3.org/2000/svg",
982
- viewBox: "0 0 32 32",
983
- fill: "currentColor"
984
- }, rest), _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
985
- d: "M10 13L11.4 11.6 15 15.2 15 2 17 2 17 15.2 20.6 11.6 22 13 16 19z"
986
- })), _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
987
- 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"
988
- })), children);
989
- });
990
- if (process.env.NODE_ENV !== "production") {
991
- WatsonHealthImageAvailabilityRetrieving.propTypes = iconPropTypes4cbeb95d.i;
992
- }
993
- var WatsonHealthImageAvailabilityUnavailable = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityUnavailable(_ref38, ref) {
994
- var children = _ref38.children,
995
- _ref38$size = _ref38.size,
996
- size = _ref38$size === undefined ? 16 : _ref38$size,
997
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref38, _excluded38);
998
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
999
- width: size,
1000
- height: size,
1001
- ref: ref,
1002
- xmlns: "http://www.w3.org/2000/svg",
1003
- viewBox: "0 0 32 32",
1004
- fill: "currentColor"
1005
- }, rest), _circle19 || (_circle19 = /*#__PURE__*/React.createElement("circle", {
1006
- cx: "16",
1007
- cy: "20.5",
1008
- r: "1.5"
1009
- })), _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
1010
- 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"
1011
- })), _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
1012
- 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"
1013
- })), children);
1014
- });
1015
- if (process.env.NODE_ENV !== "production") {
1016
- WatsonHealthImageAvailabilityUnavailable.propTypes = iconPropTypes4cbeb95d.i;
1017
- }
1018
- var ImageService = /*#__PURE__*/React.forwardRef(function ImageService(_ref39, ref) {
1019
- var children = _ref39.children,
1020
- _ref39$size = _ref39.size,
1021
- size = _ref39$size === undefined ? 16 : _ref39$size,
1022
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref39, _excluded39);
1023
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1024
- width: size,
1025
- height: size,
1026
- ref: ref,
1027
- xmlns: "http://www.w3.org/2000/svg",
1028
- viewBox: "0 0 32 32",
1029
- fill: "currentColor"
1030
- }, rest), _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
1031
- 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"
1032
- })), _circle20 || (_circle20 = /*#__PURE__*/React.createElement("circle", {
1033
- cx: "7",
1034
- cy: "25",
1035
- r: "1"
1036
- })), _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
1037
- 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"
1038
- })), children);
1039
- });
1040
- if (process.env.NODE_ENV !== "production") {
1041
- ImageService.propTypes = iconPropTypes4cbeb95d.i;
1042
- }
1043
- var ImageStoreLocal = /*#__PURE__*/React.forwardRef(function ImageStoreLocal(_ref40, ref) {
1044
- var children = _ref40.children,
1045
- _ref40$size = _ref40.size,
1046
- size = _ref40$size === undefined ? 16 : _ref40$size,
1047
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref40, _excluded40);
1048
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1049
- width: size,
1050
- height: size,
1051
- ref: ref,
1052
- xmlns: "http://www.w3.org/2000/svg",
1053
- viewBox: "0 0 32 32",
1054
- fill: "currentColor"
1055
- }, rest), _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
1056
- strokeWidth: "0",
1057
- d: "m25,2v7h7V2h-7Zm5,5h-3v-3h3v3Z"
1058
- })), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
1059
- strokeWidth: "0",
1060
- d: "m23,6h-7v12h12v-7h-5v-5Zm-2,10h-3v-3h3v3Zm5-3v3h-3v-3h3Zm-8-2v-3h3v3h-3Z"
1061
- })), _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
1062
- strokeWidth: "0",
1063
- 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"
1064
- })), children);
1065
- });
1066
- if (process.env.NODE_ENV !== "production") {
1067
- ImageStoreLocal.propTypes = iconPropTypes4cbeb95d.i;
1068
- }
1069
- var ImportExport = /*#__PURE__*/React.forwardRef(function ImportExport(_ref41, ref) {
1070
- var children = _ref41.children,
1071
- _ref41$size = _ref41.size,
1072
- size = _ref41$size === undefined ? 16 : _ref41$size,
1073
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref41, _excluded41);
1074
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1075
- width: size,
1076
- height: size,
1077
- ref: ref,
1078
- xmlns: "http://www.w3.org/2000/svg",
1079
- viewBox: "0 0 32 32",
1080
- fill: "currentColor"
1081
- }, rest), _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
1082
- 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"
1083
- })), children);
1084
- });
1085
- if (process.env.NODE_ENV !== "production") {
1086
- ImportExport.propTypes = iconPropTypes4cbeb95d.i;
1087
- }
1088
- var ImproveRelevance = /*#__PURE__*/React.forwardRef(function ImproveRelevance(_ref42, ref) {
1089
- var children = _ref42.children,
1090
- _ref42$size = _ref42.size,
1091
- size = _ref42$size === undefined ? 16 : _ref42$size,
1092
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref42, _excluded42);
1093
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1094
- width: size,
1095
- height: size,
1096
- ref: ref,
1097
- xmlns: "http://www.w3.org/2000/svg",
1098
- viewBox: "0 0 32 32",
1099
- fill: "currentColor"
1100
- }, rest), _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
1101
- d: "M22 26.59L19.41 24 18 25.41 22 29.41 30 21.41 28.59 20 22 26.59z"
1102
- })), _circle21 || (_circle21 = /*#__PURE__*/React.createElement("circle", {
1103
- cx: "16",
1104
- cy: "16",
1105
- r: "2"
1106
- })), _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
1107
- 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"
1108
- })), _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
1109
- d: "M28,16A12,12,0,1,0,16,28V26A10,10,0,1,1,26,16Z"
1110
- })), children);
1111
- });
1112
- if (process.env.NODE_ENV !== "production") {
1113
- ImproveRelevance.propTypes = iconPropTypes4cbeb95d.i;
1114
- }
1115
- var InProgress = /*#__PURE__*/React.forwardRef(function InProgress(_ref43, ref) {
1116
- var children = _ref43.children,
1117
- _ref43$size = _ref43.size,
1118
- size = _ref43$size === undefined ? 16 : _ref43$size,
1119
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref43, _excluded43);
1120
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1121
- width: size,
1122
- height: size,
1123
- ref: ref,
1124
- xmlns: "http://www.w3.org/2000/svg",
1125
- viewBox: "0 0 32 32",
1126
- fill: "currentColor"
1127
- }, rest), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
1128
- 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"
1129
- })), children);
1130
- });
1131
- if (process.env.NODE_ENV !== "production") {
1132
- InProgress.propTypes = iconPropTypes4cbeb95d.i;
1133
- }
1134
- var InProgressError = /*#__PURE__*/React.forwardRef(function InProgressError(_ref44, ref) {
1135
- var children = _ref44.children,
1136
- _ref44$size = _ref44.size,
1137
- size = _ref44$size === undefined ? 16 : _ref44$size,
1138
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref44, _excluded44);
1139
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1140
- width: size,
1141
- height: size,
1142
- ref: ref,
1143
- xmlns: "http://www.w3.org/2000/svg",
1144
- viewBox: "0 0 32 32",
1145
- fill: "currentColor"
1146
- }, rest), _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
1147
- 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"
1148
- })), _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
1149
- 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"
1150
- })), children);
1151
- });
1152
- if (process.env.NODE_ENV !== "production") {
1153
- InProgressError.propTypes = iconPropTypes4cbeb95d.i;
1154
- }
1155
- var InProgressWarning = /*#__PURE__*/React.forwardRef(function InProgressWarning(_ref45, ref) {
1156
- var children = _ref45.children,
1157
- _ref45$size = _ref45.size,
1158
- size = _ref45$size === undefined ? 16 : _ref45$size,
1159
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref45, _excluded45);
1160
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1161
- width: size,
1162
- height: size,
1163
- ref: ref,
1164
- xmlns: "http://www.w3.org/2000/svg",
1165
- viewBox: "0 0 32 32",
1166
- fill: "currentColor"
1167
- }, rest), _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
1168
- 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"
1169
- })), _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
1170
- 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"
1171
- })), children);
1172
- });
1173
- if (process.env.NODE_ENV !== "production") {
1174
- InProgressWarning.propTypes = iconPropTypes4cbeb95d.i;
1175
- }
1176
- var Incomplete = /*#__PURE__*/React.forwardRef(function Incomplete(_ref46, ref) {
1177
- var children = _ref46.children,
1178
- _ref46$size = _ref46.size,
1179
- size = _ref46$size === undefined ? 16 : _ref46$size,
1180
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref46, _excluded46);
1181
- if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1182
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1183
- width: size,
1184
- height: size,
1185
- ref: ref,
1186
- xmlns: "http://www.w3.org/2000/svg",
1187
- viewBox: "0 0 16 16",
1188
- fill: "currentColor"
1189
- }, rest), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
1190
- 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"
1191
- })), children);
1192
- }
1193
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1194
- width: size,
1195
- height: size,
1196
- ref: ref,
1197
- xmlns: "http://www.w3.org/2000/svg",
1198
- viewBox: "0 0 32 32",
1199
- fill: "currentColor"
1200
- }, rest), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
1201
- 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"
1202
- })), children);
1203
- });
1204
- if (process.env.NODE_ENV !== "production") {
1205
- Incomplete.propTypes = iconPropTypes4cbeb95d.i;
1206
- }
1207
- var IncompleteCancel = /*#__PURE__*/React.forwardRef(function IncompleteCancel(_ref47, ref) {
1208
- var children = _ref47.children,
1209
- _ref47$size = _ref47.size,
1210
- size = _ref47$size === undefined ? 16 : _ref47$size,
1211
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref47, _excluded47);
1212
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1213
- width: size,
1214
- height: size,
1215
- ref: ref,
1216
- xmlns: "http://www.w3.org/2000/svg",
1217
- viewBox: "0 0 32 32",
1218
- fill: "currentColor"
1219
- }, rest), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
1220
- 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"
1221
- })), children);
1222
- });
1223
- if (process.env.NODE_ENV !== "production") {
1224
- IncompleteCancel.propTypes = iconPropTypes4cbeb95d.i;
1225
- }
1226
- var IncompleteError = /*#__PURE__*/React.forwardRef(function IncompleteError(_ref48, ref) {
1227
- var children = _ref48.children,
1228
- _ref48$size = _ref48.size,
1229
- size = _ref48$size === undefined ? 16 : _ref48$size,
1230
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref48, _excluded48);
1231
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1232
- width: size,
1233
- height: size,
1234
- ref: ref,
1235
- xmlns: "http://www.w3.org/2000/svg",
1236
- viewBox: "0 0 32 32",
1237
- fill: "currentColor"
1238
- }, rest), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
1239
- 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"
1240
- })), children);
1241
- });
1242
- if (process.env.NODE_ENV !== "production") {
1243
- IncompleteError.propTypes = iconPropTypes4cbeb95d.i;
1244
- }
1245
- var IncompleteWarning = /*#__PURE__*/React.forwardRef(function IncompleteWarning(_ref49, ref) {
1246
- var children = _ref49.children,
1247
- _ref49$size = _ref49.size,
1248
- size = _ref49$size === undefined ? 16 : _ref49$size,
1249
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref49, _excluded49);
1250
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1251
- width: size,
1252
- height: size,
1253
- ref: ref,
1254
- xmlns: "http://www.w3.org/2000/svg",
1255
- viewBox: "0 0 32 32",
1256
- fill: "currentColor"
1257
- }, rest), _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
1258
- 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"
1259
- })), children);
1260
- });
1261
- if (process.env.NODE_ENV !== "production") {
1262
- IncompleteWarning.propTypes = iconPropTypes4cbeb95d.i;
1263
- }
1264
- var IncreaseLevel = /*#__PURE__*/React.forwardRef(function IncreaseLevel(_ref50, ref) {
1265
- var children = _ref50.children,
1266
- _ref50$size = _ref50.size,
1267
- size = _ref50$size === undefined ? 16 : _ref50$size,
1268
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref50, _excluded50);
1269
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1270
- width: size,
1271
- height: size,
1272
- ref: ref,
1273
- xmlns: "http://www.w3.org/2000/svg",
1274
- viewBox: "0 0 32 32",
1275
- fill: "currentColor"
1276
- }, rest), _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
1277
- 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"
1278
- })), children);
1279
- });
1280
- if (process.env.NODE_ENV !== "production") {
1281
- IncreaseLevel.propTypes = iconPropTypes4cbeb95d.i;
1282
- }
1283
- var Industry = /*#__PURE__*/React.forwardRef(function Industry(_ref51, ref) {
1284
- var children = _ref51.children,
1285
- _ref51$size = _ref51.size,
1286
- size = _ref51$size === undefined ? 16 : _ref51$size,
1287
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref51, _excluded51);
1288
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1289
- width: size,
1290
- height: size,
1291
- ref: ref,
1292
- xmlns: "http://www.w3.org/2000/svg",
1293
- viewBox: "0 0 32 32",
1294
- fill: "currentColor"
1295
- }, rest), _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
1296
- 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"
1297
- })), children);
1298
- });
1299
- if (process.env.NODE_ENV !== "production") {
1300
- Industry.propTypes = iconPropTypes4cbeb95d.i;
1301
- }
1302
- var InfinitySymbol = /*#__PURE__*/React.forwardRef(function InfinitySymbol(_ref52, ref) {
1303
- var children = _ref52.children,
1304
- _ref52$size = _ref52.size,
1305
- size = _ref52$size === undefined ? 16 : _ref52$size,
1306
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref52, _excluded52);
1307
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1308
- width: size,
1309
- height: size,
1310
- ref: ref,
1311
- xmlns: "http://www.w3.org/2000/svg",
1312
- viewBox: "0 0 32 32",
1313
- fill: "currentColor"
1314
- }, rest), _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
1315
- 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"
1316
- })), children);
1317
- });
1318
- if (process.env.NODE_ENV !== "production") {
1319
- InfinitySymbol.propTypes = iconPropTypes4cbeb95d.i;
1320
- }
1321
- var Information = /*#__PURE__*/React.forwardRef(function Information(_ref53, ref) {
1322
- var children = _ref53.children,
1323
- _ref53$size = _ref53.size,
1324
- size = _ref53$size === undefined ? 16 : _ref53$size,
1325
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref53, _excluded53);
1326
- if (size === 16 || size === "16" || size === "16px") {
1327
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1328
- width: size,
1329
- height: size,
1330
- ref: ref,
1331
- xmlns: "http://www.w3.org/2000/svg",
1332
- viewBox: "0 0 16 16",
1333
- fill: "currentColor"
1334
- }, rest), _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
1335
- 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"
1336
- })), _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
1337
- 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"
1338
- })), children);
1339
- }
1340
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1341
- width: size,
1342
- height: size,
1343
- ref: ref,
1344
- xmlns: "http://www.w3.org/2000/svg",
1345
- viewBox: "0 0 32 32",
1346
- fill: "currentColor"
1347
- }, rest), _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
1348
- 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"
1349
- })), _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
1350
- 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"
1351
- })), children);
1352
- });
1353
- if (process.env.NODE_ENV !== "production") {
1354
- Information.propTypes = iconPropTypes4cbeb95d.i;
1355
- }
1356
- var InformationDisabled = /*#__PURE__*/React.forwardRef(function InformationDisabled(_ref54, ref) {
1357
- var children = _ref54.children,
1358
- _ref54$size = _ref54.size,
1359
- size = _ref54$size === undefined ? 16 : _ref54$size,
1360
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref54, _excluded54);
1361
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1362
- width: size,
1363
- height: size,
1364
- ref: ref,
1365
- xmlns: "http://www.w3.org/2000/svg",
1366
- viewBox: "0 0 32 32",
1367
- fill: "currentColor"
1368
- }, rest), _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
1369
- 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"
1370
- })), _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
1371
- 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"
1372
- })), children);
1373
- });
1374
- if (process.env.NODE_ENV !== "production") {
1375
- InformationDisabled.propTypes = iconPropTypes4cbeb95d.i;
1376
- }
1377
- var InformationFilled = /*#__PURE__*/React.forwardRef(function InformationFilled(_ref55, ref) {
1378
- var children = _ref55.children,
1379
- _ref55$size = _ref55.size,
1380
- size = _ref55$size === undefined ? 16 : _ref55$size,
1381
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref55, _excluded55);
1382
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1383
- width: size,
1384
- height: size,
1385
- ref: ref,
1386
- xmlns: "http://www.w3.org/2000/svg",
1387
- viewBox: "0 0 32 32",
1388
- fill: "currentColor"
1389
- }, rest), _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
1390
- fill: "none",
1391
- 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",
1392
- "data-icon-path": "inner-path"
1393
- })), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
1394
- 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"
1395
- })), children);
1396
- });
1397
- if (process.env.NODE_ENV !== "production") {
1398
- InformationFilled.propTypes = iconPropTypes4cbeb95d.i;
1399
- }
1400
- var InformationSquare = /*#__PURE__*/React.forwardRef(function InformationSquare(_ref56, ref) {
1401
- var children = _ref56.children,
1402
- _ref56$size = _ref56.size,
1403
- size = _ref56$size === undefined ? 16 : _ref56$size,
1404
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref56, _excluded56);
1405
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1406
- width: size,
1407
- height: size,
1408
- ref: ref,
1409
- xmlns: "http://www.w3.org/2000/svg",
1410
- viewBox: "0 0 32 32",
1411
- fill: "currentColor"
1412
- }, rest), _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
1413
- 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"
1414
- })), _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
1415
- 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"
1416
- })), children);
1417
- });
1418
- if (process.env.NODE_ENV !== "production") {
1419
- InformationSquare.propTypes = iconPropTypes4cbeb95d.i;
1420
- }
1421
- var InformationSquareFilled = /*#__PURE__*/React.forwardRef(function InformationSquareFilled(_ref57, ref) {
1422
- var children = _ref57.children,
1423
- _ref57$size = _ref57.size,
1424
- size = _ref57$size === undefined ? 16 : _ref57$size,
1425
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref57, _excluded57);
1426
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1427
- width: size,
1428
- height: size,
1429
- ref: ref,
1430
- xmlns: "http://www.w3.org/2000/svg",
1431
- viewBox: "0 0 32 32",
1432
- fill: "currentColor"
1433
- }, rest), _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
1434
- fill: "none",
1435
- 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",
1436
- "data-icon-path": "inner-path"
1437
- })), _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
1438
- 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"
1439
- })), children);
1440
- });
1441
- if (process.env.NODE_ENV !== "production") {
1442
- InformationSquareFilled.propTypes = iconPropTypes4cbeb95d.i;
1443
- }
1444
- var InfrastructureClassic = /*#__PURE__*/React.forwardRef(function InfrastructureClassic(_ref58, ref) {
1445
- var children = _ref58.children,
1446
- _ref58$size = _ref58.size,
1447
- size = _ref58$size === undefined ? 16 : _ref58$size,
1448
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref58, _excluded58);
1449
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1450
- width: size,
1451
- height: size,
1452
- ref: ref,
1453
- xmlns: "http://www.w3.org/2000/svg",
1454
- viewBox: "0 0 32 32",
1455
- fill: "currentColor"
1456
- }, rest), _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
1457
- d: "M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z"
1458
- })), _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
1459
- 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"
1460
- })), children);
1461
- });
1462
- if (process.env.NODE_ENV !== "production") {
1463
- InfrastructureClassic.propTypes = iconPropTypes4cbeb95d.i;
1464
- }
1465
- var Insert = /*#__PURE__*/React.forwardRef(function Insert(_ref59, ref) {
1466
- var children = _ref59.children,
1467
- _ref59$size = _ref59.size,
1468
- size = _ref59$size === undefined ? 16 : _ref59$size,
1469
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref59, _excluded59);
1470
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1471
- width: size,
1472
- height: size,
1473
- ref: ref,
1474
- xmlns: "http://www.w3.org/2000/svg",
1475
- viewBox: "0 0 32 32",
1476
- fill: "currentColor"
1477
- }, rest), _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
1478
- 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"
1479
- })), children);
1480
- });
1481
- if (process.env.NODE_ENV !== "production") {
1482
- Insert.propTypes = iconPropTypes4cbeb95d.i;
1483
- }
1484
- var InsertPage = /*#__PURE__*/React.forwardRef(function InsertPage(_ref60, ref) {
1485
- var children = _ref60.children,
1486
- _ref60$size = _ref60.size,
1487
- size = _ref60$size === undefined ? 16 : _ref60$size,
1488
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref60, _excluded60);
1489
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1490
- width: size,
1491
- height: size,
1492
- ref: ref,
1493
- xmlns: "http://www.w3.org/2000/svg",
1494
- viewBox: "0 0 32 32",
1495
- fill: "currentColor"
1496
- }, rest), _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
1497
- 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"
1498
- })), children);
1499
- });
1500
- if (process.env.NODE_ENV !== "production") {
1501
- InsertPage.propTypes = iconPropTypes4cbeb95d.i;
1502
- }
1503
- var InsertSyntax = /*#__PURE__*/React.forwardRef(function InsertSyntax(_ref61, ref) {
1504
- var children = _ref61.children,
1505
- _ref61$size = _ref61.size,
1506
- size = _ref61$size === undefined ? 16 : _ref61$size,
1507
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref61, _excluded61);
1508
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1509
- width: size,
1510
- height: size,
1511
- ref: ref,
1512
- xmlns: "http://www.w3.org/2000/svg",
1513
- viewBox: "0 0 32 32",
1514
- fill: "currentColor"
1515
- }, rest), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
1516
- 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"
1517
- })), _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
1518
- 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"
1519
- })), children);
1520
- });
1521
- if (process.env.NODE_ENV !== "production") {
1522
- InsertSyntax.propTypes = iconPropTypes4cbeb95d.i;
1523
- }
1524
- var Inspection = /*#__PURE__*/React.forwardRef(function Inspection(_ref62, ref) {
1525
- var children = _ref62.children,
1526
- _ref62$size = _ref62.size,
1527
- size = _ref62$size === undefined ? 16 : _ref62$size,
1528
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref62, _excluded62);
1529
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1530
- width: size,
1531
- height: size,
1532
- ref: ref,
1533
- xmlns: "http://www.w3.org/2000/svg",
1534
- viewBox: "0 0 32 32",
1535
- fill: "currentColor"
1536
- }, rest), _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
1537
- d: "M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z"
1538
- })), _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
1539
- 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"
1540
- })), children);
1541
- });
1542
- if (process.env.NODE_ENV !== "production") {
1543
- Inspection.propTypes = iconPropTypes4cbeb95d.i;
1544
- }
1545
- var InstanceBx = /*#__PURE__*/React.forwardRef(function InstanceBx(_ref63, ref) {
1546
- var children = _ref63.children,
1547
- _ref63$size = _ref63.size,
1548
- size = _ref63$size === undefined ? 16 : _ref63$size,
1549
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref63, _excluded63);
1550
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1551
- width: size,
1552
- height: size,
1553
- ref: ref,
1554
- xmlns: "http://www.w3.org/2000/svg",
1555
- viewBox: "0 0 32 32",
1556
- fill: "currentColor"
1557
- }, rest), _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
1558
- 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"
1559
- })), _circle22 || (_circle22 = /*#__PURE__*/React.createElement("circle", {
1560
- cx: "9",
1561
- cy: "27",
1562
- r: "1"
1563
- })), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
1564
- 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"
1565
- })), children);
1566
- });
1567
- if (process.env.NODE_ENV !== "production") {
1568
- InstanceBx.propTypes = iconPropTypes4cbeb95d.i;
1569
- }
1570
- var InstanceClassic = /*#__PURE__*/React.forwardRef(function InstanceClassic(_ref64, ref) {
1571
- var children = _ref64.children,
1572
- _ref64$size = _ref64.size,
1573
- size = _ref64$size === undefined ? 16 : _ref64$size,
1574
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref64, _excluded64);
1575
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1576
- width: size,
1577
- height: size,
1578
- ref: ref,
1579
- xmlns: "http://www.w3.org/2000/svg",
1580
- viewBox: "0 0 32 32",
1581
- fill: "currentColor"
1582
- }, rest), _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
1583
- 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"
1584
- })), _circle23 || (_circle23 = /*#__PURE__*/React.createElement("circle", {
1585
- cx: "9",
1586
- cy: "27",
1587
- r: "1"
1588
- })), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
1589
- 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"
1590
- })), children);
1591
- });
1592
- if (process.env.NODE_ENV !== "production") {
1593
- InstanceClassic.propTypes = iconPropTypes4cbeb95d.i;
1594
- }
1595
- var InstanceCx = /*#__PURE__*/React.forwardRef(function InstanceCx(_ref65, ref) {
1596
- var children = _ref65.children,
1597
- _ref65$size = _ref65.size,
1598
- size = _ref65$size === undefined ? 16 : _ref65$size,
1599
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref65, _excluded65);
1600
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1601
- width: size,
1602
- height: size,
1603
- ref: ref,
1604
- xmlns: "http://www.w3.org/2000/svg",
1605
- viewBox: "0 0 32 32",
1606
- fill: "currentColor"
1607
- }, rest), _circle24 || (_circle24 = /*#__PURE__*/React.createElement("circle", {
1608
- cx: "9",
1609
- cy: "27",
1610
- r: "1"
1611
- })), _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
1612
- 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"
1613
- })), children);
1614
- });
1615
- if (process.env.NODE_ENV !== "production") {
1616
- InstanceCx.propTypes = iconPropTypes4cbeb95d.i;
1617
- }
1618
- var InstanceMx = /*#__PURE__*/React.forwardRef(function InstanceMx(_ref66, ref) {
1619
- var children = _ref66.children,
1620
- _ref66$size = _ref66.size,
1621
- size = _ref66$size === undefined ? 16 : _ref66$size,
1622
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref66, _excluded66);
1623
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1624
- width: size,
1625
- height: size,
1626
- ref: ref,
1627
- xmlns: "http://www.w3.org/2000/svg",
1628
- viewBox: "0 0 32 32",
1629
- fill: "currentColor"
1630
- }, rest), _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
1631
- 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"
1632
- })), _circle25 || (_circle25 = /*#__PURE__*/React.createElement("circle", {
1633
- cx: "9",
1634
- cy: "27",
1635
- r: "1"
1636
- })), _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
1637
- 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"
1638
- })), children);
1639
- });
1640
- if (process.env.NODE_ENV !== "production") {
1641
- InstanceMx.propTypes = iconPropTypes4cbeb95d.i;
1642
- }
1643
- var InstanceVirtual = /*#__PURE__*/React.forwardRef(function InstanceVirtual(_ref67, ref) {
1644
- var children = _ref67.children,
1645
- _ref67$size = _ref67.size,
1646
- size = _ref67$size === undefined ? 16 : _ref67$size,
1647
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref67, _excluded67);
1648
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1649
- width: size,
1650
- height: size,
1651
- ref: ref,
1652
- xmlns: "http://www.w3.org/2000/svg",
1653
- viewBox: "0 0 32 32",
1654
- fill: "currentColor"
1655
- }, rest), _circle26 || (_circle26 = /*#__PURE__*/React.createElement("circle", {
1656
- cx: "7",
1657
- cy: "23",
1658
- r: "1"
1659
- })), _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
1660
- 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"
1661
- })), children);
1662
- });
1663
- if (process.env.NODE_ENV !== "production") {
1664
- InstanceVirtual.propTypes = iconPropTypes4cbeb95d.i;
1665
- }
1666
- var Integration = /*#__PURE__*/React.forwardRef(function Integration(_ref68, ref) {
1667
- var children = _ref68.children,
1668
- _ref68$size = _ref68.size,
1669
- size = _ref68$size === undefined ? 16 : _ref68$size,
1670
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref68, _excluded68);
1671
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1672
- width: size,
1673
- height: size,
1674
- ref: ref,
1675
- xmlns: "http://www.w3.org/2000/svg",
1676
- viewBox: "0 0 32 32",
1677
- fill: "currentColor"
1678
- }, rest), _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
1679
- 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"
1680
- })), children);
1681
- });
1682
- if (process.env.NODE_ENV !== "production") {
1683
- Integration.propTypes = iconPropTypes4cbeb95d.i;
1684
- }
1685
- var IntentRequestActive = /*#__PURE__*/React.forwardRef(function IntentRequestActive(_ref69, ref) {
1686
- var children = _ref69.children,
1687
- _ref69$size = _ref69.size,
1688
- size = _ref69$size === undefined ? 16 : _ref69$size,
1689
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref69, _excluded69);
1690
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1691
- width: size,
1692
- height: size,
1693
- ref: ref,
1694
- xmlns: "http://www.w3.org/2000/svg",
1695
- viewBox: "0 0 32 32",
1696
- fill: "currentColor"
1697
- }, rest), _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
1698
- d: "M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z"
1699
- })), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
1700
- 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"
1701
- })), children);
1702
- });
1703
- if (process.env.NODE_ENV !== "production") {
1704
- IntentRequestActive.propTypes = iconPropTypes4cbeb95d.i;
1705
- }
1706
- var IntentRequestCreate = /*#__PURE__*/React.forwardRef(function IntentRequestCreate(_ref70, ref) {
1707
- var children = _ref70.children,
1708
- _ref70$size = _ref70.size,
1709
- size = _ref70$size === undefined ? 16 : _ref70$size,
1710
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref70, _excluded70);
1711
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1712
- width: size,
1713
- height: size,
1714
- ref: ref,
1715
- xmlns: "http://www.w3.org/2000/svg",
1716
- viewBox: "0 0 32 32",
1717
- fill: "currentColor"
1718
- }, rest), _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
1719
- d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z"
1720
- })), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
1721
- 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"
1722
- })), children);
1723
- });
1724
- if (process.env.NODE_ENV !== "production") {
1725
- IntentRequestCreate.propTypes = iconPropTypes4cbeb95d.i;
1726
- }
1727
- var IntentRequestHeal = /*#__PURE__*/React.forwardRef(function IntentRequestHeal(_ref71, ref) {
1728
- var children = _ref71.children,
1729
- _ref71$size = _ref71.size,
1730
- size = _ref71$size === undefined ? 16 : _ref71$size,
1731
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref71, _excluded71);
1732
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1733
- width: size,
1734
- height: size,
1735
- ref: ref,
1736
- xmlns: "http://www.w3.org/2000/svg",
1737
- viewBox: "0 0 32 32",
1738
- fill: "currentColor"
1739
- }, rest), _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
1740
- 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"
1741
- })), _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
1742
- 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"
1743
- })), children);
1744
- });
1745
- if (process.env.NODE_ENV !== "production") {
1746
- IntentRequestHeal.propTypes = iconPropTypes4cbeb95d.i;
1747
- }
1748
- var IntentRequestInactive = /*#__PURE__*/React.forwardRef(function IntentRequestInactive(_ref72, ref) {
1749
- var children = _ref72.children,
1750
- _ref72$size = _ref72.size,
1751
- size = _ref72$size === undefined ? 16 : _ref72$size,
1752
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref72, _excluded72);
1753
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1754
- width: size,
1755
- height: size,
1756
- ref: ref,
1757
- xmlns: "http://www.w3.org/2000/svg",
1758
- viewBox: "0 0 32 32",
1759
- fill: "currentColor"
1760
- }, rest), _circle27 || (_circle27 = /*#__PURE__*/React.createElement("circle", {
1761
- cx: "18.5",
1762
- cy: "22.5",
1763
- r: "1.5"
1764
- })), _circle28 || (_circle28 = /*#__PURE__*/React.createElement("circle", {
1765
- cx: "23.5",
1766
- cy: "22.5",
1767
- r: "1.5"
1768
- })), _circle29 || (_circle29 = /*#__PURE__*/React.createElement("circle", {
1769
- cx: "28.5",
1770
- cy: "22.5",
1771
- r: "1.5"
1772
- })), _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
1773
- 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"
1774
- })), children);
1775
- });
1776
- if (process.env.NODE_ENV !== "production") {
1777
- IntentRequestInactive.propTypes = iconPropTypes4cbeb95d.i;
1778
- }
1779
- var IntentRequestScaleIn = /*#__PURE__*/React.forwardRef(function IntentRequestScaleIn(_ref73, ref) {
1780
- var children = _ref73.children,
1781
- _ref73$size = _ref73.size,
1782
- size = _ref73$size === undefined ? 16 : _ref73$size,
1783
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref73, _excluded73);
1784
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1785
- width: size,
1786
- height: size,
1787
- ref: ref,
1788
- xmlns: "http://www.w3.org/2000/svg",
1789
- viewBox: "0 0 32 32",
1790
- fill: "currentColor"
1791
- }, rest), _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
1792
- 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"
1793
- })), children);
1794
- });
1795
- if (process.env.NODE_ENV !== "production") {
1796
- IntentRequestScaleIn.propTypes = iconPropTypes4cbeb95d.i;
1797
- }
1798
- var IntentRequestScaleOut = /*#__PURE__*/React.forwardRef(function IntentRequestScaleOut(_ref74, ref) {
1799
- var children = _ref74.children,
1800
- _ref74$size = _ref74.size,
1801
- size = _ref74$size === undefined ? 16 : _ref74$size,
1802
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref74, _excluded74);
1803
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1804
- width: size,
1805
- height: size,
1806
- ref: ref,
1807
- xmlns: "http://www.w3.org/2000/svg",
1808
- viewBox: "0 0 32 32",
1809
- fill: "currentColor"
1810
- }, rest), _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
1811
- 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"
1812
- })), children);
1813
- });
1814
- if (process.env.NODE_ENV !== "production") {
1815
- IntentRequestScaleOut.propTypes = iconPropTypes4cbeb95d.i;
1816
- }
1817
- var IntentRequestUninstall = /*#__PURE__*/React.forwardRef(function IntentRequestUninstall(_ref75, ref) {
1818
- var children = _ref75.children,
1819
- _ref75$size = _ref75.size,
1820
- size = _ref75$size === undefined ? 16 : _ref75$size,
1821
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref75, _excluded75);
1822
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1823
- width: size,
1824
- height: size,
1825
- ref: ref,
1826
- xmlns: "http://www.w3.org/2000/svg",
1827
- viewBox: "0 0 32 32",
1828
- fill: "currentColor"
1829
- }, rest), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
1830
- 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"
1831
- })), _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
1832
- 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"
1833
- })), children);
1834
- });
1835
- if (process.env.NODE_ENV !== "production") {
1836
- IntentRequestUninstall.propTypes = iconPropTypes4cbeb95d.i;
1837
- }
1838
- var IntentRequestUpgrade = /*#__PURE__*/React.forwardRef(function IntentRequestUpgrade(_ref76, ref) {
1839
- var children = _ref76.children,
1840
- _ref76$size = _ref76.size,
1841
- size = _ref76$size === undefined ? 16 : _ref76$size,
1842
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref76, _excluded76);
1843
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1844
- width: size,
1845
- height: size,
1846
- ref: ref,
1847
- xmlns: "http://www.w3.org/2000/svg",
1848
- viewBox: "0 0 32 32",
1849
- fill: "currentColor"
1850
- }, rest), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
1851
- d: "M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z"
1852
- })), _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
1853
- 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"
1854
- })), children);
1855
- });
1856
- if (process.env.NODE_ENV !== "production") {
1857
- IntentRequestUpgrade.propTypes = iconPropTypes4cbeb95d.i;
1858
- }
1859
- var Interactions = /*#__PURE__*/React.forwardRef(function Interactions(_ref77, ref) {
1860
- var children = _ref77.children,
1861
- _ref77$size = _ref77.size,
1862
- size = _ref77$size === undefined ? 16 : _ref77$size,
1863
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref77, _excluded77);
1864
- if (size === 16 || size === "16" || size === "16px") {
1865
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1866
- width: size,
1867
- height: size,
1868
- ref: ref,
1869
- xmlns: "http://www.w3.org/2000/svg",
1870
- viewBox: "0 0 16 16",
1871
- fill: "currentColor"
1872
- }, rest), _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
1873
- fillRule: "evenodd",
1874
- 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"
1875
- })), children);
1876
- }
1877
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1878
- width: size,
1879
- height: size,
1880
- ref: ref,
1881
- xmlns: "http://www.w3.org/2000/svg",
1882
- viewBox: "0 0 32 32",
1883
- fill: "currentColor"
1884
- }, rest), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
1885
- 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"
1886
- })), children);
1887
- });
1888
- if (process.env.NODE_ENV !== "production") {
1889
- Interactions.propTypes = iconPropTypes4cbeb95d.i;
1890
- }
1891
- var WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React.forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref78, ref) {
1892
- var children = _ref78.children,
1893
- _ref78$size = _ref78.size,
1894
- size = _ref78$size === undefined ? 16 : _ref78$size,
1895
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref78, _excluded78);
1896
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1897
- width: size,
1898
- height: size,
1899
- ref: ref,
1900
- xmlns: "http://www.w3.org/2000/svg",
1901
- viewBox: "0 0 32 32",
1902
- fill: "currentColor"
1903
- }, rest), _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
1904
- 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"
1905
- })), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
1906
- d: "M7.586 18.586H10.414V21.413999999999998H7.586z",
1907
- transform: "rotate(-45 9 20)"
1908
- })), _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
1909
- d: "M18.586 7.586H21.413999999999998V10.414H18.586z",
1910
- transform: "rotate(-45 20 9)"
1911
- })), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
1912
- d: "M7.586 7.586H10.414V10.414H7.586z",
1913
- transform: "rotate(-45 9 9)"
1914
- })), _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
1915
- d: "M11 2L2 2 2 11 4 11 4 4 11 4 11 2z"
1916
- })), children);
1917
- });
1918
- if (process.env.NODE_ENV !== "production") {
1919
- WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypes4cbeb95d.i;
1920
- }
1921
- var InterfaceUsage = /*#__PURE__*/React.forwardRef(function InterfaceUsage(_ref79, ref) {
1922
- var children = _ref79.children,
1923
- _ref79$size = _ref79.size,
1924
- size = _ref79$size === undefined ? 16 : _ref79$size,
1925
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref79, _excluded79);
1926
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1927
- width: size,
1928
- height: size,
1929
- ref: ref,
1930
- xmlns: "http://www.w3.org/2000/svg",
1931
- viewBox: "0 0 32 32",
1932
- fill: "currentColor"
1933
- }, rest), _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
1934
- strokeWidth: "0",
1935
- 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"
1936
- })), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
1937
- strokeWidth: "0",
1938
- 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"
1939
- })), children);
1940
- });
1941
- if (process.env.NODE_ENV !== "production") {
1942
- InterfaceUsage.propTypes = iconPropTypes4cbeb95d.i;
1943
- }
1944
- var Intersect = /*#__PURE__*/React.forwardRef(function Intersect(_ref80, ref) {
1945
- var children = _ref80.children,
1946
- _ref80$size = _ref80.size,
1947
- size = _ref80$size === undefined ? 16 : _ref80$size,
1948
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref80, _excluded80);
1949
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1950
- width: size,
1951
- height: size,
1952
- ref: ref,
1953
- xmlns: "http://www.w3.org/2000/svg",
1954
- viewBox: "0 0 32 32",
1955
- fill: "currentColor"
1956
- }, rest), _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
1957
- d: "M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z"
1958
- })), _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
1959
- 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"
1960
- })), children);
1961
- });
1962
- if (process.env.NODE_ENV !== "production") {
1963
- Intersect.propTypes = iconPropTypes4cbeb95d.i;
1964
- }
1965
- var IntrusionPrevention = /*#__PURE__*/React.forwardRef(function IntrusionPrevention(_ref81, ref) {
1966
- var children = _ref81.children,
1967
- _ref81$size = _ref81.size,
1968
- size = _ref81$size === undefined ? 16 : _ref81$size,
1969
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref81, _excluded81);
1970
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1971
- width: size,
1972
- height: size,
1973
- ref: ref,
1974
- xmlns: "http://www.w3.org/2000/svg",
1975
- viewBox: "0 0 32 32",
1976
- fill: "currentColor"
1977
- }, rest), _circle30 || (_circle30 = /*#__PURE__*/React.createElement("circle", {
1978
- cx: "22",
1979
- cy: "23.887",
1980
- r: "2"
1981
- })), _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
1982
- 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"
1983
- })), _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
1984
- 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"
1985
- })), children);
1986
- });
1987
- if (process.env.NODE_ENV !== "production") {
1988
- IntrusionPrevention.propTypes = iconPropTypes4cbeb95d.i;
1989
- }
1990
- var InventoryManagement = /*#__PURE__*/React.forwardRef(function InventoryManagement(_ref82, ref) {
1991
- var children = _ref82.children,
1992
- _ref82$size = _ref82.size,
1993
- size = _ref82$size === undefined ? 16 : _ref82$size,
1994
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref82, _excluded82);
1995
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
1996
- width: size,
1997
- height: size,
1998
- ref: ref,
1999
- xmlns: "http://www.w3.org/2000/svg",
2000
- viewBox: "0 0 32 32",
2001
- fill: "currentColor"
2002
- }, rest), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
2003
- d: "M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z"
2004
- })), _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
2005
- 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"
2006
- })), children);
2007
- });
2008
- if (process.env.NODE_ENV !== "production") {
2009
- InventoryManagement.propTypes = iconPropTypes4cbeb95d.i;
2010
- }
2011
- var IotConnect = /*#__PURE__*/React.forwardRef(function IotConnect(_ref83, ref) {
2012
- var children = _ref83.children,
2013
- _ref83$size = _ref83.size,
2014
- size = _ref83$size === undefined ? 16 : _ref83$size,
2015
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref83, _excluded83);
2016
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2017
- width: size,
2018
- height: size,
2019
- ref: ref,
2020
- xmlns: "http://www.w3.org/2000/svg",
2021
- viewBox: "0 0 32 32",
2022
- fill: "currentColor"
2023
- }, rest), _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
2024
- 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"
2025
- })), _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
2026
- 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"
2027
- })), children);
2028
- });
2029
- if (process.env.NODE_ENV !== "production") {
2030
- IotConnect.propTypes = iconPropTypes4cbeb95d.i;
2031
- }
2032
- var IotPlatform = /*#__PURE__*/React.forwardRef(function IotPlatform(_ref84, ref) {
2033
- var children = _ref84.children,
2034
- _ref84$size = _ref84.size,
2035
- size = _ref84$size === undefined ? 16 : _ref84$size,
2036
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref84, _excluded84);
2037
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2038
- width: size,
2039
- height: size,
2040
- ref: ref,
2041
- xmlns: "http://www.w3.org/2000/svg",
2042
- viewBox: "0 0 32 32",
2043
- fill: "currentColor"
2044
- }, rest), _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
2045
- 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"
2046
- })), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
2047
- d: "M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z"
2048
- })), _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
2049
- d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z"
2050
- })), children);
2051
- });
2052
- if (process.env.NODE_ENV !== "production") {
2053
- IotPlatform.propTypes = iconPropTypes4cbeb95d.i;
2054
- }
2055
- var Ip = /*#__PURE__*/React.forwardRef(function Ip(_ref85, ref) {
2056
- var children = _ref85.children,
2057
- _ref85$size = _ref85.size,
2058
- size = _ref85$size === undefined ? 16 : _ref85$size,
2059
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref85, _excluded85);
2060
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2061
- width: size,
2062
- height: size,
2063
- ref: ref,
2064
- xmlns: "http://www.w3.org/2000/svg",
2065
- viewBox: "0 0 32 32",
2066
- fill: "currentColor"
2067
- }, rest), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
2068
- strokeWidth: "0",
2069
- 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"
2070
- })), children);
2071
- });
2072
- if (process.env.NODE_ENV !== "production") {
2073
- Ip.propTypes = iconPropTypes4cbeb95d.i;
2074
- }
2075
- var Iso = /*#__PURE__*/React.forwardRef(function Iso(_ref86, ref) {
2076
- var children = _ref86.children,
2077
- _ref86$size = _ref86.size,
2078
- size = _ref86$size === undefined ? 16 : _ref86$size,
2079
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref86, _excluded86);
2080
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2081
- width: size,
2082
- height: size,
2083
- ref: ref,
2084
- xmlns: "http://www.w3.org/2000/svg",
2085
- viewBox: "0 0 32 32",
2086
- fill: "currentColor"
2087
- }, rest), _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
2088
- 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"
2089
- })), children);
2090
- });
2091
- if (process.env.NODE_ENV !== "production") {
2092
- Iso.propTypes = iconPropTypes4cbeb95d.i;
2093
- }
2094
- var IsoFilled = /*#__PURE__*/React.forwardRef(function IsoFilled(_ref87, ref) {
2095
- var children = _ref87.children,
2096
- _ref87$size = _ref87.size,
2097
- size = _ref87$size === undefined ? 16 : _ref87$size,
2098
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref87, _excluded87);
2099
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2100
- width: size,
2101
- height: size,
2102
- ref: ref,
2103
- xmlns: "http://www.w3.org/2000/svg",
2104
- viewBox: "0 0 32 32",
2105
- fill: "currentColor"
2106
- }, rest), _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
2107
- d: "M21 13H24V19H21z"
2108
- })), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
2109
- 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"
2110
- })), children);
2111
- });
2112
- if (process.env.NODE_ENV !== "production") {
2113
- IsoFilled.propTypes = iconPropTypes4cbeb95d.i;
2114
- }
2115
- var IsoOutline = /*#__PURE__*/React.forwardRef(function IsoOutline(_ref88, ref) {
2116
- var children = _ref88.children,
2117
- _ref88$size = _ref88.size,
2118
- size = _ref88$size === undefined ? 16 : _ref88$size,
2119
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref88, _excluded88);
2120
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2121
- width: size,
2122
- height: size,
2123
- ref: ref,
2124
- xmlns: "http://www.w3.org/2000/svg",
2125
- viewBox: "0 0 32 32",
2126
- fill: "currentColor"
2127
- }, rest), _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
2128
- 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"
2129
- })), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
2130
- 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"
2131
- })), children);
2132
- });
2133
- if (process.env.NODE_ENV !== "production") {
2134
- IsoOutline.propTypes = iconPropTypes4cbeb95d.i;
2135
- }
2136
- var JobDaemon = /*#__PURE__*/React.forwardRef(function JobDaemon(_ref89, ref) {
2137
- var children = _ref89.children,
2138
- _ref89$size = _ref89.size,
2139
- size = _ref89$size === undefined ? 16 : _ref89$size,
2140
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref89, _excluded89);
2141
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2142
- width: size,
2143
- height: size,
2144
- ref: ref,
2145
- xmlns: "http://www.w3.org/2000/svg",
2146
- viewBox: "0 0 32 32",
2147
- fill: "currentColor"
2148
- }, rest), _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
2149
- 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"
2150
- })), children);
2151
- });
2152
- if (process.env.NODE_ENV !== "production") {
2153
- JobDaemon.propTypes = iconPropTypes4cbeb95d.i;
2154
- }
2155
- var JobRun = /*#__PURE__*/React.forwardRef(function JobRun(_ref90, ref) {
2156
- var children = _ref90.children,
2157
- _ref90$size = _ref90.size,
2158
- size = _ref90$size === undefined ? 16 : _ref90$size,
2159
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref90, _excluded90);
2160
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2161
- width: size,
2162
- height: size,
2163
- ref: ref,
2164
- xmlns: "http://www.w3.org/2000/svg",
2165
- viewBox: "0 0 32 32",
2166
- fill: "currentColor"
2167
- }, rest), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
2168
- 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"
2169
- })), children);
2170
- });
2171
- if (process.env.NODE_ENV !== "production") {
2172
- JobRun.propTypes = iconPropTypes4cbeb95d.i;
2173
- }
2174
- var JoinFull = /*#__PURE__*/React.forwardRef(function JoinFull(_ref91, ref) {
2175
- var children = _ref91.children,
2176
- _ref91$size = _ref91.size,
2177
- size = _ref91$size === undefined ? 16 : _ref91$size,
2178
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref91, _excluded91);
2179
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2180
- width: size,
2181
- height: size,
2182
- ref: ref,
2183
- xmlns: "http://www.w3.org/2000/svg",
2184
- viewBox: "0 0 32 32",
2185
- fill: "currentColor"
2186
- }, rest), _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
2187
- fill: "none",
2188
- 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",
2189
- "data-icon-path": "inner-path"
2190
- })), _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
2191
- 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"
2192
- })), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
2193
- d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z"
2194
- })), _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
2195
- 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"
2196
- })), children);
2197
- });
2198
- if (process.env.NODE_ENV !== "production") {
2199
- JoinFull.propTypes = iconPropTypes4cbeb95d.i;
2200
- }
2201
- var JoinInner = /*#__PURE__*/React.forwardRef(function JoinInner(_ref92, ref) {
2202
- var children = _ref92.children,
2203
- _ref92$size = _ref92.size,
2204
- size = _ref92$size === undefined ? 16 : _ref92$size,
2205
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref92, _excluded92);
2206
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2207
- width: size,
2208
- height: size,
2209
- ref: ref,
2210
- xmlns: "http://www.w3.org/2000/svg",
2211
- viewBox: "0 0 32 32",
2212
- fill: "currentColor"
2213
- }, rest), _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
2214
- 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"
2215
- })), children);
2216
- });
2217
- if (process.env.NODE_ENV !== "production") {
2218
- JoinInner.propTypes = iconPropTypes4cbeb95d.i;
2219
- }
2220
- var JoinLeft = /*#__PURE__*/React.forwardRef(function JoinLeft(_ref93, ref) {
2221
- var children = _ref93.children,
2222
- _ref93$size = _ref93.size,
2223
- size = _ref93$size === undefined ? 16 : _ref93$size,
2224
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref93, _excluded93);
2225
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2226
- width: size,
2227
- height: size,
2228
- ref: ref,
2229
- xmlns: "http://www.w3.org/2000/svg",
2230
- viewBox: "0 0 32 32",
2231
- fill: "currentColor"
2232
- }, rest), _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
2233
- 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"
2234
- })), _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
2235
- 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"
2236
- })), _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
2237
- fill: "none",
2238
- 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",
2239
- "data-icon-path": "inner-path"
2240
- })), _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
2241
- 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"
2242
- })), children);
2243
- });
2244
- if (process.env.NODE_ENV !== "production") {
2245
- JoinLeft.propTypes = iconPropTypes4cbeb95d.i;
2246
- }
2247
- var JoinOuter = /*#__PURE__*/React.forwardRef(function JoinOuter(_ref94, ref) {
2248
- var children = _ref94.children,
2249
- _ref94$size = _ref94.size,
2250
- size = _ref94$size === undefined ? 16 : _ref94$size,
2251
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref94, _excluded94);
2252
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2253
- width: size,
2254
- height: size,
2255
- ref: ref,
2256
- xmlns: "http://www.w3.org/2000/svg",
2257
- viewBox: "0 0 32 32",
2258
- fill: "currentColor"
2259
- }, rest), _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
2260
- 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"
2261
- })), children);
2262
- });
2263
- if (process.env.NODE_ENV !== "production") {
2264
- JoinOuter.propTypes = iconPropTypes4cbeb95d.i;
2265
- }
2266
- var JoinRight = /*#__PURE__*/React.forwardRef(function JoinRight(_ref95, ref) {
2267
- var children = _ref95.children,
2268
- _ref95$size = _ref95.size,
2269
- size = _ref95$size === undefined ? 16 : _ref95$size,
2270
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref95, _excluded95);
2271
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2272
- width: size,
2273
- height: size,
2274
- ref: ref,
2275
- xmlns: "http://www.w3.org/2000/svg",
2276
- viewBox: "0 0 32 32",
2277
- fill: "currentColor"
2278
- }, rest), _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
2279
- 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"
2280
- })), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
2281
- fill: "none",
2282
- 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",
2283
- "data-icon-path": "inner-path"
2284
- })), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
2285
- 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"
2286
- })), _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
2287
- 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"
2288
- })), children);
2289
- });
2290
- if (process.env.NODE_ENV !== "production") {
2291
- JoinRight.propTypes = iconPropTypes4cbeb95d.i;
2292
- }
2293
- var JoinNode = /*#__PURE__*/React.forwardRef(function JoinNode(_ref96, ref) {
2294
- var children = _ref96.children,
2295
- _ref96$size = _ref96.size,
2296
- size = _ref96$size === undefined ? 16 : _ref96$size,
2297
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref96, _excluded96);
2298
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2299
- width: size,
2300
- height: size,
2301
- ref: ref,
2302
- xmlns: "http://www.w3.org/2000/svg",
2303
- viewBox: "0 0 32 32",
2304
- fill: "currentColor"
2305
- }, rest), _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
2306
- strokeWidth: "0",
2307
- 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"
2308
- })), children);
2309
- });
2310
- if (process.env.NODE_ENV !== "production") {
2311
- JoinNode.propTypes = iconPropTypes4cbeb95d.i;
2312
- }
2313
- var Jpg = /*#__PURE__*/React.forwardRef(function Jpg(_ref97, ref) {
2314
- var children = _ref97.children,
2315
- _ref97$size = _ref97.size,
2316
- size = _ref97$size === undefined ? 16 : _ref97$size,
2317
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref97, _excluded97);
2318
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2319
- width: size,
2320
- height: size,
2321
- ref: ref,
2322
- xmlns: "http://www.w3.org/2000/svg",
2323
- viewBox: "0 0 32 32",
2324
- fill: "currentColor"
2325
- }, rest), _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
2326
- 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"
2327
- })), children);
2328
- });
2329
- if (process.env.NODE_ENV !== "production") {
2330
- Jpg.propTypes = iconPropTypes4cbeb95d.i;
2331
- }
2332
- var JsError = /*#__PURE__*/React.forwardRef(function JsError(_ref98, ref) {
2333
- var children = _ref98.children,
2334
- _ref98$size = _ref98.size,
2335
- size = _ref98$size === undefined ? 16 : _ref98$size,
2336
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref98, _excluded98);
2337
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2338
- width: size,
2339
- height: size,
2340
- ref: ref,
2341
- xmlns: "http://www.w3.org/2000/svg",
2342
- viewBox: "0 0 32 32",
2343
- fill: "currentColor"
2344
- }, rest), _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
2345
- 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"
2346
- })), _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
2347
- 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"
2348
- })), children);
2349
- });
2350
- if (process.env.NODE_ENV !== "production") {
2351
- JsError.propTypes = iconPropTypes4cbeb95d.i;
2352
- }
2353
- var Json = /*#__PURE__*/React.forwardRef(function Json(_ref99, ref) {
2354
- var children = _ref99.children,
2355
- _ref99$size = _ref99.size,
2356
- size = _ref99$size === undefined ? 16 : _ref99$size,
2357
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref99, _excluded99);
2358
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2359
- width: size,
2360
- height: size,
2361
- ref: ref,
2362
- xmlns: "http://www.w3.org/2000/svg",
2363
- viewBox: "0 0 32 32",
2364
- fill: "currentColor"
2365
- }, rest), _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
2366
- 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"
2367
- })), children);
2368
- });
2369
- if (process.env.NODE_ENV !== "production") {
2370
- Json.propTypes = iconPropTypes4cbeb95d.i;
2371
- }
2372
- var JsonReference = /*#__PURE__*/React.forwardRef(function JsonReference(_ref100, ref) {
2373
- var children = _ref100.children,
2374
- _ref100$size = _ref100.size,
2375
- size = _ref100$size === undefined ? 16 : _ref100$size,
2376
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref100, _excluded100);
2377
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2378
- width: size,
2379
- height: size,
2380
- ref: ref,
2381
- xmlns: "http://www.w3.org/2000/svg",
2382
- viewBox: "0 0 32 32",
2383
- fill: "currentColor"
2384
- }, rest), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
2385
- 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"
2386
- })), children);
2387
- });
2388
- if (process.env.NODE_ENV !== "production") {
2389
- JsonReference.propTypes = iconPropTypes4cbeb95d.i;
2390
- }
2391
- var JumpLink = /*#__PURE__*/React.forwardRef(function JumpLink(_ref101, ref) {
2392
- var children = _ref101.children,
2393
- _ref101$size = _ref101.size,
2394
- size = _ref101$size === undefined ? 16 : _ref101$size,
2395
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref101, _excluded101);
2396
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2397
- width: size,
2398
- height: size,
2399
- ref: ref,
2400
- xmlns: "http://www.w3.org/2000/svg",
2401
- viewBox: "0 0 32 32",
2402
- fill: "currentColor"
2403
- }, rest), _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
2404
- 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"
2405
- })), children);
2406
- });
2407
- if (process.env.NODE_ENV !== "production") {
2408
- JumpLink.propTypes = iconPropTypes4cbeb95d.i;
2409
- }
2410
- var KeepDry = /*#__PURE__*/React.forwardRef(function KeepDry(_ref102, ref) {
2411
- var children = _ref102.children,
2412
- _ref102$size = _ref102.size,
2413
- size = _ref102$size === undefined ? 16 : _ref102$size,
2414
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref102, _excluded102);
2415
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2416
- width: size,
2417
- height: size,
2418
- ref: ref,
2419
- xmlns: "http://www.w3.org/2000/svg",
2420
- viewBox: "0 0 32 32",
2421
- fill: "currentColor"
2422
- }, rest), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
2423
- 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"
2424
- })), _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
2425
- 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"
2426
- })), children);
2427
- });
2428
- if (process.env.NODE_ENV !== "production") {
2429
- KeepDry.propTypes = iconPropTypes4cbeb95d.i;
2430
- }
2431
- var Key = /*#__PURE__*/React.forwardRef(function Key(_ref103, ref) {
2432
- var children = _ref103.children,
2433
- _ref103$size = _ref103.size,
2434
- size = _ref103$size === undefined ? 16 : _ref103$size,
2435
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref103, _excluded103);
2436
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2437
- width: size,
2438
- height: size,
2439
- ref: ref,
2440
- xmlns: "http://www.w3.org/2000/svg",
2441
- viewBox: "0 0 32 32",
2442
- fill: "currentColor"
2443
- }, rest), _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
2444
- strokeWidth: "0",
2445
- 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"
2446
- })), children);
2447
- });
2448
- if (process.env.NODE_ENV !== "production") {
2449
- Key.propTypes = iconPropTypes4cbeb95d.i;
2450
- }
2451
- var Keyboard = /*#__PURE__*/React.forwardRef(function Keyboard(_ref104, ref) {
2452
- var children = _ref104.children,
2453
- _ref104$size = _ref104.size,
2454
- size = _ref104$size === undefined ? 16 : _ref104$size,
2455
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref104, _excluded104);
2456
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2457
- width: size,
2458
- height: size,
2459
- ref: ref,
2460
- xmlns: "http://www.w3.org/2000/svg",
2461
- viewBox: "0 0 32 32",
2462
- fill: "currentColor"
2463
- }, rest), _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
2464
- 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"
2465
- })), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
2466
- d: "M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z"
2467
- })), children);
2468
- });
2469
- if (process.env.NODE_ENV !== "production") {
2470
- Keyboard.propTypes = iconPropTypes4cbeb95d.i;
2471
- }
2472
- var KeyboardOff = /*#__PURE__*/React.forwardRef(function KeyboardOff(_ref105, ref) {
2473
- var children = _ref105.children,
2474
- _ref105$size = _ref105.size,
2475
- size = _ref105$size === undefined ? 16 : _ref105$size,
2476
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref105, _excluded105);
2477
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2478
- width: size,
2479
- height: size,
2480
- ref: ref,
2481
- xmlns: "http://www.w3.org/2000/svg",
2482
- viewBox: "0 0 32 32",
2483
- fill: "currentColor"
2484
- }, rest), _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
2485
- d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z"
2486
- })), _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
2487
- 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"
2488
- })), children);
2489
- });
2490
- if (process.env.NODE_ENV !== "production") {
2491
- KeyboardOff.propTypes = iconPropTypes4cbeb95d.i;
2492
- }
2493
- var Kubelet = /*#__PURE__*/React.forwardRef(function Kubelet(_ref106, ref) {
2494
- var children = _ref106.children,
2495
- _ref106$size = _ref106.size,
2496
- size = _ref106$size === undefined ? 16 : _ref106$size,
2497
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref106, _excluded106);
2498
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2499
- width: size,
2500
- height: size,
2501
- ref: ref,
2502
- xmlns: "http://www.w3.org/2000/svg",
2503
- viewBox: "0 0 32 32",
2504
- fill: "currentColor"
2505
- }, rest), _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
2506
- strokeWidth: "0",
2507
- 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"
2508
- })), _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
2509
- strokeWidth: "0",
2510
- d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
2511
- })), children);
2512
- });
2513
- if (process.env.NODE_ENV !== "production") {
2514
- Kubelet.propTypes = iconPropTypes4cbeb95d.i;
2515
- }
2516
- var Kubernetes = /*#__PURE__*/React.forwardRef(function Kubernetes(_ref107, ref) {
2517
- var children = _ref107.children,
2518
- _ref107$size = _ref107.size,
2519
- size = _ref107$size === undefined ? 16 : _ref107$size,
2520
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref107, _excluded107);
2521
- if (process.env.NODE_ENV !== "production") {
2522
- if (!didWarnAboutDeprecation["Kubernetes"]) {
2523
- didWarnAboutDeprecation["Kubernetes"] = true;
2524
- 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.");
2525
- }
2526
- }
2527
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2528
- width: size,
2529
- height: size,
2530
- ref: ref,
2531
- xmlns: "http://www.w3.org/2000/svg",
2532
- viewBox: "0 0 32 32",
2533
- fill: "currentColor"
2534
- }, rest), _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
2535
- 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"
2536
- })), children);
2537
- });
2538
- if (process.env.NODE_ENV !== "production") {
2539
- Kubernetes.propTypes = iconPropTypes4cbeb95d.i;
2540
- }
2541
- var KubernetesControlPlaneNode = /*#__PURE__*/React.forwardRef(function KubernetesControlPlaneNode(_ref108, ref) {
2542
- var children = _ref108.children,
2543
- _ref108$size = _ref108.size,
2544
- size = _ref108$size === undefined ? 16 : _ref108$size,
2545
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref108, _excluded108);
2546
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2547
- width: size,
2548
- height: size,
2549
- ref: ref,
2550
- xmlns: "http://www.w3.org/2000/svg",
2551
- viewBox: "0 0 32 32",
2552
- fill: "currentColor"
2553
- }, rest), _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
2554
- 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"
2555
- })), _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
2556
- 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"
2557
- })), _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
2558
- fill: "none",
2559
- d: "M0 0h32v32H0z"
2560
- })), children);
2561
- });
2562
- if (process.env.NODE_ENV !== "production") {
2563
- KubernetesControlPlaneNode.propTypes = iconPropTypes4cbeb95d.i;
2564
- }
2565
- var KubernetesIpAddress = /*#__PURE__*/React.forwardRef(function KubernetesIpAddress(_ref109, ref) {
2566
- var children = _ref109.children,
2567
- _ref109$size = _ref109.size,
2568
- size = _ref109$size === undefined ? 16 : _ref109$size,
2569
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref109, _excluded109);
2570
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2571
- width: size,
2572
- height: size,
2573
- ref: ref,
2574
- xmlns: "http://www.w3.org/2000/svg",
2575
- viewBox: "0 0 32 32",
2576
- fill: "currentColor"
2577
- }, rest), _circle31 || (_circle31 = /*#__PURE__*/React.createElement("circle", {
2578
- cx: "16",
2579
- cy: "9",
2580
- r: "2"
2581
- })), _circle32 || (_circle32 = /*#__PURE__*/React.createElement("circle", {
2582
- cx: "16",
2583
- cy: "16",
2584
- r: "2"
2585
- })), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
2586
- 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"
2587
- })), children);
2588
- });
2589
- if (process.env.NODE_ENV !== "production") {
2590
- KubernetesIpAddress.propTypes = iconPropTypes4cbeb95d.i;
2591
- }
2592
- var KubernetesOperator = /*#__PURE__*/React.forwardRef(function KubernetesOperator(_ref110, ref) {
2593
- var children = _ref110.children,
2594
- _ref110$size = _ref110.size,
2595
- size = _ref110$size === undefined ? 16 : _ref110$size,
2596
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref110, _excluded110);
2597
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2598
- width: size,
2599
- height: size,
2600
- ref: ref,
2601
- xmlns: "http://www.w3.org/2000/svg",
2602
- viewBox: "0 0 32 32",
2603
- fill: "currentColor"
2604
- }, rest), _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
2605
- strokeWidth: "0",
2606
- 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"
2607
- })), _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
2608
- strokeWidth: "0",
2609
- 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"
2610
- })), children);
2611
- });
2612
- if (process.env.NODE_ENV !== "production") {
2613
- KubernetesOperator.propTypes = iconPropTypes4cbeb95d.i;
2614
- }
2615
- var KubernetesPod = /*#__PURE__*/React.forwardRef(function KubernetesPod(_ref111, ref) {
2616
- var children = _ref111.children,
2617
- _ref111$size = _ref111.size,
2618
- size = _ref111$size === undefined ? 16 : _ref111$size,
2619
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref111, _excluded111);
2620
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2621
- width: size,
2622
- height: size,
2623
- ref: ref,
2624
- xmlns: "http://www.w3.org/2000/svg",
2625
- viewBox: "0 0 32 32",
2626
- fill: "currentColor"
2627
- }, rest), _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
2628
- 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"
2629
- })), _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
2630
- 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"
2631
- })), children);
2632
- });
2633
- if (process.env.NODE_ENV !== "production") {
2634
- KubernetesPod.propTypes = iconPropTypes4cbeb95d.i;
2635
- }
2636
- var KubernetesWorkerNode = /*#__PURE__*/React.forwardRef(function KubernetesWorkerNode(_ref112, ref) {
2637
- var children = _ref112.children,
2638
- _ref112$size = _ref112.size,
2639
- size = _ref112$size === undefined ? 16 : _ref112$size,
2640
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref112, _excluded112);
2641
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2642
- width: size,
2643
- height: size,
2644
- ref: ref,
2645
- xmlns: "http://www.w3.org/2000/svg",
2646
- viewBox: "0 0 32 32",
2647
- fill: "currentColor"
2648
- }, rest), _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
2649
- 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"
2650
- })), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
2651
- 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"
2652
- })), _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
2653
- fill: "none",
2654
- d: "M0 0h32v32H0z"
2655
- })), children);
2656
- });
2657
- if (process.env.NODE_ENV !== "production") {
2658
- KubernetesWorkerNode.propTypes = iconPropTypes4cbeb95d.i;
2659
- }
2660
- var Label = /*#__PURE__*/React.forwardRef(function Label(_ref113, ref) {
2661
- var children = _ref113.children,
2662
- _ref113$size = _ref113.size,
2663
- size = _ref113$size === undefined ? 16 : _ref113$size,
2664
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref113, _excluded113);
2665
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2666
- width: size,
2667
- height: size,
2668
- ref: ref,
2669
- xmlns: "http://www.w3.org/2000/svg",
2670
- viewBox: "0 0 32 32",
2671
- fill: "currentColor"
2672
- }, rest), _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
2673
- 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"
2674
- })), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
2675
- 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"
2676
- })), children);
2677
- });
2678
- if (process.env.NODE_ENV !== "production") {
2679
- Label.propTypes = iconPropTypes4cbeb95d.i;
2680
- }
2681
- var Language = /*#__PURE__*/React.forwardRef(function Language(_ref114, ref) {
2682
- var children = _ref114.children,
2683
- _ref114$size = _ref114.size,
2684
- size = _ref114$size === undefined ? 16 : _ref114$size,
2685
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref114, _excluded114);
2686
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2687
- width: size,
2688
- height: size,
2689
- ref: ref,
2690
- xmlns: "http://www.w3.org/2000/svg",
2691
- viewBox: "0 0 32 32",
2692
- fill: "currentColor"
2693
- }, rest), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
2694
- 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"
2695
- })), children);
2696
- });
2697
- if (process.env.NODE_ENV !== "production") {
2698
- Language.propTypes = iconPropTypes4cbeb95d.i;
2699
- }
2700
- var Laptop = /*#__PURE__*/React.forwardRef(function Laptop(_ref115, ref) {
2701
- var children = _ref115.children,
2702
- _ref115$size = _ref115.size,
2703
- size = _ref115$size === undefined ? 16 : _ref115$size,
2704
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref115, _excluded115);
2705
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2706
- width: size,
2707
- height: size,
2708
- ref: ref,
2709
- xmlns: "http://www.w3.org/2000/svg",
2710
- viewBox: "0 0 32 32",
2711
- fill: "currentColor"
2712
- }, rest), _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
2713
- 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",
2714
- transform: "translate(0 .005)"
2715
- })), _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
2716
- d: "M2 26.005H30V28.005H2z"
2717
- })), children);
2718
- });
2719
- if (process.env.NODE_ENV !== "production") {
2720
- Laptop.propTypes = iconPropTypes4cbeb95d.i;
2721
- }
2722
- var Lasso = /*#__PURE__*/React.forwardRef(function Lasso(_ref116, ref) {
2723
- var children = _ref116.children,
2724
- _ref116$size = _ref116.size,
2725
- size = _ref116$size === undefined ? 16 : _ref116$size,
2726
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref116, _excluded116);
2727
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2728
- width: size,
2729
- height: size,
2730
- ref: ref,
2731
- xmlns: "http://www.w3.org/2000/svg",
2732
- viewBox: "0 0 32 32",
2733
- fill: "currentColor"
2734
- }, rest), _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
2735
- 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"
2736
- })), children);
2737
- });
2738
- if (process.env.NODE_ENV !== "production") {
2739
- Lasso.propTypes = iconPropTypes4cbeb95d.i;
2740
- }
2741
- var LassoPolygon = /*#__PURE__*/React.forwardRef(function LassoPolygon(_ref117, ref) {
2742
- var children = _ref117.children,
2743
- _ref117$size = _ref117.size,
2744
- size = _ref117$size === undefined ? 16 : _ref117$size,
2745
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref117, _excluded117);
2746
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2747
- width: size,
2748
- height: size,
2749
- ref: ref,
2750
- xmlns: "http://www.w3.org/2000/svg",
2751
- viewBox: "0 0 32 32",
2752
- fill: "currentColor"
2753
- }, rest), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
2754
- 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"
2755
- })), children);
2756
- });
2757
- if (process.env.NODE_ENV !== "production") {
2758
- LassoPolygon.propTypes = iconPropTypes4cbeb95d.i;
2759
- }
2760
- var Launch = /*#__PURE__*/React.forwardRef(function Launch(_ref118, ref) {
2761
- var children = _ref118.children,
2762
- _ref118$size = _ref118.size,
2763
- size = _ref118$size === undefined ? 16 : _ref118$size,
2764
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref118, _excluded118);
2765
- if (size === 16 || size === "16" || size === "16px") {
2766
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2767
- width: size,
2768
- height: size,
2769
- ref: ref,
2770
- xmlns: "http://www.w3.org/2000/svg",
2771
- viewBox: "0 0 16 16",
2772
- fill: "currentColor"
2773
- }, rest), _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
2774
- 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"
2775
- })), _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
2776
- d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"
2777
- })), children);
2778
- }
2779
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2780
- width: size,
2781
- height: size,
2782
- ref: ref,
2783
- xmlns: "http://www.w3.org/2000/svg",
2784
- viewBox: "0 0 32 32",
2785
- fill: "currentColor"
2786
- }, rest), _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
2787
- 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"
2788
- })), _path221 || (_path221 = /*#__PURE__*/React.createElement("path", {
2789
- d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"
2790
- })), children);
2791
- });
2792
- if (process.env.NODE_ENV !== "production") {
2793
- Launch.propTypes = iconPropTypes4cbeb95d.i;
2794
- }
2795
- var WatsonHealthLaunchStudy_1 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_1(_ref119, ref) {
2796
- var children = _ref119.children,
2797
- _ref119$size = _ref119.size,
2798
- size = _ref119$size === undefined ? 16 : _ref119$size,
2799
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref119, _excluded119);
2800
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2801
- width: size,
2802
- height: size,
2803
- ref: ref,
2804
- xmlns: "http://www.w3.org/2000/svg",
2805
- viewBox: "0 0 32 32",
2806
- fill: "currentColor"
2807
- }, rest), _circle33 || (_circle33 = /*#__PURE__*/React.createElement("circle", {
2808
- cx: "23",
2809
- cy: "25",
2810
- r: "1"
2811
- })), _path222 || (_path222 = /*#__PURE__*/React.createElement("path", {
2812
- 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"
2813
- })), _path223 || (_path223 = /*#__PURE__*/React.createElement("path", {
2814
- d: "M8 24H20V26H8z"
2815
- })), children);
2816
- });
2817
- if (process.env.NODE_ENV !== "production") {
2818
- WatsonHealthLaunchStudy_1.propTypes = iconPropTypes4cbeb95d.i;
2819
- }
2820
- var WatsonHealthLaunchStudy_2 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_2(_ref120, ref) {
2821
- var children = _ref120.children,
2822
- _ref120$size = _ref120.size,
2823
- size = _ref120$size === undefined ? 16 : _ref120$size,
2824
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref120, _excluded120);
2825
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2826
- width: size,
2827
- height: size,
2828
- ref: ref,
2829
- xmlns: "http://www.w3.org/2000/svg",
2830
- viewBox: "0 0 32 32",
2831
- fill: "currentColor"
2832
- }, rest), _circle34 || (_circle34 = /*#__PURE__*/React.createElement("circle", {
2833
- cx: "23",
2834
- cy: "7",
2835
- r: "1"
2836
- })), _path224 || (_path224 = /*#__PURE__*/React.createElement("path", {
2837
- 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"
2838
- })), _path225 || (_path225 = /*#__PURE__*/React.createElement("path", {
2839
- d: "M8 6H20V8H8z"
2840
- })), children);
2841
- });
2842
- if (process.env.NODE_ENV !== "production") {
2843
- WatsonHealthLaunchStudy_2.propTypes = iconPropTypes4cbeb95d.i;
2844
- }
2845
- var WatsonHealthLaunchStudy_3 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_3(_ref121, ref) {
2846
- var children = _ref121.children,
2847
- _ref121$size = _ref121.size,
2848
- size = _ref121$size === undefined ? 16 : _ref121$size,
2849
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref121, _excluded121);
2850
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2851
- width: size,
2852
- height: size,
2853
- ref: ref,
2854
- xmlns: "http://www.w3.org/2000/svg",
2855
- viewBox: "0 0 32 32",
2856
- fill: "currentColor"
2857
- }, rest), _circle35 || (_circle35 = /*#__PURE__*/React.createElement("circle", {
2858
- cx: "23",
2859
- cy: "25",
2860
- r: "1"
2861
- })), _path226 || (_path226 = /*#__PURE__*/React.createElement("path", {
2862
- 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"
2863
- })), _path227 || (_path227 = /*#__PURE__*/React.createElement("path", {
2864
- d: "M20.59 10.59L16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59zM8 24H20V26H8z"
2865
- })), children);
2866
- });
2867
- if (process.env.NODE_ENV !== "production") {
2868
- WatsonHealthLaunchStudy_3.propTypes = iconPropTypes4cbeb95d.i;
2869
- }
2870
- var Layers = /*#__PURE__*/React.forwardRef(function Layers(_ref122, ref) {
2871
- var children = _ref122.children,
2872
- _ref122$size = _ref122.size,
2873
- size = _ref122$size === undefined ? 16 : _ref122$size,
2874
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref122, _excluded122);
2875
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2876
- width: size,
2877
- height: size,
2878
- ref: ref,
2879
- xmlns: "http://www.w3.org/2000/svg",
2880
- viewBox: "0 0 32 32",
2881
- fill: "currentColor"
2882
- }, rest), _path228 || (_path228 = /*#__PURE__*/React.createElement("path", {
2883
- 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"
2884
- })), _path229 || (_path229 = /*#__PURE__*/React.createElement("path", {
2885
- 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"
2886
- })), children);
2887
- });
2888
- if (process.env.NODE_ENV !== "production") {
2889
- Layers.propTypes = iconPropTypes4cbeb95d.i;
2890
- }
2891
- var LayersExternal = /*#__PURE__*/React.forwardRef(function LayersExternal(_ref123, ref) {
2892
- var children = _ref123.children,
2893
- _ref123$size = _ref123.size,
2894
- size = _ref123$size === undefined ? 16 : _ref123$size,
2895
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref123, _excluded123);
2896
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2897
- width: size,
2898
- height: size,
2899
- ref: ref,
2900
- xmlns: "http://www.w3.org/2000/svg",
2901
- viewBox: "0 0 32 32",
2902
- fill: "currentColor"
2903
- }, rest), _path230 || (_path230 = /*#__PURE__*/React.createElement("path", {
2904
- strokeWidth: "0",
2905
- 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"
2906
- })), _path231 || (_path231 = /*#__PURE__*/React.createElement("path", {
2907
- strokeWidth: "0",
2908
- 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"
2909
- })), children);
2910
- });
2911
- if (process.env.NODE_ENV !== "production") {
2912
- LayersExternal.propTypes = iconPropTypes4cbeb95d.i;
2913
- }
2914
- var Legend = /*#__PURE__*/React.forwardRef(function Legend(_ref124, ref) {
2915
- var children = _ref124.children,
2916
- _ref124$size = _ref124.size,
2917
- size = _ref124$size === undefined ? 16 : _ref124$size,
2918
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref124, _excluded124);
2919
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2920
- width: size,
2921
- height: size,
2922
- ref: ref,
2923
- xmlns: "http://www.w3.org/2000/svg",
2924
- viewBox: "0 0 32 32",
2925
- fill: "currentColor"
2926
- }, rest), _path232 || (_path232 = /*#__PURE__*/React.createElement("path", {
2927
- d: "M16 22H30V24H16z"
2928
- })), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
2929
- width: "6",
2930
- height: "6",
2931
- x: "4",
2932
- y: "20",
2933
- rx: "1"
2934
- })), _path233 || (_path233 = /*#__PURE__*/React.createElement("path", {
2935
- 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"
2936
- })), children);
2937
- });
2938
- if (process.env.NODE_ENV !== "production") {
2939
- Legend.propTypes = iconPropTypes4cbeb95d.i;
2940
- }
2941
- var LetterAa = /*#__PURE__*/React.forwardRef(function LetterAa(_ref125, ref) {
2942
- var children = _ref125.children,
2943
- _ref125$size = _ref125.size,
2944
- size = _ref125$size === undefined ? 16 : _ref125$size,
2945
- rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref125, _excluded125);
2946
- return /*#__PURE__*/React.createElement(Icon.default, _rollupPluginBabelHelpers.objectSpread2({
2947
- width: size,
2948
- height: size,
2949
- ref: ref,
2950
- xmlns: "http://www.w3.org/2000/svg",
2951
- viewBox: "0 0 32 32",
2952
- fill: "currentColor"
2953
- }, rest), _path234 || (_path234 = /*#__PURE__*/React.createElement("path", {
2954
- 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"
2955
- })), children);
2956
- });
2957
- if (process.env.NODE_ENV !== "production") {
2958
- LetterAa.propTypes = iconPropTypes4cbeb95d.i;
2959
- }
2960
-
2961
- exports.IbmWatsonOpenscale = IbmWatsonOpenscale;
2962
- exports.IbmWatsonOrders = IbmWatsonOrders;
2963
- exports.IbmWatsonQuery = IbmWatsonQuery;
2964
- exports.IbmWatsonSpeechToText = IbmWatsonSpeechToText;
2965
- exports.IbmWatsonStudio = IbmWatsonStudio;
2966
- exports.IbmWatsonTextToSpeech = IbmWatsonTextToSpeech;
2967
- exports.IbmWatsonToneAnalyzer = IbmWatsonToneAnalyzer;
2968
- exports.IbmWatsonxAssistant = IbmWatsonxAssistant;
2969
- exports.IbmWatsonxCodeAssistant = IbmWatsonxCodeAssistant;
2970
- exports.IbmWatsonxCodeAssistantForZ = IbmWatsonxCodeAssistantForZ;
2971
- exports.IbmWatsonxCodeAssistantForZRefactor = IbmWatsonxCodeAssistantForZRefactor;
2972
- exports.IbmWatsonxCodeAssistantForZValidationAssistant = IbmWatsonxCodeAssistantForZValidationAssistant;
2973
- exports.IbmWatsonxOrchestrate = IbmWatsonxOrchestrate;
2974
- exports.IbmZCloudModStack = IbmZCloudModStack;
2975
- exports.IbmZCloudProvisioning = IbmZCloudProvisioning;
2976
- exports.IbmZEnvironmentsDevSecOps = IbmZEnvironmentsDevSecOps;
2977
- exports.IbmZOpenEditor = IbmZOpenEditor;
2978
- exports.IbmZOs = IbmZOs;
2979
- exports.IbmZOsAiControlInterface = IbmZOsAiControlInterface;
2980
- exports.IbmZOsContainers = IbmZOsContainers;
2981
- exports.IbmZOsPackageManager = IbmZOsPackageManager;
2982
- exports.IbmZProcessorCapacityReference = IbmZProcessorCapacityReference;
2983
- exports.IceAccretion = IceAccretion;
2984
- exports.IceVision = IceVision;
2985
- exports.IdManagement = IdManagement;
2986
- exports.Idea = Idea;
2987
- exports.Identification = Identification;
2988
- exports.Image = Image;
2989
- exports.ImageCopy = ImageCopy;
2990
- exports.ImageMedical = ImageMedical;
2991
- exports.ImageReference = ImageReference;
2992
- exports.ImageSearch = ImageSearch;
2993
- exports.ImageSearchAlt = ImageSearchAlt;
2994
- exports.ImageService = ImageService;
2995
- exports.ImageStoreLocal = ImageStoreLocal;
2996
- exports.ImportExport = ImportExport;
2997
- exports.ImproveRelevance = ImproveRelevance;
2998
- exports.InProgress = InProgress;
2999
- exports.InProgressError = InProgressError;
3000
- exports.InProgressWarning = InProgressWarning;
3001
- exports.Incomplete = Incomplete;
3002
- exports.IncompleteCancel = IncompleteCancel;
3003
- exports.IncompleteError = IncompleteError;
3004
- exports.IncompleteWarning = IncompleteWarning;
3005
- exports.IncreaseLevel = IncreaseLevel;
3006
- exports.Industry = Industry;
3007
- exports.InfinitySymbol = InfinitySymbol;
3008
- exports.Information = Information;
3009
- exports.InformationDisabled = InformationDisabled;
3010
- exports.InformationFilled = InformationFilled;
3011
- exports.InformationSquare = InformationSquare;
3012
- exports.InformationSquareFilled = InformationSquareFilled;
3013
- exports.InfrastructureClassic = InfrastructureClassic;
3014
- exports.Insert = Insert;
3015
- exports.InsertPage = InsertPage;
3016
- exports.InsertSyntax = InsertSyntax;
3017
- exports.Inspection = Inspection;
3018
- exports.InstanceBx = InstanceBx;
3019
- exports.InstanceClassic = InstanceClassic;
3020
- exports.InstanceCx = InstanceCx;
3021
- exports.InstanceMx = InstanceMx;
3022
- exports.InstanceVirtual = InstanceVirtual;
3023
- exports.Integration = Integration;
3024
- exports.IntentRequestActive = IntentRequestActive;
3025
- exports.IntentRequestCreate = IntentRequestCreate;
3026
- exports.IntentRequestHeal = IntentRequestHeal;
3027
- exports.IntentRequestInactive = IntentRequestInactive;
3028
- exports.IntentRequestScaleIn = IntentRequestScaleIn;
3029
- exports.IntentRequestScaleOut = IntentRequestScaleOut;
3030
- exports.IntentRequestUninstall = IntentRequestUninstall;
3031
- exports.IntentRequestUpgrade = IntentRequestUpgrade;
3032
- exports.Interactions = Interactions;
3033
- exports.InterfaceUsage = InterfaceUsage;
3034
- exports.Intersect = Intersect;
3035
- exports.IntrusionPrevention = IntrusionPrevention;
3036
- exports.InventoryManagement = InventoryManagement;
3037
- exports.IotConnect = IotConnect;
3038
- exports.IotPlatform = IotPlatform;
3039
- exports.Ip = Ip;
3040
- exports.Iso = Iso;
3041
- exports.IsoFilled = IsoFilled;
3042
- exports.IsoOutline = IsoOutline;
3043
- exports.JobDaemon = JobDaemon;
3044
- exports.JobRun = JobRun;
3045
- exports.JoinFull = JoinFull;
3046
- exports.JoinInner = JoinInner;
3047
- exports.JoinLeft = JoinLeft;
3048
- exports.JoinNode = JoinNode;
3049
- exports.JoinOuter = JoinOuter;
3050
- exports.JoinRight = JoinRight;
3051
- exports.Jpg = Jpg;
3052
- exports.JsError = JsError;
3053
- exports.Json = Json;
3054
- exports.JsonReference = JsonReference;
3055
- exports.JumpLink = JumpLink;
3056
- exports.KeepDry = KeepDry;
3057
- exports.Key = Key;
3058
- exports.Keyboard = Keyboard;
3059
- exports.KeyboardOff = KeyboardOff;
3060
- exports.Kubelet = Kubelet;
3061
- exports.Kubernetes = Kubernetes;
3062
- exports.KubernetesControlPlaneNode = KubernetesControlPlaneNode;
3063
- exports.KubernetesIpAddress = KubernetesIpAddress;
3064
- exports.KubernetesOperator = KubernetesOperator;
3065
- exports.KubernetesPod = KubernetesPod;
3066
- exports.KubernetesWorkerNode = KubernetesWorkerNode;
3067
- exports.Label = Label;
3068
- exports.Language = Language;
3069
- exports.Laptop = Laptop;
3070
- exports.Lasso = Lasso;
3071
- exports.LassoPolygon = LassoPolygon;
3072
- exports.Launch = Launch;
3073
- exports.Layers = Layers;
3074
- exports.LayersExternal = LayersExternal;
3075
- exports.Legend = Legend;
3076
- exports.LetterAa = LetterAa;
3077
- exports.QID = QID;
3078
- exports.WatsonHealthICa_2D = WatsonHealthICa_2D;
3079
- exports.WatsonHealthImageAvailabilityLocal = WatsonHealthImageAvailabilityLocal;
3080
- exports.WatsonHealthImageAvailabilityRetrieving = WatsonHealthImageAvailabilityRetrieving;
3081
- exports.WatsonHealthImageAvailabilityUnavailable = WatsonHealthImageAvailabilityUnavailable;
3082
- exports.WatsonHealthInteractiveSegmentationCursor = WatsonHealthInteractiveSegmentationCursor;
3083
- exports.WatsonHealthLaunchStudy_1 = WatsonHealthLaunchStudy_1;
3084
- exports.WatsonHealthLaunchStudy_2 = WatsonHealthLaunchStudy_2;
3085
- exports.WatsonHealthLaunchStudy_3 = WatsonHealthLaunchStudy_3;