{"version":3,"file":"index-CAt1Kstz.js","sources":["../../node_modules/react-uid/dist/es2015/hooks.js","../../node_modules/baseui/esm/layer/layer.js","../../node_modules/popper.js/dist/esm/popper.js","../../node_modules/baseui/esm/layer/utils.js","../../node_modules/baseui/esm/layer/constants.js","../../node_modules/baseui/esm/layer/tether.js","../../app/javascript/utils/legal_policy_links.ts","../../node_modules/@carbon/icons-react/es/generated/bucket-6.js","../../node_modules/@carbon/icons-react/es/generated/bucket-9.js","../../node_modules/baseui/esm/form-control/styled-components.js","../../node_modules/baseui/esm/form-control/form-control.js","../../node_modules/baseui/esm/popover/constants.js","../../node_modules/baseui/esm/popover/stateful-container.js","../../node_modules/focus-lock/dist/es2015/constants.js","../../node_modules/use-callback-ref/dist/es2015/assignRef.js","../../node_modules/use-callback-ref/dist/es2015/useRef.js","../../node_modules/use-callback-ref/dist/es2015/useMergeRef.js","../../node_modules/react-focus-lock/dist/es2015/FocusGuard.js","../../node_modules/tslib/tslib.es6.mjs","../../node_modules/use-sidecar/dist/es2015/medium.js","../../node_modules/react-focus-lock/dist/es2015/medium.js","../../node_modules/react-focus-lock/dist/es2015/scope.js","../../node_modules/react-focus-lock/dist/es2015/Lock.js","../../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","../../node_modules/@babel/runtime/helpers/esm/inheritsLoose.js","../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js","../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","../../node_modules/@babel/runtime/helpers/esm/defineProperty.js","../../node_modules/react-clientside-effect/lib/index.es.js","../../node_modules/focus-lock/dist/es2015/utils/array.js","../../node_modules/focus-lock/dist/es2015/utils/is.js","../../node_modules/focus-lock/dist/es2015/utils/tabOrder.js","../../node_modules/focus-lock/dist/es2015/utils/tabbables.js","../../node_modules/focus-lock/dist/es2015/utils/tabUtils.js","../../node_modules/focus-lock/dist/es2015/utils/DOMutils.js","../../node_modules/focus-lock/dist/es2015/utils/all-affected.js","../../node_modules/focus-lock/dist/es2015/utils/safe.js","../../node_modules/focus-lock/dist/es2015/utils/getActiveElement.js","../../node_modules/focus-lock/dist/es2015/focusInside.js","../../node_modules/focus-lock/dist/es2015/focusIsHidden.js","../../node_modules/focus-lock/dist/es2015/utils/correctFocus.js","../../node_modules/focus-lock/dist/es2015/utils/firstFocus.js","../../node_modules/focus-lock/dist/es2015/solver.js","../../node_modules/focus-lock/dist/es2015/utils/auto-focus.js","../../node_modules/focus-lock/dist/es2015/utils/parenting.js","../../node_modules/focus-lock/dist/es2015/focusSolver.js","../../node_modules/focus-lock/dist/es2015/focusables.js","../../node_modules/focus-lock/dist/es2015/commands.js","../../node_modules/focus-lock/dist/es2015/moveFocusInside.js","../../node_modules/focus-lock/dist/es2015/return-focus.js","../../node_modules/focus-lock/dist/es2015/sibling.js","../../node_modules/react-focus-lock/dist/es2015/util.js","../../node_modules/react-focus-lock/dist/es2015/Trap.js","../../node_modules/react-focus-lock/dist/es2015/Combination.js","../../node_modules/react-focus-lock/dist/es2015/MoveFocusInside.js","../../node_modules/baseui/esm/popover/utils.js","../../node_modules/baseui/esm/popover/styled-components.js","../../node_modules/baseui/esm/popover/default-props.js","../../node_modules/baseui/esm/popover/popover.js","../../node_modules/baseui/esm/tooltip/default-props.js","../../node_modules/baseui/esm/tooltip/stateful-tooltip-container.js","../../node_modules/baseui/esm/tooltip/styled-components.js","../../node_modules/baseui/esm/tooltip/tooltip.js","../../node_modules/baseui/esm/tooltip/stateful-tooltip.js","../../node_modules/baseui/esm/button/constants.js","../../node_modules/baseui/esm/button/styled-components.js","../../node_modules/baseui/esm/button/utils.js","../../node_modules/baseui/esm/button/button-internals.js","../../node_modules/baseui/esm/button/default-props.js","../../node_modules/baseui/esm/button/button.js","../../app/javascript/components/components/base_ui/inputs/button/index.tsx","../../app/javascript/components/components/base_ui/surfaces/tooltip/index.tsx","../../app/javascript/components/components/base_ui/inputs/form_control/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport { useContext, useState } from 'react';\nimport { counter, getId, getPrefix, source } from './context';\nvar generateUID = function (context) {\n var quartz = context || counter;\n var prefix = getPrefix(quartz);\n var id = getId(quartz);\n var uid = prefix + id;\n var gen = function (item) { return uid + quartz.uid(item); };\n return { uid: uid, gen: gen };\n};\nvar useUIDState = function () {\n if (process.env.NODE_ENV !== 'production') {\n if (!('useContext' in React)) {\n throw new Error('Hooks API requires React 16.8+');\n }\n }\n var context = useContext(source);\n var uid = useState(function () { return generateUID(context); })[0];\n return uid;\n};\n/**\n * returns and unique id. SSR friendly\n * returns {String}\n * @see {@link UIDConsumer}\n * @see https://github.com/thearnica/react-uid#hooks-168\n * @example\n * const id = useUID();\n * id == 1; // for example\n */\nexport var useUID = function () {\n var uid = useUIDState().uid;\n return uid;\n};\n/**\n * returns an uid generator\n * @see {@link UIDConsumer}\n * @see https://github.com/thearnica/react-uid#hooks-168\n * @example\n * const uid = useUIDSeed();\n * return (\n * <>\n * \n * \n * {data.map(item =>
...
\n * \n * )\n */\nexport var useUIDSeed = function () {\n var gen = useUIDState().gen;\n return gen;\n};\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\n\n/* global document */\nimport * as React from 'react';\nimport ReactDOM from 'react-dom';\nimport { styled } from '../styles';\nimport { LayersContext, Consumer } from './layers-manager';\nvar Container = styled('div', function (_ref) {\n var $zIndex = _ref.$zIndex;\n return {\n position: 'absolute',\n top: 0,\n left: 0,\n right: 0,\n zIndex: $zIndex || null\n };\n});\nContainer.displayName = \"Container\";\n\nvar LayerComponent = /*#__PURE__*/function (_React$Component) {\n _inherits(LayerComponent, _React$Component);\n\n var _super = _createSuper(LayerComponent);\n\n function LayerComponent() {\n var _this;\n\n _classCallCheck(this, LayerComponent);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"context\", void 0);\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n container: null\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onEscape\", function () {\n if (_this.props.onEscape) {\n _this.props.onEscape();\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onKeyDown\", function (event) {\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(event);\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onKeyUp\", function (event) {\n if (_this.props.onKeyUp) {\n _this.props.onKeyUp(event);\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onKeyPress\", function (event) {\n if (_this.props.onKeyPress) {\n _this.props.onKeyPress(event);\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onDocumentClick\", function (event) {\n if (_this.props.onDocumentClick) {\n _this.props.onDocumentClick(event);\n }\n });\n\n return _this;\n }\n\n _createClass(LayerComponent, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.context.addEscapeHandler(this.onEscape);\n this.context.addKeyDownHandler(this.onKeyDown);\n this.context.addKeyUpHandler(this.onKeyUp);\n this.context.addKeyPressHandler(this.onKeyPress);\n\n if (!this.props.isHoverLayer) {\n this.context.addDocClickHandler(this.onDocumentClick);\n }\n\n var _this$props = this.props,\n onMount = _this$props.onMount,\n mountNode = _this$props.mountNode,\n layersManagerHost = _this$props.host;\n\n if (mountNode) {\n onMount && onMount();\n return;\n } // There was no LayersManager added if this.props.host === undefined.\n // Use document.body is the case no LayersManager is used.\n\n\n var hasLayersManager = layersManagerHost !== undefined;\n\n if (process.env.NODE_ENV !== \"production\") {\n if (!hasLayersManager) {\n console.warn('`LayersManager` was not found. This occurs if you are attempting to use a component requiring `Layer` without using the `BaseProvider` at the root of your app. Please visit https://baseweb.design/components/base-provider/ for more information');\n }\n }\n\n var host = hasLayersManager ? layersManagerHost : document.body;\n\n if (host) {\n this.addContainer(host);\n }\n } // @ts-ignore\n\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate(prevProps) {\n var _this$props2 = this.props,\n host = _this$props2.host,\n mountNode = _this$props2.mountNode;\n\n if (mountNode) {\n return;\n }\n\n if (host && host !== prevProps.host && prevProps.host === null) {\n this.addContainer(host);\n }\n\n if (prevProps.isHoverLayer != this.props.isHoverLayer) {\n if (this.props.isHoverLayer) {\n this.context.removeDocClickHandler(this.onDocumentClick);\n } else {\n this.context.addDocClickHandler(this.onDocumentClick);\n }\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.context.removeEscapeHandler(this.onEscape);\n this.context.removeKeyDownHandler(this.onKeyDown);\n this.context.removeKeyUpHandler(this.onKeyUp);\n this.context.removeKeyPressHandler(this.onKeyPress);\n this.context.removeDocClickHandler(this.onDocumentClick);\n\n if (this.props.onUnmount) {\n this.props.onUnmount();\n }\n\n var host = this.props.host;\n var container = this.state.container;\n\n if (host && container) {\n if (host.contains(container)) {\n host.removeChild(container);\n }\n }\n }\n }, {\n key: \"addContainer\",\n value: // @ts-ignore\n function addContainer(host) {\n var _this$props3 = this.props,\n index = _this$props3.index,\n mountNode = _this$props3.mountNode,\n onMount = _this$props3.onMount; // Do nothing if mountNode is provided\n\n if (mountNode) {\n return;\n }\n\n if (host) {\n var container = host.ownerDocument.createElement('div'); // `host` is an DOM node, but not a React component\n\n var sibling = typeof index === 'number' ? host.children[index] : null;\n sibling ? host.insertBefore(container, sibling) : host.appendChild(container);\n this.setState({\n container: container\n }, function () {\n onMount && onMount();\n });\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var container = this.state.container;\n var _this$props4 = this.props,\n children = _this$props4.children,\n mountNode = _this$props4.mountNode,\n zIndex = _this$props4.zIndex; // Only adding an additional wrapper when a layer has z-index to be set\n\n var childrenToRender = zIndex ? /*#__PURE__*/React.createElement(Container, {\n $zIndex: zIndex\n }, children) : children;\n\n if (typeof document !== 'undefined') {\n if (mountNode) {\n return /*#__PURE__*/ReactDOM.createPortal(childrenToRender, mountNode);\n } else if (container) {\n return /*#__PURE__*/ReactDOM.createPortal(childrenToRender, container);\n }\n\n return null;\n }\n\n return null;\n }\n }]);\n\n return LayerComponent;\n}(React.Component);\n\n_defineProperty(LayerComponent, \"contextType\", LayersContext);\n\nexport default function Layer(props) {\n return /*#__PURE__*/React.createElement(Consumer, null, function (_ref2) {\n var host = _ref2.host,\n zIndex = _ref2.zIndex;\n return /*#__PURE__*/React.createElement(LayerComponent, _extends({}, props, {\n host: host,\n zIndex: zIndex\n }));\n });\n}","/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.16.1\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && typeof navigator !== 'undefined';\n\nvar timeoutDuration = function () {\n var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\n for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n return 1;\n }\n }\n return 0;\n}();\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n window.Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n var window = element.ownerDocument.defaultView;\n var css = window.getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nfunction getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\n/**\n * Returns the reference node of the reference object, or the reference object itself.\n * @method\n * @memberof Popper.Utils\n * @param {Element|Object} reference - the reference element (the popper will be relative to this)\n * @returns {Element} parent\n */\nfunction getReferenceNode(reference) {\n return reference && reference.referenceNode ? reference.referenceNode : reference;\n}\n\nvar isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nvar isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nfunction isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nfunction getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n var noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n var offsetParent = element.offsetParent || null;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TH, TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nfunction findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n // Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n // Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return parseFloat(styles['border' + sideA + 'Width']) + parseFloat(styles['border' + sideB + 'Width']);\n}\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0);\n}\n\nfunction getWindowSizes(document) {\n var body = document.body;\n var html = document.documentElement;\n var computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } else {\n rect = element.getBoundingClientRect();\n }\n } catch (e) {}\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n // subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};\n var width = sizes.width || element.clientWidth || result.width;\n var height = sizes.height || element.clientHeight || result.height;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var isIE10 = isIE(10);\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = parseFloat(styles.borderTopWidth);\n var borderLeftWidth = parseFloat(styles.borderLeftWidth);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if (fixedPosition && isHTML) {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = parseFloat(styles.marginTop);\n var marginLeft = parseFloat(styles.marginLeft);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = !excludeScroll ? getScroll(html) : 0;\n var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n var parentNode = getParentNode(element);\n if (!parentNode) {\n return false;\n }\n return isFixed(parentNode);\n}\n\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nfunction getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n var el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n}\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n // NOTE: 1 DOM access here\n\n var boundaries = { top: 0, left: 0 };\n var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n\n // Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n } else {\n // Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition);\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(popper.ownerDocument),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n padding = padding || 0;\n var isPaddingNumber = typeof padding === 'number';\n boundaries.left += isPaddingNumber ? padding : padding.left || 0;\n boundaries.top += isPaddingNumber ? padding : padding.top || 0;\n boundaries.right -= isPaddingNumber ? padding : padding.right || 0;\n boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nfunction getReferenceOffsets(state, popper, reference) {\n var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n\n/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nfunction getOuterSizes(element) {\n var window = element.ownerDocument.defaultView;\n var styles = window.getComputedStyle(element);\n var x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0);\n var y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.
\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nfunction update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n\n data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n/**\n * Destroys the popper.\n * @method\n * @memberof Popper\n */\nfunction destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicitly asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction setupEventListeners(reference, options, state, updateBound) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger `onUpdate` callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n // add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nfunction applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n // compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n\n/**\n * @function\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Boolean} shouldRound - If the offsets should be rounded at all\n * @returns {Object} The popper's position offsets rounded\n *\n * The tale of pixel-perfect positioning. It's still not 100% perfect, but as\n * good as it can be within reason.\n * Discussion here: https://github.com/FezVrasta/popper.js/pull/715\n *\n * Low DPI screens cause a popper to be blurry if not using full pixels (Safari\n * as well on High DPI screens).\n *\n * Firefox prefers no rounding for positioning and does not have blurriness on\n * high DPI screens.\n *\n * Only horizontal placement and left/right values need to be considered.\n */\nfunction getRoundedOffsets(data, shouldRound) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n var round = Math.round,\n floor = Math.floor;\n\n var noRound = function noRound(v) {\n return v;\n };\n\n var referenceWidth = round(reference.width);\n var popperWidth = round(popper.width);\n\n var isVertical = ['left', 'right'].indexOf(data.placement) !== -1;\n var isVariation = data.placement.indexOf('-') !== -1;\n var sameWidthParity = referenceWidth % 2 === popperWidth % 2;\n var bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1;\n\n var horizontalToInteger = !shouldRound ? noRound : isVertical || isVariation || sameWidthParity ? round : floor;\n var verticalToInteger = !shouldRound ? noRound : round;\n\n return {\n left: horizontalToInteger(bothOddWidth && !isVariation && shouldRound ? popper.left - 1 : popper.left),\n top: verticalToInteger(popper.top),\n bottom: verticalToInteger(popper.bottom),\n right: horizontalToInteger(popper.right)\n };\n}\n\nvar isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent);\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n // Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n var styles = {\n position: popper.position\n };\n\n var offsets = getRoundedOffsets(data, window.devicePixelRatio < 2 || !isFirefox);\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n // when offsetParent is the positioning is relative to the bottom of the screen (excluding the scrollbar)\n // and not the bottom of the html element\n if (offsetParent.nodeName === 'HTML') {\n top = -offsetParent.clientHeight + offsets.bottom;\n } else {\n top = -offsetParentRect.height + offsets.bottom;\n }\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n if (offsetParent.nodeName === 'HTML') {\n left = -offsetParent.clientWidth + offsets.right;\n } else {\n left = -offsetParentRect.width + offsets.right;\n }\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n // Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n/**\n * Helper used to know if the given modifier depends from another one.
\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction arrow(data, options) {\n var _data$offsets$arrow;\n\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjunction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n var center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n var css = getStyleComputedProperty(data.instance.popper);\n var popperMarginSide = parseFloat(css['margin' + sideCapitalized]);\n var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width']);\n var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);\n\n return data;\n}\n\n/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n/**\n * List of accepted placements to use as values of the `placement` option.
\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.
\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-end` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n// Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n // flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n\n // flips variation if reference element overflows boundaries\n var flippedVariationByRef = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n // flips variation if popper content overflows boundaries\n var flippedVariationByContent = !!options.flipVariationsByContent && (isVertical && variation === 'start' && overflowsRight || isVertical && variation === 'end' && overflowsLeft || !isVertical && variation === 'start' && overflowsBottom || !isVertical && variation === 'end' && overflowsTop);\n\n var flippedVariation = flippedVariationByRef || flippedVariationByContent;\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n var split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n var value = +split[1];\n var unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(/(\\+|\\-)/).map(function (frag) {\n return frag.trim();\n });\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(/,|\\s/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n var splitRegex = /\\s*,\\s*|\\s+/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n // Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n var transformProp = getSupportedPropertyName('transform');\n var popperStyles = data.instance.popper.style; // assignment to help minification\n var top = popperStyles.top,\n left = popperStyles.left,\n transform = popperStyles[transformProp];\n\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed);\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.
\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers.
\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nvar modifiers = {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.
\n * It will read the variation of the `placement` property.
\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unit-less, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.
\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the `height`.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.
\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.
\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373).\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * A scenario exists where the reference itself is not within the boundaries.
\n * We can say it has \"escaped the boundaries\" — or just \"escaped\".
\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper. This makes sure the popper always has a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier. Can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent'\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near each other\n * without leaving any gap between the two. Especially useful when the arrow is\n * enabled and you want to ensure that it points to its reference element.\n * It cares only about the first axis. You can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjunction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]'\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations)\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position.\n * The popper will never be placed outside of the defined boundaries\n * (except if `keepTogether` is enabled)\n */\n boundariesElement: 'viewport',\n /**\n * @prop {Boolean} flipVariations=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the reference element overlaps its boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariations: false,\n /**\n * @prop {Boolean} flipVariationsByContent=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the popper element overlaps its reference boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariationsByContent: false\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right'\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define your own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: undefined\n }\n};\n\n/**\n * The `dataObject` is an object containing all the information used by Popper.js.\n * This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n\n/**\n * Default options provided to Popper.js constructor.
\n * These can be overridden using the `options` argument of Popper.js.
\n * To override an option, simply pass an object with the same\n * structure of the `options` object, as the 3rd argument. For example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nvar Defaults = {\n /**\n * Popper's placement.\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled.\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created.
\n * By default, it is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: function onCreate() {},\n\n /**\n * Callback called when the popper is updated. This callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates.
\n * By default, it is set to no-op.
\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: function onUpdate() {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js.\n * @prop {modifiers}\n */\n modifiers: modifiers\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n\n// Utils\n// Methods\nvar Popper = function () {\n /**\n * Creates a new Popper.js instance.\n * @class Popper\n * @param {Element|referenceObject} reference - The reference element used to position the popper\n * @param {Element} popper - The HTML / XML element used as the popper\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n // sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedules an update. It will run on the next UI update available.\n * @method scheduleUpdate\n * @memberof Popper\n */\n\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n\n }]);\n return Popper;\n}();\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.
\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10.\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nexport default Popper;\n//# sourceMappingURL=popper.js.map\n","/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nexport function toPopperPlacement(placement) {\n return placement.replace(/(Top|Left)$/, '-start').replace(/(Right|Bottom)$/, '-end');\n}\n/**\n * Takes the offset passed from popper.js and normalizes it\n */\n\nexport function parsePopperOffset(offset) {\n return {\n top: Math.floor(offset.top || 0),\n left: Math.floor(offset.left || 0)\n };\n}","/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nexport var TETHER_PLACEMENT = {\n auto: 'auto',\n topLeft: 'topLeft',\n top: 'top',\n topRight: 'topRight',\n rightTop: 'rightTop',\n right: 'right',\n rightBottom: 'rightBottom',\n bottomRight: 'bottomRight',\n bottom: 'bottom',\n bottomLeft: 'bottomLeft',\n leftBottom: 'leftBottom',\n left: 'left',\n leftTop: 'leftTop'\n};","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nvar _excluded = [\"modifiers\"];\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport * as React from 'react';\nimport Popper from 'popper.js';\nimport { toPopperPlacement, parsePopperOffset } from './utils';\nimport { TETHER_PLACEMENT } from './constants';\n\nvar Tether = /*#__PURE__*/function (_React$Component) {\n _inherits(Tether, _React$Component);\n\n var _super = _createSuper(Tether);\n\n function Tether() {\n var _this;\n\n _classCallCheck(this, Tether);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"popper\", void 0);\n\n _defineProperty(_assertThisInitialized(_this), \"popperHeight\", 0);\n\n _defineProperty(_assertThisInitialized(_this), \"popperWidth\", 0);\n\n _defineProperty(_assertThisInitialized(_this), \"anchorHeight\", 0);\n\n _defineProperty(_assertThisInitialized(_this), \"anchorWidth\", 0);\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n isMounted: false\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onPopperUpdate\", function (data) {\n var normalizedOffsets = {\n popper: parsePopperOffset(data.offsets.popper),\n arrow: data.offsets.arrow ? parsePopperOffset(data.offsets.arrow) : {\n top: 0,\n left: 0\n }\n };\n\n _this.props.onPopperUpdate(normalizedOffsets, data);\n });\n\n return _this;\n }\n\n _createClass(Tether, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n this.setState({\n isMounted: true\n });\n }\n }, {\n key: \"componentDidUpdate\",\n value: function componentDidUpdate(prevProps, prevState) {\n // Handles the case where popover content changes size and creates a gap between the anchor and\n // the popover. Popper.js only schedules updates on resize and scroll events. In the case of\n // the Select component, when options were filtered in the dropdown menu it creates a gap\n // between it and the input element.\n if (this.props.anchorRef) {\n var _this$props$anchorRef = this.props.anchorRef.getBoundingClientRect(),\n height = _this$props$anchorRef.height,\n width = _this$props$anchorRef.width;\n\n if (this.anchorHeight !== height || this.anchorWidth !== width) {\n this.anchorHeight = height;\n this.anchorWidth = width;\n this.popper && this.popper.scheduleUpdate();\n }\n }\n\n if (this.props.popperRef) {\n var _this$props$popperRef = this.props.popperRef.getBoundingClientRect(),\n _height = _this$props$popperRef.height,\n _width = _this$props$popperRef.width;\n\n if (this.popperHeight !== _height || this.popperWidth !== _width) {\n this.popperHeight = _height;\n this.popperWidth = _width;\n this.popper && this.popper.scheduleUpdate();\n }\n\n if (this.state.isMounted !== prevState.isMounted) {\n if (!this.props.anchorRef) {\n if (process.env.NODE_ENV !== \"production\") {\n // eslint-disable-next-line no-console\n console.warn(\"[baseui][TetherBehavior] ref has not been passed to the Popper's anchor element.\\n See how to pass the ref to an anchor element in the Popover example\\n https://baseweb.design/components/popover/#anchor-ref-handling-example\");\n }\n } else {\n this.initializePopper();\n }\n }\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function componentWillUnmount() {\n this.destroyPopover();\n }\n }, {\n key: \"initializePopper\",\n value: function initializePopper() {\n var _this$props = this.props,\n placement = _this$props.placement,\n popperOptions = _this$props.popperOptions;\n\n var modifiers = popperOptions.modifiers,\n restOptions = _objectWithoutProperties(popperOptions, _excluded);\n\n if (!this.props.anchorRef || !this.props.popperRef) return;\n this.popper = new Popper(this.props.anchorRef, this.props.popperRef, _objectSpread({\n // Recommended placement (popper may ignore if it causes a viewport overflow, etc)\n placement: toPopperPlacement(placement),\n modifiers: _objectSpread({\n // Passing the arrow ref will measure the arrow when calculating styles\n arrow: {\n element: this.props.arrowRef,\n enabled: !!this.props.arrowRef\n },\n computeStyle: {\n // Make popper use top/left instead of transform translate, this is because\n // we use transform for animations and we dont want them to conflict\n gpuAcceleration: false\n },\n applyStyle: {\n // Disable default styling modifier, we'll apply styles on our own\n enabled: false\n },\n applyReactStyle: {\n enabled: true,\n fn: this.onPopperUpdate,\n order: 900\n },\n preventOverflow: {\n enabled: true\n }\n }, modifiers)\n }, restOptions));\n }\n }, {\n key: \"destroyPopover\",\n value: function destroyPopover() {\n if (this.popper) {\n this.popper.destroy();\n delete this.popper;\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n return this.props.children || null;\n }\n }]);\n\n return Tether;\n}(React.Component);\n\n_defineProperty(Tether, \"defaultProps\", {\n // @ts-ignore\n anchorRef: null,\n // @ts-ignore\n onPopperUpdate: function onPopperUpdate() {\n return null;\n },\n placement: TETHER_PLACEMENT.auto,\n // @ts-ignore\n popperRef: null,\n popperOptions: {}\n});\n\nexport default Tether;","export const LEGAL_POLICY_LINKS = {\n PRIVACY_POLICY_URL_PDF:\n \"https://d2d43icoh366od.cloudfront.net/mentor-collective-platform-privacy-policy-20210713-1.pdf\",\n PRIVACY_POLICY_URL_HTML:\n \"https://d2d43icoh366od.cloudfront.net/mentor-collective-platform-privacy-policy-20210713-2.html\",\n TERMS_OF_USE_URL_PDF:\n \"https://d2d43icoh366od.cloudfront.net/mentor-collective-platform-terms-of-use-20210713.pdf\",\n TERMS_OF_USE_URL_HTML:\n \"https://d2d43icoh366od.cloudfront.net/mentor-collective-platform-terms-of-use-20210713-2.html\",\n};\n","/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nimport React from 'react';\nimport Icon from '../Icon.js';\nimport { i as iconPropTypes } from '../iconPropTypes-4cbeb95d.js';\nimport '@carbon/icon-helpers';\nimport 'prop-types';\n\nvar _path, _path2, _path3, _path4, _circle, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _circle2, _path13, _path14, _path15, _path16, _circle3, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _circle4, _circle5, _circle6, _circle7, _path45, _path46, _path47, _circle8, _circle9, _circle10, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _circle11, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _path86, _path87, _circle12, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _circle13, _circle14, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _circle15, _circle16, _path149, _path150, _path151, _path152, _path153, _path154, _circle17, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _circle18, _path174, _path175, _circle19, _path176, _circle20, _circle21, _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, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210;\nconst Drink_01 = /*#__PURE__*/React.forwardRef(function Drink_01(_ref, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23,10.4141l3-3-1.4141-1.4141-3.293,3.293c-.1875,.1875-.293,.4419-.293,.707v4h-7.0742l1.1436,16h8.8613l1.1436-16h-2.0742v-3.5859Zm-.9307,17.5859h-5.1387l-.8564-12h6.8516l-.8564,12Z\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15,1h-5c-.5522,0-1,.4478-1,1v7.3706c-1.0674,.6055-3,2.1777-3,5.6294v14c0,.5527,.4478,1,1,1h5v-2h-4V15c0-3.7536,3-4.2793,3-4.2793V3h3v7h2V2c0-.5522-.4478-1-1-1Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Drink_01.propTypes = iconPropTypes;\n}\nconst Drink_02 = /*#__PURE__*/React.forwardRef(function Drink_02(_ref2, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref2;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23,10.4141l3-3-1.4141-1.4141-3.293,3.293c-.1875,.1875-.293,.4419-.293,.707v4h-7.0742l1.1436,16h8.8613l1.1436-16h-2.0742v-3.5859Zm-.9307,17.5859h-5.1387l-.8564-12h6.8516l-.8564,12Z\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,7.0513v-3.0513c0-.5522-.4478-1-1-1h-6c-.5522,0-1,.4478-1,1v3.0513c-1.2771,1.1411-2,2.7358-2,4.4487V29c0,.5522,.4478,1,1,1h5v-2h-4V11.5c0-2.356,2-3.48,2-3.48v-3.02h4v3.02s2,1.124,2,3.48v.5h2v-.5c0-1.7129-.7229-3.3076-2-4.4487Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Drink_02.propTypes = iconPropTypes;\n}\nconst DriverAnalysis = /*#__PURE__*/React.forwardRef(function DriverAnalysis(_ref3, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref3;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"22\",\n cy: \"16\",\n r: \"2\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,15H27.91A6.0048,6.0048,0,0,0,22,10l-.022.001A9.9833,9.9833,0,0,0,4.0508,15H2v2H4.0508A9.9833,9.9833,0,0,0,21.978,21.999L22,22a6.0048,6.0048,0,0,0,5.91-5H30ZM14,8a7.9769,7.9769,0,0,1,5.7383,2.4463A6.0152,6.0152,0,0,0,16.0891,15H6.0693A8.0073,8.0073,0,0,1,14,8Zm0,16a8.0073,8.0073,0,0,1-7.9307-7h10.02a6.0152,6.0152,0,0,0,3.6492,4.5537A7.9769,7.9769,0,0,1,14,24Zm8-4a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,20Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DriverAnalysis.propTypes = iconPropTypes;\n}\nconst Drone = /*#__PURE__*/React.forwardRef(function Drone(_ref4, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref4;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7 12a5 5 0 115-5H10a3 3 0 10-3 3zM25 12V10a3 3 0 10-3-3H20a5 5 0 115 5zM7 30A5 5 0 017 20v2a3 3 0 103 3h2A5.0055 5.0055 0 017 30zM25 30a5.0055 5.0055 0 01-5-5h2a3 3 0 103-3V20a5 5 0 010 10z\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20,18.5859V13.4141L25.707,7.707a1,1,0,1,0-1.414-1.414l-4.4995,4.5a3.9729,3.9729,0,0,0-7.587,0L7.707,6.293a.9994.9994,0,0,0-1.414,0h0a.9994.9994,0,0,0,0,1.414L12,13.4141v5.1718L6.293,24.293a.9994.9994,0,0,0,0,1.414h0a.9994.9994,0,0,0,1.414,0l4.5-4.5a3.9729,3.9729,0,0,0,7.587,0l4.4995,4.5a1,1,0,0,0,1.414-1.414ZM18,20a2,2,0,0,1-4,0V12a2,2,0,0,1,4,0Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Drone.propTypes = iconPropTypes;\n}\nconst DroneDelivery = /*#__PURE__*/React.forwardRef(function DroneDelivery(_ref5, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref5;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20,30H12V22h8Zm-6-2h4V24H14Z\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32 11L22 11 22 13 26 13 26 16 6 16 6 13 10 13 10 11 0 11 0 13 4 13 4 18 9.132 18 6 22.697 6 27 8 27 8 23.303 11.535 18 20.465 18 24 23.303 24 27 26 27 26 22.697 22.868 18 28 18 28 13 32 13 32 11zM16 6a5.9817 5.9817 0 00-4.2407 1.7593l1.4136 1.4136a3.9936 3.9936 0 015.6542 0l1.4136-1.4136A5.9814 5.9814 0 0016 6z\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DroneDelivery.propTypes = iconPropTypes;\n}\nconst DroneFront = /*#__PURE__*/React.forwardRef(function DroneFront(_ref6, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref6;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 19V15H26v2H6V15H4v4h7v4.4116L7 25.6367V30H9V26.8125L12.26 25h7.481L23 26.8125V30h2V25.6367l-4-2.2251V19zm-9 4H13V19h6zM0 11H10V13H0zM22 11H32V13H22zM16 6a5.9817 5.9817 0 00-4.2407 1.7593l1.4136 1.4136a3.9936 3.9936 0 015.6542 0l1.4136-1.4136A5.9814 5.9814 0 0016 6z\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DroneFront.propTypes = iconPropTypes;\n}\nconst DroneVideo = /*#__PURE__*/React.forwardRef(function DroneVideo(_ref7, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref7;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"16\",\n cy: \"21\",\n r: \"1\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 19V15H26v2H6V15H4v4h7v4.4116L7 25.6367V30H9V26.8125L12.26 25h7.481L23 26.8125V30h2V25.6367l-4-2.2251V19zm-9 4H13V19h6zM0 11H10V13H0zM22 11H32V13H22zM16 6a5.9817 5.9817 0 00-4.2407 1.7593l1.4136 1.4136a3.9936 3.9936 0 015.6542 0l1.4136-1.4136A5.9814 5.9814 0 0016 6z\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.9324,4.9321l1.4133,1.4136a7.9877,7.9877,0,0,1,11.3086,0l1.4136-1.4136a9.9844,9.9844,0,0,0-14.1355,0Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DroneVideo.propTypes = iconPropTypes;\n}\nconst DropPhoto = /*#__PURE__*/React.forwardRef(function DropPhoto(_ref8, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref8;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,26Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,19,20Z\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27 29H11a2 2 0 01-2-2V18a2 2 0 012-2h3.2793l.5441-1.6324A2 2 0 0116.7208 13h4.5584a2 2 0 011.8974 1.3676L23.7207 16H27a2 2 0 012 2v9A2 2 0 0127 29zM11 27H27V18H22.2792l-1-3H16.7207l-1 3H11zM27 11H29V13H27zM27 7H29V9H27zM27 3H29V5H27zM23 3H25V5H23zM19 3H21V5H19zM15 3H17V5H15zM11 3H13V5H11zM7 3H9V5H7zM3 3H5V5H3zM3 7H5V9H3zM3 11H5V13H3zM3 15H5V17H3zM3 19H5V21H3zM3 23H5V25H3zM3 27H5V29H3z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DropPhoto.propTypes = iconPropTypes;\n}\nconst DropPhotoFilled = /*#__PURE__*/React.forwardRef(function DropPhotoFilled(_ref9, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref9;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"19\",\n cy: \"22\",\n r: \"2\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,16H23.7207l-.5439-1.6328A1.9983,1.9983,0,0,0,21.2793,13H16.7207a1.9981,1.9981,0,0,0-1.8975,1.3677L14.2793,16H11a2.0023,2.0023,0,0,0-2,2v9a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V18A2.0023,2.0023,0,0,0,27,16ZM19,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,26Z\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n d: \"M19,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,26Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,19,20Z\",\n \"data-icon-path\": \"inner-path\"\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27 11H29V13H27zM27 7H29V9H27zM27 3H29V5H27zM23 3H25V5H23zM19 3H21V5H19zM15 3H17V5H15zM11 3H13V5H11zM7 3H9V5H7zM3 3H5V5H3zM3 7H5V9H3zM3 11H5V13H3zM3 15H5V17H3zM3 19H5V21H3zM3 23H5V25H3zM3 27H5V29H3z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n DropPhotoFilled.propTypes = iconPropTypes;\n}\nconst Drought = /*#__PURE__*/React.forwardRef(function Drought(_ref10, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref10;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,18h3V15a4.0045,4.0045,0,0,0-4-4H25V9.5A3.5042,3.5042,0,0,0,21.5,6a3.4556,3.4556,0,0,0-1.5.3511V5.41a3.41,3.41,0,0,0-6.5449-1.3433L11.3408,9H9a5.0059,5.0059,0,0,0-5,5v4H8a5.0059,5.0059,0,0,0,5-5V10.2051l2.293-5.35A1.41,1.41,0,0,1,18,5.41V22H14.6123L11,25.2939,7.3877,22H2v2H6.6123L11,28l4.3877-4H30V22H20V9.5a1.5,1.5,0,0,1,3,0V14A4.0045,4.0045,0,0,0,27,18Zm-2-5h1a2.0023,2.0023,0,0,1,2,2v1H27a2.0023,2.0023,0,0,1-2-2ZM11,13a3.0033,3.0033,0,0,1-3,3H6V14a3.0033,3.0033,0,0,1,3-3h2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Drought.propTypes = iconPropTypes;\n}\nconst Dvr = /*#__PURE__*/React.forwardRef(function Dvr(_ref11, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref11;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 15V11a2 2 0 00-2-2H22V23h2V17h1.48l2.34 6H30l-2.33-6H28A2 2 0 0030 15zm-6-4h4v4H24zM18 9L16 22 14 9 12 9 14.52 23 17.48 23 20 9 18 9zM6 23H2V9H6a4 4 0 014 4v6A4 4 0 016 23zM4 21H6a2 2 0 002-2V13a2 2 0 00-2-2H4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Dvr.propTypes = iconPropTypes;\n}\nconst Earth = /*#__PURE__*/React.forwardRef(function Earth(_ref12, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref12;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm5,3.1055a12.0136,12.0136,0,0,1,2.9158,1.8994L23.5034,8H21ZM13.3784,27.7026A11.9761,11.9761,0,0,1,8.1157,6.9761L9.4648,9h3.3423l-1.5,4H7.2793L5.8967,17.1475,8.4648,21h5l1.4319,2.1475ZM16,28c-.2034,0-.4016-.02-.6025-.03l1.3967-4.19a1.9876,1.9876,0,0,0-.2334-1.7412l-1.4319-2.1475A1.9962,1.9962,0,0,0,13.4648,19h-3.93L8.1033,16.8525,8.7207,15H11v2h2V14.1812l2.9363-7.83-1.8726-.7022L13.5571,7H10.5352L9.728,5.7891A11.7941,11.7941,0,0,1,19,4.395V8a2.0025,2.0025,0,0,0,2,2h2.5857A1.9865,1.9865,0,0,0,25,9.4141l.1406-.1407.2818-.68A11.9813,11.9813,0,0,1,27.3,12H22.5986a1.9927,1.9927,0,0,0-1.9719,1.665L20.03,17.1064a1.99,1.99,0,0,0,.991,2.086l2.1647,1.4638,1.4585,3.646A11.9577,11.9577,0,0,1,16,28Zm8.8145-8.6563L22.1,17.5088l-.1-.06L22.5986,14h5.2207a11.743,11.743,0,0,1-1.7441,8.4951Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Earth.propTypes = iconPropTypes;\n}\nconst EarthAmericas = /*#__PURE__*/React.forwardRef(function EarthAmericas(_ref13, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref13;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,16a14.0313,14.0313,0,1,0-7.14,12.1914l.1165.0254.0249-.1113A13.9983,13.9983,0,0,0,30,16ZM4,16a11.9369,11.9369,0,0,1,.395-3H8.6382L13.63,17.16l-1.9092,2.5459a2.0088,2.0088,0,0,0,.1855,2.6142L14,24.4141v3.4052A12.0093,12.0093,0,0,1,4,16Zm9.32,4.9062L16.37,16.84,9.3618,11H5.1055A11.9619,11.9619,0,0,1,22.8838,6.1865L22.2793,8H16.5859L13.543,11.043l9.3535,8.3134L21.248,26.7749A11.9034,11.9034,0,0,1,16,28V23.5859Zm10.315,4.3443,1.2133-5.46a2.0007,2.0007,0,0,0-.6235-1.9277L16.457,10.957,17.4141,10h4.8652a1.9981,1.9981,0,0,0,1.8975-1.3677l.3532-1.06a11.9777,11.9777,0,0,1-.8947,17.6782Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthAmericas.propTypes = iconPropTypes;\n}\nconst EarthAmericasFilled = /*#__PURE__*/React.forwardRef(function EarthAmericasFilled(_ref14, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref14;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16a11.915,11.915,0,0,1,.7-4H10l5,4-2.8,3.6929A1,1,0,0,0,12.293,21L15,24v3.9492A12.01,12.01,0,0,1,4,16ZM21.4348,26.6846l2.5457-7.6992A1,1,0,0,0,23.614,18L15,11l2-2h5.2793a1,1,0,0,0,.9487-.6836L23.7234,6.83a11.9742,11.9742,0,0,1-2.2886,19.855Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthAmericasFilled.propTypes = iconPropTypes;\n}\nconst EarthEuropeAfrica = /*#__PURE__*/React.forwardRef(function EarthEuropeAfrica(_ref15, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref15;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16A11.96,11.96,0,0,1,8,7.0811V9a2,2,0,0,0,2,2h3.3818a2,2,0,0,0,1.7893-1.106L15.6182,9H18v4H13.2354a2,2,0,0,0-.8936.2109L9.1055,14.8291A2,2,0,0,0,8,16.6177v3.7055A2,2,0,0,0,9.2573,22.18l3.8487,1.54.6779,4.0664A12.0135,12.0135,0,0,1,4,16ZM15.8457,27.9922,14.894,22.28,10,20.3232v-3.705L13.2358,15H20V7H14.3818l-1,2H10V5.6235A11.9578,11.9578,0,0,1,27.3,12H22v4l.9224,3.8135L21,22.6973v4.1972A11.9083,11.9083,0,0,1,16,28C15.948,28,15.8977,27.9927,15.8457,27.9922ZM23,25.7266V23.3027l1.5859-2.3789a2.0027,2.0027,0,0,0,.2769-1.5957L24,15.877V14h3.8193A11.8409,11.8409,0,0,1,23,25.7266Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthEuropeAfrica.propTypes = iconPropTypes;\n}\nconst EarthEuropeAfricaFilled = /*#__PURE__*/React.forwardRef(function EarthEuropeAfricaFilled(_ref16, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref16;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4,16A11.9814,11.9814,0,0,1,9,6.2734V9a1,1,0,0,0,1,1h3.3821a1,1,0,0,0,.8943-.5527L15,8h4v6H13.2361a1.0006,1.0006,0,0,0-.4473.1055L9.5527,15.7236A1,1,0,0,0,9,16.6182v3.7046a1,1,0,0,0,.6287.9287L14,23l.8235,4.94A12.0152,12.0152,0,0,1,4,16ZM22,26.376V23l1.7546-2.6318a1.0012,1.0012,0,0,0,.1382-.7974L23,16V13h4.605A11.901,11.901,0,0,1,22,26.376Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthEuropeAfricaFilled.propTypes = iconPropTypes;\n}\nconst EarthFilled = /*#__PURE__*/React.forwardRef(function EarthFilled(_ref17, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref17;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4.02,16.394l1.3384.4458L7,19.3027v1.2831a1,1,0,0,0,.2929.7071L10,24v2.3765A11.9941,11.9941,0,0,1,4.02,16.394ZM16,28a11.9682,11.9682,0,0,1-2.5718-.2847L14,26l1.8046-4.5116a1,1,0,0,0-.0964-.9261l-1.4113-2.117A1,1,0,0,0,13.4648,18h-4.93L7.2866,16.1274,9.4141,14H11v2h2V13.2656l3.8682-6.7695-1.7364-.9922L14.2769,7H11.5352l-1.086-1.6289A11.861,11.861,0,0,1,20,4.7V8a1,1,0,0,0,1,1h1.4648a1,1,0,0,0,.8321-.4453l.8769-1.3154A12.0331,12.0331,0,0,1,26.8945,11H22.82a1,1,0,0,0-.9806.8039l-.7221,4.4708a1,1,0,0,0,.54,1.0539L25,19l.6851,4.0557A11.9793,11.9793,0,0,1,16,28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthFilled.propTypes = iconPropTypes;\n}\nconst EarthSoutheastAsia = /*#__PURE__*/React.forwardRef(function EarthSoutheastAsia(_ref18, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref18;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14 24H17V26H14zM17 22H19V24H17zM17 18H19V20H17z\"\n })), _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm-.603,2.03,2.5073,5.0156L16.3228,13H10.271l-1.41,4.3872,2.8521,2.8521L10.7056,21.751,6.2856,19H4.395A11.9363,11.9363,0,0,1,15.397,4.03ZM5.1055,21h.6089l3.9345,2.4487A1.9912,1.9912,0,0,0,12.37,22.86l1.0078-1.5118a2.005,2.005,0,0,0-.25-2.5234l-1.9887-1.9888L11.729,15h4.5938A1.9906,1.9906,0,0,0,18.18,13.7427L19.7612,9.79a2.0019,2.0019,0,0,0-.0674-1.6382L17.6843,4.1323A11.9592,11.9592,0,0,1,26.8945,21H23a2.0023,2.0023,0,0,0-2,2v3.8945A11.9477,11.9477,0,0,1,5.1055,21ZM23,25.7266V23h2.7268A12.0762,12.0762,0,0,1,23,25.7266Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthSoutheastAsia.propTypes = iconPropTypes;\n}\nconst EarthSoutheastAsiaFilled = /*#__PURE__*/React.forwardRef(function EarthSoutheastAsiaFilled(_ref19, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref19;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17 22H19V24H17zM17 18H19V20H17zM14 24H17V26H14z\"\n })), _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM4.7,20H6l4.1772,2.6a1,1,0,0,0,1.36-.2939l1.0078-1.5118a1,1,0,0,0-.125-1.2617L10,17.1118,11,14h5.323a1,1,0,0,0,.9285-.6284L18.8333,9.417a1,1,0,0,0-.034-.8189L16.5129,4.0259A11.9652,11.9652,0,0,1,26.3762,22H23a1,1,0,0,0-1,1v3.3765A11.9578,11.9578,0,0,1,4.7,20Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EarthSoutheastAsiaFilled.propTypes = iconPropTypes;\n}\nconst Earthquake = /*#__PURE__*/React.forwardRef(function Earthquake(_ref20, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref20;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM6,12.0615,15,5.05v7.3638l3.458,3.458-6.7344,4.8105L14.3818,26H6ZM26,26H16.6182l-2.3418-4.6826,7.2656-5.1895L17,11.5859V5.0518l9,7.02Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Earthquake.propTypes = iconPropTypes;\n}\nconst EdgeCluster = /*#__PURE__*/React.forwardRef(function EdgeCluster(_ref21, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref21;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 7a3 3 0 113-3A3.0033 3.0033 0 0116 7zm0-4a1 1 0 101 1A1.001 1.001 0 0016 3zM11 30a3 3 0 113-3A3.0033 3.0033 0 0111 30zm0-4a1 1 0 101 1A1.001 1.001 0 0011 26zM7 11a3 3 0 113-3A3.0033 3.0033 0 017 11zM7 7A1 1 0 108 8 1.001 1.001 0 007 7zM21 30a3 3 0 113-3A3.0033 3.0033 0 0121 30zm0-4a1 1 0 101 1A1.001 1.001 0 0021 26zM25 11a3 3 0 113-3A3.0033 3.0033 0 0125 11zm0-4a1 1 0 101 1A1.001 1.001 0 0025 7zM4 21a3 3 0 113-3A3.0033 3.0033 0 014 21zm0-4a1 1 0 101 1A1.001 1.001 0 004 17zM28 21a3 3 0 113-3A3.0033 3.0033 0 0128 21zm0-4a1 1 0 101 1A1.001 1.001 0 0028 17zM16 22a6 6 0 116-6A6.0069 6.0069 0 0116 22zm0-10a4 4 0 104 4A4.0045 4.0045 0 0016 12z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdgeCluster.propTypes = iconPropTypes;\n}\nconst EdgeDevice = /*#__PURE__*/React.forwardRef(function EdgeDevice(_ref22, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref22;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M9 21H23V23H9zM11 14a2 2 0 102 2A1.9806 1.9806 0 0011 14zM21 14a2 2 0 102 2A1.9806 1.9806 0 0021 14z\"\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,8H18.4141l2.0722-2.0723A2.04,2.04,0,0,0,21,6a2,2,0,1,0-2-2,2.0412,2.0412,0,0,0,.0723.5137L15.5859,8H4a2.0025,2.0025,0,0,0-2,2V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V10A2.0025,2.0025,0,0,0,28,8ZM4,26V10H28V26Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdgeDevice.propTypes = iconPropTypes;\n}\nconst WatsonHealthEdgeEnhancement = /*#__PURE__*/React.forwardRef(function WatsonHealthEdgeEnhancement(_ref23, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref23;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.8164 4.7646L11.1328 2.887A13.976 13.976 0 006.9507 5.3278L8.2358 6.8593A11.9729 11.9729 0 0111.8164 4.7646zM5.5913 10L3.86 9a14.14 14.14 0 00-1.6382 4.5872l1.9677.3469A12.1519 12.1519 0 015.5913 10zM16 26A10 10 0 0016 6h0z\"\n })), _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,16A14,14,0,0,0,16,2V4a11.9933,11.9933,0,0,1,4.0493,23.2847c-.1682.06-.334.1294-.5044.1821-.2512.0771-.51.1362-.7683.1973-.1262.03-.25.0693-.3772.0952-.2908.0591-.5884.0976-.8862.1352-.1.0122-.1983.0342-.2988.044A12.0015,12.0015,0,0,1,5.416,21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207,13.1207,0,0,1,4.19,18l-1.9677.4131A13.9173,13.9173,0,0,0,2.7,20.2993l-.0251.0083A13.9615,13.9615,0,0,0,16,30q.7134,0,1.415-.0713c.135-.0137.2654-.042.3995-.06.3286-.0424.6574-.0839.9814-.1494.18-.0366.3533-.0908.5308-.1338.2685-.0659.5383-.125.8027-.2065.2463-.0762.4831-.1724.7234-.2612.18-.0664.3635-.1211.5412-.1953l-.0009-.0025A14.0015,14.0015,0,0,0,30,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthEdgeEnhancement.propTypes = iconPropTypes;\n}\nconst WatsonHealthEdgeEnhancement_01 = /*#__PURE__*/React.forwardRef(function WatsonHealthEdgeEnhancement_01(_ref24, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref24;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 28L26 20 24 20 24 21 22 21 22 23 24 23 24 28 22 28 22 30 28 30 28 28 26 28zM28 16h2A14 14 0 0016 2V4A12 12 0 0128 16z\"\n })), _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 16A10 10 0 0016 6V16zM16 28A11.96 11.96 0 015.416 21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207 13.1207 0 014.19 18l-1.9677.4131A13.9173 13.9173 0 002.7 20.2993l-.0251.0083A13.9615 13.9615 0 0016 30zM5.5913 10L3.86 9a14.14 14.14 0 00-1.6382 4.5872l1.9677.3469A12.1519 12.1519 0 015.5913 10zM11.8164 4.7646L11.1328 2.887A13.976 13.976 0 006.9507 5.3278L8.2358 6.8593A11.9729 11.9729 0 0111.8164 4.7646z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthEdgeEnhancement_01.propTypes = iconPropTypes;\n}\nconst WatsonHealthEdgeEnhancement_02 = /*#__PURE__*/React.forwardRef(function WatsonHealthEdgeEnhancement_02(_ref25, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref25;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 30H22V26a2.002 2.002 0 012-2h2V22H22V20h4a2.0023 2.0023 0 012 2v2a2.0023 2.0023 0 01-2 2H24v2h4zM28 16h2A14 14 0 0016 2V4A12 12 0 0128 16z\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 16A10 10 0 0016 6V16zM16 28A11.96 11.96 0 015.416 21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207 13.1207 0 014.19 18l-1.9677.4131A13.9173 13.9173 0 002.7 20.2993l-.0251.0083A13.9615 13.9615 0 0016 30zM5.5913 10L3.86 9a14.14 14.14 0 00-1.6382 4.5872l1.9677.3469A12.1519 12.1519 0 015.5913 10zM11.8164 4.7646L11.1328 2.887A13.976 13.976 0 006.9507 5.3278L8.2358 6.8593A11.9729 11.9729 0 0111.8164 4.7646z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthEdgeEnhancement_02.propTypes = iconPropTypes;\n}\nconst WatsonHealthEdgeEnhancement_03 = /*#__PURE__*/React.forwardRef(function WatsonHealthEdgeEnhancement_03(_ref26, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref26;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 20H22v2h4v2H23v2h3v2H22v2h4a2.0027 2.0027 0 002-2V22A2.0023 2.0023 0 0026 20zM28 16h2A14 14 0 0016 2V4A12 12 0 0128 16z\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 16A10 10 0 0016 6V16zM16 28A11.96 11.96 0 015.416 21.6548c-.0664-.127-.133-.2534-.1953-.3843-.0547-.1123-.106-.227-.1572-.3413A13.1207 13.1207 0 014.19 18l-1.9677.4131A13.9173 13.9173 0 002.7 20.2993l-.0251.0083A13.9615 13.9615 0 0016 30zM5.5913 10L3.86 9a14.14 14.14 0 00-1.6382 4.5872l1.9677.3469A12.1519 12.1519 0 015.5913 10zM11.8164 4.7646L11.1328 2.887A13.976 13.976 0 006.9507 5.3278L8.2358 6.8593A11.9729 11.9729 0 0111.8164 4.7646z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthEdgeEnhancement_03.propTypes = iconPropTypes;\n}\nconst EdgeNode = /*#__PURE__*/React.forwardRef(function EdgeNode(_ref27, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref27;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22 6H26V10H22z\"\n })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"7\",\n r: \"1\"\n })), _circle5 || (_circle5 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"25\",\n cy: \"25\",\n r: \"1\"\n })), _circle6 || (_circle6 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"25\",\n cy: \"21\",\n r: \"1\"\n })), _circle7 || (_circle7 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"25\",\n cy: \"17\",\n r: \"1\"\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22,17V15H20V14a2.0023,2.0023,0,0,0-2-2H17V10H15v2H13V10H11v2H10a2.0023,2.0023,0,0,0-2,2v1H6v2H8v2H6v2H8v1a2.0023,2.0023,0,0,0,2,2h1v2h2V24h2v2h2V24h1a2.0023,2.0023,0,0,0,2-2V21h2V19H20V17Zm-4,5H10V14h8Z\"\n })), _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdgeNode.propTypes = iconPropTypes;\n}\nconst EdgeNodeAlt = /*#__PURE__*/React.forwardRef(function EdgeNodeAlt(_ref28, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref28;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,22a2.981,2.981,0,0,0-2.0374.811l-4.0039-2.4023a2.0429,2.0429,0,0,0,0-.8174l4.0039-2.4023A2.9909,2.9909,0,1,0,24,15a2.9345,2.9345,0,0,0,.0415.4092l-4.0039,2.4023a3,3,0,1,0,0,4.377l4.0039,2.4023A2.9345,2.9345,0,0,0,24,25a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,27,14Zm-9,7a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,18,21Zm9,5a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,27,26Z\"\n })), _circle8 || (_circle8 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"8\",\n r: \"1\"\n })), _circle9 || (_circle9 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"16\",\n r: \"1\"\n })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"24\",\n r: \"1\"\n })), _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22,13V5a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,5V27a2.0023,2.0023,0,0,0,2,2H20V27H4V21h8V19H4V13ZM4,5H20v6H4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdgeNodeAlt.propTypes = iconPropTypes;\n}\nconst EdgeService = /*#__PURE__*/React.forwardRef(function EdgeService(_ref29, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref29;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7 11H9V21H7zM11 11H13V21H11zM15 11H17V21H15zM19 11H21V21H19zM23 11H25V21H23z\"\n })), _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H28a2.0023,2.0023,0,0,1,2,2V24A2.0023,2.0023,0,0,1,28,26ZM4,8V24H28V8Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdgeService.propTypes = iconPropTypes;\n}\nconst Edit = /*#__PURE__*/React.forwardRef(function Edit(_ref30, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref30;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 26H30V28H2zM25.4 9c.8-.8.8-2 0-2.8 0 0 0 0 0 0l-3.6-3.6c-.8-.8-2-.8-2.8 0 0 0 0 0 0 0l-15 15V24h6.4L25.4 9zM20.4 4L24 7.6l-3 3L17.4 7 20.4 4zM6 22v-3.6l10-10 3.6 3.6-10 10H6z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Edit.propTypes = iconPropTypes;\n}\nconst EditOff = /*#__PURE__*/React.forwardRef(function EditOff(_ref31, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref31;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 28.6L3.4 2 2 3.4l10.1 10.1L4 21.6V28h6.4l8.1-8.1L28.6 30 30 28.6zM9.6 26H6v-3.6l7.5-7.5 3.6 3.6L9.6 26zM29.4 6.2L29.4 6.2l-3.6-3.6c-.8-.8-2-.8-2.8 0l0 0 0 0-8 8 1.4 1.4L20 8.4l3.6 3.6L20 15.6l1.4 1.4 8-8C30.2 8.2 30.2 7 29.4 6.2L29.4 6.2zM25 10.6L21.4 7l3-3L28 7.6 25 10.6z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EditOff.propTypes = iconPropTypes;\n}\nconst EdtLoop = /*#__PURE__*/React.forwardRef(function EdtLoop(_ref32, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref32;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23.625,22.5875a6.1287,6.1287,0,0,1-4.5-1.9l-3.1-3.2-3.1,3.2a6.4582,6.4582,0,0,1-9.1,0,7.028,7.028,0,0,1-1.8-4.7,6.6547,6.6547,0,0,1,1.9-4.7,6.3375,6.3375,0,0,1,9,0l3.1,3.2,3.1-3.2a6.3375,6.3375,0,0,1,9,0,6.8282,6.8282,0,0,1,0,9.4A6.5418,6.5418,0,0,1,23.625,22.5875Zm-6.2-6.6,3.1,3.3a4.4061,4.4061,0,0,0,6.2,0,4.9077,4.9077,0,0,0,0-6.6,4.4061,4.4061,0,0,0-6.2,0Zm-9-4.6a4.1582,4.1582,0,0,0-3.1,1.3,4.8385,4.8385,0,0,0,0,6.6,4.4061,4.4061,0,0,0,6.2,0l3.1-3.3-3.1-3.3A4.7706,4.7706,0,0,0,8.425,11.3875Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EdtLoop.propTypes = iconPropTypes;\n}\nconst Education = /*#__PURE__*/React.forwardRef(function Education(_ref33, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref33;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 30H24V27a5.0059 5.0059 0 00-5-5H13a5.0059 5.0059 0 00-5 5v3H6V27a7.0082 7.0082 0 017-7h6a7.0082 7.0082 0 017 7zM5 6A1 1 0 004 7v9H6V7A1 1 0 005 6z\"\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4,2V4H9v7a7,7,0,0,0,14,0V4h5V2Zm7,2H21V7H11Zm5,12a5,5,0,0,1-5-5V9H21v2A5,5,0,0,1,16,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Education.propTypes = iconPropTypes;\n}\nconst Email = /*#__PURE__*/React.forwardRef(function Email(_ref34, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref34;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n 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,6ZM25.8,8,16,14.78,6.2,8ZM4,24V8.91l11.43,7.91a1,1,0,0,0,1.14,0L28,8.91V24Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Email.propTypes = iconPropTypes;\n}\nconst EmailNew = /*#__PURE__*/React.forwardRef(function EmailNew(_ref35, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref35;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19,24H4L3.9966,8.9062l11.4341,7.9161a1.0008,1.0008,0,0,0,1.1386,0L28,8.9087,28,18h2V8a2.0027,2.0027,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,8V24a2.0027,2.0027,0,0,0,2,2H19ZM25.7986,8,16,14.7837,6.2014,8Z\"\n })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"26\",\n cy: \"24\",\n r: \"4\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EmailNew.propTypes = iconPropTypes;\n}\nconst EmissionsManagement = /*#__PURE__*/React.forwardRef(function EmissionsManagement(_ref36, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref36;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4,2h-2v26c0,1.1046.8954,2,2,2h11v-2H4V2ZM23,4v2h3.5859l-7.5859,7.5859-4.293-4.293c-.3905-.3905-1.0236-.3905-1.4141,0l-7.293,7.293,1.4141,1.4141,6.5859-6.5859,4.293,4.293c.3905.3904,1.0236.3904,1.4141,0l8.293-8.293v3.5859h2v-7s-7,0-7,0ZM22.48,20.863c-.682-.54-1.544-.863-2.48-.863h-3v3c0,2.206,1.794,4,4,4h1v3h2v-3h1c2.757,0,5-2.243,5-5v-4h-3c-1.933.0016-3.6925,1.116-4.52,2.863ZM22,25h-1c-1.103,0-2-.897-2-2v-1h1c1.103,0,2,.897,2,2v1ZM28,22c0,1.654-1.346,3-3,3h-1v-2c0-1.654,1.346-3,3-3h1v2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EmissionsManagement.propTypes = iconPropTypes;\n}\nconst Encryption = /*#__PURE__*/React.forwardRef(function Encryption(_ref37, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref37;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29 21.2783V19a4 4 0 00-8 0v2.2783A1.9935 1.9935 0 0020 23v5a2.0025 2.0025 0 002 2h6a2.0025 2.0025 0 002-2V23A1.9935 1.9935 0 0029 21.2783zM25 17a2.0025 2.0025 0 012 2v2H23V19A2.0025 2.0025 0 0125 17zM22 28V23h6v5zM2 2H4V6H2zM14 2H16V6H14zM18 2H20V6H18zM2 8H4V16H2zM2 18H4V26H2zM14 18H16V26H14zM6 8H8V16H6zM18 8H20V14H18zM10 26H8a2.0023 2.0023 0 01-2-2V20a2.0023 2.0023 0 012-2h2a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0110 26zM8 20v4h2V20zM14 16H12a2.0023 2.0023 0 01-2-2V10a2.0023 2.0023 0 012-2h2a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0114 16zm-2-6v4h2V10zM10 6H8A2.0023 2.0023 0 016 4V2H8V4h2V2h2V4A2.0023 2.0023 0 0110 6z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Encryption.propTypes = iconPropTypes;\n}\nconst EnergyRenewable = /*#__PURE__*/React.forwardRef(function EnergyRenewable(_ref38, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref38;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29,14H28V10H26v4H24V10H22v4H21a1,1,0,0,0-1,1v4a5.0079,5.0079,0,0,0,4,4.8989V27a1.0008,1.0008,0,0,1-1,1H5a1,1,0,0,1,0-2h5a3,3,0,0,0,0-6H5a1,1,0,0,1,0-2h5a3.0033,3.0033,0,0,0,3-3V11h1a4.0045,4.0045,0,0,0,4-4V4H15a3.979,3.979,0,0,0-2.7468,1.1064A6.0041,6.0041,0,0,0,7,2H4V5a6.0066,6.0066,0,0,0,6,6h1v4a1.0008,1.0008,0,0,1-1,1H5a3,3,0,0,0,0,6h5a1,1,0,0,1,0,2H5a3,3,0,0,0,0,6H23a3.0033,3.0033,0,0,0,3-3V23.8989A5.0079,5.0079,0,0,0,30,19V15A1,1,0,0,0,29,14ZM13,8a2.002,2.002,0,0,1,2-2h1V7a2.002,2.002,0,0,1-2,2H13ZM10,9A4.0045,4.0045,0,0,1,6,5V4H7a4.0045,4.0045,0,0,1,4,4V9ZM28,19a3,3,0,0,1-6,0V16h6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EnergyRenewable.propTypes = iconPropTypes;\n}\nconst Enterprise = /*#__PURE__*/React.forwardRef(function Enterprise(_ref39, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref39;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14z\"\n })), _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,14a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30ZM4,4H20V28H4ZM22,28V14h6V28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Enterprise.propTypes = iconPropTypes;\n}\nconst EnumerationDefinition = /*#__PURE__*/React.forwardRef(function EnumerationDefinition(_ref40, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref40;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"M19.5328 16.0691c0-.9631.8772-1.4445 1.7885-1.4445 1.0486 0 1.4783.6532 1.4783 1.9257v5.4497h2.2004v-5.6732c0-2.2352-1.0315-3.5072-2.8712-3.5072-1.3922 0-2.1488.7395-2.5096 1.7021h-.0863v-1.4957h-2.2006v8.974h2.2006v-5.9309zM14.908 19.9883L9.2693 19.9883 9.2693 16.9282 14.2548 16.9282 14.2548 14.917 9.2693 14.917 9.2693 12.0117 14.908 12.0117 14.908 10 7 10 7 22 14.908 22 14.908 19.9883z\"\n })), _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m2,4v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2Zm26,24H4V4h24v24Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EnumerationDefinition.propTypes = iconPropTypes;\n}\nconst EnumerationUsage = /*#__PURE__*/React.forwardRef(function EnumerationUsage(_ref41, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref41;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"M19.5328 16.0691c0-.9631.8772-1.4445 1.7885-1.4445 1.0486 0 1.4783.6532 1.4783 1.9257v5.4497h2.2004v-5.6732c0-2.2352-1.0315-3.5072-2.8712-3.5072-1.3922 0-2.1488.7395-2.5096 1.7021h-.0863v-1.4957h-2.2006v8.974h2.2006v-5.9309zM14.908 19.9883L9.2693 19.9883 9.2693 16.9282 14.2548 16.9282 14.2548 14.917 9.2693 14.917 9.2693 12.0117 14.908 12.0117 14.908 10 7 10 7 22 14.908 22 14.908 19.9883z\"\n })), _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EnumerationUsage.propTypes = iconPropTypes;\n}\nconst EqualApproximately = /*#__PURE__*/React.forwardRef(function EqualApproximately(_ref42, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref42;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 15c-1.7771 0-3.2314-.8726-4.5144-1.6425-1.1636-.6981-2.2627-1.3575-3.4856-1.3575-1.3977 0-2.449.8629-3.2927 1.707l-1.4146-1.4141c1.0674-1.0675 2.5669-2.293 4.7073-2.293 1.7771 0 3.2314.8726 4.5144 1.6425 1.1636.6981 2.2627 1.3575 3.4856 1.3575 1.3975 0 2.4487-.8629 3.293-1.7072l1.4141 1.4143c-1.0674 1.0675-2.5671 2.2928-4.707 2.2928zM20 22c-1.7771 0-3.2314-.8726-4.5144-1.6425-1.1636-.6981-2.2627-1.3575-3.4856-1.3575-1.3977 0-2.449.8629-3.2927 1.707l-1.4146-1.4141c1.0674-1.0675 2.5669-2.293 4.7073-2.293 1.7771 0 3.2314.8726 4.5144 1.6425 1.1636.6981 2.2627 1.3575 3.4856 1.3575 1.3975 0 2.4487-.8629 3.293-1.7072l1.4141 1.4143c-1.0674 1.0675-2.5671 2.2928-4.707 2.2928z\"\n })), _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m16,30c-7.7197,0-14-6.2804-14-14S8.2802,2,16,2s14,6.2804,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3832-12,12s5.3833,12,12,12,12-5.3832,12-12-5.3833-12-12-12Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EqualApproximately.propTypes = iconPropTypes;\n}\nconst Equalizer = /*#__PURE__*/React.forwardRef(function Equalizer(_ref43, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref43;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 28H10V30H2zM2 24H10V26H2zM12 28H20V30H12zM12 24H20V26H12zM2 20H10V22H2zM12 20H20V22H12zM2 16H10V18H2zM12 16H20V18H12zM12 12H20V14H12zM12 8H20V10H12zM12 4H20V6H12zM22 28H30V30H22zM22 24H30V26H22z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Equalizer.propTypes = iconPropTypes;\n}\nconst Erase = /*#__PURE__*/React.forwardRef(function Erase(_ref44, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref44;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7 27H30V29H7zM27.38 10.51L19.45 2.59a2 2 0 00-2.83 0l-14 14a2 2 0 000 2.83L7.13 24h9.59L27.38 13.34A2 2 0 0027.38 10.51zM15.89 22H8L4 18l6.31-6.31 7.93 7.92zm3.76-3.76l-7.92-7.93L18 4 26 11.93z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Erase.propTypes = iconPropTypes;\n}\nconst WatsonHealthErase_3D = /*#__PURE__*/React.forwardRef(function WatsonHealthErase_3D(_ref45, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref45;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30.4148 16.5132L22.488 8.5859a2.0014 2.0014 0 00-2.8291 0L5.6208 22.624a2.0024 2.0024 0 000 2.8291L10.1663 30h9.5908L30.4148 19.3413A2.001 2.001 0 0030.4148 16.5132zM18.929 28H10.9949l-3.96-3.9619 6.3123-6.3118 7.9276 7.9276zm3.76-3.76l-7.9276-7.9276L21.074 10l7.9267 7.9272zM11 12H8V2h3a3.0033 3.0033 0 013 3V9A3.0033 3.0033 0 0111 12zm-1-2h1a1.0009 1.0009 0 001-1V5a1.0009 1.0009 0 00-1-1H10zM4 2H0V4H4V6H1V8H4v2H0v2H4a2.0027 2.0027 0 002-2V4A2.0023 2.0023 0 004 2z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthErase_3D.propTypes = iconPropTypes;\n}\nconst Error = /*#__PURE__*/React.forwardRef(function Error(_ref46, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref46;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2,16H2A14,14,0,1,0,16,2,14,14,0,0,0,2,16Zm23.15,7.75L8.25,6.85a12,12,0,0,1,16.9,16.9ZM8.24,25.16A12,12,0,0,1,6.84,8.27L23.73,25.16a12,12,0,0,1-15.49,0Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Error.propTypes = iconPropTypes;\n}\nconst ErrorFilled = /*#__PURE__*/React.forwardRef(function ErrorFilled(_ref47, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref47;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M10.7,11.5L4.5,5.3l0.8-0.8l6.2,6.2L10.7,11.5z\"\n })), _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n d: \"M10.7,11.5L4.5,5.3l0.8-0.8l6.2,6.2L10.7,11.5z\",\n \"data-icon-path\": \"inner-path\",\n opacity: \"0\"\n })), children);\n }\n if (size === 20 || size === \"20\" || size === \"20px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 20 20\",\n fill: \"currentColor\",\n ...rest\n }, _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\"\n })), _path76 || (_path76 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\",\n \"data-icon-path\": \"inner-path\",\n opacity: \"0\"\n })), children);\n }\n if (size === 24 || size === \"24\" || size === \"24px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 24 24\",\n fill: \"currentColor\",\n ...rest\n }, _path77 || (_path77 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M16.3,17.5L6.5,7.7l1.2-1.2l9.8,9.8L16.3,17.5z\"\n })), _path78 || (_path78 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n d: \"M16.3,17.5L6.5,7.7l1.2-1.2l9.8,9.8L16.3,17.5z\",\n \"data-icon-path\": \"inner-path\",\n opacity: \"0\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path79 || (_path79 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n d: \"M14.9 7.2H17.1V24.799H14.9z\",\n \"data-icon-path\": \"inner-path\",\n transform: \"rotate(-45 16 16)\"\n })), _path80 || (_path80 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A13.914,13.914,0,0,0,2,16,13.914,13.914,0,0,0,16,30,13.914,13.914,0,0,0,30,16,13.914,13.914,0,0,0,16,2Zm5.4449,21L9,10.5557,10.5557,9,23,21.4448Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ErrorFilled.propTypes = iconPropTypes;\n}\nconst ErrorOutline = /*#__PURE__*/React.forwardRef(function ErrorOutline(_ref48, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref48;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path81 || (_path81 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z\"\n })), _path82 || (_path82 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7.4 3.6H8.5V12.4H7.4z\",\n transform: \"rotate(-45.001 8 8)\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path83 || (_path83 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14.9 7.2H17.1V24.799H14.9z\",\n transform: \"rotate(-45 16 16)\"\n })), _path84 || (_path84 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A13.9138,13.9138,0,0,0,2,16,13.9138,13.9138,0,0,0,16,30,13.9138,13.9138,0,0,0,30,16,13.9138,13.9138,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12.0353,12.0353,0,0,1,16,28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ErrorOutline.propTypes = iconPropTypes;\n}\nconst Event = /*#__PURE__*/React.forwardRef(function Event(_ref49, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref49;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path85 || (_path85 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z\"\n })), _path86 || (_path86 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21 15L23.549 19.938 29 20.729 25 24.573 26 30 21 27.438 16 30 17 24.573 13 20.729 18.6 19.938 21 15z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Event.propTypes = iconPropTypes;\n}\nconst EventChange = /*#__PURE__*/React.forwardRef(function EventChange(_ref50, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref50;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path87 || (_path87 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17 15H19V22H17z\"\n })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"18\",\n cy: \"25\",\n r: \"1.25\"\n })), _path88 || (_path88 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29 30H7c-.3499 0-.6743-.1829-.8555-.4823s-.1926-.6718-.0303-.9817L17.1143 7.536c.1726-.3296.5292-.536.8857-.536s.7131.2064.8857.536l11 21c.1624.3099.1509.6823-.0303.9817s-.5056.4823-.8555.4823zm-20.3474-2h18.6948l-9.3474-17.8448-9.3474 17.8448zM7 23H3c-.3467 0-.6685-.1794-.8506-.4742-.1824-.2948-.1987-.663-.0439-.973l2.5-5 1.7891.8945-1.7766 3.5527h2.3821v2z\"\n })), _path89 || (_path89 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4.955 11.5H10.545V13.5H4.955z\",\n transform: \"rotate(-63.435 7.75 12.5)\"\n })), _path90 || (_path90 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m10.8945,8.4473l-1.7891-.8945,2.5-5c.1694-.3387.532-.5527.8945-.5527s.7251.214.8945.5527l2,4-1.7891.8945-1.1055-2.2112-1.6055,3.2112Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EventChange.propTypes = iconPropTypes;\n}\nconst EventIncident = /*#__PURE__*/React.forwardRef(function EventIncident(_ref51, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref51;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path91 || (_path91 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21.0176 26.7217L22.016 28.4541 24.9938 26.7322 24.9938 30 26.9907 30 26.9907 26.7316 30.0016 28.4727 31 26.7402 27.9898 24.9996 30.9902 23.2646 29.9918 21.5322 26.9907 23.2677 26.9907 20 24.9938 20 24.9938 23.2672 21.9984 21.5352 21 23.2676 23.9954 24.9996 21.0176 26.7217zM16 23c-.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 12H17V21H15z\"\n })), _path92 || (_path92 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m18,30H3c-.3494,0-.6736-.1824-.8547-.4811-.1814-.2986-.1936-.6703-.0325-.9802L15.1128,3.5387c.1721-.3311.5297-.5387.8872-.5387s.7151.2076.8872.5387l6.76,13-1.7744.9226-5.8728-11.2938L4.6472,28h13.3528v2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EventIncident.propTypes = iconPropTypes;\n}\nconst EventSchedule = /*#__PURE__*/React.forwardRef(function EventSchedule(_ref52, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref52;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path93 || (_path93 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21,30a8,8,0,1,1,8-8A8,8,0,0,1,21,30Zm0-14a6,6,0,1,0,6,6A6,6,0,0,0,21,16Z\"\n })), _path94 || (_path94 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.59 25L20 22.41 20 18 22 18 22 21.59 24 23.59 22.59 25z\"\n })), _path95 || (_path95 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EventSchedule.propTypes = iconPropTypes;\n}\nconst EventWarning = /*#__PURE__*/React.forwardRef(function EventWarning(_ref53, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref53;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path96 || (_path96 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.3803 28h-6.7625l3.3822-6.7642 3.3803 6.7642zm-3.3803-10c-.3915 0-.7305.2251-.8947.5527l-5 10c-.0674.1348-.1053.2866-.1053.4473 0 .5522.4477 1 1 1h10c.5523 0 1-.4478 1-1 0-.1382-.028-.2695-.0786-.3892l-5.0269-10.0581c-.1641-.3276-.5031-.5527-.8946-.5527h0zM16 23c-.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 12H17V21H15z\"\n })), _path97 || (_path97 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m15,30H3c-.3494,0-.6736-.1824-.8547-.4811-.1814-.2986-.1936-.6703-.0325-.9802L15.1128,3.5387c.1721-.3311.5297-.5387.8872-.5387s.7151.2076.8872.5387l6,11.5385-1.7744.9226-5.1128-9.8322L4.6472,28h10.3528v2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EventWarning.propTypes = iconPropTypes;\n}\nconst Events = /*#__PURE__*/React.forwardRef(function Events(_ref54, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref54;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path98 || (_path98 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 14H24v2h2a3.0033 3.0033 0 013 3v4h2V19A5.0058 5.0058 0 0026 14zM24 4a3 3 0 11-3 3 3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0024 2zM23 30H21V28a3.0033 3.0033 0 00-3-3H14a3.0033 3.0033 0 00-3 3v2H9V28a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM16 13a3 3 0 11-3 3 3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0016 11zM8 14H6a5.0059 5.0059 0 00-5 5v4H3V19a3.0033 3.0033 0 013-3H8zM8 4A3 3 0 115 7 3 3 0 018 4M8 2a5 5 0 105 5A5 5 0 008 2z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Events.propTypes = iconPropTypes;\n}\nconst EventsAlt = /*#__PURE__*/React.forwardRef(function EventsAlt(_ref55, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref55;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path99 || (_path99 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18 31h2V29a1.0006 1.0006 0 011-1h6a1.0006 1.0006 0 011 1v2h2V29a3.0033 3.0033 0 00-3-3H21a3.0033 3.0033 0 00-3 3zM24 25a4 4 0 114-4A4.0039 4.0039 0 0124 25zm0-6a2 2 0 102 2A2.0027 2.0027 0 0024 19zM2 31H4V29a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1v2h2V29a3.0033 3.0033 0 00-3-3H5a3.0033 3.0033 0 00-3 3zM8 25a4 4 0 114-4A4.0042 4.0042 0 018 25zm0-6a2 2 0 102 2A2.0023 2.0023 0 008 19zM18 16h2V14a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1v2h2V14a3.0033 3.0033 0 00-3-3H21a3.0033 3.0033 0 00-3 3zM24 10a4 4 0 114-4A4.0042 4.0042 0 0124 10zm0-6a2 2 0 102 2A2.0023 2.0023 0 0024 4zM2 16H4V14a1.0013 1.0013 0 011-1h6a1.0013 1.0013 0 011 1v2h2V14a3.0033 3.0033 0 00-3-3H5a3.0033 3.0033 0 00-3 3zM8 10a4 4 0 114-4A4.0045 4.0045 0 018 10zM8 4a2 2 0 102 2A2.002 2.002 0 008 4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n EventsAlt.propTypes = iconPropTypes;\n}\nconst ExamMode = /*#__PURE__*/React.forwardRef(function ExamMode(_ref56, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref56;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path100 || (_path100 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25 23v3H7V16.83l3.59 3.58L12 19 6 13 0 19l1.41 1.41L5 16.83V26a2 2 0 002 2H25a2 2 0 002-2V23zM27 7v9.17l3.59-3.58L32 14l-6 6-6-6 1.41-1.41L25 16.17V7H13V5H25A2 2 0 0127 7zM8 10H4A2 2 0 012 8V4A2 2 0 014 2H8a2 2 0 012 2V8A2 2 0 018 10zM4 4V8H8V4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ExamMode.propTypes = iconPropTypes;\n}\nconst ExecutableProgram = /*#__PURE__*/React.forwardRef(function ExecutableProgram(_ref57, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref57;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path101 || (_path101 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M25 21L32 26 25 31 25 21z\"\n })), _path102 || (_path102 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20.17 19L17.58 21.59 19 23 23 19 19 15 17.58 16.41 20.17 19zM11.83 19L14.42 16.41 13 15 9 19 13 23 14.42 21.59 11.83 19z\"\n })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"8\",\n r: \"1\"\n })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"6\",\n cy: \"8\",\n r: \"1\"\n })), _path103 || (_path103 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21,26H4V12H28v7h2V6c0-1.1025-.8972-2-2-2H4c-1.1028,0-2,.8975-2,2V26c0,1.1025,.8972,2,2,2H21v-2ZM4,6H28v4H4V6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ExecutableProgram.propTypes = iconPropTypes;\n}\nconst Exit = /*#__PURE__*/React.forwardRef(function Exit(_ref58, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref58;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path104 || (_path104 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 4H28V28H26zM11.414 20.586L7.828 17 22 17 22 15 7.828 15 11.414 11.414 10 10 4 16 10 22 11.414 20.586z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Exit.propTypes = iconPropTypes;\n}\nconst ExpandAll = /*#__PURE__*/React.forwardRef(function ExpandAll(_ref59, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref59;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path105 || (_path105 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12,10H26a2.0025,2.0025,0,0,0,2-2V4a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2V5H6V2H4V25a2.0025,2.0025,0,0,0,2,2h4v1a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V24a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2v1H6V17h4v1a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V14a2.0025,2.0025,0,0,0-2-2H12a2.0025,2.0025,0,0,0-2,2v1H6V7h4V8A2.0025,2.0025,0,0,0,12,10Zm0-6H26l.0012,4H12Zm0,20H26l.0012,4H12Zm0-10H26l.0012,4H12Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ExpandAll.propTypes = iconPropTypes;\n}\nconst ExpandCategories = /*#__PURE__*/React.forwardRef(function ExpandCategories(_ref60, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref60;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path106 || (_path106 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 26H26V28H20zM20 18H28V20H20zM20 10H30V12H20zM15 4H17V28H15zM10.586 3.959L7 7.249 3.412 3.958 2 5.373 7 10 12 5.373 10.586 3.959z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ExpandCategories.propTypes = iconPropTypes;\n}\nconst Explore = /*#__PURE__*/React.forwardRef(function Explore(_ref61, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref61;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path107 || (_path107 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.707,9.2931a.9992.9992,0,0,0-1.0234-.2417l-9,3a1.001,1.001,0,0,0-.6323.6323l-3,9a1,1,0,0,0,1.2651,1.2651l9-3a1.0013,1.0013,0,0,0,.6323-.6324l3-9A1,1,0,0,0,22.707,9.2931ZM11.5811,20.419l2.2094-6.6284L18.21,18.21Z\"\n })), _path108 || (_path108 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Explore.propTypes = iconPropTypes;\n}\nconst Export = /*#__PURE__*/React.forwardRef(function Export(_ref62, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref62;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path109 || (_path109 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M13 12v2H3v-2H2v2l0 0c0 .6.4 1 1 1h10c.6 0 1-.4 1-1l0 0v-2H13zM3 6L3.7 6.7 7.5 2.9 7.5 12 8.5 12 8.5 2.9 12.3 6.7 13 6 8 1z\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path110 || (_path110 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26 24v4H6V24H4v4l.0076-.0049A1.9977 1.9977 0 006 30H26a2 2 0 002-2h0V24zM6 12L7.411 13.405 15 5.825 15 24 17 24 17 5.825 24.591 13.405 26 12 16 2 6 12z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Export.propTypes = iconPropTypes;\n}\nconst Eyedropper = /*#__PURE__*/React.forwardRef(function Eyedropper(_ref63, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref63;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path111 || (_path111 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 27H5V30H2zM29.71 7.29l-5-5a1 1 0 00-1.41 0h0L20 5.59l-1.29-1.3L17.29 5.71 18.59 7 8.29 17.29A1 1 0 008 18v1.59l-2.71 2.7a1 1 0 000 1.41h0l3 3a1 1 0 001.41 0h0L12.41 24H14a1 1 0 00.71-.29L25 13.41l1.29 1.3 1.42-1.42L26.41 12l3.3-3.29a1 1 0 000-1.41zM13.59 22h-2L9 24.59 7.41 23 10 20.41v-2l10-10L23.59 12zM25 10.59L21.41 7 24 4.41 27.59 8z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Eyedropper.propTypes = iconPropTypes;\n}\nconst FaceActivated = /*#__PURE__*/React.forwardRef(function FaceActivated(_ref64, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref64;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path112 || (_path112 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path113 || (_path113 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.48 2.48 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.48 2.48 0 0020.5 11zM9 20a8.13 8.13 0 0014 0z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceActivated.propTypes = iconPropTypes;\n}\nconst FaceActivatedAdd = /*#__PURE__*/React.forwardRef(function FaceActivatedAdd(_ref65, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref65;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path114 || (_path114 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 4L26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4zM11.5 11A2.5 2.5 0 1014 13.5 2.48 2.48 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.48 2.48 0 0020.5 11zM9 20a8.13 8.13 0 0014 0z\"\n })), _path115 || (_path115 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.82,14A12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a14.71,14.71,0,0,0-.16-2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceActivatedAdd.propTypes = iconPropTypes;\n}\nconst FaceActivatedFilled = /*#__PURE__*/React.forwardRef(function FaceActivatedFilled(_ref66, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref66;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path116 || (_path116 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8.11,8.11,0,0,1-7-4H23A8.11,8.11,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceActivatedFilled.propTypes = iconPropTypes;\n}\nconst FaceAdd = /*#__PURE__*/React.forwardRef(function FaceAdd(_ref67, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref67;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path117 || (_path117 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 22a6 6 0 01-5.14-2.92l-1.71 1a8 8 0 0013.7 0l-1.71-1A6 6 0 0116 22zM30 4L26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4zM11.5 11A2.5 2.5 0 1014 13.5 2.48 2.48 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.48 2.48 0 0020.5 11z\"\n })), _path118 || (_path118 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.61,13A12.33,12.33,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,29.67,13Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceAdd.propTypes = iconPropTypes;\n}\nconst FaceCool = /*#__PURE__*/React.forwardRef(function FaceCool(_ref68, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref68;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path119 || (_path119 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z\"\n })), _path120 || (_path120 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,2a12,12,0,0,1,10.89,7H25a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1H5.11A12,12,0,0,1,16,4Zm0,24A12,12,0,0,1,4,16a11.86,11.86,0,0,1,.4-3H7v2a2,2,0,0,0,2,2h3.31a2,2,0,0,0,2-1.67L14.83,12h2.34l.55,3.33a2,2,0,0,0,2,1.67H23a2,2,0,0,0,2-2V13h2.6a11.86,11.86,0,0,1,.4,3A12,12,0,0,1,16,28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceCool.propTypes = iconPropTypes;\n}\nconst FaceDissatisfied = /*#__PURE__*/React.forwardRef(function FaceDissatisfied(_ref69, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref69;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path121 || (_path121 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path122 || (_path122 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.5 2.5 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.5 2.5 0 0020.5 11zM16 19a8 8 0 00-6.85 3.89l1.71 1a6 6 0 0110.28 0l1.71-1A8 8 0 0016 19z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceDissatisfied.propTypes = iconPropTypes;\n}\nconst FaceDissatisfiedFilled = /*#__PURE__*/React.forwardRef(function FaceDissatisfiedFilled(_ref70, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref70;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path123 || (_path123 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9h0A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.54,11Zm9.64,12.92a6,6,0,0,0-10.28,0l-1.71-1a8,8,0,0,1,13.7,0ZM20.5,16a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceDissatisfiedFilled.propTypes = iconPropTypes;\n}\nconst FaceDizzy = /*#__PURE__*/React.forwardRef(function FaceDizzy(_ref71, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref71;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path124 || (_path124 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path125 || (_path125 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24.41 11L23 9.59 21 11.59 19 9.59 17.59 11 19.59 13 17.59 15 19 16.41 21 14.41 23 16.41 24.41 15 22.41 13 24.41 11zM14.41 11L13 9.59 11 11.59 9 9.59 7.59 11 9.59 13 7.59 15 9 16.41 11 14.41 13 16.41 14.41 15 12.41 13 14.41 11zM16 19a3 3 0 103 3 3 3 0 00-3-3z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceDizzy.propTypes = iconPropTypes;\n}\nconst FaceDizzyFilled = /*#__PURE__*/React.forwardRef(function FaceDizzyFilled(_ref72, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref72;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path126 || (_path126 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,16.41,7.59,15l2-2-2-2L9,9.59l2,2,2-2L14.41,11l-2,2,2,2L13,16.41l-2-2ZM16,25a3,3,0,1,1,3-3A3,3,0,0,1,16,25Zm8.41-10L23,16.41l-2-2-2,2L17.59,15l2-2-2-2L19,9.59l2,2,2-2L24.41,11l-2,2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceDizzyFilled.propTypes = iconPropTypes;\n}\nconst FaceMask = /*#__PURE__*/React.forwardRef(function FaceMask(_ref73, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref73;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path127 || (_path127 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.5 2.5 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.5 2.5 0 0020.5 11z\"\n })), _path128 || (_path128 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,16A14,14,0,1,0,8.8994,28.042l.0156.1562A1.993,1.993,0,0,0,10.9048,30h10.19a1.9929,1.9929,0,0,0,1.99-1.8008l.0156-.1572A13.9674,13.9674,0,0,0,30,16ZM16,4A11.99,11.99,0,0,1,27.97,15.397L22.7637,18H9.2363L4.0305,15.397A11.99,11.99,0,0,1,16,4ZM4.12,17.6777l3.94,1.97.5813,5.81A11.97,11.97,0,0,1,4.12,17.6777ZM21.0947,28H10.9053l-.8-8h11.79Zm2.2644-2.542.5811-5.81,3.94-1.97A11.9712,11.9712,0,0,1,23.3591,25.458Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceMask.propTypes = iconPropTypes;\n}\nconst FaceNeutral = /*#__PURE__*/React.forwardRef(function FaceNeutral(_ref74, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref74;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path129 || (_path129 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path130 || (_path130 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.5 2.5 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.5 2.5 0 0020.5 11zM10 20H22V22H10z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceNeutral.propTypes = iconPropTypes;\n}\nconst FaceNeutralFilled = /*#__PURE__*/React.forwardRef(function FaceNeutralFilled(_ref75, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref75;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path131 || (_path131 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,13.5A2.5,2.5,0,1,1,11.5,16,2.5,2.5,0,0,1,9,13.5ZM22,22H10V20H22Zm-1.5-6A2.5,2.5,0,1,1,23,13.5,2.5,2.5,0,0,1,20.5,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceNeutralFilled.propTypes = iconPropTypes;\n}\nconst FacePending = /*#__PURE__*/React.forwardRef(function FacePending(_ref76, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref76;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path132 || (_path132 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path133 || (_path133 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.48 2.48 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.48 2.48 0 0020.5 11z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FacePending.propTypes = iconPropTypes;\n}\nconst FacePendingFilled = /*#__PURE__*/React.forwardRef(function FacePendingFilled(_ref77, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref77;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path134 || (_path134 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM11.5,16A2.5,2.5,0,1,1,14,13.5,2.48,2.48,0,0,1,11.5,16Zm9,0A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FacePendingFilled.propTypes = iconPropTypes;\n}\nconst FaceSatisfied = /*#__PURE__*/React.forwardRef(function FaceSatisfied(_ref78, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref78;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path135 || (_path135 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path136 || (_path136 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.5 11A2.5 2.5 0 1014 13.5 2.48 2.48 0 0011.5 11zM20.5 11A2.5 2.5 0 1023 13.5 2.48 2.48 0 0020.5 11zM16 24a8 8 0 006.85-3.89l-1.71-1a6 6 0 01-10.28 0l-1.71 1A8 8 0 0016 24z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceSatisfied.propTypes = iconPropTypes;\n}\nconst FaceSatisfiedFilled = /*#__PURE__*/React.forwardRef(function FaceSatisfiedFilled(_ref79, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref79;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path137 || (_path137 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceSatisfiedFilled.propTypes = iconPropTypes;\n}\nconst FaceWink = /*#__PURE__*/React.forwardRef(function FaceWink(_ref80, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref80;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path138 || (_path138 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z\"\n })), _path139 || (_path139 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20.5 11A2.5 2.5 0 1023 13.5 2.5 2.5 0 0020.5 11zM8 13H14V15H8zM16 24a8 8 0 006.85-3.89l-1.71-1a6 6 0 01-10.28 0l-1.71 1A8 8 0 0016 24z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceWink.propTypes = iconPropTypes;\n}\nconst FaceWinkFilled = /*#__PURE__*/React.forwardRef(function FaceWinkFilled(_ref81, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref81;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path140 || (_path140 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,13h6v2H8Zm8,11a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FaceWinkFilled.propTypes = iconPropTypes;\n}\nconst Factor = /*#__PURE__*/React.forwardRef(function Factor(_ref82, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref82;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path141 || (_path141 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,28V9H24V4h2V2H20V4h2V9H19V28H15V16H12V11h2V9H8v2h2v5H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V18h4Zm8-17h4V28H21Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Factor.propTypes = iconPropTypes;\n}\nconst Fade = /*#__PURE__*/React.forwardRef(function Fade(_ref83, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref83;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path142 || (_path142 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4.1 12.6l-.6.8c.6.5 1.3.9 2.1 1.2l.3-.9C5.3 13.4 4.7 13 4.1 12.6zM2.1 9l-1 .2c.1.8.4 1.6.8 2.3L2.8 11C2.4 10.4 2.2 9.7 2.1 9zM5.9 2.4L5.6 1.4C4.8 1.7 4.1 2.1 3.5 2.7l.6.8C4.7 3 5.3 2.6 5.9 2.4zM2.8 5L1.9 4.5C1.5 5.2 1.3 6 1.1 6.8l1 .2C2.2 6.3 2.5 5.6 2.8 5zM8 1v1c3.3 0 6 2.7 6 6s-2.7 6-6 6v1c3.9 0 7-3.1 7-7S11.9 1 8 1z\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path143 || (_path143 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.24 25.14L7 26.67a13.79 13.79 0 004.18 2.44l.69-1.87A12 12 0 018.24 25.14zM4.19 18l-2 .41A14.09 14.09 0 003.86 23L5.59 22A12.44 12.44 0 014.19 18zM11.82 4.76l-.69-1.87A13.79 13.79 0 007 5.33L8.24 6.86A12 12 0 0111.82 4.76zM5.59 10L3.86 9a14.37 14.37 0 00-1.64 4.59l2 .34A12.05 12.05 0 015.59 10zM16 2V4a12 12 0 010 24v2A14 14 0 0016 2z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Fade.propTypes = iconPropTypes;\n}\nconst Favorite = /*#__PURE__*/React.forwardRef(function Favorite(_ref84, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref84;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path144 || (_path144 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.45,6a5.47,5.47,0,0,1,3.91,1.64,5.7,5.7,0,0,1,0,8L16,26.13,5.64,15.64a5.7,5.7,0,0,1,0-8,5.48,5.48,0,0,1,7.82,0L16,10.24l2.53-2.58A5.44,5.44,0,0,1,22.45,6m0-2a7.47,7.47,0,0,0-5.34,2.24L16,7.36,14.89,6.24a7.49,7.49,0,0,0-10.68,0,7.72,7.72,0,0,0,0,10.82L16,29,27.79,17.06a7.72,7.72,0,0,0,0-10.82A7.49,7.49,0,0,0,22.45,4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Favorite.propTypes = iconPropTypes;\n}\nconst FavoriteFilled = /*#__PURE__*/React.forwardRef(function FavoriteFilled(_ref85, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref85;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path145 || (_path145 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.5,4c-2,0-3.9,0.8-5.3,2.2L16,7.4l-1.1-1.1C12,3.3,7.2,3.3,4.3,6.2c0,0-0.1,0.1-0.1,0.1c-3,3-3,7.8,0,10.8L16,29 l11.8-11.9c3-3,3-7.8,0-10.8C26.4,4.8,24.5,4,22.5,4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FavoriteFilled.propTypes = iconPropTypes;\n}\nconst FavoriteHalf = /*#__PURE__*/React.forwardRef(function FavoriteHalf(_ref86, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref86;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path146 || (_path146 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4.21,17.0615,16,29,27.79,17.0615a7.7313,7.7313,0,0,0,0-10.8232,7.494,7.494,0,0,0-10.6841,0L16,7.3643l-1.1062-1.126a7.494,7.494,0,0,0-10.6841,0A7.7313,7.7313,0,0,0,4.21,17.0615ZM26.3552,15.645,16,26.1255V10.23q1.2708-1.2876,2.5413-2.5742a5.4768,5.4768,0,0,1,7.8139,0A5.708,5.708,0,0,1,26.3552,15.645Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FavoriteHalf.propTypes = iconPropTypes;\n}\nconst FeatureMembership = /*#__PURE__*/React.forwardRef(function FeatureMembership(_ref87, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref87;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path147 || (_path147 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Zm-1-23.1716l6.1716,6.1716-6.1716,6.1716-6.1716-6.1716,6.1716-6.1716Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FeatureMembership.propTypes = iconPropTypes;\n}\nconst FeatureMembershipFilled = /*#__PURE__*/React.forwardRef(function FeatureMembershipFilled(_ref88, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref88;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path148 || (_path148 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FeatureMembershipFilled.propTypes = iconPropTypes;\n}\nconst FeatureTyping = /*#__PURE__*/React.forwardRef(function FeatureTyping(_ref89, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref89;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle15 || (_circle15 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"17.5\",\n cy: \"22.5\",\n r: \"1.5\",\n strokeWidth: \"0\"\n })), _circle16 || (_circle16 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"6.5\",\n cy: \"22.5\",\n r: \"1.5\",\n strokeWidth: \"0\"\n })), _path149 || (_path149 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m13,28v-10h7c.3564,0,.686-.1899.8647-.498.0902-.1551.1353-.3285.1353-.502,0-.1711-.0441-.3424-.1318-.4961L12.8682,2.504c-.1919-.3359-.5301-.504-.8682-.504s-.6763.1681-.8682.504l-7.9999,13.9999c-.0878.1537-.1318.3249-.1318.4961,0,.1735.0451.3469.1353.502.1787.3081.5083.498.8647.498h7v10c0,1.1046.8954,2,2,2h15v-2h-15Zm-7.2769-12l6.2769-10.9844,6.2769,10.9844H5.7231Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FeatureTyping.propTypes = iconPropTypes;\n}\nconst FetchUpload = /*#__PURE__*/React.forwardRef(function FetchUpload(_ref90, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref90;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path150 || (_path150 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,7,6,17l1.41,1.41L15,10.83V28H2v2H15a2,2,0,0,0,2-2V10.83l7.59,7.58L26,17Z\"\n })), _path151 || (_path151 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FetchUpload.propTypes = iconPropTypes;\n}\nconst FetchUploadCloud = /*#__PURE__*/React.forwardRef(function FetchUploadCloud(_ref91, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref91;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path152 || (_path152 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,13l-5,5,1.41,1.41L15,16.83V28H6v2h9a2,2,0,0,0,2-2V16.83l2.59,2.58L21,18Z\"\n })), _path153 || (_path153 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23.5,22H23V20h.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,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FetchUploadCloud.propTypes = iconPropTypes;\n}\nconst FileStorage = /*#__PURE__*/React.forwardRef(function FileStorage(_ref92, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref92;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path154 || (_path154 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle17 || (_circle17 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"25\",\n r: \"1\"\n })), _path155 || (_path155 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.707,7.293l-5-5A1,1,0,0,0,17,2H11A2.0023,2.0023,0,0,0,9,4V20a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V8A1,1,0,0,0,22.707,7.293ZM20.5857,8H17V4.4141ZM11,20V4h4V8a2.0023,2.0023,0,0,0,2,2h4V20Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FileStorage.propTypes = iconPropTypes;\n}\nconst Filter = /*#__PURE__*/React.forwardRef(function Filter(_ref93, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref93;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path156 || (_path156 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18,28H14a2,2,0,0,1-2-2V18.41L4.59,11A2,2,0,0,1,4,9.59V6A2,2,0,0,1,6,4H26a2,2,0,0,1,2,2V9.59A2,2,0,0,1,27.41,11L20,18.41V26A2,2,0,0,1,18,28ZM6,6V9.59l8,8V26h4V17.59l8-8V6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Filter.propTypes = iconPropTypes;\n}\nconst FilterEdit = /*#__PURE__*/React.forwardRef(function FilterEdit(_ref94, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref94;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path157 || (_path157 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,6H4V9.17l7.41,7.42.59.58V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.59,10.59A2,2,0,0,1,2,9.17V6A2,2,0,0,1,4,4H26Z\"\n })), _path158 || (_path158 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29.71,11.29l-3-3a1,1,0,0,0-1.42,0L16,17.59V22h4.41l9.3-9.29A1,1,0,0,0,29.71,11.29ZM19.59,20H18V18.41l5-5L24.59,15ZM26,13.59,24.41,12,26,10.41,27.59,12Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FilterEdit.propTypes = iconPropTypes;\n}\nconst FilterRemove = /*#__PURE__*/React.forwardRef(function FilterRemove(_ref95, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref95;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path159 || (_path159 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 11.414L28.586 10 24 14.586 19.414 10 18 11.414 22.586 16 18 20.585 19.415 22 24 17.414 28.587 22 30 20.587 25.414 16 30 11.414z\"\n })), _path160 || (_path160 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4,4A2,2,0,0,0,2,6V9.1709a2,2,0,0,0,.5859,1.4145L10,18v8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V24H16v2H12V17.1709l-.5859-.5855L4,9.1709V6H24V8h2V6a2,2,0,0,0-2-2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FilterRemove.propTypes = iconPropTypes;\n}\nconst FilterReset = /*#__PURE__*/React.forwardRef(function FilterReset(_ref96, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref96;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path161 || (_path161 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.5,9A7.4522,7.4522,0,0,0,16,12.792V8H14v8h8V14H17.6167A5.4941,5.4941,0,1,1,22.5,22H22v2h.5a7.5,7.5,0,0,0,0-15Z\"\n })), _path162 || (_path162 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,6H4V9.171l7.4142,7.4143L12,17.171V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.5858,10.5853A2,2,0,0,1,2,9.171V6A2,2,0,0,1,4,4H26Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FilterReset.propTypes = iconPropTypes;\n}\nconst Finance = /*#__PURE__*/React.forwardRef(function Finance(_ref97, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref97;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path163 || (_path163 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 28H30V30H2zM27 11a1 1 0 001-1V7a1 1 0 00-.66-.94l-11-4a1 1 0 00-.68 0l-11 4A1 1 0 004 7v3a1 1 0 001 1H6V24H4v2H28V24H26V11zM6 7.7L16 4.06 26 7.7V9H6zM18 24H14V11h4zM8 11h4V24H8zM24 24H20V11h4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Finance.propTypes = iconPropTypes;\n}\nconst FinancialAssets = /*#__PURE__*/React.forwardRef(function FinancialAssets(_ref98, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref98;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path164 || (_path164 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,16h-2v2h-1c-1.1,0-2,.9-2,2v2c0,1.1.9,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1,0,2-.9,2-2v-2c0-1.1-.9-2-2-2h-4v-2h6v-2h-3v-2ZM28,8h-6v-4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v4h-6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h15v-2H4v-14h24v4h2v-4c0-1.1-.9-2-2-2ZM20,8h-8v-4h8v4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FinancialAssets.propTypes = iconPropTypes;\n}\nconst FingerprintRecognition = /*#__PURE__*/React.forwardRef(function FingerprintRecognition(_ref99, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref99;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path165 || (_path165 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7,5.21a.77.77,0,0,1-.46-1.38A15.46,15.46,0,0,1,16,1c2.66,0,6.48.45,9.5,2.62a.77.77,0,0,1,.18,1.07.78.78,0,0,1-1.08.17A15,15,0,0,0,16,2.53,14,14,0,0,0,7.5,5.05.74.74,0,0,1,7,5.21Z\"\n })), _path166 || (_path166 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28.23,12.26a.78.78,0,0,1-.63-.33C25.87,9.49,22.78,6.24,16,6.24a14,14,0,0,0-11.63,5.7.77.77,0,0,1-1.07.17A.76.76,0,0,1,3.15,11,15.54,15.54,0,0,1,16,4.71c5.61,0,9.81,2.08,12.84,6.34a.77.77,0,0,1-.19,1.07A.79.79,0,0,1,28.23,12.26Z\"\n })), _path167 || (_path167 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12.28,31a.78.78,0,0,1-.72-.49.75.75,0,0,1,.44-1c4.37-1.68,7-5.12,7-9.21a2.8,2.8,0,0,0-3-3c-1.86,0-2.76,1-3,3.35a4.27,4.27,0,0,1-4.52,3.83,4.27,4.27,0,0,1-4.32-4.59A11.71,11.71,0,0,1,16,8.39a12,12,0,0,1,12,11.93,18.66,18.66,0,0,1-1.39,6.5.78.78,0,0,1-1,.41.76.76,0,0,1-.41-1,17.25,17.25,0,0,0,1.27-5.91A10.45,10.45,0,0,0,16,9.92a10.18,10.18,0,0,0-10.38,10,2.77,2.77,0,0,0,2.79,3.06,2.74,2.74,0,0,0,3-2.48c.36-3.11,1.89-4.69,4.56-4.69a4.31,4.31,0,0,1,4.52,4.56c0,4.74-3,8.72-8,10.63A.92.92,0,0,1,12.28,31Z\"\n })), _path168 || (_path168 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19.77,30.28a.81.81,0,0,1-.52-.2.76.76,0,0,1,0-1.08,12.63,12.63,0,0,0,3.54-8.68c0-1.56-.48-6.65-6.7-6.65a6.83,6.83,0,0,0-4.94,1.87A6.17,6.17,0,0,0,9.32,20a.77.77,0,0,1-.77.76h0A.76.76,0,0,1,7.78,20,7.73,7.73,0,0,1,10,14.46a8.34,8.34,0,0,1,6-2.32c6.08,0,8.24,4.4,8.24,8.18A14.09,14.09,0,0,1,20.34,30,.75.75,0,0,1,19.77,30.28Z\"\n })), _path169 || (_path169 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.66,27.74a14.14,14.14,0,0,1-1.56-.09.76.76,0,1,1,.17-1.52c2.49.28,4.45-.16,5.84-1.32a6.37,6.37,0,0,0,2.12-4.53.75.75,0,0,1,.82-.71.78.78,0,0,1,.72.81A7.89,7.89,0,0,1,14.09,26,8.2,8.2,0,0,1,8.66,27.74Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FingerprintRecognition.propTypes = iconPropTypes;\n}\nconst Fire = /*#__PURE__*/React.forwardRef(function Fire(_ref100, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref100;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path170 || (_path170 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24.832,16.9688c-.2724-.6465-.5815-1.38-.8833-2.2852-.79-2.3682,1.7344-4.9522,1.7583-4.9766L24.293,8.293c-.1407.1406-3.4234,3.4775-2.2417,7.0234.3261.978.6513,1.749.938,2.43A9.3812,9.3812,0,0,1,24,22a6.24,6.24,0,0,1-4.1892,5.293,8.52,8.52,0,0,0-2.1038-8l-1.0444-1.0445-.5815,1.3575C14.2449,23.89,12.06,25.76,10.7747,26.54A5.8437,5.8437,0,0,1,8,22a9.6239,9.6239,0,0,1,.9287-3.6289A11.3329,11.3329,0,0,0,10,14V12.2217c.8735.36,2,1.3037,2,3.7783v2.6035l1.7432-1.9341c3.1118-3.4546,2.4624-7.5678,1.206-10.3081A4.4859,4.4859,0,0,1,18,11h2c0-5.5371-4.5786-7-7-7H11l1.1992,1.5986c.1377.1856,2.8628,3.9278,1.3535,7.688A4.9426,4.9426,0,0,0,9,10H8v4a9.6239,9.6239,0,0,1-.9287,3.6289A11.3329,11.3329,0,0,0,6,22c0,3.8477,3.8232,8,10,8s10-4.1523,10-8A11.3771,11.3771,0,0,0,24.832,16.9688ZM12.8352,27.5264a16.4987,16.4987,0,0,0,4.3665-5.5987,6.1053,6.1053,0,0,1,.2573,5.9717A11.3213,11.3213,0,0,1,16,28,10.3278,10.3278,0,0,1,12.8352,27.5264Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Fire.propTypes = iconPropTypes;\n}\nconst Firewall = /*#__PURE__*/React.forwardRef(function Firewall(_ref101, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref101;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path171 || (_path171 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27 20.3972v3c-1 0-2-1.5-2-4v-3c-4 5-5 7-5 9A5.0008 5.0008 0 0023.0458 30 7.5281 7.5281 0 0125 26.3972 7.5281 7.5281 0 0126.9542 30 5.0008 5.0008 0 0030 25.3972C30 23.3972 28.875 21.8258 27 20.3972zM17 28H4V24H17V22H4a2.0023 2.0023 0 00-2 2v4a2.0023 2.0023 0 002 2H17z\"\n })), _path172 || (_path172 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 12H7a2.0023 2.0023 0 00-2 2v4a2.0023 2.0023 0 002 2H17V18H7V14H28l.0011 2H30V14A2.0023 2.0023 0 0028 12zM25 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 4V8H25V4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Firewall.propTypes = iconPropTypes;\n}\nconst FirewallClassic = /*#__PURE__*/React.forwardRef(function FirewallClassic(_ref102, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref102;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path173 || (_path173 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 20V17a4 4 0 00-8 0v3a2.0023 2.0023 0 00-2 2v6a2.0023 2.0023 0 002 2h8a2.0023 2.0023 0 002-2V22A2.0023 2.0023 0 0028 20zm-6-3a2 2 0 014 0v3H22zm6 11H20V22h8zM15 27H4a2 2 0 01-2-2V22a2 2 0 012-2H15v2H4v3H15zM17 18H8a2 2 0 01-2-2V13a2 2 0 012-2H19v2H8v3h9zM22 9H4A2 2 0 012 7V4A2 2 0 014 2H22a2 2 0 012 2V7A2 2 0 0122 9zM4 7H22V4H4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FirewallClassic.propTypes = iconPropTypes;\n}\nconst Fish = /*#__PURE__*/React.forwardRef(function Fish(_ref103, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref103;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle18 || (_circle18 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"24\",\n cy: \"7\",\n r: \"1\"\n })), _path174 || (_path174 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,2A16.0183,16.0183,0,0,0,10,18v2H3a1,1,0,0,0-.707,1.707l8,8A1,1,0,0,0,12,29V22h2A16.0183,16.0183,0,0,0,30,6V2ZM10,26.5857,5.4141,22H10ZM12,20V18a13.9394,13.9394,0,0,1,3.908-9.6777l7.77,7.7695A13.94,13.94,0,0,1,14,20ZM28,6a13.9163,13.9163,0,0,1-2.98,8.6055L17.3945,6.98A13.9163,13.9163,0,0,1,26,4h2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Fish.propTypes = iconPropTypes;\n}\nconst FishMultiple = /*#__PURE__*/React.forwardRef(function FishMultiple(_ref104, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref104;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path175 || (_path175 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,14a12.9845,12.9845,0,0,0-3.8286-9.2427L24.4143,3,23,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L22,24.5857,23.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,30,14Z\"\n })), _circle19 || (_circle19 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"17\",\n cy: \"11\",\n r: \"1\"\n })), _path176 || (_path176 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22,14a12.9845,12.9845,0,0,0-3.8286-9.2427L16.4143,3,15,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L14,24.5857,15.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,22,14Z\"\n })), _circle20 || (_circle20 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"25\",\n cy: \"11\",\n r: \"1\"\n })), _circle21 || (_circle21 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"11\",\n r: \"1\"\n })), _path177 || (_path177 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M9.4141,24l.7573-.7573a13.0708,13.0708,0,0,0,0-18.4854L8,2.5857,5.8286,4.7571a13.0708,13.0708,0,0,0,0,18.4854L6.5859,24,2.293,28.2928A1,1,0,0,0,3,30H13a1,1,0,0,0,.707-1.707ZM4,14A10.9988,10.9988,0,0,1,7.2427,6.1712L8,5.4138l.7573.7574a11.0713,11.0713,0,0,1,0,15.6572L8,22.5857l-.7573-.7573A10.9988,10.9988,0,0,1,4,14ZM5.4141,28,8,25.4138,10.5859,28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FishMultiple.propTypes = iconPropTypes;\n}\nconst FitToHeight = /*#__PURE__*/React.forwardRef(function FitToHeight(_ref105, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref105;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path178 || (_path178 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11 10L12.41 11.41 15 8.83 15 23.17 12.41 20.59 11 22 16 27 21 22 19.59 20.59 17 23.17 17 8.83 19.59 11.41 21 10 16 5 11 10z\"\n })), _path179 || (_path179 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FitToHeight.propTypes = iconPropTypes;\n}\nconst FitToScreen = /*#__PURE__*/React.forwardRef(function FitToScreen(_ref106, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref106;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path180 || (_path180 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22 16L24 16 24 8 16 8 16 10 22 10 22 16zM8 24L16 24 16 22 10 22 10 16 8 16 8 24z\"\n })), _path181 || (_path181 = /*#__PURE__*/React.createElement(\"path\", {\n 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,6V26H26.0012L26,6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FitToScreen.propTypes = iconPropTypes;\n}\nconst FitToWidth = /*#__PURE__*/React.forwardRef(function FitToWidth(_ref107, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref107;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path182 || (_path182 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22 11L20.59 12.41 23.17 15 8.83 15 11.41 12.41 10 11 5 16 10 21 11.41 19.59 8.83 17 23.17 17 20.59 19.59 22 21 27 16 22 11z\"\n })), _path183 || (_path183 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FitToWidth.propTypes = iconPropTypes;\n}\nconst Flag = /*#__PURE__*/React.forwardRef(function Flag(_ref108, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref108;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path184 || (_path184 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6,30H4V2H28l-5.8,9L28,20H6ZM6,18H24.33L19.8,11l4.53-7H6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Flag.propTypes = iconPropTypes;\n}\nconst FlagFilled = /*#__PURE__*/React.forwardRef(function FlagFilled(_ref109, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref109;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path185 || (_path185 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6,30H4V2H28l-5.8,9L28,20H6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlagFilled.propTypes = iconPropTypes;\n}\nconst FlaggingTaxi = /*#__PURE__*/React.forwardRef(function FlaggingTaxi(_ref110, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref110;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path186 || (_path186 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24.7976,2,20.3555,8.6641A2.9941,2.9941,0,0,1,17.8594,10H12a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H17V28H13V19H11V13a1.0009,1.0009,0,0,1,1-1h5.8594a4.9881,4.9881,0,0,0,4.16-2.2266l4.4422-6.664Z\"\n })), _path187 || (_path187 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,11,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,13,5Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlaggingTaxi.propTypes = iconPropTypes;\n}\nconst Flash = /*#__PURE__*/React.forwardRef(function Flash(_ref111, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref111;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path188 || (_path188 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Flash.propTypes = iconPropTypes;\n}\nconst FlashFilled = /*#__PURE__*/React.forwardRef(function FlashFilled(_ref112, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref112;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path189 || (_path189 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlashFilled.propTypes = iconPropTypes;\n}\nconst FlashOff = /*#__PURE__*/React.forwardRef(function FlashOff(_ref113, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref113;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path190 || (_path190 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.13 6.89L11.8 4h8l-2 9H23l-2.49 3.25 1.43 1.43 3.87-5.07a1 1 0 00.11-1A1 1 0 0025 11H20.25L22 3.22a1 1 0 00-.2-.85A1 1 0 0021 2H11a1 1 0 00-1 .77L9.46 5.22zM30 28.59l-9.31-9.31h0l-1.42-1.43h0L10.6 9.19h0L8.93 7.52h0L3.41 2 2 3.41 8.4 9.82 7 15.77A1 1 0 008 17h4.83L11 28.85a1 1 0 00.6 1.07A1.09 1.09 0 0012 30a1 1 0 00.79-.39l6.68-8.73L28.59 30zM9.26 15l.81-3.52L13.59 15zm4.32 10.28L15 16.37 18 19.45z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlashOff.propTypes = iconPropTypes;\n}\nconst FlashOffFilled = /*#__PURE__*/React.forwardRef(function FlashOffFilled(_ref114, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref114;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path191 || (_path191 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 28.59L3.41 2 2 3.41 8.4 9.82 7 15.77A1 1 0 008 17h4.83L11 28.85a1 1 0 00.6 1.07A1.09 1.09 0 0012 30a1 1 0 00.79-.39l6.68-8.73L28.59 30zM22.53 16.87l3.26-4.26a1 1 0 00.11-1A1 1 0 0025 11H20.25L22 3.22a1 1 0 00-.2-.85A1 1 0 0021 2H11a1 1 0 00-1 .77l-.3 1.3z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlashOffFilled.propTypes = iconPropTypes;\n}\nconst FlightInternational = /*#__PURE__*/React.forwardRef(function FlightInternational(_ref115, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref115;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path192 || (_path192 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,28a5.3257,5.3257,0,0,1-.6714-.044A21.7855,21.7855,0,0,1,12.0332,17H29.95c.0236-.3315.05-.6626.05-1A14,14,0,1,0,16,30ZM27.9492,15H21.9631A24.3247,24.3247,0,0,0,19.21,4.4492,12.0123,12.0123,0,0,1,27.9492,15ZM16.6714,4.0439A21.7855,21.7855,0,0,1,19.9668,15H12.0332A21.7855,21.7855,0,0,1,15.3286,4.0439,5.159,5.159,0,0,1,16.6714,4.0439ZM12.79,4.4492A24.3275,24.3275,0,0,0,10.0369,15H4.0508A12.0126,12.0126,0,0,1,12.79,4.4492ZM4.0508,17h5.9861A24.3275,24.3275,0,0,0,12.79,27.5508,12.0126,12.0126,0,0,1,4.0508,17Z\"\n })), _path193 || (_path193 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M25,25l5,2V25l-5-2.5V20a1,1,0,0,0-2,0v2.5L18,25v2l5-2v3.5L21,30v1l3-1,3,1V30l-2-1.5Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlightInternational.propTypes = iconPropTypes;\n}\nconst FlightRoster = /*#__PURE__*/React.forwardRef(function FlightRoster(_ref116, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref116;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path194 || (_path194 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M26,6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6V26a2,2,0,0,0,2,2h8V26H8V6H24v6h2Z\"\n })), _path195 || (_path195 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 18H16V20H10zM10 14H22V16H10z\"\n })), _path196 || (_path196 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M22 10v2H10V10zM25 23l5 2V23l-5-2.5V18a1 1 0 00-2 0v2.5L18 23v2l5-2v3.5L21 28v1l3-1 3 1V28l-2-1.5z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlightRoster.propTypes = iconPropTypes;\n}\nconst FlightSchedule = /*#__PURE__*/React.forwardRef(function FlightSchedule(_ref117, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref117;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path197 || (_path197 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z\"\n })), _path198 || (_path198 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16V26H6V6h4V8h2V6h8V8h2V6h4v7h2V6A2,2,0,0,0,26,4Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlightSchedule.propTypes = iconPropTypes;\n}\nconst FloatingIp = /*#__PURE__*/React.forwardRef(function FloatingIp(_ref118, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref118;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path199 || (_path199 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25,11a5.0083,5.0083,0,0,0-4.8989,4H11.8989a5,5,0,1,0,0,2h8.2022A5,5,0,1,0,25,11Zm0,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,19Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FloatingIp.propTypes = iconPropTypes;\n}\nconst Flood = /*#__PURE__*/React.forwardRef(function Flood(_ref119, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref119;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path200 || (_path200 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29 28a2.8828 2.8828 0 01-1-.1816v-.0059a3.7662 3.7662 0 01-2.0532-2.1338A.971.971 0 0025 25a1.007 1.007 0 00-.9487.6836A3.4376 3.4376 0 0121 28a3.44 3.44 0 01-3.0532-2.3213A.9894.9894 0 0017 25a1.007 1.007 0 00-.9487.6836A3.4376 3.4376 0 0113 28a3.44 3.44 0 01-3.0532-2.3213 1 1 0 00-1.8955.0049A3.4376 3.4376 0 015 28H2v2H5a4.9316 4.9316 0 004-1.9873 5.0192 5.0192 0 008 0 5.0192 5.0192 0 008 0 5.1433 5.1433 0 002.1379 1.62A4.8374 4.8374 0 0029 30h1V28zM28 13.63L29.7573 15 31 13.4282 16.6123 2.2139a1.0094 1.0094 0 00-1.2427 0L1 13.4194l1.2427 1.5718L4 13.6211v5.1875a3.6907 3.6907 0 01-2 2.0039V22.896a4.9958 4.9958 0 003-1.8833 5.0192 5.0192 0 008 0 5.0192 5.0192 0 008 0A4.9316 4.9316 0 0025 23h5V21H28zm-6.0513 5.0532a1 1 0 00-1.8955-.0049A3.44 3.44 0 0117 21a3.4376 3.4376 0 01-3.0513-2.3164A1.007 1.007 0 0013 18a.9894.9894 0 00-.9468.6787A3.44 3.44 0 019 21a3.37 3.37 0 01-3.0021-2.19L6 12.0615l9.991-7.79L26 12.0718 26.0017 21H25A3.4376 3.4376 0 0121.9487 18.6836z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Flood.propTypes = iconPropTypes;\n}\nconst FloodWarning = /*#__PURE__*/React.forwardRef(function FloodWarning(_ref120, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref120;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path201 || (_path201 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z\"\n })), _path202 || (_path202 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n d: \"M23.75,11h-1.5V7h1.5ZM23,12a1,1,0,1,0,1,1A1,1,0,0,0,23,12Z\"\n })), _path203 || (_path203 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29.9115,14.9355,23.6284,3.3706a.7181.7181,0,0,0-1.2568,0L16.0885,14.9355A.72.72,0,0,0,16.72,16H29.28A.72.72,0,0,0,29.9115,14.9355ZM22.25,7h1.5v4h-1.5ZM23,14a1,1,0,1,1,1-1A1,1,0,0,1,23,14Z\"\n })), _path204 || (_path204 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,21V18H26v3H25a3.4376,3.4376,0,0,1-3.0513-2.3164,1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.3663,3.3663,0,0,1-3-2.1855v-6.753l10-7.79,2.5327,1.9756.9682-1.7818L16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6892,3.6892,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FloodWarning.propTypes = iconPropTypes;\n}\nconst Floorplan = /*#__PURE__*/React.forwardRef(function Floorplan(_ref121, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref121;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path205 || (_path205 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h15v-2c0-2.8,2.2-5,5-5v-2c-3.9,0-7,3.1-7,7h-3v-4h-2v4H4V4h8v14h2v-5h4v-2h-4V4 h14v7h-4v2h4v15h-4v2h4c1.1,0,2-0.9,2-2V4C30,2.9,29.1,2,28,2z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Floorplan.propTypes = iconPropTypes;\n}\nconst Flow = /*#__PURE__*/React.forwardRef(function Flow(_ref122, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref122;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path206 || (_path206 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,22.14V17a2,2,0,0,0-2-2H17V9.86a4,4,0,1,0-2,0V15H7a2,2,0,0,0-2,2v5.14a4,4,0,1,0,2,0V17H25v5.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26ZM14,6a2,2,0,1,1,2,2A2,2,0,0,1,14,6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Flow.propTypes = iconPropTypes;\n}\nconst FlowConnection = /*#__PURE__*/React.forwardRef(function FlowConnection(_ref123, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref123;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path207 || (_path207 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,18H22a2.0023,2.0023,0,0,0-2,2v2H14.4141L10,17.5859V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4v6a2.0023,2.0023,0,0,0,2,2H8v5.5859L3.293,22.293a.9994.9994,0,0,0,0,1.414l5,5a.9995.9995,0,0,0,1.414,0L14.4141,24H20v2a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V20A2.0023,2.0023,0,0,0,28,18ZM6,4h6v6H6ZM9,26.5859,5.4141,23,9,19.4141,12.5859,23ZM22,26V20h6v6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlowConnection.propTypes = iconPropTypes;\n}\nconst FlowData = /*#__PURE__*/React.forwardRef(function FlowData(_ref124, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref124;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path208 || (_path208 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20,23H11.86a4.17,4.17,0,0,0-.43-1L22,11.43A3.86,3.86,0,0,0,24,12a4,4,0,1,0-3.86-5H11.86a4,4,0,1,0,0,2h8.28a4.17,4.17,0,0,0,.43,1L10,20.57A3.86,3.86,0,0,0,8,20a4,4,0,1,0,3.86,5H20v3h8V20H20ZM8,10a2,2,0,1,1,2-2A2,2,0,0,1,8,10ZM24,6a2,2,0,1,1-2,2A2,2,0,0,1,24,6ZM8,26a2,2,0,1,1,2-2A2,2,0,0,1,8,26Zm14-4h4v4H22Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlowData.propTypes = iconPropTypes;\n}\nconst FlowModeler = /*#__PURE__*/React.forwardRef(function FlowModeler(_ref125, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref125;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path209 || (_path209 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 10H2V2h8zM4 8H8V4H4zM30 30H22V22h8zm-6-2h4V24H24zM20 27H8A6 6 0 018 15v2a4 4 0 000 8H20zM24 17V15a4 4 0 000-8H12V5H24a6 6 0 010 12z\"\n })), _path210 || (_path210 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19,11H13l-3,4,6,6,6-6Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n FlowModeler.propTypes = iconPropTypes;\n}\n\nexport { Drink_01, Drink_02, DriverAnalysis, Drone, DroneDelivery, DroneFront, DroneVideo, DropPhoto, DropPhotoFilled, Drought, Dvr, Earth, EarthAmericas, EarthAmericasFilled, EarthEuropeAfrica, EarthEuropeAfricaFilled, EarthFilled, EarthSoutheastAsia, EarthSoutheastAsiaFilled, Earthquake, EdgeCluster, EdgeDevice, EdgeNode, EdgeNodeAlt, EdgeService, Edit, EditOff, EdtLoop, Education, Email, EmailNew, EmissionsManagement, Encryption, EnergyRenewable, Enterprise, EnumerationDefinition, EnumerationUsage, EqualApproximately, Equalizer, Erase, Error, ErrorFilled, ErrorOutline, Event, EventChange, EventIncident, EventSchedule, EventWarning, Events, EventsAlt, ExamMode, ExecutableProgram, Exit, ExpandAll, ExpandCategories, Explore, Export, Eyedropper, FaceActivated, FaceActivatedAdd, FaceActivatedFilled, FaceAdd, FaceCool, FaceDissatisfied, FaceDissatisfiedFilled, FaceDizzy, FaceDizzyFilled, FaceMask, FaceNeutral, FaceNeutralFilled, FacePending, FacePendingFilled, FaceSatisfied, FaceSatisfiedFilled, FaceWink, FaceWinkFilled, Factor, Fade, Favorite, FavoriteFilled, FavoriteHalf, FeatureMembership, FeatureMembershipFilled, FeatureTyping, FetchUpload, FetchUploadCloud, FileStorage, Filter, FilterEdit, FilterRemove, FilterReset, Finance, FinancialAssets, FingerprintRecognition, Fire, Firewall, FirewallClassic, Fish, FishMultiple, FitToHeight, FitToScreen, FitToWidth, Flag, FlagFilled, FlaggingTaxi, Flash, FlashFilled, FlashOff, FlashOffFilled, FlightInternational, FlightRoster, FlightSchedule, FloatingIp, Flood, FloodWarning, Floorplan, Flow, FlowConnection, FlowData, FlowModeler, WatsonHealthEdgeEnhancement, WatsonHealthEdgeEnhancement_01, WatsonHealthEdgeEnhancement_02, WatsonHealthEdgeEnhancement_03, WatsonHealthErase_3D };\n","/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nimport React from 'react';\nimport Icon from '../Icon.js';\nimport { i as iconPropTypes } from '../iconPropTypes-4cbeb95d.js';\nimport '@carbon/icon-helpers';\nimport 'prop-types';\n\nvar _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _circle, _circle2, _circle3, _path25, _path26, _circle4, _circle5, _path27, _circle6, _path28, _path29, _path30, _path31, _circle7, _path32, _circle8, _path33, _circle9, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _circle10, _circle11, _path52, _circle12, _circle13, _path53, _path54, _circle14, _circle15, _circle16, _path55, _path56, _circle17, _path57, _circle18, _path58, _circle19, _path59, _circle20, _path60, _path61, _path62, _circle21, _path63, _circle22, _path64, _path65, _path66, _circle23, _circle24, _circle25, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _circle26, _path80, _circle27, _path81, _path82, _path83, _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, _circle28, _path117, _path118, _path119, _circle29, _path120, _path121, _path122, _path123, _path124, _path125, _circle30, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _circle31, _path162, _path163, _circle32, _path164, _circle33, _path165, _path166, _circle34, _path167, _circle35, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _circle36, _circle37, _circle38, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _path190, _path191, _path192, _path193, _circle39, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219, _path220, _path221, _path222, _path223, _path224, _path225, _path226, _path227, _path228, _path229, _path230, _path231, _path232, _path233, _path234, _path235, _path236;\nconst didWarnAboutDeprecation = {};\nconst IbmCloudPakMulticloudMgmt = /*#__PURE__*/React.forwardRef(function IbmCloudPakMulticloudMgmt(_ref, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21,19a1.9822,1.9822,0,0,0-.5116.0743L18.707,17.293l-.0257.0257a2.8876,2.8876,0,0,0,0-2.6374l.0257.0257,1.7814-1.7813a2.0345,2.0345,0,1,0-1.4141-1.4141L17.293,13.293l.0257.0257a2.8876,2.8876,0,0,0-2.6374,0l.0257-.0257-1.7813-1.7814a2.0345,2.0345,0,1,0-1.4141,1.4141L13.293,14.707l.0258-.0258a2.8872,2.8872,0,0,0,0,2.6376l-.0258-.0258-1.7814,1.7813a2.0345,2.0345,0,1,0,1.4141,1.4141L14.707,18.707l-.0258-.0258a2.8872,2.8872,0,0,0,2.6376,0l-.0258.0258,1.7813,1.7814A1.9956,1.9956,0,1,0,21,19Zm-5-2a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,16,17Z\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakMulticloudMgmt.propTypes = iconPropTypes;\n}\nconst IbmCloudPakNetezza = /*#__PURE__*/React.forwardRef(function IbmCloudPakNetezza(_ref2, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref2;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19 10L19 19.2 13.5 10 11 10 11 22 13 22 13 12.8 18.5 22 21 22 21 10z\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,30C8.3,30,2,23.7,2,16S8.3,2,16,2s14,6.3,14,14S23.7,30,16,30z M16,4C9.4,4,4,9.4,4,16s5.4,12,12,12s12-5.4,12-12 S22.6,4,16,4z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakNetezza.propTypes = iconPropTypes;\n}\nconst IbmCloudPakNetworkAutomation = /*#__PURE__*/React.forwardRef(function IbmCloudPakNetworkAutomation(_ref3, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref3;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.3638,21.364,20.95,19.95a6.9993,6.9993,0,0,0,0-9.899L22.3638,8.636a9,9,0,0,1,0,12.728Z\"\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19.5356 18.5354l-1.414-1.4141a3.0039 3.0039 0 000-4.2426l1.414-1.4141A5.0048 5.0048 0 0119.5356 18.5354zM17 26H15V15a1 1 0 011-1h0a1 1 0 011 1zM12.4644 18.5354a5.0048 5.0048 0 010-7.0708l1.414 1.4141a3.0039 3.0039 0 000 4.2426z\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M9.6362,21.364a9,9,0,0,1,0-12.728L11.05,10.0505a6.9993,6.9993,0,0,0,0,9.899Z\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakNetworkAutomation.propTypes = iconPropTypes;\n}\nconst IbmCloudPakSecurity = /*#__PURE__*/React.forwardRef(function IbmCloudPakSecurity(_ref4, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref4;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,23.7285a6.0069,6.0069,0,0,1-6-6v-6.457l6-3,6,3v6.457A6.0069,6.0069,0,0,1,16,23.7285ZM12,12.5073v5.2212a4,4,0,0,0,8,0V12.5073l-4-2Z\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakSecurity.propTypes = iconPropTypes;\n}\nconst IbmCloudPakSystem = /*#__PURE__*/React.forwardRef(function IbmCloudPakSystem(_ref5, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref5;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15 11.671H17V15.328H15z\",\n transform: \"rotate(-45 16 13.5)\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15 16.672H17V20.329H15z\",\n transform: \"rotate(-45 16 18.5)\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19,24H13a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2V22A2.0023,2.0023,0,0,1,19,24ZM13,10V22h6.0012L19,10Z\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakSystem.propTypes = iconPropTypes;\n}\nconst IbmCloudPakWatsonAiops = /*#__PURE__*/React.forwardRef(function IbmCloudPakWatsonAiops(_ref6, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref6;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14,24a1,1,0,0,1-.9614-.7253L11.2456,17H8V15h4a1,1,0,0,1,.9614.7253L14,19.36,17.0386,8.7253a1,1,0,0,1,1.9228,0L20.7544,15H24v2H20a1,1,0,0,1-.9614-.7253L18,12.64,14.9614,23.2747A1,1,0,0,1,14,24Z\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmCloudPakWatsonAiops.propTypes = iconPropTypes;\n}\nconst IbmDevopsControl = /*#__PURE__*/React.forwardRef(function IbmDevopsControl(_ref7, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref7;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27,24c-1.302,0-2.4016.8389-2.8157,2h-2.5662l-1.5579-3.1157c2.3552-1.3921,3.9397-3.9502,3.9397-6.8843s-1.5845-5.4922-3.9397-6.8843l1.5576-3.1157h2.5664c.4141,1.1611,1.5137,2,2.8157,2,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3c-1.302,0-2.4016.8389-2.8157,2h-2.5664c-.7622,0-1.4475.4238-1.7888,1.1055l-1.6069,3.2139c-.7063-.2041-1.4502-.3193-2.2222-.3193s-1.5159.1152-2.2222.3193l-1.6072-3.2139c-.3411-.6816-1.0264-1.1055-1.7886-1.1055h-2.5664c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h2.5662l1.5579,3.1157c-2.3552,1.3921-3.9397,3.9502-3.9397,6.8843s1.5845,5.4922,3.9397,6.8843l-1.5576,3.1157h-2.5664c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h2.5664c.7622,0,1.4475-.4238,1.7888-1.1055l1.6069-3.2139c.7063.2041,1.4502.3193,2.2222.3193s1.5159-.1152,2.2222-.3193l1.6072,3.2139c.3411.6816,1.0264,1.1055,1.7886,1.1055h2.5664c.4141,1.1611,1.5137,2,2.8157,2,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3ZM27,4c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM5,6c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1ZM5,28c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1ZM10.2856,16c0-3.1509,2.5635-5.7144,5.7144-5.7144s5.7144,2.5635,5.7144,5.7144-2.5635,5.7144-5.7144,5.7144-5.7144-2.5635-5.7144-5.7144ZM27,28c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1ZM18.5901,12.5566l1.4099,1.4434-5,5-3-3,1.4441-1.4438,1.5605,1.6221,3.5854-3.6216Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmDevopsControl.propTypes = iconPropTypes;\n}\nconst IbmQuantumSafeAdvisor = /*#__PURE__*/React.forwardRef(function IbmQuantumSafeAdvisor(_ref8, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref8;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,16.44c0,4.96-4.68,7.7-8.45,9.9-.54.32-1.07.62-1.55.92-.49-.3-1.01-.61-1.55-.92-3.76-2.2-8.45-4.94-8.45-9.9V4h21v-2H6c-1.1,0-2,.9-2,2v12.44c0,6.11,5.45,9.3,9.44,11.63.72.42,1.41.82,2.02,1.22l.54.35.54-.35c.61-.39,1.3-.79,2.02-1.22,3.98-2.33,9.44-5.52,9.44-11.63v-3.62c1.16-.41,2-1.51,2-2.82,0-1.65-1.35-3-3-3s-3,1.35-3,3c0,1.3.84,2.4,2,2.82v3.62ZM27,11c-.55,0-1-.45-1-1s.45-1,1-1,1,.45,1,1-.45,1-1,1ZM21,9h-8v-2h8v2ZM21,21h-8v-2h8v2ZM15,13h8v1.99h-8v-1.99ZM9.71,17.71l-1.41-1.41,2.29-2.29-2.29-2.29,1.41-1.41,3.71,3.71-3.71,3.71v-.02Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmQuantumSafeAdvisor.propTypes = iconPropTypes;\n}\nconst IbmQuantumSafeExplorer = /*#__PURE__*/React.forwardRef(function IbmQuantumSafeExplorer(_ref9, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref9;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10,18h8v2h-8v-2ZM28,12.82v3.62c0,6.11-5.45,9.3-9.44,11.63-.72.42-1.41.82-2.02,1.22l-.54.35-.54-.35c-.61-.39-1.3-.79-2.02-1.22-3.98-2.33-9.44-5.52-9.44-11.63V4c0-1.1.9-2,2-2h21v2H6v9h6v2h-6v1.44c0,4.96,4.68,7.7,8.45,9.9.54.32,1.07.62,1.55.92.49-.3,1.01-.61,1.55-.92,2.75-1.6,5.97-3.5,7.52-6.33h-5.08v-2h5.83c.11-.5.17-1.01.17-1.56v-3.62c-1.16-.41-2-1.51-2-2.82,0-1.65,1.35-3,3-3s3,1.35,3,3c0,1.3-.84,2.4-2,2.82l.01-.01ZM28,10c0-.55-.45-1-1-1s-1,.45-1,1,.45,1,1,1,1-.45,1-1ZM22,13h-8v2h8v-2ZM18,8h-8v2h8v-2Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmQuantumSafeExplorer.propTypes = iconPropTypes;\n}\nconst IbmQuantumSafeRemediator = /*#__PURE__*/React.forwardRef(function IbmQuantumSafeRemediator(_ref10, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref10;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,16.44c0,4.96-4.68,7.7-8.45,9.9-.54.32-1.07.62-1.55.92-.49-.3-1.01-.61-1.55-.92-3.76-2.2-8.45-4.94-8.45-9.9V4h21v-2H6c-1.1,0-2,.9-2,2v12.44c0,6.11,5.45,9.3,9.44,11.63.72.42,1.41.82,2.02,1.22l.54.35.54-.35c.61-.39,1.3-.79,2.02-1.22,3.98-2.33,9.44-5.52,9.44-11.63v-3.62c1.16-.41,2-1.51,2-2.82,0-1.65-1.35-3-3-3s-3,1.35-3,3c0,1.3.84,2.4,2,2.82v3.62ZM27,11c-.55,0-1-.45-1-1s.45-1,1-1,1,.45,1,1-.45,1-1,1ZM16,18c-1.48,0-2.77-.8-3.46-2l1.73-1c.35.6.99,1,1.73,1,1.1,0,2-.9,2-2s-.9-2-2-2v-2c2.21,0,4,1.79,4,4s-1.79,4-4,4ZM16,22c-.68,0-1.38-.09-2.07-.27-4.26-1.14-6.8-5.54-5.66-9.8,1.14-4.26,5.54-6.8,9.8-5.66l-.52,1.93c-3.2-.86-6.49,1.05-7.35,4.24-.86,3.2,1.05,6.49,4.24,7.35,3.19.86,6.49-1.05,7.35-4.24l1.93.52c-.96,3.57-4.2,5.93-7.73,5.93h.01Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmQuantumSafeRemediator.propTypes = iconPropTypes;\n}\nconst IbmSecurity = /*#__PURE__*/React.forwardRef(function IbmSecurity(_ref11, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref11;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,.0005,4,5.9784V20.0443a12,12,0,0,0,24,0V5.9784Zm6.83,27.3138L16,23.9119V26.14l5.0361,2.5088A10.0025,10.0025,0,0,1,6,20.0443V7.21L16,2.2284,26,7.21v3.75L16,5.9783V8.2062l10,4.9816v3.75L16,11.9562v2.2279l10,4.9815v.8787a9.9045,9.9045,0,0,1-.37,2.6871L16,17.934v2.2279l8.8952,4.4313A10.0252,10.0252,0,0,1,22.83,27.3143Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmSecurity.propTypes = iconPropTypes;\n}\nconst IbmSecurityServices = /*#__PURE__*/React.forwardRef(function IbmSecurityServices(_ref12, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref12;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,20a2.97,2.97,0,0,0-1.8551.6607L22,19.4224V17.8157a3,3,0,1,0-2,0v1.6067l-2.1449,1.2383A2.97,2.97,0,0,0,16,20a3.02,3.02,0,1,0,2.9254,2.3525L21,21.1548l2.0746,1.1977A2.9978,2.9978,0,1,0,26,20ZM16,24a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,16,24Zm5-10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,14Zm5,10a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,26,24Z\"\n })), _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,31A11.0125,11.0125,0,0,1,5,20V6.3823L15.9873.8816,26.4478,6.1187l-.8956,1.7885L15.9873,3.1184,7,7.6177V20a9.0008,9.0008,0,0,0,14.3994,7.2012L22.6006,28.8A10.9077,10.9077,0,0,1,16,31Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmSecurityServices.propTypes = iconPropTypes;\n}\nconst IbmWatsonAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonAssistant(_ref13, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref13;\n if (process.env.NODE_ENV !== \"production\") {\n if (!didWarnAboutDeprecation[\"IbmWatsonAssistant\"]) {\n didWarnAboutDeprecation[\"IbmWatsonAssistant\"] = true;\n console.warn(\"Icon renamed and replaced by ibm-watsonx--assistant to correspond with the new watsonx platform and product suite. As a result, the IbmWatsonAssistant component will be removed in the next major version of @carbon/icons-react.\");\n }\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 2H18c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h2.4l1.7 3 1.7-1-2.3-4H18V4h10v6h-3v2h3c1.1 0 2-.9 2-2V4C30 2.9 29.1 2 28 2zM14.7 31L13 30l3.5-6H22c1.1 0 2-.9 2-2v-5h2v5c0 2.2-1.8 4-4 4h-4.4L14.7 31z\"\n })), _circle || (_circle = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"10\",\n cy: \"17\",\n r: \"1\"\n })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"14\",\n cy: \"17\",\n r: \"1\"\n })), _circle3 || (_circle3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"18\",\n cy: \"17\",\n r: \"1\"\n })), _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12,26H6c-2.2,0-4-1.8-4-4V12c0-2.2,1.8-4,4-4h8v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h6V26z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonAssistant.propTypes = iconPropTypes;\n}\nconst IbmWatsonDiscovery = /*#__PURE__*/React.forwardRef(function IbmWatsonDiscovery(_ref14, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref14;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 17H14V19H6z\"\n })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"3\",\n cy: \"18\",\n r: \"1\"\n })), _circle5 || (_circle5 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"13\",\n cy: \"14\",\n r: \"1\"\n })), _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 13H10V15H2zM6 9H14V11H6z\"\n })), _circle6 || (_circle6 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"3\",\n cy: \"10\",\n r: \"1\"\n })), _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,28.6l-7.4-7.4c1.5-2,2.4-4.5,2.4-7.2c0-6.6-5.4-12-12-12C9.7,2,6.6,3.3,4.3,5.8l1.5,1.4C7.6,5.1,10.2,4,13,4 c5.5,0,10,4.5,10,10s-4.5,10-10,10c-3,0-5.8-1.3-7.7-3.6l-1.5,1.3C6,24.4,9.4,26,13,26c3.2,0,6.1-1.3,8.3-3.3l7.3,7.3L30,28.6z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonDiscovery.propTypes = iconPropTypes;\n}\nconst IbmWatsonKnowledgeCatalog = /*#__PURE__*/React.forwardRef(function IbmWatsonKnowledgeCatalog(_ref15, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref15;\n if (process.env.NODE_ENV !== \"production\") {\n if (!didWarnAboutDeprecation[\"IbmWatsonKnowledgeCatalog\"]) {\n didWarnAboutDeprecation[\"IbmWatsonKnowledgeCatalog\"] = true;\n console.warn(\"Icon renamed, slightly redesigned and replaced by ibm--knowledge-catalog. As a result, the IbmWatsonKnowledgeCatalog component will be removed in the next major version of @carbon/icons-react.\");\n }\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23 27.2L20.4 24.6 19 26 23 30 30 23 28.6 21.6zM12 18H20V20H12zM12 13H20V15H12zM12 8H20V10H12z\"\n })), _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,28H6v-4h2v-2H6v-5h2v-2H6v-5h2V8H6V4h18v16h2V4c0-1.1-0.9-2-2-2H6C4.9,2,4,2.9,4,4v4H2v2h2v5H2v2h2v5H2v2h2v4 c0,1.1,0.9,2,2,2h10V28z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonKnowledgeCatalog.propTypes = iconPropTypes;\n}\nconst IbmWatsonKnowledgeStudio = /*#__PURE__*/React.forwardRef(function IbmWatsonKnowledgeStudio(_ref16, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref16;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 25H27V27H20zM22 29H25V31H22zM27 23h-2c0-1.1.4-2 1.2-2.8l.5-.5c.8-.8 1.3-2 1.3-3.2 0-2.5-2-4.5-4.5-4.5S19 14 19 16.5c0 1.2.5 2.3 1.3 3.2l.5.5C21.6 21 22 21.9 22 23h-2c0-.5-.2-1-.6-1.4l-.5-.5c-1.2-1.2-1.9-2.9-1.9-4.6 0-3.6 2.9-6.5 6.5-6.5s6.5 2.9 6.5 6.5c0 1.7-.7 3.4-1.9 4.6l-.5.5C27.2 22 27 22.5 27 23zM6 22H14V24H6z\"\n })), _circle7 || (_circle7 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"12\",\n cy: \"19\",\n r: \"1\"\n })), _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 18H9V20H6zM6 14H13V16H6zM10 10H17V12H10z\"\n })), _circle8 || (_circle8 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"11\",\n r: \"1\"\n })), _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 6H20V8H16z\"\n })), _circle9 || (_circle9 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"13\",\n cy: \"7\",\n r: \"1\"\n })), _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 6H10V8H6z\"\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18,28H4V4l18,0v4h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h14V28z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonKnowledgeStudio.propTypes = iconPropTypes;\n}\nconst IbmWatsonLanguageTranslator = /*#__PURE__*/React.forwardRef(function IbmWatsonLanguageTranslator(_ref17, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref17;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 28h-3c-3.9 0-7-3.1-7-7v-4h2v4c0 2.8 2.2 5 5 5h3V28zM28 30h2.2l-4.6-11h-2.2l-4.6 11H21l.8-2h5.3L28 30zM22.7 26l1.8-4.4 1.8 4.4H22.7zM28 15h-2v-4c0-2.8-2.2-5-5-5h-4V4h4c3.9 0 7 3.1 7 7V15zM14 5V3H9V1H7v2H2v2h8.2C10 5.9 9.4 7.5 8 9 7.4 8.3 6.9 7.6 6.6 7H4.3c.4 1 1.1 2.2 2.1 3.3C5.6 11 4.4 11.6 3 12.1L3.7 14c1.8-.7 3.2-1.5 4.3-2.3 1.1.9 2.5 1.7 4.3 2.3l.7-1.9c-1.4-.5-2.6-1.2-3.5-1.8 1.9-2 2.5-4.1 2.7-5.3H14z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonLanguageTranslator.propTypes = iconPropTypes;\n}\nconst IbmWatsonMachineLearning = /*#__PURE__*/React.forwardRef(function IbmWatsonMachineLearning(_ref18, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref18;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3.6 22.5c-1-2-1.6-4.2-1.6-6.5C2 8.3 8.3 2 16 2v2C9.4 4 4 9.4 4 16c0 2 .5 3.8 1.4 5.5L3.6 22.5zM28 16c0 6.6-5.4 12-12 12-2.9 0-5.6-1-7.7-2.8l5.7-5.7L12.6 18l-6.5 6.5c-.4.4-.4 1 0 1.4C8.7 28.5 12.3 30 16 30c7.7 0 14-6.3 14-14H28z\"\n })), _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18,25c-0.1,0-0.3,0-0.4-0.1c-0.3-0.1-0.6-0.4-0.6-0.8l-0.7-5l2-0.3l0.4,3.3l2.2-1.7V15c0-0.3,0.1-0.5,0.3-0.7l3.2-3.2 c0.9-0.9,1.5-2.2,1.5-3.5V6l-1.5,0c-1.3,0-2.6,0.5-3.5,1.5l-3.2,3.2C17.5,10.9,17.3,11,17,11h-5.5l-1.7,2.2l3.3,0.4l-0.3,2l-5-0.7 c-0.4,0-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l3-4C10.4,9.1,10.7,9,11,9h5.6l3-3c1.3-1.3,3.1-2,4.9-2H26c1.1,0,2,0.9,2,2v1.5 c0,1.9-0.7,3.6-2,4.9l-3,3V21c0,0.3-0.1,0.6-0.4,0.8l-4,3C18.4,24.9,18.2,25,18,25z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonMachineLearning.propTypes = iconPropTypes;\n}\nconst IbmWatsonNaturalLanguageClassifier = /*#__PURE__*/React.forwardRef(function IbmWatsonNaturalLanguageClassifier(_ref19, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref19;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h1v4h-3v2h8v-2h-3v-4H28zM24 4h4v6h-4V4zM21 22.4L19.6 21 16 24.6 12.4 21 11 22.4 14.6 26 11 29.6 12.4 31 16 27.4 19.6 31 21 29.6 17.4 26zM12 18L15 18 15 21 17 21 17 18 20 18 20 16 12 16zM10 12V4c0-1.1-.9-2-2-2H3v2h5v2H4C2.9 6 2 6.9 2 8v2c0 1.1.9 2 2 2h1v4H2v2h8v-2H7v-4H10zM4 8h4v2H4V8z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonNaturalLanguageClassifier.propTypes = iconPropTypes;\n}\nconst IbmWatsonNaturalLanguageUnderstanding = /*#__PURE__*/React.forwardRef(function IbmWatsonNaturalLanguageUnderstanding(_ref20, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref20;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 23H11V25H6zM6 19H11V21H6z\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M13 30H4c-1.1 0-2-.9-2-2V17c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v11C15 29.1 14.1 30 13 30zM4 17v11h9V17H4zM19 2H27V4H19zM22 6H30V8H22zM22 10H30V12H22zM19 14H27V16H19zM22 18H30V20H22zM12 1l-1.4 1.4L13.2 5H4C2.9 5 2 5.9 2 7v5h2V7h9.2l-2.6 2.6L12 11l5-5L12 1z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonNaturalLanguageUnderstanding.propTypes = iconPropTypes;\n}\nconst IbmWatsonOpenscale = /*#__PURE__*/React.forwardRef(function IbmWatsonOpenscale(_ref21, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref21;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonOpenscale.propTypes = iconPropTypes;\n}\nconst IbmWatsonOrders = /*#__PURE__*/React.forwardRef(function IbmWatsonOrders(_ref22, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref22;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 13h-2v-2c0-2.8-2.2-5-5-5h-3V4h3c3.9 0 7 3.1 7 7V13zM22 20H25V22H22zM22 24H25V26H22z\"\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonOrders.propTypes = iconPropTypes;\n}\nconst IbmWatsonQuery = /*#__PURE__*/React.forwardRef(function IbmWatsonQuery(_ref23, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref23;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonQuery.propTypes = iconPropTypes;\n}\nconst IbmWatsonSpeechToText = /*#__PURE__*/React.forwardRef(function IbmWatsonSpeechToText(_ref24, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref24;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonSpeechToText.propTypes = iconPropTypes;\n}\nconst IbmWatsonStudio = /*#__PURE__*/React.forwardRef(function IbmWatsonStudio(_ref25, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref25;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonStudio.propTypes = iconPropTypes;\n}\nconst IbmWatsonTextToSpeech = /*#__PURE__*/React.forwardRef(function IbmWatsonTextToSpeech(_ref26, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref26;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonTextToSpeech.propTypes = iconPropTypes;\n}\nconst IbmWatsonToneAnalyzer = /*#__PURE__*/React.forwardRef(function IbmWatsonToneAnalyzer(_ref27, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref27;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"24\",\n cy: \"5\",\n r: \"1\"\n })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"19\",\n cy: \"5\",\n r: \"1\"\n })), _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"15.5\",\n cy: \"17.5\",\n r: \"1.5\"\n })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"8.5\",\n cy: \"17.5\",\n r: \"1.5\"\n })), _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonToneAnalyzer.propTypes = iconPropTypes;\n}\nconst IbmWatsonxAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxAssistant(_ref28, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref28;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"10\",\n cy: \"17\",\n r: \"1\"\n })), _circle15 || (_circle15 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"14\",\n cy: \"17\",\n r: \"1\"\n })), _circle16 || (_circle16 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"18\",\n cy: \"17\",\n r: \"1\"\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxAssistant.propTypes = iconPropTypes;\n}\nconst IbmWatsonxCodeAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistant(_ref29, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref29;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle17 || (_circle17 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"3\",\n cy: \"4\",\n r: \"1\"\n })), _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 3H16V5H6z\"\n })), _circle18 || (_circle18 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"3\",\n cy: \"12\",\n r: \"1\"\n })), _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6 11H16V13H6zM2 15H12V17H2z\"\n })), _circle19 || (_circle19 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"15\",\n cy: \"8\",\n r: \"1\"\n })), _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 7H12V9H2z\"\n })), _circle20 || (_circle20 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"15\",\n cy: \"16\",\n r: \"1\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxCodeAssistant.propTypes = iconPropTypes;\n}\nconst IbmWatsonxCodeAssistantForEnterpriseJavaApplications = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForEnterpriseJavaApplications(_ref30, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref30;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29.9916 19h-2v-7c0-2.7614-2.2386-5-5-5h-8.9948v-2h8.9948c3.866 0 7 3.134 7 7v7zM11.9916 28h-3c-3.86 0-7-3.14-7-7v-5h2v5c0 2.757 2.243 5 5 5h3v2zM9.9916 14h-4c-1.103 0-2-.897-2-2v-2h2v2h4V2h2v10c0 1.103-.897 2-2 2zM28.15 26l-2.58 2.58 1.41 1.42 4-4-4-4-1.42 1.41 2.59 2.59zM16.81 26l2.58-2.58-1.41-1.42-4 4 4 4 1.42-1.41-2.59-2.59zM21.98 31l-1.915-.577 2.915-9.423 1.915.577-2.915 9.423z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxCodeAssistantForEnterpriseJavaApplications.propTypes = iconPropTypes;\n}\nconst IbmWatsonxCodeAssistantForZ = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZ(_ref31, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref31;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxCodeAssistantForZ.propTypes = iconPropTypes;\n}\nconst IbmWatsonxCodeAssistantForZRefactor = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZRefactor(_ref32, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref32;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle21 || (_circle21 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"19\",\n cy: \"28\",\n r: \"1\"\n })), _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle22 || (_circle22 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"13\",\n cy: \"4\",\n r: \"1\"\n })), _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxCodeAssistantForZRefactor.propTypes = iconPropTypes;\n}\nconst IbmWatsonxCodeAssistantForZValidationAssistant = /*#__PURE__*/React.forwardRef(function IbmWatsonxCodeAssistantForZValidationAssistant(_ref33, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref33;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,2c-7.73,0-14,6.2821-14,14.0269,0,5.0697,2.69,9.5082,6.71,11.9731l1.1-1.6632c-3.48-2.104-5.81-5.9314-5.81-10.3098,0-6.6428,5.37-12.0231,12-12.0231s12,5.396,12,12.0388h2c0-7.7449-6.27-14.0426-14-14.0426ZM14,21.414l-5-5.001,1.413-1.413,3.587,3.586,7.585-7.586,1.415,1.415-9,8.999ZM26.58,24.41l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM22.5,32l-1.9149-.5771,2.9149-9.4229,1.9149.5771-2.9149,9.4229ZM19.42,29.59l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxCodeAssistantForZValidationAssistant.propTypes = iconPropTypes;\n}\nconst IbmWatsonxOrchestrate = /*#__PURE__*/React.forwardRef(function IbmWatsonxOrchestrate(_ref34, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref34;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle23 || (_circle23 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"30\",\n cy: \"16\",\n r: \"2\"\n })), _circle24 || (_circle24 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"2\",\n cy: \"16\",\n r: \"2\"\n })), _circle25 || (_circle25 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"16\",\n cy: \"16\",\n r: \"2\"\n })), _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmWatsonxOrchestrate.propTypes = iconPropTypes;\n}\nconst IbmZCloudModStack = /*#__PURE__*/React.forwardRef(function IbmZCloudModStack(_ref35, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref35;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZCloudModStack.propTypes = iconPropTypes;\n}\nconst IbmZEnvironmentsDevSecOps = /*#__PURE__*/React.forwardRef(function IbmZEnvironmentsDevSecOps(_ref36, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref36;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m13.9998,29.991l-10.5037-6.1272c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l10.0076,5.8378-1.0078,1.7275Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZEnvironmentsDevSecOps.propTypes = iconPropTypes;\n}\nconst IbmZOpenEditor = /*#__PURE__*/React.forwardRef(function IbmZOpenEditor(_ref37, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref37;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZOpenEditor.propTypes = iconPropTypes;\n}\nconst IbmZProcessorCapacityReference = /*#__PURE__*/React.forwardRef(function IbmZProcessorCapacityReference(_ref38, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref38;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25 25H27V29H25zM21 23H23V29H21zM29 20H31V29H29z\"\n })), _path76 || (_path76 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZProcessorCapacityReference.propTypes = iconPropTypes;\n}\nconst IbmZCloudProvisioning = /*#__PURE__*/React.forwardRef(function IbmZCloudProvisioning(_ref39, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref39;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path77 || (_path77 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 17H14V21H10zM17 10H21V14H17zM17 17H21V21H17z\"\n })), _path78 || (_path78 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZCloudProvisioning.propTypes = iconPropTypes;\n}\nconst IbmZOs = /*#__PURE__*/React.forwardRef(function IbmZOs(_ref40, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref40;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path79 || (_path79 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZOs.propTypes = iconPropTypes;\n}\nconst IbmZOsAiControlInterface = /*#__PURE__*/React.forwardRef(function IbmZOsAiControlInterface(_ref41, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref41;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle26 || (_circle26 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"12\",\n cy: \"21\",\n r: \"1\"\n })), _path80 || (_path80 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle27 || (_circle27 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"12\",\n cy: \"11\",\n r: \"1\"\n })), _path81 || (_path81 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path82 || (_path82 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path83 || (_path83 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.5 1.5H13.5V3.5H8.5z\",\n transform: \"rotate(90 11 2.5)\"\n })), _path84 || (_path84 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1.975 3.475H6.975V5.475H1.975z\",\n transform: \"rotate(45 4.475 4.475)\"\n })), _path85 || (_path85 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 10H5V12H0z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZOsAiControlInterface.propTypes = iconPropTypes;\n}\nconst IbmZOsContainers = /*#__PURE__*/React.forwardRef(function IbmZOsContainers(_ref42, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref42;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path86 || (_path86 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m29,12h-9V3h9v9Zm-7-2h5v-5h-5v5Z\"\n })), _path87 || (_path87 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZOsContainers.propTypes = iconPropTypes;\n}\nconst IbmZOsPackageManager = /*#__PURE__*/React.forwardRef(function IbmZOsPackageManager(_ref43, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref43;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path88 || (_path88 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IbmZOsPackageManager.propTypes = iconPropTypes;\n}\nconst WatsonHealthICa_2D = /*#__PURE__*/React.forwardRef(function WatsonHealthICa_2D(_ref44, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref44;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path89 || (_path89 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthICa_2D.propTypes = iconPropTypes;\n}\nconst IceAccretion = /*#__PURE__*/React.forwardRef(function IceAccretion(_ref45, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref45;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path90 || (_path90 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path91 || (_path91 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24 26L23 28 22 26 22 20 24 20 24 26zM8 24L7 26 6 24 6 18 8 18 8 24z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IceAccretion.propTypes = iconPropTypes;\n}\nconst IceVision = /*#__PURE__*/React.forwardRef(function IceVision(_ref46, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref46;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path92 || (_path92 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19 14L19 21 20 23 21 21 21 14 19 14zM17 14H13a2 2 0 00-2 2v4l1 2 1-2V16h2v7l1 2 1-2z\"\n })), _path93 || (_path93 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IceVision.propTypes = iconPropTypes;\n}\nconst QID = /*#__PURE__*/React.forwardRef(function QID(_ref47, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref47;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path94 || (_path94 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 9H12V11H10zM18 23H14V9h4a4 4 0 014 4v6A4 4 0 0118 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H16zM10 13H12V23H10z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n QID.propTypes = iconPropTypes;\n}\nconst IdManagement = /*#__PURE__*/React.forwardRef(function IdManagement(_ref48, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref48;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path95 || (_path95 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path96 || (_path96 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,19v9H4V8H16V6H4A2,2,0,0,0,2,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19Z\"\n })), _path97 || (_path97 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IdManagement.propTypes = iconPropTypes;\n}\nconst Idea = /*#__PURE__*/React.forwardRef(function Idea(_ref49, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref49;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path98 || (_path98 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Idea.propTypes = iconPropTypes;\n}\nconst Identification = /*#__PURE__*/React.forwardRef(function Identification(_ref50, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref50;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path99 || (_path99 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path100 || (_path100 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Identification.propTypes = iconPropTypes;\n}\nconst Image = /*#__PURE__*/React.forwardRef(function Image(_ref51, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref51;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path101 || (_path101 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path102 || (_path102 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Image.propTypes = iconPropTypes;\n}\nconst ImageCopy = /*#__PURE__*/React.forwardRef(function ImageCopy(_ref52, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref52;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path103 || (_path103 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path104 || (_path104 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageCopy.propTypes = iconPropTypes;\n}\nconst ImageMedical = /*#__PURE__*/React.forwardRef(function ImageMedical(_ref53, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref53;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path105 || (_path105 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path106 || (_path106 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageMedical.propTypes = iconPropTypes;\n}\nconst ImageReference = /*#__PURE__*/React.forwardRef(function ImageReference(_ref54, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref54;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path107 || (_path107 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path108 || (_path108 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageReference.propTypes = iconPropTypes;\n}\nconst ImageSearch = /*#__PURE__*/React.forwardRef(function ImageSearch(_ref55, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref55;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path109 || (_path109 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path110 || (_path110 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageSearch.propTypes = iconPropTypes;\n}\nconst ImageSearchAlt = /*#__PURE__*/React.forwardRef(function ImageSearchAlt(_ref56, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref56;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path111 || (_path111 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path112 || (_path112 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageSearchAlt.propTypes = iconPropTypes;\n}\nconst WatsonHealthImageAvailabilityLocal = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityLocal(_ref57, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref57;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path113 || (_path113 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,18c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S18.8,18,16,18z\"\n })), _path114 || (_path114 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthImageAvailabilityLocal.propTypes = iconPropTypes;\n}\nconst WatsonHealthImageAvailabilityRetrieving = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityRetrieving(_ref58, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref58;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path115 || (_path115 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 13L11.4 11.6 15 15.2 15 2 17 2 17 15.2 20.6 11.6 22 13 16 19z\"\n })), _path116 || (_path116 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthImageAvailabilityRetrieving.propTypes = iconPropTypes;\n}\nconst WatsonHealthImageAvailabilityUnavailable = /*#__PURE__*/React.forwardRef(function WatsonHealthImageAvailabilityUnavailable(_ref59, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref59;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle28 || (_circle28 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"16\",\n cy: \"20.5\",\n r: \"1.5\"\n })), _path117 || (_path117 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path118 || (_path118 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthImageAvailabilityUnavailable.propTypes = iconPropTypes;\n}\nconst ImageService = /*#__PURE__*/React.forwardRef(function ImageService(_ref60, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref60;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path119 || (_path119 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle29 || (_circle29 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"25\",\n r: \"1\"\n })), _path120 || (_path120 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageService.propTypes = iconPropTypes;\n}\nconst ImageStoreLocal = /*#__PURE__*/React.forwardRef(function ImageStoreLocal(_ref61, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref61;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path121 || (_path121 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m25,2v7h7V2h-7Zm5,5h-3v-3h3v3Z\"\n })), _path122 || (_path122 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n d: \"m23,6h-7v12h12v-7h-5v-5Zm-2,10h-3v-3h3v3Zm5-3v3h-3v-3h3Zm-8-2v-3h3v3h-3Z\"\n })), _path123 || (_path123 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImageStoreLocal.propTypes = iconPropTypes;\n}\nconst ImportExport = /*#__PURE__*/React.forwardRef(function ImportExport(_ref62, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref62;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path124 || (_path124 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImportExport.propTypes = iconPropTypes;\n}\nconst ImproveRelevance = /*#__PURE__*/React.forwardRef(function ImproveRelevance(_ref63, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref63;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path125 || (_path125 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22 26.59L19.41 24 18 25.41 22 29.41 30 21.41 28.59 20 22 26.59z\"\n })), _circle30 || (_circle30 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"16\",\n cy: \"16\",\n r: \"2\"\n })), _path126 || (_path126 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path127 || (_path127 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,16A12,12,0,1,0,16,28V26A10,10,0,1,1,26,16Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n ImproveRelevance.propTypes = iconPropTypes;\n}\nconst InProgress = /*#__PURE__*/React.forwardRef(function InProgress(_ref64, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref64;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path128 || (_path128 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InProgress.propTypes = iconPropTypes;\n}\nconst InProgressError = /*#__PURE__*/React.forwardRef(function InProgressError(_ref65, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref65;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path129 || (_path129 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path130 || (_path130 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InProgressError.propTypes = iconPropTypes;\n}\nconst InProgressWarning = /*#__PURE__*/React.forwardRef(function InProgressWarning(_ref66, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref66;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path131 || (_path131 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path132 || (_path132 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InProgressWarning.propTypes = iconPropTypes;\n}\nconst Incomplete = /*#__PURE__*/React.forwardRef(function Incomplete(_ref67, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref67;\n if (size === \"glyph\" || size === \"glyph\" || size === \"glyphpx\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path133 || (_path133 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path134 || (_path134 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Incomplete.propTypes = iconPropTypes;\n}\nconst IncompleteCancel = /*#__PURE__*/React.forwardRef(function IncompleteCancel(_ref68, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref68;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path135 || (_path135 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IncompleteCancel.propTypes = iconPropTypes;\n}\nconst IncompleteError = /*#__PURE__*/React.forwardRef(function IncompleteError(_ref69, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref69;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path136 || (_path136 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IncompleteError.propTypes = iconPropTypes;\n}\nconst IncompleteWarning = /*#__PURE__*/React.forwardRef(function IncompleteWarning(_ref70, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref70;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path137 || (_path137 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IncompleteWarning.propTypes = iconPropTypes;\n}\nconst IncreaseLevel = /*#__PURE__*/React.forwardRef(function IncreaseLevel(_ref71, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref71;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path138 || (_path138 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IncreaseLevel.propTypes = iconPropTypes;\n}\nconst Industry = /*#__PURE__*/React.forwardRef(function Industry(_ref72, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref72;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path139 || (_path139 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Industry.propTypes = iconPropTypes;\n}\nconst InfinitySymbol = /*#__PURE__*/React.forwardRef(function InfinitySymbol(_ref73, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref73;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path140 || (_path140 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InfinitySymbol.propTypes = iconPropTypes;\n}\nconst Information = /*#__PURE__*/React.forwardRef(function Information(_ref74, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref74;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path141 || (_path141 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path142 || (_path142 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path143 || (_path143 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path144 || (_path144 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Information.propTypes = iconPropTypes;\n}\nconst InformationDisabled = /*#__PURE__*/React.forwardRef(function InformationDisabled(_ref75, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref75;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path145 || (_path145 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path146 || (_path146 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InformationDisabled.propTypes = iconPropTypes;\n}\nconst InformationFilled = /*#__PURE__*/React.forwardRef(function InformationFilled(_ref76, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref76;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path147 || (_path147 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n 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\",\n \"data-icon-path\": \"inner-path\"\n })), _path148 || (_path148 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InformationFilled.propTypes = iconPropTypes;\n}\nconst InformationSquare = /*#__PURE__*/React.forwardRef(function InformationSquare(_ref77, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref77;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path149 || (_path149 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path150 || (_path150 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InformationSquare.propTypes = iconPropTypes;\n}\nconst InformationSquareFilled = /*#__PURE__*/React.forwardRef(function InformationSquareFilled(_ref78, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref78;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path151 || (_path151 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n 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\",\n \"data-icon-path\": \"inner-path\"\n })), _path152 || (_path152 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InformationSquareFilled.propTypes = iconPropTypes;\n}\nconst InfrastructureClassic = /*#__PURE__*/React.forwardRef(function InfrastructureClassic(_ref79, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref79;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path153 || (_path153 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z\"\n })), _path154 || (_path154 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InfrastructureClassic.propTypes = iconPropTypes;\n}\nconst Insert = /*#__PURE__*/React.forwardRef(function Insert(_ref80, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref80;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path155 || (_path155 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Insert.propTypes = iconPropTypes;\n}\nconst InsertPage = /*#__PURE__*/React.forwardRef(function InsertPage(_ref81, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref81;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path156 || (_path156 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InsertPage.propTypes = iconPropTypes;\n}\nconst InsertSyntax = /*#__PURE__*/React.forwardRef(function InsertSyntax(_ref82, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref82;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path157 || (_path157 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path158 || (_path158 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InsertSyntax.propTypes = iconPropTypes;\n}\nconst Inspection = /*#__PURE__*/React.forwardRef(function Inspection(_ref83, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref83;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path159 || (_path159 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z\"\n })), _path160 || (_path160 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Inspection.propTypes = iconPropTypes;\n}\nconst InstanceBx = /*#__PURE__*/React.forwardRef(function InstanceBx(_ref84, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref84;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path161 || (_path161 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle31 || (_circle31 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"27\",\n r: \"1\"\n })), _path162 || (_path162 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InstanceBx.propTypes = iconPropTypes;\n}\nconst InstanceClassic = /*#__PURE__*/React.forwardRef(function InstanceClassic(_ref85, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref85;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path163 || (_path163 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle32 || (_circle32 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"27\",\n r: \"1\"\n })), _path164 || (_path164 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InstanceClassic.propTypes = iconPropTypes;\n}\nconst InstanceCx = /*#__PURE__*/React.forwardRef(function InstanceCx(_ref86, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref86;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle33 || (_circle33 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"27\",\n r: \"1\"\n })), _path165 || (_path165 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InstanceCx.propTypes = iconPropTypes;\n}\nconst InstanceMx = /*#__PURE__*/React.forwardRef(function InstanceMx(_ref87, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref87;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path166 || (_path166 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _circle34 || (_circle34 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"9\",\n cy: \"27\",\n r: \"1\"\n })), _path167 || (_path167 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InstanceMx.propTypes = iconPropTypes;\n}\nconst InstanceVirtual = /*#__PURE__*/React.forwardRef(function InstanceVirtual(_ref88, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref88;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle35 || (_circle35 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"7\",\n cy: \"23\",\n r: \"1\"\n })), _path168 || (_path168 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InstanceVirtual.propTypes = iconPropTypes;\n}\nconst Integration = /*#__PURE__*/React.forwardRef(function Integration(_ref89, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref89;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path169 || (_path169 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Integration.propTypes = iconPropTypes;\n}\nconst IntentRequestActive = /*#__PURE__*/React.forwardRef(function IntentRequestActive(_ref90, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref90;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path170 || (_path170 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z\"\n })), _path171 || (_path171 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestActive.propTypes = iconPropTypes;\n}\nconst IntentRequestCreate = /*#__PURE__*/React.forwardRef(function IntentRequestCreate(_ref91, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref91;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path172 || (_path172 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z\"\n })), _path173 || (_path173 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestCreate.propTypes = iconPropTypes;\n}\nconst IntentRequestHeal = /*#__PURE__*/React.forwardRef(function IntentRequestHeal(_ref92, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref92;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path174 || (_path174 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path175 || (_path175 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestHeal.propTypes = iconPropTypes;\n}\nconst IntentRequestInactive = /*#__PURE__*/React.forwardRef(function IntentRequestInactive(_ref93, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref93;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle36 || (_circle36 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"18.5\",\n cy: \"22.5\",\n r: \"1.5\"\n })), _circle37 || (_circle37 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"23.5\",\n cy: \"22.5\",\n r: \"1.5\"\n })), _circle38 || (_circle38 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"28.5\",\n cy: \"22.5\",\n r: \"1.5\"\n })), _path176 || (_path176 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestInactive.propTypes = iconPropTypes;\n}\nconst IntentRequestScaleIn = /*#__PURE__*/React.forwardRef(function IntentRequestScaleIn(_ref94, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref94;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path177 || (_path177 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestScaleIn.propTypes = iconPropTypes;\n}\nconst IntentRequestScaleOut = /*#__PURE__*/React.forwardRef(function IntentRequestScaleOut(_ref95, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref95;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path178 || (_path178 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestScaleOut.propTypes = iconPropTypes;\n}\nconst IntentRequestUninstall = /*#__PURE__*/React.forwardRef(function IntentRequestUninstall(_ref96, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref96;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path179 || (_path179 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path180 || (_path180 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestUninstall.propTypes = iconPropTypes;\n}\nconst IntentRequestUpgrade = /*#__PURE__*/React.forwardRef(function IntentRequestUpgrade(_ref97, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref97;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path181 || (_path181 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z\"\n })), _path182 || (_path182 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntentRequestUpgrade.propTypes = iconPropTypes;\n}\nconst Interactions = /*#__PURE__*/React.forwardRef(function Interactions(_ref98, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref98;\n if (size === 16 || size === \"16\" || size === \"16px\") {\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 16 16\",\n fill: \"currentColor\",\n ...rest\n }, _path183 || (_path183 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n 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\"\n })), children);\n }\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path184 || (_path184 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Interactions.propTypes = iconPropTypes;\n}\nconst WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React.forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref99, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref99;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path185 || (_path185 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path186 || (_path186 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7.586 18.586H10.414V21.413999999999998H7.586z\",\n transform: \"rotate(-45 9 20)\"\n })), _path187 || (_path187 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18.586 7.586H21.413999999999998V10.414H18.586z\",\n transform: \"rotate(-45 20 9)\"\n })), _path188 || (_path188 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M7.586 7.586H10.414V10.414H7.586z\",\n transform: \"rotate(-45 9 9)\"\n })), _path189 || (_path189 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11 2L2 2 2 11 4 11 4 4 11 4 11 2z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypes;\n}\nconst InterfaceUsage = /*#__PURE__*/React.forwardRef(function InterfaceUsage(_ref100, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref100;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path190 || (_path190 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), _path191 || (_path191 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InterfaceUsage.propTypes = iconPropTypes;\n}\nconst Intersect = /*#__PURE__*/React.forwardRef(function Intersect(_ref101, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref101;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path192 || (_path192 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z\"\n })), _path193 || (_path193 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Intersect.propTypes = iconPropTypes;\n}\nconst IntrusionPrevention = /*#__PURE__*/React.forwardRef(function IntrusionPrevention(_ref102, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref102;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _circle39 || (_circle39 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: \"22\",\n cy: \"23.887\",\n r: \"2\"\n })), _path194 || (_path194 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path195 || (_path195 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IntrusionPrevention.propTypes = iconPropTypes;\n}\nconst InventoryManagement = /*#__PURE__*/React.forwardRef(function InventoryManagement(_ref103, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref103;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path196 || (_path196 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z\"\n })), _path197 || (_path197 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n InventoryManagement.propTypes = iconPropTypes;\n}\nconst IotConnect = /*#__PURE__*/React.forwardRef(function IotConnect(_ref104, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref104;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path198 || (_path198 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path199 || (_path199 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IotConnect.propTypes = iconPropTypes;\n}\nconst IotPlatform = /*#__PURE__*/React.forwardRef(function IotPlatform(_ref105, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref105;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path200 || (_path200 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path201 || (_path201 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z\"\n })), _path202 || (_path202 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IotPlatform.propTypes = iconPropTypes;\n}\nconst Ip = /*#__PURE__*/React.forwardRef(function Ip(_ref106, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref106;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path203 || (_path203 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Ip.propTypes = iconPropTypes;\n}\nconst Iso = /*#__PURE__*/React.forwardRef(function Iso(_ref107, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref107;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path204 || (_path204 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Iso.propTypes = iconPropTypes;\n}\nconst IsoFilled = /*#__PURE__*/React.forwardRef(function IsoFilled(_ref108, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref108;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path205 || (_path205 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21 13H24V19H21z\"\n })), _path206 || (_path206 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IsoFilled.propTypes = iconPropTypes;\n}\nconst IsoOutline = /*#__PURE__*/React.forwardRef(function IsoOutline(_ref109, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref109;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path207 || (_path207 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path208 || (_path208 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n IsoOutline.propTypes = iconPropTypes;\n}\nconst JobDaemon = /*#__PURE__*/React.forwardRef(function JobDaemon(_ref110, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref110;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path209 || (_path209 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JobDaemon.propTypes = iconPropTypes;\n}\nconst JobRun = /*#__PURE__*/React.forwardRef(function JobRun(_ref111, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref111;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path210 || (_path210 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JobRun.propTypes = iconPropTypes;\n}\nconst JoinFull = /*#__PURE__*/React.forwardRef(function JoinFull(_ref112, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref112;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path211 || (_path211 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n 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\",\n \"data-icon-path\": \"inner-path\"\n })), _path212 || (_path212 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path213 || (_path213 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z\"\n })), _path214 || (_path214 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinFull.propTypes = iconPropTypes;\n}\nconst JoinInner = /*#__PURE__*/React.forwardRef(function JoinInner(_ref113, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref113;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path215 || (_path215 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinInner.propTypes = iconPropTypes;\n}\nconst JoinLeft = /*#__PURE__*/React.forwardRef(function JoinLeft(_ref114, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref114;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path216 || (_path216 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path217 || (_path217 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path218 || (_path218 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n 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\",\n \"data-icon-path\": \"inner-path\"\n })), _path219 || (_path219 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinLeft.propTypes = iconPropTypes;\n}\nconst JoinOuter = /*#__PURE__*/React.forwardRef(function JoinOuter(_ref115, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref115;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path220 || (_path220 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinOuter.propTypes = iconPropTypes;\n}\nconst JoinRight = /*#__PURE__*/React.forwardRef(function JoinRight(_ref116, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref116;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path221 || (_path221 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path222 || (_path222 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n 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\",\n \"data-icon-path\": \"inner-path\"\n })), _path223 || (_path223 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path224 || (_path224 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinRight.propTypes = iconPropTypes;\n}\nconst JoinNode = /*#__PURE__*/React.forwardRef(function JoinNode(_ref117, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref117;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path225 || (_path225 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JoinNode.propTypes = iconPropTypes;\n}\nconst Jpg = /*#__PURE__*/React.forwardRef(function Jpg(_ref118, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref118;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path226 || (_path226 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Jpg.propTypes = iconPropTypes;\n}\nconst JsError = /*#__PURE__*/React.forwardRef(function JsError(_ref119, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref119;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path227 || (_path227 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path228 || (_path228 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JsError.propTypes = iconPropTypes;\n}\nconst Json = /*#__PURE__*/React.forwardRef(function Json(_ref120, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref120;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path229 || (_path229 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Json.propTypes = iconPropTypes;\n}\nconst JsonReference = /*#__PURE__*/React.forwardRef(function JsonReference(_ref121, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref121;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path230 || (_path230 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JsonReference.propTypes = iconPropTypes;\n}\nconst JumpLink = /*#__PURE__*/React.forwardRef(function JumpLink(_ref122, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref122;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path231 || (_path231 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n JumpLink.propTypes = iconPropTypes;\n}\nconst KeepDry = /*#__PURE__*/React.forwardRef(function KeepDry(_ref123, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref123;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path232 || (_path232 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path233 || (_path233 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n KeepDry.propTypes = iconPropTypes;\n}\nconst Key = /*#__PURE__*/React.forwardRef(function Key(_ref124, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref124;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path234 || (_path234 = /*#__PURE__*/React.createElement(\"path\", {\n strokeWidth: \"0\",\n 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\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Key.propTypes = iconPropTypes;\n}\nconst Keyboard = /*#__PURE__*/React.forwardRef(function Keyboard(_ref125, ref) {\n let {\n children,\n size = 16,\n ...rest\n } = _ref125;\n return /*#__PURE__*/React.createElement(Icon, {\n width: size,\n height: size,\n ref: ref,\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 32 32\",\n fill: \"currentColor\",\n ...rest\n }, _path235 || (_path235 = /*#__PURE__*/React.createElement(\"path\", {\n 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\"\n })), _path236 || (_path236 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z\"\n })), children);\n});\nif (process.env.NODE_ENV !== \"production\") {\n Keyboard.propTypes = iconPropTypes;\n}\n\nexport { IbmCloudPakMulticloudMgmt, IbmCloudPakNetezza, IbmCloudPakNetworkAutomation, IbmCloudPakSecurity, IbmCloudPakSystem, IbmCloudPakWatsonAiops, IbmDevopsControl, IbmQuantumSafeAdvisor, IbmQuantumSafeExplorer, IbmQuantumSafeRemediator, IbmSecurity, IbmSecurityServices, IbmWatsonAssistant, IbmWatsonDiscovery, IbmWatsonKnowledgeCatalog, IbmWatsonKnowledgeStudio, IbmWatsonLanguageTranslator, IbmWatsonMachineLearning, IbmWatsonNaturalLanguageClassifier, IbmWatsonNaturalLanguageUnderstanding, IbmWatsonOpenscale, IbmWatsonOrders, IbmWatsonQuery, IbmWatsonSpeechToText, IbmWatsonStudio, IbmWatsonTextToSpeech, IbmWatsonToneAnalyzer, IbmWatsonxAssistant, IbmWatsonxCodeAssistant, IbmWatsonxCodeAssistantForEnterpriseJavaApplications, IbmWatsonxCodeAssistantForZ, IbmWatsonxCodeAssistantForZRefactor, IbmWatsonxCodeAssistantForZValidationAssistant, IbmWatsonxOrchestrate, IbmZCloudModStack, IbmZCloudProvisioning, IbmZEnvironmentsDevSecOps, IbmZOpenEditor, IbmZOs, IbmZOsAiControlInterface, IbmZOsContainers, IbmZOsPackageManager, IbmZProcessorCapacityReference, IceAccretion, IceVision, IdManagement, Idea, Identification, Image, ImageCopy, ImageMedical, ImageReference, ImageSearch, ImageSearchAlt, ImageService, ImageStoreLocal, ImportExport, ImproveRelevance, InProgress, InProgressError, InProgressWarning, Incomplete, IncompleteCancel, IncompleteError, IncompleteWarning, IncreaseLevel, Industry, InfinitySymbol, Information, InformationDisabled, InformationFilled, InformationSquare, InformationSquareFilled, InfrastructureClassic, Insert, InsertPage, InsertSyntax, Inspection, InstanceBx, InstanceClassic, InstanceCx, InstanceMx, InstanceVirtual, Integration, IntentRequestActive, IntentRequestCreate, IntentRequestHeal, IntentRequestInactive, IntentRequestScaleIn, IntentRequestScaleOut, IntentRequestUninstall, IntentRequestUpgrade, Interactions, InterfaceUsage, Intersect, IntrusionPrevention, InventoryManagement, IotConnect, IotPlatform, Ip, Iso, IsoFilled, IsoOutline, JobDaemon, JobRun, JoinFull, JoinInner, JoinLeft, JoinNode, JoinOuter, JoinRight, Jpg, JsError, Json, JsonReference, JumpLink, KeepDry, Key, Keyboard, QID, WatsonHealthICa_2D, WatsonHealthImageAvailabilityLocal, WatsonHealthImageAvailabilityRetrieving, WatsonHealthImageAvailabilityUnavailable, WatsonHealthInteractiveSegmentationCursor };\n","function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport { styled } from '../styles';\nexport var Label = styled('label', function (props) {\n var $disabled = props.$disabled,\n _props$$theme = props.$theme,\n colors = _props$$theme.colors,\n typography = _props$$theme.typography;\n return _objectSpread(_objectSpread({}, typography.font250), {}, {\n width: '100%',\n color: $disabled ? colors.contentSecondary : colors.contentPrimary,\n display: 'block',\n paddingTop: 0,\n paddingRight: 0,\n paddingBottom: 0,\n paddingLeft: 0\n });\n});\nLabel.displayName = \"Label\";\nLabel.displayName = 'Label';\nexport var LabelContainer = styled('span', function (_ref) {\n var sizing = _ref.$theme.sizing;\n return {\n display: 'flex',\n width: '100%',\n marginTop: sizing.scale300,\n marginRight: 0,\n marginBottom: sizing.scale300,\n marginLeft: 0\n };\n});\nLabelContainer.displayName = \"LabelContainer\";\nLabelContainer.displayName = 'LabelContainer';\nexport var LabelEndEnhancer = styled('span', function (_ref2) {\n var $disabled = _ref2.$disabled,\n $counterError = _ref2.$counterError,\n _ref2$$theme = _ref2.$theme,\n colors = _ref2$$theme.colors,\n typography = _ref2$$theme.typography;\n return _objectSpread(_objectSpread({}, typography.font100), {}, {\n flex: 0,\n width: '100%',\n color: $counterError ? colors.negative400 : $disabled ? colors.contentSecondary : colors.contentPrimary\n });\n});\nLabelEndEnhancer.displayName = \"LabelEndEnhancer\";\nLabelEndEnhancer.displayName = 'LabelEndEnhancer';\nexport var Caption = styled('div', function (props) {\n var $error = props.$error,\n $positive = props.$positive,\n _props$$theme2 = props.$theme,\n colors = _props$$theme2.colors,\n sizing = _props$$theme2.sizing,\n typography = _props$$theme2.typography;\n var fontColor = colors.contentSecondary;\n\n if ($error) {\n fontColor = colors.negative400;\n } else if ($positive) {\n fontColor = colors.positive400;\n }\n\n return _objectSpread(_objectSpread({}, typography.font100), {}, {\n color: fontColor,\n paddingTop: 0,\n paddingRight: 0,\n paddingBottom: 0,\n paddingLeft: 0,\n marginTop: sizing.scale300,\n marginRight: 0,\n marginBottom: sizing.scale300,\n marginLeft: 0\n });\n});\nCaption.displayName = \"Caption\";\nCaption.displayName = 'Caption';\nexport var ControlContainer = styled('div', function (props) {\n var sizing = props.$theme.sizing;\n return {\n width: '100%',\n marginBottom: sizing.scale600\n };\n});\nControlContainer.displayName = \"ControlContainer\";\nControlContainer.displayName = 'ControlContainer';","function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport * as React from 'react';\nimport { getOverride, getOverrideProps } from '../helpers/overrides';\nimport { UIDConsumer } from 'react-uid';\nimport { Label as StyledLabel, LabelEndEnhancer as StyledLabelEndEnhancer, LabelContainer as StyledLabelContainer, Caption as StyledCaption, ControlContainer as StyledControlContainer } from './styled-components';\n\n// @ts-ignore\nfunction chooseRenderedHint(caption, error, positive, sharedProps) {\n if (!!error && typeof error !== 'boolean') {\n return typeof error === 'function' ? error(sharedProps) : error;\n }\n\n if (!!positive && typeof positive !== 'boolean') {\n return typeof positive === 'function' ? positive(sharedProps) : positive;\n }\n\n if (caption) {\n return typeof caption === 'function' ? caption(sharedProps) : caption;\n }\n\n return null;\n}\n\nvar FormControl = /*#__PURE__*/function (_React$Component) {\n _inherits(FormControl, _React$Component);\n\n var _super = _createSuper(FormControl);\n\n function FormControl() {\n _classCallCheck(this, FormControl);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(FormControl, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n _this$props$overrides = _this$props.overrides,\n LabelOverride = _this$props$overrides.Label,\n LabelEndEnhancerOverride = _this$props$overrides.LabelEndEnhancer,\n LabelContainerOverride = _this$props$overrides.LabelContainer,\n CaptionOverride = _this$props$overrides.Caption,\n ControlContainerOverride = _this$props$overrides.ControlContainer,\n label = _this$props.label,\n caption = _this$props.caption,\n disabled = _this$props.disabled,\n error = _this$props.error,\n positive = _this$props.positive,\n htmlFor = _this$props.htmlFor,\n children = _this$props.children,\n counter = _this$props.counter; // @ts-expect-error todo(flow->ts): looks dangerous\n\n var onlyChildProps = React.Children.only(children).props;\n var sharedProps = {\n $disabled: !!disabled,\n $error: !!error,\n $positive: !!positive\n };\n var Label = getOverride(LabelOverride) || StyledLabel;\n var LabelEndEnhancer = getOverride(LabelEndEnhancerOverride) || StyledLabelEndEnhancer;\n var LabelContainer = getOverride(LabelContainerOverride) || StyledLabelContainer;\n var Caption = getOverride(CaptionOverride) || StyledCaption;\n var ControlContainer = getOverride(ControlContainerOverride) || StyledControlContainer;\n var hint = chooseRenderedHint(caption, error, positive, sharedProps);\n\n if (process.env.NODE_ENV !== \"production\") {\n if (error && positive) {\n // eslint-disable-next-line no-console\n console.warn(\"[FormControl] `error` and `positive` are both set to `true`. `error` will take precedence but this may not be what you want.\");\n }\n }\n\n var labelEndEnhancer = this.props.labelEndEnhancer;\n\n if (counter) {\n // inferred values are preferred but if the user specifies the value\n // that is then used as the default.\n var maxLength = null;\n var length = null;\n var counterError = null;\n\n if (_typeof(counter) === 'object') {\n length = counter.length;\n maxLength = counter.maxLength;\n counterError = counter.error;\n }\n\n maxLength = maxLength ? maxLength : onlyChildProps.maxLength;\n\n if (length == null && typeof onlyChildProps.value === 'string') {\n length = onlyChildProps.value.length;\n }\n\n if (length == null) {\n length = 0;\n\n if (process.env.NODE_ENV !== \"production\") {\n console.warn(\"[FromControl] `length` must either be explicitly set via `counter` object property, or `value` string property on the child component.\");\n }\n }\n\n sharedProps.$length = length;\n\n if (maxLength == null) {\n if (!labelEndEnhancer) labelEndEnhancer = \"\".concat(length);\n } else {\n sharedProps.$maxLength = length;\n if (!labelEndEnhancer) labelEndEnhancer = \"\".concat(length, \"/\").concat(maxLength);\n if (length > maxLength && counterError == null) counterError = true;\n }\n\n if (counterError) {\n sharedProps.$error = true;\n sharedProps.$counterError = true;\n }\n }\n\n return /*#__PURE__*/React.createElement(React.Fragment, null, label && /*#__PURE__*/React.createElement(LabelContainer, _extends({}, sharedProps, getOverrideProps(LabelContainerOverride)), /*#__PURE__*/React.createElement(Label, _extends({\n \"data-baseweb\": \"form-control-label\",\n htmlFor: htmlFor || onlyChildProps.id\n }, sharedProps, getOverrideProps(LabelOverride)), typeof label === 'function' ? label(sharedProps) : label), !!labelEndEnhancer && /*#__PURE__*/React.createElement(LabelEndEnhancer, _extends({}, sharedProps, getOverrideProps(LabelEndEnhancerOverride)), typeof labelEndEnhancer === 'function' ? labelEndEnhancer(sharedProps) : labelEndEnhancer)), /*#__PURE__*/React.createElement(UIDConsumer, null, function (captionId) {\n return /*#__PURE__*/React.createElement(ControlContainer, _extends({\n \"data-baseweb\": \"form-control-container\"\n }, sharedProps, getOverrideProps(ControlContainerOverride)), React.Children.map(children, function (child, index) {\n if (!child) return; // @ts-expect-error\n\n var key = child.key || String(index); // @ts-expect-error todo(flow->ts): looks dangerous -- can be possible error\n\n return /*#__PURE__*/React.cloneElement(child, {\n key: key,\n 'aria-errormessage': error ? captionId : null,\n 'aria-describedby': caption || positive ? captionId : null,\n disabled: onlyChildProps.disabled || disabled,\n error: typeof onlyChildProps.error !== 'undefined' ? onlyChildProps.error : sharedProps.$error === false ? undefined : sharedProps.$error,\n positive: typeof onlyChildProps.positive !== 'undefined' ? onlyChildProps.positive : sharedProps.$positive === false ? undefined : sharedProps.$positive\n });\n }), (!!caption || !!error || positive) && /*#__PURE__*/React.createElement(Caption, _extends({\n \"data-baseweb\": \"form-control-caption\",\n id: captionId\n }, sharedProps, getOverrideProps(CaptionOverride)), hint));\n }));\n }\n }]);\n\n return FormControl;\n}(React.Component);\n\n_defineProperty(FormControl, \"defaultProps\", {\n overrides: {},\n // @ts-ignore\n label: null,\n // @ts-ignore\n caption: null,\n disabled: false,\n counter: false\n});\n\nexport { FormControl as default };","/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nexport var PLACEMENT = {\n auto: 'auto',\n topLeft: 'topLeft',\n top: 'top',\n topRight: 'topRight',\n rightTop: 'rightTop',\n right: 'right',\n rightBottom: 'rightBottom',\n bottomRight: 'bottomRight',\n bottom: 'bottom',\n bottomLeft: 'bottomLeft',\n leftBottom: 'leftBottom',\n left: 'left',\n leftTop: 'leftTop'\n};\nexport var TRIGGER_TYPE = {\n click: 'click',\n hover: 'hover'\n};\nexport var STATE_CHANGE_TYPE = {\n open: 'open',\n close: 'close'\n};\nexport var ACCESSIBILITY_TYPE = {\n none: 'none',\n menu: 'menu',\n tooltip: 'tooltip'\n};\nexport var POPOVER_MARGIN = 8;\nexport var ARROW_SIZE = 6;\nexport var ANIMATE_OUT_TIME = 0;\nexport var ANIMATE_IN_TIME = 20;\n/**\n * Since we use a 45-degree rotated div to render the arrow, the\n * width/height of this div is different than the arrow size itself\n *\n * The arrow size is essentially half the diagonal of the rotated div,\n * using pythagorean theorem:\n * width^2 + height^2 = (arrow_size * 2)^2\n * In this case width = height so:\n * 2 * width^2 = (arrow_size * 2)^2\n * Simplifies to:\n * width = √((arrow_size * 2)^2 / 2)\n */\n\nexport var ARROW_WIDTH = Math.ceil(Math.sqrt(Math.pow(ARROW_SIZE * 2, 2) / 2));","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n/*\nCopyright (c) Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport * as React from 'react';\nimport { ACCESSIBILITY_TYPE, PLACEMENT, STATE_CHANGE_TYPE, TRIGGER_TYPE, POPOVER_MARGIN } from './constants';\nimport { isFocusVisible } from '../utils/focusVisible';\n\nvar defaultStateReducer = function defaultStateReducer(type, nextState) {\n return nextState;\n};\n\nvar StatefulContainer = /*#__PURE__*/function (_React$Component) {\n _inherits(StatefulContainer, _React$Component);\n\n var _super = _createSuper(StatefulContainer);\n\n function StatefulContainer() {\n var _this;\n\n _classCallCheck(this, StatefulContainer);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", _objectSpread({\n isOpen: false\n }, _this.props.initialState));\n\n _defineProperty(_assertThisInitialized(_this), \"onBlur\", function (e) {\n if (_this.props.onBlur) {\n _this.props.onBlur(e);\n }\n\n if (_this.props.focusLock || _this.props.autoFocus) {\n return;\n }\n\n _this.close();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onClick\", function (e) {\n if (_this.props.onClick) {\n _this.props.onClick(e);\n }\n\n if (_this.state.isOpen) {\n _this.close();\n } else {\n _this.open();\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onClickOutside\", function () {\n _this.close();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onEsc\", function () {\n _this.close();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onFocus\", function (e) {\n if (_this.props.onFocus) {\n _this.props.onFocus(e);\n }\n\n if (isFocusVisible(e)) {\n _this.open();\n }\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onMouseEnter\", function (e) {\n if (_this.props.onMouseEnter) {\n _this.props.onMouseEnter(e);\n }\n\n _this.open();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onMouseLeave\", function (e) {\n if (_this.props.onMouseLeave) {\n _this.props.onMouseLeave(e);\n }\n\n _this.close();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"onContentClose\", function () {\n _this.close();\n });\n\n _defineProperty(_assertThisInitialized(_this), \"renderContent\", function () {\n var content = _this.props.content;\n\n if (typeof content === 'function') {\n return content({\n close: _this.onContentClose\n });\n }\n\n return content;\n });\n\n return _this;\n }\n\n _createClass(StatefulContainer, [{\n key: \"open\",\n value: function open() {\n this.internalSetState(STATE_CHANGE_TYPE.open, {\n isOpen: true\n });\n\n if (this.props.onOpen) {\n this.props.onOpen();\n }\n }\n }, {\n key: \"close\",\n value: function close() {\n this.internalSetState(STATE_CHANGE_TYPE.close, {\n isOpen: false\n });\n\n if (this.props.onClose) {\n this.props.onClose();\n }\n }\n }, {\n key: \"internalSetState\",\n value: function internalSetState(type, changes) {\n var stateReducer = this.props.stateReducer;\n\n if (typeof stateReducer !== 'function') {\n this.setState(changes);\n return;\n }\n\n this.setState(function (prevState) {\n return stateReducer(type, changes, prevState);\n });\n }\n /**\n * If user passed a content render prop, we want to give them a\n * callback to close the Popover. This is useful in any case where\n * a dev wants to manually close the popover based on some action.\n *\n * One simple example is a Popover with a \"Dismiss\" button in it:\n * }>\n * Click me\n * \n */\n\n }, {\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n accessibilityType = _this$props.accessibilityType,\n autoFocus = _this$props.autoFocus,\n animateOutTime = _this$props.animateOutTime,\n dismissOnClickOutside = _this$props.dismissOnClickOutside,\n dismissOnEsc = _this$props.dismissOnEsc,\n focusLock = _this$props.focusLock,\n ignoreBoundary = _this$props.ignoreBoundary,\n mountNode = _this$props.mountNode,\n onBlur = _this$props.onBlur,\n onClick = _this$props.onClick,\n onFocus = _this$props.onFocus,\n onMouseEnter = _this$props.onMouseEnter,\n onMouseLeave = _this$props.onMouseLeave,\n onMouseEnterDelay = _this$props.onMouseEnterDelay,\n onMouseLeaveDelay = _this$props.onMouseLeaveDelay,\n overrides = _this$props.overrides,\n placement = _this$props.placement,\n popperOptions = _this$props.popperOptions,\n renderAll = _this$props.renderAll,\n returnFocus = _this$props.returnFocus,\n showArrow = _this$props.showArrow,\n triggerType = _this$props.triggerType,\n popoverMargin = _this$props.popoverMargin,\n focusOptions = _this$props.focusOptions;\n var popoverProps = {\n accessibilityType: accessibilityType,\n animateOutTime: animateOutTime,\n autoFocus: autoFocus,\n content: this.renderContent,\n focusLock: focusLock,\n ignoreBoundary: ignoreBoundary,\n isOpen: this.state.isOpen,\n mountNode: mountNode,\n onBlur: onBlur,\n onClick: onClick,\n onFocus: onFocus,\n onMouseEnter: onMouseEnter,\n onMouseLeave: onMouseLeave,\n onMouseEnterDelay: onMouseEnterDelay,\n onMouseLeaveDelay: onMouseLeaveDelay,\n overrides: overrides,\n placement: placement,\n popperOptions: popperOptions,\n renderAll: renderAll,\n returnFocus: returnFocus,\n showArrow: showArrow,\n triggerType: triggerType,\n popoverMargin: popoverMargin,\n focusOptions: focusOptions\n };\n\n if (dismissOnClickOutside) {\n popoverProps.onClickOutside = this.onClickOutside;\n }\n\n if (dismissOnEsc) {\n popoverProps.onEsc = this.onEsc;\n }\n\n if (triggerType === TRIGGER_TYPE.hover) {\n popoverProps.onBlur = this.onBlur;\n popoverProps.onFocus = this.onFocus;\n popoverProps.onMouseEnter = this.onMouseEnter;\n popoverProps.onMouseLeave = this.onMouseLeave;\n } else {\n popoverProps.onClick = this.onClick;\n }\n\n return this.props.children(popoverProps);\n }\n }]);\n\n return StatefulContainer;\n}(React.Component);\n\n_defineProperty(StatefulContainer, \"defaultProps\", {\n accessibilityType: ACCESSIBILITY_TYPE.menu,\n ignoreBoundary: false,\n overrides: {},\n onMouseEnterDelay: 200,\n onMouseLeaveDelay: 200,\n placement: PLACEMENT.auto,\n popperOptions: {},\n showArrow: false,\n triggerType: TRIGGER_TYPE.click,\n dismissOnClickOutside: true,\n dismissOnEsc: true,\n stateReducer: defaultStateReducer,\n popoverMargin: POPOVER_MARGIN\n});\n\nexport default StatefulContainer;","/**\n * defines a focus group\n */\nexport var FOCUS_GROUP = 'data-focus-lock';\n/**\n * disables element discovery inside a group marked by key\n */\nexport var FOCUS_DISABLED = 'data-focus-lock-disabled';\n/**\n * allows uncontrolled focus within the marked area, effectively disabling focus lock for it's content\n */\nexport var FOCUS_ALLOW = 'data-no-focus-lock';\n/**\n * instructs autofocus engine to pick default autofocus inside a given node\n * can be set on the element or container\n */\nexport var FOCUS_AUTO = 'data-autofocus-inside';\n/**\n * instructs autofocus to ignore elements within a given node\n * can be set on the element or container\n */\nexport var FOCUS_NO_AUTOFOCUS = 'data-no-autofocus';\n","/**\n * Assigns a value for a given ref, no matter of the ref format\n * @param {RefObject} ref - a callback function or ref object\n * @param value - a new value\n *\n * @see https://github.com/theKashey/use-callback-ref#assignref\n * @example\n * const refObject = useRef();\n * const refFn = (ref) => {....}\n *\n * assignRef(refObject, \"refValue\");\n * assignRef(refFn, \"refValue\");\n */\nexport function assignRef(ref, value) {\n if (typeof ref === 'function') {\n ref(value);\n }\n else if (ref) {\n ref.current = value;\n }\n return ref;\n}\n","import { useState } from 'react';\n/**\n * creates a MutableRef with ref change callback\n * @param initialValue - initial ref value\n * @param {Function} callback - a callback to run when value changes\n *\n * @example\n * const ref = useCallbackRef(0, (newValue, oldValue) => console.log(oldValue, '->', newValue);\n * ref.current = 1;\n * // prints 0 -> 1\n *\n * @see https://reactjs.org/docs/hooks-reference.html#useref\n * @see https://github.com/theKashey/use-callback-ref#usecallbackref---to-replace-reactuseref\n * @returns {MutableRefObject}\n */\nexport function useCallbackRef(initialValue, callback) {\n var ref = useState(function () { return ({\n // value\n value: initialValue,\n // last callback\n callback: callback,\n // \"memoized\" public interface\n facade: {\n get current() {\n return ref.value;\n },\n set current(value) {\n var last = ref.value;\n if (last !== value) {\n ref.value = value;\n ref.callback(value, last);\n }\n },\n },\n }); })[0];\n // update callback\n ref.callback = callback;\n return ref.facade;\n}\n","import * as React from 'react';\nimport { assignRef } from './assignRef';\nimport { useCallbackRef } from './useRef';\nvar useIsomorphicLayoutEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;\nvar currentValues = new WeakMap();\n/**\n * Merges two or more refs together providing a single interface to set their value\n * @param {RefObject|Ref} refs\n * @returns {MutableRefObject} - a new ref, which translates all changes to {refs}\n *\n * @see {@link mergeRefs} a version without buit-in memoization\n * @see https://github.com/theKashey/use-callback-ref#usemergerefs\n * @example\n * const Component = React.forwardRef((props, ref) => {\n * const ownRef = useRef();\n * const domRef = useMergeRefs([ref, ownRef]); // 👈 merge together\n * return
...
\n * }\n */\nexport function useMergeRefs(refs, defaultValue) {\n var callbackRef = useCallbackRef(defaultValue || null, function (newValue) {\n return refs.forEach(function (ref) { return assignRef(ref, newValue); });\n });\n // handle refs changes - added or removed\n useIsomorphicLayoutEffect(function () {\n var oldValue = currentValues.get(callbackRef);\n if (oldValue) {\n var prevRefs_1 = new Set(oldValue);\n var nextRefs_1 = new Set(refs);\n var current_1 = callbackRef.current;\n prevRefs_1.forEach(function (ref) {\n if (!nextRefs_1.has(ref)) {\n assignRef(ref, null);\n }\n });\n nextRefs_1.forEach(function (ref) {\n if (!prevRefs_1.has(ref)) {\n assignRef(ref, current_1);\n }\n });\n }\n currentValues.set(callbackRef, refs);\n }, [refs]);\n return callbackRef;\n}\n","import * as React from 'react';\nimport PropTypes from 'prop-types';\nexport var hiddenGuard = {\n width: '1px',\n height: '0px',\n padding: 0,\n overflow: 'hidden',\n position: 'fixed',\n top: '1px',\n left: '1px'\n};\nvar InFocusGuard = function InFocusGuard(_ref) {\n var _ref$children = _ref.children,\n children = _ref$children === void 0 ? null : _ref$children;\n return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(\"div\", {\n key: \"guard-first\",\n \"data-focus-guard\": true,\n \"data-focus-auto-guard\": true,\n style: hiddenGuard\n }), children, children && /*#__PURE__*/React.createElement(\"div\", {\n key: \"guard-last\",\n \"data-focus-guard\": true,\n \"data-focus-auto-guard\": true,\n style: hiddenGuard\n }));\n};\nInFocusGuard.propTypes = process.env.NODE_ENV !== \"production\" ? {\n children: PropTypes.node\n} : {};\nexport default InFocusGuard;","/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n function next() {\n while (env.stack.length) {\n var rec = env.stack.pop();\n try {\n var result = rec.dispose && rec.dispose.call(rec.value);\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n catch (e) {\n fail(e);\n }\n }\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n","import { __assign } from \"tslib\";\nfunction ItoI(a) {\n return a;\n}\nfunction innerCreateMedium(defaults, middleware) {\n if (middleware === void 0) { middleware = ItoI; }\n var buffer = [];\n var assigned = false;\n var medium = {\n read: function () {\n if (assigned) {\n throw new Error('Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.');\n }\n if (buffer.length) {\n return buffer[buffer.length - 1];\n }\n return defaults;\n },\n useMedium: function (data) {\n var item = middleware(data, assigned);\n buffer.push(item);\n return function () {\n buffer = buffer.filter(function (x) { return x !== item; });\n };\n },\n assignSyncMedium: function (cb) {\n assigned = true;\n while (buffer.length) {\n var cbs = buffer;\n buffer = [];\n cbs.forEach(cb);\n }\n buffer = {\n push: function (x) { return cb(x); },\n filter: function () { return buffer; },\n };\n },\n assignMedium: function (cb) {\n assigned = true;\n var pendingQueue = [];\n if (buffer.length) {\n var cbs = buffer;\n buffer = [];\n cbs.forEach(cb);\n pendingQueue = buffer;\n }\n var executeQueue = function () {\n var cbs = pendingQueue;\n pendingQueue = [];\n cbs.forEach(cb);\n };\n var cycle = function () { return Promise.resolve().then(executeQueue); };\n cycle();\n buffer = {\n push: function (x) {\n pendingQueue.push(x);\n cycle();\n },\n filter: function (filter) {\n pendingQueue = pendingQueue.filter(filter);\n return buffer;\n },\n };\n },\n };\n return medium;\n}\nexport function createMedium(defaults, middleware) {\n if (middleware === void 0) { middleware = ItoI; }\n return innerCreateMedium(defaults, middleware);\n}\n// eslint-disable-next-line @typescript-eslint/ban-types\nexport function createSidecarMedium(options) {\n if (options === void 0) { options = {}; }\n var medium = innerCreateMedium(null);\n medium.options = __assign({ async: true, ssr: false }, options);\n return medium;\n}\n","import { createMedium, createSidecarMedium } from 'use-sidecar';\nexport var mediumFocus = createMedium({}, function (_ref) {\n var target = _ref.target,\n currentTarget = _ref.currentTarget;\n return {\n target: target,\n currentTarget: currentTarget\n };\n});\nexport var mediumBlur = createMedium();\nexport var mediumEffect = createMedium();\nexport var mediumSidecar = createSidecarMedium({\n async: true,\n ssr: typeof document !== 'undefined'\n});","import { createContext } from 'react';\nexport var focusScope = /*#__PURE__*/createContext(undefined);","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport * as React from 'react';\nimport { node, bool, string, any, arrayOf, oneOfType, object, func } from 'prop-types';\nimport * as constants from 'focus-lock/constants';\nimport { useMergeRefs } from 'use-callback-ref';\nimport { hiddenGuard } from './FocusGuard';\nimport { mediumFocus, mediumBlur, mediumSidecar } from './medium';\nimport { focusScope } from './scope';\nvar emptyArray = [];\nvar FocusLock = /*#__PURE__*/React.forwardRef(function FocusLockUI(props, parentRef) {\n var _extends2;\n var _React$useState = React.useState(),\n realObserved = _React$useState[0],\n setObserved = _React$useState[1];\n var observed = React.useRef();\n var isActive = React.useRef(false);\n var originalFocusedElement = React.useRef(null);\n var _React$useState2 = React.useState({}),\n update = _React$useState2[1];\n var children = props.children,\n _props$disabled = props.disabled,\n disabled = _props$disabled === void 0 ? false : _props$disabled,\n _props$noFocusGuards = props.noFocusGuards,\n noFocusGuards = _props$noFocusGuards === void 0 ? false : _props$noFocusGuards,\n _props$persistentFocu = props.persistentFocus,\n persistentFocus = _props$persistentFocu === void 0 ? false : _props$persistentFocu,\n _props$crossFrame = props.crossFrame,\n crossFrame = _props$crossFrame === void 0 ? true : _props$crossFrame,\n _props$autoFocus = props.autoFocus,\n autoFocus = _props$autoFocus === void 0 ? true : _props$autoFocus,\n allowTextSelection = props.allowTextSelection,\n group = props.group,\n className = props.className,\n whiteList = props.whiteList,\n hasPositiveIndices = props.hasPositiveIndices,\n _props$shards = props.shards,\n shards = _props$shards === void 0 ? emptyArray : _props$shards,\n _props$as = props.as,\n Container = _props$as === void 0 ? 'div' : _props$as,\n _props$lockProps = props.lockProps,\n containerProps = _props$lockProps === void 0 ? {} : _props$lockProps,\n SideCar = props.sideCar,\n _props$returnFocus = props.returnFocus,\n shouldReturnFocus = _props$returnFocus === void 0 ? false : _props$returnFocus,\n focusOptions = props.focusOptions,\n onActivationCallback = props.onActivation,\n onDeactivationCallback = props.onDeactivation;\n var _React$useState3 = React.useState({}),\n id = _React$useState3[0];\n var onActivation = React.useCallback(function (_ref) {\n var captureFocusRestore = _ref.captureFocusRestore;\n if (!originalFocusedElement.current) {\n var _document;\n var activeElement = (_document = document) == null ? void 0 : _document.activeElement;\n originalFocusedElement.current = activeElement;\n if (activeElement !== document.body) {\n originalFocusedElement.current = captureFocusRestore(activeElement);\n }\n }\n if (observed.current && onActivationCallback) {\n onActivationCallback(observed.current);\n }\n isActive.current = true;\n update();\n }, [onActivationCallback]);\n var onDeactivation = React.useCallback(function () {\n isActive.current = false;\n if (onDeactivationCallback) {\n onDeactivationCallback(observed.current);\n }\n update();\n }, [onDeactivationCallback]);\n var returnFocus = React.useCallback(function (allowDefer) {\n var focusRestore = originalFocusedElement.current;\n if (focusRestore) {\n var returnFocusTo = (typeof focusRestore === 'function' ? focusRestore() : focusRestore) || document.body;\n var howToReturnFocus = typeof shouldReturnFocus === 'function' ? shouldReturnFocus(returnFocusTo) : shouldReturnFocus;\n if (howToReturnFocus) {\n var returnFocusOptions = typeof howToReturnFocus === 'object' ? howToReturnFocus : undefined;\n originalFocusedElement.current = null;\n if (allowDefer) {\n Promise.resolve().then(function () {\n return returnFocusTo.focus(returnFocusOptions);\n });\n } else {\n returnFocusTo.focus(returnFocusOptions);\n }\n }\n }\n }, [shouldReturnFocus]);\n var onFocus = React.useCallback(function (event) {\n if (isActive.current) {\n mediumFocus.useMedium(event);\n }\n }, []);\n var onBlur = mediumBlur.useMedium;\n var setObserveNode = React.useCallback(function (newObserved) {\n if (observed.current !== newObserved) {\n observed.current = newObserved;\n setObserved(newObserved);\n }\n }, []);\n if (process.env.NODE_ENV !== 'production') {\n if (typeof allowTextSelection !== 'undefined') {\n console.warn('React-Focus-Lock: allowTextSelection is deprecated and enabled by default');\n }\n React.useEffect(function () {\n if (!observed.current && typeof Container !== 'string') {\n console.error('FocusLock: could not obtain ref to internal node');\n }\n }, []);\n }\n var lockProps = _extends((_extends2 = {}, _extends2[constants.FOCUS_DISABLED] = disabled && 'disabled', _extends2[constants.FOCUS_GROUP] = group, _extends2), containerProps);\n var hasLeadingGuards = noFocusGuards !== true;\n var hasTailingGuards = hasLeadingGuards && noFocusGuards !== 'tail';\n var mergedRef = useMergeRefs([parentRef, setObserveNode]);\n var focusScopeValue = React.useMemo(function () {\n return {\n observed: observed,\n shards: shards,\n enabled: !disabled,\n active: isActive.current\n };\n }, [disabled, isActive.current, shards, realObserved]);\n return /*#__PURE__*/React.createElement(React.Fragment, null, hasLeadingGuards && [\n /*#__PURE__*/\n React.createElement(\"div\", {\n key: \"guard-first\",\n \"data-focus-guard\": true,\n tabIndex: disabled ? -1 : 0,\n style: hiddenGuard\n }), hasPositiveIndices ? /*#__PURE__*/React.createElement(\"div\", {\n key: \"guard-nearest\",\n \"data-focus-guard\": true,\n tabIndex: disabled ? -1 : 1,\n style: hiddenGuard\n }) : null], !disabled && /*#__PURE__*/React.createElement(SideCar, {\n id: id,\n sideCar: mediumSidecar,\n observed: realObserved,\n disabled: disabled,\n persistentFocus: persistentFocus,\n crossFrame: crossFrame,\n autoFocus: autoFocus,\n whiteList: whiteList,\n shards: shards,\n onActivation: onActivation,\n onDeactivation: onDeactivation,\n returnFocus: returnFocus,\n focusOptions: focusOptions\n }), /*#__PURE__*/React.createElement(Container, _extends({\n ref: mergedRef\n }, lockProps, {\n className: className,\n onBlur: onBlur,\n onFocus: onFocus\n }), /*#__PURE__*/React.createElement(focusScope.Provider, {\n value: focusScopeValue\n }, children)), hasTailingGuards && /*#__PURE__*/React.createElement(\"div\", {\n \"data-focus-guard\": true,\n tabIndex: disabled ? -1 : 0,\n style: hiddenGuard\n }));\n});\nFocusLock.propTypes = process.env.NODE_ENV !== \"production\" ? {\n children: node,\n disabled: bool,\n returnFocus: oneOfType([bool, object, func]),\n focusOptions: object,\n noFocusGuards: bool,\n hasPositiveIndices: bool,\n allowTextSelection: bool,\n autoFocus: bool,\n persistentFocus: bool,\n crossFrame: bool,\n group: string,\n className: string,\n whiteList: func,\n shards: arrayOf(any),\n as: oneOfType([string, func, object]),\n lockProps: object,\n onActivation: func,\n onDeactivation: func,\n sideCar: any.isRequired\n} : {};\nexport default FocusLock;","function _setPrototypeOf(t, e) {\n return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {\n return t.__proto__ = e, t;\n }, _setPrototypeOf(t, e);\n}\nexport { _setPrototypeOf as default };","import setPrototypeOf from \"./setPrototypeOf.js\";\nfunction _inheritsLoose(t, o) {\n t.prototype = Object.create(o.prototype), t.prototype.constructor = t, setPrototypeOf(t, o);\n}\nexport { _inheritsLoose as default };","function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}\nexport { _typeof as default };","import _typeof from \"./typeof.js\";\nfunction toPrimitive(t, r) {\n if (\"object\" != _typeof(t) || !t) return t;\n var e = t[Symbol.toPrimitive];\n if (void 0 !== e) {\n var i = e.call(t, r || \"default\");\n if (\"object\" != _typeof(i)) return i;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (\"string\" === r ? String : Number)(t);\n}\nexport { toPrimitive as default };","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nfunction toPropertyKey(t) {\n var i = toPrimitive(t, \"string\");\n return \"symbol\" == _typeof(i) ? i : i + \"\";\n}\nexport { toPropertyKey as default };","import toPropertyKey from \"./toPropertyKey.js\";\nfunction _defineProperty(e, r, t) {\n return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {\n value: t,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }) : e[r] = t, e;\n}\nexport { _defineProperty as default };","import _inheritsLoose from '@babel/runtime/helpers/esm/inheritsLoose';\nimport _defineProperty from '@babel/runtime/helpers/esm/defineProperty';\nimport React, { PureComponent } from 'react';\n\nfunction withSideEffect(reducePropsToState, handleStateChangeOnClient) {\n if (process.env.NODE_ENV !== \"production\") {\n if (typeof reducePropsToState !== 'function') {\n throw new Error('Expected reducePropsToState to be a function.');\n }\n\n if (typeof handleStateChangeOnClient !== 'function') {\n throw new Error('Expected handleStateChangeOnClient to be a function.');\n }\n }\n\n function getDisplayName(WrappedComponent) {\n return WrappedComponent.displayName || WrappedComponent.name || 'Component';\n }\n\n return function wrap(WrappedComponent) {\n if (process.env.NODE_ENV !== \"production\") {\n if (typeof WrappedComponent !== 'function') {\n throw new Error('Expected WrappedComponent to be a React component.');\n }\n }\n\n var mountedInstances = [];\n var state;\n\n function emitChange() {\n state = reducePropsToState(mountedInstances.map(function (instance) {\n return instance.props;\n }));\n handleStateChangeOnClient(state);\n }\n\n var SideEffect = /*#__PURE__*/function (_PureComponent) {\n _inheritsLoose(SideEffect, _PureComponent);\n\n function SideEffect() {\n return _PureComponent.apply(this, arguments) || this;\n }\n\n // Try to use displayName of wrapped component\n SideEffect.peek = function peek() {\n return state;\n };\n\n var _proto = SideEffect.prototype;\n\n _proto.componentDidMount = function componentDidMount() {\n mountedInstances.push(this);\n emitChange();\n };\n\n _proto.componentDidUpdate = function componentDidUpdate() {\n emitChange();\n };\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n var index = mountedInstances.indexOf(this);\n mountedInstances.splice(index, 1);\n emitChange();\n };\n\n _proto.render = function render() {\n return /*#__PURE__*/React.createElement(WrappedComponent, this.props);\n };\n\n return SideEffect;\n }(PureComponent);\n\n _defineProperty(SideEffect, \"displayName\", \"SideEffect(\" + getDisplayName(WrappedComponent) + \")\");\n\n return SideEffect;\n };\n}\n\nexport default withSideEffect;\n","/*\nIE11 support\n */\nexport var toArray = function (a) {\n var ret = Array(a.length);\n for (var i = 0; i < a.length; ++i) {\n ret[i] = a[i];\n }\n return ret;\n};\nexport var asArray = function (a) { return (Array.isArray(a) ? a : [a]); };\nexport var getFirst = function (a) { return (Array.isArray(a) ? a[0] : a); };\n","import { FOCUS_NO_AUTOFOCUS } from '../constants';\nvar isElementHidden = function (node) {\n // we can measure only \"elements\"\n // consider others as \"visible\"\n if (node.nodeType !== Node.ELEMENT_NODE) {\n return false;\n }\n var computedStyle = window.getComputedStyle(node, null);\n if (!computedStyle || !computedStyle.getPropertyValue) {\n return false;\n }\n return (computedStyle.getPropertyValue('display') === 'none' || computedStyle.getPropertyValue('visibility') === 'hidden');\n};\nvar getParentNode = function (node) {\n // DOCUMENT_FRAGMENT_NODE can also point on ShadowRoot. In this case .host will point on the next node\n return node.parentNode && node.parentNode.nodeType === Node.DOCUMENT_FRAGMENT_NODE\n ? // eslint-disable-next-line @typescript-eslint/no-explicit-any\n node.parentNode.host\n : node.parentNode;\n};\nvar isTopNode = function (node) {\n // @ts-ignore\n return node === document || (node && node.nodeType === Node.DOCUMENT_NODE);\n};\nvar isInert = function (node) { return node.hasAttribute('inert'); };\n/**\n * @see https://github.com/testing-library/jest-dom/blob/main/src/to-be-visible.js\n */\nvar isVisibleUncached = function (node, checkParent) {\n return !node || isTopNode(node) || (!isElementHidden(node) && !isInert(node) && checkParent(getParentNode(node)));\n};\nexport var isVisibleCached = function (visibilityCache, node) {\n var cached = visibilityCache.get(node);\n if (cached !== undefined) {\n return cached;\n }\n var result = isVisibleUncached(node, isVisibleCached.bind(undefined, visibilityCache));\n visibilityCache.set(node, result);\n return result;\n};\nvar isAutoFocusAllowedUncached = function (node, checkParent) {\n return node && !isTopNode(node) ? (isAutoFocusAllowed(node) ? checkParent(getParentNode(node)) : false) : true;\n};\nexport var isAutoFocusAllowedCached = function (cache, node) {\n var cached = cache.get(node);\n if (cached !== undefined) {\n return cached;\n }\n var result = isAutoFocusAllowedUncached(node, isAutoFocusAllowedCached.bind(undefined, cache));\n cache.set(node, result);\n return result;\n};\nexport var getDataset = function (node) {\n // @ts-ignore\n return node.dataset;\n};\nexport var isHTMLButtonElement = function (node) { return node.tagName === 'BUTTON'; };\nexport var isHTMLInputElement = function (node) { return node.tagName === 'INPUT'; };\nexport var isRadioElement = function (node) {\n return isHTMLInputElement(node) && node.type === 'radio';\n};\nexport var notHiddenInput = function (node) {\n return !((isHTMLInputElement(node) || isHTMLButtonElement(node)) && (node.type === 'hidden' || node.disabled));\n};\nexport var isAutoFocusAllowed = function (node) {\n var attribute = node.getAttribute(FOCUS_NO_AUTOFOCUS);\n return ![true, 'true', ''].includes(attribute);\n};\nexport var isGuard = function (node) { var _a; return Boolean(node && ((_a = getDataset(node)) === null || _a === void 0 ? void 0 : _a.focusGuard)); };\nexport var isNotAGuard = function (node) { return !isGuard(node); };\nexport var isDefined = function (x) { return Boolean(x); };\n","import { toArray } from './array';\nexport var tabSort = function (a, b) {\n var aTab = Math.max(0, a.tabIndex);\n var bTab = Math.max(0, b.tabIndex);\n var tabDiff = aTab - bTab;\n var indexDiff = a.index - b.index;\n if (tabDiff) {\n if (!aTab) {\n return 1;\n }\n if (!bTab) {\n return -1;\n }\n }\n return tabDiff || indexDiff;\n};\nvar getTabIndex = function (node) {\n if (node.tabIndex < 0) {\n // all \"focusable\" elements are already preselected\n // but some might have implicit negative tabIndex\n // return 0 for