var AdminJSDesignSystem = (function (React, ReactDOM, styled) { 'use strict'; function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } function _interopNamespace(e) { if (e && e.__esModule) return e; var n = Object.create(null); if (e) { Object.keys(e).forEach(function (k) { if (k !== 'default') { var d = Object.getOwnPropertyDescriptor(e, k); Object.defineProperty(n, k, d.get ? d : { enumerable: true, get: function () { return e[k]; } }); } }); } n["default"] = e; return Object.freeze(n); } var React__namespace = /*#__PURE__*/_interopNamespace(React); var React__default = /*#__PURE__*/_interopDefaultLegacy(React); var ReactDOM__namespace = /*#__PURE__*/_interopNamespace(ReactDOM); var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM); var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled); var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; function unwrapExports (x) { return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; } function createCommonjsModule(fn, module) { return module = { exports: {} }, fn(module, module.exports), module.exports; } var reactIs_development = createCommonjsModule(function (module, exports) { { (function () { // nor polyfill, then a plain number is used for performance. var hasSymbol = typeof Symbol === 'function' && Symbol.for; var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7; var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca; var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb; var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc; var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2; var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd; var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary // (unstable) APIs that have been removed. Can we remove the symbols? var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf; var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf; var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1; var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8; var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3; var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4; var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9; var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5; var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6; var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7; function isValidElementType(type) { return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE); } function typeOf(object) { if (typeof object === 'object' && object !== null) { var $$typeof = object.$$typeof; switch ($$typeof) { case REACT_ELEMENT_TYPE: var type = object.type; switch (type) { case REACT_ASYNC_MODE_TYPE: case REACT_CONCURRENT_MODE_TYPE: case REACT_FRAGMENT_TYPE: case REACT_PROFILER_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_SUSPENSE_TYPE: return type; default: var $$typeofType = type && type.$$typeof; switch ($$typeofType) { case REACT_CONTEXT_TYPE: case REACT_FORWARD_REF_TYPE: case REACT_LAZY_TYPE: case REACT_MEMO_TYPE: case REACT_PROVIDER_TYPE: return $$typeofType; default: return $$typeof; } } case REACT_PORTAL_TYPE: return $$typeof; } } return undefined; } // AsyncMode is deprecated along with isAsyncMode var AsyncMode = REACT_ASYNC_MODE_TYPE; var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE; var ContextConsumer = REACT_CONTEXT_TYPE; var ContextProvider = REACT_PROVIDER_TYPE; var Element = REACT_ELEMENT_TYPE; var ForwardRef = REACT_FORWARD_REF_TYPE; var Fragment = REACT_FRAGMENT_TYPE; var Lazy = REACT_LAZY_TYPE; var Memo = REACT_MEMO_TYPE; var Portal = REACT_PORTAL_TYPE; var Profiler = REACT_PROFILER_TYPE; var StrictMode = REACT_STRICT_MODE_TYPE; var Suspense = REACT_SUSPENSE_TYPE; var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated function isAsyncMode(object) { { if (!hasWarnedAboutDeprecatedIsAsyncMode) { hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.'); } } return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE; } function isConcurrentMode(object) { return typeOf(object) === REACT_CONCURRENT_MODE_TYPE; } function isContextConsumer(object) { return typeOf(object) === REACT_CONTEXT_TYPE; } function isContextProvider(object) { return typeOf(object) === REACT_PROVIDER_TYPE; } function isElement(object) { return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; } function isForwardRef(object) { return typeOf(object) === REACT_FORWARD_REF_TYPE; } function isFragment(object) { return typeOf(object) === REACT_FRAGMENT_TYPE; } function isLazy(object) { return typeOf(object) === REACT_LAZY_TYPE; } function isMemo(object) { return typeOf(object) === REACT_MEMO_TYPE; } function isPortal(object) { return typeOf(object) === REACT_PORTAL_TYPE; } function isProfiler(object) { return typeOf(object) === REACT_PROFILER_TYPE; } function isStrictMode(object) { return typeOf(object) === REACT_STRICT_MODE_TYPE; } function isSuspense(object) { return typeOf(object) === REACT_SUSPENSE_TYPE; } exports.AsyncMode = AsyncMode; exports.ConcurrentMode = ConcurrentMode; exports.ContextConsumer = ContextConsumer; exports.ContextProvider = ContextProvider; exports.Element = Element; exports.ForwardRef = ForwardRef; exports.Fragment = Fragment; exports.Lazy = Lazy; exports.Memo = Memo; exports.Portal = Portal; exports.Profiler = Profiler; exports.StrictMode = StrictMode; exports.Suspense = Suspense; exports.isAsyncMode = isAsyncMode; exports.isConcurrentMode = isConcurrentMode; exports.isContextConsumer = isContextConsumer; exports.isContextProvider = isContextProvider; exports.isElement = isElement; exports.isForwardRef = isForwardRef; exports.isFragment = isFragment; exports.isLazy = isLazy; exports.isMemo = isMemo; exports.isPortal = isPortal; exports.isProfiler = isProfiler; exports.isStrictMode = isStrictMode; exports.isSuspense = isSuspense; exports.isValidElementType = isValidElementType; exports.typeOf = typeOf; })(); } }); reactIs_development.AsyncMode; reactIs_development.ConcurrentMode; reactIs_development.ContextConsumer; reactIs_development.ContextProvider; reactIs_development.Element; reactIs_development.ForwardRef; reactIs_development.Fragment; reactIs_development.Lazy; reactIs_development.Memo; reactIs_development.Portal; reactIs_development.Profiler; reactIs_development.StrictMode; reactIs_development.Suspense; reactIs_development.isAsyncMode; reactIs_development.isConcurrentMode; reactIs_development.isContextConsumer; reactIs_development.isContextProvider; reactIs_development.isElement; reactIs_development.isForwardRef; reactIs_development.isFragment; reactIs_development.isLazy; reactIs_development.isMemo; reactIs_development.isPortal; reactIs_development.isProfiler; reactIs_development.isStrictMode; reactIs_development.isSuspense; reactIs_development.isValidElementType; reactIs_development.typeOf; var reactIs = createCommonjsModule(function (module) { { module.exports = reactIs_development; } }); /* object-assign (c) Sindre Sorhus @license MIT */ /* eslint-disable no-unused-vars */ var getOwnPropertySymbols = Object.getOwnPropertySymbols; var hasOwnProperty$1 = Object.prototype.hasOwnProperty; var propIsEnumerable = Object.prototype.propertyIsEnumerable; function toObject(val) { if (val === null || val === undefined) { throw new TypeError('Object.assign cannot be called with null or undefined'); } return Object(val); } function shouldUseNative() { try { if (!Object.assign) { return false; } // Detect buggy property enumeration order in older V8 versions. // https://bugs.chromium.org/p/v8/issues/detail?id=4118 var test1 = new String('abc'); // eslint-disable-line no-new-wrappers test1[5] = 'de'; if (Object.getOwnPropertyNames(test1)[0] === '5') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test2 = {}; for (var i = 0; i < 10; i++) { test2['_' + String.fromCharCode(i)] = i; } var order2 = Object.getOwnPropertyNames(test2).map(function (n) { return test2[n]; }); if (order2.join('') !== '0123456789') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test3 = {}; 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { test3[letter] = letter; }); if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') { return false; } return true; } catch (err) { // We don't expect any of the above to throw, but better to be safe. return false; } } var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { var from; var to = toObject(target); var symbols; for (var s = 1; s < arguments.length; s++) { from = Object(arguments[s]); for (var key in from) { if (hasOwnProperty$1.call(from, key)) { to[key] = from[key]; } } if (getOwnPropertySymbols) { symbols = getOwnPropertySymbols(from); for (var i = 0; i < symbols.length; i++) { if (propIsEnumerable.call(from, symbols[i])) { to[symbols[i]] = from[symbols[i]]; } } } } return to; }; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var ReactPropTypesSecret$2 = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; var ReactPropTypesSecret_1 = ReactPropTypesSecret$2; var has$2 = Function.call.bind(Object.prototype.hasOwnProperty); var ReactPropTypesSecret$1 = ReactPropTypesSecret_1; var has$1 = has$2; var printWarning$2 = function () {}; { var ReactPropTypesSecret = ReactPropTypesSecret$1; var loggedTypeFailures = {}; var has = has$1; printWarning$2 = function (text) { var message = 'Warning: ' + text; if (typeof console !== 'undefined') { console.error(message); } try { // --- Welcome to debugging React --- // This error was thrown as a convenience so that you can use this stack // to find the callsite that caused this warning to fire. throw new Error(message); } catch (x) { /**/ } }; } /** * Assert that the values match with the type specs. * Error messages are memorized and will only be shown once. * * @param {object} typeSpecs Map of name to a ReactPropType * @param {object} values Runtime values that need to be type-checked * @param {string} location e.g. "prop", "context", "child context" * @param {string} componentName Name of the component for error messages. * @param {?Function} getStack Returns the component stack. * @private */ function checkPropTypes$1(typeSpecs, values, location, componentName, getStack) { { for (var typeSpecName in typeSpecs) { if (has(typeSpecs, typeSpecName)) { var error; // Prop type validation may throw. In case they do, we don't want to // fail the render phase where it didn't fail before. So we log it. // After these have been cleaned up, we'll let them throw. try { // This is intentionally an invariant that gets caught. It's the same // behavior as without this statement except with a better message. if (typeof typeSpecs[typeSpecName] !== 'function') { var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'); err.name = 'Invariant Violation'; throw err; } error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret); } catch (ex) { error = ex; } if (error && !(error instanceof Error)) { printWarning$2((componentName || 'React class') + ': type specification of ' + location + ' `' + typeSpecName + '` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).'); } if (error instanceof Error && !(error.message in loggedTypeFailures)) { // Only monitor this failure once because there tends to be a lot of the // same error. loggedTypeFailures[error.message] = true; var stack = getStack ? getStack() : ''; printWarning$2('Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')); } } } } } /** * Resets warning cache when testing. * * @private */ checkPropTypes$1.resetWarningCache = function () { { loggedTypeFailures = {}; } }; var checkPropTypes_1 = checkPropTypes$1; var checkPropTypes = checkPropTypes_1; var printWarning$1 = function () {}; { printWarning$1 = function (text) { var message = 'Warning: ' + text; if (typeof console !== 'undefined') { console.error(message); } try { // --- Welcome to debugging React --- // This error was thrown as a convenience so that you can use this stack // to find the callsite that caused this warning to fire. throw new Error(message); } catch (x) {} }; } function emptyFunctionThatReturnsNull() { return null; } var factoryWithTypeCheckers = function (isValidElement, throwOnDirectAccess) { /* global Symbol */ var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator; var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec. /** * Returns the iterator method function contained on the iterable object. * * Be sure to invoke the function with the iterable as context: * * var iteratorFn = getIteratorFn(myIterable); * if (iteratorFn) { * var iterator = iteratorFn.call(myIterable); * ... * } * * @param {?object} maybeIterable * @return {?function} */ function getIteratorFn(maybeIterable) { var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); if (typeof iteratorFn === 'function') { return iteratorFn; } } /** * Collection of methods that allow declaration and validation of props that are * supplied to React components. Example usage: * * var Props = require('ReactPropTypes'); * var MyArticle = React.createClass({ * propTypes: { * // An optional string prop named "description". * description: Props.string, * * // A required enum prop named "category". * category: Props.oneOf(['News','Photos']).isRequired, * * // A prop named "dialog" that requires an instance of Dialog. * dialog: Props.instanceOf(Dialog).isRequired * }, * render: function() { ... } * }); * * A more formal specification of how these methods are used: * * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...) * decl := ReactPropTypes.{type}(.isRequired)? * * Each and every declaration produces a function with the same signature. This * allows the creation of custom validation functions. For example: * * var MyLink = React.createClass({ * propTypes: { * // An optional string or URI prop named "href". * href: function(props, propName, componentName) { * var propValue = props[propName]; * if (propValue != null && typeof propValue !== 'string' && * !(propValue instanceof URI)) { * return new Error( * 'Expected a string or an URI for ' + propName + ' in ' + * componentName * ); * } * } * }, * render: function() {...} * }); * * @internal */ var ANONYMOUS = '<>'; // Important! // Keep this list in sync with production version in `./factoryWithThrowingShims.js`. var ReactPropTypes = { array: createPrimitiveTypeChecker('array'), bigint: createPrimitiveTypeChecker('bigint'), bool: createPrimitiveTypeChecker('boolean'), func: createPrimitiveTypeChecker('function'), number: createPrimitiveTypeChecker('number'), object: createPrimitiveTypeChecker('object'), string: createPrimitiveTypeChecker('string'), symbol: createPrimitiveTypeChecker('symbol'), any: createAnyTypeChecker(), arrayOf: createArrayOfTypeChecker, element: createElementTypeChecker(), elementType: createElementTypeTypeChecker(), instanceOf: createInstanceTypeChecker, node: createNodeChecker(), objectOf: createObjectOfTypeChecker, oneOf: createEnumTypeChecker, oneOfType: createUnionTypeChecker, shape: createShapeTypeChecker, exact: createStrictShapeTypeChecker }; /** * inlined Object.is polyfill to avoid requiring consumers ship their own * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is */ /*eslint-disable no-self-compare*/ function is(x, y) { // SameValue algorithm if (x === y) { // Steps 1-5, 7-10 // Steps 6.b-6.e: +0 != -0 return x !== 0 || 1 / x === 1 / y; } else { // Step 6.a: NaN == NaN return x !== x && y !== y; } } /*eslint-enable no-self-compare*/ /** * We use an Error-like object for backward compatibility as people may call * PropTypes directly and inspect their output. However, we don't use real * Errors anymore. We don't inspect their stack anyway, and creating them * is prohibitively expensive if they are created too often, such as what * happens in oneOfType() for any type before the one that matched. */ function PropTypeError(message, data) { this.message = message; this.data = data && typeof data === 'object' ? data : {}; this.stack = ''; } // Make `instanceof Error` still work for returned errors. PropTypeError.prototype = Error.prototype; function createChainableTypeChecker(validate) { { var manualPropTypeCallCache = {}; var manualPropTypeWarningCount = 0; } function checkType(isRequired, props, propName, componentName, location, propFullName, secret) { componentName = componentName || ANONYMOUS; propFullName = propFullName || propName; if (secret !== ReactPropTypesSecret$1) { if (throwOnDirectAccess) { // New behavior only for users of `prop-types` package var err = new Error('Calling PropTypes validators directly is not supported by the `prop-types` package. ' + 'Use `PropTypes.checkPropTypes()` to call them. ' + 'Read more at http://fb.me/use-check-prop-types'); err.name = 'Invariant Violation'; throw err; } else if (typeof console !== 'undefined') { // Old behavior for people using React.PropTypes var cacheKey = componentName + ':' + propName; if (!manualPropTypeCallCache[cacheKey] && // Avoid spamming the console because they are often not actionable except for lib authors manualPropTypeWarningCount < 3) { printWarning$1('You are manually calling a React.PropTypes validation ' + 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + 'and will throw in the standalone `prop-types` package. ' + 'You may be seeing this warning due to a third-party PropTypes ' + 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'); manualPropTypeCallCache[cacheKey] = true; manualPropTypeWarningCount++; } } } if (props[propName] == null) { if (isRequired) { if (props[propName] === null) { return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.')); } return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.')); } return null; } else { return validate(props, propName, componentName, location, propFullName); } } var chainedCheckType = checkType.bind(null, false); chainedCheckType.isRequired = checkType.bind(null, true); return chainedCheckType; } function createPrimitiveTypeChecker(expectedType) { function validate(props, propName, componentName, location, propFullName, secret) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== expectedType) { // `propValue` being instance of, say, date/regexp, pass the 'object' // check, but we can offer a more precise error message here rather than // 'of type `object`'. var preciseType = getPreciseType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'), { expectedType: expectedType }); } return null; } return createChainableTypeChecker(validate); } function createAnyTypeChecker() { return createChainableTypeChecker(emptyFunctionThatReturnsNull); } function createArrayOfTypeChecker(typeChecker) { function validate(props, propName, componentName, location, propFullName) { if (typeof typeChecker !== 'function') { return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.'); } var propValue = props[propName]; if (!Array.isArray(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.')); } for (var i = 0; i < propValue.length; i++) { var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret$1); if (error instanceof Error) { return error; } } return null; } return createChainableTypeChecker(validate); } function createElementTypeChecker() { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; if (!isValidElement(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.')); } return null; } return createChainableTypeChecker(validate); } function createElementTypeTypeChecker() { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; if (!reactIs.isValidElementType(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.')); } return null; } return createChainableTypeChecker(validate); } function createInstanceTypeChecker(expectedClass) { function validate(props, propName, componentName, location, propFullName) { if (!(props[propName] instanceof expectedClass)) { var expectedClassName = expectedClass.name || ANONYMOUS; var actualClassName = getClassName(props[propName]); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.')); } return null; } return createChainableTypeChecker(validate); } function createEnumTypeChecker(expectedValues) { if (!Array.isArray(expectedValues)) { { if (arguments.length > 1) { printWarning$1('Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'); } else { printWarning$1('Invalid argument supplied to oneOf, expected an array.'); } } return emptyFunctionThatReturnsNull; } function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; for (var i = 0; i < expectedValues.length; i++) { if (is(propValue, expectedValues[i])) { return null; } } var valuesString = JSON.stringify(expectedValues, function replacer(key, value) { var type = getPreciseType(value); if (type === 'symbol') { return String(value); } return value; }); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.')); } return createChainableTypeChecker(validate); } function createObjectOfTypeChecker(typeChecker) { function validate(props, propName, componentName, location, propFullName) { if (typeof typeChecker !== 'function') { return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.'); } var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.')); } for (var key in propValue) { if (has$1(propValue, key)) { var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret$1); if (error instanceof Error) { return error; } } } return null; } return createChainableTypeChecker(validate); } function createUnionTypeChecker(arrayOfTypeCheckers) { if (!Array.isArray(arrayOfTypeCheckers)) { printWarning$1('Invalid argument supplied to oneOfType, expected an instance of array.') ; return emptyFunctionThatReturnsNull; } for (var i = 0; i < arrayOfTypeCheckers.length; i++) { var checker = arrayOfTypeCheckers[i]; if (typeof checker !== 'function') { printWarning$1('Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'); return emptyFunctionThatReturnsNull; } } function validate(props, propName, componentName, location, propFullName) { var expectedTypes = []; for (var i = 0; i < arrayOfTypeCheckers.length; i++) { var checker = arrayOfTypeCheckers[i]; var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret$1); if (checkerResult == null) { return null; } if (checkerResult.data && has$1(checkerResult.data, 'expectedType')) { expectedTypes.push(checkerResult.data.expectedType); } } var expectedTypesMessage = expectedTypes.length > 0 ? ', expected one of type [' + expectedTypes.join(', ') + ']' : ''; return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.')); } return createChainableTypeChecker(validate); } function createNodeChecker() { function validate(props, propName, componentName, location, propFullName) { if (!isNode(props[propName])) { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.')); } return null; } return createChainableTypeChecker(validate); } function invalidValidatorError(componentName, location, propFullName, key, type) { return new PropTypeError((componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.'); } function createShapeTypeChecker(shapeTypes) { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); } for (var key in shapeTypes) { var checker = shapeTypes[key]; if (typeof checker !== 'function') { return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker)); } var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret$1); if (error) { return error; } } return null; } return createChainableTypeChecker(validate); } function createStrictShapeTypeChecker(shapeTypes) { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); } // We need to check all keys in case some are required but missing from props. var allKeys = objectAssign({}, props[propName], shapeTypes); for (var key in allKeys) { var checker = shapeTypes[key]; if (has$1(shapeTypes, key) && typeof checker !== 'function') { return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker)); } if (!checker) { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')); } var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret$1); if (error) { return error; } } return null; } return createChainableTypeChecker(validate); } function isNode(propValue) { switch (typeof propValue) { case 'number': case 'string': case 'undefined': return true; case 'boolean': return !propValue; case 'object': if (Array.isArray(propValue)) { return propValue.every(isNode); } if (propValue === null || isValidElement(propValue)) { return true; } var iteratorFn = getIteratorFn(propValue); if (iteratorFn) { var iterator = iteratorFn.call(propValue); var step; if (iteratorFn !== propValue.entries) { while (!(step = iterator.next()).done) { if (!isNode(step.value)) { return false; } } } else { // Iterator will provide entry [k,v] tuples rather than values. while (!(step = iterator.next()).done) { var entry = step.value; if (entry) { if (!isNode(entry[1])) { return false; } } } } } else { return false; } return true; default: return false; } } function isSymbol(propType, propValue) { // Native Symbol. if (propType === 'symbol') { return true; } // falsy value can't be a Symbol if (!propValue) { return false; } // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol' if (propValue['@@toStringTag'] === 'Symbol') { return true; } // Fallback for non-spec compliant Symbols which are polyfilled. if (typeof Symbol === 'function' && propValue instanceof Symbol) { return true; } return false; } // Equivalent of `typeof` but with special handling for array and regexp. function getPropType(propValue) { var propType = typeof propValue; if (Array.isArray(propValue)) { return 'array'; } if (propValue instanceof RegExp) { // Old webkits (at least until Android 4.0) return 'function' rather than // 'object' for typeof a RegExp. We'll normalize this here so that /bla/ // passes PropTypes.object. return 'object'; } if (isSymbol(propType, propValue)) { return 'symbol'; } return propType; } // This handles more types than `getPropType`. Only used for error messages. // See `createPrimitiveTypeChecker`. function getPreciseType(propValue) { if (typeof propValue === 'undefined' || propValue === null) { return '' + propValue; } var propType = getPropType(propValue); if (propType === 'object') { if (propValue instanceof Date) { return 'date'; } else if (propValue instanceof RegExp) { return 'regexp'; } } return propType; } // Returns a string that is postfixed to a warning about an invalid type. // For example, "undefined" or "of type array" function getPostfixForTypeWarning(value) { var type = getPreciseType(value); switch (type) { case 'array': case 'object': return 'an ' + type; case 'boolean': case 'date': case 'regexp': return 'a ' + type; default: return type; } } // Returns class name of the object, if any. function getClassName(propValue) { if (!propValue.constructor || !propValue.constructor.name) { return ANONYMOUS; } return propValue.constructor.name; } ReactPropTypes.checkPropTypes = checkPropTypes; ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache; ReactPropTypes.PropTypes = ReactPropTypes; return ReactPropTypes; }; var require$$1 = factoryWithTypeCheckers; var propTypes = createCommonjsModule(function (module) { /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ { var ReactIs = reactIs; // By explicitly using `prop-types` you are opting into new development behavior. // http://fb.me/prop-types-in-prod var throwOnDirectAccess = true; module.exports = require$$1(ReactIs.isElement, throwOnDirectAccess); } }); var PropTypes = propTypes; var classnames$1 = createCommonjsModule(function (module) { /*! Copyright (c) 2018 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ /* global define */ (function () { var hasOwn = {}.hasOwnProperty; function classNames() { var classes = []; for (var i = 0; i < arguments.length; i++) { var arg = arguments[i]; if (!arg) continue; var argType = typeof arg; if (argType === 'string' || argType === 'number') { classes.push(arg); } else if (Array.isArray(arg)) { if (arg.length) { var inner = classNames.apply(null, arg); if (inner) { classes.push(inner); } } } else if (argType === 'object') { if (arg.toString === Object.prototype.toString) { for (var key in arg) { if (hasOwn.call(arg, key) && arg[key]) { classes.push(key); } } } else { classes.push(arg.toString()); } } } return classes.join(' '); } if (module.exports) { classNames.default = classNames; module.exports = classNames; } else { window.classNames = classNames; } })(); }); function requiredArgs(required, args) { if (args.length < required) { throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present'); } } /** * @name isDate * @category Common Helpers * @summary Is the given value a date? * * @description * Returns true if the given value is an instance of Date. The function works for dates transferred across iframes. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {*} value - the value to check * @returns {boolean} true if the given value is a date * @throws {TypeError} 1 arguments required * * @example * // For a valid date: * var result = isDate(new Date()) * //=> true * * @example * // For an invalid date: * var result = isDate(new Date(NaN)) * //=> true * * @example * // For some value: * var result = isDate('2014-02-31') * //=> false * * @example * // For an object: * var result = isDate({}) * //=> false */ function isDate(value) { requiredArgs(1, arguments); return value instanceof Date || typeof value === 'object' && Object.prototype.toString.call(value) === '[object Date]'; } /** * @name toDate * @category Common Helpers * @summary Convert the given argument to an instance of Date. * * @description * Convert the given argument to an instance of Date. * * If the argument is an instance of Date, the function returns its clone. * * If the argument is a number, it is treated as a timestamp. * * If the argument is none of the above, the function returns Invalid Date. * * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`. * * @param {Date|Number} argument - the value to convert * @returns {Date} the parsed date in the local time zone * @throws {TypeError} 1 argument required * * @example * // Clone the date: * const result = toDate(new Date(2014, 1, 11, 11, 30, 30)) * //=> Tue Feb 11 2014 11:30:30 * * @example * // Convert the timestamp to date: * const result = toDate(1392098430000) * //=> Tue Feb 11 2014 11:30:30 */ function toDate(argument) { requiredArgs(1, arguments); var argStr = Object.prototype.toString.call(argument); // Clone the date if (argument instanceof Date || typeof argument === 'object' && argStr === '[object Date]') { // Prevent the date to lose the milliseconds when passed to new Date() in IE10 return new Date(argument.getTime()); } else if (typeof argument === 'number' || argStr === '[object Number]') { return new Date(argument); } else { if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') { // eslint-disable-next-line no-console console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as arguments. Please use `parseISO` to parse strings. See: https://git.io/fjule"); // eslint-disable-next-line no-console console.warn(new Error().stack); } return new Date(NaN); } } /** * @name isValid * @category Common Helpers * @summary Is the given date valid? * * @description * Returns false if argument is Invalid Date and true otherwise. * Argument is converted to Date using `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * Invalid Date is a Date, whose time value is NaN. * * Time value of Date: http://es5.github.io/#x15.9.1.1 * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - Now `isValid` doesn't throw an exception * if the first argument is not an instance of Date. * Instead, argument is converted beforehand using `toDate`. * * Examples: * * | `isValid` argument | Before v2.0.0 | v2.0.0 onward | * |---------------------------|---------------|---------------| * | `new Date()` | `true` | `true` | * | `new Date('2016-01-01')` | `true` | `true` | * | `new Date('')` | `false` | `false` | * | `new Date(1488370835081)` | `true` | `true` | * | `new Date(NaN)` | `false` | `false` | * | `'2016-01-01'` | `TypeError` | `false` | * | `''` | `TypeError` | `false` | * | `1488370835081` | `TypeError` | `true` | * | `NaN` | `TypeError` | `false` | * * We introduce this change to make *date-fns* consistent with ECMAScript behavior * that try to coerce arguments to the expected type * (which is also the case with other *date-fns* functions). * * @param {*} date - the date to check * @returns {Boolean} the date is valid * @throws {TypeError} 1 argument required * * @example * // For the valid date: * var result = isValid(new Date(2014, 1, 31)) * //=> true * * @example * // For the value, convertable into a date: * var result = isValid(1393804800000) * //=> true * * @example * // For the invalid date: * var result = isValid(new Date('')) * //=> false */ function isValid(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); return !isNaN(date); } var formatDistanceLocale = { lessThanXSeconds: { one: 'less than a second', other: 'less than {{count}} seconds' }, xSeconds: { one: '1 second', other: '{{count}} seconds' }, halfAMinute: 'half a minute', lessThanXMinutes: { one: 'less than a minute', other: 'less than {{count}} minutes' }, xMinutes: { one: '1 minute', other: '{{count}} minutes' }, aboutXHours: { one: 'about 1 hour', other: 'about {{count}} hours' }, xHours: { one: '1 hour', other: '{{count}} hours' }, xDays: { one: '1 day', other: '{{count}} days' }, aboutXWeeks: { one: 'about 1 week', other: 'about {{count}} weeks' }, xWeeks: { one: '1 week', other: '{{count}} weeks' }, aboutXMonths: { one: 'about 1 month', other: 'about {{count}} months' }, xMonths: { one: '1 month', other: '{{count}} months' }, aboutXYears: { one: 'about 1 year', other: 'about {{count}} years' }, xYears: { one: '1 year', other: '{{count}} years' }, overXYears: { one: 'over 1 year', other: 'over {{count}} years' }, almostXYears: { one: 'almost 1 year', other: 'almost {{count}} years' } }; function formatDistance(token, count, options) { options = options || {}; var result; if (typeof formatDistanceLocale[token] === 'string') { result = formatDistanceLocale[token]; } else if (count === 1) { result = formatDistanceLocale[token].one; } else { result = formatDistanceLocale[token].other.replace('{{count}}', count); } if (options.addSuffix) { if (options.comparison > 0) { return 'in ' + result; } else { return result + ' ago'; } } return result; } function buildFormatLongFn(args) { return function (dirtyOptions) { var options = dirtyOptions || {}; var width = options.width ? String(options.width) : args.defaultWidth; var format = args.formats[width] || args.formats[args.defaultWidth]; return format; }; } var dateFormats = { full: 'EEEE, MMMM do, y', long: 'MMMM do, y', medium: 'MMM d, y', short: 'MM/dd/yyyy' }; var timeFormats = { full: 'h:mm:ss a zzzz', long: 'h:mm:ss a z', medium: 'h:mm:ss a', short: 'h:mm a' }; var dateTimeFormats = { full: "{{date}} 'at' {{time}}", long: "{{date}} 'at' {{time}}", medium: '{{date}}, {{time}}', short: '{{date}}, {{time}}' }; var formatLong = { date: buildFormatLongFn({ formats: dateFormats, defaultWidth: 'full' }), time: buildFormatLongFn({ formats: timeFormats, defaultWidth: 'full' }), dateTime: buildFormatLongFn({ formats: dateTimeFormats, defaultWidth: 'full' }) }; var formatLong$1 = formatLong; var formatRelativeLocale = { lastWeek: "'last' eeee 'at' p", yesterday: "'yesterday at' p", today: "'today at' p", tomorrow: "'tomorrow at' p", nextWeek: "eeee 'at' p", other: 'P' }; function formatRelative(token, _date, _baseDate, _options) { return formatRelativeLocale[token]; } function buildLocalizeFn(args) { return function (dirtyIndex, dirtyOptions) { var options = dirtyOptions || {}; var context = options.context ? String(options.context) : 'standalone'; var valuesArray; if (context === 'formatting' && args.formattingValues) { var defaultWidth = args.defaultFormattingWidth || args.defaultWidth; var width = options.width ? String(options.width) : defaultWidth; valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth]; } else { var _defaultWidth = args.defaultWidth; var _width = options.width ? String(options.width) : args.defaultWidth; valuesArray = args.values[_width] || args.values[_defaultWidth]; } var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex; return valuesArray[index]; }; } var eraValues = { narrow: ['B', 'A'], abbreviated: ['BC', 'AD'], wide: ['Before Christ', 'Anno Domini'] }; var quarterValues = { narrow: ['1', '2', '3', '4'], abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'], wide: ['1st quarter', '2nd quarter', '3rd quarter', '4th quarter'] // Note: in English, the names of days of the week and months are capitalized. // If you are making a new locale based on this one, check if the same is true for the language you're working on. // Generally, formatted dates should look like they are in the middle of a sentence, // e.g. in Spanish language the weekdays and months should be in the lowercase. }; var monthValues = { narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'], abbreviated: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], wide: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] }; var dayValues = { narrow: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], short: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], abbreviated: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], wide: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'] }; var dayPeriodValues = { narrow: { am: 'a', pm: 'p', midnight: 'mi', noon: 'n', morning: 'morning', afternoon: 'afternoon', evening: 'evening', night: 'night' }, abbreviated: { am: 'AM', pm: 'PM', midnight: 'midnight', noon: 'noon', morning: 'morning', afternoon: 'afternoon', evening: 'evening', night: 'night' }, wide: { am: 'a.m.', pm: 'p.m.', midnight: 'midnight', noon: 'noon', morning: 'morning', afternoon: 'afternoon', evening: 'evening', night: 'night' } }; var formattingDayPeriodValues = { narrow: { am: 'a', pm: 'p', midnight: 'mi', noon: 'n', morning: 'in the morning', afternoon: 'in the afternoon', evening: 'in the evening', night: 'at night' }, abbreviated: { am: 'AM', pm: 'PM', midnight: 'midnight', noon: 'noon', morning: 'in the morning', afternoon: 'in the afternoon', evening: 'in the evening', night: 'at night' }, wide: { am: 'a.m.', pm: 'p.m.', midnight: 'midnight', noon: 'noon', morning: 'in the morning', afternoon: 'in the afternoon', evening: 'in the evening', night: 'at night' } }; function ordinalNumber(dirtyNumber, _dirtyOptions) { var number = Number(dirtyNumber); // If ordinal numbers depend on context, for example, // if they are different for different grammatical genders, // use `options.unit`: // // var options = dirtyOptions || {} // var unit = String(options.unit) // // where `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear', // 'day', 'hour', 'minute', 'second' var rem100 = number % 100; if (rem100 > 20 || rem100 < 10) { switch (rem100 % 10) { case 1: return number + 'st'; case 2: return number + 'nd'; case 3: return number + 'rd'; } } return number + 'th'; } var localize = { ordinalNumber: ordinalNumber, era: buildLocalizeFn({ values: eraValues, defaultWidth: 'wide' }), quarter: buildLocalizeFn({ values: quarterValues, defaultWidth: 'wide', argumentCallback: function (quarter) { return Number(quarter) - 1; } }), month: buildLocalizeFn({ values: monthValues, defaultWidth: 'wide' }), day: buildLocalizeFn({ values: dayValues, defaultWidth: 'wide' }), dayPeriod: buildLocalizeFn({ values: dayPeriodValues, defaultWidth: 'wide', formattingValues: formattingDayPeriodValues, defaultFormattingWidth: 'wide' }) }; var localize$1 = localize; function buildMatchPatternFn(args) { return function (dirtyString, dirtyOptions) { var string = String(dirtyString); var options = dirtyOptions || {}; var matchResult = string.match(args.matchPattern); if (!matchResult) { return null; } var matchedString = matchResult[0]; var parseResult = string.match(args.parsePattern); if (!parseResult) { return null; } var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0]; value = options.valueCallback ? options.valueCallback(value) : value; return { value: value, rest: string.slice(matchedString.length) }; }; } function buildMatchFn(args) { return function (dirtyString, dirtyOptions) { var string = String(dirtyString); var options = dirtyOptions || {}; var width = options.width; var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth]; var matchResult = string.match(matchPattern); if (!matchResult) { return null; } var matchedString = matchResult[0]; var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth]; var value; if (Object.prototype.toString.call(parsePatterns) === '[object Array]') { value = findIndex(parsePatterns, function (pattern) { return pattern.test(matchedString); }); } else { value = findKey(parsePatterns, function (pattern) { return pattern.test(matchedString); }); } value = args.valueCallback ? args.valueCallback(value) : value; value = options.valueCallback ? options.valueCallback(value) : value; return { value: value, rest: string.slice(matchedString.length) }; }; } function findKey(object, predicate) { for (var key in object) { if (object.hasOwnProperty(key) && predicate(object[key])) { return key; } } } function findIndex(array, predicate) { for (var key = 0; key < array.length; key++) { if (predicate(array[key])) { return key; } } } var matchOrdinalNumberPattern = /^(\d+)(th|st|nd|rd)?/i; var parseOrdinalNumberPattern = /\d+/i; var matchEraPatterns = { narrow: /^(b|a)/i, abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i, wide: /^(before christ|before common era|anno domini|common era)/i }; var parseEraPatterns = { any: [/^b/i, /^(a|c)/i] }; var matchQuarterPatterns = { narrow: /^[1234]/i, abbreviated: /^q[1234]/i, wide: /^[1234](th|st|nd|rd)? quarter/i }; var parseQuarterPatterns = { any: [/1/i, /2/i, /3/i, /4/i] }; var matchMonthPatterns = { narrow: /^[jfmasond]/i, abbreviated: /^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i, wide: /^(january|february|march|april|may|june|july|august|september|october|november|december)/i }; var parseMonthPatterns = { narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i], any: [/^ja/i, /^f/i, /^mar/i, /^ap/i, /^may/i, /^jun/i, /^jul/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i] }; var matchDayPatterns = { narrow: /^[smtwf]/i, short: /^(su|mo|tu|we|th|fr|sa)/i, abbreviated: /^(sun|mon|tue|wed|thu|fri|sat)/i, wide: /^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i }; var parseDayPatterns = { narrow: [/^s/i, /^m/i, /^t/i, /^w/i, /^t/i, /^f/i, /^s/i], any: [/^su/i, /^m/i, /^tu/i, /^w/i, /^th/i, /^f/i, /^sa/i] }; var matchDayPeriodPatterns = { narrow: /^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i, any: /^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i }; var parseDayPeriodPatterns = { any: { am: /^a/i, pm: /^p/i, midnight: /^mi/i, noon: /^no/i, morning: /morning/i, afternoon: /afternoon/i, evening: /evening/i, night: /night/i } }; var match = { ordinalNumber: buildMatchPatternFn({ matchPattern: matchOrdinalNumberPattern, parsePattern: parseOrdinalNumberPattern, valueCallback: function (value) { return parseInt(value, 10); } }), era: buildMatchFn({ matchPatterns: matchEraPatterns, defaultMatchWidth: 'wide', parsePatterns: parseEraPatterns, defaultParseWidth: 'any' }), quarter: buildMatchFn({ matchPatterns: matchQuarterPatterns, defaultMatchWidth: 'wide', parsePatterns: parseQuarterPatterns, defaultParseWidth: 'any', valueCallback: function (index) { return index + 1; } }), month: buildMatchFn({ matchPatterns: matchMonthPatterns, defaultMatchWidth: 'wide', parsePatterns: parseMonthPatterns, defaultParseWidth: 'any' }), day: buildMatchFn({ matchPatterns: matchDayPatterns, defaultMatchWidth: 'wide', parsePatterns: parseDayPatterns, defaultParseWidth: 'any' }), dayPeriod: buildMatchFn({ matchPatterns: matchDayPeriodPatterns, defaultMatchWidth: 'any', parsePatterns: parseDayPeriodPatterns, defaultParseWidth: 'any' }) }; var match$1 = match; /** * @type {Locale} * @category Locales * @summary English locale (United States). * @language English * @iso-639-2 eng * @author Sasha Koss [@kossnocorp]{@link https://github.com/kossnocorp} * @author Lesha Koss [@leshakoss]{@link https://github.com/leshakoss} */ var locale = { code: 'en-US', formatDistance: formatDistance, formatLong: formatLong$1, formatRelative: formatRelative, localize: localize$1, match: match$1, options: { weekStartsOn: 0 /* Sunday */ , firstWeekContainsDate: 1 } }; var defaultLocale = locale; function toInteger(dirtyNumber) { if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) { return NaN; } var number = Number(dirtyNumber); if (isNaN(number)) { return number; } return number < 0 ? Math.ceil(number) : Math.floor(number); } /** * @name addMilliseconds * @category Millisecond Helpers * @summary Add the specified number of milliseconds to the given date. * * @description * Add the specified number of milliseconds to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of milliseconds to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the milliseconds added * @throws {TypeError} 2 arguments required * * @example * // Add 750 milliseconds to 10 July 2014 12:45:30.000: * var result = addMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750) * //=> Thu Jul 10 2014 12:45:30.750 */ function addMilliseconds(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var timestamp = toDate(dirtyDate).getTime(); var amount = toInteger(dirtyAmount); return new Date(timestamp + amount); } /** * @name subMilliseconds * @category Millisecond Helpers * @summary Subtract the specified number of milliseconds from the given date. * * @description * Subtract the specified number of milliseconds from the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of milliseconds to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the milliseconds subtracted * @throws {TypeError} 2 arguments required * * @example * // Subtract 750 milliseconds from 10 July 2014 12:45:30.000: * var result = subMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750) * //=> Thu Jul 10 2014 12:45:29.250 */ function subMilliseconds(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addMilliseconds(dirtyDate, -amount); } function addLeadingZeros(number, targetLength) { var sign = number < 0 ? '-' : ''; var output = Math.abs(number).toString(); while (output.length < targetLength) { output = '0' + output; } return sign + output; } /* * | | Unit | | Unit | * |-----|--------------------------------|-----|--------------------------------| * | a | AM, PM | A* | | * | d | Day of month | D | | * | h | Hour [1-12] | H | Hour [0-23] | * | m | Minute | M | Month | * | s | Second | S | Fraction of second | * | y | Year (abs) | Y | | * * Letters marked by * are not implemented but reserved by Unicode standard. */ var formatters$2 = { // Year y: function (date, token) { // From http://www.unicode.org/reports/tr35/tr35-31/tr35-dates.html#Date_Format_tokens // | Year | y | yy | yyy | yyyy | yyyyy | // |----------|-------|----|-------|-------|-------| // | AD 1 | 1 | 01 | 001 | 0001 | 00001 | // | AD 12 | 12 | 12 | 012 | 0012 | 00012 | // | AD 123 | 123 | 23 | 123 | 0123 | 00123 | // | AD 1234 | 1234 | 34 | 1234 | 1234 | 01234 | // | AD 12345 | 12345 | 45 | 12345 | 12345 | 12345 | var signedYear = date.getUTCFullYear(); // Returns 1 for 1 BC (which is year 0 in JavaScript) var year = signedYear > 0 ? signedYear : 1 - signedYear; return addLeadingZeros(token === 'yy' ? year % 100 : year, token.length); }, // Month M: function (date, token) { var month = date.getUTCMonth(); return token === 'M' ? String(month + 1) : addLeadingZeros(month + 1, 2); }, // Day of the month d: function (date, token) { return addLeadingZeros(date.getUTCDate(), token.length); }, // AM or PM a: function (date, token) { var dayPeriodEnumValue = date.getUTCHours() / 12 >= 1 ? 'pm' : 'am'; switch (token) { case 'a': case 'aa': case 'aaa': return dayPeriodEnumValue.toUpperCase(); case 'aaaaa': return dayPeriodEnumValue[0]; case 'aaaa': default: return dayPeriodEnumValue === 'am' ? 'a.m.' : 'p.m.'; } }, // Hour [1-12] h: function (date, token) { return addLeadingZeros(date.getUTCHours() % 12 || 12, token.length); }, // Hour [0-23] H: function (date, token) { return addLeadingZeros(date.getUTCHours(), token.length); }, // Minute m: function (date, token) { return addLeadingZeros(date.getUTCMinutes(), token.length); }, // Second s: function (date, token) { return addLeadingZeros(date.getUTCSeconds(), token.length); }, // Fraction of second S: function (date, token) { var numberOfDigits = token.length; var milliseconds = date.getUTCMilliseconds(); var fractionalSeconds = Math.floor(milliseconds * Math.pow(10, numberOfDigits - 3)); return addLeadingZeros(fractionalSeconds, token.length); } }; var lightFormatters = formatters$2; var MILLISECONDS_IN_DAY$1 = 86400000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCDayOfYear(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var timestamp = date.getTime(); date.setUTCMonth(0, 1); date.setUTCHours(0, 0, 0, 0); var startOfYearTimestamp = date.getTime(); var difference = timestamp - startOfYearTimestamp; return Math.floor(difference / MILLISECONDS_IN_DAY$1) + 1; } // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCISOWeek(dirtyDate) { requiredArgs(1, arguments); var weekStartsOn = 1; var date = toDate(dirtyDate); var day = date.getUTCDay(); var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn; date.setUTCDate(date.getUTCDate() - diff); date.setUTCHours(0, 0, 0, 0); return date; } // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCISOWeekYear(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var year = date.getUTCFullYear(); var fourthOfJanuaryOfNextYear = new Date(0); fourthOfJanuaryOfNextYear.setUTCFullYear(year + 1, 0, 4); fourthOfJanuaryOfNextYear.setUTCHours(0, 0, 0, 0); var startOfNextYear = startOfUTCISOWeek(fourthOfJanuaryOfNextYear); var fourthOfJanuaryOfThisYear = new Date(0); fourthOfJanuaryOfThisYear.setUTCFullYear(year, 0, 4); fourthOfJanuaryOfThisYear.setUTCHours(0, 0, 0, 0); var startOfThisYear = startOfUTCISOWeek(fourthOfJanuaryOfThisYear); if (date.getTime() >= startOfNextYear.getTime()) { return year + 1; } else if (date.getTime() >= startOfThisYear.getTime()) { return year; } else { return year - 1; } } // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCISOWeekYear(dirtyDate) { requiredArgs(1, arguments); var year = getUTCISOWeekYear(dirtyDate); var fourthOfJanuary = new Date(0); fourthOfJanuary.setUTCFullYear(year, 0, 4); fourthOfJanuary.setUTCHours(0, 0, 0, 0); var date = startOfUTCISOWeek(fourthOfJanuary); return date; } var MILLISECONDS_IN_WEEK$2 = 604800000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCISOWeek(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var diff = startOfUTCISOWeek(date).getTime() - startOfUTCISOWeekYear(date).getTime(); // Round the number of days to the nearest integer // because the number of milliseconds in a week is not constant // (e.g. it's different in the week of the daylight saving time clock shift) return Math.round(diff / MILLISECONDS_IN_WEEK$2) + 1; } // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCWeek(dirtyDate, dirtyOptions) { requiredArgs(1, arguments); var options = dirtyOptions || {}; var locale = options.locale; var localeWeekStartsOn = locale && locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn == null ? 0 : toInteger(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn == null ? defaultWeekStartsOn : toInteger(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } var date = toDate(dirtyDate); var day = date.getUTCDay(); var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn; date.setUTCDate(date.getUTCDate() - diff); date.setUTCHours(0, 0, 0, 0); return date; } // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCWeekYear(dirtyDate, dirtyOptions) { requiredArgs(1, arguments); var date = toDate(dirtyDate, dirtyOptions); var year = date.getUTCFullYear(); var options = dirtyOptions || {}; var locale = options.locale; var localeFirstWeekContainsDate = locale && locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : toInteger(localeFirstWeekContainsDate); var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : toInteger(options.firstWeekContainsDate); // Test if weekStartsOn is between 1 and 7 _and_ is not NaN if (!(firstWeekContainsDate >= 1 && firstWeekContainsDate <= 7)) { throw new RangeError('firstWeekContainsDate must be between 1 and 7 inclusively'); } var firstWeekOfNextYear = new Date(0); firstWeekOfNextYear.setUTCFullYear(year + 1, 0, firstWeekContainsDate); firstWeekOfNextYear.setUTCHours(0, 0, 0, 0); var startOfNextYear = startOfUTCWeek(firstWeekOfNextYear, dirtyOptions); var firstWeekOfThisYear = new Date(0); firstWeekOfThisYear.setUTCFullYear(year, 0, firstWeekContainsDate); firstWeekOfThisYear.setUTCHours(0, 0, 0, 0); var startOfThisYear = startOfUTCWeek(firstWeekOfThisYear, dirtyOptions); if (date.getTime() >= startOfNextYear.getTime()) { return year + 1; } else if (date.getTime() >= startOfThisYear.getTime()) { return year; } else { return year - 1; } } // See issue: https://github.com/date-fns/date-fns/issues/376 function startOfUTCWeekYear(dirtyDate, dirtyOptions) { requiredArgs(1, arguments); var options = dirtyOptions || {}; var locale = options.locale; var localeFirstWeekContainsDate = locale && locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : toInteger(localeFirstWeekContainsDate); var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : toInteger(options.firstWeekContainsDate); var year = getUTCWeekYear(dirtyDate, dirtyOptions); var firstWeek = new Date(0); firstWeek.setUTCFullYear(year, 0, firstWeekContainsDate); firstWeek.setUTCHours(0, 0, 0, 0); var date = startOfUTCWeek(firstWeek, dirtyOptions); return date; } var MILLISECONDS_IN_WEEK$1 = 604800000; // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 function getUTCWeek(dirtyDate, options) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var diff = startOfUTCWeek(date, options).getTime() - startOfUTCWeekYear(date, options).getTime(); // Round the number of days to the nearest integer // because the number of milliseconds in a week is not constant // (e.g. it's different in the week of the daylight saving time clock shift) return Math.round(diff / MILLISECONDS_IN_WEEK$1) + 1; } var dayPeriodEnum = { am: 'am', pm: 'pm', midnight: 'midnight', noon: 'noon', morning: 'morning', afternoon: 'afternoon', evening: 'evening', night: 'night' /* * | | Unit | | Unit | * |-----|--------------------------------|-----|--------------------------------| * | a | AM, PM | A* | Milliseconds in day | * | b | AM, PM, noon, midnight | B | Flexible day period | * | c | Stand-alone local day of week | C* | Localized hour w/ day period | * | d | Day of month | D | Day of year | * | e | Local day of week | E | Day of week | * | f | | F* | Day of week in month | * | g* | Modified Julian day | G | Era | * | h | Hour [1-12] | H | Hour [0-23] | * | i! | ISO day of week | I! | ISO week of year | * | j* | Localized hour w/ day period | J* | Localized hour w/o day period | * | k | Hour [1-24] | K | Hour [0-11] | * | l* | (deprecated) | L | Stand-alone month | * | m | Minute | M | Month | * | n | | N | | * | o! | Ordinal number modifier | O | Timezone (GMT) | * | p! | Long localized time | P! | Long localized date | * | q | Stand-alone quarter | Q | Quarter | * | r* | Related Gregorian year | R! | ISO week-numbering year | * | s | Second | S | Fraction of second | * | t! | Seconds timestamp | T! | Milliseconds timestamp | * | u | Extended year | U* | Cyclic year | * | v* | Timezone (generic non-locat.) | V* | Timezone (location) | * | w | Local week of year | W* | Week of month | * | x | Timezone (ISO-8601 w/o Z) | X | Timezone (ISO-8601) | * | y | Year (abs) | Y | Local week-numbering year | * | z | Timezone (specific non-locat.) | Z* | Timezone (aliases) | * * Letters marked by * are not implemented but reserved by Unicode standard. * * Letters marked by ! are non-standard, but implemented by date-fns: * - `o` modifies the previous token to turn it into an ordinal (see `format` docs) * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days, * i.e. 7 for Sunday, 1 for Monday, etc. * - `I` is ISO week of year, as opposed to `w` which is local week of year. * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year. * `R` is supposed to be used in conjunction with `I` and `i` * for universal ISO week-numbering date, whereas * `Y` is supposed to be used in conjunction with `w` and `e` * for week-numbering date specific to the locale. * - `P` is long localized date format * - `p` is long localized time format */ }; var formatters = { // Era G: function (date, token, localize) { var era = date.getUTCFullYear() > 0 ? 1 : 0; switch (token) { // AD, BC case 'G': case 'GG': case 'GGG': return localize.era(era, { width: 'abbreviated' }); // A, B case 'GGGGG': return localize.era(era, { width: 'narrow' }); // Anno Domini, Before Christ case 'GGGG': default: return localize.era(era, { width: 'wide' }); } }, // Year y: function (date, token, localize) { // Ordinal number if (token === 'yo') { var signedYear = date.getUTCFullYear(); // Returns 1 for 1 BC (which is year 0 in JavaScript) var year = signedYear > 0 ? signedYear : 1 - signedYear; return localize.ordinalNumber(year, { unit: 'year' }); } return lightFormatters.y(date, token); }, // Local week-numbering year Y: function (date, token, localize, options) { var signedWeekYear = getUTCWeekYear(date, options); // Returns 1 for 1 BC (which is year 0 in JavaScript) var weekYear = signedWeekYear > 0 ? signedWeekYear : 1 - signedWeekYear; // Two digit year if (token === 'YY') { var twoDigitYear = weekYear % 100; return addLeadingZeros(twoDigitYear, 2); } // Ordinal number if (token === 'Yo') { return localize.ordinalNumber(weekYear, { unit: 'year' }); } // Padding return addLeadingZeros(weekYear, token.length); }, // ISO week-numbering year R: function (date, token) { var isoWeekYear = getUTCISOWeekYear(date); // Padding return addLeadingZeros(isoWeekYear, token.length); }, // Extended year. This is a single number designating the year of this calendar system. // The main difference between `y` and `u` localizers are B.C. years: // | Year | `y` | `u` | // |------|-----|-----| // | AC 1 | 1 | 1 | // | BC 1 | 1 | 0 | // | BC 2 | 2 | -1 | // Also `yy` always returns the last two digits of a year, // while `uu` pads single digit years to 2 characters and returns other years unchanged. u: function (date, token) { var year = date.getUTCFullYear(); return addLeadingZeros(year, token.length); }, // Quarter Q: function (date, token, localize) { var quarter = Math.ceil((date.getUTCMonth() + 1) / 3); switch (token) { // 1, 2, 3, 4 case 'Q': return String(quarter); // 01, 02, 03, 04 case 'QQ': return addLeadingZeros(quarter, 2); // 1st, 2nd, 3rd, 4th case 'Qo': return localize.ordinalNumber(quarter, { unit: 'quarter' }); // Q1, Q2, Q3, Q4 case 'QQQ': return localize.quarter(quarter, { width: 'abbreviated', context: 'formatting' }); // 1, 2, 3, 4 (narrow quarter; could be not numerical) case 'QQQQQ': return localize.quarter(quarter, { width: 'narrow', context: 'formatting' }); // 1st quarter, 2nd quarter, ... case 'QQQQ': default: return localize.quarter(quarter, { width: 'wide', context: 'formatting' }); } }, // Stand-alone quarter q: function (date, token, localize) { var quarter = Math.ceil((date.getUTCMonth() + 1) / 3); switch (token) { // 1, 2, 3, 4 case 'q': return String(quarter); // 01, 02, 03, 04 case 'qq': return addLeadingZeros(quarter, 2); // 1st, 2nd, 3rd, 4th case 'qo': return localize.ordinalNumber(quarter, { unit: 'quarter' }); // Q1, Q2, Q3, Q4 case 'qqq': return localize.quarter(quarter, { width: 'abbreviated', context: 'standalone' }); // 1, 2, 3, 4 (narrow quarter; could be not numerical) case 'qqqqq': return localize.quarter(quarter, { width: 'narrow', context: 'standalone' }); // 1st quarter, 2nd quarter, ... case 'qqqq': default: return localize.quarter(quarter, { width: 'wide', context: 'standalone' }); } }, // Month M: function (date, token, localize) { var month = date.getUTCMonth(); switch (token) { case 'M': case 'MM': return lightFormatters.M(date, token); // 1st, 2nd, ..., 12th case 'Mo': return localize.ordinalNumber(month + 1, { unit: 'month' }); // Jan, Feb, ..., Dec case 'MMM': return localize.month(month, { width: 'abbreviated', context: 'formatting' }); // J, F, ..., D case 'MMMMM': return localize.month(month, { width: 'narrow', context: 'formatting' }); // January, February, ..., December case 'MMMM': default: return localize.month(month, { width: 'wide', context: 'formatting' }); } }, // Stand-alone month L: function (date, token, localize) { var month = date.getUTCMonth(); switch (token) { // 1, 2, ..., 12 case 'L': return String(month + 1); // 01, 02, ..., 12 case 'LL': return addLeadingZeros(month + 1, 2); // 1st, 2nd, ..., 12th case 'Lo': return localize.ordinalNumber(month + 1, { unit: 'month' }); // Jan, Feb, ..., Dec case 'LLL': return localize.month(month, { width: 'abbreviated', context: 'standalone' }); // J, F, ..., D case 'LLLLL': return localize.month(month, { width: 'narrow', context: 'standalone' }); // January, February, ..., December case 'LLLL': default: return localize.month(month, { width: 'wide', context: 'standalone' }); } }, // Local week of year w: function (date, token, localize, options) { var week = getUTCWeek(date, options); if (token === 'wo') { return localize.ordinalNumber(week, { unit: 'week' }); } return addLeadingZeros(week, token.length); }, // ISO week of year I: function (date, token, localize) { var isoWeek = getUTCISOWeek(date); if (token === 'Io') { return localize.ordinalNumber(isoWeek, { unit: 'week' }); } return addLeadingZeros(isoWeek, token.length); }, // Day of the month d: function (date, token, localize) { if (token === 'do') { return localize.ordinalNumber(date.getUTCDate(), { unit: 'date' }); } return lightFormatters.d(date, token); }, // Day of year D: function (date, token, localize) { var dayOfYear = getUTCDayOfYear(date); if (token === 'Do') { return localize.ordinalNumber(dayOfYear, { unit: 'dayOfYear' }); } return addLeadingZeros(dayOfYear, token.length); }, // Day of week E: function (date, token, localize) { var dayOfWeek = date.getUTCDay(); switch (token) { // Tue case 'E': case 'EE': case 'EEE': return localize.day(dayOfWeek, { width: 'abbreviated', context: 'formatting' }); // T case 'EEEEE': return localize.day(dayOfWeek, { width: 'narrow', context: 'formatting' }); // Tu case 'EEEEEE': return localize.day(dayOfWeek, { width: 'short', context: 'formatting' }); // Tuesday case 'EEEE': default: return localize.day(dayOfWeek, { width: 'wide', context: 'formatting' }); } }, // Local day of week e: function (date, token, localize, options) { var dayOfWeek = date.getUTCDay(); var localDayOfWeek = (dayOfWeek - options.weekStartsOn + 8) % 7 || 7; switch (token) { // Numerical value (Nth day of week with current locale or weekStartsOn) case 'e': return String(localDayOfWeek); // Padded numerical value case 'ee': return addLeadingZeros(localDayOfWeek, 2); // 1st, 2nd, ..., 7th case 'eo': return localize.ordinalNumber(localDayOfWeek, { unit: 'day' }); case 'eee': return localize.day(dayOfWeek, { width: 'abbreviated', context: 'formatting' }); // T case 'eeeee': return localize.day(dayOfWeek, { width: 'narrow', context: 'formatting' }); // Tu case 'eeeeee': return localize.day(dayOfWeek, { width: 'short', context: 'formatting' }); // Tuesday case 'eeee': default: return localize.day(dayOfWeek, { width: 'wide', context: 'formatting' }); } }, // Stand-alone local day of week c: function (date, token, localize, options) { var dayOfWeek = date.getUTCDay(); var localDayOfWeek = (dayOfWeek - options.weekStartsOn + 8) % 7 || 7; switch (token) { // Numerical value (same as in `e`) case 'c': return String(localDayOfWeek); // Padded numerical value case 'cc': return addLeadingZeros(localDayOfWeek, token.length); // 1st, 2nd, ..., 7th case 'co': return localize.ordinalNumber(localDayOfWeek, { unit: 'day' }); case 'ccc': return localize.day(dayOfWeek, { width: 'abbreviated', context: 'standalone' }); // T case 'ccccc': return localize.day(dayOfWeek, { width: 'narrow', context: 'standalone' }); // Tu case 'cccccc': return localize.day(dayOfWeek, { width: 'short', context: 'standalone' }); // Tuesday case 'cccc': default: return localize.day(dayOfWeek, { width: 'wide', context: 'standalone' }); } }, // ISO day of week i: function (date, token, localize) { var dayOfWeek = date.getUTCDay(); var isoDayOfWeek = dayOfWeek === 0 ? 7 : dayOfWeek; switch (token) { // 2 case 'i': return String(isoDayOfWeek); // 02 case 'ii': return addLeadingZeros(isoDayOfWeek, token.length); // 2nd case 'io': return localize.ordinalNumber(isoDayOfWeek, { unit: 'day' }); // Tue case 'iii': return localize.day(dayOfWeek, { width: 'abbreviated', context: 'formatting' }); // T case 'iiiii': return localize.day(dayOfWeek, { width: 'narrow', context: 'formatting' }); // Tu case 'iiiiii': return localize.day(dayOfWeek, { width: 'short', context: 'formatting' }); // Tuesday case 'iiii': default: return localize.day(dayOfWeek, { width: 'wide', context: 'formatting' }); } }, // AM or PM a: function (date, token, localize) { var hours = date.getUTCHours(); var dayPeriodEnumValue = hours / 12 >= 1 ? 'pm' : 'am'; switch (token) { case 'a': case 'aa': case 'aaa': return localize.dayPeriod(dayPeriodEnumValue, { width: 'abbreviated', context: 'formatting' }); case 'aaaaa': return localize.dayPeriod(dayPeriodEnumValue, { width: 'narrow', context: 'formatting' }); case 'aaaa': default: return localize.dayPeriod(dayPeriodEnumValue, { width: 'wide', context: 'formatting' }); } }, // AM, PM, midnight, noon b: function (date, token, localize) { var hours = date.getUTCHours(); var dayPeriodEnumValue; if (hours === 12) { dayPeriodEnumValue = dayPeriodEnum.noon; } else if (hours === 0) { dayPeriodEnumValue = dayPeriodEnum.midnight; } else { dayPeriodEnumValue = hours / 12 >= 1 ? 'pm' : 'am'; } switch (token) { case 'b': case 'bb': case 'bbb': return localize.dayPeriod(dayPeriodEnumValue, { width: 'abbreviated', context: 'formatting' }); case 'bbbbb': return localize.dayPeriod(dayPeriodEnumValue, { width: 'narrow', context: 'formatting' }); case 'bbbb': default: return localize.dayPeriod(dayPeriodEnumValue, { width: 'wide', context: 'formatting' }); } }, // in the morning, in the afternoon, in the evening, at night B: function (date, token, localize) { var hours = date.getUTCHours(); var dayPeriodEnumValue; if (hours >= 17) { dayPeriodEnumValue = dayPeriodEnum.evening; } else if (hours >= 12) { dayPeriodEnumValue = dayPeriodEnum.afternoon; } else if (hours >= 4) { dayPeriodEnumValue = dayPeriodEnum.morning; } else { dayPeriodEnumValue = dayPeriodEnum.night; } switch (token) { case 'B': case 'BB': case 'BBB': return localize.dayPeriod(dayPeriodEnumValue, { width: 'abbreviated', context: 'formatting' }); case 'BBBBB': return localize.dayPeriod(dayPeriodEnumValue, { width: 'narrow', context: 'formatting' }); case 'BBBB': default: return localize.dayPeriod(dayPeriodEnumValue, { width: 'wide', context: 'formatting' }); } }, // Hour [1-12] h: function (date, token, localize) { if (token === 'ho') { var hours = date.getUTCHours() % 12; if (hours === 0) hours = 12; return localize.ordinalNumber(hours, { unit: 'hour' }); } return lightFormatters.h(date, token); }, // Hour [0-23] H: function (date, token, localize) { if (token === 'Ho') { return localize.ordinalNumber(date.getUTCHours(), { unit: 'hour' }); } return lightFormatters.H(date, token); }, // Hour [0-11] K: function (date, token, localize) { var hours = date.getUTCHours() % 12; if (token === 'Ko') { return localize.ordinalNumber(hours, { unit: 'hour' }); } return addLeadingZeros(hours, token.length); }, // Hour [1-24] k: function (date, token, localize) { var hours = date.getUTCHours(); if (hours === 0) hours = 24; if (token === 'ko') { return localize.ordinalNumber(hours, { unit: 'hour' }); } return addLeadingZeros(hours, token.length); }, // Minute m: function (date, token, localize) { if (token === 'mo') { return localize.ordinalNumber(date.getUTCMinutes(), { unit: 'minute' }); } return lightFormatters.m(date, token); }, // Second s: function (date, token, localize) { if (token === 'so') { return localize.ordinalNumber(date.getUTCSeconds(), { unit: 'second' }); } return lightFormatters.s(date, token); }, // Fraction of second S: function (date, token) { return lightFormatters.S(date, token); }, // Timezone (ISO-8601. If offset is 0, output is always `'Z'`) X: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timezoneOffset = originalDate.getTimezoneOffset(); if (timezoneOffset === 0) { return 'Z'; } switch (token) { // Hours and optional minutes case 'X': return formatTimezoneWithOptionalMinutes(timezoneOffset); // Hours, minutes and optional seconds without `:` delimiter // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets // so this token always has the same output as `XX` case 'XXXX': case 'XX': // Hours and minutes without `:` delimiter return formatTimezone(timezoneOffset); // Hours, minutes and optional seconds with `:` delimiter // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets // so this token always has the same output as `XXX` case 'XXXXX': case 'XXX': // Hours and minutes with `:` delimiter default: return formatTimezone(timezoneOffset, ':'); } }, // Timezone (ISO-8601. If offset is 0, output is `'+00:00'` or equivalent) x: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timezoneOffset = originalDate.getTimezoneOffset(); switch (token) { // Hours and optional minutes case 'x': return formatTimezoneWithOptionalMinutes(timezoneOffset); // Hours, minutes and optional seconds without `:` delimiter // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets // so this token always has the same output as `xx` case 'xxxx': case 'xx': // Hours and minutes without `:` delimiter return formatTimezone(timezoneOffset); // Hours, minutes and optional seconds with `:` delimiter // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets // so this token always has the same output as `xxx` case 'xxxxx': case 'xxx': // Hours and minutes with `:` delimiter default: return formatTimezone(timezoneOffset, ':'); } }, // Timezone (GMT) O: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timezoneOffset = originalDate.getTimezoneOffset(); switch (token) { // Short case 'O': case 'OO': case 'OOO': return 'GMT' + formatTimezoneShort(timezoneOffset, ':'); // Long case 'OOOO': default: return 'GMT' + formatTimezone(timezoneOffset, ':'); } }, // Timezone (specific non-location) z: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timezoneOffset = originalDate.getTimezoneOffset(); switch (token) { // Short case 'z': case 'zz': case 'zzz': return 'GMT' + formatTimezoneShort(timezoneOffset, ':'); // Long case 'zzzz': default: return 'GMT' + formatTimezone(timezoneOffset, ':'); } }, // Seconds timestamp t: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timestamp = Math.floor(originalDate.getTime() / 1000); return addLeadingZeros(timestamp, token.length); }, // Milliseconds timestamp T: function (date, token, _localize, options) { var originalDate = options._originalDate || date; var timestamp = originalDate.getTime(); return addLeadingZeros(timestamp, token.length); } }; function formatTimezoneShort(offset, dirtyDelimiter) { var sign = offset > 0 ? '-' : '+'; var absOffset = Math.abs(offset); var hours = Math.floor(absOffset / 60); var minutes = absOffset % 60; if (minutes === 0) { return sign + String(hours); } var delimiter = dirtyDelimiter || ''; return sign + String(hours) + delimiter + addLeadingZeros(minutes, 2); } function formatTimezoneWithOptionalMinutes(offset, dirtyDelimiter) { if (offset % 60 === 0) { var sign = offset > 0 ? '-' : '+'; return sign + addLeadingZeros(Math.abs(offset) / 60, 2); } return formatTimezone(offset, dirtyDelimiter); } function formatTimezone(offset, dirtyDelimiter) { var delimiter = dirtyDelimiter || ''; var sign = offset > 0 ? '-' : '+'; var absOffset = Math.abs(offset); var hours = addLeadingZeros(Math.floor(absOffset / 60), 2); var minutes = addLeadingZeros(absOffset % 60, 2); return sign + hours + delimiter + minutes; } var formatters$1 = formatters; function dateLongFormatter(pattern, formatLong) { switch (pattern) { case 'P': return formatLong.date({ width: 'short' }); case 'PP': return formatLong.date({ width: 'medium' }); case 'PPP': return formatLong.date({ width: 'long' }); case 'PPPP': default: return formatLong.date({ width: 'full' }); } } function timeLongFormatter(pattern, formatLong) { switch (pattern) { case 'p': return formatLong.time({ width: 'short' }); case 'pp': return formatLong.time({ width: 'medium' }); case 'ppp': return formatLong.time({ width: 'long' }); case 'pppp': default: return formatLong.time({ width: 'full' }); } } function dateTimeLongFormatter(pattern, formatLong) { var matchResult = pattern.match(/(P+)(p+)?/); var datePattern = matchResult[1]; var timePattern = matchResult[2]; if (!timePattern) { return dateLongFormatter(pattern, formatLong); } var dateTimeFormat; switch (datePattern) { case 'P': dateTimeFormat = formatLong.dateTime({ width: 'short' }); break; case 'PP': dateTimeFormat = formatLong.dateTime({ width: 'medium' }); break; case 'PPP': dateTimeFormat = formatLong.dateTime({ width: 'long' }); break; case 'PPPP': default: dateTimeFormat = formatLong.dateTime({ width: 'full' }); break; } return dateTimeFormat.replace('{{date}}', dateLongFormatter(datePattern, formatLong)).replace('{{time}}', timeLongFormatter(timePattern, formatLong)); } var longFormatters = { p: timeLongFormatter, P: dateTimeLongFormatter }; var longFormatters$1 = longFormatters; var MILLISECONDS_IN_MINUTE$3 = 60000; function getDateMillisecondsPart(date) { return date.getTime() % MILLISECONDS_IN_MINUTE$3; } /** * Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds. * They usually appear for dates that denote time before the timezones were introduced * (e.g. for 'Europe/Prague' timezone the offset is GMT+00:57:44 before 1 October 1891 * and GMT+01:00:00 after that date) * * Date#getTimezoneOffset returns the offset in minutes and would return 57 for the example above, * which would lead to incorrect calculations. * * This function returns the timezone offset in milliseconds that takes seconds in account. */ function getTimezoneOffsetInMilliseconds(dirtyDate) { var date = new Date(dirtyDate.getTime()); var baseTimezoneOffset = Math.ceil(date.getTimezoneOffset()); date.setSeconds(0, 0); var hasNegativeUTCOffset = baseTimezoneOffset > 0; var millisecondsPartOfTimezoneOffset = hasNegativeUTCOffset ? (MILLISECONDS_IN_MINUTE$3 + getDateMillisecondsPart(date)) % MILLISECONDS_IN_MINUTE$3 : getDateMillisecondsPart(date); return baseTimezoneOffset * MILLISECONDS_IN_MINUTE$3 + millisecondsPartOfTimezoneOffset; } var protectedDayOfYearTokens = ['D', 'DD']; var protectedWeekYearTokens = ['YY', 'YYYY']; function isProtectedDayOfYearToken(token) { return protectedDayOfYearTokens.indexOf(token) !== -1; } function isProtectedWeekYearToken(token) { return protectedWeekYearTokens.indexOf(token) !== -1; } function throwProtectedError(token, format, input) { if (token === 'YYYY') { throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(format, "`) for formatting years to the input `").concat(input, "`; see: https://git.io/fxCyr")); } else if (token === 'YY') { throw new RangeError("Use `yy` instead of `YY` (in `".concat(format, "`) for formatting years to the input `").concat(input, "`; see: https://git.io/fxCyr")); } else if (token === 'D') { throw new RangeError("Use `d` instead of `D` (in `".concat(format, "`) for formatting days of the month to the input `").concat(input, "`; see: https://git.io/fxCyr")); } else if (token === 'DD') { throw new RangeError("Use `dd` instead of `DD` (in `".concat(format, "`) for formatting days of the month to the input `").concat(input, "`; see: https://git.io/fxCyr")); } } // - [yYQqMLwIdDecihHKkms]o matches any available ordinal number token // (one of the certain letters followed by `o`) // - (\w)\1* matches any sequences of the same letter // - '' matches two quote characters in a row // - '(''|[^'])+('|$) matches anything surrounded by two quote characters ('), // except a single quote symbol, which ends the sequence. // Two quote characters do not end the sequence. // If there is no matching single quote // then the sequence will continue until the end of the string. // - . matches any single character unmatched by previous parts of the RegExps var formattingTokensRegExp$1 = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g; // This RegExp catches symbols escaped by quotes, and also // sequences of symbols P, p, and the combinations like `PPPPPPPppppp` var longFormattingTokensRegExp$1 = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g; var escapedStringRegExp$1 = /^'([^]*?)'?$/; var doubleQuoteRegExp$1 = /''/g; var unescapedLatinCharacterRegExp$1 = /[a-zA-Z]/; /** * @name format * @category Common Helpers * @summary Format the date. * * @description * Return the formatted date string in the given format. The result may vary by locale. * * > ⚠️ Please note that the `format` tokens differ from Moment.js and other libraries. * > See: https://git.io/fxCyr * * The characters wrapped between two single quotes characters (') are escaped. * Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote. * (see the last example) * * Format of the string is based on Unicode Technical Standard #35: * https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table * with a few additions (see note 7 below the table). * * Accepted patterns: * | Unit | Pattern | Result examples | Notes | * |---------------------------------|---------|-----------------------------------|-------| * | Era | G..GGG | AD, BC | | * | | GGGG | Anno Domini, Before Christ | 2 | * | | GGGGG | A, B | | * | Calendar year | y | 44, 1, 1900, 2017 | 5 | * | | yo | 44th, 1st, 0th, 17th | 5,7 | * | | yy | 44, 01, 00, 17 | 5 | * | | yyy | 044, 001, 1900, 2017 | 5 | * | | yyyy | 0044, 0001, 1900, 2017 | 5 | * | | yyyyy | ... | 3,5 | * | Local week-numbering year | Y | 44, 1, 1900, 2017 | 5 | * | | Yo | 44th, 1st, 1900th, 2017th | 5,7 | * | | YY | 44, 01, 00, 17 | 5,8 | * | | YYY | 044, 001, 1900, 2017 | 5 | * | | YYYY | 0044, 0001, 1900, 2017 | 5,8 | * | | YYYYY | ... | 3,5 | * | ISO week-numbering year | R | -43, 0, 1, 1900, 2017 | 5,7 | * | | RR | -43, 00, 01, 1900, 2017 | 5,7 | * | | RRR | -043, 000, 001, 1900, 2017 | 5,7 | * | | RRRR | -0043, 0000, 0001, 1900, 2017 | 5,7 | * | | RRRRR | ... | 3,5,7 | * | Extended year | u | -43, 0, 1, 1900, 2017 | 5 | * | | uu | -43, 01, 1900, 2017 | 5 | * | | uuu | -043, 001, 1900, 2017 | 5 | * | | uuuu | -0043, 0001, 1900, 2017 | 5 | * | | uuuuu | ... | 3,5 | * | Quarter (formatting) | Q | 1, 2, 3, 4 | | * | | Qo | 1st, 2nd, 3rd, 4th | 7 | * | | QQ | 01, 02, 03, 04 | | * | | QQQ | Q1, Q2, Q3, Q4 | | * | | QQQQ | 1st quarter, 2nd quarter, ... | 2 | * | | QQQQQ | 1, 2, 3, 4 | 4 | * | Quarter (stand-alone) | q | 1, 2, 3, 4 | | * | | qo | 1st, 2nd, 3rd, 4th | 7 | * | | qq | 01, 02, 03, 04 | | * | | qqq | Q1, Q2, Q3, Q4 | | * | | qqqq | 1st quarter, 2nd quarter, ... | 2 | * | | qqqqq | 1, 2, 3, 4 | 4 | * | Month (formatting) | M | 1, 2, ..., 12 | | * | | Mo | 1st, 2nd, ..., 12th | 7 | * | | MM | 01, 02, ..., 12 | | * | | MMM | Jan, Feb, ..., Dec | | * | | MMMM | January, February, ..., December | 2 | * | | MMMMM | J, F, ..., D | | * | Month (stand-alone) | L | 1, 2, ..., 12 | | * | | Lo | 1st, 2nd, ..., 12th | 7 | * | | LL | 01, 02, ..., 12 | | * | | LLL | Jan, Feb, ..., Dec | | * | | LLLL | January, February, ..., December | 2 | * | | LLLLL | J, F, ..., D | | * | Local week of year | w | 1, 2, ..., 53 | | * | | wo | 1st, 2nd, ..., 53th | 7 | * | | ww | 01, 02, ..., 53 | | * | ISO week of year | I | 1, 2, ..., 53 | 7 | * | | Io | 1st, 2nd, ..., 53th | 7 | * | | II | 01, 02, ..., 53 | 7 | * | Day of month | d | 1, 2, ..., 31 | | * | | do | 1st, 2nd, ..., 31st | 7 | * | | dd | 01, 02, ..., 31 | | * | Day of year | D | 1, 2, ..., 365, 366 | 9 | * | | Do | 1st, 2nd, ..., 365th, 366th | 7 | * | | DD | 01, 02, ..., 365, 366 | 9 | * | | DDD | 001, 002, ..., 365, 366 | | * | | DDDD | ... | 3 | * | Day of week (formatting) | E..EEE | Mon, Tue, Wed, ..., Sun | | * | | EEEE | Monday, Tuesday, ..., Sunday | 2 | * | | EEEEE | M, T, W, T, F, S, S | | * | | EEEEEE | Mo, Tu, We, Th, Fr, Su, Sa | | * | ISO day of week (formatting) | i | 1, 2, 3, ..., 7 | 7 | * | | io | 1st, 2nd, ..., 7th | 7 | * | | ii | 01, 02, ..., 07 | 7 | * | | iii | Mon, Tue, Wed, ..., Sun | 7 | * | | iiii | Monday, Tuesday, ..., Sunday | 2,7 | * | | iiiii | M, T, W, T, F, S, S | 7 | * | | iiiiii | Mo, Tu, We, Th, Fr, Su, Sa | 7 | * | Local day of week (formatting) | e | 2, 3, 4, ..., 1 | | * | | eo | 2nd, 3rd, ..., 1st | 7 | * | | ee | 02, 03, ..., 01 | | * | | eee | Mon, Tue, Wed, ..., Sun | | * | | eeee | Monday, Tuesday, ..., Sunday | 2 | * | | eeeee | M, T, W, T, F, S, S | | * | | eeeeee | Mo, Tu, We, Th, Fr, Su, Sa | | * | Local day of week (stand-alone) | c | 2, 3, 4, ..., 1 | | * | | co | 2nd, 3rd, ..., 1st | 7 | * | | cc | 02, 03, ..., 01 | | * | | ccc | Mon, Tue, Wed, ..., Sun | | * | | cccc | Monday, Tuesday, ..., Sunday | 2 | * | | ccccc | M, T, W, T, F, S, S | | * | | cccccc | Mo, Tu, We, Th, Fr, Su, Sa | | * | AM, PM | a..aaa | AM, PM | | * | | aaaa | a.m., p.m. | 2 | * | | aaaaa | a, p | | * | AM, PM, noon, midnight | b..bbb | AM, PM, noon, midnight | | * | | bbbb | a.m., p.m., noon, midnight | 2 | * | | bbbbb | a, p, n, mi | | * | Flexible day period | B..BBB | at night, in the morning, ... | | * | | BBBB | at night, in the morning, ... | 2 | * | | BBBBB | at night, in the morning, ... | | * | Hour [1-12] | h | 1, 2, ..., 11, 12 | | * | | ho | 1st, 2nd, ..., 11th, 12th | 7 | * | | hh | 01, 02, ..., 11, 12 | | * | Hour [0-23] | H | 0, 1, 2, ..., 23 | | * | | Ho | 0th, 1st, 2nd, ..., 23rd | 7 | * | | HH | 00, 01, 02, ..., 23 | | * | Hour [0-11] | K | 1, 2, ..., 11, 0 | | * | | Ko | 1st, 2nd, ..., 11th, 0th | 7 | * | | KK | 01, 02, ..., 11, 00 | | * | Hour [1-24] | k | 24, 1, 2, ..., 23 | | * | | ko | 24th, 1st, 2nd, ..., 23rd | 7 | * | | kk | 24, 01, 02, ..., 23 | | * | Minute | m | 0, 1, ..., 59 | | * | | mo | 0th, 1st, ..., 59th | 7 | * | | mm | 00, 01, ..., 59 | | * | Second | s | 0, 1, ..., 59 | | * | | so | 0th, 1st, ..., 59th | 7 | * | | ss | 00, 01, ..., 59 | | * | Fraction of second | S | 0, 1, ..., 9 | | * | | SS | 00, 01, ..., 99 | | * | | SSS | 000, 0001, ..., 999 | | * | | SSSS | ... | 3 | * | Timezone (ISO-8601 w/ Z) | X | -08, +0530, Z | | * | | XX | -0800, +0530, Z | | * | | XXX | -08:00, +05:30, Z | | * | | XXXX | -0800, +0530, Z, +123456 | 2 | * | | XXXXX | -08:00, +05:30, Z, +12:34:56 | | * | Timezone (ISO-8601 w/o Z) | x | -08, +0530, +00 | | * | | xx | -0800, +0530, +0000 | | * | | xxx | -08:00, +05:30, +00:00 | 2 | * | | xxxx | -0800, +0530, +0000, +123456 | | * | | xxxxx | -08:00, +05:30, +00:00, +12:34:56 | | * | Timezone (GMT) | O...OOO | GMT-8, GMT+5:30, GMT+0 | | * | | OOOO | GMT-08:00, GMT+05:30, GMT+00:00 | 2 | * | Timezone (specific non-locat.) | z...zzz | GMT-8, GMT+5:30, GMT+0 | 6 | * | | zzzz | GMT-08:00, GMT+05:30, GMT+00:00 | 2,6 | * | Seconds timestamp | t | 512969520 | 7 | * | | tt | ... | 3,7 | * | Milliseconds timestamp | T | 512969520900 | 7 | * | | TT | ... | 3,7 | * | Long localized date | P | 05/29/1453 | 7 | * | | PP | May 29, 1453 | 7 | * | | PPP | May 29th, 1453 | 7 | * | | PPPP | Sunday, May 29th, 1453 | 2,7 | * | Long localized time | p | 12:00 AM | 7 | * | | pp | 12:00:00 AM | 7 | * | | ppp | 12:00:00 AM GMT+2 | 7 | * | | pppp | 12:00:00 AM GMT+02:00 | 2,7 | * | Combination of date and time | Pp | 05/29/1453, 12:00 AM | 7 | * | | PPpp | May 29, 1453, 12:00:00 AM | 7 | * | | PPPppp | May 29th, 1453 at ... | 7 | * | | PPPPpppp| Sunday, May 29th, 1453 at ... | 2,7 | * Notes: * 1. "Formatting" units (e.g. formatting quarter) in the default en-US locale * are the same as "stand-alone" units, but are different in some languages. * "Formatting" units are declined according to the rules of the language * in the context of a date. "Stand-alone" units are always nominative singular: * * `format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'` * * `format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'` * * 2. Any sequence of the identical letters is a pattern, unless it is escaped by * the single quote characters (see below). * If the sequence is longer than listed in table (e.g. `EEEEEEEEEEE`) * the output will be the same as default pattern for this unit, usually * the longest one (in case of ISO weekdays, `EEEE`). Default patterns for units * are marked with "2" in the last column of the table. * * `format(new Date(2017, 10, 6), 'MMM') //=> 'Nov'` * * `format(new Date(2017, 10, 6), 'MMMM') //=> 'November'` * * `format(new Date(2017, 10, 6), 'MMMMM') //=> 'N'` * * `format(new Date(2017, 10, 6), 'MMMMMM') //=> 'November'` * * `format(new Date(2017, 10, 6), 'MMMMMMM') //=> 'November'` * * 3. Some patterns could be unlimited length (such as `yyyyyyyy`). * The output will be padded with zeros to match the length of the pattern. * * `format(new Date(2017, 10, 6), 'yyyyyyyy') //=> '00002017'` * * 4. `QQQQQ` and `qqqqq` could be not strictly numerical in some locales. * These tokens represent the shortest form of the quarter. * * 5. The main difference between `y` and `u` patterns are B.C. years: * * | Year | `y` | `u` | * |------|-----|-----| * | AC 1 | 1 | 1 | * | BC 1 | 1 | 0 | * | BC 2 | 2 | -1 | * * Also `yy` always returns the last two digits of a year, * while `uu` pads single digit years to 2 characters and returns other years unchanged: * * | Year | `yy` | `uu` | * |------|------|------| * | 1 | 01 | 01 | * | 14 | 14 | 14 | * | 376 | 76 | 376 | * | 1453 | 53 | 1453 | * * The same difference is true for local and ISO week-numbering years (`Y` and `R`), * except local week-numbering years are dependent on `options.weekStartsOn` * and `options.firstWeekContainsDate` (compare [getISOWeekYear]{@link https://date-fns.org/docs/getISOWeekYear} * and [getWeekYear]{@link https://date-fns.org/docs/getWeekYear}). * * 6. Specific non-location timezones are currently unavailable in `date-fns`, * so right now these tokens fall back to GMT timezones. * * 7. These patterns are not in the Unicode Technical Standard #35: * - `i`: ISO day of week * - `I`: ISO week of year * - `R`: ISO week-numbering year * - `t`: seconds timestamp * - `T`: milliseconds timestamp * - `o`: ordinal number modifier * - `P`: long localized date * - `p`: long localized time * * 8. `YY` and `YYYY` tokens represent week-numbering years but they are often confused with years. * You should enable `options.useAdditionalWeekYearTokens` to use them. See: https://git.io/fxCyr * * 9. `D` and `DD` tokens represent days of the year but they are ofthen confused with days of the month. * You should enable `options.useAdditionalDayOfYearTokens` to use them. See: https://git.io/fxCyr * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - The second argument is now required for the sake of explicitness. * * ```javascript * // Before v2.0.0 * format(new Date(2016, 0, 1)) * * // v2.0.0 onward * format(new Date(2016, 0, 1), "yyyy-MM-dd'T'HH:mm:ss.SSSxxx") * ``` * * - New format string API for `format` function * which is based on [Unicode Technical Standard #35](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table). * See [this post](https://blog.date-fns.org/post/unicode-tokens-in-date-fns-v2-sreatyki91jg) for more details. * * - Characters are now escaped using single quote symbols (`'`) instead of square brackets. * * @param {Date|Number} date - the original date * @param {String} format - the string of tokens * @param {Object} [options] - an object with options. * @param {Locale} [options.locale=defaultLocale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale} * @param {0|1|2|3|4|5|6} [options.weekStartsOn=0] - the index of the first day of the week (0 - Sunday) * @param {Number} [options.firstWeekContainsDate=1] - the day of January, which is * @param {Boolean} [options.useAdditionalWeekYearTokens=false] - if true, allows usage of the week-numbering year tokens `YY` and `YYYY`; * see: https://git.io/fxCyr * @param {Boolean} [options.useAdditionalDayOfYearTokens=false] - if true, allows usage of the day of year tokens `D` and `DD`; * see: https://git.io/fxCyr * @returns {String} the formatted date string * @throws {TypeError} 2 arguments required * @throws {RangeError} `date` must not be Invalid Date * @throws {RangeError} `options.locale` must contain `localize` property * @throws {RangeError} `options.locale` must contain `formatLong` property * @throws {RangeError} `options.weekStartsOn` must be between 0 and 6 * @throws {RangeError} `options.firstWeekContainsDate` must be between 1 and 7 * @throws {RangeError} use `yyyy` instead of `YYYY` for formatting years using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `yy` instead of `YY` for formatting years using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `d` instead of `D` for formatting days of the month using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `dd` instead of `DD` for formatting days of the month using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} format string contains an unescaped latin alphabet character * * @example * // Represent 11 February 2014 in middle-endian format: * var result = format(new Date(2014, 1, 11), 'MM/dd/yyyy') * //=> '02/11/2014' * * @example * // Represent 2 July 2014 in Esperanto: * import { eoLocale } from 'date-fns/locale/eo' * var result = format(new Date(2014, 6, 2), "do 'de' MMMM yyyy", { * locale: eoLocale * }) * //=> '2-a de julio 2014' * * @example * // Escape string by single quote characters: * var result = format(new Date(2014, 6, 2, 15), "h 'o''clock'") * //=> "3 o'clock" */ function format$2(dirtyDate, dirtyFormatStr, dirtyOptions) { requiredArgs(2, arguments); var formatStr = String(dirtyFormatStr); var options = dirtyOptions || {}; var locale = options.locale || defaultLocale; var localeFirstWeekContainsDate = locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : toInteger(localeFirstWeekContainsDate); var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : toInteger(options.firstWeekContainsDate); // Test if weekStartsOn is between 1 and 7 _and_ is not NaN if (!(firstWeekContainsDate >= 1 && firstWeekContainsDate <= 7)) { throw new RangeError('firstWeekContainsDate must be between 1 and 7 inclusively'); } var localeWeekStartsOn = locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn == null ? 0 : toInteger(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn == null ? defaultWeekStartsOn : toInteger(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } if (!locale.localize) { throw new RangeError('locale must contain localize property'); } if (!locale.formatLong) { throw new RangeError('locale must contain formatLong property'); } var originalDate = toDate(dirtyDate); if (!isValid(originalDate)) { throw new RangeError('Invalid time value'); } // Convert the date in system timezone to the same date in UTC+00:00 timezone. // This ensures that when UTC functions will be implemented, locales will be compatible with them. // See an issue about UTC functions: https://github.com/date-fns/date-fns/issues/376 var timezoneOffset = getTimezoneOffsetInMilliseconds(originalDate); var utcDate = subMilliseconds(originalDate, timezoneOffset); var formatterOptions = { firstWeekContainsDate: firstWeekContainsDate, weekStartsOn: weekStartsOn, locale: locale, _originalDate: originalDate }; var result = formatStr.match(longFormattingTokensRegExp$1).map(function (substring) { var firstCharacter = substring[0]; if (firstCharacter === 'p' || firstCharacter === 'P') { var longFormatter = longFormatters$1[firstCharacter]; return longFormatter(substring, locale.formatLong, formatterOptions); } return substring; }).join('').match(formattingTokensRegExp$1).map(function (substring) { // Replace two single quote characters with one single quote character if (substring === "''") { return "'"; } var firstCharacter = substring[0]; if (firstCharacter === "'") { return cleanEscapedString$1(substring); } var formatter = formatters$1[firstCharacter]; if (formatter) { if (!options.useAdditionalWeekYearTokens && isProtectedWeekYearToken(substring)) { throwProtectedError(substring, dirtyFormatStr, dirtyDate); } if (!options.useAdditionalDayOfYearTokens && isProtectedDayOfYearToken(substring)) { throwProtectedError(substring, dirtyFormatStr, dirtyDate); } return formatter(utcDate, substring, locale.localize, formatterOptions); } if (firstCharacter.match(unescapedLatinCharacterRegExp$1)) { throw new RangeError('Format string contains an unescaped latin alphabet character `' + firstCharacter + '`'); } return substring; }).join(''); return result; } function cleanEscapedString$1(input) { return input.match(escapedStringRegExp$1)[1].replace(doubleQuoteRegExp$1, "'"); } var MILLISECONDS_IN_MINUTE$2 = 60000; /** * @name addMinutes * @category Minute Helpers * @summary Add the specified number of minutes to the given date. * * @description * Add the specified number of minutes to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of minutes to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the minutes added * @throws {TypeError} 2 arguments required * * @example * // Add 30 minutes to 10 July 2014 12:00:00: * var result = addMinutes(new Date(2014, 6, 10, 12, 0), 30) * //=> Thu Jul 10 2014 12:30:00 */ function addMinutes(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addMilliseconds(dirtyDate, amount * MILLISECONDS_IN_MINUTE$2); } var MILLISECONDS_IN_HOUR$2 = 3600000; /** * @name addHours * @category Hour Helpers * @summary Add the specified number of hours to the given date. * * @description * Add the specified number of hours to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of hours to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the hours added * @throws {TypeError} 2 arguments required * * @example * // Add 2 hours to 10 July 2014 23:00:00: * var result = addHours(new Date(2014, 6, 10, 23, 0), 2) * //=> Fri Jul 11 2014 01:00:00 */ function addHours(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addMilliseconds(dirtyDate, amount * MILLISECONDS_IN_HOUR$2); } /** * @name addDays * @category Day Helpers * @summary Add the specified number of days to the given date. * * @description * Add the specified number of days to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the days added * @throws {TypeError} 2 arguments required * * @example * // Add 10 days to 1 September 2014: * var result = addDays(new Date(2014, 8, 1), 10) * //=> Thu Sep 11 2014 00:00:00 */ function addDays(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var amount = toInteger(dirtyAmount); if (isNaN(amount)) { return new Date(NaN); } if (!amount) { // If 0 days, no-op to avoid changing times in the hour before end of DST return date; } date.setDate(date.getDate() + amount); return date; } /** * @name addWeeks * @category Week Helpers * @summary Add the specified number of weeks to the given date. * * @description * Add the specified number of week to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of weeks to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the weeks added * @throws {TypeError} 2 arguments required * * @example * // Add 4 weeks to 1 September 2014: * var result = addWeeks(new Date(2014, 8, 1), 4) * //=> Mon Sep 29 2014 00:00:00 */ function addWeeks(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); var days = amount * 7; return addDays(dirtyDate, days); } /** * @name addMonths * @category Month Helpers * @summary Add the specified number of months to the given date. * * @description * Add the specified number of months to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of months to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the months added * @throws {TypeError} 2 arguments required * * @example * // Add 5 months to 1 September 2014: * var result = addMonths(new Date(2014, 8, 1), 5) * //=> Sun Feb 01 2015 00:00:00 */ function addMonths(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var amount = toInteger(dirtyAmount); if (isNaN(amount)) { return new Date(NaN); } if (!amount) { // If 0 months, no-op to avoid changing times in the hour before end of DST return date; } var dayOfMonth = date.getDate(); // The JS Date object supports date math by accepting out-of-bounds values for // month, day, etc. For example, new Date(2020, 1, 0) returns 31 Dec 2019 and // new Date(2020, 13, 1) returns 1 Feb 2021. This is *almost* the behavior we // want except that dates will wrap around the end of a month, meaning that // new Date(2020, 13, 31) will return 3 Mar 2021 not 28 Feb 2021 as desired. So // we'll default to the end of the desired month by adding 1 to the desired // month and using a date of 0 to back up one day to the end of the desired // month. var endOfDesiredMonth = new Date(date.getTime()); endOfDesiredMonth.setMonth(date.getMonth() + amount + 1, 0); var daysInMonth = endOfDesiredMonth.getDate(); if (dayOfMonth >= daysInMonth) { // If we're already at the end of the month, then this is the correct date // and we're done. return endOfDesiredMonth; } else { // Otherwise, we now know that setting the original day-of-month value won't // cause an overflow, so set the desired day-of-month. Note that we can't // just set the date of `endOfDesiredMonth` because that object may have had // its time changed in the unusual case where where a DST transition was on // the last day of the month and its local time was in the hour skipped or // repeated next to a DST transition. So we use `date` instead which is // guaranteed to still have the original time. date.setFullYear(endOfDesiredMonth.getFullYear(), endOfDesiredMonth.getMonth(), dayOfMonth); return date; } } /** * @name addYears * @category Year Helpers * @summary Add the specified number of years to the given date. * * @description * Add the specified number of years to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of years to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the years added * @throws {TypeError} 2 arguments required * * @example * // Add 5 years to 1 September 2014: * var result = addYears(new Date(2014, 8, 1), 5) * //=> Sun Sep 01 2019 00:00:00 */ function addYears(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addMonths(dirtyDate, amount * 12); } /** * @name subDays * @category Day Helpers * @summary Subtract the specified number of days from the given date. * * @description * Subtract the specified number of days from the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the days subtracted * @throws {TypeError} 2 arguments required * * @example * // Subtract 10 days from 1 September 2014: * var result = subDays(new Date(2014, 8, 1), 10) * //=> Fri Aug 22 2014 00:00:00 */ function subDays(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addDays(dirtyDate, -amount); } /** * @name subWeeks * @category Week Helpers * @summary Subtract the specified number of weeks from the given date. * * @description * Subtract the specified number of weeks from the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of weeks to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the weeks subtracted * @throws {TypeError} 2 arguments required * * @example * // Subtract 4 weeks from 1 September 2014: * var result = subWeeks(new Date(2014, 8, 1), 4) * //=> Mon Aug 04 2014 00:00:00 */ function subWeeks(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addWeeks(dirtyDate, -amount); } /** * @name subMonths * @category Month Helpers * @summary Subtract the specified number of months from the given date. * * @description * Subtract the specified number of months from the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of months to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the months subtracted * @throws {TypeError} 2 arguments required * * @example * // Subtract 5 months from 1 February 2015: * var result = subMonths(new Date(2015, 1, 1), 5) * //=> Mon Sep 01 2014 00:00:00 */ function subMonths(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addMonths(dirtyDate, -amount); } /** * @name subYears * @category Year Helpers * @summary Subtract the specified number of years from the given date. * * @description * Subtract the specified number of years from the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of years to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {Date} the new date with the years subtracted * @throws {TypeError} 2 arguments required * * @example * // Subtract 5 years from 1 September 2014: * var result = subYears(new Date(2014, 8, 1), 5) * //=> Tue Sep 01 2009 00:00:00 */ function subYears(dirtyDate, dirtyAmount) { requiredArgs(2, arguments); var amount = toInteger(dirtyAmount); return addYears(dirtyDate, -amount); } /** * @name getSeconds * @category Second Helpers * @summary Get the seconds of the given date. * * @description * Get the seconds of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the seconds * @throws {TypeError} 1 argument required * * @example * // Get the seconds of 29 February 2012 11:45:05.123: * var result = getSeconds(new Date(2012, 1, 29, 11, 45, 5, 123)) * //=> 5 */ function getSeconds(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var seconds = date.getSeconds(); return seconds; } /** * @name getMinutes * @category Minute Helpers * @summary Get the minutes of the given date. * * @description * Get the minutes of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the minutes * @throws {TypeError} 1 argument required * * @example * // Get the minutes of 29 February 2012 11:45:05: * var result = getMinutes(new Date(2012, 1, 29, 11, 45, 5)) * //=> 45 */ function getMinutes(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var minutes = date.getMinutes(); return minutes; } /** * @name getHours * @category Hour Helpers * @summary Get the hours of the given date. * * @description * Get the hours of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the hours * @throws {TypeError} 1 argument required * * @example * // Get the hours of 29 February 2012 11:45:00: * var result = getHours(new Date(2012, 1, 29, 11, 45)) * //=> 11 */ function getHours(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var hours = date.getHours(); return hours; } /** * @name getDay * @category Weekday Helpers * @summary Get the day of the week of the given date. * * @description * Get the day of the week of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {0|1|2|3|4|5|6} the day of week, 0 represents Sunday * @throws {TypeError} 1 argument required * * @example * // Which day of the week is 29 February 2012? * var result = getDay(new Date(2012, 1, 29)) * //=> 3 */ function getDay(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var day = date.getDay(); return day; } /** * @name getDate * @category Day Helpers * @summary Get the day of the month of the given date. * * @description * Get the day of the month of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the day of month * @throws {TypeError} 1 argument required * * @example * // Which day of the month is 29 February 2012? * var result = getDate(new Date(2012, 1, 29)) * //=> 29 */ function getDate(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var dayOfMonth = date.getDate(); return dayOfMonth; } /** * @name startOfWeek * @category Week Helpers * @summary Return the start of a week for the given date. * * @description * Return the start of a week for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @param {Object} [options] - an object with options. * @param {Locale} [options.locale=defaultLocale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale} * @param {0|1|2|3|4|5|6} [options.weekStartsOn=0] - the index of the first day of the week (0 - Sunday) * @returns {Date} the start of a week * @throws {TypeError} 1 argument required * @throws {RangeError} `options.weekStartsOn` must be between 0 and 6 * * @example * // The start of a week for 2 September 2014 11:55:00: * var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0)) * //=> Sun Aug 31 2014 00:00:00 * * @example * // If the week starts on Monday, the start of the week for 2 September 2014 11:55:00: * var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) * //=> Mon Sep 01 2014 00:00:00 */ function startOfWeek(dirtyDate, dirtyOptions) { requiredArgs(1, arguments); var options = dirtyOptions || {}; var locale = options.locale; var localeWeekStartsOn = locale && locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn == null ? 0 : toInteger(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn == null ? defaultWeekStartsOn : toInteger(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } var date = toDate(dirtyDate); var day = date.getDay(); var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn; date.setDate(date.getDate() - diff); date.setHours(0, 0, 0, 0); return date; } /** * @name startOfISOWeek * @category ISO Week Helpers * @summary Return the start of an ISO week for the given date. * * @description * Return the start of an ISO week for the given date. * The result will be in the local timezone. * * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of an ISO week * @throws {TypeError} 1 argument required * * @example * // The start of an ISO week for 2 September 2014 11:55:00: * var result = startOfISOWeek(new Date(2014, 8, 2, 11, 55, 0)) * //=> Mon Sep 01 2014 00:00:00 */ function startOfISOWeek(dirtyDate) { requiredArgs(1, arguments); return startOfWeek(dirtyDate, { weekStartsOn: 1 }); } /** * @name getISOWeekYear * @category ISO Week-Numbering Year Helpers * @summary Get the ISO week-numbering year of the given date. * * @description * Get the ISO week-numbering year of the given date, * which always starts 3 days before the year's first Thursday. * * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - The function was renamed from `getISOYear` to `getISOWeekYear`. * "ISO week year" is short for [ISO week-numbering year](https://en.wikipedia.org/wiki/ISO_week_date). * This change makes the name consistent with * locale-dependent week-numbering year helpers, e.g., `getWeekYear`. * * @param {Date|Number} date - the given date * @returns {Number} the ISO week-numbering year * @throws {TypeError} 1 argument required * * @example * // Which ISO-week numbering year is 2 January 2005? * var result = getISOWeekYear(new Date(2005, 0, 2)) * //=> 2004 */ function getISOWeekYear(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var year = date.getFullYear(); var fourthOfJanuaryOfNextYear = new Date(0); fourthOfJanuaryOfNextYear.setFullYear(year + 1, 0, 4); fourthOfJanuaryOfNextYear.setHours(0, 0, 0, 0); var startOfNextYear = startOfISOWeek(fourthOfJanuaryOfNextYear); var fourthOfJanuaryOfThisYear = new Date(0); fourthOfJanuaryOfThisYear.setFullYear(year, 0, 4); fourthOfJanuaryOfThisYear.setHours(0, 0, 0, 0); var startOfThisYear = startOfISOWeek(fourthOfJanuaryOfThisYear); if (date.getTime() >= startOfNextYear.getTime()) { return year + 1; } else if (date.getTime() >= startOfThisYear.getTime()) { return year; } else { return year - 1; } } /** * @name startOfISOWeekYear * @category ISO Week-Numbering Year Helpers * @summary Return the start of an ISO week-numbering year for the given date. * * @description * Return the start of an ISO week-numbering year, * which always starts 3 days before the year's first Thursday. * The result will be in the local timezone. * * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of an ISO week-numbering year * @throws {TypeError} 1 argument required * * @example * // The start of an ISO week-numbering year for 2 July 2005: * var result = startOfISOWeekYear(new Date(2005, 6, 2)) * //=> Mon Jan 03 2005 00:00:00 */ function startOfISOWeekYear(dirtyDate) { requiredArgs(1, arguments); var year = getISOWeekYear(dirtyDate); var fourthOfJanuary = new Date(0); fourthOfJanuary.setFullYear(year, 0, 4); fourthOfJanuary.setHours(0, 0, 0, 0); var date = startOfISOWeek(fourthOfJanuary); return date; } var MILLISECONDS_IN_WEEK = 604800000; /** * @name getISOWeek * @category ISO Week Helpers * @summary Get the ISO week of the given date. * * @description * Get the ISO week of the given date. * * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the ISO week * @throws {TypeError} 1 argument required * * @example * // Which week of the ISO-week numbering year is 2 January 2005? * var result = getISOWeek(new Date(2005, 0, 2)) * //=> 53 */ function getISOWeek(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var diff = startOfISOWeek(date).getTime() - startOfISOWeekYear(date).getTime(); // Round the number of days to the nearest integer // because the number of milliseconds in a week is not constant // (e.g. it's different in the week of the daylight saving time clock shift) return Math.round(diff / MILLISECONDS_IN_WEEK) + 1; } /** * @name getMonth * @category Month Helpers * @summary Get the month of the given date. * * @description * Get the month of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the month * @throws {TypeError} 1 argument required * * @example * // Which month is 29 February 2012? * var result = getMonth(new Date(2012, 1, 29)) * //=> 1 */ function getMonth(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var month = date.getMonth(); return month; } /** * @name getQuarter * @category Quarter Helpers * @summary Get the year quarter of the given date. * * @description * Get the year quarter of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the quarter * @throws {TypeError} 1 argument required * * @example * // Which quarter is 2 July 2014? * var result = getQuarter(new Date(2014, 6, 2)) * //=> 3 */ function getQuarter(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var quarter = Math.floor(date.getMonth() / 3) + 1; return quarter; } /** * @name getYear * @category Year Helpers * @summary Get the year of the given date. * * @description * Get the year of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the year * @throws {TypeError} 1 argument required * * @example * // Which year is 2 July 2014? * var result = getYear(new Date(2014, 6, 2)) * //=> 2014 */ function getYear(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var year = date.getFullYear(); return year; } /** * @name getTime * @category Timestamp Helpers * @summary Get the milliseconds timestamp of the given date. * * @description * Get the milliseconds timestamp of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the timestamp * @throws {TypeError} 1 argument required * * @example * // Get the timestamp of 29 February 2012 11:45:05.123: * var result = getTime(new Date(2012, 1, 29, 11, 45, 5, 123)) * //=> 1330515905123 */ function getTime(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var timestamp = date.getTime(); return timestamp; } /** * @name setSeconds * @category Second Helpers * @summary Set the seconds to the given date. * * @description * Set the seconds to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} seconds - the seconds of the new date * @returns {Date} the new date with the seconds set * @throws {TypeError} 2 arguments required * * @example * // Set 45 seconds to 1 September 2014 11:30:40: * var result = setSeconds(new Date(2014, 8, 1, 11, 30, 40), 45) * //=> Mon Sep 01 2014 11:30:45 */ function setSeconds(dirtyDate, dirtySeconds) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var seconds = toInteger(dirtySeconds); date.setSeconds(seconds); return date; } /** * @name setMinutes * @category Minute Helpers * @summary Set the minutes to the given date. * * @description * Set the minutes to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} minutes - the minutes of the new date * @returns {Date} the new date with the minutes set * @throws {TypeError} 2 arguments required * * @example * // Set 45 minutes to 1 September 2014 11:30:40: * var result = setMinutes(new Date(2014, 8, 1, 11, 30, 40), 45) * //=> Mon Sep 01 2014 11:45:40 */ function setMinutes(dirtyDate, dirtyMinutes) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var minutes = toInteger(dirtyMinutes); date.setMinutes(minutes); return date; } /** * @name setHours * @category Hour Helpers * @summary Set the hours to the given date. * * @description * Set the hours to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} hours - the hours of the new date * @returns {Date} the new date with the hours set * @throws {TypeError} 2 arguments required * * @example * // Set 4 hours to 1 September 2014 11:30:00: * var result = setHours(new Date(2014, 8, 1, 11, 30), 4) * //=> Mon Sep 01 2014 04:30:00 */ function setHours(dirtyDate, dirtyHours) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var hours = toInteger(dirtyHours); date.setHours(hours); return date; } /** * @name getDaysInMonth * @category Month Helpers * @summary Get the number of days in a month of the given date. * * @description * Get the number of days in a month of the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the given date * @returns {Number} the number of days in a month * @throws {TypeError} 1 argument required * * @example * // How many days are in February 2000? * var result = getDaysInMonth(new Date(2000, 1)) * //=> 29 */ function getDaysInMonth(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var year = date.getFullYear(); var monthIndex = date.getMonth(); var lastDayOfMonth = new Date(0); lastDayOfMonth.setFullYear(year, monthIndex + 1, 0); lastDayOfMonth.setHours(0, 0, 0, 0); return lastDayOfMonth.getDate(); } /** * @name setMonth * @category Month Helpers * @summary Set the month to the given date. * * @description * Set the month to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} month - the month of the new date * @returns {Date} the new date with the month set * @throws {TypeError} 2 arguments required * * @example * // Set February to 1 September 2014: * var result = setMonth(new Date(2014, 8, 1), 1) * //=> Sat Feb 01 2014 00:00:00 */ function setMonth(dirtyDate, dirtyMonth) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var month = toInteger(dirtyMonth); var year = date.getFullYear(); var day = date.getDate(); var dateWithDesiredMonth = new Date(0); dateWithDesiredMonth.setFullYear(year, month, 15); dateWithDesiredMonth.setHours(0, 0, 0, 0); var daysInMonth = getDaysInMonth(dateWithDesiredMonth); // Set the last day of the new month // if the original date was the last day of the longer month date.setMonth(month, Math.min(day, daysInMonth)); return date; } /** * @name setQuarter * @category Quarter Helpers * @summary Set the year quarter to the given date. * * @description * Set the year quarter to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} quarter - the quarter of the new date * @returns {Date} the new date with the quarter set * @throws {TypeError} 2 arguments required * * @example * // Set the 2nd quarter to 2 July 2014: * var result = setQuarter(new Date(2014, 6, 2), 2) * //=> Wed Apr 02 2014 00:00:00 */ function setQuarter(dirtyDate, dirtyQuarter) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var quarter = toInteger(dirtyQuarter); var oldQuarter = Math.floor(date.getMonth() / 3) + 1; var diff = quarter - oldQuarter; return setMonth(date, date.getMonth() + diff * 3); } /** * @name setYear * @category Year Helpers * @summary Set the year to the given date. * * @description * Set the year to the given date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date to be changed * @param {Number} year - the year of the new date * @returns {Date} the new date with the year set * @throws {TypeError} 2 arguments required * * @example * // Set year 2013 to 1 September 2014: * var result = setYear(new Date(2014, 8, 1), 2013) * //=> Sun Sep 01 2013 00:00:00 */ function setYear(dirtyDate, dirtyYear) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var year = toInteger(dirtyYear); // Check if date is Invalid Date because Date.prototype.setFullYear ignores the value of Invalid Date if (isNaN(date)) { return new Date(NaN); } date.setFullYear(year); return date; } /** * @name min * @category Common Helpers * @summary Return the earliest of the given dates. * * @description * Return the earliest of the given dates. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - `min` function now accepts an array of dates rather than spread arguments. * * ```javascript * // Before v2.0.0 * var date1 = new Date(1989, 6, 10) * var date2 = new Date(1987, 1, 11) * var minDate = min(date1, date2) * * // v2.0.0 onward: * var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] * var minDate = min(dates) * ``` * * @param {Date[]|Number[]} datesArray - the dates to compare * @returns {Date} the earliest of the dates * @throws {TypeError} 1 argument required * * @example * // Which of these dates is the earliest? * var result = min([ * new Date(1989, 6, 10), * new Date(1987, 1, 11), * new Date(1995, 6, 2), * new Date(1990, 0, 1) * ]) * //=> Wed Feb 11 1987 00:00:00 */ function min$1(dirtyDatesArray) { requiredArgs(1, arguments); var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { datesArray = Array.prototype.slice.call(dirtyDatesArray); } else { // `dirtyDatesArray` is non-iterable, return Invalid Date return new Date(NaN); } var result; datesArray.forEach(function (dirtyDate) { var currentDate = toDate(dirtyDate); if (result === undefined || result > currentDate || isNaN(currentDate)) { result = currentDate; } }); return result || new Date(NaN); } /** * @name max * @category Common Helpers * @summary Return the latest of the given dates. * * @description * Return the latest of the given dates. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - `max` function now accepts an array of dates rather than spread arguments. * * ```javascript * // Before v2.0.0 * var date1 = new Date(1989, 6, 10) * var date2 = new Date(1987, 1, 11) * var maxDate = max(date1, date2) * * // v2.0.0 onward: * var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] * var maxDate = max(dates) * ``` * * @param {Date[]|Number[]} datesArray - the dates to compare * @returns {Date} the latest of the dates * @throws {TypeError} 1 argument required * * @example * // Which of these dates is the latest? * var result = max([ * new Date(1989, 6, 10), * new Date(1987, 1, 11), * new Date(1995, 6, 2), * new Date(1990, 0, 1) * ]) * //=> Sun Jul 02 1995 00:00:00 */ function max$1(dirtyDatesArray) { requiredArgs(1, arguments); var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { datesArray = Array.prototype.slice.call(dirtyDatesArray); } else { // `dirtyDatesArray` is non-iterable, return Invalid Date return new Date(NaN); } var result; datesArray.forEach(function (dirtyDate) { var currentDate = toDate(dirtyDate); if (result === undefined || result < currentDate || isNaN(currentDate)) { result = currentDate; } }); return result || new Date(NaN); } /** * @name startOfDay * @category Day Helpers * @summary Return the start of a day for the given date. * * @description * Return the start of a day for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of a day * @throws {TypeError} 1 argument required * * @example * // The start of a day for 2 September 2014 11:55:00: * var result = startOfDay(new Date(2014, 8, 2, 11, 55, 0)) * //=> Tue Sep 02 2014 00:00:00 */ function startOfDay(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); date.setHours(0, 0, 0, 0); return date; } var MILLISECONDS_IN_DAY = 86400000; /** * @name differenceInCalendarDays * @category Day Helpers * @summary Get the number of calendar days between the given dates. * * @description * Get the number of calendar days between the given dates. This means that the times are removed * from the dates and then the difference in days is calculated. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date * @returns {Number} the number of calendar days * @throws {TypeError} 2 arguments required * * @example * // How many calendar days are between * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00? * var result = differenceInCalendarDays( * new Date(2012, 6, 2, 0, 0), * new Date(2011, 6, 2, 23, 0) * ) * //=> 366 * // How many calendar days are between * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00? * var result = differenceInCalendarDays( * new Date(2011, 6, 3, 0, 1), * new Date(2011, 6, 2, 23, 59) * ) * //=> 1 */ function differenceInCalendarDays(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var startOfDayLeft = startOfDay(dirtyDateLeft); var startOfDayRight = startOfDay(dirtyDateRight); var timestampLeft = startOfDayLeft.getTime() - getTimezoneOffsetInMilliseconds(startOfDayLeft); var timestampRight = startOfDayRight.getTime() - getTimezoneOffsetInMilliseconds(startOfDayRight); // Round the number of days to the nearest integer // because the number of milliseconds in a day is not constant // (e.g. it's different in the day of the daylight saving time clock shift) return Math.round((timestampLeft - timestampRight) / MILLISECONDS_IN_DAY); } /** * @name differenceInCalendarMonths * @category Month Helpers * @summary Get the number of calendar months between the given dates. * * @description * Get the number of calendar months between the given dates. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date * @returns {Number} the number of calendar months * @throws {TypeError} 2 arguments required * * @example * // How many calendar months are between 31 January 2014 and 1 September 2014? * var result = differenceInCalendarMonths( * new Date(2014, 8, 1), * new Date(2014, 0, 31) * ) * //=> 8 */ function differenceInCalendarMonths(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeft = toDate(dirtyDateLeft); var dateRight = toDate(dirtyDateRight); var yearDiff = dateLeft.getFullYear() - dateRight.getFullYear(); var monthDiff = dateLeft.getMonth() - dateRight.getMonth(); return yearDiff * 12 + monthDiff; } /** * @name differenceInCalendarYears * @category Year Helpers * @summary Get the number of calendar years between the given dates. * * @description * Get the number of calendar years between the given dates. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date * @returns {Number} the number of calendar years * @throws {TypeError} 2 arguments required * * @example * // How many calendar years are between 31 December 2013 and 11 February 2015? * var result = differenceInCalendarYears( * new Date(2015, 1, 11), * new Date(2013, 11, 31) * ) * //=> 2 */ function differenceInCalendarYears(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeft = toDate(dirtyDateLeft); var dateRight = toDate(dirtyDateRight); return dateLeft.getFullYear() - dateRight.getFullYear(); } /** * @name startOfMonth * @category Month Helpers * @summary Return the start of a month for the given date. * * @description * Return the start of a month for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of a month * @throws {TypeError} 1 argument required * * @example * // The start of a month for 2 September 2014 11:55:00: * var result = startOfMonth(new Date(2014, 8, 2, 11, 55, 0)) * //=> Mon Sep 01 2014 00:00:00 */ function startOfMonth(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); date.setDate(1); date.setHours(0, 0, 0, 0); return date; } /** * @name startOfQuarter * @category Quarter Helpers * @summary Return the start of a year quarter for the given date. * * @description * Return the start of a year quarter for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of a quarter * @throws {TypeError} 1 argument required * * @example * // The start of a quarter for 2 September 2014 11:55:00: * var result = startOfQuarter(new Date(2014, 8, 2, 11, 55, 0)) * //=> Tue Jul 01 2014 00:00:00 */ function startOfQuarter(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); var currentMonth = date.getMonth(); var month = currentMonth - currentMonth % 3; date.setMonth(month, 1); date.setHours(0, 0, 0, 0); return date; } /** * @name startOfYear * @category Year Helpers * @summary Return the start of a year for the given date. * * @description * Return the start of a year for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the start of a year * @throws {TypeError} 1 argument required * * @example * // The start of a year for 2 September 2014 11:55:00: * var result = startOfYear(new Date(2014, 8, 2, 11, 55, 00)) * //=> Wed Jan 01 2014 00:00:00 */ function startOfYear(dirtyDate) { requiredArgs(1, arguments); var cleanDate = toDate(dirtyDate); var date = new Date(0); date.setFullYear(cleanDate.getFullYear(), 0, 1); date.setHours(0, 0, 0, 0); return date; } /** * @name endOfDay * @category Day Helpers * @summary Return the end of a day for the given date. * * @description * Return the end of a day for the given date. * The result will be in the local timezone. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the original date * @returns {Date} the end of a day * @throws {TypeError} 1 argument required * * @example * // The end of a day for 2 September 2014 11:55:00: * var result = endOfDay(new Date(2014, 8, 2, 11, 55, 0)) * //=> Tue Sep 02 2014 23:59:59.999 */ function endOfDay(dirtyDate) { requiredArgs(1, arguments); var date = toDate(dirtyDate); date.setHours(23, 59, 59, 999); return date; } /** * @name isEqual * @category Common Helpers * @summary Are the given dates equal? * * @description * Are the given dates equal? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the first date to compare * @param {Date|Number} dateRight - the second date to compare * @returns {Boolean} the dates are equal * @throws {TypeError} 2 arguments required * * @example * // Are 2 July 2014 06:30:45.000 and 2 July 2014 06:30:45.500 equal? * var result = isEqual( * new Date(2014, 6, 2, 6, 30, 45, 0), * new Date(2014, 6, 2, 6, 30, 45, 500) * ) * //=> false */ function isEqual$1(dirtyLeftDate, dirtyRightDate) { requiredArgs(2, arguments); var dateLeft = toDate(dirtyLeftDate); var dateRight = toDate(dirtyRightDate); return dateLeft.getTime() === dateRight.getTime(); } /** * @name isSameDay * @category Day Helpers * @summary Are the given dates in the same day? * * @description * Are the given dates in the same day? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the first date to check * @param {Date|Number} dateRight - the second date to check * @returns {Boolean} the dates are in the same day * @throws {TypeError} 2 arguments required * * @example * // Are 4 September 06:00:00 and 4 September 18:00:00 in the same day? * var result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0)) * //=> true */ function isSameDay(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeftStartOfDay = startOfDay(dirtyDateLeft); var dateRightStartOfDay = startOfDay(dirtyDateRight); return dateLeftStartOfDay.getTime() === dateRightStartOfDay.getTime(); } /** * @name isSameMonth * @category Month Helpers * @summary Are the given dates in the same month? * * @description * Are the given dates in the same month? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the first date to check * @param {Date|Number} dateRight - the second date to check * @returns {Boolean} the dates are in the same month * @throws {TypeError} 2 arguments required * * @example * // Are 2 September 2014 and 25 September 2014 in the same month? * var result = isSameMonth(new Date(2014, 8, 2), new Date(2014, 8, 25)) * //=> true */ function isSameMonth(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeft = toDate(dirtyDateLeft); var dateRight = toDate(dirtyDateRight); return dateLeft.getFullYear() === dateRight.getFullYear() && dateLeft.getMonth() === dateRight.getMonth(); } /** * @name isSameYear * @category Year Helpers * @summary Are the given dates in the same year? * * @description * Are the given dates in the same year? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the first date to check * @param {Date|Number} dateRight - the second date to check * @returns {Boolean} the dates are in the same year * @throws {TypeError} 2 arguments required * * @example * // Are 2 September 2014 and 25 September 2014 in the same year? * var result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25)) * //=> true */ function isSameYear(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeft = toDate(dirtyDateLeft); var dateRight = toDate(dirtyDateRight); return dateLeft.getFullYear() === dateRight.getFullYear(); } /** * @name isSameQuarter * @category Quarter Helpers * @summary Are the given dates in the same year quarter? * * @description * Are the given dates in the same year quarter? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} dateLeft - the first date to check * @param {Date|Number} dateRight - the second date to check * @returns {Boolean} the dates are in the same quarter * @throws {TypeError} 2 arguments required * * @example * // Are 1 January 2014 and 8 March 2014 in the same quarter? * var result = isSameQuarter(new Date(2014, 0, 1), new Date(2014, 2, 8)) * //=> true */ function isSameQuarter(dirtyDateLeft, dirtyDateRight) { requiredArgs(2, arguments); var dateLeftStartOfQuarter = startOfQuarter(dirtyDateLeft); var dateRightStartOfQuarter = startOfQuarter(dirtyDateRight); return dateLeftStartOfQuarter.getTime() === dateRightStartOfQuarter.getTime(); } /** * @name isAfter * @category Common Helpers * @summary Is the first date after the second one? * * @description * Is the first date after the second one? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date that should be after the other one to return true * @param {Date|Number} dateToCompare - the date to compare with * @returns {Boolean} the first date is after the second date * @throws {TypeError} 2 arguments required * * @example * // Is 10 July 1989 after 11 February 1987? * var result = isAfter(new Date(1989, 6, 10), new Date(1987, 1, 11)) * //=> true */ function isAfter(dirtyDate, dirtyDateToCompare) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var dateToCompare = toDate(dirtyDateToCompare); return date.getTime() > dateToCompare.getTime(); } /** * @name isBefore * @category Common Helpers * @summary Is the first date before the second one? * * @description * Is the first date before the second one? * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * @param {Date|Number} date - the date that should be before the other one to return true * @param {Date|Number} dateToCompare - the date to compare with * @returns {Boolean} the first date is before the second date * @throws {TypeError} 2 arguments required * * @example * // Is 10 July 1989 before 11 February 1987? * var result = isBefore(new Date(1989, 6, 10), new Date(1987, 1, 11)) * //=> false */ function isBefore(dirtyDate, dirtyDateToCompare) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var dateToCompare = toDate(dirtyDateToCompare); return date.getTime() < dateToCompare.getTime(); } /** * @name isWithinInterval * @category Interval Helpers * @summary Is the given date within the interval? * * @description * Is the given date within the interval? (Including start and end.) * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - The function was renamed from `isWithinRange` to `isWithinInterval`. * This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology: * * ``` * 2.1.3 * time interval * part of the time axis limited by two instants * ``` * * Also, this function now accepts an object with `start` and `end` properties * instead of two arguments as an interval. * This function now throws `RangeError` if the start of the interval is after its end * or if any date in the interval is `Invalid Date`. * * ```javascript * // Before v2.0.0 * * isWithinRange( * new Date(2014, 0, 3), * new Date(2014, 0, 1), new Date(2014, 0, 7) * ) * * // v2.0.0 onward * * isWithinInterval( * new Date(2014, 0, 3), * { start: new Date(2014, 0, 1), end: new Date(2014, 0, 7) } * ) * ``` * * @param {Date|Number} date - the date to check * @param {Interval} interval - the interval to check * @returns {Boolean} the date is within the interval * @throws {TypeError} 2 arguments required * @throws {RangeError} The start of an interval cannot be after its end * @throws {RangeError} Date in interval cannot be `Invalid Date` * * @example * // For the date within the interval: * isWithinInterval(new Date(2014, 0, 3), { * start: new Date(2014, 0, 1), * end: new Date(2014, 0, 7) * }) * //=> true * * @example * // For the date outside of the interval: * isWithinInterval(new Date(2014, 0, 10), { * start: new Date(2014, 0, 1), * end: new Date(2014, 0, 7) * }) * //=> false * * @example * // For date equal to interval start: * isWithinInterval(date, { start, end: date }) // => true * * @example * // For date equal to interval end: * isWithinInterval(date, { start: date, end }) // => true */ function isWithinInterval(dirtyDate, dirtyInterval) { requiredArgs(2, arguments); var interval = dirtyInterval || {}; var time = toDate(dirtyDate).getTime(); var startTime = toDate(interval.start).getTime(); var endTime = toDate(interval.end).getTime(); // Throw an exception if start date is after end date or if any date is `Invalid Date` if (!(startTime <= endTime)) { throw new RangeError('Invalid interval'); } return time >= startTime && time <= endTime; } function assign(target, dirtyObject) { if (target == null) { throw new TypeError('assign requires that input parameter not be null or undefined'); } dirtyObject = dirtyObject || {}; for (var property in dirtyObject) { if (dirtyObject.hasOwnProperty(property)) { target[property] = dirtyObject[property]; } } return target; } // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCDay(dirtyDate, dirtyDay, dirtyOptions) { requiredArgs(2, arguments); var options = dirtyOptions || {}; var locale = options.locale; var localeWeekStartsOn = locale && locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn == null ? 0 : toInteger(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn == null ? defaultWeekStartsOn : toInteger(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } var date = toDate(dirtyDate); var day = toInteger(dirtyDay); var currentDay = date.getUTCDay(); var remainder = day % 7; var dayIndex = (remainder + 7) % 7; var diff = (dayIndex < weekStartsOn ? 7 : 0) + day - currentDay; date.setUTCDate(date.getUTCDate() + diff); return date; } // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCISODay(dirtyDate, dirtyDay) { requiredArgs(2, arguments); var day = toInteger(dirtyDay); if (day % 7 === 0) { day = day - 7; } var weekStartsOn = 1; var date = toDate(dirtyDate); var currentDay = date.getUTCDay(); var remainder = day % 7; var dayIndex = (remainder + 7) % 7; var diff = (dayIndex < weekStartsOn ? 7 : 0) + day - currentDay; date.setUTCDate(date.getUTCDate() + diff); return date; } // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCISOWeek(dirtyDate, dirtyISOWeek) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var isoWeek = toInteger(dirtyISOWeek); var diff = getUTCISOWeek(date) - isoWeek; date.setUTCDate(date.getUTCDate() - diff * 7); return date; } // See issue: https://github.com/date-fns/date-fns/issues/376 function setUTCWeek(dirtyDate, dirtyWeek, options) { requiredArgs(2, arguments); var date = toDate(dirtyDate); var week = toInteger(dirtyWeek); var diff = getUTCWeek(date, options) - week; date.setUTCDate(date.getUTCDate() - diff * 7); return date; } var MILLISECONDS_IN_HOUR$1 = 3600000; var MILLISECONDS_IN_MINUTE$1 = 60000; var MILLISECONDS_IN_SECOND = 1000; var numericPatterns = { month: /^(1[0-2]|0?\d)/, // 0 to 12 date: /^(3[0-1]|[0-2]?\d)/, // 0 to 31 dayOfYear: /^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/, // 0 to 366 week: /^(5[0-3]|[0-4]?\d)/, // 0 to 53 hour23h: /^(2[0-3]|[0-1]?\d)/, // 0 to 23 hour24h: /^(2[0-4]|[0-1]?\d)/, // 0 to 24 hour11h: /^(1[0-1]|0?\d)/, // 0 to 11 hour12h: /^(1[0-2]|0?\d)/, // 0 to 12 minute: /^[0-5]?\d/, // 0 to 59 second: /^[0-5]?\d/, // 0 to 59 singleDigit: /^\d/, // 0 to 9 twoDigits: /^\d{1,2}/, // 0 to 99 threeDigits: /^\d{1,3}/, // 0 to 999 fourDigits: /^\d{1,4}/, // 0 to 9999 anyDigitsSigned: /^-?\d+/, singleDigitSigned: /^-?\d/, // 0 to 9, -0 to -9 twoDigitsSigned: /^-?\d{1,2}/, // 0 to 99, -0 to -99 threeDigitsSigned: /^-?\d{1,3}/, // 0 to 999, -0 to -999 fourDigitsSigned: /^-?\d{1,4}/ // 0 to 9999, -0 to -9999 }; var timezonePatterns = { basicOptionalMinutes: /^([+-])(\d{2})(\d{2})?|Z/, basic: /^([+-])(\d{2})(\d{2})|Z/, basicOptionalSeconds: /^([+-])(\d{2})(\d{2})((\d{2}))?|Z/, extended: /^([+-])(\d{2}):(\d{2})|Z/, extendedOptionalSeconds: /^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/ }; function parseNumericPattern(pattern, string, valueCallback) { var matchResult = string.match(pattern); if (!matchResult) { return null; } var value = parseInt(matchResult[0], 10); return { value: valueCallback ? valueCallback(value) : value, rest: string.slice(matchResult[0].length) }; } function parseTimezonePattern(pattern, string) { var matchResult = string.match(pattern); if (!matchResult) { return null; } // Input is 'Z' if (matchResult[0] === 'Z') { return { value: 0, rest: string.slice(1) }; } var sign = matchResult[1] === '+' ? 1 : -1; var hours = matchResult[2] ? parseInt(matchResult[2], 10) : 0; var minutes = matchResult[3] ? parseInt(matchResult[3], 10) : 0; var seconds = matchResult[5] ? parseInt(matchResult[5], 10) : 0; return { value: sign * (hours * MILLISECONDS_IN_HOUR$1 + minutes * MILLISECONDS_IN_MINUTE$1 + seconds * MILLISECONDS_IN_SECOND), rest: string.slice(matchResult[0].length) }; } function parseAnyDigitsSigned(string, valueCallback) { return parseNumericPattern(numericPatterns.anyDigitsSigned, string, valueCallback); } function parseNDigits(n, string, valueCallback) { switch (n) { case 1: return parseNumericPattern(numericPatterns.singleDigit, string, valueCallback); case 2: return parseNumericPattern(numericPatterns.twoDigits, string, valueCallback); case 3: return parseNumericPattern(numericPatterns.threeDigits, string, valueCallback); case 4: return parseNumericPattern(numericPatterns.fourDigits, string, valueCallback); default: return parseNumericPattern(new RegExp('^\\d{1,' + n + '}'), string, valueCallback); } } function parseNDigitsSigned(n, string, valueCallback) { switch (n) { case 1: return parseNumericPattern(numericPatterns.singleDigitSigned, string, valueCallback); case 2: return parseNumericPattern(numericPatterns.twoDigitsSigned, string, valueCallback); case 3: return parseNumericPattern(numericPatterns.threeDigitsSigned, string, valueCallback); case 4: return parseNumericPattern(numericPatterns.fourDigitsSigned, string, valueCallback); default: return parseNumericPattern(new RegExp('^-?\\d{1,' + n + '}'), string, valueCallback); } } function dayPeriodEnumToHours(enumValue) { switch (enumValue) { case 'morning': return 4; case 'evening': return 17; case 'pm': case 'noon': case 'afternoon': return 12; case 'am': case 'midnight': case 'night': default: return 0; } } function normalizeTwoDigitYear(twoDigitYear, currentYear) { var isCommonEra = currentYear > 0; // Absolute number of the current year: // 1 -> 1 AC // 0 -> 1 BC // -1 -> 2 BC var absCurrentYear = isCommonEra ? currentYear : 1 - currentYear; var result; if (absCurrentYear <= 50) { result = twoDigitYear || 100; } else { var rangeEnd = absCurrentYear + 50; var rangeEndCentury = Math.floor(rangeEnd / 100) * 100; var isPreviousCentury = twoDigitYear >= rangeEnd % 100; result = twoDigitYear + rangeEndCentury - (isPreviousCentury ? 100 : 0); } return isCommonEra ? result : 1 - result; } var DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; var DAYS_IN_MONTH_LEAP_YEAR = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; // User for validation function isLeapYearIndex$1(year) { return year % 400 === 0 || year % 4 === 0 && year % 100 !== 0; } /* * | | Unit | | Unit | * |-----|--------------------------------|-----|--------------------------------| * | a | AM, PM | A* | Milliseconds in day | * | b | AM, PM, noon, midnight | B | Flexible day period | * | c | Stand-alone local day of week | C* | Localized hour w/ day period | * | d | Day of month | D | Day of year | * | e | Local day of week | E | Day of week | * | f | | F* | Day of week in month | * | g* | Modified Julian day | G | Era | * | h | Hour [1-12] | H | Hour [0-23] | * | i! | ISO day of week | I! | ISO week of year | * | j* | Localized hour w/ day period | J* | Localized hour w/o day period | * | k | Hour [1-24] | K | Hour [0-11] | * | l* | (deprecated) | L | Stand-alone month | * | m | Minute | M | Month | * | n | | N | | * | o! | Ordinal number modifier | O* | Timezone (GMT) | * | p | | P | | * | q | Stand-alone quarter | Q | Quarter | * | r* | Related Gregorian year | R! | ISO week-numbering year | * | s | Second | S | Fraction of second | * | t! | Seconds timestamp | T! | Milliseconds timestamp | * | u | Extended year | U* | Cyclic year | * | v* | Timezone (generic non-locat.) | V* | Timezone (location) | * | w | Local week of year | W* | Week of month | * | x | Timezone (ISO-8601 w/o Z) | X | Timezone (ISO-8601) | * | y | Year (abs) | Y | Local week-numbering year | * | z* | Timezone (specific non-locat.) | Z* | Timezone (aliases) | * * Letters marked by * are not implemented but reserved by Unicode standard. * * Letters marked by ! are non-standard, but implemented by date-fns: * - `o` modifies the previous token to turn it into an ordinal (see `parse` docs) * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days, * i.e. 7 for Sunday, 1 for Monday, etc. * - `I` is ISO week of year, as opposed to `w` which is local week of year. * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year. * `R` is supposed to be used in conjunction with `I` and `i` * for universal ISO week-numbering date, whereas * `Y` is supposed to be used in conjunction with `w` and `e` * for week-numbering date specific to the locale. */ var parsers = { // Era G: { priority: 140, parse: function (string, token, match, _options) { switch (token) { // AD, BC case 'G': case 'GG': case 'GGG': return match.era(string, { width: 'abbreviated' }) || match.era(string, { width: 'narrow' }); // A, B case 'GGGGG': return match.era(string, { width: 'narrow' }); // Anno Domini, Before Christ case 'GGGG': default: return match.era(string, { width: 'wide' }) || match.era(string, { width: 'abbreviated' }) || match.era(string, { width: 'narrow' }); } }, set: function (date, flags, value, _options) { flags.era = value; date.setUTCFullYear(value, 0, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['R', 'u', 't', 'T'] }, // Year y: { // From http://www.unicode.org/reports/tr35/tr35-31/tr35-dates.html#Date_Format_Patterns // | Year | y | yy | yyy | yyyy | yyyyy | // |----------|-------|----|-------|-------|-------| // | AD 1 | 1 | 01 | 001 | 0001 | 00001 | // | AD 12 | 12 | 12 | 012 | 0012 | 00012 | // | AD 123 | 123 | 23 | 123 | 0123 | 00123 | // | AD 1234 | 1234 | 34 | 1234 | 1234 | 01234 | // | AD 12345 | 12345 | 45 | 12345 | 12345 | 12345 | priority: 130, parse: function (string, token, match, _options) { var valueCallback = function (year) { return { year: year, isTwoDigitYear: token === 'yy' }; }; switch (token) { case 'y': return parseNDigits(4, string, valueCallback); case 'yo': return match.ordinalNumber(string, { unit: 'year', valueCallback: valueCallback }); default: return parseNDigits(token.length, string, valueCallback); } }, validate: function (_date, value, _options) { return value.isTwoDigitYear || value.year > 0; }, set: function (date, flags, value, _options) { var currentYear = date.getUTCFullYear(); if (value.isTwoDigitYear) { var normalizedTwoDigitYear = normalizeTwoDigitYear(value.year, currentYear); date.setUTCFullYear(normalizedTwoDigitYear, 0, 1); date.setUTCHours(0, 0, 0, 0); return date; } var year = !('era' in flags) || flags.era === 1 ? value.year : 1 - value.year; date.setUTCFullYear(year, 0, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'u', 'w', 'I', 'i', 'e', 'c', 't', 'T'] }, // Local week-numbering year Y: { priority: 130, parse: function (string, token, match, _options) { var valueCallback = function (year) { return { year: year, isTwoDigitYear: token === 'YY' }; }; switch (token) { case 'Y': return parseNDigits(4, string, valueCallback); case 'Yo': return match.ordinalNumber(string, { unit: 'year', valueCallback: valueCallback }); default: return parseNDigits(token.length, string, valueCallback); } }, validate: function (_date, value, _options) { return value.isTwoDigitYear || value.year > 0; }, set: function (date, flags, value, options) { var currentYear = getUTCWeekYear(date, options); if (value.isTwoDigitYear) { var normalizedTwoDigitYear = normalizeTwoDigitYear(value.year, currentYear); date.setUTCFullYear(normalizedTwoDigitYear, 0, options.firstWeekContainsDate); date.setUTCHours(0, 0, 0, 0); return startOfUTCWeek(date, options); } var year = !('era' in flags) || flags.era === 1 ? value.year : 1 - value.year; date.setUTCFullYear(year, 0, options.firstWeekContainsDate); date.setUTCHours(0, 0, 0, 0); return startOfUTCWeek(date, options); }, incompatibleTokens: ['y', 'R', 'u', 'Q', 'q', 'M', 'L', 'I', 'd', 'D', 'i', 't', 'T'] }, // ISO week-numbering year R: { priority: 130, parse: function (string, token, _match, _options) { if (token === 'R') { return parseNDigitsSigned(4, string); } return parseNDigitsSigned(token.length, string); }, set: function (_date, _flags, value, _options) { var firstWeekOfYear = new Date(0); firstWeekOfYear.setUTCFullYear(value, 0, 4); firstWeekOfYear.setUTCHours(0, 0, 0, 0); return startOfUTCISOWeek(firstWeekOfYear); }, incompatibleTokens: ['G', 'y', 'Y', 'u', 'Q', 'q', 'M', 'L', 'w', 'd', 'D', 'e', 'c', 't', 'T'] }, // Extended year u: { priority: 130, parse: function (string, token, _match, _options) { if (token === 'u') { return parseNDigitsSigned(4, string); } return parseNDigitsSigned(token.length, string); }, set: function (date, _flags, value, _options) { date.setUTCFullYear(value, 0, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['G', 'y', 'Y', 'R', 'w', 'I', 'i', 'e', 'c', 't', 'T'] }, // Quarter Q: { priority: 120, parse: function (string, token, match, _options) { switch (token) { // 1, 2, 3, 4 case 'Q': case 'QQ': // 01, 02, 03, 04 return parseNDigits(token.length, string); // 1st, 2nd, 3rd, 4th case 'Qo': return match.ordinalNumber(string, { unit: 'quarter' }); // Q1, Q2, Q3, Q4 case 'QQQ': return match.quarter(string, { width: 'abbreviated', context: 'formatting' }) || match.quarter(string, { width: 'narrow', context: 'formatting' }); // 1, 2, 3, 4 (narrow quarter; could be not numerical) case 'QQQQQ': return match.quarter(string, { width: 'narrow', context: 'formatting' }); // 1st quarter, 2nd quarter, ... case 'QQQQ': default: return match.quarter(string, { width: 'wide', context: 'formatting' }) || match.quarter(string, { width: 'abbreviated', context: 'formatting' }) || match.quarter(string, { width: 'narrow', context: 'formatting' }); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 4; }, set: function (date, _flags, value, _options) { date.setUTCMonth((value - 1) * 3, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'q', 'M', 'L', 'w', 'I', 'd', 'D', 'i', 'e', 'c', 't', 'T'] }, // Stand-alone quarter q: { priority: 120, parse: function (string, token, match, _options) { switch (token) { // 1, 2, 3, 4 case 'q': case 'qq': // 01, 02, 03, 04 return parseNDigits(token.length, string); // 1st, 2nd, 3rd, 4th case 'qo': return match.ordinalNumber(string, { unit: 'quarter' }); // Q1, Q2, Q3, Q4 case 'qqq': return match.quarter(string, { width: 'abbreviated', context: 'standalone' }) || match.quarter(string, { width: 'narrow', context: 'standalone' }); // 1, 2, 3, 4 (narrow quarter; could be not numerical) case 'qqqqq': return match.quarter(string, { width: 'narrow', context: 'standalone' }); // 1st quarter, 2nd quarter, ... case 'qqqq': default: return match.quarter(string, { width: 'wide', context: 'standalone' }) || match.quarter(string, { width: 'abbreviated', context: 'standalone' }) || match.quarter(string, { width: 'narrow', context: 'standalone' }); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 4; }, set: function (date, _flags, value, _options) { date.setUTCMonth((value - 1) * 3, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'Q', 'M', 'L', 'w', 'I', 'd', 'D', 'i', 'e', 'c', 't', 'T'] }, // Month M: { priority: 110, parse: function (string, token, match, _options) { var valueCallback = function (value) { return value - 1; }; switch (token) { // 1, 2, ..., 12 case 'M': return parseNumericPattern(numericPatterns.month, string, valueCallback); // 01, 02, ..., 12 case 'MM': return parseNDigits(2, string, valueCallback); // 1st, 2nd, ..., 12th case 'Mo': return match.ordinalNumber(string, { unit: 'month', valueCallback: valueCallback }); // Jan, Feb, ..., Dec case 'MMM': return match.month(string, { width: 'abbreviated', context: 'formatting' }) || match.month(string, { width: 'narrow', context: 'formatting' }); // J, F, ..., D case 'MMMMM': return match.month(string, { width: 'narrow', context: 'formatting' }); // January, February, ..., December case 'MMMM': default: return match.month(string, { width: 'wide', context: 'formatting' }) || match.month(string, { width: 'abbreviated', context: 'formatting' }) || match.month(string, { width: 'narrow', context: 'formatting' }); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 11; }, set: function (date, _flags, value, _options) { date.setUTCMonth(value, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'q', 'Q', 'L', 'w', 'I', 'D', 'i', 'e', 'c', 't', 'T'] }, // Stand-alone month L: { priority: 110, parse: function (string, token, match, _options) { var valueCallback = function (value) { return value - 1; }; switch (token) { // 1, 2, ..., 12 case 'L': return parseNumericPattern(numericPatterns.month, string, valueCallback); // 01, 02, ..., 12 case 'LL': return parseNDigits(2, string, valueCallback); // 1st, 2nd, ..., 12th case 'Lo': return match.ordinalNumber(string, { unit: 'month', valueCallback: valueCallback }); // Jan, Feb, ..., Dec case 'LLL': return match.month(string, { width: 'abbreviated', context: 'standalone' }) || match.month(string, { width: 'narrow', context: 'standalone' }); // J, F, ..., D case 'LLLLL': return match.month(string, { width: 'narrow', context: 'standalone' }); // January, February, ..., December case 'LLLL': default: return match.month(string, { width: 'wide', context: 'standalone' }) || match.month(string, { width: 'abbreviated', context: 'standalone' }) || match.month(string, { width: 'narrow', context: 'standalone' }); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 11; }, set: function (date, _flags, value, _options) { date.setUTCMonth(value, 1); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'q', 'Q', 'M', 'w', 'I', 'D', 'i', 'e', 'c', 't', 'T'] }, // Local week of year w: { priority: 100, parse: function (string, token, match, _options) { switch (token) { case 'w': return parseNumericPattern(numericPatterns.week, string); case 'wo': return match.ordinalNumber(string, { unit: 'week' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 53; }, set: function (date, _flags, value, options) { return startOfUTCWeek(setUTCWeek(date, value, options), options); }, incompatibleTokens: ['y', 'R', 'u', 'q', 'Q', 'M', 'L', 'I', 'd', 'D', 'i', 't', 'T'] }, // ISO week of year I: { priority: 100, parse: function (string, token, match, _options) { switch (token) { case 'I': return parseNumericPattern(numericPatterns.week, string); case 'Io': return match.ordinalNumber(string, { unit: 'week' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 53; }, set: function (date, _flags, value, options) { return startOfUTCISOWeek(setUTCISOWeek(date, value, options), options); }, incompatibleTokens: ['y', 'Y', 'u', 'q', 'Q', 'M', 'L', 'w', 'd', 'D', 'e', 'c', 't', 'T'] }, // Day of the month d: { priority: 90, subPriority: 1, parse: function (string, token, match, _options) { switch (token) { case 'd': return parseNumericPattern(numericPatterns.date, string); case 'do': return match.ordinalNumber(string, { unit: 'date' }); default: return parseNDigits(token.length, string); } }, validate: function (date, value, _options) { var year = date.getUTCFullYear(); var isLeapYear = isLeapYearIndex$1(year); var month = date.getUTCMonth(); if (isLeapYear) { return value >= 1 && value <= DAYS_IN_MONTH_LEAP_YEAR[month]; } else { return value >= 1 && value <= DAYS_IN_MONTH[month]; } }, set: function (date, _flags, value, _options) { date.setUTCDate(value); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'q', 'Q', 'w', 'I', 'D', 'i', 'e', 'c', 't', 'T'] }, // Day of year D: { priority: 90, subPriority: 1, parse: function (string, token, match, _options) { switch (token) { case 'D': case 'DD': return parseNumericPattern(numericPatterns.dayOfYear, string); case 'Do': return match.ordinalNumber(string, { unit: 'date' }); default: return parseNDigits(token.length, string); } }, validate: function (date, value, _options) { var year = date.getUTCFullYear(); var isLeapYear = isLeapYearIndex$1(year); if (isLeapYear) { return value >= 1 && value <= 366; } else { return value >= 1 && value <= 365; } }, set: function (date, _flags, value, _options) { date.setUTCMonth(0, value); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['Y', 'R', 'q', 'Q', 'M', 'L', 'w', 'I', 'd', 'E', 'i', 'e', 'c', 't', 'T'] }, // Day of week E: { priority: 90, parse: function (string, token, match, _options) { switch (token) { // Tue case 'E': case 'EE': case 'EEE': return match.day(string, { width: 'abbreviated', context: 'formatting' }) || match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); // T case 'EEEEE': return match.day(string, { width: 'narrow', context: 'formatting' }); // Tu case 'EEEEEE': return match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); // Tuesday case 'EEEE': default: return match.day(string, { width: 'wide', context: 'formatting' }) || match.day(string, { width: 'abbreviated', context: 'formatting' }) || match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 6; }, set: function (date, _flags, value, options) { date = setUTCDay(date, value, options); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['D', 'i', 'e', 'c', 't', 'T'] }, // Local day of week e: { priority: 90, parse: function (string, token, match, options) { var valueCallback = function (value) { var wholeWeekDays = Math.floor((value - 1) / 7) * 7; return (value + options.weekStartsOn + 6) % 7 + wholeWeekDays; }; switch (token) { // 3 case 'e': case 'ee': // 03 return parseNDigits(token.length, string, valueCallback); // 3rd case 'eo': return match.ordinalNumber(string, { unit: 'day', valueCallback: valueCallback }); // Tue case 'eee': return match.day(string, { width: 'abbreviated', context: 'formatting' }) || match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); // T case 'eeeee': return match.day(string, { width: 'narrow', context: 'formatting' }); // Tu case 'eeeeee': return match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); // Tuesday case 'eeee': default: return match.day(string, { width: 'wide', context: 'formatting' }) || match.day(string, { width: 'abbreviated', context: 'formatting' }) || match.day(string, { width: 'short', context: 'formatting' }) || match.day(string, { width: 'narrow', context: 'formatting' }); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 6; }, set: function (date, _flags, value, options) { date = setUTCDay(date, value, options); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['y', 'R', 'u', 'q', 'Q', 'M', 'L', 'I', 'd', 'D', 'E', 'i', 'c', 't', 'T'] }, // Stand-alone local day of week c: { priority: 90, parse: function (string, token, match, options) { var valueCallback = function (value) { var wholeWeekDays = Math.floor((value - 1) / 7) * 7; return (value + options.weekStartsOn + 6) % 7 + wholeWeekDays; }; switch (token) { // 3 case 'c': case 'cc': // 03 return parseNDigits(token.length, string, valueCallback); // 3rd case 'co': return match.ordinalNumber(string, { unit: 'day', valueCallback: valueCallback }); // Tue case 'ccc': return match.day(string, { width: 'abbreviated', context: 'standalone' }) || match.day(string, { width: 'short', context: 'standalone' }) || match.day(string, { width: 'narrow', context: 'standalone' }); // T case 'ccccc': return match.day(string, { width: 'narrow', context: 'standalone' }); // Tu case 'cccccc': return match.day(string, { width: 'short', context: 'standalone' }) || match.day(string, { width: 'narrow', context: 'standalone' }); // Tuesday case 'cccc': default: return match.day(string, { width: 'wide', context: 'standalone' }) || match.day(string, { width: 'abbreviated', context: 'standalone' }) || match.day(string, { width: 'short', context: 'standalone' }) || match.day(string, { width: 'narrow', context: 'standalone' }); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 6; }, set: function (date, _flags, value, options) { date = setUTCDay(date, value, options); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['y', 'R', 'u', 'q', 'Q', 'M', 'L', 'I', 'd', 'D', 'E', 'i', 'e', 't', 'T'] }, // ISO day of week i: { priority: 90, parse: function (string, token, match, _options) { var valueCallback = function (value) { if (value === 0) { return 7; } return value; }; switch (token) { // 2 case 'i': case 'ii': // 02 return parseNDigits(token.length, string); // 2nd case 'io': return match.ordinalNumber(string, { unit: 'day' }); // Tue case 'iii': return match.day(string, { width: 'abbreviated', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'short', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'narrow', context: 'formatting', valueCallback: valueCallback }); // T case 'iiiii': return match.day(string, { width: 'narrow', context: 'formatting', valueCallback: valueCallback }); // Tu case 'iiiiii': return match.day(string, { width: 'short', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'narrow', context: 'formatting', valueCallback: valueCallback }); // Tuesday case 'iiii': default: return match.day(string, { width: 'wide', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'abbreviated', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'short', context: 'formatting', valueCallback: valueCallback }) || match.day(string, { width: 'narrow', context: 'formatting', valueCallback: valueCallback }); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 7; }, set: function (date, _flags, value, options) { date = setUTCISODay(date, value, options); date.setUTCHours(0, 0, 0, 0); return date; }, incompatibleTokens: ['y', 'Y', 'u', 'q', 'Q', 'M', 'L', 'w', 'd', 'D', 'E', 'e', 'c', 't', 'T'] }, // AM or PM a: { priority: 80, parse: function (string, token, match, _options) { switch (token) { case 'a': case 'aa': case 'aaa': return match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'aaaaa': return match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'aaaa': default: return match.dayPeriod(string, { width: 'wide', context: 'formatting' }) || match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); } }, set: function (date, _flags, value, _options) { date.setUTCHours(dayPeriodEnumToHours(value), 0, 0, 0); return date; }, incompatibleTokens: ['b', 'B', 'H', 'K', 'k', 't', 'T'] }, // AM, PM, midnight b: { priority: 80, parse: function (string, token, match, _options) { switch (token) { case 'b': case 'bb': case 'bbb': return match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'bbbbb': return match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'bbbb': default: return match.dayPeriod(string, { width: 'wide', context: 'formatting' }) || match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); } }, set: function (date, _flags, value, _options) { date.setUTCHours(dayPeriodEnumToHours(value), 0, 0, 0); return date; }, incompatibleTokens: ['a', 'B', 'H', 'K', 'k', 't', 'T'] }, // in the morning, in the afternoon, in the evening, at night B: { priority: 80, parse: function (string, token, match, _options) { switch (token) { case 'B': case 'BB': case 'BBB': return match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'BBBBB': return match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); case 'BBBB': default: return match.dayPeriod(string, { width: 'wide', context: 'formatting' }) || match.dayPeriod(string, { width: 'abbreviated', context: 'formatting' }) || match.dayPeriod(string, { width: 'narrow', context: 'formatting' }); } }, set: function (date, _flags, value, _options) { date.setUTCHours(dayPeriodEnumToHours(value), 0, 0, 0); return date; }, incompatibleTokens: ['a', 'b', 't', 'T'] }, // Hour [1-12] h: { priority: 70, parse: function (string, token, match, _options) { switch (token) { case 'h': return parseNumericPattern(numericPatterns.hour12h, string); case 'ho': return match.ordinalNumber(string, { unit: 'hour' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 12; }, set: function (date, _flags, value, _options) { var isPM = date.getUTCHours() >= 12; if (isPM && value < 12) { date.setUTCHours(value + 12, 0, 0, 0); } else if (!isPM && value === 12) { date.setUTCHours(0, 0, 0, 0); } else { date.setUTCHours(value, 0, 0, 0); } return date; }, incompatibleTokens: ['H', 'K', 'k', 't', 'T'] }, // Hour [0-23] H: { priority: 70, parse: function (string, token, match, _options) { switch (token) { case 'H': return parseNumericPattern(numericPatterns.hour23h, string); case 'Ho': return match.ordinalNumber(string, { unit: 'hour' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 23; }, set: function (date, _flags, value, _options) { date.setUTCHours(value, 0, 0, 0); return date; }, incompatibleTokens: ['a', 'b', 'h', 'K', 'k', 't', 'T'] }, // Hour [0-11] K: { priority: 70, parse: function (string, token, match, _options) { switch (token) { case 'K': return parseNumericPattern(numericPatterns.hour11h, string); case 'Ko': return match.ordinalNumber(string, { unit: 'hour' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 11; }, set: function (date, _flags, value, _options) { var isPM = date.getUTCHours() >= 12; if (isPM && value < 12) { date.setUTCHours(value + 12, 0, 0, 0); } else { date.setUTCHours(value, 0, 0, 0); } return date; }, incompatibleTokens: ['a', 'b', 'h', 'H', 'k', 't', 'T'] }, // Hour [1-24] k: { priority: 70, parse: function (string, token, match, _options) { switch (token) { case 'k': return parseNumericPattern(numericPatterns.hour24h, string); case 'ko': return match.ordinalNumber(string, { unit: 'hour' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 1 && value <= 24; }, set: function (date, _flags, value, _options) { var hours = value <= 24 ? value % 24 : value; date.setUTCHours(hours, 0, 0, 0); return date; }, incompatibleTokens: ['a', 'b', 'h', 'H', 'K', 't', 'T'] }, // Minute m: { priority: 60, parse: function (string, token, match, _options) { switch (token) { case 'm': return parseNumericPattern(numericPatterns.minute, string); case 'mo': return match.ordinalNumber(string, { unit: 'minute' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 59; }, set: function (date, _flags, value, _options) { date.setUTCMinutes(value, 0, 0); return date; }, incompatibleTokens: ['t', 'T'] }, // Second s: { priority: 50, parse: function (string, token, match, _options) { switch (token) { case 's': return parseNumericPattern(numericPatterns.second, string); case 'so': return match.ordinalNumber(string, { unit: 'second' }); default: return parseNDigits(token.length, string); } }, validate: function (_date, value, _options) { return value >= 0 && value <= 59; }, set: function (date, _flags, value, _options) { date.setUTCSeconds(value, 0); return date; }, incompatibleTokens: ['t', 'T'] }, // Fraction of second S: { priority: 30, parse: function (string, token, _match, _options) { var valueCallback = function (value) { return Math.floor(value * Math.pow(10, -token.length + 3)); }; return parseNDigits(token.length, string, valueCallback); }, set: function (date, _flags, value, _options) { date.setUTCMilliseconds(value); return date; }, incompatibleTokens: ['t', 'T'] }, // Timezone (ISO-8601. +00:00 is `'Z'`) X: { priority: 10, parse: function (string, token, _match, _options) { switch (token) { case 'X': return parseTimezonePattern(timezonePatterns.basicOptionalMinutes, string); case 'XX': return parseTimezonePattern(timezonePatterns.basic, string); case 'XXXX': return parseTimezonePattern(timezonePatterns.basicOptionalSeconds, string); case 'XXXXX': return parseTimezonePattern(timezonePatterns.extendedOptionalSeconds, string); case 'XXX': default: return parseTimezonePattern(timezonePatterns.extended, string); } }, set: function (date, flags, value, _options) { if (flags.timestampIsSet) { return date; } return new Date(date.getTime() - value); }, incompatibleTokens: ['t', 'T', 'x'] }, // Timezone (ISO-8601) x: { priority: 10, parse: function (string, token, _match, _options) { switch (token) { case 'x': return parseTimezonePattern(timezonePatterns.basicOptionalMinutes, string); case 'xx': return parseTimezonePattern(timezonePatterns.basic, string); case 'xxxx': return parseTimezonePattern(timezonePatterns.basicOptionalSeconds, string); case 'xxxxx': return parseTimezonePattern(timezonePatterns.extendedOptionalSeconds, string); case 'xxx': default: return parseTimezonePattern(timezonePatterns.extended, string); } }, set: function (date, flags, value, _options) { if (flags.timestampIsSet) { return date; } return new Date(date.getTime() - value); }, incompatibleTokens: ['t', 'T', 'X'] }, // Seconds timestamp t: { priority: 40, parse: function (string, _token, _match, _options) { return parseAnyDigitsSigned(string); }, set: function (_date, _flags, value, _options) { return [new Date(value * 1000), { timestampIsSet: true }]; }, incompatibleTokens: '*' }, // Milliseconds timestamp T: { priority: 20, parse: function (string, _token, _match, _options) { return parseAnyDigitsSigned(string); }, set: function (_date, _flags, value, _options) { return [new Date(value), { timestampIsSet: true }]; }, incompatibleTokens: '*' } }; var parsers$1 = parsers; var TIMEZONE_UNIT_PRIORITY = 10; // This RegExp consists of three parts separated by `|`: // - [yYQqMLwIdDecihHKkms]o matches any available ordinal number token // (one of the certain letters followed by `o`) // - (\w)\1* matches any sequences of the same letter // - '' matches two quote characters in a row // - '(''|[^'])+('|$) matches anything surrounded by two quote characters ('), // except a single quote symbol, which ends the sequence. // Two quote characters do not end the sequence. // If there is no matching single quote // then the sequence will continue until the end of the string. // - . matches any single character unmatched by previous parts of the RegExps var formattingTokensRegExp = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g; // This RegExp catches symbols escaped by quotes, and also // sequences of symbols P, p, and the combinations like `PPPPPPPppppp` var longFormattingTokensRegExp = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g; var escapedStringRegExp = /^'([^]*?)'?$/; var doubleQuoteRegExp = /''/g; var notWhitespaceRegExp = /\S/; var unescapedLatinCharacterRegExp = /[a-zA-Z]/; /** * @name parse * @category Common Helpers * @summary Parse the date. * * @description * Return the date parsed from string using the given format string. * * > ⚠️ Please note that the `format` tokens differ from Moment.js and other libraries. * > See: https://git.io/fxCyr * * The characters in the format string wrapped between two single quotes characters (') are escaped. * Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote. * * Format of the format string is based on Unicode Technical Standard #35: * https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table * with a few additions (see note 5 below the table). * * Not all tokens are compatible. Combinations that don't make sense or could lead to bugs are prohibited * and will throw `RangeError`. For example usage of 24-hour format token with AM/PM token will throw an exception: * * ```javascript * parse('23 AM', 'HH a', new Date()) * //=> RangeError: The format string mustn't contain `HH` and `a` at the same time * ``` * * See the compatibility table: https://docs.google.com/spreadsheets/d/e/2PACX-1vQOPU3xUhplll6dyoMmVUXHKl_8CRDs6_ueLmex3SoqwhuolkuN3O05l4rqx5h1dKX8eb46Ul-CCSrq/pubhtml?gid=0&single=true * * Accepted format string patterns: * | Unit |Prior| Pattern | Result examples | Notes | * |---------------------------------|-----|---------|-----------------------------------|-------| * | Era | 140 | G..GGG | AD, BC | | * | | | GGGG | Anno Domini, Before Christ | 2 | * | | | GGGGG | A, B | | * | Calendar year | 130 | y | 44, 1, 1900, 2017, 9999 | 4 | * | | | yo | 44th, 1st, 1900th, 9999999th | 4,5 | * | | | yy | 44, 01, 00, 17 | 4 | * | | | yyy | 044, 001, 123, 999 | 4 | * | | | yyyy | 0044, 0001, 1900, 2017 | 4 | * | | | yyyyy | ... | 2,4 | * | Local week-numbering year | 130 | Y | 44, 1, 1900, 2017, 9000 | 4 | * | | | Yo | 44th, 1st, 1900th, 9999999th | 4,5 | * | | | YY | 44, 01, 00, 17 | 4,6 | * | | | YYY | 044, 001, 123, 999 | 4 | * | | | YYYY | 0044, 0001, 1900, 2017 | 4,6 | * | | | YYYYY | ... | 2,4 | * | ISO week-numbering year | 130 | R | -43, 1, 1900, 2017, 9999, -9999 | 4,5 | * | | | RR | -43, 01, 00, 17 | 4,5 | * | | | RRR | -043, 001, 123, 999, -999 | 4,5 | * | | | RRRR | -0043, 0001, 2017, 9999, -9999 | 4,5 | * | | | RRRRR | ... | 2,4,5 | * | Extended year | 130 | u | -43, 1, 1900, 2017, 9999, -999 | 4 | * | | | uu | -43, 01, 99, -99 | 4 | * | | | uuu | -043, 001, 123, 999, -999 | 4 | * | | | uuuu | -0043, 0001, 2017, 9999, -9999 | 4 | * | | | uuuuu | ... | 2,4 | * | Quarter (formatting) | 120 | Q | 1, 2, 3, 4 | | * | | | Qo | 1st, 2nd, 3rd, 4th | 5 | * | | | QQ | 01, 02, 03, 04 | | * | | | QQQ | Q1, Q2, Q3, Q4 | | * | | | QQQQ | 1st quarter, 2nd quarter, ... | 2 | * | | | QQQQQ | 1, 2, 3, 4 | 4 | * | Quarter (stand-alone) | 120 | q | 1, 2, 3, 4 | | * | | | qo | 1st, 2nd, 3rd, 4th | 5 | * | | | qq | 01, 02, 03, 04 | | * | | | qqq | Q1, Q2, Q3, Q4 | | * | | | qqqq | 1st quarter, 2nd quarter, ... | 2 | * | | | qqqqq | 1, 2, 3, 4 | 3 | * | Month (formatting) | 110 | M | 1, 2, ..., 12 | | * | | | Mo | 1st, 2nd, ..., 12th | 5 | * | | | MM | 01, 02, ..., 12 | | * | | | MMM | Jan, Feb, ..., Dec | | * | | | MMMM | January, February, ..., December | 2 | * | | | MMMMM | J, F, ..., D | | * | Month (stand-alone) | 110 | L | 1, 2, ..., 12 | | * | | | Lo | 1st, 2nd, ..., 12th | 5 | * | | | LL | 01, 02, ..., 12 | | * | | | LLL | Jan, Feb, ..., Dec | | * | | | LLLL | January, February, ..., December | 2 | * | | | LLLLL | J, F, ..., D | | * | Local week of year | 100 | w | 1, 2, ..., 53 | | * | | | wo | 1st, 2nd, ..., 53th | 5 | * | | | ww | 01, 02, ..., 53 | | * | ISO week of year | 100 | I | 1, 2, ..., 53 | 5 | * | | | Io | 1st, 2nd, ..., 53th | 5 | * | | | II | 01, 02, ..., 53 | 5 | * | Day of month | 90 | d | 1, 2, ..., 31 | | * | | | do | 1st, 2nd, ..., 31st | 5 | * | | | dd | 01, 02, ..., 31 | | * | Day of year | 90 | D | 1, 2, ..., 365, 366 | 7 | * | | | Do | 1st, 2nd, ..., 365th, 366th | 5 | * | | | DD | 01, 02, ..., 365, 366 | 7 | * | | | DDD | 001, 002, ..., 365, 366 | | * | | | DDDD | ... | 2 | * | Day of week (formatting) | 90 | E..EEE | Mon, Tue, Wed, ..., Su | | * | | | EEEE | Monday, Tuesday, ..., Sunday | 2 | * | | | EEEEE | M, T, W, T, F, S, S | | * | | | EEEEEE | Mo, Tu, We, Th, Fr, Su, Sa | | * | ISO day of week (formatting) | 90 | i | 1, 2, 3, ..., 7 | 5 | * | | | io | 1st, 2nd, ..., 7th | 5 | * | | | ii | 01, 02, ..., 07 | 5 | * | | | iii | Mon, Tue, Wed, ..., Su | 5 | * | | | iiii | Monday, Tuesday, ..., Sunday | 2,5 | * | | | iiiii | M, T, W, T, F, S, S | 5 | * | | | iiiiii | Mo, Tu, We, Th, Fr, Su, Sa | 5 | * | Local day of week (formatting) | 90 | e | 2, 3, 4, ..., 1 | | * | | | eo | 2nd, 3rd, ..., 1st | 5 | * | | | ee | 02, 03, ..., 01 | | * | | | eee | Mon, Tue, Wed, ..., Su | | * | | | eeee | Monday, Tuesday, ..., Sunday | 2 | * | | | eeeee | M, T, W, T, F, S, S | | * | | | eeeeee | Mo, Tu, We, Th, Fr, Su, Sa | | * | Local day of week (stand-alone) | 90 | c | 2, 3, 4, ..., 1 | | * | | | co | 2nd, 3rd, ..., 1st | 5 | * | | | cc | 02, 03, ..., 01 | | * | | | ccc | Mon, Tue, Wed, ..., Su | | * | | | cccc | Monday, Tuesday, ..., Sunday | 2 | * | | | ccccc | M, T, W, T, F, S, S | | * | | | cccccc | Mo, Tu, We, Th, Fr, Su, Sa | | * | AM, PM | 80 | a..aaa | AM, PM | | * | | | aaaa | a.m., p.m. | 2 | * | | | aaaaa | a, p | | * | AM, PM, noon, midnight | 80 | b..bbb | AM, PM, noon, midnight | | * | | | bbbb | a.m., p.m., noon, midnight | 2 | * | | | bbbbb | a, p, n, mi | | * | Flexible day period | 80 | B..BBB | at night, in the morning, ... | | * | | | BBBB | at night, in the morning, ... | 2 | * | | | BBBBB | at night, in the morning, ... | | * | Hour [1-12] | 70 | h | 1, 2, ..., 11, 12 | | * | | | ho | 1st, 2nd, ..., 11th, 12th | 5 | * | | | hh | 01, 02, ..., 11, 12 | | * | Hour [0-23] | 70 | H | 0, 1, 2, ..., 23 | | * | | | Ho | 0th, 1st, 2nd, ..., 23rd | 5 | * | | | HH | 00, 01, 02, ..., 23 | | * | Hour [0-11] | 70 | K | 1, 2, ..., 11, 0 | | * | | | Ko | 1st, 2nd, ..., 11th, 0th | 5 | * | | | KK | 01, 02, ..., 11, 00 | | * | Hour [1-24] | 70 | k | 24, 1, 2, ..., 23 | | * | | | ko | 24th, 1st, 2nd, ..., 23rd | 5 | * | | | kk | 24, 01, 02, ..., 23 | | * | Minute | 60 | m | 0, 1, ..., 59 | | * | | | mo | 0th, 1st, ..., 59th | 5 | * | | | mm | 00, 01, ..., 59 | | * | Second | 50 | s | 0, 1, ..., 59 | | * | | | so | 0th, 1st, ..., 59th | 5 | * | | | ss | 00, 01, ..., 59 | | * | Seconds timestamp | 40 | t | 512969520 | | * | | | tt | ... | 2 | * | Fraction of second | 30 | S | 0, 1, ..., 9 | | * | | | SS | 00, 01, ..., 99 | | * | | | SSS | 000, 0001, ..., 999 | | * | | | SSSS | ... | 2 | * | Milliseconds timestamp | 20 | T | 512969520900 | | * | | | TT | ... | 2 | * | Timezone (ISO-8601 w/ Z) | 10 | X | -08, +0530, Z | | * | | | XX | -0800, +0530, Z | | * | | | XXX | -08:00, +05:30, Z | | * | | | XXXX | -0800, +0530, Z, +123456 | 2 | * | | | XXXXX | -08:00, +05:30, Z, +12:34:56 | | * | Timezone (ISO-8601 w/o Z) | 10 | x | -08, +0530, +00 | | * | | | xx | -0800, +0530, +0000 | | * | | | xxx | -08:00, +05:30, +00:00 | 2 | * | | | xxxx | -0800, +0530, +0000, +123456 | | * | | | xxxxx | -08:00, +05:30, +00:00, +12:34:56 | | * | Long localized date | NA | P | 05/29/1453 | 5,8 | * | | | PP | May 29, 1453 | | * | | | PPP | May 29th, 1453 | | * | | | PPPP | Sunday, May 29th, 1453 | 2,5,8 | * | Long localized time | NA | p | 12:00 AM | 5,8 | * | | | pp | 12:00:00 AM | | * | Combination of date and time | NA | Pp | 05/29/1453, 12:00 AM | | * | | | PPpp | May 29, 1453, 12:00:00 AM | | * | | | PPPpp | May 29th, 1453 at ... | | * | | | PPPPpp | Sunday, May 29th, 1453 at ... | 2,5,8 | * Notes: * 1. "Formatting" units (e.g. formatting quarter) in the default en-US locale * are the same as "stand-alone" units, but are different in some languages. * "Formatting" units are declined according to the rules of the language * in the context of a date. "Stand-alone" units are always nominative singular. * In `format` function, they will produce different result: * * `format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'` * * `format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'` * * `parse` will try to match both formatting and stand-alone units interchangably. * * 2. Any sequence of the identical letters is a pattern, unless it is escaped by * the single quote characters (see below). * If the sequence is longer than listed in table: * - for numerical units (`yyyyyyyy`) `parse` will try to match a number * as wide as the sequence * - for text units (`MMMMMMMM`) `parse` will try to match the widest variation of the unit. * These variations are marked with "2" in the last column of the table. * * 3. `QQQQQ` and `qqqqq` could be not strictly numerical in some locales. * These tokens represent the shortest form of the quarter. * * 4. The main difference between `y` and `u` patterns are B.C. years: * * | Year | `y` | `u` | * |------|-----|-----| * | AC 1 | 1 | 1 | * | BC 1 | 1 | 0 | * | BC 2 | 2 | -1 | * * Also `yy` will try to guess the century of two digit year by proximity with `referenceDate`: * * `parse('50', 'yy', new Date(2018, 0, 1)) //=> Sat Jan 01 2050 00:00:00` * * `parse('75', 'yy', new Date(2018, 0, 1)) //=> Wed Jan 01 1975 00:00:00` * * while `uu` will just assign the year as is: * * `parse('50', 'uu', new Date(2018, 0, 1)) //=> Sat Jan 01 0050 00:00:00` * * `parse('75', 'uu', new Date(2018, 0, 1)) //=> Tue Jan 01 0075 00:00:00` * * The same difference is true for local and ISO week-numbering years (`Y` and `R`), * except local week-numbering years are dependent on `options.weekStartsOn` * and `options.firstWeekContainsDate` (compare [setISOWeekYear]{@link https://date-fns.org/docs/setISOWeekYear} * and [setWeekYear]{@link https://date-fns.org/docs/setWeekYear}). * * 5. These patterns are not in the Unicode Technical Standard #35: * - `i`: ISO day of week * - `I`: ISO week of year * - `R`: ISO week-numbering year * - `o`: ordinal number modifier * - `P`: long localized date * - `p`: long localized time * * 6. `YY` and `YYYY` tokens represent week-numbering years but they are often confused with years. * You should enable `options.useAdditionalWeekYearTokens` to use them. See: https://git.io/fxCyr * * 7. `D` and `DD` tokens represent days of the year but they are ofthen confused with days of the month. * You should enable `options.useAdditionalDayOfYearTokens` to use them. See: https://git.io/fxCyr * * 8. `P+` tokens do not have a defined priority since they are merely aliases to other tokens based * on the given locale. * * using `en-US` locale: `P` => `MM/dd/yyyy` * using `en-US` locale: `p` => `hh:mm a` * using `pt-BR` locale: `P` => `dd/MM/yyyy` * using `pt-BR` locale: `p` => `HH:mm` * * Values will be assigned to the date in the descending order of its unit's priority. * Units of an equal priority overwrite each other in the order of appearance. * * If no values of higher priority are parsed (e.g. when parsing string 'January 1st' without a year), * the values will be taken from 3rd argument `referenceDate` which works as a context of parsing. * * `referenceDate` must be passed for correct work of the function. * If you're not sure which `referenceDate` to supply, create a new instance of Date: * `parse('02/11/2014', 'MM/dd/yyyy', new Date())` * In this case parsing will be done in the context of the current date. * If `referenceDate` is `Invalid Date` or a value not convertible to valid `Date`, * then `Invalid Date` will be returned. * * The result may vary by locale. * * If `formatString` matches with `dateString` but does not provides tokens, `referenceDate` will be returned. * * If parsing failed, `Invalid Date` will be returned. * Invalid Date is a Date, whose time value is NaN. * Time value of Date: http://es5.github.io/#x15.9.1.1 * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - Old `parse` was renamed to `toDate`. * Now `parse` is a new function which parses a string using a provided format. * * ```javascript * // Before v2.0.0 * parse('2016-01-01') * * // v2.0.0 onward * toDate('2016-01-01') * parse('2016-01-01', 'yyyy-MM-dd', new Date()) * ``` * * @param {String} dateString - the string to parse * @param {String} formatString - the string of tokens * @param {Date|Number} referenceDate - defines values missing from the parsed dateString * @param {Object} [options] - an object with options. * @param {Locale} [options.locale=defaultLocale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale} * @param {0|1|2|3|4|5|6} [options.weekStartsOn=0] - the index of the first day of the week (0 - Sunday) * @param {1|2|3|4|5|6|7} [options.firstWeekContainsDate=1] - the day of January, which is always in the first week of the year * @param {Boolean} [options.useAdditionalWeekYearTokens=false] - if true, allows usage of the week-numbering year tokens `YY` and `YYYY`; * see: https://git.io/fxCyr * @param {Boolean} [options.useAdditionalDayOfYearTokens=false] - if true, allows usage of the day of year tokens `D` and `DD`; * see: https://git.io/fxCyr * @returns {Date} the parsed date * @throws {TypeError} 3 arguments required * @throws {RangeError} `options.weekStartsOn` must be between 0 and 6 * @throws {RangeError} `options.firstWeekContainsDate` must be between 1 and 7 * @throws {RangeError} `options.locale` must contain `match` property * @throws {RangeError} use `yyyy` instead of `YYYY` for formatting years using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `yy` instead of `YY` for formatting years using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `d` instead of `D` for formatting days of the month using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} use `dd` instead of `DD` for formatting days of the month using [format provided] to the input [input provided]; see: https://git.io/fxCyr * @throws {RangeError} format string contains an unescaped latin alphabet character * * @example * // Parse 11 February 2014 from middle-endian format: * var result = parse('02/11/2014', 'MM/dd/yyyy', new Date()) * //=> Tue Feb 11 2014 00:00:00 * * @example * // Parse 28th of February in Esperanto locale in the context of 2010 year: * import eo from 'date-fns/locale/eo' * var result = parse('28-a de februaro', "do 'de' MMMM", new Date(2010, 0, 1), { * locale: eo * }) * //=> Sun Feb 28 2010 00:00:00 */ function parse(dirtyDateString, dirtyFormatString, dirtyReferenceDate, dirtyOptions) { requiredArgs(3, arguments); var dateString = String(dirtyDateString); var formatString = String(dirtyFormatString); var options = dirtyOptions || {}; var locale = options.locale || defaultLocale; if (!locale.match) { throw new RangeError('locale must contain match property'); } var localeFirstWeekContainsDate = locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : toInteger(localeFirstWeekContainsDate); var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : toInteger(options.firstWeekContainsDate); // Test if weekStartsOn is between 1 and 7 _and_ is not NaN if (!(firstWeekContainsDate >= 1 && firstWeekContainsDate <= 7)) { throw new RangeError('firstWeekContainsDate must be between 1 and 7 inclusively'); } var localeWeekStartsOn = locale.options && locale.options.weekStartsOn; var defaultWeekStartsOn = localeWeekStartsOn == null ? 0 : toInteger(localeWeekStartsOn); var weekStartsOn = options.weekStartsOn == null ? defaultWeekStartsOn : toInteger(options.weekStartsOn); // Test if weekStartsOn is between 0 and 6 _and_ is not NaN if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } if (formatString === '') { if (dateString === '') { return toDate(dirtyReferenceDate); } else { return new Date(NaN); } } var subFnOptions = { firstWeekContainsDate: firstWeekContainsDate, weekStartsOn: weekStartsOn, locale: locale // If timezone isn't specified, it will be set to the system timezone }; var setters = [{ priority: TIMEZONE_UNIT_PRIORITY, subPriority: -1, set: dateToSystemTimezone, index: 0 }]; var i; var tokens = formatString.match(longFormattingTokensRegExp).map(function (substring) { var firstCharacter = substring[0]; if (firstCharacter === 'p' || firstCharacter === 'P') { var longFormatter = longFormatters$1[firstCharacter]; return longFormatter(substring, locale.formatLong, subFnOptions); } return substring; }).join('').match(formattingTokensRegExp); var usedTokens = []; for (i = 0; i < tokens.length; i++) { var token = tokens[i]; if (!options.useAdditionalWeekYearTokens && isProtectedWeekYearToken(token)) { throwProtectedError(token, formatString, dirtyDateString); } if (!options.useAdditionalDayOfYearTokens && isProtectedDayOfYearToken(token)) { throwProtectedError(token, formatString, dirtyDateString); } var firstCharacter = token[0]; var parser = parsers$1[firstCharacter]; if (parser) { var incompatibleTokens = parser.incompatibleTokens; if (Array.isArray(incompatibleTokens)) { var incompatibleToken = void 0; for (var _i = 0; _i < usedTokens.length; _i++) { var usedToken = usedTokens[_i].token; if (incompatibleTokens.indexOf(usedToken) !== -1 || usedToken === firstCharacter) { incompatibleToken = usedTokens[_i]; break; } } if (incompatibleToken) { throw new RangeError("The format string mustn't contain `".concat(incompatibleToken.fullToken, "` and `").concat(token, "` at the same time")); } } else if (parser.incompatibleTokens === '*' && usedTokens.length) { throw new RangeError("The format string mustn't contain `".concat(token, "` and any other token at the same time")); } usedTokens.push({ token: firstCharacter, fullToken: token }); var parseResult = parser.parse(dateString, token, locale.match, subFnOptions); if (!parseResult) { return new Date(NaN); } setters.push({ priority: parser.priority, subPriority: parser.subPriority || 0, set: parser.set, validate: parser.validate, value: parseResult.value, index: setters.length }); dateString = parseResult.rest; } else { if (firstCharacter.match(unescapedLatinCharacterRegExp)) { throw new RangeError('Format string contains an unescaped latin alphabet character `' + firstCharacter + '`'); } // Replace two single quote characters with one single quote character if (token === "''") { token = "'"; } else if (firstCharacter === "'") { token = cleanEscapedString(token); } // Cut token from string, or, if string doesn't match the token, return Invalid Date if (dateString.indexOf(token) === 0) { dateString = dateString.slice(token.length); } else { return new Date(NaN); } } } // Check if the remaining input contains something other than whitespace if (dateString.length > 0 && notWhitespaceRegExp.test(dateString)) { return new Date(NaN); } var uniquePrioritySetters = setters.map(function (setter) { return setter.priority; }).sort(function (a, b) { return b - a; }).filter(function (priority, index, array) { return array.indexOf(priority) === index; }).map(function (priority) { return setters.filter(function (setter) { return setter.priority === priority; }).sort(function (a, b) { return b.subPriority - a.subPriority; }); }).map(function (setterArray) { return setterArray[0]; }); var date = toDate(dirtyReferenceDate); if (isNaN(date)) { return new Date(NaN); } // Convert the date in system timezone to the same date in UTC+00:00 timezone. // This ensures that when UTC functions will be implemented, locales will be compatible with them. // See an issue about UTC functions: https://github.com/date-fns/date-fns/issues/37 var utcDate = subMilliseconds(date, getTimezoneOffsetInMilliseconds(date)); var flags = {}; for (i = 0; i < uniquePrioritySetters.length; i++) { var setter = uniquePrioritySetters[i]; if (setter.validate && !setter.validate(utcDate, setter.value, subFnOptions)) { return new Date(NaN); } var result = setter.set(utcDate, flags, setter.value, subFnOptions); // Result is tuple (date, flags) if (result[0]) { utcDate = result[0]; assign(flags, result[1]); // Result is date } else { utcDate = result; } } return utcDate; } function dateToSystemTimezone(date, flags) { if (flags.timestampIsSet) { return date; } var convertedDate = new Date(0); convertedDate.setFullYear(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate()); convertedDate.setHours(date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds(), date.getUTCMilliseconds()); return convertedDate; } function cleanEscapedString(input) { return input.match(escapedStringRegExp)[1].replace(doubleQuoteRegExp, "'"); } var MILLISECONDS_IN_HOUR = 3600000; var MILLISECONDS_IN_MINUTE = 60000; var DEFAULT_ADDITIONAL_DIGITS = 2; var patterns = { dateTimeDelimiter: /[T ]/, timeZoneDelimiter: /[Z ]/i, timezone: /([Z+-].*)$/ }; var dateRegex = /^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/; var timeRegex = /^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/; var timezoneRegex = /^([+-])(\d{2})(?::?(\d{2}))?$/; /** * @name parseISO * @category Common Helpers * @summary Parse ISO string * * @description * Parse the given string in ISO 8601 format and return an instance of Date. * * Function accepts complete ISO 8601 formats as well as partial implementations. * ISO 8601: http://en.wikipedia.org/wiki/ISO_8601 * * If the argument isn't a string, the function cannot parse the string or * the values are invalid, it returns Invalid Date. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * * - The previous `parse` implementation was renamed to `parseISO`. * * ```javascript * // Before v2.0.0 * parse('2016-01-01') * * // v2.0.0 onward * parseISO('2016-01-01') * ``` * * - `parseISO` now validates separate date and time values in ISO-8601 strings * and returns `Invalid Date` if the date is invalid. * * ```javascript * parseISO('2018-13-32') * //=> Invalid Date * ``` * * - `parseISO` now doesn't fall back to `new Date` constructor * if it fails to parse a string argument. Instead, it returns `Invalid Date`. * * @param {String} argument - the value to convert * @param {Object} [options] - an object with options. * @param {0|1|2} [options.additionalDigits=2] - the additional number of digits in the extended year format * @returns {Date} the parsed date in the local time zone * @throws {TypeError} 1 argument required * @throws {RangeError} `options.additionalDigits` must be 0, 1 or 2 * * @example * // Convert string '2014-02-11T11:30:30' to date: * var result = parseISO('2014-02-11T11:30:30') * //=> Tue Feb 11 2014 11:30:30 * * @example * // Convert string '+02014101' to date, * // if the additional number of digits in the extended year format is 1: * var result = parseISO('+02014101', { additionalDigits: 1 }) * //=> Fri Apr 11 2014 00:00:00 */ function parseISO(argument, dirtyOptions) { requiredArgs(1, arguments); var options = dirtyOptions || {}; var additionalDigits = options.additionalDigits == null ? DEFAULT_ADDITIONAL_DIGITS : toInteger(options.additionalDigits); if (additionalDigits !== 2 && additionalDigits !== 1 && additionalDigits !== 0) { throw new RangeError('additionalDigits must be 0, 1 or 2'); } if (!(typeof argument === 'string' || Object.prototype.toString.call(argument) === '[object String]')) { return new Date(NaN); } var dateStrings = splitDateString(argument); var date; if (dateStrings.date) { var parseYearResult = parseYear(dateStrings.date, additionalDigits); date = parseDate(parseYearResult.restDateString, parseYearResult.year); } if (isNaN(date) || !date) { return new Date(NaN); } var timestamp = date.getTime(); var time = 0; var offset; if (dateStrings.time) { time = parseTime(dateStrings.time); if (isNaN(time) || time === null) { return new Date(NaN); } } if (dateStrings.timezone) { offset = parseTimezone(dateStrings.timezone); if (isNaN(offset)) { return new Date(NaN); } } else { var dirtyDate = new Date(timestamp + time); // js parsed string assuming it's in UTC timezone // but we need it to be parsed in our timezone // so we use utc values to build date in our timezone. // Year values from 0 to 99 map to the years 1900 to 1999 // so set year explicitly with setFullYear. var result = new Date(dirtyDate.getUTCFullYear(), dirtyDate.getUTCMonth(), dirtyDate.getUTCDate(), dirtyDate.getUTCHours(), dirtyDate.getUTCMinutes(), dirtyDate.getUTCSeconds(), dirtyDate.getUTCMilliseconds()); result.setFullYear(dirtyDate.getUTCFullYear()); return result; } return new Date(timestamp + time + offset); } function splitDateString(dateString) { var dateStrings = {}; var array = dateString.split(patterns.dateTimeDelimiter); var timeString; // The regex match should only return at maximum two array elements. // [date], [time], or [date, time]. if (array.length > 2) { return dateStrings; } if (/:/.test(array[0])) { dateStrings.date = null; timeString = array[0]; } else { dateStrings.date = array[0]; timeString = array[1]; if (patterns.timeZoneDelimiter.test(dateStrings.date)) { dateStrings.date = dateString.split(patterns.timeZoneDelimiter)[0]; timeString = dateString.substr(dateStrings.date.length, dateString.length); } } if (timeString) { var token = patterns.timezone.exec(timeString); if (token) { dateStrings.time = timeString.replace(token[1], ''); dateStrings.timezone = token[1]; } else { dateStrings.time = timeString; } } return dateStrings; } function parseYear(dateString, additionalDigits) { var regex = new RegExp('^(?:(\\d{4}|[+-]\\d{' + (4 + additionalDigits) + '})|(\\d{2}|[+-]\\d{' + (2 + additionalDigits) + '})$)'); var captures = dateString.match(regex); // Invalid ISO-formatted year if (!captures) return { year: null }; var year = captures[1] && parseInt(captures[1]); var century = captures[2] && parseInt(captures[2]); return { year: century == null ? year : century * 100, restDateString: dateString.slice((captures[1] || captures[2]).length) }; } function parseDate(dateString, year) { // Invalid ISO-formatted year if (year === null) return null; var captures = dateString.match(dateRegex); // Invalid ISO-formatted string if (!captures) return null; var isWeekDate = !!captures[4]; var dayOfYear = parseDateUnit(captures[1]); var month = parseDateUnit(captures[2]) - 1; var day = parseDateUnit(captures[3]); var week = parseDateUnit(captures[4]); var dayOfWeek = parseDateUnit(captures[5]) - 1; if (isWeekDate) { if (!validateWeekDate(year, week, dayOfWeek)) { return new Date(NaN); } return dayOfISOWeekYear(year, week, dayOfWeek); } else { var date = new Date(0); if (!validateDate(year, month, day) || !validateDayOfYearDate(year, dayOfYear)) { return new Date(NaN); } date.setUTCFullYear(year, month, Math.max(dayOfYear, day)); return date; } } function parseDateUnit(value) { return value ? parseInt(value) : 1; } function parseTime(timeString) { var captures = timeString.match(timeRegex); if (!captures) return null; // Invalid ISO-formatted time var hours = parseTimeUnit(captures[1]); var minutes = parseTimeUnit(captures[2]); var seconds = parseTimeUnit(captures[3]); if (!validateTime(hours, minutes, seconds)) { return NaN; } return hours * MILLISECONDS_IN_HOUR + minutes * MILLISECONDS_IN_MINUTE + seconds * 1000; } function parseTimeUnit(value) { return value && parseFloat(value.replace(',', '.')) || 0; } function parseTimezone(timezoneString) { if (timezoneString === 'Z') return 0; var captures = timezoneString.match(timezoneRegex); if (!captures) return 0; var sign = captures[1] === '+' ? -1 : 1; var hours = parseInt(captures[2]); var minutes = captures[3] && parseInt(captures[3]) || 0; if (!validateTimezone(hours, minutes)) { return NaN; } return sign * (hours * MILLISECONDS_IN_HOUR + minutes * MILLISECONDS_IN_MINUTE); } function dayOfISOWeekYear(isoWeekYear, week, day) { var date = new Date(0); date.setUTCFullYear(isoWeekYear, 0, 4); var fourthOfJanuaryDay = date.getUTCDay() || 7; var diff = (week - 1) * 7 + day + 1 - fourthOfJanuaryDay; date.setUTCDate(date.getUTCDate() + diff); return date; } // Validation functions // February is null to handle the leap year (using ||) var daysInMonths = [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; function isLeapYearIndex(year) { return year % 400 === 0 || year % 4 === 0 && year % 100; } function validateDate(year, month, date) { return month >= 0 && month <= 11 && date >= 1 && date <= (daysInMonths[month] || (isLeapYearIndex(year) ? 29 : 28)); } function validateDayOfYearDate(year, dayOfYear) { return dayOfYear >= 1 && dayOfYear <= (isLeapYearIndex(year) ? 366 : 365); } function validateWeekDate(_year, week, day) { return week >= 1 && week <= 53 && day >= 0 && day <= 6; } function validateTime(hours, minutes, seconds) { if (hours === 24) { return minutes === 0 && seconds === 0; } return seconds >= 0 && seconds < 60 && minutes >= 0 && minutes < 60 && hours >= 0 && hours < 25; } function validateTimezone(_hours, minutes) { return minutes >= 0 && minutes <= 59; } function _inheritsLoose$1(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf$1(subClass, superClass); } function _setPrototypeOf$1(o, p) { _setPrototypeOf$1 = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$1(o, p); } function _objectWithoutPropertiesLoose$3(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; } function _assertThisInitialized$2(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } /** * Check whether some DOM node is our Component's node. */ function isNodeFound(current, componentNode, ignoreClass) { if (current === componentNode) { return true; } // SVG elements do not technically reside in the rendered DOM, so // they do not have classList directly, but they offer a link to their // corresponding element, which can have classList. This extra check is for // that case. // See: http://www.w3.org/TR/SVG11/struct.html#InterfaceSVGUseElement // Discussion: https://github.com/Pomax/react-onclickoutside/pull/17 if (current.correspondingElement) { return current.correspondingElement.classList.contains(ignoreClass); } return current.classList.contains(ignoreClass); } /** * Try to find our node in a hierarchy of nodes, returning the document * node as highest node if our node is not found in the path up. */ function findHighest(current, componentNode, ignoreClass) { if (current === componentNode) { return true; } // If source=local then this event came from 'somewhere' // inside and should be ignored. We could handle this with // a layered approach, too, but that requires going back to // thinking in terms of Dom node nesting, running counter // to React's 'you shouldn't care about the DOM' philosophy. // Also cover shadowRoot node by checking current.host while (current.parentNode || current.host) { // Only check normal node without shadowRoot if (current.parentNode && isNodeFound(current, componentNode, ignoreClass)) { return true; } current = current.parentNode || current.host; } return current; } /** * Check if the browser scrollbar was clicked */ function clickedScrollbar(evt) { return document.documentElement.clientWidth <= evt.clientX || document.documentElement.clientHeight <= evt.clientY; } // ideally will get replaced with external dep // when rafrex/detect-passive-events#4 and rafrex/detect-passive-events#5 get merged in var testPassiveEventSupport = function testPassiveEventSupport() { if (typeof window === 'undefined' || typeof window.addEventListener !== 'function') { return; } var passive = false; var options = Object.defineProperty({}, 'passive', { get: function get() { passive = true; } }); var noop = function noop() {}; window.addEventListener('testPassiveEventSupport', noop, options); window.removeEventListener('testPassiveEventSupport', noop, options); return passive; }; function autoInc(seed) { if (seed === void 0) { seed = 0; } return function () { return ++seed; }; } var uid = autoInc(); var passiveEventSupport; var handlersMap = {}; var enabledInstances = {}; var touchEvents = ['touchstart', 'touchmove']; var IGNORE_CLASS_NAME = 'ignore-react-onclickoutside'; /** * Options for addEventHandler and removeEventHandler */ function getEventHandlerOptions(instance, eventName) { var handlerOptions = null; var isTouchEvent = touchEvents.indexOf(eventName) !== -1; if (isTouchEvent && passiveEventSupport) { handlerOptions = { passive: !instance.props.preventDefault }; } return handlerOptions; } /** * This function generates the HOC function that you'll use * in order to impart onOutsideClick listening to an * arbitrary component. It gets called at the end of the * bootstrapping code to yield an instance of the * onClickOutsideHOC function defined inside setupHOC(). */ function onClickOutsideHOC(WrappedComponent, config) { var _class, _temp; var componentName = WrappedComponent.displayName || WrappedComponent.name || 'Component'; return _temp = _class = /*#__PURE__*/function (_Component) { _inheritsLoose$1(onClickOutside, _Component); function onClickOutside(props) { var _this; _this = _Component.call(this, props) || this; _this.__outsideClickHandler = function (event) { if (typeof _this.__clickOutsideHandlerProp === 'function') { _this.__clickOutsideHandlerProp(event); return; } var instance = _this.getInstance(); if (typeof instance.props.handleClickOutside === 'function') { instance.props.handleClickOutside(event); return; } if (typeof instance.handleClickOutside === 'function') { instance.handleClickOutside(event); return; } throw new Error("WrappedComponent: " + componentName + " lacks a handleClickOutside(event) function for processing outside click events."); }; _this.__getComponentNode = function () { var instance = _this.getInstance(); if (config && typeof config.setClickOutsideRef === 'function') { return config.setClickOutsideRef()(instance); } if (typeof instance.setClickOutsideRef === 'function') { return instance.setClickOutsideRef(); } return ReactDOM.findDOMNode(instance); }; _this.enableOnClickOutside = function () { if (typeof document === 'undefined' || enabledInstances[_this._uid]) { return; } if (typeof passiveEventSupport === 'undefined') { passiveEventSupport = testPassiveEventSupport(); } enabledInstances[_this._uid] = true; var events = _this.props.eventTypes; if (!events.forEach) { events = [events]; } handlersMap[_this._uid] = function (event) { if (_this.componentNode === null) return; if (_this.props.preventDefault) { event.preventDefault(); } if (_this.props.stopPropagation) { event.stopPropagation(); } if (_this.props.excludeScrollbar && clickedScrollbar(event)) return; var current = event.composed && event.composedPath && event.composedPath().shift() || event.target; if (findHighest(current, _this.componentNode, _this.props.outsideClickIgnoreClass) !== document) { return; } _this.__outsideClickHandler(event); }; events.forEach(function (eventName) { document.addEventListener(eventName, handlersMap[_this._uid], getEventHandlerOptions(_assertThisInitialized$2(_this), eventName)); }); }; _this.disableOnClickOutside = function () { delete enabledInstances[_this._uid]; var fn = handlersMap[_this._uid]; if (fn && typeof document !== 'undefined') { var events = _this.props.eventTypes; if (!events.forEach) { events = [events]; } events.forEach(function (eventName) { return document.removeEventListener(eventName, fn, getEventHandlerOptions(_assertThisInitialized$2(_this), eventName)); }); delete handlersMap[_this._uid]; } }; _this.getRef = function (ref) { return _this.instanceRef = ref; }; _this._uid = uid(); return _this; } /** * Access the WrappedComponent's instance. */ var _proto = onClickOutside.prototype; _proto.getInstance = function getInstance() { if (WrappedComponent.prototype && !WrappedComponent.prototype.isReactComponent) { return this; } var ref = this.instanceRef; return ref.getInstance ? ref.getInstance() : ref; }; /** * Add click listeners to the current document, * linked to this component's state. */ _proto.componentDidMount = function componentDidMount() { // If we are in an environment without a DOM such // as shallow rendering or snapshots then we exit // early to prevent any unhandled errors being thrown. if (typeof document === 'undefined' || !document.createElement) { return; } var instance = this.getInstance(); if (config && typeof config.handleClickOutside === 'function') { this.__clickOutsideHandlerProp = config.handleClickOutside(instance); if (typeof this.__clickOutsideHandlerProp !== 'function') { throw new Error("WrappedComponent: " + componentName + " lacks a function for processing outside click events specified by the handleClickOutside config option."); } } this.componentNode = this.__getComponentNode(); // return early so we dont initiate onClickOutside if (this.props.disableOnClickOutside) return; this.enableOnClickOutside(); }; _proto.componentDidUpdate = function componentDidUpdate() { this.componentNode = this.__getComponentNode(); } /** * Remove all document's event listeners for this component */ ; _proto.componentWillUnmount = function componentWillUnmount() { this.disableOnClickOutside(); } /** * Can be called to explicitly enable event listening * for clicks and touches outside of this element. */ ; /** * Pass-through render */ _proto.render = function render() { // eslint-disable-next-line no-unused-vars var _this$props = this.props; _this$props.excludeScrollbar; var props = _objectWithoutPropertiesLoose$3(_this$props, ["excludeScrollbar"]); if (WrappedComponent.prototype && WrappedComponent.prototype.isReactComponent) { props.ref = this.getRef; } else { props.wrappedRef = this.getRef; } props.disableOnClickOutside = this.disableOnClickOutside; props.enableOnClickOutside = this.enableOnClickOutside; return /*#__PURE__*/React.createElement(WrappedComponent, props); }; return onClickOutside; }(React.Component), _class.displayName = "OnClickOutside(" + componentName + ")", _class.defaultProps = { eventTypes: ['mousedown', 'touchstart'], excludeScrollbar: config && config.excludeScrollbar || false, outsideClickIgnoreClass: IGNORE_CLASS_NAME, preventDefault: false, stopPropagation: false }, _class.getClass = function () { return WrappedComponent.getClass ? WrappedComponent.getClass() : WrappedComponent; }, _temp; } var ManagerReferenceNodeContext = /*#__PURE__*/React__namespace.createContext(); var ManagerReferenceNodeSetterContext = /*#__PURE__*/React__namespace.createContext(); function Manager(_ref) { var children = _ref.children; var _React$useState = React__namespace.useState(null), referenceNode = _React$useState[0], setReferenceNode = _React$useState[1]; var hasUnmounted = React__namespace.useRef(false); React__namespace.useEffect(function () { return function () { hasUnmounted.current = true; }; }, []); var handleSetReferenceNode = React__namespace.useCallback(function (node) { if (!hasUnmounted.current) { setReferenceNode(node); } }, []); return /*#__PURE__*/React__namespace.createElement(ManagerReferenceNodeContext.Provider, { value: referenceNode }, /*#__PURE__*/React__namespace.createElement(ManagerReferenceNodeSetterContext.Provider, { value: handleSetReferenceNode }, children)); } /** * Takes an argument and if it's an array, returns the first item in the array, * otherwise returns the argument. Used for Preact compatibility. */ var unwrapArray = function unwrapArray(arg) { return Array.isArray(arg) ? arg[0] : arg; }; /** * Takes a maybe-undefined function and arbitrary args and invokes the function * only if it is defined. */ var safeInvoke = function safeInvoke(fn) { if (typeof fn === 'function') { for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } return fn.apply(void 0, args); } }; /** * Sets a ref using either a ref callback or a ref object */ var setRef = function setRef(ref, node) { // if its a function call it if (typeof ref === 'function') { return safeInvoke(ref, node); } // otherwise we should treat it as a ref object else if (ref != null) { ref.current = node; } }; /** * Simple ponyfill for Object.fromEntries */ var fromEntries = function fromEntries(entries) { return entries.reduce(function (acc, _ref) { var key = _ref[0], value = _ref[1]; acc[key] = value; return acc; }, {}); }; /** * Small wrapper around `useLayoutEffect` to get rid of the warning on SSR envs */ var useIsomorphicLayoutEffect = typeof window !== 'undefined' && window.document && window.document.createElement ? React__namespace.useLayoutEffect : React__namespace.useEffect; var top = 'top'; var bottom = 'bottom'; var right = 'right'; var left = 'left'; var auto = 'auto'; var basePlacements = [top, bottom, right, left]; var start = 'start'; var end = 'end'; var clippingParents = 'clippingParents'; var viewport = 'viewport'; var popper = 'popper'; var reference = 'reference'; var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) { return acc.concat([placement + "-" + start, placement + "-" + end]); }, []); var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) { return acc.concat([placement, placement + "-" + start, placement + "-" + end]); }, []); // modifiers that need to read the DOM var beforeRead = 'beforeRead'; var read = 'read'; var afterRead = 'afterRead'; // pure-logic modifiers var beforeMain = 'beforeMain'; var main = 'main'; var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state) var beforeWrite = 'beforeWrite'; var write = 'write'; var afterWrite = 'afterWrite'; var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite]; function getNodeName(element) { return element ? (element.nodeName || '').toLowerCase() : null; } function getWindow(node) { if (node == null) { return window; } if (node.toString() !== '[object Window]') { var ownerDocument = node.ownerDocument; return ownerDocument ? ownerDocument.defaultView || window : window; } return node; } function isElement(node) { var OwnElement = getWindow(node).Element; return node instanceof OwnElement || node instanceof Element; } function isHTMLElement(node) { var OwnElement = getWindow(node).HTMLElement; return node instanceof OwnElement || node instanceof HTMLElement; } function isShadowRoot(node) { // IE 11 has no ShadowRoot if (typeof ShadowRoot === 'undefined') { return false; } var OwnElement = getWindow(node).ShadowRoot; return node instanceof OwnElement || node instanceof ShadowRoot; } // and applies them to the HTMLElements such as popper and arrow function applyStyles(_ref) { var state = _ref.state; Object.keys(state.elements).forEach(function (name) { var style = state.styles[name] || {}; var attributes = state.attributes[name] || {}; var element = state.elements[name]; // arrow is optional + virtual elements if (!isHTMLElement(element) || !getNodeName(element)) { return; } // Flow doesn't support to extend this property, but it's the most // effective way to apply styles to an HTMLElement // $FlowFixMe[cannot-write] Object.assign(element.style, style); Object.keys(attributes).forEach(function (name) { var value = attributes[name]; if (value === false) { element.removeAttribute(name); } else { element.setAttribute(name, value === true ? '' : value); } }); }); } function effect$2(_ref2) { var state = _ref2.state; var initialStyles = { popper: { position: state.options.strategy, left: '0', top: '0', margin: '0' }, arrow: { position: 'absolute' }, reference: {} }; Object.assign(state.elements.popper.style, initialStyles.popper); state.styles = initialStyles; if (state.elements.arrow) { Object.assign(state.elements.arrow.style, initialStyles.arrow); } return function () { Object.keys(state.elements).forEach(function (name) { var element = state.elements[name]; var attributes = state.attributes[name] || {}; var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them var style = styleProperties.reduce(function (style, property) { style[property] = ''; return style; }, {}); // arrow is optional + virtual elements if (!isHTMLElement(element) || !getNodeName(element)) { return; } Object.assign(element.style, style); Object.keys(attributes).forEach(function (attribute) { element.removeAttribute(attribute); }); }); }; } // eslint-disable-next-line import/no-unused-modules var applyStyles$1 = { name: 'applyStyles', enabled: true, phase: 'write', fn: applyStyles, effect: effect$2, requires: ['computeStyles'] }; function getBasePlacement(placement) { return placement.split('-')[0]; } var max = Math.max; var min = Math.min; var round = Math.round; function getUAString() { var uaData = navigator.userAgentData; if (uaData != null && uaData.brands) { return uaData.brands.map(function (item) { return item.brand + "/" + item.version; }).join(' '); } return navigator.userAgent; } function isLayoutViewport() { return !/^((?!chrome|android).)*safari/i.test(getUAString()); } function getBoundingClientRect(element, includeScale, isFixedStrategy) { if (includeScale === void 0) { includeScale = false; } if (isFixedStrategy === void 0) { isFixedStrategy = false; } var clientRect = element.getBoundingClientRect(); var scaleX = 1; var scaleY = 1; if (includeScale && isHTMLElement(element)) { scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1; scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1; } var _ref = isElement(element) ? getWindow(element) : window, visualViewport = _ref.visualViewport; var addVisualOffsets = !isLayoutViewport() && isFixedStrategy; var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX; var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY; var width = clientRect.width / scaleX; var height = clientRect.height / scaleY; return { width: width, height: height, top: y, right: x + width, bottom: y + height, left: x, x: x, y: y }; } // means it doesn't take into account transforms. function getLayoutRect(element) { var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed. // Fixes https://github.com/popperjs/popper-core/issues/1223 var width = element.offsetWidth; var height = element.offsetHeight; if (Math.abs(clientRect.width - width) <= 1) { width = clientRect.width; } if (Math.abs(clientRect.height - height) <= 1) { height = clientRect.height; } return { x: element.offsetLeft, y: element.offsetTop, width: width, height: height }; } function contains(parent, child) { var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method if (parent.contains(child)) { return true; } // then fallback to custom implementation with Shadow DOM support else if (rootNode && isShadowRoot(rootNode)) { var next = child; do { if (next && parent.isSameNode(next)) { return true; } // $FlowFixMe[prop-missing]: need a better way to handle this... next = next.parentNode || next.host; } while (next); } // Give up, the result is false return false; } function getComputedStyle$1(element) { return getWindow(element).getComputedStyle(element); } function isTableElement(element) { return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; } function getDocumentElement(element) { // $FlowFixMe[incompatible-return]: assume body is always available return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] element.document) || window.document).documentElement; } function getParentNode(element) { if (getNodeName(element) === 'html') { return element; } return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle // $FlowFixMe[incompatible-return] // $FlowFixMe[prop-missing] element.assignedSlot || // step into the shadow DOM of the parent of a slotted node element.parentNode || ( // DOM Element detected isShadowRoot(element) ? element.host : null) || // ShadowRoot detected // $FlowFixMe[incompatible-call]: HTMLElement is a Node getDocumentElement(element) // fallback ); } function getTrueOffsetParent(element) { if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837 getComputedStyle$1(element).position === 'fixed') { return null; } return element.offsetParent; } // `.offsetParent` reports `null` for fixed elements, while absolute elements // return the containing block function getContainingBlock(element) { var isFirefox = /firefox/i.test(getUAString()); var isIE = /Trident/i.test(getUAString()); if (isIE && isHTMLElement(element)) { // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport var elementCss = getComputedStyle$1(element); if (elementCss.position === 'fixed') { return null; } } var currentNode = getParentNode(element); if (isShadowRoot(currentNode)) { currentNode = currentNode.host; } while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) { var css = getComputedStyle$1(currentNode); // This is non-exhaustive but covers the most common CSS properties that // create a containing block. // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') { return currentNode; } else { currentNode = currentNode.parentNode; } } return null; } // Gets the closest ancestor positioned element. Handles some edge cases, // such as table ancestors and cross browser bugs. function getOffsetParent(element) { var window = getWindow(element); var offsetParent = getTrueOffsetParent(element); while (offsetParent && isTableElement(offsetParent) && getComputedStyle$1(offsetParent).position === 'static') { offsetParent = getTrueOffsetParent(offsetParent); } if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle$1(offsetParent).position === 'static')) { return window; } return offsetParent || getContainingBlock(element) || window; } function getMainAxisFromPlacement(placement) { return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; } function within(min$1, value, max$1) { return max(min$1, min(value, max$1)); } function withinMaxClamp(min, value, max) { var v = within(min, value, max); return v > max ? max : v; } function getFreshSideObject() { return { top: 0, right: 0, bottom: 0, left: 0 }; } function mergePaddingObject(paddingObject) { return Object.assign({}, getFreshSideObject(), paddingObject); } function expandToHashMap(value, keys) { return keys.reduce(function (hashMap, key) { hashMap[key] = value; return hashMap; }, {}); } var toPaddingObject = function toPaddingObject(padding, state) { padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, { placement: state.placement })) : padding; return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); }; function arrow$2(_ref) { var _state$modifiersData$; var state = _ref.state, name = _ref.name, options = _ref.options; var arrowElement = state.elements.arrow; var popperOffsets = state.modifiersData.popperOffsets; var basePlacement = getBasePlacement(state.placement); var axis = getMainAxisFromPlacement(basePlacement); var isVertical = [left, right].indexOf(basePlacement) >= 0; var len = isVertical ? 'height' : 'width'; if (!arrowElement || !popperOffsets) { return; } var paddingObject = toPaddingObject(options.padding, state); var arrowRect = getLayoutRect(arrowElement); var minProp = axis === 'y' ? top : left; var maxProp = axis === 'y' ? bottom : right; var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len]; var startDiff = popperOffsets[axis] - state.rects.reference[axis]; var arrowOffsetParent = getOffsetParent(arrowElement); var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0; var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is // outside of the popper bounds var min = paddingObject[minProp]; var max = clientSize - arrowRect[len] - paddingObject[maxProp]; var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference; var offset = within(min, center, max); // Prevents breaking syntax highlighting... var axisProp = axis; state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$); } function effect$1(_ref2) { var state = _ref2.state, options = _ref2.options; var _options$element = options.element, arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element; if (arrowElement == null) { return; } // CSS selector if (typeof arrowElement === 'string') { arrowElement = state.elements.popper.querySelector(arrowElement); if (!arrowElement) { return; } } { if (!isHTMLElement(arrowElement)) { console.error(['Popper: "arrow" element must be an HTMLElement (not an SVGElement).', 'To use an SVG arrow, wrap it in an HTMLElement that will be used as', 'the arrow.'].join(' ')); } } if (!contains(state.elements.popper, arrowElement)) { { console.error(['Popper: "arrow" modifier\'s `element` must be a child of the popper', 'element.'].join(' ')); } return; } state.elements.arrow = arrowElement; } // eslint-disable-next-line import/no-unused-modules var arrow$3 = { name: 'arrow', enabled: true, phase: 'main', fn: arrow$2, effect: effect$1, requires: ['popperOffsets'], requiresIfExists: ['preventOverflow'] }; function getVariation(placement) { return placement.split('-')[1]; } var unsetSides = { top: 'auto', right: 'auto', bottom: 'auto', left: 'auto' }; // Round the offsets to the nearest suitable subpixel based on the DPR. // Zooming can change the DPR, but it seems to report a value that will // cleanly divide the values into the appropriate subpixels. function roundOffsetsByDPR(_ref) { var x = _ref.x, y = _ref.y; var win = window; var dpr = win.devicePixelRatio || 1; return { x: round(x * dpr) / dpr || 0, y: round(y * dpr) / dpr || 0 }; } function mapToStyles(_ref2) { var _Object$assign2; var popper = _ref2.popper, popperRect = _ref2.popperRect, placement = _ref2.placement, variation = _ref2.variation, offsets = _ref2.offsets, position = _ref2.position, gpuAcceleration = _ref2.gpuAcceleration, adaptive = _ref2.adaptive, roundOffsets = _ref2.roundOffsets, isFixed = _ref2.isFixed; var _offsets$x = offsets.x, x = _offsets$x === void 0 ? 0 : _offsets$x, _offsets$y = offsets.y, y = _offsets$y === void 0 ? 0 : _offsets$y; var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({ x: x, y: y }) : { x: x, y: y }; x = _ref3.x; y = _ref3.y; var hasX = offsets.hasOwnProperty('x'); var hasY = offsets.hasOwnProperty('y'); var sideX = left; var sideY = top; var win = window; if (adaptive) { var offsetParent = getOffsetParent(popper); var heightProp = 'clientHeight'; var widthProp = 'clientWidth'; if (offsetParent === getWindow(popper)) { offsetParent = getDocumentElement(popper); if (getComputedStyle$1(offsetParent).position !== 'static' && position === 'absolute') { heightProp = 'scrollHeight'; widthProp = 'scrollWidth'; } } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it offsetParent = offsetParent; if (placement === top || (placement === left || placement === right) && variation === end) { sideY = bottom; var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing] offsetParent[heightProp]; y -= offsetY - popperRect.height; y *= gpuAcceleration ? 1 : -1; } if (placement === left || (placement === top || placement === bottom) && variation === end) { sideX = right; var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing] offsetParent[widthProp]; x -= offsetX - popperRect.width; x *= gpuAcceleration ? 1 : -1; } } var commonStyles = Object.assign({ position: position }, adaptive && unsetSides); var _ref4 = roundOffsets === true ? roundOffsetsByDPR({ x: x, y: y }) : { x: x, y: y }; x = _ref4.x; y = _ref4.y; if (gpuAcceleration) { var _Object$assign; return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign)); } return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : '', _Object$assign2[sideX] = hasX ? x + "px" : '', _Object$assign2.transform = '', _Object$assign2)); } function computeStyles(_ref5) { var state = _ref5.state, options = _ref5.options; var _options$gpuAccelerat = options.gpuAcceleration, gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, _options$adaptive = options.adaptive, adaptive = _options$adaptive === void 0 ? true : _options$adaptive, _options$roundOffsets = options.roundOffsets, roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets; { var transitionProperty = getComputedStyle$1(state.elements.popper).transitionProperty || ''; if (adaptive && ['transform', 'top', 'right', 'bottom', 'left'].some(function (property) { return transitionProperty.indexOf(property) >= 0; })) { console.warn(['Popper: Detected CSS transitions on at least one of the following', 'CSS properties: "transform", "top", "right", "bottom", "left".', '\n\n', 'Disable the "computeStyles" modifier\'s `adaptive` option to allow', 'for smooth transitions, or remove these properties from the CSS', 'transition declaration on the popper element if only transitioning', 'opacity or background-color for example.', '\n\n', 'We recommend using the popper element as a wrapper around an inner', 'element that can have any CSS property transitioned for animations.'].join(' ')); } } var commonStyles = { placement: getBasePlacement(state.placement), variation: getVariation(state.placement), popper: state.elements.popper, popperRect: state.rects.popper, gpuAcceleration: gpuAcceleration, isFixed: state.options.strategy === 'fixed' }; if (state.modifiersData.popperOffsets != null) { state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, { offsets: state.modifiersData.popperOffsets, position: state.options.strategy, adaptive: adaptive, roundOffsets: roundOffsets }))); } if (state.modifiersData.arrow != null) { state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, { offsets: state.modifiersData.arrow, position: 'absolute', adaptive: false, roundOffsets: roundOffsets }))); } state.attributes.popper = Object.assign({}, state.attributes.popper, { 'data-popper-placement': state.placement }); } // eslint-disable-next-line import/no-unused-modules var computeStyles$1 = { name: 'computeStyles', enabled: true, phase: 'beforeWrite', fn: computeStyles, data: {} }; var passive = { passive: true }; function effect(_ref) { var state = _ref.state, instance = _ref.instance, options = _ref.options; var _options$scroll = options.scroll, scroll = _options$scroll === void 0 ? true : _options$scroll, _options$resize = options.resize, resize = _options$resize === void 0 ? true : _options$resize; var window = getWindow(state.elements.popper); var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper); if (scroll) { scrollParents.forEach(function (scrollParent) { scrollParent.addEventListener('scroll', instance.update, passive); }); } if (resize) { window.addEventListener('resize', instance.update, passive); } return function () { if (scroll) { scrollParents.forEach(function (scrollParent) { scrollParent.removeEventListener('scroll', instance.update, passive); }); } if (resize) { window.removeEventListener('resize', instance.update, passive); } }; } // eslint-disable-next-line import/no-unused-modules var eventListeners = { name: 'eventListeners', enabled: true, phase: 'write', fn: function fn() {}, effect: effect, data: {} }; var hash$1 = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; function getOppositePlacement(placement) { return placement.replace(/left|right|bottom|top/g, function (matched) { return hash$1[matched]; }); } var hash = { start: 'end', end: 'start' }; function getOppositeVariationPlacement(placement) { return placement.replace(/start|end/g, function (matched) { return hash[matched]; }); } function getWindowScroll(node) { var win = getWindow(node); var scrollLeft = win.pageXOffset; var scrollTop = win.pageYOffset; return { scrollLeft: scrollLeft, scrollTop: scrollTop }; } function getWindowScrollBarX(element) { // If has a CSS width greater than the viewport, then this will be // incorrect for RTL. // Popper 1 is broken in this case and never had a bug report so let's assume // it's not an issue. I don't think anyone ever specifies width on // anyway. // Browsers where the left scrollbar doesn't cause an issue report `0` for // this (e.g. Edge 2019, IE11, Safari) return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft; } function getViewportRect(element, strategy) { var win = getWindow(element); var html = getDocumentElement(element); var visualViewport = win.visualViewport; var width = html.clientWidth; var height = html.clientHeight; var x = 0; var y = 0; if (visualViewport) { width = visualViewport.width; height = visualViewport.height; var layoutViewport = isLayoutViewport(); if (layoutViewport || !layoutViewport && strategy === 'fixed') { x = visualViewport.offsetLeft; y = visualViewport.offsetTop; } } return { width: width, height: height, x: x + getWindowScrollBarX(element), y: y }; } // of the `` and `` rect bounds if horizontally scrollable function getDocumentRect(element) { var _element$ownerDocumen; var html = getDocumentElement(element); var winScroll = getWindowScroll(element); var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body; var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0); var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0); var x = -winScroll.scrollLeft + getWindowScrollBarX(element); var y = -winScroll.scrollTop; if (getComputedStyle$1(body || html).direction === 'rtl') { x += max(html.clientWidth, body ? body.clientWidth : 0) - width; } return { width: width, height: height, x: x, y: y }; } function isScrollParent(element) { // Firefox wants us to check `-x` and `-y` variations as well var _getComputedStyle = getComputedStyle$1(element), overflow = _getComputedStyle.overflow, overflowX = _getComputedStyle.overflowX, overflowY = _getComputedStyle.overflowY; return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX); } function getScrollParent$1(node) { if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) { // $FlowFixMe[incompatible-return]: assume body is always available return node.ownerDocument.body; } if (isHTMLElement(node) && isScrollParent(node)) { return node; } return getScrollParent$1(getParentNode(node)); } /* given a DOM element, return the list of all scroll parents, up the list of ancesors until we get to the top window object. This list is what we attach scroll listeners to, because if any of these parent elements scroll, we'll need to re-calculate the reference element's position. */ function listScrollParents(element, list) { var _element$ownerDocumen; if (list === void 0) { list = []; } var scrollParent = getScrollParent$1(element); var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body); var win = getWindow(scrollParent); var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent; var updatedList = list.concat(target); return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here updatedList.concat(listScrollParents(getParentNode(target))); } function rectToClientRect(rect) { return Object.assign({}, rect, { left: rect.x, top: rect.y, right: rect.x + rect.width, bottom: rect.y + rect.height }); } function getInnerBoundingClientRect(element, strategy) { var rect = getBoundingClientRect(element, false, strategy === 'fixed'); rect.top = rect.top + element.clientTop; rect.left = rect.left + element.clientLeft; rect.bottom = rect.top + element.clientHeight; rect.right = rect.left + element.clientWidth; rect.width = element.clientWidth; rect.height = element.clientHeight; rect.x = rect.left; rect.y = rect.top; return rect; } function getClientRectFromMixedType(element, clippingParent, strategy) { return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element))); } // A "clipping parent" is an overflowable container with the characteristic of // clipping (or hiding) overflowing elements with a position different from // `initial` function getClippingParents(element) { var clippingParents = listScrollParents(getParentNode(element)); var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle$1(element).position) >= 0; var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element; if (!isElement(clipperElement)) { return []; } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414 return clippingParents.filter(function (clippingParent) { return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body'; }); } // Gets the maximum area that the element is visible in due to any number of // clipping parents function getClippingRect(element, boundary, rootBoundary, strategy) { var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary); var clippingParents = [].concat(mainClippingParents, [rootBoundary]); var firstClippingParent = clippingParents[0]; var clippingRect = clippingParents.reduce(function (accRect, clippingParent) { var rect = getClientRectFromMixedType(element, clippingParent, strategy); accRect.top = max(rect.top, accRect.top); accRect.right = min(rect.right, accRect.right); accRect.bottom = min(rect.bottom, accRect.bottom); accRect.left = max(rect.left, accRect.left); return accRect; }, getClientRectFromMixedType(element, firstClippingParent, strategy)); clippingRect.width = clippingRect.right - clippingRect.left; clippingRect.height = clippingRect.bottom - clippingRect.top; clippingRect.x = clippingRect.left; clippingRect.y = clippingRect.top; return clippingRect; } function computeOffsets(_ref) { var reference = _ref.reference, element = _ref.element, placement = _ref.placement; var basePlacement = placement ? getBasePlacement(placement) : null; var variation = placement ? getVariation(placement) : null; var commonX = reference.x + reference.width / 2 - element.width / 2; var commonY = reference.y + reference.height / 2 - element.height / 2; var offsets; switch (basePlacement) { case top: offsets = { x: commonX, y: reference.y - element.height }; break; case bottom: offsets = { x: commonX, y: reference.y + reference.height }; break; case right: offsets = { x: reference.x + reference.width, y: commonY }; break; case left: offsets = { x: reference.x - element.width, y: commonY }; break; default: offsets = { x: reference.x, y: reference.y }; } var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null; if (mainAxis != null) { var len = mainAxis === 'y' ? 'height' : 'width'; switch (variation) { case start: offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2); break; case end: offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2); break; } } return offsets; } function detectOverflow(state, options) { if (options === void 0) { options = {}; } var _options = options, _options$placement = _options.placement, placement = _options$placement === void 0 ? state.placement : _options$placement, _options$strategy = _options.strategy, strategy = _options$strategy === void 0 ? state.strategy : _options$strategy, _options$boundary = _options.boundary, boundary = _options$boundary === void 0 ? clippingParents : _options$boundary, _options$rootBoundary = _options.rootBoundary, rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary, _options$elementConte = _options.elementContext, elementContext = _options$elementConte === void 0 ? popper : _options$elementConte, _options$altBoundary = _options.altBoundary, altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, _options$padding = _options.padding, padding = _options$padding === void 0 ? 0 : _options$padding; var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); var altContext = elementContext === popper ? reference : popper; var popperRect = state.rects.popper; var element = state.elements[altBoundary ? altContext : elementContext]; var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy); var referenceClientRect = getBoundingClientRect(state.elements.reference); var popperOffsets = computeOffsets({ reference: referenceClientRect, element: popperRect, strategy: 'absolute', placement: placement }); var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets)); var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect // 0 or negative = within the clipping rect var overflowOffsets = { top: clippingClientRect.top - elementClientRect.top + paddingObject.top, bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom, left: clippingClientRect.left - elementClientRect.left + paddingObject.left, right: elementClientRect.right - clippingClientRect.right + paddingObject.right }; var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element if (elementContext === popper && offsetData) { var offset = offsetData[placement]; Object.keys(overflowOffsets).forEach(function (key) { var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1; var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x'; overflowOffsets[key] += offset[axis] * multiply; }); } return overflowOffsets; } function computeAutoPlacement(state, options) { if (options === void 0) { options = {}; } var _options = options, placement = _options.placement, boundary = _options.boundary, rootBoundary = _options.rootBoundary, padding = _options.padding, flipVariations = _options.flipVariations, _options$allowedAutoP = _options.allowedAutoPlacements, allowedAutoPlacements = _options$allowedAutoP === void 0 ? placements : _options$allowedAutoP; var variation = getVariation(placement); var placements$1 = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) { return getVariation(placement) === variation; }) : basePlacements; var allowedPlacements = placements$1.filter(function (placement) { return allowedAutoPlacements.indexOf(placement) >= 0; }); if (allowedPlacements.length === 0) { allowedPlacements = placements$1; { console.error(['Popper: The `allowedAutoPlacements` option did not allow any', 'placements. Ensure the `placement` option matches the variation', 'of the allowed placements.', 'For example, "auto" cannot be used to allow "bottom-start".', 'Use "auto-start" instead.'].join(' ')); } } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions... var overflows = allowedPlacements.reduce(function (acc, placement) { acc[placement] = detectOverflow(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, padding: padding })[getBasePlacement(placement)]; return acc; }, {}); return Object.keys(overflows).sort(function (a, b) { return overflows[a] - overflows[b]; }); } function getExpandedFallbackPlacements(placement) { if (getBasePlacement(placement) === auto) { return []; } var oppositePlacement = getOppositePlacement(placement); return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)]; } function flip(_ref) { var state = _ref.state, options = _ref.options, name = _ref.name; if (state.modifiersData[name]._skip) { return; } var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, specifiedFallbackPlacements = options.fallbackPlacements, padding = options.padding, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, _options$flipVariatio = options.flipVariations, flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, allowedAutoPlacements = options.allowedAutoPlacements; var preferredPlacement = state.options.placement; var basePlacement = getBasePlacement(preferredPlacement); var isBasePlacement = basePlacement === preferredPlacement; var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement)); var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) { return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, padding: padding, flipVariations: flipVariations, allowedAutoPlacements: allowedAutoPlacements }) : placement); }, []); var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var checksMap = new Map(); var makeFallbackChecks = true; var firstFittingPlacement = placements[0]; for (var i = 0; i < placements.length; i++) { var placement = placements[i]; var _basePlacement = getBasePlacement(placement); var isStartVariation = getVariation(placement) === start; var isVertical = [top, bottom].indexOf(_basePlacement) >= 0; var len = isVertical ? 'width' : 'height'; var overflow = detectOverflow(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, altBoundary: altBoundary, padding: padding }); var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top; if (referenceRect[len] > popperRect[len]) { mainVariationSide = getOppositePlacement(mainVariationSide); } var altVariationSide = getOppositePlacement(mainVariationSide); var checks = []; if (checkMainAxis) { checks.push(overflow[_basePlacement] <= 0); } if (checkAltAxis) { checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0); } if (checks.every(function (check) { return check; })) { firstFittingPlacement = placement; makeFallbackChecks = false; break; } checksMap.set(placement, checks); } if (makeFallbackChecks) { // `2` may be desired in some cases – research later var numberOfChecks = flipVariations ? 3 : 1; var _loop = function _loop(_i) { var fittingPlacement = placements.find(function (placement) { var checks = checksMap.get(placement); if (checks) { return checks.slice(0, _i).every(function (check) { return check; }); } }); if (fittingPlacement) { firstFittingPlacement = fittingPlacement; return "break"; } }; for (var _i = numberOfChecks; _i > 0; _i--) { var _ret = _loop(_i); if (_ret === "break") break; } } if (state.placement !== firstFittingPlacement) { state.modifiersData[name]._skip = true; state.placement = firstFittingPlacement; state.reset = true; } } // eslint-disable-next-line import/no-unused-modules var flip$1 = { name: 'flip', enabled: true, phase: 'main', fn: flip, requiresIfExists: ['offset'], data: { _skip: false } }; function getSideOffsets(overflow, rect, preventedOffsets) { if (preventedOffsets === void 0) { preventedOffsets = { x: 0, y: 0 }; } return { top: overflow.top - rect.height - preventedOffsets.y, right: overflow.right - rect.width + preventedOffsets.x, bottom: overflow.bottom - rect.height + preventedOffsets.y, left: overflow.left - rect.width - preventedOffsets.x }; } function isAnySideFullyClipped(overflow) { return [top, right, bottom, left].some(function (side) { return overflow[side] >= 0; }); } function hide(_ref) { var state = _ref.state, name = _ref.name; var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var preventedOffsets = state.modifiersData.preventOverflow; var referenceOverflow = detectOverflow(state, { elementContext: 'reference' }); var popperAltOverflow = detectOverflow(state, { altBoundary: true }); var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect); var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets); var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets); var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets); state.modifiersData[name] = { referenceClippingOffsets: referenceClippingOffsets, popperEscapeOffsets: popperEscapeOffsets, isReferenceHidden: isReferenceHidden, hasPopperEscaped: hasPopperEscaped }; state.attributes.popper = Object.assign({}, state.attributes.popper, { 'data-popper-reference-hidden': isReferenceHidden, 'data-popper-escaped': hasPopperEscaped }); } // eslint-disable-next-line import/no-unused-modules var hide$1 = { name: 'hide', enabled: true, phase: 'main', requiresIfExists: ['preventOverflow'], fn: hide }; function distanceAndSkiddingToXY(placement, rects, offset) { var basePlacement = getBasePlacement(placement); var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1; var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, { placement: placement })) : offset, skidding = _ref[0], distance = _ref[1]; skidding = skidding || 0; distance = (distance || 0) * invertDistance; return [left, right].indexOf(basePlacement) >= 0 ? { x: distance, y: skidding } : { x: skidding, y: distance }; } function offset(_ref2) { var state = _ref2.state, options = _ref2.options, name = _ref2.name; var _options$offset = options.offset, offset = _options$offset === void 0 ? [0, 0] : _options$offset; var data = placements.reduce(function (acc, placement) { acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset); return acc; }, {}); var _data$state$placement = data[state.placement], x = _data$state$placement.x, y = _data$state$placement.y; if (state.modifiersData.popperOffsets != null) { state.modifiersData.popperOffsets.x += x; state.modifiersData.popperOffsets.y += y; } state.modifiersData[name] = data; } // eslint-disable-next-line import/no-unused-modules var offset$1 = { name: 'offset', enabled: true, phase: 'main', requires: ['popperOffsets'], fn: offset }; function popperOffsets(_ref) { var state = _ref.state, name = _ref.name; // Offsets are the actual position the popper needs to have to be // properly positioned near its reference element // This is the most basic placement, and will be adjusted by // the modifiers in the next step state.modifiersData[name] = computeOffsets({ reference: state.rects.reference, element: state.rects.popper, strategy: 'absolute', placement: state.placement }); } // eslint-disable-next-line import/no-unused-modules var popperOffsets$1 = { name: 'popperOffsets', enabled: true, phase: 'read', fn: popperOffsets, data: {} }; function getAltAxis(axis) { return axis === 'x' ? 'y' : 'x'; } function preventOverflow(_ref) { var state = _ref.state, options = _ref.options, name = _ref.name; var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, padding = options.padding, _options$tether = options.tether, tether = _options$tether === void 0 ? true : _options$tether, _options$tetherOffset = options.tetherOffset, tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset; var overflow = detectOverflow(state, { boundary: boundary, rootBoundary: rootBoundary, padding: padding, altBoundary: altBoundary }); var basePlacement = getBasePlacement(state.placement); var variation = getVariation(state.placement); var isBasePlacement = !variation; var mainAxis = getMainAxisFromPlacement(basePlacement); var altAxis = getAltAxis(mainAxis); var popperOffsets = state.modifiersData.popperOffsets; var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, { placement: state.placement })) : tetherOffset; var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? { mainAxis: tetherOffsetValue, altAxis: tetherOffsetValue } : Object.assign({ mainAxis: 0, altAxis: 0 }, tetherOffsetValue); var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null; var data = { x: 0, y: 0 }; if (!popperOffsets) { return; } if (checkMainAxis) { var _offsetModifierState$; var mainSide = mainAxis === 'y' ? top : left; var altSide = mainAxis === 'y' ? bottom : right; var len = mainAxis === 'y' ? 'height' : 'width'; var offset = popperOffsets[mainAxis]; var min$1 = offset + overflow[mainSide]; var max$1 = offset - overflow[altSide]; var additive = tether ? -popperRect[len] / 2 : 0; var minLen = variation === start ? referenceRect[len] : popperRect[len]; var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go // outside the reference bounds var arrowElement = state.elements.arrow; var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : { width: 0, height: 0 }; var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject(); var arrowPaddingMin = arrowPaddingObject[mainSide]; var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want // to include its full size in the calculation. If the reference is small // and near the edge of a boundary, the popper can overflow even if the // reference is not overflowing as well (e.g. virtual elements with no // width or height) var arrowLen = within(0, referenceRect[len], arrowRect[len]); var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis; var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis; var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow); var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0; var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0; var tetherMin = offset + minOffset - offsetModifierValue - clientOffset; var tetherMax = offset + maxOffset - offsetModifierValue; var preventedOffset = within(tether ? min(min$1, tetherMin) : min$1, offset, tether ? max(max$1, tetherMax) : max$1); popperOffsets[mainAxis] = preventedOffset; data[mainAxis] = preventedOffset - offset; } if (checkAltAxis) { var _offsetModifierState$2; var _mainSide = mainAxis === 'x' ? top : left; var _altSide = mainAxis === 'x' ? bottom : right; var _offset = popperOffsets[altAxis]; var _len = altAxis === 'y' ? 'height' : 'width'; var _min = _offset + overflow[_mainSide]; var _max = _offset - overflow[_altSide]; var isOriginSide = [top, left].indexOf(basePlacement) !== -1; var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0; var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis; var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max; var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max); popperOffsets[altAxis] = _preventedOffset; data[altAxis] = _preventedOffset - _offset; } state.modifiersData[name] = data; } // eslint-disable-next-line import/no-unused-modules var preventOverflow$1 = { name: 'preventOverflow', enabled: true, phase: 'main', fn: preventOverflow, requiresIfExists: ['offset'] }; function getHTMLElementScroll(element) { return { scrollLeft: element.scrollLeft, scrollTop: element.scrollTop }; } function getNodeScroll(node) { if (node === getWindow(node) || !isHTMLElement(node)) { return getWindowScroll(node); } else { return getHTMLElementScroll(node); } } function isElementScaled(element) { var rect = element.getBoundingClientRect(); var scaleX = round(rect.width) / element.offsetWidth || 1; var scaleY = round(rect.height) / element.offsetHeight || 1; return scaleX !== 1 || scaleY !== 1; } // Returns the composite rect of an element relative to its offsetParent. // Composite means it takes into account transforms as well as layout. function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) { if (isFixed === void 0) { isFixed = false; } var isOffsetParentAnElement = isHTMLElement(offsetParent); var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent); var documentElement = getDocumentElement(offsetParent); var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed); var scroll = { scrollLeft: 0, scrollTop: 0 }; var offsets = { x: 0, y: 0 }; if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) { if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078 isScrollParent(documentElement)) { scroll = getNodeScroll(offsetParent); } if (isHTMLElement(offsetParent)) { offsets = getBoundingClientRect(offsetParent, true); offsets.x += offsetParent.clientLeft; offsets.y += offsetParent.clientTop; } else if (documentElement) { offsets.x = getWindowScrollBarX(documentElement); } } return { x: rect.left + scroll.scrollLeft - offsets.x, y: rect.top + scroll.scrollTop - offsets.y, width: rect.width, height: rect.height }; } function order(modifiers) { var map = new Map(); var visited = new Set(); var result = []; modifiers.forEach(function (modifier) { map.set(modifier.name, modifier); }); // On visiting object, check for its dependencies and visit them recursively function sort(modifier) { visited.add(modifier.name); var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []); requires.forEach(function (dep) { if (!visited.has(dep)) { var depModifier = map.get(dep); if (depModifier) { sort(depModifier); } } }); result.push(modifier); } modifiers.forEach(function (modifier) { if (!visited.has(modifier.name)) { // check for visited object sort(modifier); } }); return result; } function orderModifiers(modifiers) { // order based on dependencies var orderedModifiers = order(modifiers); // order based on phase return modifierPhases.reduce(function (acc, phase) { return acc.concat(orderedModifiers.filter(function (modifier) { return modifier.phase === phase; })); }, []); } function debounce(fn) { var pending; return function () { if (!pending) { pending = new Promise(function (resolve) { Promise.resolve().then(function () { pending = undefined; resolve(fn()); }); }); } return pending; }; } function format$1(str) { for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { args[_key - 1] = arguments[_key]; } return [].concat(args).reduce(function (p, c) { return p.replace(/%s/, c); }, str); } var INVALID_MODIFIER_ERROR = 'Popper: modifier "%s" provided an invalid %s property, expected %s but got %s'; var MISSING_DEPENDENCY_ERROR = 'Popper: modifier "%s" requires "%s", but "%s" modifier is not available'; var VALID_PROPERTIES = ['name', 'enabled', 'phase', 'fn', 'effect', 'requires', 'options']; function validateModifiers(modifiers) { modifiers.forEach(function (modifier) { [].concat(Object.keys(modifier), VALID_PROPERTIES) // IE11-compatible replacement for `new Set(iterable)` .filter(function (value, index, self) { return self.indexOf(value) === index; }).forEach(function (key) { switch (key) { case 'name': if (typeof modifier.name !== 'string') { console.error(format$1(INVALID_MODIFIER_ERROR, String(modifier.name), '"name"', '"string"', "\"" + String(modifier.name) + "\"")); } break; case 'enabled': if (typeof modifier.enabled !== 'boolean') { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"enabled"', '"boolean"', "\"" + String(modifier.enabled) + "\"")); } break; case 'phase': if (modifierPhases.indexOf(modifier.phase) < 0) { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"phase"', "either " + modifierPhases.join(', '), "\"" + String(modifier.phase) + "\"")); } break; case 'fn': if (typeof modifier.fn !== 'function') { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"fn"', '"function"', "\"" + String(modifier.fn) + "\"")); } break; case 'effect': if (modifier.effect != null && typeof modifier.effect !== 'function') { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"effect"', '"function"', "\"" + String(modifier.fn) + "\"")); } break; case 'requires': if (modifier.requires != null && !Array.isArray(modifier.requires)) { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"requires"', '"array"', "\"" + String(modifier.requires) + "\"")); } break; case 'requiresIfExists': if (!Array.isArray(modifier.requiresIfExists)) { console.error(format$1(INVALID_MODIFIER_ERROR, modifier.name, '"requiresIfExists"', '"array"', "\"" + String(modifier.requiresIfExists) + "\"")); } break; case 'options': case 'data': break; default: console.error("PopperJS: an invalid property has been provided to the \"" + modifier.name + "\" modifier, valid properties are " + VALID_PROPERTIES.map(function (s) { return "\"" + s + "\""; }).join(', ') + "; but \"" + key + "\" was provided."); } modifier.requires && modifier.requires.forEach(function (requirement) { if (modifiers.find(function (mod) { return mod.name === requirement; }) == null) { console.error(format$1(MISSING_DEPENDENCY_ERROR, String(modifier.name), requirement, requirement)); } }); }); }); } function uniqueBy(arr, fn) { var identifiers = new Set(); return arr.filter(function (item) { var identifier = fn(item); if (!identifiers.has(identifier)) { identifiers.add(identifier); return true; } }); } function mergeByName(modifiers) { var merged = modifiers.reduce(function (merged, current) { var existing = merged[current.name]; merged[current.name] = existing ? Object.assign({}, existing, current, { options: Object.assign({}, existing.options, current.options), data: Object.assign({}, existing.data, current.data) }) : current; return merged; }, {}); // IE11 does not support Object.values return Object.keys(merged).map(function (key) { return merged[key]; }); } var INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.'; var INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.'; var DEFAULT_OPTIONS = { placement: 'bottom', modifiers: [], strategy: 'absolute' }; function areValidElements() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return !args.some(function (element) { return !(element && typeof element.getBoundingClientRect === 'function'); }); } function popperGenerator(generatorOptions) { if (generatorOptions === void 0) { generatorOptions = {}; } var _generatorOptions = generatorOptions, _generatorOptions$def = _generatorOptions.defaultModifiers, defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, _generatorOptions$def2 = _generatorOptions.defaultOptions, defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2; return function createPopper(reference, popper, options) { if (options === void 0) { options = defaultOptions; } var state = { placement: 'bottom', orderedModifiers: [], options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions), modifiersData: {}, elements: { reference: reference, popper: popper }, attributes: {}, styles: {} }; var effectCleanupFns = []; var isDestroyed = false; var instance = { state: state, setOptions: function setOptions(setOptionsAction) { var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction; cleanupModifierEffects(); state.options = Object.assign({}, defaultOptions, state.options, options); state.scrollParents = { reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [], popper: listScrollParents(popper) }; // Orders the modifiers based on their dependencies and `phase` // properties var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers state.orderedModifiers = orderedModifiers.filter(function (m) { return m.enabled; }); // Validate the provided modifiers so that the consumer will get warned // if one of the modifiers is invalid for any reason { var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function (_ref) { var name = _ref.name; return name; }); validateModifiers(modifiers); if (getBasePlacement(state.options.placement) === auto) { var flipModifier = state.orderedModifiers.find(function (_ref2) { var name = _ref2.name; return name === 'flip'; }); if (!flipModifier) { console.error(['Popper: "auto" placements require the "flip" modifier be', 'present and enabled to work.'].join(' ')); } } var _getComputedStyle = getComputedStyle$1(popper), marginTop = _getComputedStyle.marginTop, marginRight = _getComputedStyle.marginRight, marginBottom = _getComputedStyle.marginBottom, marginLeft = _getComputedStyle.marginLeft; // We no longer take into account `margins` on the popper, and it can // cause bugs with positioning, so we'll warn the consumer if ([marginTop, marginRight, marginBottom, marginLeft].some(function (margin) { return parseFloat(margin); })) { console.warn(['Popper: CSS "margin" styles cannot be used to apply padding', 'between the popper and its reference element or boundary.', 'To replicate margin, use the `offset` modifier, as well as', 'the `padding` option in the `preventOverflow` and `flip`', 'modifiers.'].join(' ')); } } runModifierEffects(); return instance.update(); }, // Sync update – it will always be executed, even if not necessary. This // is useful for low frequency updates where sync behavior simplifies the // logic. // For high frequency updates (e.g. `resize` and `scroll` events), always // prefer the async Popper#update method forceUpdate: function forceUpdate() { if (isDestroyed) { return; } var _state$elements = state.elements, reference = _state$elements.reference, popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements // anymore if (!areValidElements(reference, popper)) { { console.error(INVALID_ELEMENT_ERROR); } return; } // Store the reference and popper rects to be read by modifiers state.rects = { reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'), popper: getLayoutRect(popper) }; // Modifiers have the ability to reset the current update cycle. The // most common use case for this is the `flip` modifier changing the // placement, which then needs to re-run all the modifiers, because the // logic was previously ran for the previous placement and is therefore // stale/incorrect state.reset = false; state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier // is filled with the initial data specified by the modifier. This means // it doesn't persist and is fresh on each update. // To ensure persistent data, use `${name}#persistent` state.orderedModifiers.forEach(function (modifier) { return state.modifiersData[modifier.name] = Object.assign({}, modifier.data); }); var __debug_loops__ = 0; for (var index = 0; index < state.orderedModifiers.length; index++) { { __debug_loops__ += 1; if (__debug_loops__ > 100) { console.error(INFINITE_LOOP_ERROR); break; } } if (state.reset === true) { state.reset = false; index = -1; continue; } var _state$orderedModifie = state.orderedModifiers[index], fn = _state$orderedModifie.fn, _state$orderedModifie2 = _state$orderedModifie.options, _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, name = _state$orderedModifie.name; if (typeof fn === 'function') { state = fn({ state: state, options: _options, name: name, instance: instance }) || state; } } }, // Async and optimistically optimized update – it will not be executed if // not necessary (debounced to run at most once-per-tick) update: debounce(function () { return new Promise(function (resolve) { instance.forceUpdate(); resolve(state); }); }), destroy: function destroy() { cleanupModifierEffects(); isDestroyed = true; } }; if (!areValidElements(reference, popper)) { { console.error(INVALID_ELEMENT_ERROR); } return instance; } instance.setOptions(options).then(function (state) { if (!isDestroyed && options.onFirstUpdate) { options.onFirstUpdate(state); } }); // Modifiers have the ability to execute arbitrary code before the first // update cycle runs. They will be executed in the same order as the update // cycle. This is useful when a modifier adds some persistent data that // other modifiers need to use, but the modifier is run after the dependent // one. function runModifierEffects() { state.orderedModifiers.forEach(function (_ref3) { var name = _ref3.name, _ref3$options = _ref3.options, options = _ref3$options === void 0 ? {} : _ref3$options, effect = _ref3.effect; if (typeof effect === 'function') { var cleanupFn = effect({ state: state, name: name, instance: instance, options: options }); var noopFn = function noopFn() {}; effectCleanupFns.push(cleanupFn || noopFn); } }); } function cleanupModifierEffects() { effectCleanupFns.forEach(function (fn) { return fn(); }); effectCleanupFns = []; } return instance; }; } var defaultModifiers = [eventListeners, popperOffsets$1, computeStyles$1, applyStyles$1, offset$1, flip$1, preventOverflow$1, arrow$3, hide$1]; var createPopper = /*#__PURE__*/popperGenerator({ defaultModifiers: defaultModifiers }); // eslint-disable-next-line import/no-unused-modules /* global Map:readonly, Set:readonly, ArrayBuffer:readonly */ var hasElementType = typeof Element !== 'undefined'; var hasMap = typeof Map === 'function'; var hasSet = typeof Set === 'function'; var hasArrayBuffer = typeof ArrayBuffer === 'function' && !!ArrayBuffer.isView; // Note: We **don't** need `envHasBigInt64Array` in fde es6/index.js function equal(a, b) { // START: fast-deep-equal es6/index.js 3.1.1 if (a === b) return true; if (a && b && typeof a == 'object' && typeof b == 'object') { if (a.constructor !== b.constructor) return false; var length, i, keys; if (Array.isArray(a)) { length = a.length; if (length != b.length) return false; for (i = length; i-- !== 0;) if (!equal(a[i], b[i])) return false; return true; } // START: Modifications: // 1. Extra `has &&` helpers in initial condition allow es6 code // to co-exist with es5. // 2. Replace `for of` with es5 compliant iteration using `for`. // Basically, take: // // ```js // for (i of a.entries()) // if (!b.has(i[0])) return false; // ``` // // ... and convert to: // // ```js // it = a.entries(); // while (!(i = it.next()).done) // if (!b.has(i.value[0])) return false; // ``` // // **Note**: `i` access switches to `i.value`. var it; if (hasMap && a instanceof Map && b instanceof Map) { if (a.size !== b.size) return false; it = a.entries(); while (!(i = it.next()).done) if (!b.has(i.value[0])) return false; it = a.entries(); while (!(i = it.next()).done) if (!equal(i.value[1], b.get(i.value[0]))) return false; return true; } if (hasSet && a instanceof Set && b instanceof Set) { if (a.size !== b.size) return false; it = a.entries(); while (!(i = it.next()).done) if (!b.has(i.value[0])) return false; return true; } // END: Modifications if (hasArrayBuffer && ArrayBuffer.isView(a) && ArrayBuffer.isView(b)) { length = a.length; if (length != b.length) return false; for (i = length; i-- !== 0;) if (a[i] !== b[i]) return false; return true; } if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags; if (a.valueOf !== Object.prototype.valueOf) return a.valueOf() === b.valueOf(); if (a.toString !== Object.prototype.toString) return a.toString() === b.toString(); keys = Object.keys(a); length = keys.length; if (length !== Object.keys(b).length) return false; for (i = length; i-- !== 0;) if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false; // END: fast-deep-equal // START: react-fast-compare // custom handling for DOM elements if (hasElementType && a instanceof Element) return false; // custom handling for React/Preact for (i = length; i-- !== 0;) { if ((keys[i] === '_owner' || keys[i] === '__v' || keys[i] === '__o') && a.$$typeof) { // React-specific: avoid traversing React elements' _owner // Preact-specific: avoid traversing Preact elements' __v and __o // __v = $_original / $_vnode // __o = $_owner // These properties contain circular references and are not needed when // comparing the actual elements (and not their owners) // .$$typeof and ._store on just reasonable markers of elements continue; } // all other properties should be traversed as usual if (!equal(a[keys[i]], b[keys[i]])) return false; } // END: react-fast-compare // START: fast-deep-equal return true; } return a !== a && b !== b; } // end fast-deep-equal var reactFastCompare = function isEqual(a, b) { try { return equal(a, b); } catch (error) { if ((error.message || '').match(/stack|recursion/i)) { // warn on circular references, don't crash // browsers give this different errors name and messages: // chrome/safari: "RangeError", "Maximum call stack size exceeded" // firefox: "InternalError", too much recursion" // edge: "Error", "Out of stack space" console.warn('react-fast-compare cannot handle circular refs'); return false; } // some other error. we should definitely know about these throw error; } }; var EMPTY_MODIFIERS$1 = []; var usePopper = function usePopper(referenceElement, popperElement, options) { if (options === void 0) { options = {}; } var prevOptions = React__namespace.useRef(null); var optionsWithDefaults = { onFirstUpdate: options.onFirstUpdate, placement: options.placement || 'bottom', strategy: options.strategy || 'absolute', modifiers: options.modifiers || EMPTY_MODIFIERS$1 }; var _React$useState = React__namespace.useState({ styles: { popper: { position: optionsWithDefaults.strategy, left: '0', top: '0' }, arrow: { position: 'absolute' } }, attributes: {} }), state = _React$useState[0], setState = _React$useState[1]; var updateStateModifier = React__namespace.useMemo(function () { return { name: 'updateState', enabled: true, phase: 'write', fn: function fn(_ref) { var state = _ref.state; var elements = Object.keys(state.elements); ReactDOM__namespace.flushSync(function () { setState({ styles: fromEntries(elements.map(function (element) { return [element, state.styles[element] || {}]; })), attributes: fromEntries(elements.map(function (element) { return [element, state.attributes[element]]; })) }); }); }, requires: ['computeStyles'] }; }, []); var popperOptions = React__namespace.useMemo(function () { var newOptions = { onFirstUpdate: optionsWithDefaults.onFirstUpdate, placement: optionsWithDefaults.placement, strategy: optionsWithDefaults.strategy, modifiers: [].concat(optionsWithDefaults.modifiers, [updateStateModifier, { name: 'applyStyles', enabled: false }]) }; if (reactFastCompare(prevOptions.current, newOptions)) { return prevOptions.current || newOptions; } else { prevOptions.current = newOptions; return newOptions; } }, [optionsWithDefaults.onFirstUpdate, optionsWithDefaults.placement, optionsWithDefaults.strategy, optionsWithDefaults.modifiers, updateStateModifier]); var popperInstanceRef = React__namespace.useRef(); useIsomorphicLayoutEffect(function () { if (popperInstanceRef.current) { popperInstanceRef.current.setOptions(popperOptions); } }, [popperOptions]); useIsomorphicLayoutEffect(function () { if (referenceElement == null || popperElement == null) { return; } var createPopper$1 = options.createPopper || createPopper; var popperInstance = createPopper$1(referenceElement, popperElement, popperOptions); popperInstanceRef.current = popperInstance; return function () { popperInstance.destroy(); popperInstanceRef.current = null; }; }, [referenceElement, popperElement, options.createPopper]); return { state: popperInstanceRef.current ? popperInstanceRef.current.state : null, styles: state.styles, attributes: state.attributes, update: popperInstanceRef.current ? popperInstanceRef.current.update : null, forceUpdate: popperInstanceRef.current ? popperInstanceRef.current.forceUpdate : null }; }; var NOOP = function NOOP() { return void 0; }; var NOOP_PROMISE = function NOOP_PROMISE() { return Promise.resolve(null); }; var EMPTY_MODIFIERS = []; function Popper(_ref) { var _ref$placement = _ref.placement, placement = _ref$placement === void 0 ? 'bottom' : _ref$placement, _ref$strategy = _ref.strategy, strategy = _ref$strategy === void 0 ? 'absolute' : _ref$strategy, _ref$modifiers = _ref.modifiers, modifiers = _ref$modifiers === void 0 ? EMPTY_MODIFIERS : _ref$modifiers, referenceElement = _ref.referenceElement, onFirstUpdate = _ref.onFirstUpdate, innerRef = _ref.innerRef, children = _ref.children; var referenceNode = React__namespace.useContext(ManagerReferenceNodeContext); var _React$useState = React__namespace.useState(null), popperElement = _React$useState[0], setPopperElement = _React$useState[1]; var _React$useState2 = React__namespace.useState(null), arrowElement = _React$useState2[0], setArrowElement = _React$useState2[1]; React__namespace.useEffect(function () { setRef(innerRef, popperElement); }, [innerRef, popperElement]); var options = React__namespace.useMemo(function () { return { placement: placement, strategy: strategy, onFirstUpdate: onFirstUpdate, modifiers: [].concat(modifiers, [{ name: 'arrow', enabled: arrowElement != null, options: { element: arrowElement } }]) }; }, [placement, strategy, onFirstUpdate, modifiers, arrowElement]); var _usePopper = usePopper(referenceElement || referenceNode, popperElement, options), state = _usePopper.state, styles = _usePopper.styles, forceUpdate = _usePopper.forceUpdate, update = _usePopper.update; var childrenProps = React__namespace.useMemo(function () { return { ref: setPopperElement, style: styles.popper, placement: state ? state.placement : placement, hasPopperEscaped: state && state.modifiersData.hide ? state.modifiersData.hide.hasPopperEscaped : null, isReferenceHidden: state && state.modifiersData.hide ? state.modifiersData.hide.isReferenceHidden : null, arrowProps: { style: styles.arrow, ref: setArrowElement }, forceUpdate: forceUpdate || NOOP, update: update || NOOP_PROMISE }; }, [setPopperElement, setArrowElement, placement, state, styles, update, forceUpdate]); return unwrapArray(children)(childrenProps); } /** * Copyright (c) 2014-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var warning = function () {}; { var printWarning = function printWarning(format, args) { var len = arguments.length; args = new Array(len > 1 ? len - 1 : 0); for (var key = 1; key < len; key++) { args[key - 1] = arguments[key]; } var argIndex = 0; var message = 'Warning: ' + format.replace(/%s/g, function () { return args[argIndex++]; }); if (typeof console !== 'undefined') { console.error(message); } try { // --- Welcome to debugging React --- // This error was thrown as a convenience so that you can use this stack // to find the callsite that caused this warning to fire. throw new Error(message); } catch (x) {} }; warning = function (condition, format, args) { var len = arguments.length; args = new Array(len > 2 ? len - 2 : 0); for (var key = 2; key < len; key++) { args[key - 2] = arguments[key]; } if (format === undefined) { throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument'); } if (!condition) { printWarning.apply(null, [format].concat(args)); } }; } var warning_1 = warning; function Reference(_ref) { var children = _ref.children, innerRef = _ref.innerRef; var setReferenceNode = React__namespace.useContext(ManagerReferenceNodeSetterContext); var refHandler = React__namespace.useCallback(function (node) { setRef(innerRef, node); safeInvoke(setReferenceNode, node); }, [innerRef, setReferenceNode]); // ran on unmount // eslint-disable-next-line react-hooks/exhaustive-deps React__namespace.useEffect(function () { return function () { return setRef(innerRef, null); }; }, []); React__namespace.useEffect(function () { warning_1(Boolean(setReferenceNode), '`Reference` should not be used outside of a `Manager` component.'); }, [setReferenceNode]); return unwrapArray(children)({ ref: refHandler }); } function ae$1(e, t) { var r = Object.keys(e); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); t && (n = n.filter(function (t) { return Object.getOwnPropertyDescriptor(e, t).enumerable; })), r.push.apply(r, n); } return r; } function se$1(e) { for (var t = 1; t < arguments.length; t++) { var r = null != arguments[t] ? arguments[t] : {}; t % 2 ? ae$1(Object(r), !0).forEach(function (t) { de(e, t, r[t]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(r)) : ae$1(Object(r)).forEach(function (t) { Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(r, t)); }); } return e; } function ie$4(e) { return (ie$4 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (e) { return typeof e; } : function (e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; })(e); } function pe(e, t) { if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); } function ce$1(e, t) { for (var r = 0; r < t.length; r++) { var n = t[r]; n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, n.key, n); } } function le$1(e, t, r) { return t && ce$1(e.prototype, t), r && ce$1(e, r), Object.defineProperty(e, "prototype", { writable: !1 }), e; } function de(e, t, r) { return t in e ? Object.defineProperty(e, t, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = r, e; } function ue$1() { return (ue$1 = Object.assign || function (e) { for (var t = 1; t < arguments.length; t++) { var r = arguments[t]; for (var n in r) Object.prototype.hasOwnProperty.call(r, n) && (e[n] = r[n]); } return e; }).apply(this, arguments); } function he$1(e, t) { if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); Object.defineProperty(e, "prototype", { value: Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } }), writable: !1 }), t && fe$1(e, t); } function me(e) { return (me = Object.setPrototypeOf ? Object.getPrototypeOf : function (e) { return e.__proto__ || Object.getPrototypeOf(e); })(e); } function fe$1(e, t) { return (fe$1 = Object.setPrototypeOf || function (e, t) { return e.__proto__ = t, e; })(e, t); } function ye(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; } function ve(e, t) { if (t && ("object" == typeof t || "function" == typeof t)) return t; if (void 0 !== t) throw new TypeError("Derived constructors may only return object or undefined"); return ye(e); } function De(e) { var t = function () { if ("undefined" == typeof Reflect || !Reflect.construct) return !1; if (Reflect.construct.sham) return !1; if ("function" == typeof Proxy) return !0; try { return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})), !0; } catch (e) { return !1; } }(); return function () { var r, n = me(e); if (t) { var o = me(this).constructor; r = Reflect.construct(n, arguments, o); } else r = n.apply(this, arguments); return ve(this, r); }; } function we(e) { return function (e) { if (Array.isArray(e)) return ge(e); }(e) || function (e) { if ("undefined" != typeof Symbol && null != e[Symbol.iterator] || null != e["@@iterator"]) return Array.from(e); }(e) || function (e, t) { if (!e) return; if ("string" == typeof e) return ge(e, t); var r = Object.prototype.toString.call(e).slice(8, -1); "Object" === r && e.constructor && (r = e.constructor.name); if ("Map" === r || "Set" === r) return Array.from(e); if ("Arguments" === r || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)) return ge(e, t); }(e) || function () { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }(); } function ge(e, t) { (null == t || t > e.length) && (t = e.length); for (var r = 0, n = new Array(t); r < t; r++) n[r] = e[r]; return n; } function ke(e, t) { switch (e) { case "P": return t.date({ width: "short" }); case "PP": return t.date({ width: "medium" }); case "PPP": return t.date({ width: "long" }); case "PPPP": default: return t.date({ width: "full" }); } } function be(e, t) { switch (e) { case "p": return t.time({ width: "short" }); case "pp": return t.time({ width: "medium" }); case "ppp": return t.time({ width: "long" }); case "pppp": default: return t.time({ width: "full" }); } } var Ce = { p: be, P: function (e, t) { var r, n = e.match(/(P+)(p+)?/) || [], o = n[1], a = n[2]; if (!a) return ke(e, t); switch (o) { case "P": r = t.dateTime({ width: "short" }); break; case "PP": r = t.dateTime({ width: "medium" }); break; case "PPP": r = t.dateTime({ width: "long" }); break; case "PPPP": default: r = t.dateTime({ width: "full" }); } return r.replace("{{date}}", ke(o, t)).replace("{{time}}", be(a, t)); } }, Se = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g; function _e(e) { var t = e ? "string" == typeof e || e instanceof String ? parseISO(e) : toDate(e) : new Date(); return Pe(t) ? t : null; } function Me(e, t, r, n, o) { var a = null, s = Ue(r) || Ue(qe()), i = !0; return Array.isArray(t) ? (t.forEach(function (t) { var p = parse(e, t, new Date(), { locale: s }); n && (i = Pe(p, o) && e === Ee(p, t, r)), Pe(p, o) && i && (a = p); }), a) : (a = parse(e, t, new Date(), { locale: s }), n ? i = Pe(a) && e === Ee(a, t, r) : Pe(a) || (t = t.match(Se).map(function (e) { var t = e[0]; return "p" === t || "P" === t ? s ? (0, Ce[t])(e, s.formatLong) : t : e; }).join(""), e.length > 0 && (a = parse(e, t.slice(0, e.length), new Date())), Pe(a) || (a = new Date(e))), Pe(a) && i ? a : null); } function Pe(e, t) { return t = t || new Date("1/1/1000"), isValid(e) && !isBefore(e, t); } function Ee(e, t, r) { if ("en" === r) return format$2(e, t, { awareOfUnicodeTokens: !0 }); var n = Ue(r); return r && !n && console.warn('A locale object was not found for the provided string ["'.concat(r, '"].')), !n && qe() && Ue(qe()) && (n = Ue(qe())), format$2(e, t, { locale: n || null, awareOfUnicodeTokens: !0 }); } function Ne(e, t) { var r = t.dateFormat, n = t.locale; return e && Ee(e, Array.isArray(r) ? r[0] : r, n) || ""; } function xe(e, t) { var r = t.hour, n = void 0 === r ? 0 : r, o = t.minute, a = void 0 === o ? 0 : o, s = t.second; return setHours(setMinutes(setSeconds(e, void 0 === s ? 0 : s), a), n); } function Ye(e, t) { var r = t && Ue(t) || qe() && Ue(qe()); return getISOWeek(e, r ? { locale: r } : null); } function Oe(e, t) { return Ee(e, "ddd", t); } function Ie(e) { return startOfDay(e); } function Te(e, t, r) { var n = Ue(t || qe()); return startOfWeek(e, { locale: n, weekStartsOn: r }); } function Le(e) { return startOfMonth(e); } function Re(e) { return startOfYear(e); } function Fe(e) { return startOfQuarter(e); } function Ae(e, t) { return e && t ? isSameYear(e, t) : !e && !t; } function Be(e, t) { return e && t ? isSameMonth(e, t) : !e && !t; } function Ke(e, t) { return e && t ? isSameQuarter(e, t) : !e && !t; } function We(e, t) { return e && t ? isSameDay(e, t) : !e && !t; } function je(e, t) { return e && t ? isEqual$1(e, t) : !e && !t; } function He(e, t, r) { var n, o = startOfDay(t), a = endOfDay(r); try { n = isWithinInterval(e, { start: o, end: a }); } catch (e) { n = !1; } return n; } function qe() { return ("undefined" != typeof window ? window : globalThis).__localeId__; } function Ue(e) { if ("string" == typeof e) { var t = "undefined" != typeof window ? window : globalThis; return t.__localeData__ ? t.__localeData__[e] : null; } return e; } function $e(e, t) { return Ee(setMonth(_e(), e), "LLLL", t); } function ze(e, t) { return Ee(setMonth(_e(), e), "LLL", t); } function Ge(e, t) { return Ee(setQuarter(_e(), e), "QQQ", t); } function Je(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.maxDate, o = t.excludeDates, a = t.excludeDateIntervals, s = t.includeDates, i = t.includeDateIntervals, p = t.filterDate; return ot(e, { minDate: r, maxDate: n }) || o && o.some(function (t) { return We(e, t); }) || a && a.some(function (t) { var r = t.start, n = t.end; return isWithinInterval(e, { start: r, end: n }); }) || s && !s.some(function (t) { return We(e, t); }) || i && !i.some(function (t) { var r = t.start, n = t.end; return isWithinInterval(e, { start: r, end: n }); }) || p && !p(_e(e)) || !1; } function Xe(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.excludeDates, n = t.excludeDateIntervals; return n && n.length > 0 ? n.some(function (t) { var r = t.start, n = t.end; return isWithinInterval(e, { start: r, end: n }); }) : r && r.some(function (t) { return We(e, t); }) || !1; } function Ze(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.maxDate, o = t.excludeDates, a = t.includeDates, s = t.filterDate; return ot(e, { minDate: r, maxDate: n }) || o && o.some(function (t) { return Be(e, t); }) || a && !a.some(function (t) { return Be(e, t); }) || s && !s(_e(e)) || !1; } function et(e, t, r, n) { var o = getYear(e), a = getMonth(e), s = getYear(t), i = getMonth(t), p = getYear(n); return o === s && o === p ? a <= r && r <= i : o < s ? p === o && a <= r || p === s && i >= r || p < s && p > o : void 0; } function tt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.maxDate, o = t.excludeDates, a = t.includeDates, s = t.filterDate; return ot(e, { minDate: r, maxDate: n }) || o && o.some(function (t) { return Ke(e, t); }) || a && !a.some(function (t) { return Ke(e, t); }) || s && !s(_e(e)) || !1; } function rt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.maxDate, o = new Date(e, 0, 1); return ot(o, { minDate: r, maxDate: n }) || !1; } function nt(e, t, r, n) { var o = getYear(e), a = getQuarter(e), s = getYear(t), i = getQuarter(t), p = getYear(n); return o === s && o === p ? a <= r && r <= i : o < s ? p === o && a <= r || p === s && i >= r || p < s && p > o : void 0; } function ot(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.maxDate; return r && differenceInCalendarDays(e, r) < 0 || n && differenceInCalendarDays(e, n) > 0; } function at(e, t) { return t.some(function (t) { return getHours(t) === getHours(e) && getMinutes(t) === getMinutes(e); }); } function st(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.excludeTimes, n = t.includeTimes, o = t.filterTime; return r && at(e, r) || n && !at(e, n) || o && !o(e) || !1; } function it(e, t) { var r = t.minTime, n = t.maxTime; if (!r || !n) throw new Error("Both minTime and maxTime props required"); var o, a = _e(), s = setHours(setMinutes(a, getMinutes(e)), getHours(e)), i = setHours(setMinutes(a, getMinutes(r)), getHours(r)), p = setHours(setMinutes(a, getMinutes(n)), getHours(n)); try { o = !isWithinInterval(s, { start: i, end: p }); } catch (e) { o = !1; } return o; } function pt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.includeDates, o = subMonths(e, 1); return r && differenceInCalendarMonths(r, o) > 0 || n && n.every(function (e) { return differenceInCalendarMonths(e, o) > 0; }) || !1; } function ct(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.maxDate, n = t.includeDates, o = addMonths(e, 1); return r && differenceInCalendarMonths(o, r) > 0 || n && n.every(function (e) { return differenceInCalendarMonths(o, e) > 0; }) || !1; } function lt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.includeDates, o = subYears(e, 1); return r && differenceInCalendarYears(r, o) > 0 || n && n.every(function (e) { return differenceInCalendarYears(e, o) > 0; }) || !1; } function dt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.maxDate, n = t.includeDates, o = addYears(e, 1); return r && differenceInCalendarYears(o, r) > 0 || n && n.every(function (e) { return differenceInCalendarYears(o, e) > 0; }) || !1; } function ut(e) { var t = e.minDate, r = e.includeDates; if (r && t) { var n = r.filter(function (e) { return differenceInCalendarDays(e, t) >= 0; }); return min$1(n); } return r ? min$1(r) : t; } function ht(e) { var t = e.maxDate, r = e.includeDates; if (r && t) { var n = r.filter(function (e) { return differenceInCalendarDays(e, t) <= 0; }); return max$1(n); } return r ? max$1(r) : t; } function mt() { for (var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : [], t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : "react-datepicker__day--highlighted", r = new Map(), o = 0, a = e.length; o < a; o++) { var s = e[o]; if (isDate(s)) { var i = Ee(s, "MM.dd.yyyy"), p = r.get(i) || []; p.includes(t) || (p.push(t), r.set(i, p)); } else if ("object" === ie$4(s)) { var c = Object.keys(s), l = c[0], d = s[c[0]]; if ("string" == typeof l && d.constructor === Array) for (var u = 0, h = d.length; u < h; u++) { var m = Ee(d[u], "MM.dd.yyyy"), f = r.get(m) || []; f.includes(l) || (f.push(l), r.set(m, f)); } } } return r; } function ft(e, t, r, n, o) { for (var a = o.length, p = [], c = 0; c < a; c++) { var l = addMinutes(addHours(e, getHours(o[c])), getMinutes(o[c])), d = addMinutes(e, (r + 1) * n); isAfter(l, t) && isBefore(l, d) && p.push(o[c]); } return p; } function yt(e) { return e < 10 ? "0".concat(e) : "".concat(e); } function vt(e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 12, r = Math.ceil(getYear(e) / t) * t, n = r - (t - 1); return { startPeriod: n, endPeriod: r }; } function Dt(e, t, r, n) { for (var o = [], a = 0; a < 2 * t + 1; a++) { var s = e + t - a, i = !0; r && (i = getYear(r) <= s), n && i && (i = getYear(n) >= s), i && o.push(s); } return o; } var wt = onClickOutsideHOC(function (n) { he$1(a, React__default["default"].Component); var o = De(a); function a(r) { var n; pe(this, a), de(ye(n = o.call(this, r)), "renderOptions", function () { var t = n.props.year, r = n.state.yearsList.map(function (r) { return /*#__PURE__*/React__default["default"].createElement("div", { className: t === r ? "react-datepicker__year-option react-datepicker__year-option--selected_year" : "react-datepicker__year-option", key: r, onClick: n.onChange.bind(ye(n), r), "aria-selected": t === r ? "true" : void 0 }, t === r ? /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__year-option--selected" }, "✓") : "", r); }), o = n.props.minDate ? getYear(n.props.minDate) : null, a = n.props.maxDate ? getYear(n.props.maxDate) : null; return a && n.state.yearsList.find(function (e) { return e === a; }) || r.unshift( /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year-option", key: "upcoming", onClick: n.incrementYears }, /*#__PURE__*/React__default["default"].createElement("a", { className: "react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-upcoming" }))), o && n.state.yearsList.find(function (e) { return e === o; }) || r.push( /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year-option", key: "previous", onClick: n.decrementYears }, /*#__PURE__*/React__default["default"].createElement("a", { className: "react-datepicker__navigation react-datepicker__navigation--years react-datepicker__navigation--years-previous" }))), r; }), de(ye(n), "onChange", function (e) { n.props.onChange(e); }), de(ye(n), "handleClickOutside", function () { n.props.onCancel(); }), de(ye(n), "shiftYears", function (e) { var t = n.state.yearsList.map(function (t) { return t + e; }); n.setState({ yearsList: t }); }), de(ye(n), "incrementYears", function () { return n.shiftYears(1); }), de(ye(n), "decrementYears", function () { return n.shiftYears(-1); }); var s = r.yearDropdownItemNumber, i = r.scrollableYearDropdown, p = s || (i ? 10 : 5); return n.state = { yearsList: Dt(n.props.year, p, n.props.minDate, n.props.maxDate) }, n.dropdownRef = /*#__PURE__*/React.createRef(), n; } return le$1(a, [{ key: "componentDidMount", value: function () { var e = this.dropdownRef.current; e && (e.scrollTop = e.scrollHeight / 2 - e.clientHeight / 2); } }, { key: "render", value: function () { var t = classnames$1({ "react-datepicker__year-dropdown": !0, "react-datepicker__year-dropdown--scrollable": this.props.scrollableYearDropdown }); return /*#__PURE__*/React__default["default"].createElement("div", { className: t, ref: this.dropdownRef }, this.renderOptions()); } }]), a; }()), gt = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), s = 0; s < o; s++) a[s] = arguments[s]; return de(ye(t = r.call.apply(r, [this].concat(a))), "state", { dropdownVisible: !1 }), de(ye(t), "renderSelectOptions", function () { for (var r = t.props.minDate ? getYear(t.props.minDate) : 1900, n = t.props.maxDate ? getYear(t.props.maxDate) : 2100, o = [], a = r; a <= n; a++) o.push( /*#__PURE__*/React__default["default"].createElement("option", { key: a, value: a }, a)); return o; }), de(ye(t), "onSelectChange", function (e) { t.onChange(e.target.value); }), de(ye(t), "renderSelectMode", function () { return /*#__PURE__*/React__default["default"].createElement("select", { value: t.props.year, className: "react-datepicker__year-select", onChange: t.onSelectChange }, t.renderSelectOptions()); }), de(ye(t), "renderReadView", function (r) { return /*#__PURE__*/React__default["default"].createElement("div", { key: "read", style: { visibility: r ? "visible" : "hidden" }, className: "react-datepicker__year-read-view", onClick: function (e) { return t.toggleDropdown(e); } }, /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__year-read-view--down-arrow" }), /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__year-read-view--selected-year" }, t.props.year)); }), de(ye(t), "renderDropdown", function () { return /*#__PURE__*/React__default["default"].createElement(wt, { key: "dropdown", year: t.props.year, onChange: t.onChange, onCancel: t.toggleDropdown, minDate: t.props.minDate, maxDate: t.props.maxDate, scrollableYearDropdown: t.props.scrollableYearDropdown, yearDropdownItemNumber: t.props.yearDropdownItemNumber }); }), de(ye(t), "renderScrollMode", function () { var e = t.state.dropdownVisible, r = [t.renderReadView(!e)]; return e && r.unshift(t.renderDropdown()), r; }), de(ye(t), "onChange", function (e) { t.toggleDropdown(), e !== t.props.year && t.props.onChange(e); }), de(ye(t), "toggleDropdown", function (e) { t.setState({ dropdownVisible: !t.state.dropdownVisible }, function () { t.props.adjustDateOnChange && t.handleYearChange(t.props.date, e); }); }), de(ye(t), "handleYearChange", function (e, r) { t.onSelect(e, r), t.setOpen(); }), de(ye(t), "onSelect", function (e, r) { t.props.onSelect && t.props.onSelect(e, r); }), de(ye(t), "setOpen", function () { t.props.setOpen && t.props.setOpen(!0); }), t; } return le$1(n, [{ key: "render", value: function () { var t; switch (this.props.dropdownMode) { case "scroll": t = this.renderScrollMode(); break; case "select": t = this.renderSelectMode(); } return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year-dropdown-container react-datepicker__year-dropdown-container--".concat(this.props.dropdownMode) }, t); } }]), n; }(), kt = onClickOutsideHOC(function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), s = 0; s < o; s++) a[s] = arguments[s]; return de(ye(t = r.call.apply(r, [this].concat(a))), "isSelectedMonth", function (e) { return t.props.month === e; }), de(ye(t), "renderOptions", function () { return t.props.monthNames.map(function (r, n) { return /*#__PURE__*/React__default["default"].createElement("div", { className: t.isSelectedMonth(n) ? "react-datepicker__month-option react-datepicker__month-option--selected_month" : "react-datepicker__month-option", key: r, onClick: t.onChange.bind(ye(t), n), "aria-selected": t.isSelectedMonth(n) ? "true" : void 0 }, t.isSelectedMonth(n) ? /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-option--selected" }, "✓") : "", r); }); }), de(ye(t), "onChange", function (e) { return t.props.onChange(e); }), de(ye(t), "handleClickOutside", function () { return t.props.onCancel(); }), t; } return le$1(n, [{ key: "render", value: function () { return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__month-dropdown" }, this.renderOptions()); } }]), n; }()), bt = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), s = 0; s < o; s++) a[s] = arguments[s]; return de(ye(t = r.call.apply(r, [this].concat(a))), "state", { dropdownVisible: !1 }), de(ye(t), "renderSelectOptions", function (t) { return t.map(function (t, r) { return /*#__PURE__*/React__default["default"].createElement("option", { key: r, value: r }, t); }); }), de(ye(t), "renderSelectMode", function (r) { return /*#__PURE__*/React__default["default"].createElement("select", { value: t.props.month, className: "react-datepicker__month-select", onChange: function (e) { return t.onChange(e.target.value); } }, t.renderSelectOptions(r)); }), de(ye(t), "renderReadView", function (r, n) { return /*#__PURE__*/React__default["default"].createElement("div", { key: "read", style: { visibility: r ? "visible" : "hidden" }, className: "react-datepicker__month-read-view", onClick: t.toggleDropdown }, /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-read-view--down-arrow" }), /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-read-view--selected-month" }, n[t.props.month])); }), de(ye(t), "renderDropdown", function (r) { return /*#__PURE__*/React__default["default"].createElement(kt, { key: "dropdown", month: t.props.month, monthNames: r, onChange: t.onChange, onCancel: t.toggleDropdown }); }), de(ye(t), "renderScrollMode", function (e) { var r = t.state.dropdownVisible, n = [t.renderReadView(!r, e)]; return r && n.unshift(t.renderDropdown(e)), n; }), de(ye(t), "onChange", function (e) { t.toggleDropdown(), e !== t.props.month && t.props.onChange(e); }), de(ye(t), "toggleDropdown", function () { return t.setState({ dropdownVisible: !t.state.dropdownVisible }); }), t; } return le$1(n, [{ key: "render", value: function () { var t, r = this, n = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].map(this.props.useShortMonthInDropdown ? function (e) { return ze(e, r.props.locale); } : function (e) { return $e(e, r.props.locale); }); switch (this.props.dropdownMode) { case "scroll": t = this.renderScrollMode(n); break; case "select": t = this.renderSelectMode(n); } return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__month-dropdown-container react-datepicker__month-dropdown-container--".concat(this.props.dropdownMode) }, t); } }]), n; }(); function Ct(e, t) { for (var r = [], n = Le(e), o = Le(t); !isAfter(n, o);) r.push(_e(n)), n = addMonths(n, 1); return r; } var St = onClickOutsideHOC(function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o(t) { var r; return pe(this, o), de(ye(r = n.call(this, t)), "renderOptions", function () { return r.state.monthYearsList.map(function (t) { var n = getTime(t), o = Ae(r.props.date, t) && Be(r.props.date, t); return /*#__PURE__*/React__default["default"].createElement("div", { className: o ? "react-datepicker__month-year-option--selected_month-year" : "react-datepicker__month-year-option", key: n, onClick: r.onChange.bind(ye(r), n), "aria-selected": o ? "true" : void 0 }, o ? /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-year-option--selected" }, "✓") : "", Ee(t, r.props.dateFormat, r.props.locale)); }); }), de(ye(r), "onChange", function (e) { return r.props.onChange(e); }), de(ye(r), "handleClickOutside", function () { r.props.onCancel(); }), r.state = { monthYearsList: Ct(r.props.minDate, r.props.maxDate) }, r; } return le$1(o, [{ key: "render", value: function () { var t = classnames$1({ "react-datepicker__month-year-dropdown": !0, "react-datepicker__month-year-dropdown--scrollable": this.props.scrollableMonthYearDropdown }); return /*#__PURE__*/React__default["default"].createElement("div", { className: t }, this.renderOptions()); } }]), o; }()), _t = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), s = 0; s < o; s++) a[s] = arguments[s]; return de(ye(t = r.call.apply(r, [this].concat(a))), "state", { dropdownVisible: !1 }), de(ye(t), "renderSelectOptions", function () { for (var r = Le(t.props.minDate), n = Le(t.props.maxDate), o = []; !isAfter(r, n);) { var a = getTime(r); o.push( /*#__PURE__*/React__default["default"].createElement("option", { key: a, value: a }, Ee(r, t.props.dateFormat, t.props.locale))), r = addMonths(r, 1); } return o; }), de(ye(t), "onSelectChange", function (e) { t.onChange(e.target.value); }), de(ye(t), "renderSelectMode", function () { return /*#__PURE__*/React__default["default"].createElement("select", { value: getTime(Le(t.props.date)), className: "react-datepicker__month-year-select", onChange: t.onSelectChange }, t.renderSelectOptions()); }), de(ye(t), "renderReadView", function (r) { var n = Ee(t.props.date, t.props.dateFormat, t.props.locale); return /*#__PURE__*/React__default["default"].createElement("div", { key: "read", style: { visibility: r ? "visible" : "hidden" }, className: "react-datepicker__month-year-read-view", onClick: function (e) { return t.toggleDropdown(e); } }, /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-year-read-view--down-arrow" }), /*#__PURE__*/React__default["default"].createElement("span", { className: "react-datepicker__month-year-read-view--selected-month-year" }, n)); }), de(ye(t), "renderDropdown", function () { return /*#__PURE__*/React__default["default"].createElement(St, { key: "dropdown", date: t.props.date, dateFormat: t.props.dateFormat, onChange: t.onChange, onCancel: t.toggleDropdown, minDate: t.props.minDate, maxDate: t.props.maxDate, scrollableMonthYearDropdown: t.props.scrollableMonthYearDropdown, locale: t.props.locale }); }), de(ye(t), "renderScrollMode", function () { var e = t.state.dropdownVisible, r = [t.renderReadView(!e)]; return e && r.unshift(t.renderDropdown()), r; }), de(ye(t), "onChange", function (e) { t.toggleDropdown(); var r = _e(parseInt(e)); Ae(t.props.date, r) && Be(t.props.date, r) || t.props.onChange(r); }), de(ye(t), "toggleDropdown", function () { return t.setState({ dropdownVisible: !t.state.dropdownVisible }); }), t; } return le$1(n, [{ key: "render", value: function () { var t; switch (this.props.dropdownMode) { case "scroll": t = this.renderScrollMode(); break; case "select": t = this.renderSelectMode(); } return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__month-year-dropdown-container react-datepicker__month-year-dropdown-container--".concat(this.props.dropdownMode) }, t); } }]), n; }(), Mt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o() { var t; pe(this, o); for (var a = arguments.length, s = new Array(a), i = 0; i < a; i++) s[i] = arguments[i]; return de(ye(t = n.call.apply(n, [this].concat(s))), "dayEl", /*#__PURE__*/React__default["default"].createRef()), de(ye(t), "handleClick", function (e) { !t.isDisabled() && t.props.onClick && t.props.onClick(e); }), de(ye(t), "handleMouseEnter", function (e) { !t.isDisabled() && t.props.onMouseEnter && t.props.onMouseEnter(e); }), de(ye(t), "handleOnKeyDown", function (e) { " " === e.key && (e.preventDefault(), e.key = "Enter"), t.props.handleOnKeyDown(e); }), de(ye(t), "isSameDay", function (e) { return We(t.props.day, e); }), de(ye(t), "isKeyboardSelected", function () { return !t.props.disabledKeyboardNavigation && !t.isSameDay(t.props.selected) && t.isSameDay(t.props.preSelection); }), de(ye(t), "isDisabled", function () { return Je(t.props.day, t.props); }), de(ye(t), "isExcluded", function () { return Xe(t.props.day, t.props); }), de(ye(t), "getHighLightedClass", function (e) { var r = t.props, n = r.day, o = r.highlightDates; if (!o) return !1; var a = Ee(n, "MM.dd.yyyy"); return o.get(a); }), de(ye(t), "isInRange", function () { var e = t.props, r = e.day, n = e.startDate, o = e.endDate; return !(!n || !o) && He(r, n, o); }), de(ye(t), "isInSelectingRange", function () { var e, r = t.props, n = r.day, o = r.selectsStart, a = r.selectsEnd, s = r.selectsRange, i = r.selectsDisabledDaysInRange, p = r.startDate, c = r.endDate, l = null !== (e = t.props.selectingDate) && void 0 !== e ? e : t.props.preSelection; return !(!(o || a || s) || !l || !i && t.isDisabled()) && (o && c && (isBefore(l, c) || je(l, c)) ? He(n, l, c) : (a && p && (isAfter(l, p) || je(l, p)) || !(!s || !p || c || !isAfter(l, p) && !je(l, p))) && He(n, p, l)); }), de(ye(t), "isSelectingRangeStart", function () { var e; if (!t.isInSelectingRange()) return !1; var r = t.props, n = r.day, o = r.startDate, a = r.selectsStart, s = null !== (e = t.props.selectingDate) && void 0 !== e ? e : t.props.preSelection; return We(n, a ? s : o); }), de(ye(t), "isSelectingRangeEnd", function () { var e; if (!t.isInSelectingRange()) return !1; var r = t.props, n = r.day, o = r.endDate, a = r.selectsEnd, s = null !== (e = t.props.selectingDate) && void 0 !== e ? e : t.props.preSelection; return We(n, a ? s : o); }), de(ye(t), "isRangeStart", function () { var e = t.props, r = e.day, n = e.startDate, o = e.endDate; return !(!n || !o) && We(n, r); }), de(ye(t), "isRangeEnd", function () { var e = t.props, r = e.day, n = e.startDate, o = e.endDate; return !(!n || !o) && We(o, r); }), de(ye(t), "isWeekend", function () { var e = getDay(t.props.day); return 0 === e || 6 === e; }), de(ye(t), "isAfterMonth", function () { return void 0 !== t.props.month && (t.props.month + 1) % 12 === getMonth(t.props.day); }), de(ye(t), "isBeforeMonth", function () { return void 0 !== t.props.month && (getMonth(t.props.day) + 1) % 12 === t.props.month; }), de(ye(t), "isCurrentDay", function () { return t.isSameDay(_e()); }), de(ye(t), "isSelected", function () { return t.isSameDay(t.props.selected); }), de(ye(t), "getClassNames", function (e) { var n = t.props.dayClassName ? t.props.dayClassName(e) : void 0; return classnames$1("react-datepicker__day", n, "react-datepicker__day--" + Oe(t.props.day), { "react-datepicker__day--disabled": t.isDisabled(), "react-datepicker__day--excluded": t.isExcluded(), "react-datepicker__day--selected": t.isSelected(), "react-datepicker__day--keyboard-selected": t.isKeyboardSelected(), "react-datepicker__day--range-start": t.isRangeStart(), "react-datepicker__day--range-end": t.isRangeEnd(), "react-datepicker__day--in-range": t.isInRange(), "react-datepicker__day--in-selecting-range": t.isInSelectingRange(), "react-datepicker__day--selecting-range-start": t.isSelectingRangeStart(), "react-datepicker__day--selecting-range-end": t.isSelectingRangeEnd(), "react-datepicker__day--today": t.isCurrentDay(), "react-datepicker__day--weekend": t.isWeekend(), "react-datepicker__day--outside-month": t.isAfterMonth() || t.isBeforeMonth() }, t.getHighLightedClass("react-datepicker__day--highlighted")); }), de(ye(t), "getAriaLabel", function () { var e = t.props, r = e.day, n = e.ariaLabelPrefixWhenEnabled, o = void 0 === n ? "Choose" : n, a = e.ariaLabelPrefixWhenDisabled, s = void 0 === a ? "Not available" : a, i = t.isDisabled() || t.isExcluded() ? s : o; return "".concat(i, " ").concat(Ee(r, "PPPP", t.props.locale)); }), de(ye(t), "getTabIndex", function (e, r) { var n = e || t.props.selected, o = r || t.props.preSelection; return t.isKeyboardSelected() || t.isSameDay(n) && We(o, n) ? 0 : -1; }), de(ye(t), "handleFocusDay", function () { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, r = !1; 0 === t.getTabIndex() && !e.isInputFocused && t.isSameDay(t.props.preSelection) && (document.activeElement && document.activeElement !== document.body || (r = !0), t.props.inline && !t.props.shouldFocusDayInline && (r = !1), t.props.containerRef && t.props.containerRef.current && t.props.containerRef.current.contains(document.activeElement) && document.activeElement.classList.contains("react-datepicker__day") && (r = !0)), r && t.dayEl.current.focus({ preventScroll: !0 }); }), de(ye(t), "renderDayContents", function () { return t.props.monthShowsDuplicateDaysEnd && t.isAfterMonth() || t.props.monthShowsDuplicateDaysStart && t.isBeforeMonth() ? null : t.props.renderDayContents ? t.props.renderDayContents(getDate(t.props.day), t.props.day) : getDate(t.props.day); }), de(ye(t), "render", function () { return /*#__PURE__*/React__default["default"].createElement("div", { ref: t.dayEl, className: t.getClassNames(t.props.day), onKeyDown: t.handleOnKeyDown, onClick: t.handleClick, onMouseEnter: t.handleMouseEnter, tabIndex: t.getTabIndex(), "aria-label": t.getAriaLabel(), role: "option", "aria-disabled": t.isDisabled(), "aria-current": t.isCurrentDay() ? "date" : void 0, "aria-selected": t.isSelected() }, t.renderDayContents()); }), t; } return le$1(o, [{ key: "componentDidMount", value: function () { this.handleFocusDay(); } }, { key: "componentDidUpdate", value: function (e) { this.handleFocusDay(e); } }]), o; }(), Pt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o() { var e; pe(this, o); for (var t = arguments.length, r = new Array(t), a = 0; a < t; a++) r[a] = arguments[a]; return de(ye(e = n.call.apply(n, [this].concat(r))), "handleClick", function (t) { e.props.onClick && e.props.onClick(t); }), e; } return le$1(o, [{ key: "render", value: function () { var t = this.props, n = t.weekNumber, o = t.ariaLabelPrefix, a = void 0 === o ? "week " : o, s = { "react-datepicker__week-number": !0, "react-datepicker__week-number--clickable": !!t.onClick }; return /*#__PURE__*/React__default["default"].createElement("div", { className: classnames$1(s), "aria-label": "".concat(a, " ").concat(this.props.weekNumber), onClick: this.handleClick }, n); } }]), o; }(), Et = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), s = 0; s < o; s++) a[s] = arguments[s]; return de(ye(t = r.call.apply(r, [this].concat(a))), "handleDayClick", function (e, r) { t.props.onDayClick && t.props.onDayClick(e, r); }), de(ye(t), "handleDayMouseEnter", function (e) { t.props.onDayMouseEnter && t.props.onDayMouseEnter(e); }), de(ye(t), "handleWeekClick", function (e, r, n) { "function" == typeof t.props.onWeekSelect && t.props.onWeekSelect(e, r, n), t.props.shouldCloseOnSelect && t.props.setOpen(!1); }), de(ye(t), "formatWeekNumber", function (e) { return t.props.formatWeekNumber ? t.props.formatWeekNumber(e) : Ye(e); }), de(ye(t), "renderDays", function () { var r = Te(t.props.day, t.props.locale, t.props.calendarStartDay), n = [], o = t.formatWeekNumber(r); if (t.props.showWeekNumber) { var a = t.props.onWeekSelect ? t.handleWeekClick.bind(ye(t), r, o) : void 0; n.push( /*#__PURE__*/React__default["default"].createElement(Pt, { key: "W", weekNumber: o, onClick: a, ariaLabelPrefix: t.props.ariaLabelPrefix })); } return n.concat([0, 1, 2, 3, 4, 5, 6].map(function (n) { var o = addDays(r, n); return /*#__PURE__*/React__default["default"].createElement(Mt, { ariaLabelPrefixWhenEnabled: t.props.chooseDayAriaLabelPrefix, ariaLabelPrefixWhenDisabled: t.props.disabledDayAriaLabelPrefix, key: o.valueOf(), day: o, month: t.props.month, onClick: t.handleDayClick.bind(ye(t), o), onMouseEnter: t.handleDayMouseEnter.bind(ye(t), o), minDate: t.props.minDate, maxDate: t.props.maxDate, excludeDates: t.props.excludeDates, excludeDateIntervals: t.props.excludeDateIntervals, includeDates: t.props.includeDates, includeDateIntervals: t.props.includeDateIntervals, highlightDates: t.props.highlightDates, selectingDate: t.props.selectingDate, filterDate: t.props.filterDate, preSelection: t.props.preSelection, selected: t.props.selected, selectsStart: t.props.selectsStart, selectsEnd: t.props.selectsEnd, selectsRange: t.props.selectsRange, selectsDisabledDaysInRange: t.props.selectsDisabledDaysInRange, startDate: t.props.startDate, endDate: t.props.endDate, dayClassName: t.props.dayClassName, renderDayContents: t.props.renderDayContents, disabledKeyboardNavigation: t.props.disabledKeyboardNavigation, handleOnKeyDown: t.props.handleOnKeyDown, isInputFocused: t.props.isInputFocused, containerRef: t.props.containerRef, inline: t.props.inline, shouldFocusDayInline: t.props.shouldFocusDayInline, monthShowsDuplicateDaysEnd: t.props.monthShowsDuplicateDaysEnd, monthShowsDuplicateDaysStart: t.props.monthShowsDuplicateDaysStart, locale: t.props.locale }); })); }), t; } return le$1(n, [{ key: "render", value: function () { return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__week" }, this.renderDays()); } }], [{ key: "defaultProps", get: function () { return { shouldCloseOnSelect: !0 }; } }]), n; }(), Nt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o() { var t; pe(this, o); for (var a = arguments.length, s = new Array(a), i = 0; i < a; i++) s[i] = arguments[i]; return de(ye(t = n.call.apply(n, [this].concat(s))), "MONTH_REFS", we(Array(12)).map(function () { return /*#__PURE__*/React__default["default"].createRef(); })), de(ye(t), "isDisabled", function (e) { return Je(e, t.props); }), de(ye(t), "isExcluded", function (e) { return Xe(e, t.props); }), de(ye(t), "handleDayClick", function (e, r) { t.props.onDayClick && t.props.onDayClick(e, r, t.props.orderInDisplay); }), de(ye(t), "handleDayMouseEnter", function (e) { t.props.onDayMouseEnter && t.props.onDayMouseEnter(e); }), de(ye(t), "handleMouseLeave", function () { t.props.onMouseLeave && t.props.onMouseLeave(); }), de(ye(t), "isRangeStartMonth", function (e) { var r = t.props, n = r.day, o = r.startDate, a = r.endDate; return !(!o || !a) && Be(setMonth(n, e), o); }), de(ye(t), "isRangeStartQuarter", function (e) { var r = t.props, n = r.day, o = r.startDate, a = r.endDate; return !(!o || !a) && Ke(setQuarter(n, e), o); }), de(ye(t), "isRangeEndMonth", function (e) { var r = t.props, n = r.day, o = r.startDate, a = r.endDate; return !(!o || !a) && Be(setMonth(n, e), a); }), de(ye(t), "isRangeEndQuarter", function (e) { var r = t.props, n = r.day, o = r.startDate, a = r.endDate; return !(!o || !a) && Ke(setQuarter(n, e), a); }), de(ye(t), "isWeekInMonth", function (e) { var r = t.props.day, n = addDays(e, 6); return Be(e, r) || Be(n, r); }), de(ye(t), "isCurrentMonth", function (e, t) { return getYear(e) === getYear(_e()) && t === getMonth(_e()); }), de(ye(t), "isSelectedMonth", function (e, t, r) { return getMonth(e) === t && getYear(e) === getYear(r); }), de(ye(t), "isSelectedQuarter", function (e, t, r) { return getQuarter(e) === t && getYear(e) === getYear(r); }), de(ye(t), "renderWeeks", function () { for (var r = [], n = t.props.fixedHeight, o = 0, a = !1, s = Te(Le(t.props.day), t.props.locale, t.props.calendarStartDay); r.push( /*#__PURE__*/React__default["default"].createElement(Et, { ariaLabelPrefix: t.props.weekAriaLabelPrefix, chooseDayAriaLabelPrefix: t.props.chooseDayAriaLabelPrefix, disabledDayAriaLabelPrefix: t.props.disabledDayAriaLabelPrefix, key: o, day: s, month: getMonth(t.props.day), onDayClick: t.handleDayClick, onDayMouseEnter: t.handleDayMouseEnter, onWeekSelect: t.props.onWeekSelect, formatWeekNumber: t.props.formatWeekNumber, locale: t.props.locale, minDate: t.props.minDate, maxDate: t.props.maxDate, excludeDates: t.props.excludeDates, excludeDateIntervals: t.props.excludeDateIntervals, includeDates: t.props.includeDates, includeDateIntervals: t.props.includeDateIntervals, inline: t.props.inline, shouldFocusDayInline: t.props.shouldFocusDayInline, highlightDates: t.props.highlightDates, selectingDate: t.props.selectingDate, filterDate: t.props.filterDate, preSelection: t.props.preSelection, selected: t.props.selected, selectsStart: t.props.selectsStart, selectsEnd: t.props.selectsEnd, selectsRange: t.props.selectsRange, selectsDisabledDaysInRange: t.props.selectsDisabledDaysInRange, showWeekNumber: t.props.showWeekNumbers, startDate: t.props.startDate, endDate: t.props.endDate, dayClassName: t.props.dayClassName, setOpen: t.props.setOpen, shouldCloseOnSelect: t.props.shouldCloseOnSelect, disabledKeyboardNavigation: t.props.disabledKeyboardNavigation, renderDayContents: t.props.renderDayContents, handleOnKeyDown: t.props.handleOnKeyDown, isInputFocused: t.props.isInputFocused, containerRef: t.props.containerRef, calendarStartDay: t.props.calendarStartDay, monthShowsDuplicateDaysEnd: t.props.monthShowsDuplicateDaysEnd, monthShowsDuplicateDaysStart: t.props.monthShowsDuplicateDaysStart })), !a;) { o++, s = addWeeks(s, 1); var i = n && o >= 6, p = !n && !t.isWeekInMonth(s); if (i || p) { if (!t.props.peekNextMonth) break; a = !0; } } return r; }), de(ye(t), "onMonthClick", function (e, r) { t.handleDayClick(Le(setMonth(t.props.day, r)), e); }), de(ye(t), "handleMonthNavigation", function (e, r) { t.isDisabled(r) || t.isExcluded(r) || (t.props.setPreSelection(r), t.MONTH_REFS[e].current && t.MONTH_REFS[e].current.focus()); }), de(ye(t), "onMonthKeyDown", function (e, r) { var n = e.key; if (!t.props.disabledKeyboardNavigation) switch (n) { case "Enter": t.onMonthClick(e, r), t.props.setPreSelection(t.props.selected); break; case "ArrowRight": t.handleMonthNavigation(11 === r ? 0 : r + 1, addMonths(t.props.preSelection, 1)); break; case "ArrowLeft": t.handleMonthNavigation(0 === r ? 11 : r - 1, subMonths(t.props.preSelection, 1)); } }), de(ye(t), "onQuarterClick", function (e, r) { t.handleDayClick(Fe(setQuarter(t.props.day, r)), e); }), de(ye(t), "getMonthClassNames", function (e) { var n = t.props, o = n.day, a = n.startDate, s = n.endDate, i = n.selected, p = n.minDate, c = n.maxDate, l = n.preSelection, d = n.monthClassName, u = d ? d(o) : void 0; return classnames$1("react-datepicker__month-text", "react-datepicker__month-".concat(e), u, { "react-datepicker__month--disabled": (p || c) && Ze(setMonth(o, e), t.props), "react-datepicker__month--selected": t.isSelectedMonth(o, e, i), "react-datepicker__month-text--keyboard-selected": getMonth(l) === e, "react-datepicker__month--in-range": et(a, s, e, o), "react-datepicker__month--range-start": t.isRangeStartMonth(e), "react-datepicker__month--range-end": t.isRangeEndMonth(e), "react-datepicker__month-text--today": t.isCurrentMonth(o, e) }); }), de(ye(t), "getTabIndex", function (e) { var r = getMonth(t.props.preSelection); return t.props.disabledKeyboardNavigation || e !== r ? "-1" : "0"; }), de(ye(t), "getAriaLabel", function (e) { var r = t.props, n = r.chooseDayAriaLabelPrefix, o = void 0 === n ? "Choose" : n, a = r.disabledDayAriaLabelPrefix, s = void 0 === a ? "Not available" : a, i = r.day, p = setMonth(i, e), c = t.isDisabled(p) || t.isExcluded(p) ? s : o; return "".concat(c, " ").concat(Ee(p, "MMMM yyyy")); }), de(ye(t), "getQuarterClassNames", function (e) { var n = t.props, o = n.day, a = n.startDate, s = n.endDate, i = n.selected, p = n.minDate, c = n.maxDate; return classnames$1("react-datepicker__quarter-text", "react-datepicker__quarter-".concat(e), { "react-datepicker__quarter--disabled": (p || c) && tt(setQuarter(o, e), t.props), "react-datepicker__quarter--selected": t.isSelectedQuarter(o, e, i), "react-datepicker__quarter--in-range": nt(a, s, e, o), "react-datepicker__quarter--range-start": t.isRangeStartQuarter(e), "react-datepicker__quarter--range-end": t.isRangeEndQuarter(e) }); }), de(ye(t), "renderMonths", function () { var r = t.props, n = r.showFullMonthYearPicker, o = r.showTwoColumnMonthYearPicker, a = r.showFourColumnMonthYearPicker, s = r.locale, i = r.day, p = r.selected; return (a ? [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11]] : o ? [[0, 1], [2, 3], [4, 5], [6, 7], [8, 9], [10, 11]] : [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, 10, 11]]).map(function (r, o) { return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__month-wrapper", key: o }, r.map(function (r, o) { return /*#__PURE__*/React__default["default"].createElement("div", { ref: t.MONTH_REFS[r], key: o, onClick: function (e) { t.onMonthClick(e, r); }, onKeyDown: function (e) { t.onMonthKeyDown(e, r); }, tabIndex: t.getTabIndex(r), className: t.getMonthClassNames(r), role: "option", "aria-label": t.getAriaLabel(r), "aria-current": t.isCurrentMonth(i, r) ? "date" : void 0, "aria-selected": t.isSelectedMonth(i, r, p) }, n ? $e(r, s) : ze(r, s)); })); }); }), de(ye(t), "renderQuarters", function () { var r = t.props, n = r.day, o = r.selected; return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__quarter-wrapper" }, [1, 2, 3, 4].map(function (r, a) { return /*#__PURE__*/React__default["default"].createElement("div", { key: a, role: "option", onClick: function (e) { t.onQuarterClick(e, r); }, className: t.getQuarterClassNames(r), "aria-selected": t.isSelectedQuarter(n, r, o) }, Ge(r, t.props.locale)); })); }), de(ye(t), "getClassNames", function () { var e = t.props; e.day; var n = e.selectingDate, o = e.selectsStart, a = e.selectsEnd, s = e.showMonthYearPicker, i = e.showQuarterYearPicker; return classnames$1("react-datepicker__month", { "react-datepicker__month--selecting-range": n && (o || a) }, { "react-datepicker__monthPicker": s }, { "react-datepicker__quarterPicker": i }); }), t; } return le$1(o, [{ key: "render", value: function () { var t = this.props, r = t.showMonthYearPicker, n = t.showQuarterYearPicker, o = t.day, a = t.ariaLabelPrefix, s = void 0 === a ? "month " : a; return /*#__PURE__*/React__default["default"].createElement("div", { className: this.getClassNames(), onMouseLeave: this.handleMouseLeave, "aria-label": "".concat(s, " ").concat(Ee(o, "yyyy-MM")), role: "listbox" }, r ? this.renderMonths() : n ? this.renderQuarters() : this.renderWeeks()); } }]), o; }(), xt = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n() { var t; pe(this, n); for (var o = arguments.length, a = new Array(o), i = 0; i < o; i++) a[i] = arguments[i]; return de(ye(t = r.call.apply(r, [this].concat(a))), "state", { height: null }), de(ye(t), "handleClick", function (e) { (t.props.minTime || t.props.maxTime) && it(e, t.props) || (t.props.excludeTimes || t.props.includeTimes || t.props.filterTime) && st(e, t.props) || t.props.onChange(e); }), de(ye(t), "isSelectedTime", function (e, r, n) { return t.props.selected && r === getHours(e) && n === getMinutes(e); }), de(ye(t), "liClasses", function (e, r, n) { var o = ["react-datepicker__time-list-item", t.props.timeClassName ? t.props.timeClassName(e, r, n) : void 0]; return t.isSelectedTime(e, r, n) && o.push("react-datepicker__time-list-item--selected"), ((t.props.minTime || t.props.maxTime) && it(e, t.props) || (t.props.excludeTimes || t.props.includeTimes || t.props.filterTime) && st(e, t.props)) && o.push("react-datepicker__time-list-item--disabled"), t.props.injectTimes && (60 * getHours(e) + getMinutes(e)) % t.props.intervals != 0 && o.push("react-datepicker__time-list-item--injected"), o.join(" "); }), de(ye(t), "handleOnKeyDown", function (e, r) { " " === e.key && (e.preventDefault(), e.key = "Enter"), "Enter" === e.key && t.handleClick(r), t.props.handleOnKeyDown(e); }), de(ye(t), "renderTimes", function () { for (var r = [], n = t.props.format ? t.props.format : "p", o = t.props.intervals, a = Ie(_e(t.props.selected)), i = 1440 / o, p = t.props.injectTimes && t.props.injectTimes.sort(function (e, t) { return e - t; }), c = t.props.selected || t.props.openToDate || _e(), l = getHours(c), d = getMinutes(c), u = setHours(setMinutes(a, d), l), h = 0; h < i; h++) { var m = addMinutes(a, h * o); if (r.push(m), p) { var f = ft(a, m, h, o, p); r = r.concat(f); } } return r.map(function (r, o) { return /*#__PURE__*/React__default["default"].createElement("li", { key: o, onClick: t.handleClick.bind(ye(t), r), className: t.liClasses(r, l, d), ref: function (e) { (isBefore(r, u) || je(r, u)) && (t.centerLi = e); }, onKeyDown: function (e) { t.handleOnKeyDown(e, r); }, tabIndex: "0", "aria-selected": t.isSelectedTime(r, l, d) ? "true" : void 0 }, Ee(r, n, t.props.locale)); }); }), t; } return le$1(n, [{ key: "componentDidMount", value: function () { this.list.scrollTop = n.calcCenterPosition(this.props.monthRef ? this.props.monthRef.clientHeight - this.header.clientHeight : this.list.clientHeight, this.centerLi), this.props.monthRef && this.header && this.setState({ height: this.props.monthRef.clientHeight - this.header.clientHeight }); } }, { key: "render", value: function () { var t = this, r = this.state.height; return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__time-container ".concat(this.props.todayButton ? "react-datepicker__time-container--with-today-button" : "") }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__header react-datepicker__header--time ".concat(this.props.showTimeSelectOnly ? "react-datepicker__header--time--only" : ""), ref: function (e) { t.header = e; } }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker-time__header" }, this.props.timeCaption)), /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__time" }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__time-box" }, /*#__PURE__*/React__default["default"].createElement("ul", { className: "react-datepicker__time-list", ref: function (e) { t.list = e; }, style: r ? { height: r } : {}, tabIndex: "0" }, this.renderTimes())))); } }], [{ key: "defaultProps", get: function () { return { intervals: 30, onTimeChange: function () {}, todayButton: null, timeCaption: "Time" }; } }]), n; }(); de(xt, "calcCenterPosition", function (e, t) { return t.offsetTop - (e / 2 - t.clientHeight / 2); }); var Yt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o(t) { var a; return pe(this, o), de(ye(a = n.call(this, t)), "YEAR_REFS", we(Array(a.props.yearItemNumber)).map(function () { return /*#__PURE__*/React__default["default"].createRef(); })), de(ye(a), "isDisabled", function (e) { return Je(e, a.props); }), de(ye(a), "isExcluded", function (e) { return Xe(e, a.props); }), de(ye(a), "updateFocusOnPaginate", function (e) { var t = function () { this.YEAR_REFS[e].current.focus(); }.bind(ye(a)); window.requestAnimationFrame(t); }), de(ye(a), "handleYearClick", function (e, t) { a.props.onDayClick && a.props.onDayClick(e, t); }), de(ye(a), "handleYearNavigation", function (e, t) { var r = a.props, n = r.date, o = r.yearItemNumber, s = vt(n, o).startPeriod; a.isDisabled(t) || a.isExcluded(t) || (a.props.setPreSelection(t), e - s == -1 ? a.updateFocusOnPaginate(o - 1) : e - s === o ? a.updateFocusOnPaginate(0) : a.YEAR_REFS[e - s].current.focus()); }), de(ye(a), "isSameDay", function (e, t) { return We(e, t); }), de(ye(a), "isCurrentYear", function (e) { return e === getYear(_e()); }), de(ye(a), "isKeyboardSelected", function (e) { var t = Re(setYear(a.props.date, e)); return !a.props.disabledKeyboardNavigation && !a.props.inline && !We(t, Re(a.props.selected)) && We(t, Re(a.props.preSelection)); }), de(ye(a), "onYearClick", function (e, t) { var r = a.props.date; a.handleYearClick(Re(setYear(r, t)), e); }), de(ye(a), "onYearKeyDown", function (e, t) { var r = e.key; if (!a.props.disabledKeyboardNavigation) switch (r) { case "Enter": a.onYearClick(e, t), a.props.setPreSelection(a.props.selected); break; case "ArrowRight": a.handleYearNavigation(t + 1, addYears(a.props.preSelection, 1)); break; case "ArrowLeft": a.handleYearNavigation(t - 1, subYears(a.props.preSelection, 1)); } }), de(ye(a), "getYearClassNames", function (e) { var t = a.props, n = t.minDate, o = t.maxDate, s = t.selected; return classnames$1("react-datepicker__year-text", { "react-datepicker__year-text--selected": e === getYear(s), "react-datepicker__year-text--disabled": (n || o) && rt(e, a.props), "react-datepicker__year-text--keyboard-selected": a.isKeyboardSelected(e), "react-datepicker__year-text--today": a.isCurrentYear(e) }); }), de(ye(a), "getYearTabIndex", function (e) { return a.props.disabledKeyboardNavigation ? "-1" : e === getYear(a.props.preSelection) ? "0" : "-1"; }), a; } return le$1(o, [{ key: "render", value: function () { for (var t = this, r = [], n = this.props, o = vt(n.date, n.yearItemNumber), a = o.startPeriod, s = o.endPeriod, i = function (n) { r.push( /*#__PURE__*/React__default["default"].createElement("div", { ref: t.YEAR_REFS[n - a], onClick: function (e) { t.onYearClick(e, n); }, onKeyDown: function (e) { t.onYearKeyDown(e, n); }, tabIndex: t.getYearTabIndex(n), className: t.getYearClassNames(n), key: n, "aria-current": t.isCurrentYear(n) ? "date" : void 0 }, n)); }, p = a; p <= s; p++) i(p); return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year" }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year-wrapper" }, r)); } }]), o; }(), Ot = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n(t) { var o; return pe(this, n), de(ye(o = r.call(this, t)), "onTimeChange", function (e) { o.setState({ time: e }); var t = new Date(); t.setHours(e.split(":")[0]), t.setMinutes(e.split(":")[1]), o.props.onChange(t); }), de(ye(o), "renderTimeInput", function () { var t = o.state.time, r = o.props, n = r.date, a = r.timeString, s = r.customTimeInput; return s ? /*#__PURE__*/React__default["default"].cloneElement(s, { date: n, value: t, onChange: o.onTimeChange }) : /*#__PURE__*/React__default["default"].createElement("input", { type: "time", className: "react-datepicker-time__input", placeholder: "Time", name: "time-input", required: !0, value: t, onChange: function (e) { o.onTimeChange(e.target.value || a); } }); }), o.state = { time: o.props.timeString }, o; } return le$1(n, [{ key: "render", value: function () { return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__input-time-container" }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker-time__caption" }, this.props.timeInputLabel), /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker-time__input-container" }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker-time__input" }, this.renderTimeInput()))); } }], [{ key: "getDerivedStateFromProps", value: function (e, t) { return e.timeString !== t.time ? { time: e.timeString } : null; } }]), n; }(); function It(t) { var r = t.className, n = t.children, o = t.showPopperArrow, a = t.arrowProps, s = void 0 === a ? {} : a; return /*#__PURE__*/React__default["default"].createElement("div", { className: r }, o && /*#__PURE__*/React__default["default"].createElement("div", ue$1({ className: "react-datepicker__triangle" }, s)), n); } var Tt = ["react-datepicker__year-select", "react-datepicker__month-select", "react-datepicker__month-year-select"], Lt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o(t) { var a; return pe(this, o), de(ye(a = n.call(this, t)), "handleClickOutside", function (e) { a.props.onClickOutside(e); }), de(ye(a), "setClickOutsideRef", function () { return a.containerRef.current; }), de(ye(a), "handleDropdownFocus", function (e) { (function () { var e = ((arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}).className || "").split(/\s+/); return Tt.some(function (t) { return e.indexOf(t) >= 0; }); })(e.target) && a.props.onDropdownFocus(); }), de(ye(a), "getDateInView", function () { var e = a.props, t = e.preSelection, r = e.selected, n = e.openToDate, o = ut(a.props), s = ht(a.props), i = _e(), p = n || r || t; return p || (o && isBefore(i, o) ? o : s && isAfter(i, s) ? s : i); }), de(ye(a), "increaseMonth", function () { a.setState(function (e) { var t = e.date; return { date: addMonths(t, 1) }; }, function () { return a.handleMonthChange(a.state.date); }); }), de(ye(a), "decreaseMonth", function () { a.setState(function (e) { var t = e.date; return { date: subMonths(t, 1) }; }, function () { return a.handleMonthChange(a.state.date); }); }), de(ye(a), "handleDayClick", function (e, t, r) { a.props.onSelect(e, t, r), a.props.setPreSelection && a.props.setPreSelection(e); }), de(ye(a), "handleDayMouseEnter", function (e) { a.setState({ selectingDate: e }), a.props.onDayMouseEnter && a.props.onDayMouseEnter(e); }), de(ye(a), "handleMonthMouseLeave", function () { a.setState({ selectingDate: null }), a.props.onMonthMouseLeave && a.props.onMonthMouseLeave(); }), de(ye(a), "handleYearChange", function (e) { a.props.onYearChange && a.props.onYearChange(e), a.props.adjustDateOnChange && (a.props.onSelect && a.props.onSelect(e), a.props.setOpen && a.props.setOpen(!0)), a.props.setPreSelection && a.props.setPreSelection(e); }), de(ye(a), "handleMonthChange", function (e) { a.props.onMonthChange && a.props.onMonthChange(e), a.props.adjustDateOnChange && (a.props.onSelect && a.props.onSelect(e), a.props.setOpen && a.props.setOpen(!0)), a.props.setPreSelection && a.props.setPreSelection(e); }), de(ye(a), "handleMonthYearChange", function (e) { a.handleYearChange(e), a.handleMonthChange(e); }), de(ye(a), "changeYear", function (e) { a.setState(function (t) { var r = t.date; return { date: setYear(r, e) }; }, function () { return a.handleYearChange(a.state.date); }); }), de(ye(a), "changeMonth", function (e) { a.setState(function (t) { var r = t.date; return { date: setMonth(r, e) }; }, function () { return a.handleMonthChange(a.state.date); }); }), de(ye(a), "changeMonthYear", function (e) { a.setState(function (t) { var r = t.date; return { date: setYear(setMonth(r, getMonth(e)), getYear(e)) }; }, function () { return a.handleMonthYearChange(a.state.date); }); }), de(ye(a), "header", function () { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : a.state.date, n = Te(t, a.props.locale, a.props.calendarStartDay), o = []; return a.props.showWeekNumbers && o.push( /*#__PURE__*/React__default["default"].createElement("div", { key: "W", className: "react-datepicker__day-name" }, a.props.weekLabel || "#")), o.concat([0, 1, 2, 3, 4, 5, 6].map(function (t) { var o = addDays(n, t), s = a.formatWeekday(o, a.props.locale), i = a.props.weekDayClassName ? a.props.weekDayClassName(o) : void 0; return /*#__PURE__*/React__default["default"].createElement("div", { key: t, className: classnames$1("react-datepicker__day-name", i) }, s); })); }), de(ye(a), "formatWeekday", function (e, t) { return a.props.formatWeekDay ? function (e, t, r) { return t(Ee(e, "EEEE", r)); }(e, a.props.formatWeekDay, t) : a.props.useWeekdaysShort ? function (e, t) { return Ee(e, "EEE", t); }(e, t) : function (e, t) { return Ee(e, "EEEEEE", t); }(e, t); }), de(ye(a), "decreaseYear", function () { a.setState(function (e) { var t = e.date; return { date: subYears(t, a.props.showYearPicker ? a.props.yearItemNumber : 1) }; }, function () { return a.handleYearChange(a.state.date); }); }), de(ye(a), "renderPreviousButton", function () { if (!a.props.renderCustomHeader) { var t; switch (!0) { case a.props.showMonthYearPicker: t = lt(a.state.date, a.props); break; case a.props.showYearPicker: t = function (e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.minDate, n = t.yearItemNumber, o = void 0 === n ? 12 : n, a = vt(Re(subYears(e, o)), o).endPeriod, s = r && getYear(r); return s && s > a || !1; }(a.state.date, a.props); break; default: t = pt(a.state.date, a.props); } if ((a.props.forceShowMonthNavigation || a.props.showDisabledMonthNavigation || !t) && !a.props.showTimeSelectOnly) { var r = ["react-datepicker__navigation", "react-datepicker__navigation--previous"], n = a.decreaseMonth; (a.props.showMonthYearPicker || a.props.showQuarterYearPicker || a.props.showYearPicker) && (n = a.decreaseYear), t && a.props.showDisabledMonthNavigation && (r.push("react-datepicker__navigation--previous--disabled"), n = null); var o = a.props.showMonthYearPicker || a.props.showQuarterYearPicker || a.props.showYearPicker, s = a.props, i = s.previousMonthButtonLabel, p = s.previousYearButtonLabel, c = a.props, l = c.previousMonthAriaLabel, d = void 0 === l ? "string" == typeof i ? i : "Previous Month" : l, u = c.previousYearAriaLabel, h = void 0 === u ? "string" == typeof p ? p : "Previous Year" : u; return /*#__PURE__*/React__default["default"].createElement("button", { type: "button", className: r.join(" "), onClick: n, onKeyDown: a.props.handleOnKeyDown, "aria-label": o ? h : d }, /*#__PURE__*/React__default["default"].createElement("span", { className: ["react-datepicker__navigation-icon", "react-datepicker__navigation-icon--previous"].join(" ") }, o ? a.props.previousYearButtonLabel : a.props.previousMonthButtonLabel)); } } }), de(ye(a), "increaseYear", function () { a.setState(function (e) { var t = e.date; return { date: addYears(t, a.props.showYearPicker ? a.props.yearItemNumber : 1) }; }, function () { return a.handleYearChange(a.state.date); }); }), de(ye(a), "renderNextButton", function () { if (!a.props.renderCustomHeader) { var t; switch (!0) { case a.props.showMonthYearPicker: t = dt(a.state.date, a.props); break; case a.props.showYearPicker: t = function (e) { var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}, r = t.maxDate, n = t.yearItemNumber, o = void 0 === n ? 12 : n, a = vt(addYears(e, o), o).startPeriod, s = r && getYear(r); return s && s < a || !1; }(a.state.date, a.props); break; default: t = ct(a.state.date, a.props); } if ((a.props.forceShowMonthNavigation || a.props.showDisabledMonthNavigation || !t) && !a.props.showTimeSelectOnly) { var r = ["react-datepicker__navigation", "react-datepicker__navigation--next"]; a.props.showTimeSelect && r.push("react-datepicker__navigation--next--with-time"), a.props.todayButton && r.push("react-datepicker__navigation--next--with-today-button"); var n = a.increaseMonth; (a.props.showMonthYearPicker || a.props.showQuarterYearPicker || a.props.showYearPicker) && (n = a.increaseYear), t && a.props.showDisabledMonthNavigation && (r.push("react-datepicker__navigation--next--disabled"), n = null); var o = a.props.showMonthYearPicker || a.props.showQuarterYearPicker || a.props.showYearPicker, s = a.props, i = s.nextMonthButtonLabel, p = s.nextYearButtonLabel, c = a.props, l = c.nextMonthAriaLabel, u = void 0 === l ? "string" == typeof i ? i : "Next Month" : l, h = c.nextYearAriaLabel, m = void 0 === h ? "string" == typeof p ? p : "Next Year" : h; return /*#__PURE__*/React__default["default"].createElement("button", { type: "button", className: r.join(" "), onClick: n, onKeyDown: a.props.handleOnKeyDown, "aria-label": o ? m : u }, /*#__PURE__*/React__default["default"].createElement("span", { className: ["react-datepicker__navigation-icon", "react-datepicker__navigation-icon--next"].join(" ") }, o ? a.props.nextYearButtonLabel : a.props.nextMonthButtonLabel)); } } }), de(ye(a), "renderCurrentMonth", function () { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : a.state.date, r = ["react-datepicker__current-month"]; return a.props.showYearDropdown && r.push("react-datepicker__current-month--hasYearDropdown"), a.props.showMonthDropdown && r.push("react-datepicker__current-month--hasMonthDropdown"), a.props.showMonthYearDropdown && r.push("react-datepicker__current-month--hasMonthYearDropdown"), /*#__PURE__*/React__default["default"].createElement("div", { className: r.join(" ") }, Ee(t, a.props.dateFormat, a.props.locale)); }), de(ye(a), "renderYearDropdown", function () { var t = arguments.length > 0 && void 0 !== arguments[0] && arguments[0]; if (a.props.showYearDropdown && !t) return /*#__PURE__*/React__default["default"].createElement(gt, { adjustDateOnChange: a.props.adjustDateOnChange, date: a.state.date, onSelect: a.props.onSelect, setOpen: a.props.setOpen, dropdownMode: a.props.dropdownMode, onChange: a.changeYear, minDate: a.props.minDate, maxDate: a.props.maxDate, year: getYear(a.state.date), scrollableYearDropdown: a.props.scrollableYearDropdown, yearDropdownItemNumber: a.props.yearDropdownItemNumber }); }), de(ye(a), "renderMonthDropdown", function () { var t = arguments.length > 0 && void 0 !== arguments[0] && arguments[0]; if (a.props.showMonthDropdown && !t) return /*#__PURE__*/React__default["default"].createElement(bt, { dropdownMode: a.props.dropdownMode, locale: a.props.locale, onChange: a.changeMonth, month: getMonth(a.state.date), useShortMonthInDropdown: a.props.useShortMonthInDropdown }); }), de(ye(a), "renderMonthYearDropdown", function () { var t = arguments.length > 0 && void 0 !== arguments[0] && arguments[0]; if (a.props.showMonthYearDropdown && !t) return /*#__PURE__*/React__default["default"].createElement(_t, { dropdownMode: a.props.dropdownMode, locale: a.props.locale, dateFormat: a.props.dateFormat, onChange: a.changeMonthYear, minDate: a.props.minDate, maxDate: a.props.maxDate, date: a.state.date, scrollableMonthYearDropdown: a.props.scrollableMonthYearDropdown }); }), de(ye(a), "renderTodayButton", function () { if (a.props.todayButton && !a.props.showTimeSelectOnly) return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__today-button", onClick: function (e) { return a.props.onSelect(startOfDay(_e()), e); } }, a.props.todayButton); }), de(ye(a), "renderDefaultHeader", function (t) { var r = t.monthDate, n = t.i; return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__header ".concat(a.props.showTimeSelect ? "react-datepicker__header--has-time-select" : "") }, a.renderCurrentMonth(r), /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__header__dropdown react-datepicker__header__dropdown--".concat(a.props.dropdownMode), onFocus: a.handleDropdownFocus }, a.renderMonthDropdown(0 !== n), a.renderMonthYearDropdown(0 !== n), a.renderYearDropdown(0 !== n)), /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__day-names" }, a.header(r))); }), de(ye(a), "renderCustomHeader", function () { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, r = t.monthDate, n = t.i; if (a.props.showTimeSelect && !a.state.monthContainer || a.props.showTimeSelectOnly) return null; var o = pt(a.state.date, a.props), s = ct(a.state.date, a.props), i = lt(a.state.date, a.props), p = dt(a.state.date, a.props), c = !a.props.showMonthYearPicker && !a.props.showQuarterYearPicker && !a.props.showYearPicker; return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__header react-datepicker__header--custom", onFocus: a.props.onDropdownFocus }, a.props.renderCustomHeader(se$1(se$1({}, a.state), {}, { customHeaderCount: n, monthDate: r, changeMonth: a.changeMonth, changeYear: a.changeYear, decreaseMonth: a.decreaseMonth, increaseMonth: a.increaseMonth, decreaseYear: a.decreaseYear, increaseYear: a.increaseYear, prevMonthButtonDisabled: o, nextMonthButtonDisabled: s, prevYearButtonDisabled: i, nextYearButtonDisabled: p })), c && /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__day-names" }, a.header(r))); }), de(ye(a), "renderYearHeader", function () { var t = a.state.date, r = a.props, n = r.showYearPicker, o = vt(t, r.yearItemNumber), s = o.startPeriod, i = o.endPeriod; return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__header react-datepicker-year-header" }, n ? "".concat(s, " - ").concat(i) : getYear(t)); }), de(ye(a), "renderHeader", function (e) { switch (!0) { case void 0 !== a.props.renderCustomHeader: return a.renderCustomHeader(e); case a.props.showMonthYearPicker || a.props.showQuarterYearPicker || a.props.showYearPicker: return a.renderYearHeader(e); default: return a.renderDefaultHeader(e); } }), de(ye(a), "renderMonths", function () { if (!a.props.showTimeSelectOnly && !a.props.showYearPicker) { for (var t = [], r = a.props.showPreviousMonths ? a.props.monthsShown - 1 : 0, n = subMonths(a.state.date, r), o = 0; o < a.props.monthsShown; ++o) { var s = o - a.props.monthSelectedIn, i = addMonths(n, s), p = "month-".concat(o), c = o < a.props.monthsShown - 1, d = o > 0; t.push( /*#__PURE__*/React__default["default"].createElement("div", { key: p, ref: function (e) { a.monthContainer = e; }, className: "react-datepicker__month-container" }, a.renderHeader({ monthDate: i, i: o }), /*#__PURE__*/React__default["default"].createElement(Nt, { chooseDayAriaLabelPrefix: a.props.chooseDayAriaLabelPrefix, disabledDayAriaLabelPrefix: a.props.disabledDayAriaLabelPrefix, weekAriaLabelPrefix: a.props.weekAriaLabelPrefix, ariaLabelPrefix: a.props.monthAriaLabelPrefix, onChange: a.changeMonthYear, day: i, dayClassName: a.props.dayClassName, calendarStartDay: a.props.calendarStartDay, monthClassName: a.props.monthClassName, onDayClick: a.handleDayClick, handleOnKeyDown: a.props.handleOnDayKeyDown, onDayMouseEnter: a.handleDayMouseEnter, onMouseLeave: a.handleMonthMouseLeave, onWeekSelect: a.props.onWeekSelect, orderInDisplay: o, formatWeekNumber: a.props.formatWeekNumber, locale: a.props.locale, minDate: a.props.minDate, maxDate: a.props.maxDate, excludeDates: a.props.excludeDates, excludeDateIntervals: a.props.excludeDateIntervals, highlightDates: a.props.highlightDates, selectingDate: a.state.selectingDate, includeDates: a.props.includeDates, includeDateIntervals: a.props.includeDateIntervals, inline: a.props.inline, shouldFocusDayInline: a.props.shouldFocusDayInline, fixedHeight: a.props.fixedHeight, filterDate: a.props.filterDate, preSelection: a.props.preSelection, setPreSelection: a.props.setPreSelection, selected: a.props.selected, selectsStart: a.props.selectsStart, selectsEnd: a.props.selectsEnd, selectsRange: a.props.selectsRange, selectsDisabledDaysInRange: a.props.selectsDisabledDaysInRange, showWeekNumbers: a.props.showWeekNumbers, startDate: a.props.startDate, endDate: a.props.endDate, peekNextMonth: a.props.peekNextMonth, setOpen: a.props.setOpen, shouldCloseOnSelect: a.props.shouldCloseOnSelect, renderDayContents: a.props.renderDayContents, disabledKeyboardNavigation: a.props.disabledKeyboardNavigation, showMonthYearPicker: a.props.showMonthYearPicker, showFullMonthYearPicker: a.props.showFullMonthYearPicker, showTwoColumnMonthYearPicker: a.props.showTwoColumnMonthYearPicker, showFourColumnMonthYearPicker: a.props.showFourColumnMonthYearPicker, showYearPicker: a.props.showYearPicker, showQuarterYearPicker: a.props.showQuarterYearPicker, isInputFocused: a.props.isInputFocused, containerRef: a.containerRef, monthShowsDuplicateDaysEnd: c, monthShowsDuplicateDaysStart: d }))); } return t; } }), de(ye(a), "renderYears", function () { if (!a.props.showTimeSelectOnly) return a.props.showYearPicker ? /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__year--container" }, a.renderHeader(), /*#__PURE__*/React__default["default"].createElement(Yt, ue$1({ onDayClick: a.handleDayClick, date: a.state.date }, a.props))) : void 0; }), de(ye(a), "renderTimeSection", function () { if (a.props.showTimeSelect && (a.state.monthContainer || a.props.showTimeSelectOnly)) return /*#__PURE__*/React__default["default"].createElement(xt, { selected: a.props.selected, openToDate: a.props.openToDate, onChange: a.props.onTimeChange, timeClassName: a.props.timeClassName, format: a.props.timeFormat, includeTimes: a.props.includeTimes, intervals: a.props.timeIntervals, minTime: a.props.minTime, maxTime: a.props.maxTime, excludeTimes: a.props.excludeTimes, filterTime: a.props.filterTime, timeCaption: a.props.timeCaption, todayButton: a.props.todayButton, showMonthDropdown: a.props.showMonthDropdown, showMonthYearDropdown: a.props.showMonthYearDropdown, showYearDropdown: a.props.showYearDropdown, withPortal: a.props.withPortal, monthRef: a.state.monthContainer, injectTimes: a.props.injectTimes, locale: a.props.locale, handleOnKeyDown: a.props.handleOnKeyDown, showTimeSelectOnly: a.props.showTimeSelectOnly }); }), de(ye(a), "renderInputTimeSection", function () { var t = new Date(a.props.selected), r = Pe(t) && Boolean(a.props.selected) ? "".concat(yt(t.getHours()), ":").concat(yt(t.getMinutes())) : ""; if (a.props.showTimeInput) return /*#__PURE__*/React__default["default"].createElement(Ot, { date: t, timeString: r, timeInputLabel: a.props.timeInputLabel, onChange: a.props.onTimeChange, customTimeInput: a.props.customTimeInput }); }), a.containerRef = /*#__PURE__*/React__default["default"].createRef(), a.state = { date: a.getDateInView(), selectingDate: null, monthContainer: null }, a; } return le$1(o, [{ key: "componentDidMount", value: function () { var e = this; this.props.showTimeSelect && (this.assignMonthContainer = void e.setState({ monthContainer: e.monthContainer })); } }, { key: "componentDidUpdate", value: function (e) { this.props.preSelection && !We(this.props.preSelection, e.preSelection) ? this.setState({ date: this.props.preSelection }) : this.props.openToDate && !We(this.props.openToDate, e.openToDate) && this.setState({ date: this.props.openToDate }); } }, { key: "render", value: function () { var t = this.props.container || It; return /*#__PURE__*/React__default["default"].createElement("div", { ref: this.containerRef }, /*#__PURE__*/React__default["default"].createElement(t, { className: classnames$1("react-datepicker", this.props.className, { "react-datepicker--time-only": this.props.showTimeSelectOnly }), showPopperArrow: this.props.showPopperArrow, arrowProps: this.props.arrowProps }, this.renderPreviousButton(), this.renderNextButton(), this.renderMonths(), this.renderYears(), this.renderTodayButton(), this.renderTimeSection(), this.renderInputTimeSection(), this.props.children)); } }], [{ key: "defaultProps", get: function () { return { onDropdownFocus: function () {}, monthsShown: 1, monthSelectedIn: 0, forceShowMonthNavigation: !1, timeCaption: "Time", previousYearButtonLabel: "Previous Year", nextYearButtonLabel: "Next Year", previousMonthButtonLabel: "Previous Month", nextMonthButtonLabel: "Next Month", customTimeInput: null, yearItemNumber: 12 }; } }]), o; }(), Rt = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n(e) { var t; return pe(this, n), (t = r.call(this, e)).el = document.createElement("div"), t; } return le$1(n, [{ key: "componentDidMount", value: function () { this.portalRoot = (this.props.portalHost || document).getElementById(this.props.portalId), this.portalRoot || (this.portalRoot = document.createElement("div"), this.portalRoot.setAttribute("id", this.props.portalId), (this.props.portalHost || document.body).appendChild(this.portalRoot)), this.portalRoot.appendChild(this.el); } }, { key: "componentWillUnmount", value: function () { this.portalRoot.removeChild(this.el); } }, { key: "render", value: function () { return /*#__PURE__*/ReactDOM__default["default"].createPortal(this.props.children, this.el); } }]), n; }(), Ft = function (e) { return !e.disabled && -1 !== e.tabIndex; }, At$1 = function (t) { he$1(n, React__default["default"].Component); var r = De(n); function n(t) { var o; return pe(this, n), de(ye(o = r.call(this, t)), "getTabChildren", function () { return Array.prototype.slice.call(o.tabLoopRef.current.querySelectorAll("[tabindex], a, button, input, select, textarea"), 1, -1).filter(Ft); }), de(ye(o), "handleFocusStart", function (e) { var t = o.getTabChildren(); t && t.length > 1 && t[t.length - 1].focus(); }), de(ye(o), "handleFocusEnd", function (e) { var t = o.getTabChildren(); t && t.length > 1 && t[0].focus(); }), o.tabLoopRef = /*#__PURE__*/React__default["default"].createRef(), o; } return le$1(n, [{ key: "render", value: function () { return this.props.enableTabLoop ? /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__tab-loop", ref: this.tabLoopRef }, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__tab-loop__start", tabIndex: "0", onFocus: this.handleFocusStart }), this.props.children, /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__tab-loop__end", tabIndex: "0", onFocus: this.handleFocusEnd })) : this.props.children; } }], [{ key: "defaultProps", get: function () { return { enableTabLoop: !0 }; } }]), n; }(), Bt = function (t) { he$1(o, React__default["default"].Component); var n = De(o); function o() { return pe(this, o), n.apply(this, arguments); } return le$1(o, [{ key: "render", value: function () { var t, n = this.props, o = n.className, a = n.wrapperClassName, s = n.hidePopper, i = n.popperComponent, p = n.popperModifiers, c = n.popperPlacement, l = n.popperProps, d = n.targetComponent, u = n.enableTabLoop, h = n.popperOnKeyDown, m = n.portalId, f = n.portalHost; if (!s) { var y = classnames$1("react-datepicker-popper", o); t = /*#__PURE__*/React__default["default"].createElement(Popper, ue$1({ modifiers: p, placement: c }, l), function (t) { var r = t.ref, n = t.style, o = t.placement, a = t.arrowProps; return /*#__PURE__*/React__default["default"].createElement(At$1, { enableTabLoop: u }, /*#__PURE__*/React__default["default"].createElement("div", { ref: r, style: n, className: y, "data-placement": o, onKeyDown: h }, /*#__PURE__*/React__default["default"].cloneElement(i, { arrowProps: a }))); }); } this.props.popperContainer && (t = /*#__PURE__*/React__default["default"].createElement(this.props.popperContainer, {}, t)), m && !s && (t = /*#__PURE__*/React__default["default"].createElement(Rt, { portalId: m, portalHost: f }, t)); var v = classnames$1("react-datepicker-wrapper", a); return /*#__PURE__*/React__default["default"].createElement(Manager, { className: "react-datepicker-manager" }, /*#__PURE__*/React__default["default"].createElement(Reference, null, function (t) { var r = t.ref; return /*#__PURE__*/React__default["default"].createElement("div", { ref: r, className: v }, d); }), t); } }], [{ key: "defaultProps", get: function () { return { hidePopper: !0, popperModifiers: [], popperProps: {}, popperPlacement: "bottom-start" }; } }]), o; }(), Kt = onClickOutsideHOC(Lt); var Wt = function (t) { he$1(a, React__default["default"].Component); var o = De(a); function a(t) { var s; return pe(this, a), de(ye(s = o.call(this, t)), "getPreSelection", function () { return s.props.openToDate ? s.props.openToDate : s.props.selectsEnd && s.props.startDate ? s.props.startDate : s.props.selectsStart && s.props.endDate ? s.props.endDate : _e(); }), de(ye(s), "calcInitialState", function () { var e, t = s.getPreSelection(), r = ut(s.props), n = ht(s.props), o = r && isBefore(t, startOfDay(r)) ? r : n && isAfter(t, endOfDay(n)) ? n : t; return { open: s.props.startOpen || !1, preventFocus: !1, preSelection: null !== (e = s.props.selectsRange ? s.props.startDate : s.props.selected) && void 0 !== e ? e : o, highlightDates: mt(s.props.highlightDates), focused: !1, shouldFocusDayInline: !1 }; }), de(ye(s), "clearPreventFocusTimeout", function () { s.preventFocusTimeout && clearTimeout(s.preventFocusTimeout); }), de(ye(s), "setFocus", function () { s.input && s.input.focus && s.input.focus({ preventScroll: !0 }); }), de(ye(s), "setBlur", function () { s.input && s.input.blur && s.input.blur(), s.cancelFocusInput(); }), de(ye(s), "setOpen", function (e) { var t = arguments.length > 1 && void 0 !== arguments[1] && arguments[1]; s.setState({ open: e, preSelection: e && s.state.open ? s.state.preSelection : s.calcInitialState().preSelection, lastPreSelectChange: Ht }, function () { e || s.setState(function (e) { return { focused: !!t && e.focused }; }, function () { !t && s.setBlur(), s.setState({ inputValue: null }); }); }); }), de(ye(s), "inputOk", function () { return isDate(s.state.preSelection); }), de(ye(s), "isCalendarOpen", function () { return void 0 === s.props.open ? s.state.open && !s.props.disabled && !s.props.readOnly : s.props.open; }), de(ye(s), "handleFocus", function (e) { s.state.preventFocus || (s.props.onFocus(e), s.props.preventOpenOnFocus || s.props.readOnly || s.setOpen(!0)), s.setState({ focused: !0 }); }), de(ye(s), "cancelFocusInput", function () { clearTimeout(s.inputFocusTimeout), s.inputFocusTimeout = null; }), de(ye(s), "deferFocusInput", function () { s.cancelFocusInput(), s.inputFocusTimeout = setTimeout(function () { return s.setFocus(); }, 1); }), de(ye(s), "handleDropdownFocus", function () { s.cancelFocusInput(); }), de(ye(s), "handleBlur", function (e) { (!s.state.open || s.props.withPortal || s.props.showTimeInput) && s.props.onBlur(e), s.setState({ focused: !1 }); }), de(ye(s), "handleCalendarClickOutside", function (e) { s.props.inline || s.setOpen(!1), s.props.onClickOutside(e), s.props.withPortal && e.preventDefault(); }), de(ye(s), "handleChange", function () { for (var e = arguments.length, t = new Array(e), r = 0; r < e; r++) t[r] = arguments[r]; var n = t[0]; if (!s.props.onChangeRaw || (s.props.onChangeRaw.apply(ye(s), t), "function" == typeof n.isDefaultPrevented && !n.isDefaultPrevented())) { s.setState({ inputValue: n.target.value, lastPreSelectChange: jt }); var o = Me(n.target.value, s.props.dateFormat, s.props.locale, s.props.strictParsing, s.props.minDate); !o && n.target.value || s.setSelected(o, n, !0); } }), de(ye(s), "handleSelect", function (e, t, r) { if (s.setState({ preventFocus: !0 }, function () { return s.preventFocusTimeout = setTimeout(function () { return s.setState({ preventFocus: !1 }); }, 50), s.preventFocusTimeout; }), s.props.onChangeRaw && s.props.onChangeRaw(t), s.setSelected(e, t, !1, r), !s.props.shouldCloseOnSelect || s.props.showTimeSelect) s.setPreSelection(e);else if (!s.props.inline) { s.props.selectsRange || s.setOpen(!1); var n = s.props, o = n.startDate, a = n.endDate; !o || a || isBefore(e, o) || s.setOpen(!1); } }), de(ye(s), "setSelected", function (e, t, r, n) { var o = e; if (null === o || !Je(o, s.props)) { var a = s.props, i = a.onChange, p = a.selectsRange, c = a.startDate, l = a.endDate; if (!je(s.props.selected, o) || s.props.allowSameDay || p) if (null !== o && (!s.props.selected || r && (s.props.showTimeSelect || s.props.showTimeSelectOnly || s.props.showTimeInput) || (o = xe(o, { hour: getHours(s.props.selected), minute: getMinutes(s.props.selected), second: getSeconds(s.props.selected) })), s.props.inline || s.setState({ preSelection: o }), s.props.focusSelectedMonth || s.setState({ monthSelectedIn: n })), p) { var d = c && !l, u = c && l; !c && !l ? i([o, null], t) : d && (isBefore(o, c) ? i([o, null], t) : i([c, o], t)), u && i([o, null], t); } else i(o, t); r || (s.props.onSelect(o, t), s.setState({ inputValue: null })); } }), de(ye(s), "setPreSelection", function (e) { var t = void 0 !== s.props.minDate, r = void 0 !== s.props.maxDate, n = !0; if (e) { var o = startOfDay(e); if (t && r) n = He(e, s.props.minDate, s.props.maxDate);else if (t) { var a = startOfDay(s.props.minDate); n = isAfter(e, a) || je(o, a); } else if (r) { var i = endOfDay(s.props.maxDate); n = isBefore(e, i) || je(o, i); } } n && s.setState({ preSelection: e }); }), de(ye(s), "handleTimeChange", function (e) { var t = xe(s.props.selected ? s.props.selected : s.getPreSelection(), { hour: getHours(e), minute: getMinutes(e) }); s.setState({ preSelection: t }), s.props.onChange(t), s.props.shouldCloseOnSelect && s.setOpen(!1), s.props.showTimeInput && s.setOpen(!0), s.setState({ inputValue: null }); }), de(ye(s), "onInputClick", function () { s.props.disabled || s.props.readOnly || s.setOpen(!0), s.props.onInputClick(); }), de(ye(s), "onInputKeyDown", function (e) { s.props.onKeyDown(e); var t = e.key; if (s.state.open || s.props.inline || s.props.preventOpenOnFocus) { if (s.state.open) { if ("ArrowDown" === t || "ArrowUp" === t) { e.preventDefault(); var r = s.calendar.componentNode && s.calendar.componentNode.querySelector('.react-datepicker__day[tabindex="0"]'); return void (r && r.focus({ preventScroll: !0 })); } var n = _e(s.state.preSelection); "Enter" === t ? (e.preventDefault(), s.inputOk() && s.state.lastPreSelectChange === Ht ? (s.handleSelect(n, e), !s.props.shouldCloseOnSelect && s.setPreSelection(n)) : s.setOpen(!1)) : "Escape" === t && (e.preventDefault(), s.setOpen(!1)), s.inputOk() || s.props.onInputError({ code: 1, msg: "Date input not valid." }); } } else "ArrowDown" !== t && "ArrowUp" !== t && "Enter" !== t || s.onInputClick(); }), de(ye(s), "onDayKeyDown", function (e) { s.props.onKeyDown(e); var t = e.key, r = _e(s.state.preSelection); if ("Enter" === t) e.preventDefault(), s.handleSelect(r, e), !s.props.shouldCloseOnSelect && s.setPreSelection(r);else if ("Escape" === t) e.preventDefault(), s.setOpen(!1), s.inputOk() || s.props.onInputError({ code: 1, msg: "Date input not valid." });else if (!s.props.disabledKeyboardNavigation) { var n; switch (t) { case "ArrowLeft": n = subDays(r, 1); break; case "ArrowRight": n = addDays(r, 1); break; case "ArrowUp": n = subWeeks(r, 1); break; case "ArrowDown": n = addWeeks(r, 1); break; case "PageUp": n = subMonths(r, 1); break; case "PageDown": n = addMonths(r, 1); break; case "Home": n = subYears(r, 1); break; case "End": n = addYears(r, 1); } if (!n) return void (s.props.onInputError && s.props.onInputError({ code: 1, msg: "Date input not valid." })); if (e.preventDefault(), s.setState({ lastPreSelectChange: Ht }), s.props.adjustDateOnChange && s.setSelected(n), s.setPreSelection(n), s.props.inline) { var o = getMonth(r), a = getMonth(n), i = getYear(r), y = getYear(n); o !== a || i !== y ? s.setState({ shouldFocusDayInline: !0 }) : s.setState({ shouldFocusDayInline: !1 }); } } }), de(ye(s), "onPopperKeyDown", function (e) { "Escape" === e.key && (e.preventDefault(), s.setState({ preventFocus: !0 }, function () { s.setOpen(!1), setTimeout(function () { s.setFocus(), s.setState({ preventFocus: !1 }); }); })); }), de(ye(s), "onClearClick", function (e) { e && e.preventDefault && e.preventDefault(), s.props.selectsRange ? s.props.onChange([null, null], e) : s.props.onChange(null, e), s.setState({ inputValue: null }); }), de(ye(s), "clear", function () { s.onClearClick(); }), de(ye(s), "onScroll", function (e) { "boolean" == typeof s.props.closeOnScroll && s.props.closeOnScroll ? e.target !== document && e.target !== document.documentElement && e.target !== document.body || s.setOpen(!1) : "function" == typeof s.props.closeOnScroll && s.props.closeOnScroll(e) && s.setOpen(!1); }), de(ye(s), "renderCalendar", function () { return s.props.inline || s.isCalendarOpen() ? /*#__PURE__*/React__default["default"].createElement(Kt, { ref: function (e) { s.calendar = e; }, locale: s.props.locale, calendarStartDay: s.props.calendarStartDay, chooseDayAriaLabelPrefix: s.props.chooseDayAriaLabelPrefix, disabledDayAriaLabelPrefix: s.props.disabledDayAriaLabelPrefix, weekAriaLabelPrefix: s.props.weekAriaLabelPrefix, monthAriaLabelPrefix: s.props.monthAriaLabelPrefix, adjustDateOnChange: s.props.adjustDateOnChange, setOpen: s.setOpen, shouldCloseOnSelect: s.props.shouldCloseOnSelect, dateFormat: s.props.dateFormatCalendar, useWeekdaysShort: s.props.useWeekdaysShort, formatWeekDay: s.props.formatWeekDay, dropdownMode: s.props.dropdownMode, selected: s.props.selected, preSelection: s.state.preSelection, onSelect: s.handleSelect, onWeekSelect: s.props.onWeekSelect, openToDate: s.props.openToDate, minDate: s.props.minDate, maxDate: s.props.maxDate, selectsStart: s.props.selectsStart, selectsEnd: s.props.selectsEnd, selectsRange: s.props.selectsRange, startDate: s.props.startDate, endDate: s.props.endDate, excludeDates: s.props.excludeDates, excludeDateIntervals: s.props.excludeDateIntervals, filterDate: s.props.filterDate, onClickOutside: s.handleCalendarClickOutside, formatWeekNumber: s.props.formatWeekNumber, highlightDates: s.state.highlightDates, includeDates: s.props.includeDates, includeDateIntervals: s.props.includeDateIntervals, includeTimes: s.props.includeTimes, injectTimes: s.props.injectTimes, inline: s.props.inline, shouldFocusDayInline: s.state.shouldFocusDayInline, peekNextMonth: s.props.peekNextMonth, showMonthDropdown: s.props.showMonthDropdown, showPreviousMonths: s.props.showPreviousMonths, useShortMonthInDropdown: s.props.useShortMonthInDropdown, showMonthYearDropdown: s.props.showMonthYearDropdown, showWeekNumbers: s.props.showWeekNumbers, showYearDropdown: s.props.showYearDropdown, withPortal: s.props.withPortal, forceShowMonthNavigation: s.props.forceShowMonthNavigation, showDisabledMonthNavigation: s.props.showDisabledMonthNavigation, scrollableYearDropdown: s.props.scrollableYearDropdown, scrollableMonthYearDropdown: s.props.scrollableMonthYearDropdown, todayButton: s.props.todayButton, weekLabel: s.props.weekLabel, outsideClickIgnoreClass: "react-datepicker-ignore-onclickoutside", fixedHeight: s.props.fixedHeight, monthsShown: s.props.monthsShown, monthSelectedIn: s.state.monthSelectedIn, onDropdownFocus: s.handleDropdownFocus, onMonthChange: s.props.onMonthChange, onYearChange: s.props.onYearChange, dayClassName: s.props.dayClassName, weekDayClassName: s.props.weekDayClassName, monthClassName: s.props.monthClassName, timeClassName: s.props.timeClassName, showTimeSelect: s.props.showTimeSelect, showTimeSelectOnly: s.props.showTimeSelectOnly, onTimeChange: s.handleTimeChange, timeFormat: s.props.timeFormat, timeIntervals: s.props.timeIntervals, minTime: s.props.minTime, maxTime: s.props.maxTime, excludeTimes: s.props.excludeTimes, filterTime: s.props.filterTime, timeCaption: s.props.timeCaption, className: s.props.calendarClassName, container: s.props.calendarContainer, yearItemNumber: s.props.yearItemNumber, yearDropdownItemNumber: s.props.yearDropdownItemNumber, previousMonthAriaLabel: s.props.previousMonthAriaLabel, previousMonthButtonLabel: s.props.previousMonthButtonLabel, nextMonthAriaLabel: s.props.nextMonthAriaLabel, nextMonthButtonLabel: s.props.nextMonthButtonLabel, previousYearAriaLabel: s.props.previousYearAriaLabel, previousYearButtonLabel: s.props.previousYearButtonLabel, nextYearAriaLabel: s.props.nextYearAriaLabel, nextYearButtonLabel: s.props.nextYearButtonLabel, timeInputLabel: s.props.timeInputLabel, disabledKeyboardNavigation: s.props.disabledKeyboardNavigation, renderCustomHeader: s.props.renderCustomHeader, popperProps: s.props.popperProps, renderDayContents: s.props.renderDayContents, onDayMouseEnter: s.props.onDayMouseEnter, onMonthMouseLeave: s.props.onMonthMouseLeave, selectsDisabledDaysInRange: s.props.selectsDisabledDaysInRange, showTimeInput: s.props.showTimeInput, showMonthYearPicker: s.props.showMonthYearPicker, showFullMonthYearPicker: s.props.showFullMonthYearPicker, showTwoColumnMonthYearPicker: s.props.showTwoColumnMonthYearPicker, showFourColumnMonthYearPicker: s.props.showFourColumnMonthYearPicker, showYearPicker: s.props.showYearPicker, showQuarterYearPicker: s.props.showQuarterYearPicker, showPopperArrow: s.props.showPopperArrow, excludeScrollbar: s.props.excludeScrollbar, handleOnKeyDown: s.props.onKeyDown, handleOnDayKeyDown: s.onDayKeyDown, isInputFocused: s.state.focused, customTimeInput: s.props.customTimeInput, setPreSelection: s.setPreSelection }, s.props.children) : null; }), de(ye(s), "renderDateInput", function () { var t, n = classnames$1(s.props.className, de({}, "react-datepicker-ignore-onclickoutside", s.state.open)), o = s.props.customInput || /*#__PURE__*/React__default["default"].createElement("input", { type: "text" }), a = s.props.customInputRef || "ref", i = "string" == typeof s.props.value ? s.props.value : "string" == typeof s.state.inputValue ? s.state.inputValue : s.props.selectsRange ? function (e, t, r) { if (!e) return ""; var n = Ne(e, r), o = t ? Ne(t, r) : ""; return "".concat(n, " - ").concat(o); }(s.props.startDate, s.props.endDate, s.props) : Ne(s.props.selected, s.props); return /*#__PURE__*/React__default["default"].cloneElement(o, (de(t = {}, a, function (e) { s.input = e; }), de(t, "value", i), de(t, "onBlur", s.handleBlur), de(t, "onChange", s.handleChange), de(t, "onClick", s.onInputClick), de(t, "onFocus", s.handleFocus), de(t, "onKeyDown", s.onInputKeyDown), de(t, "id", s.props.id), de(t, "name", s.props.name), de(t, "autoFocus", s.props.autoFocus), de(t, "placeholder", s.props.placeholderText), de(t, "disabled", s.props.disabled), de(t, "autoComplete", s.props.autoComplete), de(t, "className", classnames$1(o.props.className, n)), de(t, "title", s.props.title), de(t, "readOnly", s.props.readOnly), de(t, "required", s.props.required), de(t, "tabIndex", s.props.tabIndex), de(t, "aria-describedby", s.props.ariaDescribedBy), de(t, "aria-invalid", s.props.ariaInvalid), de(t, "aria-labelledby", s.props.ariaLabelledBy), de(t, "aria-required", s.props.ariaRequired), t)); }), de(ye(s), "renderClearButton", function () { var t = s.props, r = t.isClearable, n = t.selected, o = t.startDate, a = t.endDate, i = t.clearButtonTitle, p = t.clearButtonClassName, c = void 0 === p ? "" : p, l = t.ariaLabelClose, d = void 0 === l ? "Close" : l; return !r || null == n && null == o && null == a ? null : /*#__PURE__*/React__default["default"].createElement("button", { type: "button", className: "react-datepicker__close-icon ".concat(c).trim(), "aria-label": d, onClick: s.onClearClick, title: i, tabIndex: -1 }); }), s.state = s.calcInitialState(), s; } return le$1(a, [{ key: "componentDidMount", value: function () { window.addEventListener("scroll", this.onScroll, !0); } }, { key: "componentDidUpdate", value: function (e, t) { var r, n; e.inline && (r = e.selected, n = this.props.selected, r && n ? getMonth(r) !== getMonth(n) || getYear(r) !== getYear(n) : r !== n) && this.setPreSelection(this.props.selected), void 0 !== this.state.monthSelectedIn && e.monthsShown !== this.props.monthsShown && this.setState({ monthSelectedIn: 0 }), e.highlightDates !== this.props.highlightDates && this.setState({ highlightDates: mt(this.props.highlightDates) }), t.focused || je(e.selected, this.props.selected) || this.setState({ inputValue: null }), t.open !== this.state.open && (!1 === t.open && !0 === this.state.open && this.props.onCalendarOpen(), !0 === t.open && !1 === this.state.open && this.props.onCalendarClose()); } }, { key: "componentWillUnmount", value: function () { this.clearPreventFocusTimeout(), window.removeEventListener("scroll", this.onScroll, !0); } }, { key: "renderInputContainer", value: function () { return /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__input-container" }, this.renderDateInput(), this.renderClearButton()); } }, { key: "render", value: function () { var t = this.renderCalendar(); if (this.props.inline) return t; if (this.props.withPortal) { var r = this.state.open ? /*#__PURE__*/React__default["default"].createElement("div", { className: "react-datepicker__portal" }, t) : null; return this.state.open && this.props.portalId && (r = /*#__PURE__*/React__default["default"].createElement(Rt, { portalId: this.props.portalId, portalHost: this.props.portalHost }, r)), /*#__PURE__*/React__default["default"].createElement("div", null, this.renderInputContainer(), r); } return /*#__PURE__*/React__default["default"].createElement(Bt, { className: this.props.popperClassName, wrapperClassName: this.props.wrapperClassName, hidePopper: !this.isCalendarOpen(), portalId: this.props.portalId, portalHost: this.props.portalHost, popperModifiers: this.props.popperModifiers, targetComponent: this.renderInputContainer(), popperContainer: this.props.popperContainer, popperComponent: t, popperPlacement: this.props.popperPlacement, popperProps: this.props.popperProps, popperOnKeyDown: this.onPopperKeyDown, enableTabLoop: this.props.enableTabLoop }); } }], [{ key: "defaultProps", get: function () { return { allowSameDay: !1, dateFormat: "MM/dd/yyyy", dateFormatCalendar: "LLLL yyyy", onChange: function () {}, disabled: !1, disabledKeyboardNavigation: !1, dropdownMode: "scroll", onFocus: function () {}, onBlur: function () {}, onKeyDown: function () {}, onInputClick: function () {}, onSelect: function () {}, onClickOutside: function () {}, onMonthChange: function () {}, onCalendarOpen: function () {}, onCalendarClose: function () {}, preventOpenOnFocus: !1, onYearChange: function () {}, onInputError: function () {}, monthsShown: 1, readOnly: !1, withPortal: !1, selectsDisabledDaysInRange: !1, shouldCloseOnSelect: !0, showTimeSelect: !1, showTimeInput: !1, showPreviousMonths: !1, showMonthYearPicker: !1, showFullMonthYearPicker: !1, showTwoColumnMonthYearPicker: !1, showFourColumnMonthYearPicker: !1, showYearPicker: !1, showQuarterYearPicker: !1, strictParsing: !1, timeIntervals: 30, timeCaption: "Time", previousMonthAriaLabel: "Previous Month", previousMonthButtonLabel: "Previous Month", nextMonthAriaLabel: "Next Month", nextMonthButtonLabel: "Next Month", previousYearAriaLabel: "Previous Year", previousYearButtonLabel: "Previous Year", nextYearAriaLabel: "Next Year", nextYearButtonLabel: "Next Year", timeInputLabel: "Time", enableTabLoop: !0, yearItemNumber: 12, renderDayContents: function (e) { return e; }, focusSelectedMonth: !1, showPopperArrow: !0, excludeScrollbar: !0, customTimeInput: null, calendarStartDay: void 0 }; } }]), a; }(), jt = "input", Ht = "navigate"; function ownKeys$2(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; } function _objectSpread2$2(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2(Object(source), !0).forEach(function (key) { _defineProperty$3(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty$3(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; } function _objectWithoutPropertiesLoose$2(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; } function _objectWithoutProperties$2(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$2(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; } var _excluded$m = ["width", "height", "viewBox"], _excluded2$h = ["tabindex"]; /** * Copyright IBM Corp. 2018, 2018 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ var defaultAttributes = { // Reference: // https://github.com/IBM/carbon-components-react/issues/1392 // https://github.com/PolymerElements/iron-iconset-svg/pull/47 // `focusable` is a string attribute which is why we do not use a boolean here focusable: 'false', preserveAspectRatio: 'xMidYMid meet' }; /** * Get supplementary HTML attributes for a given element based on existing * attributes. */ function getAttributes$1() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, width = _ref.width, height = _ref.height, _ref$viewBox = _ref.viewBox, viewBox = _ref$viewBox === void 0 ? "0 0 ".concat(width, " ").concat(height) : _ref$viewBox, attributes = _objectWithoutProperties$2(_ref, _excluded$m); var tabindex = attributes.tabindex, rest = _objectWithoutProperties$2(attributes, _excluded2$h); var iconAttributes = _objectSpread2$2(_objectSpread2$2(_objectSpread2$2({}, defaultAttributes), rest), {}, { width: width, height: height, viewBox: viewBox }); // TODO: attributes.title assumes that the consumer will implement and // correctly set `aria-labelledby`. if (iconAttributes['aria-label'] || iconAttributes['aria-labelledby'] || iconAttributes.title) { iconAttributes.role = 'img'; // Reference: // https://allyjs.io/tutorials/focusing-in-svg.html if (tabindex !== undefined && tabindex !== null) { iconAttributes.focusable = 'true'; iconAttributes.tabindex = tabindex; } } else { iconAttributes['aria-hidden'] = true; } return iconAttributes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ function ownKeys$1(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; } function _objectSpread2$1(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$1(Object(source), !0).forEach(function (key) { _defineProperty$2(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty$2(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; } function _objectWithoutPropertiesLoose$1(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; } function _objectWithoutProperties$1(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1(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; } var _excluded$l = ["className", "children", "tabIndex"], _excluded2$g = ["tabindex"]; var Icon$2 = /*#__PURE__*/React__default["default"].forwardRef(function Icon(_ref, ref) { var className = _ref.className, children = _ref.children, tabIndex = _ref.tabIndex, rest = _objectWithoutProperties$1(_ref, _excluded$l); var _getAttributes = getAttributes$1(_objectSpread2$1(_objectSpread2$1({}, rest), {}, { tabindex: tabIndex })), tabindex = _getAttributes.tabindex, props = _objectWithoutProperties$1(_getAttributes, _excluded2$g); if (className) { props.className = className; } if (tabindex !== undefined && tabindex !== null) { props.tabIndex = tabindex; } if (ref) { props.ref = ref; } return /*#__PURE__*/React__default["default"].createElement('svg', props, children); }); Icon$2.displayName = 'Icon'; Icon$2.propTypes = { 'aria-hidden': PropTypes.string, 'aria-label': PropTypes.string, 'aria-labelledby': PropTypes.string, children: PropTypes.node, className: PropTypes.string, height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), preserveAspectRatio: PropTypes.string, tabIndex: PropTypes.string, viewBox: PropTypes.string, width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), xmlns: PropTypes.string }; Icon$2.defaultProps = { xmlns: 'http://www.w3.org/2000/svg', preserveAspectRatio: 'xMidYMid meet' }; var iconPropTypes = { size: PropTypes.oneOfType([PropTypes.number, PropTypes.string]) }; /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$f, _path2$f, _path3$f, _path4$f, _path5$f, _path6$f, _path7$f, _path8$f, _path9$f, _path10$f, _path11$f, _path12$f, _path13$f, _path14$f, _path15$f, _path16$f, _circle$f, _path17$f, _path18$f, _path19$f, _path20$f, _path21$f, _path22$f, _circle2$f, _path23$f, _path24$f, _path25$f, _path26$f, _path27$f, _path28$f, _path29$f, _path30$f, _path31$f, _path32$f, _path33$f, _path34$f, _path35$f, _path36$f, _path37$f, _path38$f, _path39$f, _path40$f, _path41$f, _path42$f, _path43$f, _path44$f, _path45$f, _path46$f, _path47$f, _path48$f, _path49$f, _path50$f, _path51$f, _path52$f, _path53$f, _circle3$f, _circle4$e, _circle5$e, _path54$f, _path55$f, _path56$f, _path57$f, _path58$f, _path59$f, _path60$f, _path61$f, _path62$f, _path63$f, _path64$f, _path65$f, _path66$f, _path67$f, _path68$f, _path69$f, _path70$f, _path71$f, _path72$f, _path73$f, _path74$f, _path75$f, _path76$f, _path77$f, _path78$f, _path79$f, _path80$f, _path81$f, _path82$f, _path83$f, _path84$f, _path85$f, _path86$f, _path87$f, _path88$f, _path89$f, _path90$f, _path91$f, _path92$f, _path93$f, _path94$f, _path95$f, _path96$f, _path97$f, _path98$f, _path99$f, _path100$f, _path101$f, _path102$f, _path103$f, _path104$f, _path105$f, _path106$f, _path107$f, _path108$f, _path109$f, _path110$f, _path111$f, _path112$f, _path113$f, _path114$f, _path115$f, _path116$f, _path117$f, _path118$f, _path119$f, _path120$f, _path121$f, _path122$f, _path123$f, _path124$f, _path125$f, _path126$f, _path127$f, _path128$f, _path129$f, _circle6$e, _path130$f, _path131$f, _path132$f, _path133$f, _path134$f, _path135$f, _path136$f, _path137$f, _path138$f, _path139$f, _path140$f, _path141$f, _path142$f, _path143$f, _path144$f, _path145$f, _path146$f, _path147$f, _path148$f, _path149$f, _path150$f, _path151$f, _path152$f, _path153$f, _path154$f, _path155$f, _path156$f, _path157$f, _path158$f, _path159$f, _path160$f, _path161$f, _path162$f, _path163$f, _path164$f, _path165$f, _path166$f, _path167$f, _path168$f, _path169$f, _path170$f, _path171$f, _path172$f, _path173$f, _path174$f, _path175$f, _path176$f, _path177$f, _path178$f, _circle7$e, _path179$f, _circle8$e, _circle9$e, _circle10$d, _circle11$c, _circle12$b, _circle13$a, _circle14$9, _circle15$9, _circle16$9, _circle17$8, _circle18$7, _circle19$7, _circle20$7, _circle21$6, _circle22$6, _circle23$6, _circle24$6, _circle25$6, _circle26$6, _circle27$6, _circle28$6, _circle29$6, _circle30$6, _circle31$6, _circle32$5, _circle33$5, _circle34$5, _circle35$4, _circle36$4, _circle37$4, _circle38$3, _circle39$3, _circle40$3, _circle41$3, _circle42$3, _circle43$3, _circle44$3, _circle45$2, _circle46$2, _circle47$2, _circle48$2, _path180$f, _path181$f, _path182$f, _path183$f, _path184$f, _path185$f, _path186$f, _circle49$2, _path187$f, _path188$f, _path189$f, _path190$f, _path191$e, _path192$e, _path193$e, _path194$e, _path195$d, _path196$c, _path197$c, _path198$c, _path199$c, _path200$c, _path201$c, _path202$c, _path203$c, _path204$c, _path205$c, _path206$c, _path207$c, _path208$c, _path209$c, _path210$a, _path211$a, _path212$9, _circle50$2, _path213$9, _path214$9, _path215$8, _path216$8, _path217$8, _circle51$1, _path218$6, _circle52$1, _path219$6, _circle53$1, _path220$6, _path221$6, _circle54$1, _path222$6, _path223$6, _circle55$1, _path224$5, _circle56$1, _path225$3, _path226$3, _path227$3; var _excluded$k = ["children", "size"], _excluded2$f = ["children", "size"], _excluded3$f = ["children", "size"], _excluded4$f = ["children", "size"], _excluded5$f = ["children", "size"], _excluded6$f = ["children", "size"], _excluded7$f = ["children", "size"], _excluded8$f = ["children", "size"], _excluded9$f = ["children", "size"], _excluded10$f = ["children", "size"], _excluded11$f = ["children", "size"], _excluded12$f = ["children", "size"], _excluded13$f = ["children", "size"], _excluded14$f = ["children", "size"], _excluded15$f = ["children", "size"], _excluded16$f = ["children", "size"], _excluded17$f = ["children", "size"], _excluded18$f = ["children", "size"], _excluded19$f = ["children", "size"], _excluded20$f = ["children", "size"], _excluded21$f = ["children", "size"], _excluded22$f = ["children", "size"], _excluded23$f = ["children", "size"], _excluded24$f = ["children", "size"], _excluded25$f = ["children", "size"], _excluded26$f = ["children", "size"], _excluded27$f = ["children", "size"], _excluded28$f = ["children", "size"], _excluded29$f = ["children", "size"], _excluded30$f = ["children", "size"], _excluded31$f = ["children", "size"], _excluded32$f = ["children", "size"], _excluded33$f = ["children", "size"], _excluded34$f = ["children", "size"], _excluded35$f = ["children", "size"], _excluded36$f = ["children", "size"], _excluded37$f = ["children", "size"], _excluded38$f = ["children", "size"], _excluded39$f = ["children", "size"], _excluded40$f = ["children", "size"], _excluded41$f = ["children", "size"], _excluded42$f = ["children", "size"], _excluded43$f = ["children", "size"], _excluded44$f = ["children", "size"], _excluded45$f = ["children", "size"], _excluded46$f = ["children", "size"], _excluded47$f = ["children", "size"], _excluded48$f = ["children", "size"], _excluded49$f = ["children", "size"], _excluded50$f = ["children", "size"], _excluded51$f = ["children", "size"], _excluded52$f = ["children", "size"], _excluded53$f = ["children", "size"], _excluded54$f = ["children", "size"], _excluded55$f = ["children", "size"], _excluded56$f = ["children", "size"], _excluded57$f = ["children", "size"], _excluded58$f = ["children", "size"], _excluded59$f = ["children", "size"], _excluded60$f = ["children", "size"], _excluded61$f = ["children", "size"], _excluded62$f = ["children", "size"], _excluded63$f = ["children", "size"], _excluded64$f = ["children", "size"], _excluded65$f = ["children", "size"], _excluded66$f = ["children", "size"], _excluded67$f = ["children", "size"], _excluded68$f = ["children", "size"], _excluded69$f = ["children", "size"], _excluded70$f = ["children", "size"], _excluded71$f = ["children", "size"], _excluded72$f = ["children", "size"], _excluded73$f = ["children", "size"], _excluded74$f = ["children", "size"], _excluded75$f = ["children", "size"], _excluded76$f = ["children", "size"], _excluded77$f = ["children", "size"], _excluded78$f = ["children", "size"], _excluded79$f = ["children", "size"], _excluded80$f = ["children", "size"], _excluded81$f = ["children", "size"], _excluded82$f = ["children", "size"], _excluded83$f = ["children", "size"], _excluded84$f = ["children", "size"], _excluded85$f = ["children", "size"], _excluded86$f = ["children", "size"], _excluded87$f = ["children", "size"], _excluded88$f = ["children", "size"], _excluded89$f = ["children", "size"], _excluded90$f = ["children", "size"], _excluded91$f = ["children", "size"], _excluded92$f = ["children", "size"], _excluded93$f = ["children", "size"], _excluded94$f = ["children", "size"], _excluded95$f = ["children", "size"], _excluded96$f = ["children", "size"], _excluded97$f = ["children", "size"], _excluded98$f = ["children", "size"], _excluded99$f = ["children", "size"], _excluded100$f = ["children", "size"], _excluded101$f = ["children", "size"], _excluded102$f = ["children", "size"], _excluded103$f = ["children", "size"], _excluded104$f = ["children", "size"], _excluded105$f = ["children", "size"], _excluded106$f = ["children", "size"], _excluded107$f = ["children", "size"], _excluded108$f = ["children", "size"], _excluded109$f = ["children", "size"], _excluded110$f = ["children", "size"], _excluded111$f = ["children", "size"], _excluded112$f = ["children", "size"], _excluded113$f = ["children", "size"], _excluded114$f = ["children", "size"], _excluded115$f = ["children", "size"], _excluded116$f = ["children", "size"], _excluded117$f = ["children", "size"], _excluded118$f = ["children", "size"], _excluded119$f = ["children", "size"], _excluded120$f = ["children", "size"], _excluded121$f = ["children", "size"], _excluded122$f = ["children", "size"], _excluded123$f = ["children", "size"], _excluded124$e = ["children", "size"], _excluded125$e = ["children", "size"]; var WatsonHealth3DCursor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DCursor(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$k); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$f || (_path$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 4L4 4 4 13.01 6 13.01 6 6 13 6 13 4zM29.49 13.12l-9-5a1 1 0 00-1 0l-9 5A1 1 0 0010 14V24a1 1 0 00.52.87l9 5A1 1 0 0020 30a1.05 1.05 0 00.49-.13l9-5A1 1 0 0030 24V14A1 1 0 0029.49 13.12zM19 27.3l-7-3.89V15.69l7 3.89zm1-9.45L13.06 14 20 10.14 26.94 14zm8 5.56L21 27.3V19.58l7-3.89z" })), children); }); { WatsonHealth3DCursor.propTypes = iconPropTypes; } var WatsonHealth3DCursorAlt = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DCursorAlt(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$f || (_path2$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path3$f || (_path3$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 7H17V14H15zM7 15H14V17H7zM15 18H17V25H15zM18 15H25V17H18z" })), children); }); { WatsonHealth3DCursorAlt.propTypes = iconPropTypes; } var WatsonHealth3DCurveAutoColon = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DCurveAutoColon(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$f || (_path4$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.5,8H20.1a5,5,0,1,0,0-2H9.5a5.5,5.5,0,0,0,0,11h11a3.5,3.5,0,0,1,0,7H11.9a5,5,0,1,0,0,2h8.6a5.5,5.5,0,0,0,0-11H9.5a3.5,3.5,0,0,1,0-7ZM25,4a3,3,0,1,1-3,3A3,3,0,0,1,25,4ZM7,28a3,3,0,1,1,3-3A3,3,0,0,1,7,28Z" })), children); }); { WatsonHealth3DCurveAutoColon.propTypes = iconPropTypes; } var WatsonHealth3DCurveAutoVessels = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DCurveAutoVessels(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$f || (_path5$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,11a3,3,0,0,1,3-3h.1a5,5,0,1,0,0-2H20a5,5,0,0,0-5,5v1H13a3,3,0,0,1-3-3V7A5,5,0,0,0,5,2H4V4H5A3,3,0,0,1,8,7V9a5,5,0,0,0,5,5h2v7a3,3,0,0,1-3,3h-.1a5,5,0,1,0,0,2H12a5,5,0,0,0,5-5h2.5A2.5,2.5,0,0,1,22,23.5,4.51,4.51,0,0,0,26.5,28H28V26H26.5A2.5,2.5,0,0,1,24,23.5,4.51,4.51,0,0,0,19.5,19H17Zm8-7a3,3,0,1,1-3,3A3,3,0,0,1,25,4ZM7,28a3,3,0,1,1,3-3A3,3,0,0,1,7,28Z" })), children); }); { WatsonHealth3DCurveAutoVessels.propTypes = iconPropTypes; } var WatsonHealth3DCurveManual = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DCurveManual(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$f || (_path6$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 21a3 3 0 01-3 3h-.1a5 5 0 100 2H12a5 5 0 005-5zM7 28a3 3 0 113-3A3 3 0 017 28zM15 13H17V19H15zM25 2a5 5 0 00-4.9 4H20a5 5 0 00-5 5h2a3 3 0 013-3h.1A5 5 0 1025 2zm0 8a3 3 0 113-3A3 3 0 0125 10z" })), children); }); { WatsonHealth3DCurveManual.propTypes = iconPropTypes; } var WatsonHealth3DICa = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DICa(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$f || (_path7$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 14H10a2 2 0 01-2-2V4a2 2 0 01.59-1.42A3.57 3.57 0 0110 2h5V4H10v8h5zM4 6H6V14H4zM4 2H6V4H4zM27.45 19.11l-6-3a1 1 0 00-.9 0l-6 3A1 1 0 0014 20v7a1 1 0 00.55.89l6 3a1 1 0 00.9 0l6-3A1 1 0 0028 27V20A1 1 0 0027.45 19.11zm-6.45-1L24.76 20 21 21.88 17.24 20zm-5 3.5l4 2v4.76l-4-2zm6 6.76V23.62l4-2v4.76zM23 2H19a2 2 0 00-2 2V14h2V10h4v4h2V4A2 2 0 0023 2zM19 8V4h4V8z" })), children); }); { WatsonHealth3DICa.propTypes = iconPropTypes; } var WatsonHealth3DMprToggle = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DMprToggle(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$f || (_path8$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 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 30zM25.49 10.13l-9-5a1 1 0 00-1 0l-9 5A1 1 0 006 11V21a1 1 0 00.51.87l9 5a1 1 0 001 0l9-5A1 1 0 0026 21V11A1 1 0 0025.49 10.13zM16 7.14L22.94 11 16 14.86 9.06 11zM8 12.7l7 3.89V24.3L8 20.41zm9 11.6V16.59l7-3.89v7.71z" })), children); }); { WatsonHealth3DMprToggle.propTypes = iconPropTypes; } var WatsonHealth3DPrintMesh = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DPrintMesh(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$f || (_path9$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9761,15.7832l-2-9a.9992.9992,0,0,0-.4214-.6152l-6-4A1.0008,1.0008,0,0,0,21,2H11a1.0008,1.0008,0,0,0-.5547.168l-6,4a.9992.9992,0,0,0-.4214.6152l-2,9a1.0019,1.0019,0,0,0,.0181.5039l3,10a1,1,0,0,0,.6709.6709l10,3,.0051.0005a.9789.9789,0,0,0,.564,0l.0051-.0005,10-3a1,1,0,0,0,.6709-.6709l3-10A1.0019,1.0019,0,0,0,29.9761,15.7832Zm-19.05.833L7.0168,8.7974l7.2815,2.6479ZM16,12.4971,19.5889,18H12.4111ZM19.3818,20,16,26.7637,12.6182,20Zm-1.68-8.5547,7.2815-2.6479-3.91,7.8188ZM18.19,9.14l3.0961-4.747,3.5152,2.3432ZM16,8.8364,12.8459,4h6.3082Zm-2.19.3032L7.1992,6.7358l3.5152-2.3432Zm-4.8439,8.03-4.802-1.8007L5.3652,9.9668ZM14.07,27.377,7.5679,25.4263l3.1284-4.7969Zm7.2334-6.7476,3.1284,4.7969L17.93,27.377ZM26.6348,9.9668l1.2006,5.4019-4.802,1.8007ZM4.5374,17.6445l4.5944,1.7227L6.3391,23.65ZM25.6609,23.65l-2.7927-4.2827,4.5944-1.7227Z" })), children); }); { WatsonHealth3DPrintMesh.propTypes = iconPropTypes; } var WatsonHealth3DSoftware = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3DSoftware(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$f || (_path10$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.49 13.1151l-9-5a1 1 0 00-1 0l-9 5A1.0078 1.0078 0 002 14v9.9951a1 1 0 00.52.87l9 5A1.0045 1.0045 0 0012 30a1.0559 1.0559 0 00.49-.1349l9-5A.9923.9923 0 0022 24V14A1.0079 1.0079 0 0021.49 13.1151zM11 27.2951l-7-3.89v-7.72l7 3.89zm1-9.45L5.06 14 12 10.1351l6.94 3.86zm8 5.56l-7 3.89v-7.72l7-3.89zM30 6L26 6 26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6z" })), children); }); { WatsonHealth3DSoftware.propTypes = iconPropTypes; } var WatsonHealth3rdPartyConnected = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealth3rdPartyConnected(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$f || (_path11$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a3.86,3.86,0,0,0-2,.57l-3.09-3.1a6,6,0,0,0,0-6.94L24,9.43A3.86,3.86,0,0,0,26,10a4,4,0,1,0-4-4,3.86,3.86,0,0,0,.57,2l-3.1,3.09a6,6,0,0,0-6.94,0L9.43,8A3.86,3.86,0,0,0,10,6a4,4,0,1,0-4,4,3.86,3.86,0,0,0,2-.57l3.09,3.1a6,6,0,0,0,0,6.94L8,22.57A3.86,3.86,0,0,0,6,22a4,4,0,1,0,4,4,3.86,3.86,0,0,0-.57-2l3.1-3.09a6,6,0,0,0,6.94,0L22.57,24A3.86,3.86,0,0,0,22,26a4,4,0,1,0,4-4ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" })), children); }); { WatsonHealth3rdPartyConnected.propTypes = iconPropTypes; } var _4K = /*#__PURE__*/React__default["default"].forwardRef(function _4K(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$f || (_path12$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 11.03L12 15.03 10 15.03 10 11.03 8 11.03 8 17.03 12 17.03 12 21.03 14 21.03 14 11.03 12 11.03zM24.19 11.03L22 11.03 19 15.42 19 11.03 17 11.03 17 21.03 19 21.03 19 18.3 19.91 16.97 22 21.03 24.19 21.03 21.2 15.41 24.19 11.03z" })), _path13$f || (_path13$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,8V24H28V8Z" })), children); }); { _4K.propTypes = iconPropTypes; } var _4KFilled = /*#__PURE__*/React__default["default"].forwardRef(function _4KFilled(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$f || (_path14$f = /*#__PURE__*/React__default["default"].createElement("path", { 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,6ZM14,21H12V17H8V11h2v4h2V11h2Zm10.19,0H22l-2.09-4.06L19,18.27V21H17V11h2v4.39L22,11h2.19l-3,4.38Z" })), children); }); { _4KFilled.propTypes = iconPropTypes; } var Accessibility = /*#__PURE__*/React__default["default"].forwardRef(function Accessibility(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$f || (_path15$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.55 26.11L26.5 27.63 23.66 21H15a2 2 0 01-2-2V13a2 2 0 014 0v4h7V15H19V13a4 4 0 00-8 0v1a9 9 0 108.77 11H17.71A7 7 0 1111 16v3a4 4 0 004 4h7.34l3.16 7.37 4.95-2.48zM15.5 8A3.5 3.5 0 1119 4.5 3.5 3.5 0 0115.5 8zm0-5A1.5 1.5 0 1017 4.5 1.5 1.5 0 0015.5 3z" })), children); }); { Accessibility.propTypes = iconPropTypes; } var AccessibilityAlt = /*#__PURE__*/React__default["default"].forwardRef(function AccessibilityAlt(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$f || (_path16$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 14L23 12 9 12 9 14 14 14 14 16.734 10.132 23.504 11.868 24.496 15.58 18 16.42 18 20.132 24.496 21.868 23.504 18 16.734 18 14 23 14z" })), _circle$f || (_circle$f = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "9", r: "2" })), _path17$f || (_path17$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { AccessibilityAlt.propTypes = iconPropTypes; } var AccessibilityColor = /*#__PURE__*/React__default["default"].forwardRef(function AccessibilityColor(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$f || (_path18$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,14Z" })), _path19$f || (_path19$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24a10.6547,10.6547,0,0,1-9.97-7.7576L5.9692,16l.0606-.2424A10.6547,10.6547,0,0,1,16,8a10.6547,10.6547,0,0,1,9.97,7.7576L26.0308,16l-.0606.2424A10.6547,10.6547,0,0,1,16,24ZM8.0352,16A8.5975,8.5975,0,0,0,16,22a8.5975,8.5975,0,0,0,7.9648-6A8.5975,8.5975,0,0,0,16,10,8.5975,8.5975,0,0,0,8.0352,16Z" })), _path20$f || (_path20$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { AccessibilityColor.propTypes = iconPropTypes; } var AccessibilityColorFilled = /*#__PURE__*/React__default["default"].forwardRef(function AccessibilityColorFilled(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$f || (_path21$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10a8.5975,8.5975,0,0,0-7.9648,6A8.5975,8.5975,0,0,0,16,22a8.5975,8.5975,0,0,0,7.9648-6A8.5975,8.5975,0,0,0,16,10Zm0,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Z" })), _path22$f || (_path22$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,22a10.6543,10.6543,0,0,1-9.97-7.7578L5.9692,16l.0606-.2422A10.6543,10.6543,0,0,1,16,8a10.6543,10.6543,0,0,1,9.97,7.7578L26.0308,16l-.0606.2422A10.6543,10.6543,0,0,1,16,24Z" })), _circle2$f || (_circle2$f = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path23$f || (_path23$f = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,14Z" })), _path24$f || (_path24$f = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,24a10.6547,10.6547,0,0,1-9.97-7.7576L5.9692,16l.0606-.2424A10.6547,10.6547,0,0,1,16,8a10.6547,10.6547,0,0,1,9.97,7.7576L26.0308,16l-.0606.2424A10.6547,10.6547,0,0,1,16,24ZM8.0352,16A8.5975,8.5975,0,0,0,16,22a8.5975,8.5975,0,0,0,7.9648-6A8.5975,8.5975,0,0,0,16,10,8.5975,8.5975,0,0,0,8.0352,16Z" })), children); }); { AccessibilityColorFilled.propTypes = iconPropTypes; } var Account = /*#__PURE__*/React__default["default"].forwardRef(function Account(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$f || (_path25$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,14H19v2H8Zm0,5H21v2H8Z" })), _path26$f || (_path26$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,2V8H4V6ZM4,26V10H28V26Z" })), children); }); { Account.propTypes = iconPropTypes; } var AccumulationIce = /*#__PURE__*/React__default["default"].forwardRef(function AccumulationIce(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$f || (_path27$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 8L22 16 23 18 24 16 24 8 22 8zM18 8L18 18 19 20 20 18 20 8 18 8z" })), _path28$f || (_path28$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4a2.0023,2.0023,0,0,0-2,2V26H6V22h4V20H6V16h4V14H6V10h8v4l1,2,1-2V8H6V6A2.0023,2.0023,0,0,0,4,4H2V6H4V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6h2V4Z" })), children); }); { AccumulationIce.propTypes = iconPropTypes; } var AccumulationPrecipitation = /*#__PURE__*/React__default["default"].forwardRef(function AccumulationPrecipitation(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$f || (_path29$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 16H18V18H16zM18 18H20V20H18zM20 20H22V22H20zM20 16H22V18H20zM16 20H18V22H16zM20 12a3.8978 3.8978 0 01-4-3.777 3.9017 3.9017 0 01.6533-2.0639L19.17 2.4141a1.0381 1.0381 0 011.6592 0L23.3154 6.11A3.9693 3.9693 0 0124 8.223 3.8978 3.8978 0 0120 12zm0-7.2368L18.3438 7.2257A1.89 1.89 0 0018 8.223 1.9 1.9 0 0020 10a1.9 1.9 0 002-1.777 1.98 1.98 0 00-.375-1.0466z" })), _path30$f || (_path30$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4a2.0023,2.0023,0,0,0-2,2V26H6V10H8v8l1,2,1-2V10h2v4l1,2,1-2V8H6V6A2.0023,2.0023,0,0,0,4,4H2V6H4V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6h2V4Z" })), children); }); { AccumulationPrecipitation.propTypes = iconPropTypes; } var AccumulationRain = /*#__PURE__*/React__default["default"].forwardRef(function AccumulationRain(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$f || (_path31$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4a2.0023,2.0023,0,0,0-2,2V8H24a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,20,5a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,16,8a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,12,5a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,8,8H6V6A2.0023,2.0023,0,0,0,4,4H2V6H4V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6h2V4ZM6,26V22h4V20H6V16h4V14H6V10H8a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,24,10h2V26Z" })), children); }); { AccumulationRain.propTypes = iconPropTypes; } var AccumulationSnow = /*#__PURE__*/React__default["default"].forwardRef(function AccumulationSnow(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$f || (_path32$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 2H14V4H12zM14 4H16V6H14zM16 6H18V8H16zM16 2H18V4H16zM12 6H14V8H12zM14 18H16V20H14zM16 20H18V22H16zM18 22H20V24H18zM18 18H20V20H18zM14 22H16V24H14zM18 10H20V12H18zM20 12H22V14H20zM22 14H24V16H22zM22 10H24V12H22zM18 14H20V16H18z" })), _path33$f || (_path33$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4a2.0023,2.0023,0,0,0-2,2V26H6V22h4V20H6V16h4V14H6V10h4V8H6V6A2.0023,2.0023,0,0,0,4,4H2V6H4V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6h2V4Z" })), children); }); { AccumulationSnow.propTypes = iconPropTypes; } var Activity = /*#__PURE__*/React__default["default"].forwardRef(function Activity(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$f || (_path34$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,29a1,1,0,0,1-.92-.62L6.33,17H2V15H7a1,1,0,0,1,.92.62L12,25.28,20.06,3.65A1,1,0,0,1,21,3a1,1,0,0,1,.93.68L25.72,15H30v2H25a1,1,0,0,1-.95-.68L21,7,12.94,28.35A1,1,0,0,1,12,29Z" })), children); }); { Activity.propTypes = iconPropTypes; } var Add = /*#__PURE__*/React__default["default"].forwardRef(function Add(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$f || (_path35$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 15L17 8 15 8 15 15 8 15 8 17 15 17 15 24 17 24 17 17 24 17 24 15z" })), children); }); { Add.propTypes = iconPropTypes; } var AddAlt = /*#__PURE__*/React__default["default"].forwardRef(function AddAlt(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$f || (_path36$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4c6.6,0,12,5.4,12,12s-5.4,12-12,12S4,22.6,4,16S9.4,4,16,4 M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14 S23.7,2,16,2z" })), _path37$f || (_path37$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 15L17 15 17 8 15 8 15 15 8 15 8 17 15 17 15 24 17 24 17 17 24 17z" })), children); }); { AddAlt.propTypes = iconPropTypes; } var AddFilled = /*#__PURE__*/React__default["default"].forwardRef(function AddFilled(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$f || (_path38$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14.1725,14.1725,0,0,0,2,16,14.1725,14.1725,0,0,0,16,30,14.1725,14.1725,0,0,0,30,16,14.1725,14.1725,0,0,0,16,2Zm8,15H17v7H15V17H8V15h7V8h2v7h7Z" })), _path39$f || (_path39$f = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M24 17L17 17 17 24 15 24 15 17 8 17 8 15 15 15 15 8 17 8 17 15 24 15 24 17z", "data-icon-path": "inner-path" })), children); }); { AddFilled.propTypes = iconPropTypes; } var AddComment = /*#__PURE__*/React__default["default"].forwardRef(function AddComment(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$f || (_path40$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.74,30,16,29l4-7h6a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2H6A2,2,0,0,0,4,8V20a2,2,0,0,0,2,2h9v2H6a4,4,0,0,1-4-4V8A4,4,0,0,1,6,4H26a4,4,0,0,1,4,4V20a4,4,0,0,1-4,4H21.16Z" })), _path41$f || (_path41$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 9L15 9 15 13 11 13 11 15 15 15 15 19 17 19 17 15 21 15 21 13 17 13 17 9z" })), children); }); { AddComment.propTypes = iconPropTypes; } var AgricultureAnalytics = /*#__PURE__*/React__default["default"].forwardRef(function AgricultureAnalytics(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$f || (_path42$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.251 21.3691l2.1943 1.4629A1 1 0 0027.8 22.6l3-4-1.6-1.2-2.4326 3.2437L24.5547 19.168a1 1 0 00-1.3687.2509L20 23.8789V16H18V26a2.0023 2.0023 0 002 2H30V26H20.9434zM2 21H16V23H2zM2 26H16V28H2zM11 16V11h1a4.0046 4.0046 0 004-4V4H13a3.9782 3.9782 0 00-2.7468 1.1066A6.0033 6.0033 0 005 2H2V5a6.0066 6.0066 0 006 6H9v5H2v2H16V16zM13 6h1V7a2.002 2.002 0 01-2 2H11V8A2.0019 2.0019 0 0113 6zM8 9A4.0046 4.0046 0 014 5V4H5A4.0045 4.0045 0 019 8V9z" })), children); }); { AgricultureAnalytics.propTypes = iconPropTypes; } var WatsonHealthAiResults = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResults(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$f || (_path43$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8a5.9908 5.9908 0 009.4712 4.8853L28.586 16 30 14.586l-3.115-3.1148A5.997 5.997 0 1016 8zm2 0a4 4 0 114 4A4.0045 4.0045 0 0118 8zM11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0055 8.0055 0 016-7.7373L13.6138 2.3A10.0088 10.0088 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM23.0493 16a9.5991 9.5991 0 01-1.8716 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857a10.9664 10.9664 0 002.3686-2.8331z" })), children); }); { WatsonHealthAiResults.propTypes = iconPropTypes; } var WatsonHealthAiResultsHigh = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResultsHigh(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$f || (_path44$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM23.0488 16a9.6136 9.6136 0 01-1.8711 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9886 9.9886 0 0025.2815 16zM16 4a7.9279 7.9279 0 013.69.9106l.8958-1.791A9.99 9.99 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2c0-1.84-1.1108-2.8662-2.1855-3.8594A7.1851 7.1851 0 018 12 8.0092 8.0092 0 0116 4zM29 14H19a1 1 0 01-.8945-1.4473l5-10a1 1 0 011.7888 0l5 10A1 1 0 0129 14zm-8.3818-2h6.7636L24 5.2361z" })), children); }); { WatsonHealthAiResultsHigh.propTypes = iconPropTypes; } var WatsonHealthAiResultsLow = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResultsLow(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$f || (_path45$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM24 14a6 6 0 116-6A6.0067 6.0067 0 0124 14zM24 4a4 4 0 104 4A4.0045 4.0045 0 0024 4zM23.04 16a9.4858 9.4858 0 01-1.8623 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9838 9.9838 0 0025.2756 16z" })), children); }); { WatsonHealthAiResultsLow.propTypes = iconPropTypes; } var WatsonHealthAiResultsMedium = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResultsMedium(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$f || (_path46$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM28 14H20a2.0021 2.0021 0 01-2-2V4a2.0021 2.0021 0 012-2h8a2.0021 2.0021 0 012 2v8A2.0021 2.0021 0 0128 14zM20 4v8h8V4zM23.04 16a9.4858 9.4858 0 01-1.8623 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9838 9.9838 0 0025.2756 16z" })), children); }); { WatsonHealthAiResultsMedium.propTypes = iconPropTypes; } var WatsonHealthAiResultsUrgent = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResultsUrgent(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$f || (_path47$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM20 2H22V9H20zM21 11a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0021 11zM26 2H28V9H26zM27 11a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0027 11zM23.04 16a9.4858 9.4858 0 01-1.8623 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9838 9.9838 0 0025.2756 16z" })), children); }); { WatsonHealthAiResultsUrgent.propTypes = iconPropTypes; } var WatsonHealthAiResultsVeryHigh = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiResultsVeryHigh(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48$f || (_path48$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 2H26V9H24zM25 11a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0025 11zM11 24H21V26H11zM13 28H19V30H13zM23.0488 16a9.6136 9.6136 0 01-1.8711 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9886 9.9886 0 0025.2815 16zM16 4a7.94 7.94 0 014 1.0825V2.8408A9.9887 9.9887 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2c0-1.84-1.1108-2.8662-2.1855-3.8594A7.1851 7.1851 0 018 12 8.0092 8.0092 0 0116 4z" })), children); }); { WatsonHealthAiResultsVeryHigh.propTypes = iconPropTypes; } var WatsonHealthAiStatus = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatus(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$f || (_path49$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM23.04 16a9.4858 9.4858 0 01-1.8623 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9838 9.9838 0 0025.2756 16zM20 14a1 1 0 01-.8945-.5527L17.3818 10H14V8h4a1 1 0 01.8945.5527L20 10.7639l3.1055-6.2112a1.0416 1.0416 0 011.789 0L26.6182 8H30v2H26a1 1 0 01-.8945-.5527L24 7.2361l-3.1055 6.2112A1 1 0 0120 14z" })), _path50$f || (_path50$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.8145,18.1406A7.1851,7.1851,0,0,1,8,12a8.0092,8.0092,0,0,1,8-8V2A10.0111,10.0111,0,0,0,6,12a9.1793,9.1793,0,0,0,3.46,7.6162C10.4717,20.5508,11,21.0815,11,22h2C13,20.16,11.8892,19.1338,10.8145,18.1406Z" })), children); }); { WatsonHealthAiStatus.propTypes = iconPropTypes; } var WatsonHealthAiStatusComplete = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatusComplete(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path51$f || (_path51$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM21 9.59L17.41 6 16 7.41 21 12.41 30 3.41 28.59 2 21 9.59zM23.8 14a7.28 7.28 0 01-2.6219 4.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.1426 9.1426 0 0025.8389 14z" })), children); }); { WatsonHealthAiStatusComplete.propTypes = iconPropTypes; } var WatsonHealthAiStatusFailed = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatusFailed(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$f || (_path52$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM23.8 14a7.28 7.28 0 01-2.6219 4.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.1426 9.1426 0 0025.8389 14zM30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z" })), children); }); { WatsonHealthAiStatusFailed.propTypes = iconPropTypes; } var WatsonHealthAiStatusInProgress = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatusInProgress(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53$f || (_path53$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM21.1777 18.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.193 9.193 0 0026 12H24A7.2032 7.2032 0 0121.1777 18.1426z" })), _circle3$f || (_circle3$f = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18.5", cy: "7.5", r: "1.5" })), _circle4$e || (_circle4$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28.5", cy: "7.5", r: "1.5" })), _circle5$e || (_circle5$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23.5", cy: "7.5", r: "1.5" })), children); }); { WatsonHealthAiStatusInProgress.propTypes = iconPropTypes; } var WatsonHealthAiStatusQueued = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatusQueued(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$f || (_path54$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM21.1777 18.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.193 9.193 0 0026 12H24A7.2032 7.2032 0 0121.1777 18.1426zM18 6H28V8H18z" })), children); }); { WatsonHealthAiStatusQueued.propTypes = iconPropTypes; } var WatsonHealthAiStatusRejected = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAiStatusRejected(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$f || (_path55$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H21V26H11zM13 28H19V30H13zM10.8145 18.1406A7.1851 7.1851 0 018 12a8.0092 8.0092 0 018-8V2A10.0111 10.0111 0 006 12a9.1793 9.1793 0 003.46 7.6162C10.4717 20.5508 11 21.0815 11 22h2C13 20.16 11.8892 19.1338 10.8145 18.1406zM23.04 16a9.4858 9.4858 0 01-1.8623 2.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.9838 9.9838 0 0025.2756 16zM30 8a6 6 0 10-6 6A6.0066 6.0066 0 0030 8zM28 8a3.9521 3.9521 0 01-.5669 2.019L21.981 4.5669A3.9529 3.9529 0 0124 4 4.0045 4.0045 0 0128 8zM20 8a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0124 12 4.0045 4.0045 0 0120 8z" })), children); }); { WatsonHealthAiStatusRejected.propTypes = iconPropTypes; } var AirlineDigitalGate = /*#__PURE__*/React__default["default"].forwardRef(function AirlineDigitalGate(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$f || (_path56$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 23H16V21a3.0033 3.0033 0 00-3-3H9a3.0033 3.0033 0 00-3 3v2H4V21a5.0058 5.0058 0 015-5h4a5.0059 5.0059 0 015 5zM11 6A3 3 0 118 9a3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0011 4zM2 26H30V28H2zM31.9658 11.7413a1.0007 1.0007 0 00-1.2246-.707l-3.0861.826L24 7l-1 .2676 1.4584 5.4483-2.7663.7405L20 11.2066l-1 .2676.9337 3.4883a.9993.9993 0 001.2246.707l10.1005-2.7036A1 1 0 0031.9658 11.7413z" })), children); }); { AirlineDigitalGate.propTypes = iconPropTypes; } var AirlineManageGates = /*#__PURE__*/React__default["default"].forwardRef(function AirlineManageGates(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$f || (_path57$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 23H16V21a3.0033 3.0033 0 00-3-3H9a3.0033 3.0033 0 00-3 3v2H4V21a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM11 6A3 3 0 118 9a3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0011 4zM2 26H30V28H2zM22 4L22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4z" })), children); }); { AirlineManageGates.propTypes = iconPropTypes; } var AirlinePassengerCare = /*#__PURE__*/React__default["default"].forwardRef(function AirlinePassengerCare(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$f || (_path58$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 23H16V21a3.0033 3.0033 0 00-3-3H9a3.0033 3.0033 0 00-3 3v2H4V21a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM11 6A3 3 0 118 9a3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0011 4zM2 26H30V28H2zM27.303 8a2.6616 2.6616 0 00-1.9079.8058L25 9.2112l-.3951-.4054a2.6615 2.6615 0 00-3.8157 0 2.7992 2.7992 0 000 3.8964L25 17l4.2108-4.2978a2.7992 2.7992 0 000-3.8964A2.6616 2.6616 0 0027.303 8z" })), children); }); { AirlinePassengerCare.propTypes = iconPropTypes; } var AirlineRapidBoard = /*#__PURE__*/React__default["default"].forwardRef(function AirlineRapidBoard(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$f || (_path59$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 23H16V21a3.0033 3.0033 0 00-3-3H9a3.0033 3.0033 0 00-3 3v2H4V21a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM11 6A3 3 0 118 9a3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0011 4zM2 26H30V28H2zM30 8L28 8 28 6 26 6 26 4 30 4 30 8zM19 4L23 4 23 6 21 6 21 8 19 8 19 4zM28 13H30V15H28zM26 11H28V13H26zM19 11L21 11 21 13 23 13 23 15 19 15 19 11z" })), children); }); { AirlineRapidBoard.propTypes = iconPropTypes; } var Airplay = /*#__PURE__*/React__default["default"].forwardRef(function Airplay(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$f || (_path60$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.9961,30H9.0039a1.0022,1.0022,0,0,1-.821-1.5769l6.9977-9.9965a1,1,0,0,1,1.6388,0l6.9977,9.9965A1.0022,1.0022,0,0,1,22.9961,30ZM10.92,28H21.08L16,20.7439Z" })), _path61$f || (_path61$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,24H24V22h4V6H4V22H8v2H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,28,24Z" })), children); }); { Airplay.propTypes = iconPropTypes; } var AirplayFilled = /*#__PURE__*/React__default["default"].forwardRef(function AirplayFilled(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$f || (_path62$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.9961,30H9.0039a1.0022,1.0022,0,0,1-.821-1.5769l6.9977-9.9965a1,1,0,0,1,1.6388,0l6.9977,9.9965A1.0022,1.0022,0,0,1,22.9961,30Z" })), _path63$f || (_path63$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,24H24V22h4V6H4V22H8v2H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,28,24Z" })), children); }); { AirplayFilled.propTypes = iconPropTypes; } var Airport_01 = /*#__PURE__*/React__default["default"].forwardRef(function Airport_01(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$f || (_path64$f = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M17,14.5,23,17V15l-6-3V9a1,1,0,0,0-2,0v3L9,15v2l6-2.5V20l-3,2v1l4-1,4,1V22l-3-2Z" })), _path65$f || (_path65$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Airport_01.propTypes = iconPropTypes; } var Airport_02 = /*#__PURE__*/React__default["default"].forwardRef(function Airport_02(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$f || (_path66$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,17H19.4141L16,13H14l2.5859,4H10.7207L9.5,15H8l1.0569,3.3046A1,1,0,0,0,10.0094,19H23a1,1,0,0,0,0-2Z" })), _path67$f || (_path67$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Airport_02.propTypes = iconPropTypes; } var AirportLocation = /*#__PURE__*/React__default["default"].forwardRef(function AirportLocation(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$f || (_path68$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15h-6.07A8.0076,8.0076,0,0,0,17,8.0693V2H15V8.0693A8.0076,8.0076,0,0,0,8.07,15H2v2H8.07A8.0076,8.0076,0,0,0,15,23.9307V30h2V23.9307A8.0076,8.0076,0,0,0,23.9305,17H30ZM16,22a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,16,22Z" })), children); }); { AirportLocation.propTypes = iconPropTypes; } var Alarm = /*#__PURE__*/React__default["default"].forwardRef(function Alarm(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$f || (_path69$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28A11,11,0,1,1,27,17,11,11,0,0,1,16,28ZM16,8a9,9,0,1,0,9,9A9,9,0,0,0,16,8Z" })), _path70$f || (_path70$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.59 21L15 17.41 15 11 17 11 17 16.58 20 19.59 18.59 21z" })), _path71$f || (_path71$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.96 5.5H9.030000000000001V7.5H3.96z", transform: "rotate(-45.06 6.502 6.497)" })), _path72$f || (_path72$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 3.96H26.5V9.030000000000001H24.5z", transform: "rotate(-44.94 25.5 6.498)" })), children); }); { Alarm.propTypes = iconPropTypes; } var AlarmAdd = /*#__PURE__*/React__default["default"].forwardRef(function AlarmAdd(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$f || (_path73$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28A11,11,0,1,1,27,17,11,11,0,0,1,16,28ZM16,8a9,9,0,1,0,9,9A9,9,0,0,0,16,8Z" })), _path74$f || (_path74$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.96 5.5H9.030000000000001V7.5H3.96z", transform: "rotate(-45.06 6.502 6.497)" })), _path75$f || (_path75$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 3.96H26.5V9.030000000000001H24.5z", transform: "rotate(-44.94 25.5 6.498)" })), _path76$f || (_path76$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 16L17 16 17 12 15 12 15 16 11 16 11 18 15 18 15 22 17 22 17 18 21 18 21 16z" })), children); }); { AlarmAdd.propTypes = iconPropTypes; } var AlarmSubtract = /*#__PURE__*/React__default["default"].forwardRef(function AlarmSubtract(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$f || (_path77$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28A11,11,0,1,1,27,17,11,11,0,0,1,16,28ZM16,8a9,9,0,1,0,9,9A9,9,0,0,0,16,8Z" })), _path78$f || (_path78$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.96 5.5H9.030000000000001V7.5H3.96z", transform: "rotate(-45.06 6.502 6.497)" })), _path79$f || (_path79$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 3.96H26.5V9.030000000000001H24.5z", transform: "rotate(-44.94 25.5 6.498)" })), _path80$f || (_path80$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 16H21V18H11z" })), children); }); { AlarmSubtract.propTypes = iconPropTypes; } var AlignHorizontalCenter = /*#__PURE__*/React__default["default"].forwardRef(function AlignHorizontalCenter(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$f || (_path81$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,18H17V14h3a2.0025,2.0025,0,0,0,2-2V8a2.0025,2.0025,0,0,0-2-2H17V2H15V6H12a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2h3v4H8a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2h7v4h2V26h7a2.0025,2.0025,0,0,0,2-2V20A2.0025,2.0025,0,0,0,24,18ZM12,8h8v4H12ZM24,24H8V20H24Z" })), children); }); { AlignHorizontalCenter.propTypes = iconPropTypes; } var AlignHorizontalLeft = /*#__PURE__*/React__default["default"].forwardRef(function AlignHorizontalLeft(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$f || (_path82$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 26H11a2.0023 2.0023 0 01-2-2V20a2.0023 2.0023 0 012-2H26a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0126 26zm0-6.0012L11 20v4H26zM18 14H11a2.0023 2.0023 0 01-2-2V8a2.0023 2.0023 0 012-2h7a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0118 14zm0-6.0012L11 8v4h7zM4 2H6V30H4z" })), children); }); { AlignHorizontalLeft.propTypes = iconPropTypes; } var AlignHorizontalRight = /*#__PURE__*/React__default["default"].forwardRef(function AlignHorizontalRight(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$f || (_path83$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 24V20a2.0023 2.0023 0 012-2H21a2.0023 2.0023 0 012 2v4a2.0023 2.0023 0 01-2 2H6A2.0023 2.0023 0 014 24zm2 0H21V20L6 19.9988zM12 12V8a2.0023 2.0023 0 012-2h7a2.0023 2.0023 0 012 2v4a2.0023 2.0023 0 01-2 2H14A2.0023 2.0023 0 0112 12zm2 0h7V8l-7-.0012z" })), _path84$f || (_path84$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 2H28V30H26z", transform: "rotate(-180 27 16)" })), children); }); { AlignHorizontalRight.propTypes = iconPropTypes; } var AlignVerticalBottom = /*#__PURE__*/React__default["default"].forwardRef(function AlignVerticalBottom(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$f || (_path85$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 26H30V28H2zM24 23H20a2.0023 2.0023 0 01-2-2V14a2.0023 2.0023 0 012-2h4a2.0023 2.0023 0 012 2v7A2.0023 2.0023 0 0124 23zm-4-9v7h4.0012L24 14zM12 23H8a2.0023 2.0023 0 01-2-2V6A2.0023 2.0023 0 018 4h4a2.0023 2.0023 0 012 2V21A2.0023 2.0023 0 0112 23zM8 6V21h4.0012L12 6z" })), children); }); { AlignVerticalBottom.propTypes = iconPropTypes; } var AlignVerticalCenter = /*#__PURE__*/React__default["default"].forwardRef(function AlignVerticalCenter(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$f || (_path86$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H26V12a2.0025,2.0025,0,0,0-2-2H20a2.0025,2.0025,0,0,0-2,2v3H14V8a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,8v7H2v2H6v7a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V17h4v3a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V17h4ZM8,24V8h4l.0012,16Zm12-4V12h4l.0012,8Z" })), children); }); { AlignVerticalCenter.propTypes = iconPropTypes; } var AlignVerticalTop = /*#__PURE__*/React__default["default"].forwardRef(function AlignVerticalTop(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$f || (_path87$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 20H20a2.0023 2.0023 0 01-2-2V11a2.0023 2.0023 0 012-2h4a2.0023 2.0023 0 012 2v7A2.0023 2.0023 0 0124 20zm-4-9v7h4.0012L24 11zM12 28H8a2.0023 2.0023 0 01-2-2V11A2.0023 2.0023 0 018 9h4a2.0023 2.0023 0 012 2V26A2.0023 2.0023 0 0112 28zM8 11V26h4.0012L12 11zM2 4H30V6H2z" })), children); }); { AlignVerticalTop.propTypes = iconPropTypes; } var AlignBoxBottomCenter = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxBottomCenter(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$f || (_path88$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path89$f || (_path89$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 18H22V20H10z", transform: "rotate(-180 16 19)" })), _path90$f || (_path90$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 23H20V25H12z", transform: "rotate(-180 16 24)" })), children); }); { AlignBoxBottomCenter.propTypes = iconPropTypes; } var AlignBoxBottomLeft = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxBottomLeft(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$f || (_path91$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path92$f || (_path92$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 18H20V20H9zM9 23H16V25H9z" })), children); }); { AlignBoxBottomLeft.propTypes = iconPropTypes; } var AlignBoxBottomRight = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxBottomRight(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$f || (_path93$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path94$f || (_path94$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 18H23V20H12z", transform: "rotate(-180 17.5 19)" })), _path95$f || (_path95$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 23H23V25H16z", transform: "rotate(-180 19.5 24)" })), children); }); { AlignBoxBottomRight.propTypes = iconPropTypes; } var AlignBoxMiddleCenter = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxMiddleCenter(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$f || (_path96$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path97$f || (_path97$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 13H22V15H10z", transform: "rotate(-180 16 14)" })), _path98$f || (_path98$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 18H20V20H12z", transform: "rotate(-180 16 19)" })), children); }); { AlignBoxMiddleCenter.propTypes = iconPropTypes; } var AlignBoxMiddleLeft = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxMiddleLeft(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$f || (_path99$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path100$f || (_path100$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 13H20V15H9zM9 18H16V20H9z" })), children); }); { AlignBoxMiddleLeft.propTypes = iconPropTypes; } var AlignBoxMiddleRight = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxMiddleRight(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$f || (_path101$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path102$f || (_path102$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 13H23V15H12z", transform: "rotate(-180 17.5 14)" })), _path103$f || (_path103$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 18H23V20H16z", transform: "rotate(-180 19.5 19)" })), children); }); { AlignBoxMiddleRight.propTypes = iconPropTypes; } var AlignBoxTopCenter = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxTopCenter(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$f || (_path104$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path105$f || (_path105$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 7H22V9H10z", transform: "rotate(-180 16 8)" })), _path106$f || (_path106$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 12H20V14H12z", transform: "rotate(-180 16 13)" })), children); }); { AlignBoxTopCenter.propTypes = iconPropTypes; } var AlignBoxTopLeft = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxTopLeft(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path107$f || (_path107$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path108$f || (_path108$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 7H20V9H9zM9 12H16V14H9z" })), children); }); { AlignBoxTopLeft.propTypes = iconPropTypes; } var AlignBoxTopRight = /*#__PURE__*/React__default["default"].forwardRef(function AlignBoxTopRight(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109$f || (_path109$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30ZM6,4V28H26V4Z" })), _path110$f || (_path110$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 7H23V9H12z", transform: "rotate(-180 17.5 8)" })), _path111$f || (_path111$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 12H23V14H16z", transform: "rotate(-180 19.5 13)" })), children); }); { AlignBoxTopRight.propTypes = iconPropTypes; } var Analytics = /*#__PURE__*/React__default["default"].forwardRef(function Analytics(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$f || (_path112$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,2H2V28a2,2,0,0,0,2,2H30V28H4Z" })), _path113$f || (_path113$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,9H23v2h3.59L19,18.59l-4.29-4.3a1,1,0,0,0-1.42,0L6,21.59,7.41,23,14,16.41l4.29,4.3a1,1,0,0,0,1.42,0L28,12.41V16h2Z" })), children); }); { Analytics.propTypes = iconPropTypes; } var AnalyticsCustom = /*#__PURE__*/React__default["default"].forwardRef(function AnalyticsCustom(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$f || (_path114$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM30 4H23V6h3.5859L19 13.5859 14.707 9.293a1 1 0 00-1.414 0L6 16.5859 7.4141 18 14 11.4141l4.293 4.2929a1 1 0 001.414 0L28 7.4141V11h2z" })), _path115$f || (_path115$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,2H2V28a2,2,0,0,0,2,2h8V28H4Z" })), children); }); { AnalyticsCustom.propTypes = iconPropTypes; } var AnalyticsReference = /*#__PURE__*/React__default["default"].forwardRef(function AnalyticsReference(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$f || (_path116$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM30 4H23V6h3.5859L19 13.5859 14.707 9.293a1 1 0 00-1.414 0L8 14.5858 9.4142 16 14 11.4141l4.293 4.2929a1 1 0 001.414 0L28 7.4141V11h2zM16 28H30V30H16zM2 2H4V16H2z" })), children); }); { AnalyticsReference.propTypes = iconPropTypes; } var WatsonHealthAngle = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAngle(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$f || (_path117$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,24a3.51,3.51,0,0,0-.88-1.86L17.65,5.56l-1.73-1L6.35,21.12A3.06,3.06,0,0,0,5.5,21a3.5,3.5,0,1,0,3.15,5H28V24ZM5.5,26A1.5,1.5,0,1,1,7,24.5,1.5,1.5,0,0,1,5.5,26Z" })), _path118$f || (_path118$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,21h2a13,13,0,0,0-5.42-10.56l-1.16,1.62A11,11,0,0,1,22,21Z" })), children); }); { WatsonHealthAngle.propTypes = iconPropTypes; } var WatsonHealthAnnotationVisibility = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAnnotationVisibility(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$f || (_path119$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,22H4V6H28Z" })), _path120$f || (_path120$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 20H13a3.51 3.51 0 00-.88-1.86l3.8-6.64-1.74-1-3.78 6.62A3.35 3.35 0 009.5 17a3.5 3.5 0 103.15 5H21zM9.5 22A1.5 1.5 0 1111 20.5 1.5 1.5 0 019.5 22zM19 8H26V10H19zM19 12H23V14H19z" })), children); }); { WatsonHealthAnnotationVisibility.propTypes = iconPropTypes; } var Aperture = /*#__PURE__*/React__default["default"].forwardRef(function Aperture(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$f || (_path121$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM27.84,14.14,22,17.52V5.62A12,12,0,0,1,27.84,14.14ZM12,18.68V13.32L16,11l4,2.31v5.36L16,21Zm8-14V11L10.34,5.42A11.9,11.9,0,0,1,20,4.7Zm-11.52,2L14,9.85,4,15.62A12,12,0,0,1,8.48,6.66ZM4.16,17.85,10,14.47V26.38A12,12,0,0,1,4.16,17.85ZM12,27.3V21l9.67,5.58A11.92,11.92,0,0,1,16,28,12.05,12.05,0,0,1,12,27.3Zm11.52-2L18,22.14l10-5.77A12,12,0,0,1,23.52,25.34Z" })), children); }); { Aperture.propTypes = iconPropTypes; } var Api = /*#__PURE__*/React__default["default"].forwardRef(function Api(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$f || (_path122$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a3.86,3.86,0,0,0-2,.57l-3.09-3.1a6,6,0,0,0,0-6.94L24,9.43A3.86,3.86,0,0,0,26,10a4,4,0,1,0-4-4,3.86,3.86,0,0,0,.57,2l-3.1,3.09a6,6,0,0,0-6.94,0L9.43,8A3.86,3.86,0,0,0,10,6a4,4,0,1,0-4,4,3.86,3.86,0,0,0,2-.57l3.09,3.1a6,6,0,0,0,0,6.94L8,22.57A3.86,3.86,0,0,0,6,22a4,4,0,1,0,4,4,3.86,3.86,0,0,0-.57-2l3.1-3.09a6,6,0,0,0,6.94,0L22.57,24A3.86,3.86,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm10-8a4,4,0,1,1,4-4A4,4,0,0,1,16,20Zm10,8a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" })), children); }); { Api.propTypes = iconPropTypes; } var Api_1 = /*#__PURE__*/React__default["default"].forwardRef(function Api_1(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$f || (_path123$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 9H4a2 2 0 00-2 2V23H4V18H8v5h2V11A2 2 0 008 9zM4 16V11H8v5zM22 11L25 11 25 21 22 21 22 23 30 23 30 21 27 21 27 11 30 11 30 9 22 9 22 11zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14z" })), children); }); { Api_1.propTypes = iconPropTypes; } var App = /*#__PURE__*/React__default["default"].forwardRef(function App(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$f || (_path124$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 10H22V24h2V20h4a2.0027 2.0027 0 002-2V12A2.0023 2.0023 0 0028 10zm-4 8V12h4v6zM18 10H12V24h2V20h4a2.0027 2.0027 0 002-2V12A2.0023 2.0023 0 0018 10zm-4 8V12h4v6zM8 10H3v2H8v2H4a2 2 0 00-2 2v2a2 2 0 002 2h6V12A2.0023 2.0023 0 008 10zm0 8H4V16H8z" })), children); }); { App.propTypes = iconPropTypes; } var AppConnectivity = /*#__PURE__*/React__default["default"].forwardRef(function AppConnectivity(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$f || (_path125$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,14h8a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2H9A2.0023,2.0023,0,0,0,7,6v4H4a2.0023,2.0023,0,0,0-2,2v8a2.0023,2.0023,0,0,0,2,2H6v4a2.0023,2.0023,0,0,0,2,2H18a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V20a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2v6H8V22h4a2.0023,2.0023,0,0,0,2-2V12a2.0023,2.0023,0,0,0-2-2H9V6h9v6A2.0023,2.0023,0,0,0,20,14Zm0,14V24h8v4Zm8-8,0,2H20V20ZM4,20V16h8v4Zm8.0005-6H4V12h8ZM20,12V8h8v4Zm8-8,0,2H20V4Z" })), children); }); { AppConnectivity.propTypes = iconPropTypes; } var Apple = /*#__PURE__*/React__default["default"].forwardRef(function Apple(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$f || (_path126$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.7788,8a11.4843,11.4843,0,0,0-3.0547.5342,14.5665,14.5665,0,0,1-1.8225.4126A6.0054,6.0054,0,0,0,11,4V6a3.9933,3.9933,0,0,1,3.8267,2.9c-.5181-.0879-1.0569-.2207-1.6172-.3648A12.89,12.89,0,0,0,10.0317,8C6.311,8,4,11.0652,4,16c0,7.51,4.0679,11.999,8.0005,12h.0015a7.1576,7.1576,0,0,0,2.49-.59A5.0128,5.0128,0,0,1,16,27a5.0266,5.0266,0,0,1,1.5112.41A7.15,7.15,0,0,0,20,28h0c3.9307-.001,8-4.49,8-12C28,12.3094,26.3706,8,21.7788,8ZM20,26h0a5.5038,5.5038,0,0,1-1.7905-.4639A6.4168,6.4168,0,0,0,16,25a6.4043,6.4043,0,0,0-2.2061.5361A5.5343,5.5343,0,0,1,12,26h.0015C9.0513,25.9988,6,22.2586,6,16c0-1.8037.3931-6,4.0317-6a11.2363,11.2363,0,0,1,2.6807.4726A12.9819,12.9819,0,0,0,15.7612,11h.4922a11.7955,11.7955,0,0,0,2.9956-.5361A9.8483,9.8483,0,0,1,21.7788,10C25.7964,10,26,14.9978,26,16,26,22.2586,22.9482,25.9988,20,26Z" })), _path127$f || (_path127$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,7H17V6a2.0021,2.0021,0,0,1,2-2h1V5A2.0021,2.0021,0,0,1,18,7Z" })), children); }); { Apple.propTypes = iconPropTypes; } var Application = /*#__PURE__*/React__default["default"].forwardRef(function Application(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$f || (_path128$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 18H6a2 2 0 01-2-2V6A2 2 0 016 4H16a2 2 0 012 2V16A2 2 0 0116 18zM6 6V16H16V6zM26 12v4H22V12h4m0-2H22a2 2 0 00-2 2v4a2 2 0 002 2h4a2 2 0 002-2V12a2 2 0 00-2-2zM26 22v4H22V22h4m0-2H22a2 2 0 00-2 2v4a2 2 0 002 2h4a2 2 0 002-2V22a2 2 0 00-2-2zM16 22v4H12V22h4m0-2H12a2 2 0 00-2 2v4a2 2 0 002 2h4a2 2 0 002-2V22a2 2 0 00-2-2z" })), children); }); { Application.propTypes = iconPropTypes; } var ApplicationMobile = /*#__PURE__*/React__default["default"].forwardRef(function ApplicationMobile(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$f || (_path129$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 7H27V11H23zM23 13H27V17H23zM17 7H21V11H17zM17 13H21V17H17z" })), _circle6$e || (_circle6$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14.5", cy: "24.5", r: "1.5" })), _path130$f || (_path130$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H21V4H8V28H21V20h2v8A2.0023,2.0023,0,0,1,21,30Z" })), children); }); { ApplicationMobile.propTypes = iconPropTypes; } var ApplicationVirtual = /*#__PURE__*/React__default["default"].forwardRef(function ApplicationVirtual(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$f || (_path131$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 19H21V23H17zM11 19H15V23H11zM17 25H21V29H17zM11 25H15V29H11z" })), _path132$f || (_path132$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5,25H24V23h.5a5.4961,5.4961,0,0,0,.377-10.9795l-.8365-.0566-.09-.834a7.9979,7.9979,0,0,0-15.9014,0l-.09.834-.8365.0566A5.4961,5.4961,0,0,0,7.5,23H8v2H7.5A7.4964,7.4964,0,0,1,6.1782,10.124a9.9992,9.9992,0,0,1,19.6436,0A7.4964,7.4964,0,0,1,24.5,25Z" })), children); }); { ApplicationVirtual.propTypes = iconPropTypes; } var ApplicationWeb = /*#__PURE__*/React__default["default"].forwardRef(function ApplicationWeb(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$f || (_path133$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 2H30V6H26zM26 8H30V12H26zM20 2H24V6H20zM20 8H24V12H20z" })), _path134$f || (_path134$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" })), children); }); { ApplicationWeb.propTypes = iconPropTypes; } var Apps = /*#__PURE__*/React__default["default"].forwardRef(function Apps(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path135$f || (_path135$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 2v2H2V2h2zm1-1H1v4h4V1zM9 2v2H7V2h2zm1-1H6v4h4V1zM14 2v2h-2V2h2zm1-1h-4v4h4V1zM4 7v2H2V7h2zm1-1H1v4h4V6zM9 7v2H7V7h2zm1-1H6v4h4V6zM14 7v2h-2V7h2zm1-1h-4v4h4V6zM4 12v2H2v-2h2zm1-1H1v4h4v-4zM9 12v2H7v-2h2zm1-1H6v4h4v-4zM14 12v2h-2v-2h2zm1-1h-4v4h4v-4z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$f || (_path136$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,4V8H4V4Zm2-2H2v8h8Zm8,2V8H14V4Zm2-2H12v8h8Zm8,2V8H24V4Zm2-2H22v8h8ZM8,14v4H4V14Zm2-2H2v8h8Zm8,2v4H14V14Zm2-2H12v8h8Zm8,2v4H24V14Zm2-2H22v8h8ZM8,24v4H4V24Zm2-2H2v8h8Zm8,2v4H14V24Zm2-2H12v8h8Zm8,2v4H24V24Zm2-2H22v8h8Z" })), children); }); { Apps.propTypes = iconPropTypes; } var Archive = /*#__PURE__*/React__default["default"].forwardRef(function Archive(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$f || (_path137$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 19H18V21H14z" })), _path138$f || (_path138$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V2ZM24,28H8V16H24Zm0-14H8V10H24ZM8,8V4H24V8Z" })), children); }); { Archive.propTypes = iconPropTypes; } var Area = /*#__PURE__*/React__default["default"].forwardRef(function Area(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$f || (_path139$f = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Area.propTypes = iconPropTypes; } var AreaCustom = /*#__PURE__*/React__default["default"].forwardRef(function AreaCustom(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$f || (_path140$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6a3.9916,3.9916,0,0,0-7.9773-.2241L9.5864,8.2627A3.99,3.99,0,1,0,5,13.8579v8.2842A3.9915,3.9915,0,1,0,9.8579,27h8.2842a3.9912,3.9912,0,1,0,5.595-4.5864l2.487-12.4361A3.9945,3.9945,0,0,0,30,6ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM4,10a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,4,10ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm12.1421-3H9.8579A3.9942,3.9942,0,0,0,7,22.1421V13.8579a3.9871,3.9871,0,0,0,2.9773-3.6338L22.4136,7.7373a4.0053,4.0053,0,0,0,1.8493,1.8491l-2.487,12.4361A3.9874,3.9874,0,0,0,18.1421,25ZM22,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,22,28Z" })), children); }); { AreaCustom.propTypes = iconPropTypes; } var Arrival = /*#__PURE__*/React__default["default"].forwardRef(function Arrival(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$f || (_path141$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM17.21 5.23l1.39.38 1 11.29 5.87 1.57A2 2 0 0127 20.62a1.88 1.88 0 01-1.37 1.52 2 2 0 01-1 0l-18.7-5a1.89 1.89 0 01-1.33-2.3L6.35 8.34l1.44.38L8.4 13.9l6 1.62L17.21 5.23m-1-2.2a1 1 0 00-.68.69L13 13.07l-2.81-.75L9.69 7.79A1 1 0 009 7L5.87 6.14a.94.94 0 00-.5 0 1 1 0 00-.68.68l-2 7.49a3.87 3.87 0 002.74 4.74l18.71 5A3.87 3.87 0 0029 21a4 4 0 00-3-4.42l-4.52-1.21L20.53 4.71a1 1 0 00-.72-.85L16.73 3a1.06 1.06 0 00-.5 0z" })), children); }); { Arrival.propTypes = iconPropTypes; } var WatsonHealthArrowAnnotation = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthArrowAnnotation(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$f || (_path142$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.71 12.29L7.42 6 14 6 14 4 4 4 4 13.99 6 14.01 6 7.41 12.29 13.7 13.71 12.29zM28 10H18v2H28V28H12V18H10V28a2 2 0 002 2H28a2 2 0 002-2V12A2 2 0 0028 10z" })), _path143$f || (_path143$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 25L21 25 21 18 24 18 24 16 16 16 16 18 19 18 19 25z" })), children); }); { WatsonHealthArrowAnnotation.propTypes = iconPropTypes; } var ArrowDown = /*#__PURE__*/React__default["default"].forwardRef(function ArrowDown(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path144$f || (_path144$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.3 9.3L8.5 13.1 8.5 1 7.5 1 7.5 13.1 3.7 9.3 3 10 8 15 13 10z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$f || (_path145$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.59 16.59L17 24.17 17 4 15 4 15 24.17 7.41 16.59 6 18 16 28 26 18 24.59 16.59z" })), children); }); { ArrowDown.propTypes = iconPropTypes; } var ArrowDownLeft = /*#__PURE__*/React__default["default"].forwardRef(function ArrowDownLeft(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$f || (_path146$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 26L22 24 9.41 24 26 7.41 24.59 6 8 22.59 8 10 6 10 6 26 22 26z" })), children); }); { ArrowDownLeft.propTypes = iconPropTypes; } var ArrowDownRight = /*#__PURE__*/React__default["default"].forwardRef(function ArrowDownRight(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$f || (_path147$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 26L10 24 22.59 24 6 7.41 7.41 6 24 22.59 24 10 26 10 26 26 10 26z" })), children); }); { ArrowDownRight.propTypes = iconPropTypes; } var ArrowLeft = /*#__PURE__*/React__default["default"].forwardRef(function ArrowLeft(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path148$f || (_path148$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.7 12.3L2.9 8.5 15 8.5 15 7.5 2.9 7.5 6.7 3.7 6 3 1 8 6 13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$f || (_path149$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 26L15.41 24.59 7.83 17 28 17 28 15 7.83 15 15.41 7.41 14 6 4 16 14 26z" })), children); }); { ArrowLeft.propTypes = iconPropTypes; } var ArrowRight = /*#__PURE__*/React__default["default"].forwardRef(function ArrowRight(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path150$f || (_path150$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.3 3.7L13.1 7.5 1 7.5 1 8.5 13.1 8.5 9.3 12.3 10 13 15 8 10 3z" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path151$f || (_path151$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.8 2.8L10.8 3.8 16.2 9.3 1 9.3 1 10.7 16.2 10.7 10.8 16.2 11.8 17.2 19 10z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path152$f || (_path152$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 4L12.9 5.1 18.9 11.2 2 11.2 2 12.8 18.9 12.8 12.9 18.9 14 20 22 12z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$f || (_path153$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 6L16.57 7.393 24.15 15 4 15 4 17 24.15 17 16.57 24.573 18 26 28 16 18 6z" })), children); }); { ArrowRight.propTypes = iconPropTypes; } var ArrowUp = /*#__PURE__*/React__default["default"].forwardRef(function ArrowUp(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path154$f || (_path154$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.7 6.7L7.5 2.9 7.5 15 8.5 15 8.5 2.9 12.3 6.7 13 6 8 1 3 6z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$f || (_path155$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 4L6 14 7.41 15.41 15 7.83 15 28 17 28 17 7.83 24.59 15.41 26 14 16 4z" })), children); }); { ArrowUp.propTypes = iconPropTypes; } var ArrowUpLeft = /*#__PURE__*/React__default["default"].forwardRef(function ArrowUpLeft(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$f || (_path156$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 6L22 8 9.41 8 26 24.59 24.59 26 8 9.41 8 22 6 22 6 6 22 6z" })), children); }); { ArrowUpLeft.propTypes = iconPropTypes; } var ArrowUpRight = /*#__PURE__*/React__default["default"].forwardRef(function ArrowUpRight(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$f || (_path157$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6L10 8 22.59 8 6 24.59 7.41 26 24 9.41 24 22 26 22 26 6 10 6z" })), children); }); { ArrowUpRight.propTypes = iconPropTypes; } var ArrowShiftDown = /*#__PURE__*/React__default["default"].forwardRef(function ArrowShiftDown(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$f || (_path158$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,6V16h5a1,1,0,0,1,.707,1.707l-12,12a.9994.9994,0,0,1-1.414,0l-12-12A1,1,0,0,1,4,16H9V6a2.0023,2.0023,0,0,1,2-2H21A2.0027,2.0027,0,0,1,23,6ZM16,27.5859,25.5859,18H21V6H11V18H6.4141Z" })), children); }); { ArrowShiftDown.propTypes = iconPropTypes; } var ArrowsHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function ArrowsHorizontal(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$f || (_path159$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.41 26.59L7.83 23 28 23 28 21 7.83 21 11.41 17.41 10 16 4 22 10 28 11.41 26.59zM28 10L22 4 20.59 5.41 24.17 9 4 9 4 11 24.17 11 20.59 14.59 22 16 28 10z" })), children); }); { ArrowsHorizontal.propTypes = iconPropTypes; } var ArrowsVertical = /*#__PURE__*/React__default["default"].forwardRef(function ArrowsVertical(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$f || (_path160$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.6 20.6L24 24.2 24 4 22 4 22 24.2 18.4 20.6 17 22 23 28 29 22zM9 4L3 10 4.4 11.4 8 7.8 8 28 10 28 10 7.8 13.6 11.4 15 10z" })), children); }); { ArrowsVertical.propTypes = iconPropTypes; } var Asleep = /*#__PURE__*/React__default["default"].forwardRef(function Asleep(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path161$f || (_path161$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.2,2.3c-1,4.4,1.7,8.7,6.1,9.8c0.1,0,0.1,0,0.2,0c-1.1,1.2-2.7,1.8-4.3,1.8c-0.1,0-0.2,0-0.2,0C5.6,13.8,3,11,3.2,7.7 C3.2,5.3,4.8,3.1,7.2,2.3 M8,1L8,1C4.1,1.6,1.5,5.3,2.1,9.1c0.6,3.3,3.4,5.8,6.8,5.9c0.1,0,0.2,0,0.3,0c2.3,0,4.4-1.1,5.8-3 c0.2-0.2,0.1-0.6-0.1-0.7c-0.1-0.1-0.2-0.1-0.3-0.1c-3.9-0.3-6.7-3.8-6.4-7.6C8.3,3,8.4,2.4,8.6,1.8c0.1-0.3,0-0.6-0.3-0.7 C8.1,1,8.1,1,8,1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162$f || (_path162$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5025,5.4136A15.0755,15.0755,0,0,0,25.096,23.6082a11.1134,11.1134,0,0,1-7.9749,3.3893c-.1385,0-.2782.0051-.4178,0A11.0944,11.0944,0,0,1,13.5025,5.4136M14.98,3a1.0024,1.0024,0,0,0-.1746.0156A13.0959,13.0959,0,0,0,16.63,28.9973c.1641.006.3282,0,.4909,0a13.0724,13.0724,0,0,0,10.702-5.5556,1.0094,1.0094,0,0,0-.7833-1.5644A13.08,13.08,0,0,1,15.8892,4.38,1.0149,1.0149,0,0,0,14.98,3Z" })), children); }); { Asleep.propTypes = iconPropTypes; } var AsleepFilled = /*#__PURE__*/React__default["default"].forwardRef(function AsleepFilled(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$f || (_path163$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.98,3a1.0024,1.0024,0,0,0-.1746.0156A13.0959,13.0959,0,0,0,16.63,28.9973c.1641.006.3282,0,.4909,0a13.0724,13.0724,0,0,0,10.702-5.5556,1.0094,1.0094,0,0,0-.7833-1.5644A13.08,13.08,0,0,1,15.8892,4.38,1.0149,1.0149,0,0,0,14.98,3Z" })), children); }); { AsleepFilled.propTypes = iconPropTypes; } var Assembly = /*#__PURE__*/React__default["default"].forwardRef(function Assembly(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$f || (_path164$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,25.4l-8-4.7v-9.4l8-4.7l8,4.7v9.4L16,25.4z M10,19.6l6,3.5l6-3.5v-7.1l-6-3.5l-6,3.5V19.6z" })), _path165$f || (_path165$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,8.2L17,2.3C16.7,2.1,16.4,2,16,2s-0.7,0.1-1,0.3L5,8.2c-0.6,0.4-1,1-1,1.7v12.2c0,0.7,0.4,1.4,1,1.7l10,5.9 c0.3,0.2,0.7,0.3,1,0.3s0.7-0.1,1-0.3l10-5.9c0.6-0.4,1-1,1-1.7V9.9C28,9.2,27.6,8.5,27,8.2z M26,22.1L16,28L6,22.1V9.9L16,4l10,5.9 V22.1z" })), children); }); { Assembly.propTypes = iconPropTypes; } var AssemblyCluster = /*#__PURE__*/React__default["default"].forwardRef(function AssemblyCluster(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$f || (_path166$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.3 4.9l-4.5-2.7C16.5 2.1 16.3 2 16 2s-.5.1-.7.2l-4.5 2.7C10.3 5.2 10 5.7 10 6.2v5.6c0 .5.3 1 .7 1.3l4.5 2.7c.2.1.5.2.7.2s.5-.1.7-.2l4.5-2.7c.4-.3.7-.7.7-1.3V6.2C22 5.7 21.7 5.2 21.3 4.9zM20 11.5l-4 2.4-4-2.4v-5l4-2.4 4 2.4V11.5zM29.3 18.9l-4.5-2.7C24.5 16.1 24.3 16 24 16s-.5.1-.7.2l-4.5 2.7c-.4.3-.7.7-.7 1.3v5.6c0 .5.3 1 .7 1.3l4.5 2.7c.2.1.5.2.7.2s.5-.1.7-.2l4.5-2.7c.4-.3.7-.7.7-1.3v-5.6C30 19.7 29.7 19.2 29.3 18.9zM28 25.5l-4 2.4-4-2.4v-5l4-2.4 4 2.4V25.5zM13.3 18.9l-4.5-2.7C8.5 16.1 8.3 16 8 16s-.5.1-.7.2l-4.5 2.7C2.3 19.2 2 19.7 2 20.2v5.6c0 .5.3 1 .7 1.3l4.5 2.7C7.5 29.9 7.7 30 8 30s.5-.1.7-.2l4.5-2.7c.4-.3.7-.7.7-1.3v-5.6C14 19.7 13.7 19.2 13.3 18.9zM12 25.5l-4 2.4-4-2.4v-5l4-2.4 4 2.4V25.5z" })), children); }); { AssemblyCluster.propTypes = iconPropTypes; } var AssemblyReference = /*#__PURE__*/React__default["default"].forwardRef(function AssemblyReference(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$f || (_path167$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.7 5.1H12.2V7.1H8.7z", transform: "rotate(-30.582 10.48 6.101)" })), _path168$f || (_path168$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 12H4V9.9c0-.7.4-1.4 1-1.7l1.5-.9 1 1.7L6 9.9V12zM4 14H6V18H4zM6.5 24.7L5 23.8c-.6-.4-1-1-1-1.7V20h2v2.1L7.5 23 6.5 24.7z" })), _path169$f || (_path169$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.5 24.1H11.5V27.6H9.5z", transform: "rotate(-59.421 10.48 25.9)" })), _path170$f || (_path170$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.5,27.1L16,28l-1.5-0.9l-1,1.7l1.5,0.9c0.3,0.2,0.7,0.3,1,0.3c0.4,0,0.7-0.1,1-0.3l1.5-0.9L17.5,27.1z" })), _path171$f || (_path171$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.8 24.9H23.3V26.9H19.8z", transform: "rotate(-30.582 21.502 25.912)" })), _path172$f || (_path172$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.2 24.9l-1-1.7 1.8-1V20h2v2.1c0 .7-.4 1.4-1 1.7L25.2 24.9zM26 14H28V18H26zM28 12h-2V9.9l-1.8-1 1-1.7 1.8 1c.6.4 1 1 1 1.7V12z" })), _path173$f || (_path173$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.5 4.3H22.5V7.8H20.5z", transform: "rotate(-59.421 21.501 6.089)" })), _path174$f || (_path174$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.5,4.9L16,4l-1.5,0.9l-1-1.7L15,2.3C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l1.5,0.9L17.5,4.9z" })), children); }); { AssemblyReference.propTypes = iconPropTypes; } var Asset = /*#__PURE__*/React__default["default"].forwardRef(function Asset(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$f || (_path175$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,24a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,12,24Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,12,18Z" })), _path176$f || (_path176$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6a4.0042,4.0042,0,0,0-4-4,3.949,3.949,0,0,0-1.8537.4768L7.7571,10.9579A9.9921,9.9921,0,1,0,21.066,24.1929l8.49-16.3994A3.9491,3.9491,0,0,0,30,6ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM22.0194,5.8083C22.0163,5.8732,22,5.9343,22,6a4.0042,4.0042,0,0,0,4,4c.0645,0,.1245-.016.1882-.019l-4.3318,8.3617a10.0168,10.0168,0,0,0-8.2158-8.1962ZM12,28a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,12,28Z" })), children); }); { Asset.propTypes = iconPropTypes; } var AssetConfirm = /*#__PURE__*/React__default["default"].forwardRef(function AssetConfirm(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$f || (_path177$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 27.18L18.41 24.59 17 26 21 30 28 23 26.59 21.59 21 27.18zM12 24a4 4 0 114-4A4.0042 4.0042 0 0112 24zm0-6a2 2 0 102 2A2.0023 2.0023 0 0012 18z" })), _path178$f || (_path178$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2a3.86,3.86,0,0,0-1.85.48L7.76,10.96A9.99,9.99,0,0,0,12,30a9.3445,9.3445,0,0,0,2-.21V27.75A8.2289,8.2289,0,0,1,12,28a8,8,0,1,1,8-8,8.2656,8.2656,0,0,1-.06,1h2.78L29.56,7.79A3.9727,3.9727,0,0,0,26,2ZM21.86,18.34a10.0187,10.0187,0,0,0-8.22-8.19l8.38-4.34c0,.06-.02.12-.02.19a3.9989,3.9989,0,0,0,4,4c.06,0,.12-.02.19-.02ZM26,8a2,2,0,1,1,2-2A2.0058,2.0058,0,0,1,26,8Z" })), children); }); { AssetConfirm.propTypes = iconPropTypes; } var AssetDigitalTwin = /*#__PURE__*/React__default["default"].forwardRef(function AssetDigitalTwin(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle7$e || (_circle7$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "7", r: "2" })), _path179$f || (_path179$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,23a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,12,23Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,12,19Z" })), _circle8$e || (_circle8$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "12", cy: "14", r: "1" })), _circle9$e || (_circle9$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17.909", cy: "5.705", r: "1" })), _circle10$d || (_circle10$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9.787", cy: "9.907", r: "1" })), _circle11$c || (_circle11$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "12.495", cy: "8.506", r: "1" })), _circle12$b || (_circle12$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15.201", cy: "7.105", r: "1" })), _circle13$a || (_circle13$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4.696", cy: "13.187", r: "1" })), _circle14$9 || (_circle14$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "2.133", cy: "21.631", r: "1" })), _circle15$9 || (_circle15$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3.079", cy: "24.516", r: "1" })), _circle16$9 || (_circle16$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4.848", cy: "26.982", r: "1" })), _circle17$8 || (_circle17$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.272", cy: "28.81", r: "1" })), _circle18$7 || (_circle18$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "2.098", cy: "18.596", r: "1" })), _circle19$7 || (_circle19$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "2.979", cy: "15.691", r: "1" })), _circle20$7 || (_circle20$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.081", cy: "11.308", r: "1" })), _circle21$6 || (_circle21$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20.616", cy: "4.304", r: "1" })), _circle22$6 || (_circle22$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23.323", cy: "2.903", r: "1" })), _circle23$6 || (_circle23$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28.988", cy: "8.89", r: "1" })), _circle24$6 || (_circle24$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "27.587", cy: "11.596", r: "1" })), _circle25$6 || (_circle25$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26.186", cy: "14.303", r: "1" })), _circle26$6 || (_circle26$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.784", cy: "17.01", r: "1" })), _circle27$6 || (_circle27$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23.383", cy: "19.717", r: "1" })), _circle28$6 || (_circle28$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21.982", cy: "22.424", r: "1" })), _circle29$6 || (_circle29$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18.637", cy: "27.464", r: "1" })), _circle30$6 || (_circle30$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16.092", cy: "29.122", r: "1" })), _circle31$6 || (_circle31$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13.166", cy: "29.932", r: "1" })), _circle32$5 || (_circle32$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10.133", cy: "29.825", r: "1" })), _circle33$5 || (_circle33$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20.572", cy: "25.125", r: "1" })), _circle34$5 || (_circle34$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28.893", cy: "3.24", r: "1" })), _circle35$4 || (_circle35$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26.188", cy: "2.004", r: "1" })), _circle36$4 || (_circle36$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "12", cy: "26", r: "1" })), _circle37$4 || (_circle37$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "20", r: "1" })), _circle38$3 || (_circle38$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "20", r: "1" })), _circle39$3 || (_circle39$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6.804", cy: "17", r: "1" })), _circle40$3 || (_circle40$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17.196", cy: "23", r: "1" })), _circle41$3 || (_circle41$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "25.196", r: "1" })), _circle42$3 || (_circle42$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "14.804", r: "1" })), _circle43$3 || (_circle43$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "14.804", r: "1" })), _circle44$3 || (_circle44$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "25.196", r: "1" })), _circle45$2 || (_circle45$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6.804", cy: "23", r: "1" })), _circle46$2 || (_circle46$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17.196", cy: "17", r: "1" })), _circle47$2 || (_circle47$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "30", cy: "6.026", r: "1" })), children); }); { AssetDigitalTwin.propTypes = iconPropTypes; } var AssetView = /*#__PURE__*/React__default["default"].forwardRef(function AssetView(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle48$2 || (_circle48$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "24", r: "2" })), _path180$f || (_path180$f = /*#__PURE__*/React__default["default"].createElement("path", { 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 28zM12 24a4 4 0 112.981-6.667l-1.49 1.334A2 2 0 1012 22z" })), _path181$f || (_path181$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2a3.86,3.86,0,0,0-1.85.48L7.76,10.96A9.99,9.99,0,0,0,12,30V28a8,8,0,1,1,5.63-13.68l1.4-1.4a10.0059,10.0059,0,0,0-5.39-2.77l8.38-4.34c0,.06-.02.12-.02.19a3.9989,3.9989,0,0,0,4,4c.06,0,.12-.02.19-.02L23.07,16h2.24l4.25-8.21A3.9727,3.9727,0,0,0,26,2Zm0,6a2,2,0,1,1,2-2A2.0058,2.0058,0,0,1,26,8Z" })), children); }); { AssetView.propTypes = iconPropTypes; } var Asterisk = /*#__PURE__*/React__default["default"].forwardRef(function Asterisk(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$f || (_path182$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.316 13.949L27.684 12.051 17 15.612 17 4 15 4 15 15.612 4.316 12.051 3.684 13.949 14.368 17.51 7.2 27.066 8.8 28.267 16 18.667 23.2 28.267 24.8 27.066 17.632 17.51 28.316 13.949z" })), children); }); { Asterisk.propTypes = iconPropTypes; } var At = /*#__PURE__*/React__default["default"].forwardRef(function At(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$f || (_path183$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,3A12.92,12.92,0,0,0,3,16v1A13,13,0,0,0,16,30h7V28H16A11,11,0,0,1,5,17V16A10.94,10.94,0,0,1,16,5,10.64,10.64,0,0,1,27,16c0,3.59-1.4,5-3.66,5C21.76,21,21,19.71,21,18V10H19v1.94A3.84,3.84,0,0,0,15.5,10,5.48,5.48,0,0,0,10,15.44v2.12A5.48,5.48,0,0,0,15.5,23a4.28,4.28,0,0,0,4-2.46A4.35,4.35,0,0,0,23.41,23C26.48,23,29,21,29,16A12.72,12.72,0,0,0,16,3Zm3,14.56a3.5,3.5,0,0,1-7,0V15.44a3.5,3.5,0,0,1,7,0Z" })), children); }); { At.propTypes = iconPropTypes; } var Attachment = /*#__PURE__*/React__default["default"].forwardRef(function Attachment(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$f || (_path184$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.1,18.9L13.1,3.9c-2.5-2.6-6.6-2.6-9.2-0.1S1.3,10.5,3.9,13c0,0,0.1,0.1,0.1,0.1L6.8,16l1.4-1.4l-2.9-2.9 C3.6,10,3.6,7.1,5.3,5.4s4.6-1.8,6.3-0.1c0,0,0,0,0.1,0.1l14.9,14.9c1.8,1.7,1.8,4.6,0.1,6.3c-1.7,1.8-4.6,1.8-6.3,0.1 c0,0,0,0-0.1-0.1l-7.4-7.4c-1-1-0.9-2.6,0-3.5c1-0.9,2.5-0.9,3.5,0l4.1,4.1l1.4-1.4c0,0-4.2-4.2-4.2-4.2c-1.8-1.7-4.6-1.6-6.3,0.2 c-1.6,1.7-1.6,4.4,0,6.2l7.5,7.5c2.5,2.6,6.6,2.6,9.2,0.1S30.7,21.5,28.1,18.9C28.1,19,28.1,18.9,28.1,18.9L28.1,18.9z" })), children); }); { Attachment.propTypes = iconPropTypes; } var AudioConsole = /*#__PURE__*/React__default["default"].forwardRef(function AudioConsole(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$f || (_path185$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 14H27V2H25V14H24a2.0019 2.0019 0 00-2 2v2a2.0023 2.0023 0 002 2h1V30h2V20h1a2.0027 2.0027 0 002-2V16A2.0023 2.0023 0 0028 14zm0 4H24V16h4zM18 6H17V2H15V6H14a2.0019 2.0019 0 00-2 2v2a2.0019 2.0019 0 002 2h1V30h2V12h1a2.002 2.002 0 002-2V8A2.002 2.002 0 0018 6zm0 4H14V8h4zM8 20H7V2H5V20H4a2.0023 2.0023 0 00-2 2v2a2.0023 2.0023 0 002 2H5v4H7V26H8a2.0023 2.0023 0 002-2V22A2.0023 2.0023 0 008 20zm0 4H4V22H8z", transform: "translate(0 .005)" })), children); }); { AudioConsole.propTypes = iconPropTypes; } var AugmentedReality = /*#__PURE__*/React__default["default"].forwardRef(function AugmentedReality(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$f || (_path186$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.4473,9.1055l-6-3a1.0008,1.0008,0,0,0-.8946,0l-6,3A1,1,0,0,0,14,10v7a1,1,0,0,0,.5527.8945l6,3a1.001,1.001,0,0,0,.8946,0l6-3A1,1,0,0,0,28,17V10A1,1,0,0,0,27.4473,9.1055ZM21,8.1182,24.7637,10,21,11.8818,17.2363,10Zm-5,3.5,4,2v4.7636l-4-2Zm6,6.7636V13.6182l4-2v4.7636Z" })), _circle49$2 || (_circle49$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13.5", cy: "24.5", r: "1.5" })), _path187$f || (_path187$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,30H7a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,7,2H20V4H7V28H20V24h2v4A2.0023,2.0023,0,0,1,20,30Z" })), children); }); { AugmentedReality.propTypes = iconPropTypes; } var WatsonHealthAutoScroll = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthAutoScroll(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$f || (_path188$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 16a4 4 0 104-4A4 4 0 0012 16zm6 0a2 2 0 11-2-2A2 2 0 0118 16zM16 27.17L10.4 21.58 9 23 16 30 23 23 21.59 21.59 16 27.17zM16 4.83L21.58 10.4 23 9 16 2 9 9 10.41 10.41 16 4.83z" })), children); }); { WatsonHealthAutoScroll.propTypes = iconPropTypes; } var Automatic = /*#__PURE__*/React__default["default"].forwardRef(function Automatic(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$f || (_path189$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 16H22a2.002 2.002 0 00-2 2V30h2V25h4v5h2V18A2.002 2.002 0 0026 16zm-4 7V18h4v5zM16 27a10.9862 10.9862 0 01-9.2156-5H12V20H4v8H6V24.3149A13.0239 13.0239 0 0016 29zM20 10h5.2155A10.9973 10.9973 0 005 16H3A13.0048 13.0048 0 0126 7.6849V4h2v8H20z" })), children); }); { Automatic.propTypes = iconPropTypes; } var Autoscaling = /*#__PURE__*/React__default["default"].forwardRef(function Autoscaling(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$f || (_path190$f = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,28H12V26H22V10H6V20H4V10A2.0021,2.0021,0,0,1,6,8H22a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,22,28Z" })), _path191$e || (_path191$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,22H26V20h2V4H12V6H10V4a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2V20A2.0021,2.0021,0,0,1,28,22Z" })), _path192$e || (_path192$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 14L10 16 14.586 16 3 27.586 4.414 29 16 17.414 16 22 18 22 18 14 10 14z" })), children); }); { Autoscaling.propTypes = iconPropTypes; } var Awake = /*#__PURE__*/React__default["default"].forwardRef(function Awake(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path193$e || (_path193$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 1H8.5V3.5H7.5z" })), _path194$e || (_path194$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.8 3.4H13.3V4.4H10.8z", transform: "rotate(-45.001 12.074 3.922)" })), _path195$d || (_path195$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.5 7.5H15V8.5H12.5z" })), _path196$c || (_path196$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.6 10.8H12.6V13.3H11.6z", transform: "rotate(-45.001 12.077 12.075)" })), _path197$c || (_path197$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 12.5H8.5V15H7.5z" })), _path198$c || (_path198$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.7 11.6H5.2V12.6H2.7z", transform: "rotate(-45.001 3.929 12.078)" })), _path199$c || (_path199$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M1 7.5H3.5V8.5H1z" })), _path200$c || (_path200$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.4 2.7H4.4V5.2H3.4z", transform: "rotate(-45.001 3.926 3.925)" })), _path201$c || (_path201$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$c || (_path202$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V6.96H15z" })), _path203$c || (_path203$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.67 6.85H26.630000000000003V8.85H21.67z", transform: "rotate(-45 24.142 7.85)" })), _path204$c || (_path204$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.04 15H30V17H25.04z" })), _path205$c || (_path205$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.15 21.67H25.15V26.630000000000003H23.15z", transform: "rotate(-45 24.152 24.146)" })), _path206$c || (_path206$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 25.04H17V30H15z" })), _path207$c || (_path207$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.37 23.15H10.33V25.15H5.37z", transform: "rotate(-45 7.86 24.144)" })), _path208$c || (_path208$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 15H6.96V17H2z" })), _path209$c || (_path209$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.85 5.37H8.85V10.33H6.85z", transform: "rotate(-45 7.85 7.848)" })), _path210$a || (_path210$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,12a4,4,0,1,1-4,4,4,4,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" })), children); }); { Awake.propTypes = iconPropTypes; } var Badge$1 = /*#__PURE__*/React__default["default"].forwardRef(function Badge(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$a || (_path211$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 2L24.593 5 28 5.414 25.5 7.667 26 11 23 9.125 20 11 20.5 7.667 18 5.414 21.5 5 23 2z" })), _path212$9 || (_path212$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.7168,13.249l-1.9375-.498A6.9942,6.9942,0,1,1,15.7505,4.22l.499-1.9365A8.99,8.99,0,0,0,8,17.689V30l6-4,6,4V17.7078A8.9627,8.9627,0,0,0,22.7168,13.249ZM18,26.2627l-4-2.6665-4,2.6665V19.05a8.9238,8.9238,0,0,0,8,.0062Z" })), children); }); { Badge$1.propTypes = iconPropTypes; } var BaggageClaim = /*#__PURE__*/React__default["default"].forwardRef(function BaggageClaim(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle50$2 || (_circle50$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "26", r: "2" })), _path213$9 || (_path213$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,18H25V16a2.0023,2.0023,0,0,0-2-2H19a2.0023,2.0023,0,0,0-2,2v2H14a2.0023,2.0023,0,0,0-2,2v8a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V20A2.0023,2.0023,0,0,0,28,18Zm-9-2h4v2H19Zm9,12H14V20H28Z" })), _path214$9 || (_path214$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,6h4v6h2V6h4v6h2V6h4v6h2V6.0049A2.0047,2.0047,0,0,0,25.9951,4H4.0049A2.0047,2.0047,0,0,0,2,6.0049v13.99A2.0047,2.0047,0,0,0,4.0049,22H10ZM8,20H4V6H8Z" })), children); }); { BaggageClaim.propTypes = iconPropTypes; } var Bar = /*#__PURE__*/React__default["default"].forwardRef(function Bar(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215$8 || (_path215$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,11H15a1,1,0,0,0-1,1v4a6.0046,6.0046,0,0,0,5,5.91V28H16v2h8V28H21V21.91A6.0046,6.0046,0,0,0,26,16V12A1,1,0,0,0,25,11Zm-1,5a4,4,0,0,1-8,0V13h8Z" })), _path216$8 || (_path216$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,1H10A1,1,0,0,0,9,2V9.3706A6.09,6.09,0,0,0,6,15V29a1,1,0,0,0,1,1h5V28H8V15c0-3.1875,2.231-4.02,2.3164-4.0513L11,10.7207V3h3V8h2V2A1,1,0,0,0,15,1Z" })), children); }); { Bar.propTypes = iconPropTypes; } var Barcode = /*#__PURE__*/React__default["default"].forwardRef(function Barcode(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path217$8 || (_path217$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 6H4V28H2zM12 6H14V26H12zM6 6H10V26H6zM16 6H20V26H16zM22 6H26V26H22zM28 6H30V28H28z" })), children); }); { Barcode.propTypes = iconPropTypes; } var BareMetalServer = /*#__PURE__*/React__default["default"].forwardRef(function BareMetalServer(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle51$1 || (_circle51$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "6", r: "1" })), _path218$6 || (_path218$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,10H6A2.0021,2.0021,0,0,1,4,8V4A2.0021,2.0021,0,0,1,6,2H26a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,26,10ZM6,4V8H26V4Z" })), _circle52$1 || (_circle52$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "1" })), _path219$6 || (_path219$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20H6a2.0021,2.0021,0,0,1-2-2V14a2.0021,2.0021,0,0,1,2-2H26a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,26,20ZM6,14v4H26V14Z" })), _circle53$1 || (_circle53$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "26", r: "1" })), _path220$6 || (_path220$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2H26a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,26,30ZM6,24v4H26V24Z" })), children); }); { BareMetalServer.propTypes = iconPropTypes; } var BareMetalServer_01 = /*#__PURE__*/React__default["default"].forwardRef(function BareMetalServer_01(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path221$6 || (_path221$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 28L17 22 15 22 15 28 5 28 5 30 27 30 27 28 17 28z" })), _circle54$1 || (_circle54$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "1" })), _path222$6 || (_path222$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20H6a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H26a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,26,20ZM6,14v4H26V14Z" })), children); }); { BareMetalServer_01.propTypes = iconPropTypes; } var BareMetalServer_02 = /*#__PURE__*/React__default["default"].forwardRef(function BareMetalServer_02(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$f); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223$6 || (_path223$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 28L17 22 15 22 15 28 5 28 5 30 27 30 27 28 17 28z" })), _circle55$1 || (_circle55$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "1" })), _path224$5 || (_path224$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20H6a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H26a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,26,20ZM6,14v4H26V14Z" })), _circle56$1 || (_circle56$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "6", r: "1" })), _path225$3 || (_path225$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,10H6A2.0023,2.0023,0,0,1,4,8V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2V8A2.0023,2.0023,0,0,1,26,10ZM6,4V8H26V4Z" })), children); }); { BareMetalServer_02.propTypes = iconPropTypes; } var QBarrier = /*#__PURE__*/React__default["default"].forwardRef(function QBarrier(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path226$3 || (_path226$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 5H17V9H15zM15 11H17V15H15zM15 17H17V21H15zM15 23H17V27H15z" })), children); }); { QBarrier.propTypes = iconPropTypes; } var Basketball = /*#__PURE__*/React__default["default"].forwardRef(function Basketball(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path227$3 || (_path227$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM27.9492,15H22.041a14.4088,14.4088,0,0,1,2.7383-7.1533A11.9392,11.9392,0,0,1,27.9492,15ZM17,15V4.0508a11.9181,11.9181,0,0,1,6.2874,2.4375A16.2646,16.2646,0,0,0,20.04,15Zm-2,0H11.96A16.2646,16.2646,0,0,0,8.7126,6.4883,11.9181,11.9181,0,0,1,15,4.0508Zm0,2V27.9492a11.9181,11.9181,0,0,1-6.2874-2.4375A16.2646,16.2646,0,0,0,11.96,17Zm2,0h3.04a16.2646,16.2646,0,0,0,3.2476,8.5117A11.9181,11.9181,0,0,1,17,27.9492ZM7.2207,7.8467A14.4088,14.4088,0,0,1,9.959,15H4.0508A11.9392,11.9392,0,0,1,7.2207,7.8467ZM4.0508,17H9.959a14.4088,14.4088,0,0,1-2.7383,7.1533A11.9392,11.9392,0,0,1,4.0508,17Zm20.7285,7.1533A14.4088,14.4088,0,0,1,22.041,17h5.9082A11.9392,11.9392,0,0,1,24.7793,24.1533Z" })), children); }); { Basketball.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$e, _path2$e, _path3$e, _path4$e, _path5$e, _path6$e, _path7$e, _path8$e, _path9$e, _path10$e, _path11$e, _path12$e, _path13$e, _path14$e, _circle$e, _circle2$e, _path15$e, _path16$e, _path17$e, _path18$e, _path19$e, _path20$e, _path21$e, _path22$e, _path23$e, _circle3$e, _path24$e, _path25$e, _path26$e, _path27$e, _path28$e, _path29$e, _path30$e, _path31$e, _path32$e, _path33$e, _path34$e, _path35$e, _circle4$d, _path36$e, _path37$e, _path38$e, _path39$e, _path40$e, _path41$e, _path42$e, _path43$e, _path44$e, _path45$e, _path46$e, _path47$e, _path48$e, _path49$e, _path50$e, _path51$e, _path52$e, _path53$e, _path54$e, _path55$e, _path56$e, _path57$e, _path58$e, _path59$e, _path60$e, _path61$e, _path62$e, _path63$e, _path64$e, _path65$e, _path66$e, _path67$e, _path68$e, _path69$e, _path70$e, _path71$e, _path72$e, _path73$e, _path74$e, _path75$e, _path76$e, _path77$e, _path78$e, _path79$e, _path80$e, _path81$e, _path82$e, _path83$e, _path84$e, _path85$e, _path86$e, _path87$e, _path88$e, _path89$e, _path90$e, _path91$e, _path92$e, _path93$e, _path94$e, _path95$e, _path96$e, _path97$e, _path98$e, _path99$e, _path100$e, _path101$e, _path102$e, _path103$e, _path104$e, _path105$e, _path106$e, _path107$e, _path108$e, _path109$e, _path110$e, _path111$e, _path112$e, _path113$e, _path114$e, _path115$e, _path116$e, _path117$e, _path118$e, _path119$e, _path120$e, _path121$e, _path122$e, _path123$e, _path124$e, _path125$e, _path126$e, _path127$e, _path128$e, _path129$e, _path130$e, _path131$e, _path132$e, _path133$e, _path134$e, _path135$e, _path136$e, _path137$e, _path138$e, _path139$e, _path140$e, _path141$e, _path142$e, _path143$e, _path144$e, _path145$e, _rect$4, _path146$e, _path147$e, _path148$e, _path149$e, _path150$e, _path151$e, _path152$e, _path153$e, _path154$e, _path155$e, _path156$e, _path157$e, _switch$5, _switch2$2, _path158$e, _path159$e, _path160$e, _path161$e, _path162$e, _path163$e, _path164$e, _path165$e, _path166$e, _path167$e, _path168$e, _circle5$d, _path169$e, _path170$e, _path171$e, _path172$e, _path173$e, _path174$e, _path175$e, _path176$e, _circle6$d, _circle7$d, _path177$e, _path178$e, _path179$e, _path180$e, _path181$e, _path182$e, _path183$e, _path184$e, _path185$e, _path186$e, _path187$e, _path188$e, _path189$e, _path190$e, _path191$d, _path192$d, _path193$d, _path194$d, _path195$c, _path196$b, _path197$b, _path198$b, _path199$b, _path200$b, _path201$b, _path202$b, _path203$b, _path204$b, _path205$b, _path206$b, _path207$b, _path208$b, _path209$b, _path210$9, _path211$9, _path212$8, _path213$8, _circle8$d, _path214$8, _circle9$d, _path215$7, _path216$7, _circle10$c, _path217$7, _path218$5, _path219$5, _path220$5, _path221$5, _path222$5, _path223$5, _path224$4, _path225$2, _path226$2, _path227$2, _path228$2, _path229$2, _path230$2, _path231$2, _path232$2, _path233$2, _path234$2, _path235$1, _path236$1, _path237$1, _path238$1, _path239$1, _path240$1, _path241$1, _path242$1, _path243$1, _path244$1, _path245$1, _path246, _path247, _path248, _path249, _path250, _path251, _path252, _path253, _path254; var _excluded$j = ["children", "size"], _excluded2$e = ["children", "size"], _excluded3$e = ["children", "size"], _excluded4$e = ["children", "size"], _excluded5$e = ["children", "size"], _excluded6$e = ["children", "size"], _excluded7$e = ["children", "size"], _excluded8$e = ["children", "size"], _excluded9$e = ["children", "size"], _excluded10$e = ["children", "size"], _excluded11$e = ["children", "size"], _excluded12$e = ["children", "size"], _excluded13$e = ["children", "size"], _excluded14$e = ["children", "size"], _excluded15$e = ["children", "size"], _excluded16$e = ["children", "size"], _excluded17$e = ["children", "size"], _excluded18$e = ["children", "size"], _excluded19$e = ["children", "size"], _excluded20$e = ["children", "size"], _excluded21$e = ["children", "size"], _excluded22$e = ["children", "size"], _excluded23$e = ["children", "size"], _excluded24$e = ["children", "size"], _excluded25$e = ["children", "size"], _excluded26$e = ["children", "size"], _excluded27$e = ["children", "size"], _excluded28$e = ["children", "size"], _excluded29$e = ["children", "size"], _excluded30$e = ["children", "size"], _excluded31$e = ["children", "size"], _excluded32$e = ["children", "size"], _excluded33$e = ["children", "size"], _excluded34$e = ["children", "size"], _excluded35$e = ["children", "size"], _excluded36$e = ["children", "size"], _excluded37$e = ["children", "size"], _excluded38$e = ["children", "size"], _excluded39$e = ["children", "size"], _excluded40$e = ["children", "size"], _excluded41$e = ["children", "size"], _excluded42$e = ["children", "size"], _excluded43$e = ["children", "size"], _excluded44$e = ["children", "size"], _excluded45$e = ["children", "size"], _excluded46$e = ["children", "size"], _excluded47$e = ["children", "size"], _excluded48$e = ["children", "size"], _excluded49$e = ["children", "size"], _excluded50$e = ["children", "size"], _excluded51$e = ["children", "size"], _excluded52$e = ["children", "size"], _excluded53$e = ["children", "size"], _excluded54$e = ["children", "size"], _excluded55$e = ["children", "size"], _excluded56$e = ["children", "size"], _excluded57$e = ["children", "size"], _excluded58$e = ["children", "size"], _excluded59$e = ["children", "size"], _excluded60$e = ["children", "size"], _excluded61$e = ["children", "size"], _excluded62$e = ["children", "size"], _excluded63$e = ["children", "size"], _excluded64$e = ["children", "size"], _excluded65$e = ["children", "size"], _excluded66$e = ["children", "size"], _excluded67$e = ["children", "size"], _excluded68$e = ["children", "size"], _excluded69$e = ["children", "size"], _excluded70$e = ["children", "size"], _excluded71$e = ["children", "size"], _excluded72$e = ["children", "size"], _excluded73$e = ["children", "size"], _excluded74$e = ["children", "size"], _excluded75$e = ["children", "size"], _excluded76$e = ["children", "size"], _excluded77$e = ["children", "size"], _excluded78$e = ["children", "size"], _excluded79$e = ["children", "size"], _excluded80$e = ["children", "size"], _excluded81$e = ["children", "size"], _excluded82$e = ["children", "size"], _excluded83$e = ["children", "size"], _excluded84$e = ["children", "size"], _excluded85$e = ["children", "size"], _excluded86$e = ["children", "size"], _excluded87$e = ["children", "size"], _excluded88$e = ["children", "size"], _excluded89$e = ["children", "size"], _excluded90$e = ["children", "size"], _excluded91$e = ["children", "size"], _excluded92$e = ["children", "size"], _excluded93$e = ["children", "size"], _excluded94$e = ["children", "size"], _excluded95$e = ["children", "size"], _excluded96$e = ["children", "size"], _excluded97$e = ["children", "size"], _excluded98$e = ["children", "size"], _excluded99$e = ["children", "size"], _excluded100$e = ["children", "size"], _excluded101$e = ["children", "size"], _excluded102$e = ["children", "size"], _excluded103$e = ["children", "size"], _excluded104$e = ["children", "size"], _excluded105$e = ["children", "size"], _excluded106$e = ["children", "size"], _excluded107$e = ["children", "size"], _excluded108$e = ["children", "size"], _excluded109$e = ["children", "size"], _excluded110$e = ["children", "size"], _excluded111$e = ["children", "size"], _excluded112$e = ["children", "size"], _excluded113$e = ["children", "size"], _excluded114$e = ["children", "size"], _excluded115$e = ["children", "size"], _excluded116$e = ["children", "size"], _excluded117$e = ["children", "size"], _excluded118$e = ["children", "size"], _excluded119$e = ["children", "size"], _excluded120$e = ["children", "size"], _excluded121$e = ["children", "size"], _excluded122$e = ["children", "size"], _excluded123$e = ["children", "size"], _excluded124$d = ["children", "size"], _excluded125$d = ["children", "size"]; var BastionHost = /*#__PURE__*/React__default["default"].forwardRef(function BastionHost(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$j); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$e || (_path$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.5273,2.709A1.9955,1.9955,0,0,0,26,2H23.3091a1.5,1.5,0,0,0-1.3419.8294L21.3818,4H20V3.5A1.5,1.5,0,0,0,18.5,2h-5A1.5,1.5,0,0,0,12,3.5V4H10.6182l-.585-1.17A1.5017,1.5017,0,0,0,8.69,2H6A2,2,0,0,0,4.0283,4.333L4.7324,8.5A3,3,0,0,0,7.69,11H8V23a3.0033,3.0033,0,0,0-3,3v4H27V26a3.0033,3.0033,0,0,0-3-3V11h.31a3,3,0,0,0,2.9579-2.5l.7041-4.167A1.994,1.994,0,0,0,27.5273,2.709ZM25,26v2H7V26a1.0009,1.0009,0,0,1,1-1H24A1.0009,1.0009,0,0,1,25,26Zm-3-3H10V11H22ZM25.2959,8.167A.9976.9976,0,0,1,24.31,9H7.69a.9976.9976,0,0,1-.9863-.8335L6,4H8.3818l1,2H14V4h4V6h4.6172l1.001-2H26Z" })), children); }); { BastionHost.propTypes = iconPropTypes; } var Bat = /*#__PURE__*/React__default["default"].forwardRef(function Bat(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$e || (_path2$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.9093,6.584A1,1,0,0,0,31,6c-4.7683,0-8.2607.8887-11,2.8438V3H18V6H14V3H12V8.8438C9.2608,6.8887,5.7684,6,1,6A1,1,0,0,0,.2437,7.6543C1.9454,9.6221,3,11.7041,3,16a1,1,0,0,0,1,1c2.7678,0,6,1.31,6,5a1.004,1.004,0,0,0,.9341.998C11.35,23.0273,15,23.3872,15,27a1,1,0,0,0,2,0c0-3.6128,3.65-3.9727,4.0622-4.002A1,1,0,0,0,22,22c0-3.69,3.2321-5,6-5a1,1,0,0,0,1-1c0-4.2959,1.0547-6.3779,2.7564-8.3457A1,1,0,0,0,31.9093,6.584Zm-4.893,8.46c-3.3857.3081-6.5534,2.229-6.97,6.0786A6.552,6.552,0,0,0,16,23.6094a6.552,6.552,0,0,0-4.0461-2.4864c-.4168-3.85-3.5845-5.7705-6.97-6.0786a13.2017,13.2017,0,0,0-1.9387-6.98c4.1318.2724,7.0327,1.4277,9.248,3.6425A1,1,0,0,0,14,11V8h4v3a1,1,0,0,0,1.707.707c2.2153-2.2148,5.1162-3.37,9.248-3.6425A13.2017,13.2017,0,0,0,27.0163,15.0444Z" })), children); }); { Bat.propTypes = iconPropTypes; } var BatteryCharging = /*#__PURE__*/React__default["default"].forwardRef(function BatteryCharging(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$e || (_path3$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 11H26V10a2 2 0 00-2-2H20v2h4v3h3v6H24v3H19v2h5a2 2 0 002-2V21h1a2 2 0 002-2V13A2 2 0 0027 11zM11 22H6V10h6V8H6a2 2 0 00-2 2V22a2 2 0 002 2h5z" })), _path4$e || (_path4$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.81 23.58L13.19 22.42 17.06 17 9.37 17 16.22 8.38 17.78 9.62 13.51 15 20.94 15 14.81 23.58z" })), children); }); { BatteryCharging.propTypes = iconPropTypes; } var BatteryEmpty = /*#__PURE__*/React__default["default"].forwardRef(function BatteryEmpty(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$e || (_path5$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H6a2.0023,2.0023,0,0,1-2-2V10A2.002,2.002,0,0,1,6,8H24a2.0023,2.0023,0,0,1,2,2v1h1a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H26v1A2.0027,2.0027,0,0,1,24,24ZM6,10V22H24V19h3V13H24V10Z" })), children); }); { BatteryEmpty.propTypes = iconPropTypes; } var BatteryFull = /*#__PURE__*/React__default["default"].forwardRef(function BatteryFull(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$e || (_path6$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H6a2,2,0,0,1-2-2V10A2,2,0,0,1,6,8H24a2,2,0,0,1,2,2v1h1a2,2,0,0,1,2,2v6a2,2,0,0,1-2,2H26v1A2,2,0,0,1,24,24ZM6,10V22H24V19h3V13H24V10Z" })), _path7$e || (_path7$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 9H19V23H11z", transform: "rotate(90 15 16)" })), children); }); { BatteryFull.propTypes = iconPropTypes; } var BatteryHalf = /*#__PURE__*/React__default["default"].forwardRef(function BatteryHalf(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$e || (_path8$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H6a2,2,0,0,1-2-2V10A2,2,0,0,1,6,8H24a2,2,0,0,1,2,2v1h1a2,2,0,0,1,2,2v6a2,2,0,0,1-2,2H26v1A2,2,0,0,1,24,24ZM6,10V22H24V19h3V13H24V10Z" })), _path9$e || (_path9$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 12H16V20H8z", transform: "rotate(90 12 16)" })), children); }); { BatteryHalf.propTypes = iconPropTypes; } var BatteryLow = /*#__PURE__*/React__default["default"].forwardRef(function BatteryLow(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$e || (_path10$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H6a2.0023,2.0023,0,0,1-2-2V10A2.002,2.002,0,0,1,6,8H24a2.0023,2.0023,0,0,1,2,2v1h1a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H26v1A2.0027,2.0027,0,0,1,24,24ZM6,10V22H24V19h3V13H24V10Z" })), _path11$e || (_path11$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 15H13V17H5z", transform: "rotate(90 9 16)" })), children); }); { BatteryLow.propTypes = iconPropTypes; } var BatteryQuarter = /*#__PURE__*/React__default["default"].forwardRef(function BatteryQuarter(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$e || (_path12$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H6a2.0023,2.0023,0,0,1-2-2V10A2.002,2.002,0,0,1,6,8H24a2.0023,2.0023,0,0,1,2,2v1h1a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H26v1A2.0027,2.0027,0,0,1,24,24ZM6,10V22H24V19h3V13H24V10Z" })), _path13$e || (_path13$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 14H14V18H6z", transform: "rotate(90 10 16)" })), children); }); { BatteryQuarter.propTypes = iconPropTypes; } var Bee = /*#__PURE__*/React__default["default"].forwardRef(function Bee(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$e || (_path14$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 10a6 6 0 00-6 6v8a6 6 0 0012 0V16A6 6 0 0016 10zm-4.25 7.87h8.5v4.25h-8.5zM16 28.25A4.27 4.27 0 0111.75 24v-.13h8.5V24A4.27 4.27 0 0116 28.25zm4.25-12.13h-8.5V16a4.25 4.25 0 018.5 0zM30.66 19.21L24 13v9.1a4 4 0 008 0A3.83 3.83 0 0030.66 19.21zM28 24.35a2.25 2.25 0 01-2.25-2.25V17l3.72 3.47h0A2.05 2.05 0 0130.2 22 2.25 2.25 0 0128 24.35zM0 22.1a4 4 0 008 0V13L1.34 19.21A3.88 3.88 0 000 22.1zm2.48-1.56h0L6.25 17v5.1a2.25 2.25 0 01-4.5 0A2.05 2.05 0 012.48 20.54zM15 5.5A3.5 3.5 0 1011.5 9 3.5 3.5 0 0015 5.5zm-5.25 0A1.75 1.75 0 1111.5 7.25 1.77 1.77 0 019.75 5.5zM20.5 2A3.5 3.5 0 1024 5.5 3.5 3.5 0 0020.5 2zm0 5.25A1.75 1.75 0 1122.25 5.5 1.77 1.77 0 0120.5 7.25z" })), children); }); { Bee.propTypes = iconPropTypes; } var BeeBat = /*#__PURE__*/React__default["default"].forwardRef(function BeeBat(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$e || (_circle$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "8", r: "2" })), _circle2$e || (_circle2$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "19", cy: "8", r: "2" })), _path15$e || (_path15$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.8083,8.665A.8745.8745,0,0,0,31,8.125H29c-4.21,0-7.721,2.002-9.1648,4.9014a4.8186,4.8186,0,0,0-7.67,0C10.721,10.127,7.21,8.125,3,8.125H1A.8749.8749,0,0,0,.3816,9.6191L.4834,9.72A5.3885,5.3885,0,0,1,2.1612,15.751.8751.8751,0,0,0,3,16.875a2.8966,2.8966,0,0,1,2.1587.7266c.9783.9814.9714,2.8872.9668,4.1479l0,.25A.875.875,0,0,0,7,22.875h4.125V23a4.875,4.875,0,0,0,9.75,0v-.125H25A.875.875,0,0,0,25.875,22l0-.25c-.0046-1.2607-.0115-3.1665.9668-4.1479A2.8966,2.8966,0,0,1,29,16.875a.8751.8751,0,0,0,.8388-1.124,5.3883,5.3883,0,0,1,1.6765-6.0293l.1033-.103A.875.875,0,0,0,31.8083,8.665ZM16,12.875A3.1286,3.1286,0,0,1,19.125,16v.125h-6.25V16A3.1286,3.1286,0,0,1,16,12.875Zm-3.125,5h6.25v3.25h-6.25Zm-5.0007,3.25c-.0178-1.459-.1839-3.4619-1.4761-4.7588a4.1876,4.1876,0,0,0-2.31-1.1518A6.657,6.657,0,0,0,2.9524,9.875H3c4.5562,0,8.125,2.69,8.125,6.125v5.125ZM19.125,23a3.125,3.125,0,0,1-6.25,0v-.125h6.25Zm8.7868-7.7856a4.1876,4.1876,0,0,0-2.31,1.1518c-1.2922,1.2969-1.4583,3.3-1.4761,4.7588H20.875V16c0-3.4346,3.5688-6.125,8.125-6.125h.0481A6.6561,6.6561,0,0,0,27.9118,15.2144Z" })), children); }); { BeeBat.propTypes = iconPropTypes; } var Beta = /*#__PURE__*/React__default["default"].forwardRef(function Beta(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$e || (_path16$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.7168,13.7705A5.9174,5.9174,0,0,0,23,9c0-3.5327-2.8784-6-7-6a6.627,6.627,0,0,0-7,7V31h2V25.1206a8.1261,8.1261,0,0,0,6,2.48A7.3833,7.3833,0,0,0,24.6528,20,6.6364,6.6364,0,0,0,20.7168,13.7705ZM17,25.6A5.6781,5.6781,0,0,1,11,20V10a4.6856,4.6856,0,0,1,5-5c3.0374,0,5,1.57,5,4a3.8732,3.8732,0,0,1-4,4v2c3.4341,0,5.6528,1.9629,5.6528,5A5.3907,5.3907,0,0,1,17,25.6Z" })), children); }); { Beta.propTypes = iconPropTypes; } var Bicycle = /*#__PURE__*/React__default["default"].forwardRef(function Bicycle(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$e || (_path17$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,16c-.0879,0-.1731.0093-.26.0132L24.2368,9H28V7H23a1,1,0,0,0-.978,1.21L22.62,11H12.3872l-1-3H14V6H7V8H9.28l1.0411,3.123-2.57,5.1392A6,6,0,1,0,11.91,23h2.61a1.991,1.991,0,0,0,1.5616-.75L23.14,13.4258l.6436,3.0039A5.9891,5.9891,0,1,0,26,16ZM6,26a4,4,0,1,1,.8364-7.9092L5.1055,21.5527l.009.0044A.9834.9834,0,0,0,5,22a.9931.9931,0,0,0,1.8853.4429l.0092.0044L8.6182,19A3.9835,3.9835,0,0,1,6,26Zm5.91-5a5.9986,5.9986,0,0,0-2.3733-3.8364l1.6787-3.3574L13.613,21Zm3.4577-1.06L13.054,13h7.8654ZM26,26a3.9882,3.9882,0,0,1-1.7859-7.56l.8079,3.77.02-.0044A.9859.9859,0,0,0,26,23a1,1,0,0,0,1-1,.9456.9456,0,0,0-.0415-.2056l.02-.0044-.8086-3.7729A3.9931,3.9931,0,0,1,26,26Z" })), children); }); { Bicycle.propTypes = iconPropTypes; } var Binoculars = /*#__PURE__*/React__default["default"].forwardRef(function Binoculars(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$e || (_path18$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8V5a1,1,0,0,0-1-1H21a1,1,0,0,0-1,1V8a2,2,0,0,0-2,2v2H14V10a2,2,0,0,0-2-2V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V8a2,2,0,0,0-2,2V22a2,2,0,0,0,1,1.72V27a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V23.72A2,2,0,0,0,14,22V20h4v2a2,2,0,0,0,1,1.72V27a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V23.72A2,2,0,0,0,30,22V10A2,2,0,0,0,28,8ZM11,26H5V24h6Zm1-4H4V10H6V6h4v4h2Zm2-4V14h4v4Zm13,8H21V24h6Zm1-4H20V10h2V6h4v4h2Z" })), children); }); { Binoculars.propTypes = iconPropTypes; } var QBlochSphere = /*#__PURE__*/React__default["default"].forwardRef(function QBlochSphere(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$e || (_path19$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.87,7.84l-1.74-1L16,14h0a2,2,0,1,0,2,2,2,2,0,0,0-.27-1Z" })), _path20$e || (_path20$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,2a12,12,0,0,1,11.17,7.65,25.69,25.69,0,0,0-3.69-1.5l-1,1.77a22.7,22.7,0,0,1,5.41,2.39,11.05,11.05,0,0,1,0,3.38A22.92,22.92,0,0,1,16,21,22.92,22.92,0,0,1,4.13,17.69a11.05,11.05,0,0,1,0-3.38A22.8,22.8,0,0,1,15,11V9a25,25,0,0,0-10.17,2.6A12,12,0,0,1,16,4Zm0,24A12,12,0,0,1,4.83,20.35,24.88,24.88,0,0,0,16,23a24.88,24.88,0,0,0,11.17-2.65A12,12,0,0,1,16,28Z" })), children); }); { QBlochSphere.propTypes = iconPropTypes; } var BlockStorage = /*#__PURE__*/React__default["default"].forwardRef(function BlockStorage(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$e || (_path21$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,12V10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V19H20v9H4V12" })), _path22$e || (_path22$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 12H14V4h8zM12 4v8a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2H14A2 2 0 0012 4zM14 18v4H10V18h4M8 18v4a2 2 0 002 2h4a2 2 0 002-2V18a2 2 0 00-2-2H10A2 2 0 008 18zM28 17v2H26V17h2m-4-1v4a1 1 0 001 1h4a1 1 0 001-1V16a1 1 0 00-1-1H25A1 1 0 0024 16z" })), children); }); { BlockStorage.propTypes = iconPropTypes; } var BlockStorageAlt = /*#__PURE__*/React__default["default"].forwardRef(function BlockStorageAlt(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$e || (_path23$e = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle3$e || (_circle3$e = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path24$e || (_path24$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 20H8V13h7zm-5-2h3V15H10zM24 20H17V13h7zm-5-2h3V15H19zM15 11H8V4h7zM10 9h3V6H10zM24 11H17V4h7zM19 9h3V6H19z" })), children); }); { BlockStorageAlt.propTypes = iconPropTypes; } var Blockchain = /*#__PURE__*/React__default["default"].forwardRef(function Blockchain(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$e || (_path25$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,24H4V8H6ZM28,8H26V24h2ZM24,6V4H8V6Zm0,22V26H8v2Z" })), children); }); { Blockchain.propTypes = iconPropTypes; } var Blog = /*#__PURE__*/React__default["default"].forwardRef(function Blog(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$e || (_path26$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 24H14V26H4zM4 18H14V20H4zM26 14H6a2 2 0 01-2-2V6A2 2 0 016 4H26a2 2 0 012 2v6A2 2 0 0126 14zM6 6v6H26V6zM26 28H20a2 2 0 01-2-2V20a2 2 0 012-2h6a2 2 0 012 2v6A2 2 0 0126 28zm-6-8v6h6V20z" })), children); }); { Blog.propTypes = iconPropTypes; } var Bluetooth = /*#__PURE__*/React__default["default"].forwardRef(function Bluetooth(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$e || (_path27$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30a1.06,1.06,0,0,1-.42-.09A1,1,0,0,1,15,29V18.41L8.41,25,7,23.59,14.59,16,7,8.41,8.41,7,15,13.59V3a1,1,0,0,1,.58-.91,1,1,0,0,1,1.07.15l7,6A1,1,0,0,1,24,9a1,1,0,0,1-.29.75L17.41,16l6.3,6.29A1,1,0,0,1,24,23a1,1,0,0,1-.35.72l-7,6A1,1,0,0,1,16,30Zm1-11.59v8.42l4.53-3.89ZM17,5.17v8.42l4.53-4.53Z" })), children); }); { Bluetooth.propTypes = iconPropTypes; } var BluetoothOff = /*#__PURE__*/React__default["default"].forwardRef(function BluetoothOff(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$e || (_path28$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 26.59L5.41 4 4 5.41 14.59 16 7 23.59 8.41 25 15 18.41V29a1 1 0 00.58.91A1.06 1.06 0 0016 30a1 1 0 00.65-.24l6.3-5.4L26.59 28zm-11 .24V18.41l4.53 4.53zM17 12.75V5.17l4.53 3.89-4.11 4.11 1.41 1.41 4.88-4.87A1 1 0 0024 9a1 1 0 00-.35-.72l-7-6a1 1 0 00-1.07-.15A1 1 0 0015 3v7.75z" })), children); }); { BluetoothOff.propTypes = iconPropTypes; } var Book = /*#__PURE__*/React__default["default"].forwardRef(function Book(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$e || (_path29$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 10H26V12H19zM19 15H26V17H19zM19 20H26V22H19zM6 10H13V12H6zM6 15H13V17H6zM6 20H13V22H6z" })), _path30$e || (_path30$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,5H4A2.002,2.002,0,0,0,2,7V25a2.002,2.002,0,0,0,2,2H28a2.002,2.002,0,0,0,2-2V7A2.002,2.002,0,0,0,28,5ZM4,7H15V25H4ZM17,25V7H28V25Z" })), children); }); { Book.propTypes = iconPropTypes; } var Bookmark = /*#__PURE__*/React__default["default"].forwardRef(function Bookmark(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$e || (_path31$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,4V26.75l-7.1-3.59-.9-.45-.9.45L8,26.75V4H24m0-2H8A2,2,0,0,0,6,4V30L16,25,26,30V4A2,2,0,0,0,24,2Z" })), children); }); { Bookmark.propTypes = iconPropTypes; } var BookmarkAdd = /*#__PURE__*/React__default["default"].forwardRef(function BookmarkAdd(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$e || (_path32$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,16V26.7515l-7.0962-3.5894L16,22.7051l-.9009.456L8,26.748V4H18V2H8A2,2,0,0,0,6,4V30l10-5.0537L26,30V16Z" })), _path33$e || (_path33$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 6L26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6 26 6z" })), children); }); { BookmarkAdd.propTypes = iconPropTypes; } var BookmarkFilled = /*#__PURE__*/React__default["default"].forwardRef(function BookmarkFilled(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$e || (_path34$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2H8A2,2,0,0,0,6,4V30l10-5.0538L26,30V4A2,2,0,0,0,24,2Z" })), children); }); { BookmarkFilled.propTypes = iconPropTypes; } var Boolean$1 = /*#__PURE__*/React__default["default"].forwardRef(function Boolean(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$e || (_path35$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,23a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,23,23Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,23,11Z" })), _circle4$d || (_circle4$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "7" })), children); }); { Boolean$1.propTypes = iconPropTypes; } var Boot = /*#__PURE__*/React__default["default"].forwardRef(function Boot(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$e || (_path36$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,17H18a1.0008,1.0008,0,0,1-1-1V4a2.0025,2.0025,0,0,0-2-2H5A2.0025,2.0025,0,0,0,3,4V28a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V22A5.0057,5.0057,0,0,0,24,17Zm3,5v2H23V19h1A3.0033,3.0033,0,0,1,27,22ZM15,4V6H11V8h4v2H11v2h4v2H11v2h4a3.0033,3.0033,0,0,0,3,3h3v5H14.1624l-3-1H5V4ZM25,28V27H23v1H21V27H19v1H17V27H15v1H13V27H11v1H5V25h5.8376l3,1H27v2Z" })), children); }); { Boot.propTypes = iconPropTypes; } var BorderBottom = /*#__PURE__*/React__default["default"].forwardRef(function BorderBottom(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$e || (_path37$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 27H29V29H3z", transform: "rotate(180 16 28)" })), _path38$e || (_path38$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 23H29V25H27z", transform: "rotate(180 28 24)" })), _path39$e || (_path39$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 19H29V21H27z", transform: "rotate(180 28 20)" })), _path40$e || (_path40$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 15H29V17H27z", transform: "rotate(180 28 16)" })), _path41$e || (_path41$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 11H29V13H27z", transform: "rotate(180 28 12)" })), _path42$e || (_path42$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 7H29V9H27z", transform: "rotate(180 28 8)" })), _path43$e || (_path43$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 3H29V5H27z", transform: "rotate(180 28 4)" })), _path44$e || (_path44$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 3H25V5H23z", transform: "rotate(180 24 4)" })), _path45$e || (_path45$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 3H21V5H19z", transform: "rotate(180 20 4)" })), _path46$e || (_path46$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 3H17V5H15z", transform: "rotate(180 16 4)" })), _path47$e || (_path47$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 3H9V5H7z", transform: "rotate(180 8 4)" })), _path48$e || (_path48$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 3H13V5H11z", transform: "rotate(180 12 4)" })), _path49$e || (_path49$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 23H5V25H3z", transform: "rotate(180 4 24)" })), _path50$e || (_path50$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 19H5V21H3z", transform: "rotate(180 4 20)" })), _path51$e || (_path51$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 15H5V17H3z", transform: "rotate(180 4 16)" })), _path52$e || (_path52$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 11H5V13H3z", transform: "rotate(180 4 12)" })), _path53$e || (_path53$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 7H5V9H3z", transform: "rotate(180 4 8)" })), _path54$e || (_path54$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H5V5H3z", transform: "rotate(180 4 4)" })), _path55$e || (_path55$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H18V12H8zM8 15H14V17H8z" })), children); }); { BorderBottom.propTypes = iconPropTypes; } var BorderFull = /*#__PURE__*/React__default["default"].forwardRef(function BorderFull(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$e || (_path56$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H18V12H8zM8 15H14V17H8z" })), _path57$e || (_path57$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,29H3V3H29ZM5,27H27V5H5Z" })), children); }); { BorderFull.propTypes = iconPropTypes; } var BorderLeft = /*#__PURE__*/React__default["default"].forwardRef(function BorderLeft(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$e || (_path58$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M-9 15H17V17H-9z", transform: "rotate(-90 4 16)" })), _path59$e || (_path59$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 27H9V29H7z", transform: "rotate(-90 8 28)" })), _path60$e || (_path60$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 27H13V29H11z", transform: "rotate(-90 12 28)" })), _path61$e || (_path61$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 27H17V29H15z", transform: "rotate(-90 16 28)" })), _path62$e || (_path62$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 27H21V29H19z", transform: "rotate(-90 20 28)" })), _path63$e || (_path63$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27H25V29H23z", transform: "rotate(-90 24 28)" })), _path64$e || (_path64$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 27H29V29H27z", transform: "rotate(-90 28 28)" })), _path65$e || (_path65$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 23H29V25H27z", transform: "rotate(-90 28 24)" })), _path66$e || (_path66$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 19H29V21H27z", transform: "rotate(-90 28 20)" })), _path67$e || (_path67$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 15H29V17H27z", transform: "rotate(-90 28 16)" })), _path68$e || (_path68$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 7H29V9H27z", transform: "rotate(-90 28 8)" })), _path69$e || (_path69$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 11H29V13H27z", transform: "rotate(-90 28 12)" })), _path70$e || (_path70$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 3H9V5H7z", transform: "rotate(-90 8 4)" })), _path71$e || (_path71$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 3H13V5H11z", transform: "rotate(-90 12 4)" })), _path72$e || (_path72$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 3H17V5H15z", transform: "rotate(-90 16 4)" })), _path73$e || (_path73$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 3H21V5H19z", transform: "rotate(-90 20 4)" })), _path74$e || (_path74$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 3H25V5H23z", transform: "rotate(-90 24 4)" })), _path75$e || (_path75$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 3H29V5H27z", transform: "rotate(-90 28 4)" })), _path76$e || (_path76$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H18V12H8zM8 15H14V17H8z" })), children); }); { BorderLeft.propTypes = iconPropTypes; } var BorderNone = /*#__PURE__*/React__default["default"].forwardRef(function BorderNone(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$e || (_path77$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H5V5H3zM7 3H9V5H7zM11 3H13V5H11zM15 3H17V5H15zM3 7H5V9H3zM3 11H5V13H3zM3 15H5V17H3zM3 19H5V21H3zM3 23H5V25H3zM3 27H5V29H3zM27 3H29V5H27zM23 3H25V5H23zM19 3H21V5H19zM7 27H9V29H7zM11 27H13V29H11zM15 27H17V29H15zM23 27H25V29H23zM19 27H21V29H19zM27 7H29V9H27zM27 11H29V13H27zM27 15H29V17H27zM27 19H29V21H27zM27 23H29V25H27zM27 27H29V29H27zM8 10H18V12H8zM8 15H14V17H8z" })), children); }); { BorderNone.propTypes = iconPropTypes; } var BorderRight = /*#__PURE__*/React__default["default"].forwardRef(function BorderRight(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$e || (_path78$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 15H41V17H15z", transform: "rotate(90 28 16)" })), _path79$e || (_path79$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 3H25V5H23z", transform: "rotate(90 24 4)" })), _path80$e || (_path80$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 3H21V5H19z", transform: "rotate(90 20 4)" })), _path81$e || (_path81$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 3H17V5H15z", transform: "rotate(90 16 4)" })), _path82$e || (_path82$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 3H13V5H11z", transform: "rotate(90 12 4)" })), _path83$e || (_path83$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 3H9V5H7z", transform: "rotate(90 8 4)" })), _path84$e || (_path84$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H5V5H3z", transform: "rotate(90 4 4)" })), _path85$e || (_path85$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 7H5V9H3z", transform: "rotate(90 4 8)" })), _path86$e || (_path86$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 11H5V13H3z", transform: "rotate(90 4 12)" })), _path87$e || (_path87$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 15H5V17H3z", transform: "rotate(90 4 16)" })), _path88$e || (_path88$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 23H5V25H3z", transform: "rotate(90 4 24)" })), _path89$e || (_path89$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 19H5V21H3z", transform: "rotate(90 4 20)" })), _path90$e || (_path90$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27H25V29H23z", transform: "rotate(90 24 28)" })), _path91$e || (_path91$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 27H21V29H19z", transform: "rotate(90 20 28)" })), _path92$e || (_path92$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 27H17V29H15z", transform: "rotate(90 16 28)" })), _path93$e || (_path93$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 27H13V29H11z", transform: "rotate(90 12 28)" })), _path94$e || (_path94$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 27H9V29H7z", transform: "rotate(90 8 28)" })), _path95$e || (_path95$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 27H5V29H3z", transform: "rotate(90 4 28)" })), _path96$e || (_path96$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H18V12H8zM8 15H14V17H8z" })), children); }); { BorderRight.propTypes = iconPropTypes; } var BorderTop = /*#__PURE__*/React__default["default"].forwardRef(function BorderTop(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$e || (_path97$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H29V5H3zM3 7H5V9H3zM3 11H5V13H3zM3 15H5V17H3zM3 19H5V21H3zM3 23H5V25H3zM3 27H5V29H3zM7 27H9V29H7zM11 27H13V29H11zM15 27H17V29H15zM23 27H25V29H23zM19 27H21V29H19zM27 7H29V9H27zM27 11H29V13H27zM27 15H29V17H27zM27 19H29V21H27zM27 23H29V25H27zM27 27H29V29H27zM8 10H18V12H8zM8 15H14V17H8z" })), children); }); { BorderTop.propTypes = iconPropTypes; } var Bot = /*#__PURE__*/React__default["default"].forwardRef(function Bot(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$e || (_path98$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 10H20V12H18zM12 10H14V12H12z" })), _path99$e || (_path99$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20H21V18h1a2.0023,2.0023,0,0,0,2-2V12h2V10H24V8a2.0023,2.0023,0,0,0-2-2H20V2H18V6H14V2H12V6H10A2.0023,2.0023,0,0,0,8,8v2H6v2H8v4a2.0023,2.0023,0,0,0,2,2h1v2H6a2.0023,2.0023,0,0,0-2,2v8H6V22H26v8h2V22A2.0023,2.0023,0,0,0,26,20ZM10,8H22v8H10Zm3,10h6v2H13Z" })), children); }); { Bot.propTypes = iconPropTypes; } var Box$1 = /*#__PURE__*/React__default["default"].forwardRef(function Box(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$e || (_path100$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,21H12a2,2,0,0,1-2-2V17a2,2,0,0,1,2-2h8a2,2,0,0,1,2,2v2A2,2,0,0,1,20,21Zm-8-4v2h8V17Z" })), _path101$e || (_path101$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6v4a2,2,0,0,0,2,2V28a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V12a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM26,28H6V12H26Zm2-18H4V6H28v4Z" })), children); }); { Box$1.propTypes = iconPropTypes; } var BoxExtraLarge = /*#__PURE__*/React__default["default"].forwardRef(function BoxExtraLarge(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$e || (_path102$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0021,2.0021,0,0,1-2-2V9H6V26H26V9h2V26A2.0021,2.0021,0,0,1,26,28Z" })), _path103$e || (_path103$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 21L19 9 17 9 17 23 24 23 24 21 19 21zM16 9L14 9 12 15 10 9 8 9 10.752 16 8 23 10 23 12 17 14 23 16 23 13.245 16 16 9zM4 4H28V6H4z" })), children); }); { BoxExtraLarge.propTypes = iconPropTypes; } var BoxLarge = /*#__PURE__*/React__default["default"].forwardRef(function BoxLarge(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$e || (_path104$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0021,2.0021,0,0,1-2-2V9H6V26H26V9h2V26A2.0021,2.0021,0,0,1,26,28Z" })), _path105$e || (_path105$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 21L14 9 12 9 12 23 20 23 20 21 14 21zM4 4H28V6H4z" })), children); }); { BoxLarge.propTypes = iconPropTypes; } var BoxMedium = /*#__PURE__*/React__default["default"].forwardRef(function BoxMedium(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$e || (_path106$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0021,2.0021,0,0,1-2-2V9H6V26H26V9h2V26A2.0021,2.0021,0,0,1,26,28Z" })), _path107$e || (_path107$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 9L16.485 14 16 15.977 15.535 14 14 9 12 9 12 23 14 23 14 15 13.842 13.004 14.421 15 16 19.626 17.579 15 18.159 13 18 15 18 23 20 23 20 9 18 9zM4 4H28V6H4z" })), children); }); { BoxMedium.propTypes = iconPropTypes; } var BoxSmall = /*#__PURE__*/React__default["default"].forwardRef(function BoxSmall(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$e || (_path108$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0021,2.0021,0,0,1-2-2V9H6V26H26V9h2V26A2.0021,2.0021,0,0,1,26,28Z" })), _path109$e || (_path109$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 23H12V21h6V17H14a2.002 2.002 0 01-2-2V11a2.002 2.002 0 012-2h6v2H14v4h4a2.002 2.002 0 012 2v4A2.0023 2.0023 0 0118 23zM4 4H28V6H4z" })), children); }); { BoxSmall.propTypes = iconPropTypes; } var BoxPlot = /*#__PURE__*/React__default["default"].forwardRef(function BoxPlot(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$e || (_path110$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,6V4H12V6h4V8H12V20h4v2H12v2H22V22H18V20h4V8H18V6ZM14,18V15h6v3Zm6-5H14V10h6Z" })), _path111$e || (_path111$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), children); }); { BoxPlot.propTypes = iconPropTypes; } var Branch$1 = /*#__PURE__*/React__default["default"].forwardRef(function Branch(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$e || (_path112$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18a3.9955,3.9955,0,0,0-3.858,3H18a3.0033,3.0033,0,0,1-3-3V14a4.9514,4.9514,0,0,0-1.0256-3H22.142a4,4,0,1,0,0-2H9.858a4,4,0,1,0,0,2H10a3.0033,3.0033,0,0,1,3,3v4a5.0059,5.0059,0,0,0,5,5h4.142A3.9935,3.9935,0,1,0,26,18ZM26,8a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,8ZM6,12a2,2,0,1,1,2-2A2.002,2.002,0,0,1,6,12ZM26,24a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,24Z" })), children); }); { Branch$1.propTypes = iconPropTypes; } var BreakingChange = /*#__PURE__*/React__default["default"].forwardRef(function BreakingChange(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$e || (_path113$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 25a6 6 0 10-6 6A6.0066 6.0066 0 0031 25zm-2 0a3.9521 3.9521 0 01-.5669 2.019L22.981 21.5669A3.9529 3.9529 0 0125 21 4.0045 4.0045 0 0129 25zm-8 0a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0125 29 4.0045 4.0045 0 0121 25zM19.59 16L17 18.59 18.42 20 22.42 16 18.42 12 17 13.41 19.59 16zM10.41 16L13 13.41 11.58 12 7.58 16 11.58 20 13 18.59 10.41 16z" })), _path114$e || (_path114$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,9H26v7h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H16V24H4ZM4,4H26V7H4Z" })), children); }); { BreakingChange.propTypes = iconPropTypes; } var BrightnessContrast = /*#__PURE__*/React__default["default"].forwardRef(function BrightnessContrast(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$e || (_path115$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V5H15zM27 15H30V17H27zM15 27H17V30H15zM2 15H5V17H2z" })), _path116$e || (_path116$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.22 5.73H8.219999999999999V8.73H6.22z", transform: "rotate(-45 7.227 7.236)" })), _path117$e || (_path117$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.27 6.23H26.27V8.23H23.27z", transform: "rotate(-45 24.766 7.232)" })), _path118$e || (_path118$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.77 23.27H25.77V26.27H23.77z", transform: "rotate(-45 24.77 24.77)" })), _path119$e || (_path119$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.47 25.13L7.59 23 9 24.42 6.88 26.54 5.47 25.13zM16 8a8 8 0 108 8A8 8 0 0016 8zm0 14a6 6 0 010-12z" })), children); }); { BrightnessContrast.propTypes = iconPropTypes; } var BringForward = /*#__PURE__*/React__default["default"].forwardRef(function BringForward(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$e || (_path120$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15H10V12a2.0023 2.0023 0 012-2h3v2H12zM15 30H12a2.0023 2.0023 0 01-2-2V25h2v3h3zM18 28H22V30H18zM28 30H25V28h3V25h2v3A2.0023 2.0023 0 0128 30zM10 18H12V22H10zM28 18H30V22H28zM30 15H28V12H25V10h3a2.0023 2.0023 0 012 2zM18 10H22V12H18z" })), _path121$e || (_path121$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,22H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H20a2.0023,2.0023,0,0,1,2,2V8H20V4H4V20H8Z" })), children); }); { BringForward.propTypes = iconPropTypes; } var BringToFront = /*#__PURE__*/React__default["default"].forwardRef(function BringToFront(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$e || (_path122$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V20a2.0023,2.0023,0,0,0,2,2h6v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM4,20,3.9985,4H20v6H12a2,2,0,0,0-2,2v8Z" })), children); }); { BringToFront.propTypes = iconPropTypes; } var WatsonHealthBrushFreehand = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthBrushFreehand(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$e || (_path123$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281 3.1719a4.0941 4.0941 0 00-5.6562 0L4.05 22.292A6.9537 6.9537 0 002 27.2412V30H4.7559a6.9523 6.9523 0 004.95-2.05L28.8281 8.8286a3.999 3.999 0 000-5.6567zM10.91 18.26l2.8286 2.8286L11.6172 23.21 8.7886 20.3818zM8.2915 26.5356A4.9665 4.9665 0 014.7559 28H4v-.7588a4.9669 4.9669 0 011.4644-3.5351l1.91-1.91 2.8286 2.8281zM27.4141 7.4141L15.1528 19.6748l-2.8286-2.8286 12.2617-12.26a2.0473 2.0473 0 012.8282 0 1.9995 1.9995 0 010 2.8282zM6.5 15A3.4994 3.4994 0 014.0249 9.026l3.5005-3.5a1.5019 1.5019 0 000-2.121 1.537 1.537 0 00-2.1216 0L3.415 5.3936 2 3.98 3.99 1.9915a3.5849 3.5849 0 014.95 0 3.5039 3.5039 0 010 4.949L5.439 10.44a1.5019 1.5019 0 000 2.121 1.5369 1.5369 0 002.1215 0l4.0249-4.0243L13 9.9507 8.9746 13.975A3.4754 3.4754 0 016.5 15z" })), children); }); { WatsonHealthBrushFreehand.propTypes = iconPropTypes; } var WatsonHealthBrushPolygon = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthBrushPolygon(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$e || (_path124$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281 3.1719a4.0941 4.0941 0 00-5.6562 0L4.05 22.292A6.9537 6.9537 0 002 27.2412V30H4.7559a6.9523 6.9523 0 004.95-2.05L28.8281 8.8286a3.999 3.999 0 000-5.6567zM10.91 18.26l2.8286 2.8286L11.6172 23.21 8.7886 20.3818zM8.2915 26.5356A4.9665 4.9665 0 014.7559 28H4v-.7588a4.9669 4.9669 0 011.4644-3.5351l1.91-1.91 2.8286 2.8281zM27.4141 7.4141L15.1528 19.6748l-2.8286-2.8286 12.2617-12.26a2.0473 2.0473 0 012.8282 0 1.9995 1.9995 0 010 2.8282zM14 2a2.9948 2.9948 0 00-2.8157 2H7.8157A2.9925 2.9925 0 104 7.8154v3.3687a3 3 0 102 0V7.8159A2.9959 2.9959 0 007.8157 6h3.3686A2.9947 2.9947 0 1014 2zM5 15a1 1 0 111-1A1.0008 1.0008 0 015 15zM5 6A1 1 0 116 5 1.0008 1.0008 0 015 6zm9 0a1 1 0 111-1A1.0008 1.0008 0 0114 6z" })), children); }); { WatsonHealthBrushPolygon.propTypes = iconPropTypes; } var BuildTool = /*#__PURE__*/React__default["default"].forwardRef(function BuildTool(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$e || (_path125$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,14h-1V7c0-1.1-0.9-2-2-2h-6v2h6v7h-1c-1.1,0-2,0.9-2,2v9H9.9c-0.4-1.4-1.5-2.5-2.9-2.9V7h6.2l-2.6,2.6L12,11l5-5l-5-5 l-1.4,1.4L13.2,5H7C5.9,5,5,5.9,5,7v15.1c-1.7,0.4-3,2-3,3.9c0,2.2,1.8,4,4,4c1.9,0,3.4-1.3,3.9-3H22v1c0,1.1,0.9,2,2,2h4 c1.1,0,2-0.9,2-2V16C30,14.9,29.1,14,28,14z M6,28c-1.1,0-2-0.9-2-2s0.9-2,2-2c1.1,0,2,0.9,2,2S7.1,28,6,28z M24,28V16h4v12H24z" })), children); }); { BuildTool.propTypes = iconPropTypes; } var Building = /*#__PURE__*/React__default["default"].forwardRef(function Building(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$e || (_path126$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H16a2.002,2.002,0,0,0-2,2V14H4a2.002,2.002,0,0,0-2,2V30H30V4A2.0023,2.0023,0,0,0,28,2ZM9,28V21h4v7Zm19,0H15V20a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1v8H4V16H16V4H28Z" })), _path127$e || (_path127$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 8H20V10H18zM24 8H26V10H24zM18 14H20V16H18zM24 14H26V16H24zM18 20H20V22H18zM24 20H26V22H24z" })), children); }); { Building.propTypes = iconPropTypes; } var BuildingInsights_1 = /*#__PURE__*/React__default["default"].forwardRef(function BuildingInsights_1(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$e || (_path128$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H16a2.002,2.002,0,0,0-2,2V14H4a2.002,2.002,0,0,0-2,2V30H30V4A2.0023,2.0023,0,0,0,28,2ZM9,28V21h4v7Zm19,0H15V20a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1v8H4V16H16V4H28Z" })), _path129$e || (_path129$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 8H20V10H18zM24 8H26V10H24zM18 14H20V16H18zM24 14H26V16H24zM18 20H20V22H18zM24 20H26V22H24zM9 12H7a5.0059 5.0059 0 015-5V9A3.0033 3.0033 0 009 12zM4 12H2A10.0114 10.0114 0 0112 2V4A8.0092 8.0092 0 004 12z" })), children); }); { BuildingInsights_1.propTypes = iconPropTypes; } var BuildingInsights_2 = /*#__PURE__*/React__default["default"].forwardRef(function BuildingInsights_2(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$e || (_path130$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H16a2.002,2.002,0,0,0-2,2V14H4a2.002,2.002,0,0,0-2,2V30H30V4A2.0023,2.0023,0,0,0,28,2ZM9,28V21h4v7Zm19,0H15V20a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1v8H4V16H16V4H28Z" })), _path131$e || (_path131$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 8H20V10H18zM24 8H26V10H24zM18 14H20V16H18zM24 14H26V16H24zM18 20H20V22H18zM24 20H26V22H24zM5.5 12a3.5 3.5 0 010-7h.627A4.0062 4.0062 0 0110 2h2V4L10 4A2.0023 2.0023 0 008 6V7H5.5a1.5 1.5 0 000 3H12v2z" })), children); }); { BuildingInsights_2.propTypes = iconPropTypes; } var BuildingInsights_3 = /*#__PURE__*/React__default["default"].forwardRef(function BuildingInsights_3(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$e || (_path132$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H16a2.002,2.002,0,0,0-2,2V14H4a2.002,2.002,0,0,0-2,2V30H30V4A2.0023,2.0023,0,0,0,28,2ZM9,28V21h4v7Zm19,0H15V20a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1v8H4V16H16V4H28Z" })), _path133$e || (_path133$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 8H20V10H18zM24 8H26V10H24zM18 14H20V16H18zM24 14H26V16H24zM18 20H20V22H18zM24 20H26V22H24zM2 10H7V12H2zM10 2H12V7H10z" })), _path134$e || (_path134$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.5 3.964H7.5V9.035H5.5z", transform: "rotate(-45 6.5 6.5)" })), children); }); { BuildingInsights_3.propTypes = iconPropTypes; } var Bullhorn = /*#__PURE__*/React__default["default"].forwardRef(function Bullhorn(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$e || (_path135$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,6V8.17L5.64,11.87a2,2,0,0,0-1.64,2v4.34a2,2,0,0,0,1.64,2L8,20.56V24a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V22.74l6,1.09V26h2V6ZM18,24H10V20.93l8,1.45ZM6,18.17V13.83L26,10.2V21.8Z" })), children); }); { Bullhorn.propTypes = iconPropTypes; } var Buoy = /*#__PURE__*/React__default["default"].forwardRef(function Buoy(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$e || (_path136$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,22a3.4376,3.4376,0,0,1-3.0513-2.3164,1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,20,22a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,19a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,22a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,8,19a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,4,22H2v2H4a4.9316,4.9316,0,0,0,4-1.9873,5.5965,5.5965,0,0,0,1,.9912,7,7,0,0,0,14,0,5.5965,5.5965,0,0,0,1-.9912A4.9316,4.9316,0,0,0,28,24h2V22ZM16,28a5.0021,5.0021,0,0,1-4.9075-4.0854A5.2252,5.2252,0,0,0,12,24a4.9316,4.9316,0,0,0,4-1.9873A4.9316,4.9316,0,0,0,20,24a5.2252,5.2252,0,0,0,.9075-.0854A5.0021,5.0021,0,0,1,16,28Z" })), _path137$e || (_path137$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.07,7.8345A2.0116,2.0116,0,0,0,18.0771,6H17V2H15V6H13.9175a1.9949,1.9949,0,0,0-1.9859,1.7715L10.2805,19h2.021l.7346-5h5.9212l.7351,5h2.021ZM13.33,12l.5877-4,4.167.0625L18.6633,12Z" })), children); }); { Buoy.propTypes = iconPropTypes; } var Bus = /*#__PURE__*/React__default["default"].forwardRef(function Bus(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$e || (_path138$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 11H29V15H27zM3 11H5V15H3zM20 20H22V22H20zM10 20H12V22H10z" })), _path139$e || (_path139$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,4H11A5.0059,5.0059,0,0,0,6,9V23a2.0023,2.0023,0,0,0,2,2v3h2V25H22v3h2V25a2.0027,2.0027,0,0,0,2-2V9A5.0059,5.0059,0,0,0,21,4Zm3,6,.0009,6H8V10ZM11,6H21a2.995,2.995,0,0,1,2.8157,2H8.1843A2.995,2.995,0,0,1,11,6ZM8,23V18H24.0012l.0008,5Z" })), children); }); { Bus.propTypes = iconPropTypes; } var ButtonCentered = /*#__PURE__*/React__default["default"].forwardRef(function ButtonCentered(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$e || (_path140$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 15H23V17H9z" })), _path141$e || (_path141$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,22H4a2.0021,2.0021,0,0,1-2-2V12a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,22ZM4,12v8H28V12Z" })), children); }); { ButtonCentered.propTypes = iconPropTypes; } var ButtonFlushLeft = /*#__PURE__*/React__default["default"].forwardRef(function ButtonFlushLeft(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$e || (_path142$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 15H20V17H6z" })), _path143$e || (_path143$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,22H4c-1.103,0-2-0.897-2-2v-8c0-1.103,0.897-2,2-2h24c1.103,0,2,0.897,2,2v8C30,21.103,29.103,22,28,22z M4,12v8h24v-8 H4z" })), children); }); { ButtonFlushLeft.propTypes = iconPropTypes; } var CabinCare = /*#__PURE__*/React__default["default"].forwardRef(function CabinCare(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$e || (_path144$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.3022 2a2.6617 2.6617 0 00-1.9079.8059l-.3931.4053-.397-.4053a2.6613 2.6613 0 00-3.8158 0 2.7992 2.7992 0 000 3.8963L25.0012 11 29.21 6.7022a2.7992 2.7992 0 000-3.8963A2.6613 2.6613 0 0027.3022 2zM23.8218 18H15.083L11.8643 5.9653a4 4 0 00-7.7276 2.07L8.5454 24.5168A2 2 0 0010.4775 26H19v2H4v2H19a2 2 0 002-2V26h3a4.0046 4.0046 0 003.98-4.4A4.1214 4.1214 0 0023.8218 18zM24 24H10.4776L6.0686 7.5181A2 2 0 119.9324 6.4829L13.5466 20H24a2 2 0 010 4z" })), children); }); { CabinCare.propTypes = iconPropTypes; } var CabinCareAlert = /*#__PURE__*/React__default["default"].forwardRef(function CabinCareAlert(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$e || (_path145$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 2H26V9H24z" })), _rect$4 || (_rect$4 = /*#__PURE__*/React__default["default"].createElement("rect", { width: "3", height: "3", x: "23.5", y: "11", rx: "1.5" })), _path146$e || (_path146$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.8218,18H15.083L11.8643,5.9653a4,4,0,0,0-7.7276,2.07L8.5454,24.5168A2,2,0,0,0,10.4775,26H19v2H4v2H19a2,2,0,0,0,2-2V26h3a4.0046,4.0046,0,0,0,3.98-4.4A4.1215,4.1215,0,0,0,23.8218,18ZM24,24H10.4775L6.0686,7.5181A2,2,0,1,1,9.9324,6.4829L13.5466,20H24a2,2,0,0,1,0,4Z" })), children); }); { CabinCareAlert.propTypes = iconPropTypes; } var CabinCareAlt = /*#__PURE__*/React__default["default"].forwardRef(function CabinCareAlt(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$e || (_path147$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 25V23H20.7676l-.8-3H27V18H19.4348l-2.469-9.2578-1.9316.5156 3.8017 14.2568A2.0037 2.0037 0 0020.77 25H22v3H10V25h6V23H6.7676l-.8-3H13V18H5.4348L2.9658 8.7422l-1.9316.5156L4.8359 23.5146A2.0037 2.0037 0 006.77 25H8v3H2v2H30V28H24V25zM27.303 2a2.6613 2.6613 0 00-1.9079.8059L25 3.2112l-.3951-.4053a2.6612 2.6612 0 00-3.8157 0 2.7991 2.7991 0 000 3.8963L25 11l4.2108-4.2978a2.7991 2.7991 0 000-3.8963A2.6613 2.6613 0 0027.303 2z" })), children); }); { CabinCareAlt.propTypes = iconPropTypes; } var Cad = /*#__PURE__*/React__default["default"].forwardRef(function Cad(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$e || (_path148$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 9H14a2 2 0 00-2 2V23h2V18h4v5h2V11A2 2 0 0018 9zm-4 7V11h4v5zM26 23H22V9h4a4 4 0 014 4v6A4 4 0 0126 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H24zM10 23H4a2 2 0 01-2-2V11A2 2 0 014 9h6v2H4V21h6z" })), children); }); { Cad.propTypes = iconPropTypes; } var Cafe = /*#__PURE__*/React__default["default"].forwardRef(function Cafe(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$e || (_path149$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM24.5 11H8a2.002 2.002 0 00-2 2v8a5.0059 5.0059 0 005 5h8a5.0059 5.0059 0 005-5V20h.5a4.5 4.5 0 000-9zM22 21a3.0033 3.0033 0 01-3 3H11a3.0033 3.0033 0 01-3-3V13H22zm2.5-3H24V13h.5a2.5 2.5 0 010 5zM19 9H17V8.854a1.9883 1.9883 0 00-1.1055-1.7886L13.2109 5.7236A3.9788 3.9788 0 0111 2.146V1h2V2.146a1.9892 1.9892 0 001.1055 1.7886l2.6836 1.3418A3.9792 3.9792 0 0119 8.854z" })), children); }); { Cafe.propTypes = iconPropTypes; } var Calculation = /*#__PURE__*/React__default["default"].forwardRef(function Calculation(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$e || (_path150$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 8L10 8 10 4 8 4 8 8 4 8 4 10 8 10 8 14 10 14 10 10 14 10 14 8zM4 19H14V21H4zM4 24H14V26H4zM18 8H28V10H18zM24.41 22L28 18.41 26.59 17 23 20.59 19.41 17 18 18.41 21.59 22 18 25.59 19.41 27 23 23.41 26.59 27 28 25.59 24.41 22z" })), children); }); { Calculation.propTypes = iconPropTypes; } var CalculationAlt = /*#__PURE__*/React__default["default"].forwardRef(function CalculationAlt(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$e || (_path151$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 13H25V15H19zM13 21L11 21 11 19 9 19 9 21 7 21 7 23 9 23 9 25 11 25 11 23 13 23 13 21zM7 9H13V11H7zM19 17H25V19H19z" })), _path152$e || (_path152$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM15,5V15H5V5ZM5,17H15V27H5ZM17,27V5H27V27Z" })), children); }); { CalculationAlt.propTypes = iconPropTypes; } var Calculator = /*#__PURE__*/React__default["default"].forwardRef(function Calculator(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$e || (_path153$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4V28H6V4H26m0-2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Z" })), _path154$e || (_path154$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 23H11V25H9zM21 23H23V25H21zM9 18H11V20H9zM21 18H23V20H21zM9 13H11V15H9zM15 23H17V25H15zM15 18H17V20H15zM15 13H17V15H15zM21 13H23V15H21zM9 7H23V10H9z" })), children); }); { Calculator.propTypes = iconPropTypes; } var CalculatorCheck = /*#__PURE__*/React__default["default"].forwardRef(function CalculatorCheck(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$e || (_path155$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 26.59L21.41 24 20 25.41 24 29.41 31 22.41 29.59 21 24 26.59zM15 23H17V25H15zM9 23H11V25H9zM21 18H23V20H21zM15 18H17V20H15zM9 18H11V20H9zM21 13H23V15H21zM15 13H17V15H15zM9 13H11V15H9zM9 7H23V10H9z" })), _path156$e || (_path156$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,30H6.0046A2.007,2.007,0,0,1,4,27.9951V3.9961A1.9984,1.9984,0,0,1,5.9961,2H26.0037A1.9985,1.9985,0,0,1,28,3.9961V18H26V4H6V28H17Z" })), children); }); { CalculatorCheck.propTypes = iconPropTypes; } var Calendar = /*#__PURE__*/React__default["default"].forwardRef(function Calendar(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$e || (_path157$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4h-4V2h-2v2h-8V2h-2v2H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V6C28,4.9,27.1,4,26,4z M26,26H6V12h20 V26z M26,10H6V6h4v2h2V6h8v2h2V6h4V10z" })), children); }); { Calendar.propTypes = iconPropTypes; } var CalendarAdd = /*#__PURE__*/React__default["default"].forwardRef(function CalendarAdd(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch$5 || (_switch$5 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 22L24 22 24 16 22 16 22 22 16 22 16 24 22 24 22 30 24 30 24 24 30 24z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6c0-1.1-0.9-2-2-2h-4V2h-2v2h-8V2h-2v2H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2h8v-2H6V6h4v2h2V6h8v2h2V6h4v8h2V6z" })))), children); }); { CalendarAdd.propTypes = iconPropTypes; } var CalendarAddAlt = /*#__PURE__*/React__default["default"].forwardRef(function CalendarAddAlt(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch2$2 || (_switch2$2 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 21L23 21 23 18 21 18 21 21 18 21 18 23 21 23 21 26 23 26 23 23 26 23z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,30c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S26.4,30,22,30z M22,16c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S25.3,16,22,16z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6c0-1.1-0.9-2-2-2h-4V2h-2v2h-8V2h-2v2H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2h6v-2H6V6h4v2h2V6h8v2h2V6h4v6h2V6z" })))), children); }); { CalendarAddAlt.propTypes = iconPropTypes; } var CalendarHeatMap = /*#__PURE__*/React__default["default"].forwardRef(function CalendarHeatMap(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$e || (_path158$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H22V2H20V4H12V2H10V4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM6,6h4V8h2V6h8V8h2V6h4l0,4H6Zm0,6h5v6H6ZM19,26H13V20h6Zm0-8H13V12h6Zm2,8V20h5l.0012,6Z" })), children); }); { CalendarHeatMap.propTypes = iconPropTypes; } var CalendarSettings = /*#__PURE__*/React__default["default"].forwardRef(function CalendarSettings(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$e || (_path159$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,23V21H27.91a5.9592,5.9592,0,0,0-1.0244-2.4707L28.364,17.05,26.95,15.6362l-1.4788,1.4785A5.9584,5.9584,0,0,0,23,16.09V14H21v2.09a5.9584,5.9584,0,0,0-2.4709,1.0244L17.05,15.6362,15.636,17.05l1.4787,1.479A5.9618,5.9618,0,0,0,16.09,21H14v2h2.09a5.9618,5.9618,0,0,0,1.0244,2.4707L15.636,26.95,17.05,28.3638l1.4788-1.4785A5.9584,5.9584,0,0,0,21,27.91V30h2V27.91a5.9584,5.9584,0,0,0,2.4709-1.0244L26.95,28.3638,28.364,26.95l-1.4787-1.479A5.9592,5.9592,0,0,0,27.91,23Zm-8,3a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,26Z" })), _path160$e || (_path160$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" })), children); }); { CalendarSettings.propTypes = iconPropTypes; } var CalendarTools = /*#__PURE__*/React__default["default"].forwardRef(function CalendarTools(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$e || (_path161$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.981,24.4333A3.9549,3.9549,0,0,0,26,25a4.0045,4.0045,0,0,0,4-4,3.9427,3.9427,0,0,0-.1492-1.0228l-2.4367,2.4369-.0005-.0005a1.9991,1.9991,0,1,1-2.8272-2.8272l-.0005-.0005,2.4368-2.4368A3.95,3.95,0,0,0,26,17a4.0045,4.0045,0,0,0-4,4,3.9544,3.9544,0,0,0,.5669,2.0191L17,28.586,18.4141,30Z" })), _path162$e || (_path162$e = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h8V26H6V6h4V8h2V6h8V8h2V6h4v8h2V6A2,2,0,0,0,26,4Z" })), children); }); { CalendarTools.propTypes = iconPropTypes; } var Calibrate = /*#__PURE__*/React__default["default"].forwardRef(function Calibrate(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$e || (_path163$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.83,21.17,25,17.37l.67-.67a1,1,0,0,0,0-1.41l-6-6a1,1,0,0,0-1.41,0h0l-.79.79L10.71,3.29a1,1,0,0,0-1.41,0h0l-4,4-.12.15-4,6a1,1,0,0,0,.12,1.26l3,3a1,1,0,0,0,1.42,0L10,13.41l2.09,2.09-4.8,4.79a1,1,0,0,0,0,1.41l2,2A1,1,0,0,0,10,24a1,1,0,0,0,.52-.15l4.33-2.6,2.44,2.45a1,1,0,0,0,1.41,0h0l.67-.7,3.79,3.83a4,4,0,0,0,5.66-5.66ZM10,10.58l-5,5L3.29,13.87,6.78,8.63,10,5.41l6.09,6.09L13.5,14.08Zm8,11-2.84-2.84-5,3L9.42,21,19,11.41,23.59,16Zm9.42,3.83a2,2,0,0,1-2.83,0h0l-3.8-3.79,2.83-2.83,3.8,3.79a2,2,0,0,1,0,2.83Z" })), children); }); { Calibrate.propTypes = iconPropTypes; } var Camera = /*#__PURE__*/React__default["default"].forwardRef(function Camera(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$e || (_path164$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,26H3a1,1,0,0,1-1-1V8A1,1,0,0,1,3,7H9.46l1.71-2.55A1,1,0,0,1,12,4h8a1,1,0,0,1,.83.45L22.54,7H29a1,1,0,0,1,1,1V25A1,1,0,0,1,29,26ZM4,24H28V9H22a1,1,0,0,1-.83-.45L19.46,6H12.54L10.83,8.55A1,1,0,0,1,10,9H4Z" })), _path165$e || (_path165$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,1,6-6A6,6,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,16,12Z" })), children); }); { Camera.propTypes = iconPropTypes; } var CameraAction = /*#__PURE__*/React__default["default"].forwardRef(function CameraAction(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$e || (_path166$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,23a6,6,0,1,1,6-6A6,6,0,0,1,12,23Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,12,13Z" })), _path167$e || (_path167$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,27H3a1,1,0,0,1-1-1V6A1,1,0,0,1,3,5H29a1,1,0,0,1,1,1V26A1,1,0,0,1,29,27ZM4,25H28V7H4Z" })), _path168$e || (_path168$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 9H26V11H19z" })), _circle5$d || (_circle5$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "12", cy: "17", r: "1" })), children); }); { CameraAction.propTypes = iconPropTypes; } var Campsite = /*#__PURE__*/React__default["default"].forwardRef(function Campsite(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path169$e || (_path169$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.5618,26,17.17,8.9277,19.5361,5.04,17.8281,4,16,7.0049,14.17,4l-1.708,1.04,2.3665,3.8877L4.438,26H2v2H30V26ZM16,10.8506,25.2207,26H17V18H15v8H6.7791Z" })), children); }); { Campsite.propTypes = iconPropTypes; } var Car = /*#__PURE__*/React__default["default"].forwardRef(function Car(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$e || (_path170$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3379,15.9336l-7.7324-2.7783L18.374,9.0967A2.99,2.99,0,0,0,16.0537,8H8.0576a2.9982,2.9982,0,0,0-2.48,1.3115L2.8662,13.2949A4.9884,4.9884,0,0,0,2,16.1074V24a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V16.875A1,1,0,0,0,29.3379,15.9336ZM9,26a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,23,26Zm5-3H26.8579a3.9806,3.9806,0,0,0-7.7158,0H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V16.1074A2.9977,2.9977,0,0,1,4.52,14.4189l2.711-3.9814A.9992.9992,0,0,1,8.0576,10h7.9961a.9928.9928,0,0,1,.7647.3545l3.3994,4.2685a1.0007,1.0007,0,0,0,.4443.3184L28,17.5781Z" })), children); }); { Car.propTypes = iconPropTypes; } var CarFront = /*#__PURE__*/React__default["default"].forwardRef(function CarFront(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$e || (_path171$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 19H19V21H13z" })), _path172$e || (_path172$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.4409,14,24.1687,9.45A2.009,2.009,0,0,0,22.2456,8H9.7544A2.0089,2.0089,0,0,0,7.8313,9.4507L6.5315,14H4v2H6v7a2.0025,2.0025,0,0,0,2,2v3h2V25H22v3h2V25a2.0025,2.0025,0,0,0,2-2V16h2V14ZM9.7544,10H22.2458l1.4285,5H8.3257ZM24,21v2H8V21h2V19H8V17H24v2H22v2Z" })), children); }); { CarFront.propTypes = iconPropTypes; } var Carbon = /*#__PURE__*/React__default["default"].forwardRef(function Carbon(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$e || (_path173$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5,30.8149a1.0011,1.0011,0,0,1-.4927-.13l-8.5-4.815A1,1,0,0,1,4,25V15a1,1,0,0,1,.5073-.87l8.5-4.815a1.0013,1.0013,0,0,1,.9854,0l8.5,4.815A1,1,0,0,1,23,15V25a1,1,0,0,1-.5073.87l-8.5,4.815A1.0011,1.0011,0,0,1,13.5,30.8149ZM6,24.417l7.5,4.2485L21,24.417V15.583l-7.5-4.2485L6,15.583Z" })), _path174$e || (_path174$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,17H26V7.583L18.5,3.3345,10.4927,7.87,9.5073,6.13l8.5-4.815a1.0013,1.0013,0,0,1,.9854,0l8.5,4.815A1,1,0,0,1,28,7Z" })), children); }); { Carbon.propTypes = iconPropTypes; } var CarbonAccounting = /*#__PURE__*/React__default["default"].forwardRef(function CarbonAccounting(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$e || (_path175$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 26H23V22a2.002 2.002 0 012-2h2V18H23V16h4a2.0023 2.0023 0 012 2v2a2.0023 2.0023 0 01-2 2H25v2h4zM19 22H15a2.0023 2.0023 0 01-2-2V10a2.002 2.002 0 012-2h4a2.002 2.002 0 012 2V20A2.0023 2.0023 0 0119 22zM15 10V20h4V10zM11 22H5a2.0023 2.0023 0 01-2-2V10A2.002 2.002 0 015 8h6v2H5V20h6z" })), children); }); { CarbonAccounting.propTypes = iconPropTypes; } var CarbonForIbmDotcom = /*#__PURE__*/React__default["default"].forwardRef(function CarbonForIbmDotcom(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$e || (_path176$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.509,17.689l-6-3.55C23.352,14.046,23.176,14,23,14s-0.352,0.046-0.509,0.14l-6,3.55C16.187,17.869,16,18.196,16,18.55 v6.9c0,0.354,0.187,0.681,0.491,0.86l6,3.55C22.648,29.954,22.824,30,23,30s0.352-0.046,0.509-0.14l6-3.55 C29.813,26.131,30,25.804,30,25.45v-6.9C30,18.196,29.813,17.869,29.509,17.689z M28,24.88l-5,2.958l-5-2.958v-5.76l5-2.958l5,2.958 V24.88z" })), _circle6$d || (_circle6$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "6", r: "1" })), _circle7$d || (_circle7$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "6", r: "1" })), _path177$e || (_path177$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4C2.897,2,2,2.897,2,4v20c0,1.103,0.897,2,2,2h9v-2H4V10h24v4h2V4C30,2.897,29.103,2,28,2z M4,8V4h24v4H4z" })), children); }); { CarbonForIbmDotcom.propTypes = iconPropTypes; } var CarbonForIbmProduct = /*#__PURE__*/React__default["default"].forwardRef(function CarbonForIbmProduct(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path178$e || (_path178$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.509,12.689l-6-3.55C16.352,9.046,16.176,9,16,9s-0.352,0.046-0.509,0.14l-6,3.55C9.187,12.869,9,13.196,9,13.55v6.9 c0,0.354,0.187,0.681,0.491,0.86l6,3.55C15.648,24.954,15.824,25,16,25s0.352-0.046,0.509-0.14l6-3.55 C22.813,21.131,23,20.804,23,20.45v-6.9C23,13.196,22.813,12.869,22.509,12.689z M21,19.88l-5,2.958l-5-2.958v-5.76l5-2.958l5,2.958 V19.88z" })), _path179$e || (_path179$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 20.184V11.07l6.2-3.664-1.017-1.722L4.491 9.639C4.187 9.819 4 10.146 4 10.5v9.684C2.839 20.598 2 21.698 2 23c0 1.654 1.346 3 3 3s3-1.346 3-3C8 21.698 7.161 20.598 6 20.184zM5 24c-.551 0-1-.448-1-1s.449-1 1-1 1 .448 1 1S5.551 24 5 24zM27 20c-1.654 0-3 1.346-3 3 0 .353.072.687.185 1.002L16 28.838l-6.404-3.784-1.017 1.722 6.912 4.084C15.648 30.954 15.824 31 16 31s.352-.046.509-.139l8.96-5.295C25.919 25.835 26.439 26 27 26c1.654 0 3-1.346 3-3S28.654 20 27 20zM27 24c-.551 0-1-.448-1-1s.449-1 1-1 1 .448 1 1S27.551 24 27 24zM16 7c.731 0 1.392-.273 1.913-.708L26 11.071V18h2v-7.5c0-.354-.187-.681-.491-.861l-8.567-5.062C18.978 4.39 19 4.198 19 4c0-1.654-1.346-3-3-3s-3 1.346-3 3S14.346 7 16 7zM16 3c.551 0 1 .448 1 1s-.449 1-1 1-1-.448-1-1S15.449 3 16 3z" })), children); }); { CarbonForIbmProduct.propTypes = iconPropTypes; } var CaretDown = /*#__PURE__*/React__default["default"].forwardRef(function CaretDown(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 8 4", fill: "currentColor" }, rest), _path180$e || (_path180$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 0L4 4 0 0z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$e || (_path181$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 12L16 22 8 12z" })), children); }); { CaretDown.propTypes = iconPropTypes; } var CaretLeft = /*#__PURE__*/React__default["default"].forwardRef(function CaretLeft(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 5 8", fill: "currentColor" }, rest), _path182$e || (_path182$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 8L0 4 5 0z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$e || (_path183$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 24L10 16 20 8z" })), children); }); { CaretLeft.propTypes = iconPropTypes; } var CaretRight = /*#__PURE__*/React__default["default"].forwardRef(function CaretRight(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 5 8", fill: "currentColor" }, rest), _path184$e || (_path184$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M0 0L5 4 0 8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$e || (_path185$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 8L22 16 12 24z" })), children); }); { CaretRight.propTypes = iconPropTypes; } var CaretSort = /*#__PURE__*/React__default["default"].forwardRef(function CaretSort(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$e || (_path186$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 24L16 32 8 24zM8 8L16 0 24 8z" })), children); }); { CaretSort.propTypes = iconPropTypes; } var CaretSortDown = /*#__PURE__*/React__default["default"].forwardRef(function CaretSortDown(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$e || (_path187$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 24L16 32 8 24z" })), children); }); { CaretSortDown.propTypes = iconPropTypes; } var CaretSortUp = /*#__PURE__*/React__default["default"].forwardRef(function CaretSortUp(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$e || (_path188$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8L16 0 24 8z" })), children); }); { CaretSortUp.propTypes = iconPropTypes; } var CaretUp = /*#__PURE__*/React__default["default"].forwardRef(function CaretUp(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 8 4", fill: "currentColor" }, rest), _path189$e || (_path189$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M0 4L4 0 8 4z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$e || (_path190$e = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 20L16 10 24 20z" })), children); }); { CaretUp.propTypes = iconPropTypes; } var CarouselHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function CarouselHorizontal(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$d || (_path191$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 26H10a2 2 0 01-2-2V8a2 2 0 012-2H22a2 2 0 012 2V24A2 2 0 0122 26zM10 8V24H22V8zM4 24H0V22H4V10H0V8H4a2 2 0 012 2V22A2 2 0 014 24zM32 24H28a2 2 0 01-2-2V10a2 2 0 012-2h4v2H28V22h4z" })), children); }); { CarouselHorizontal.propTypes = iconPropTypes; } var CarouselVertical = /*#__PURE__*/React__default["default"].forwardRef(function CarouselVertical(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$d || (_path192$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 10V22a2 2 0 01-2 2H8a2 2 0 01-2-2V10A2 2 0 018 8H24A2 2 0 0126 10zM8 22H24V10H8zM24 28v4H22V28H10v4H8V28a2 2 0 012-2H22A2 2 0 0124 28zM24 0V4a2 2 0 01-2 2H10A2 2 0 018 4V0h2V4H22V0z" })), children); }); { CarouselVertical.propTypes = iconPropTypes; } var Catalog = /*#__PURE__*/React__default["default"].forwardRef(function Catalog(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$d || (_path193$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2H8A2,2,0,0,0,6,4V8H4v2H6v5H4v2H6v5H4v2H6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Zm0,26H8V24h2V22H8V17h2V15H8V10h2V8H8V4H26Z" })), _path194$d || (_path194$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 8H22V10H14zM14 15H22V17H14zM14 22H22V24H14z" })), children); }); { Catalog.propTypes = iconPropTypes; } var CatalogPublish = /*#__PURE__*/React__default["default"].forwardRef(function CatalogPublish(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$c || (_path195$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20L21.4 21.4 18.8 24 28 24 28 26 18.8 26 21.4 28.6 20 30 15 25zM14 15H22V17H14zM14 8H22V10H14z" })), _path196$b || (_path196$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,28H8v-4h2v-2H8v-5h2v-2H8v-5h2V8H8V4h18v16h2V4c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4v4H4v2h2v5H4v2h2v5H4v2h2v4 c0,1.1,0.9,2,2,2h5V28z" })), children); }); { CatalogPublish.propTypes = iconPropTypes; } var Categories = /*#__PURE__*/React__default["default"].forwardRef(function Categories(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$b || (_path197$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.76 6l.45.89L7.76 8H12v5H4V6H6.76m.62-2H3A1 1 0 002 5v9a1 1 0 001 1H13a1 1 0 001-1V7a1 1 0 00-1-1H9L8.28 4.55A1 1 0 007.38 4zM22.76 6l.45.89L23.76 8H28v5H20V6h2.76m.62-2H19a1 1 0 00-1 1v9a1 1 0 001 1H29a1 1 0 001-1V7a1 1 0 00-1-1H25l-.72-1.45a1 1 0 00-.9-.55zM6.76 19l.45.89L7.76 21H12v5H4V19H6.76m.62-2H3a1 1 0 00-1 1v9a1 1 0 001 1H13a1 1 0 001-1V20a1 1 0 00-1-1H9l-.72-1.45a1 1 0 00-.9-.55zM22.76 19l.45.89L23.76 21H28v5H20V19h2.76m.62-2H19a1 1 0 00-1 1v9a1 1 0 001 1H29a1 1 0 001-1V20a1 1 0 00-1-1H25l-.72-1.45a1 1 0 00-.9-.55z" })), children); }); { Categories.propTypes = iconPropTypes; } var Category = /*#__PURE__*/React__default["default"].forwardRef(function Category(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$b || (_path198$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22.1414V18a2,2,0,0,0-2-2H17V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H13a2.002,2.002,0,0,0-2,2v6a2.002,2.002,0,0,0,2,2h2v4H7a2,2,0,0,0-2,2v4.1421a4,4,0,1,0,2,0V18h8v4.142a4,4,0,1,0,2,0V18h8v4.1414a4,4,0,1,0,2,0ZM13,4h6l.001,6H13ZM8,26a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,26Zm10,0a2,2,0,1,1-2-2A2.0027,2.0027,0,0,1,18,26Zm8,2a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,28Z" })), children); }); { Category.propTypes = iconPropTypes; } var CategoryAdd = /*#__PURE__*/React__default["default"].forwardRef(function CategoryAdd(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$b || (_path199$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 6L13.59 7.41 17.17 11 13.59 14.59 15 16 20 11 15 6z" })), _path200$b || (_path200$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,24H17V20h6a2.0027,2.0027,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H9A2.002,2.002,0,0,0,7,4V18a2.0023,2.0023,0,0,0,2,2h6v4H4a2,2,0,0,0-2,2v4H4V26H15v4h2V26H28v4h2V26A2,2,0,0,0,28,24ZM9,4H23l.002,14H9Z" })), children); }); { CategoryAdd.propTypes = iconPropTypes; } var CategoryAnd = /*#__PURE__*/React__default["default"].forwardRef(function CategoryAnd(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$b || (_path201$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 30V26H15v4h2V26H28v4h2V26a2 2 0 00-2-2H17V19H15v5H4a2 2 0 00-2 2v4zM20.6953 13.9858A10.08 10.08 0 0021.9463 10H23V8H20V9a9.2634 9.2634 0 01-.6641 3.2705L16.6511 8.8816a5.1261 5.1261 0 002.1436-2.3694A3.2522 3.2522 0 0018.6062 3.81a3.38 3.38 0 00-2.2391-1.7056 3.4688 3.4688 0 00-4.2223 2.1186c-.5044 1.5518.4406 3.1158 1.2612 4.1077A4.7255 4.7255 0 0011.06 13.1587 4.4526 4.4526 0 0015.4268 17h.0058a5.7844 5.7844 0 003.9717-1.4233L20.532 17h2.5519zM14.047 4.8413A1.3224 1.3224 0 0115.4141 4a2.41 2.41 0 01.5214.0581 1.4018 1.4018 0 01.9111.7022 1.2493 1.2493 0 01.0791 1.042A3.6871 3.6871 0 0115.2441 7.395C14.5831 6.6816 13.8087 5.5732 14.047 4.8413zM15.4316 15h-.0039a2.4432 2.4432 0 01-2.3916-2.1509 2.8261 2.8261 0 011.81-3.0249l3.3115 4.1787A3.8853 3.8853 0 0115.4316 15z" })), children); }); { CategoryAnd.propTypes = iconPropTypes; } var CategoryNew = /*#__PURE__*/React__default["default"].forwardRef(function CategoryNew(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$b || (_path202$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 10L17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z" })), _path203$b || (_path203$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,24H17V20h6a2.0027,2.0027,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H9A2.002,2.002,0,0,0,7,4V18a2.0023,2.0023,0,0,0,2,2h6v4H4a2,2,0,0,0-2,2v4H4V26H15v4h2V26H28v4h2V26A2,2,0,0,0,28,24ZM9,4H23l.002,14H9Z" })), children); }); { CategoryNew.propTypes = iconPropTypes; } var CategoryNewEach = /*#__PURE__*/React__default["default"].forwardRef(function CategoryNewEach(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$b || (_path204$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 10H24v2h5v6H22v2h3v2.142a4 4 0 102 0V20h2a2.0027 2.0027 0 002-2V12A2.0023 2.0023 0 0029 10zM28 26a2 2 0 11-2-2A2.0027 2.0027 0 0128 26zM19 6H14V8h5v6H12v2h3v6.142a4 4 0 102 0V16h2a2.0023 2.0023 0 002-2V8A2.0023 2.0023 0 0019 6zM18 26a2 2 0 11-2-2A2.0027 2.0027 0 0118 26zM9 2H3A2.002 2.002 0 001 4v6a2.002 2.002 0 002 2H5V22.142a4 4 0 102 0V12H9a2.002 2.002 0 002-2V4A2.002 2.002 0 009 2zM8 26a2 2 0 11-2-2A2.0023 2.0023 0 018 26zM3 10V4H9l.0015 6z" })), children); }); { CategoryNewEach.propTypes = iconPropTypes; } var Caution = /*#__PURE__*/React__default["default"].forwardRef(function Caution(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path205$b || (_path205$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.3154,12H3.6846L8,4.0884,12.3154,12M14,13,8,2,2,13Z" })), _path206$b || (_path206$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.315 12L3.685 12 8 4.088 12.315 12z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path207$b || (_path207$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.3154,12H3.6846L8,4.0884,12.3154,12M14,13,8,2,2,13Z" })), _path208$b || (_path208$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.315 12L3.685 12 8 4.088 12.315 12z" })), children); }); { Caution.propTypes = iconPropTypes; } var CautionInverted = /*#__PURE__*/React__default["default"].forwardRef(function CautionInverted(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$e); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path209$b || (_path209$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14L2 3 14 3 8 14z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path210$9 || (_path210$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14L2 3 14 3 8 14z" })), children); }); { CautionInverted.propTypes = iconPropTypes; } var QCcX = /*#__PURE__*/React__default["default"].forwardRef(function QCcX(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$9 || (_path211$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 23H5a2 2 0 01-2-2V15a2 2 0 012-2h5v2H5v6h5zM19 23H14a2 2 0 01-2-2V15a2 2 0 012-2h5v2H14v6h5zM29 9L27 9 25 15 23 9 21 9 23.75 16 21 23 23 23 25 17 27 23 29 23 26.25 16 29 9z" })), children); }); { QCcX.propTypes = iconPropTypes; } var WatsonHealthCdArchive = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCdArchive(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212$8 || (_path212$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28A12,12,0,1,1,28,16,12,12,0,0,1,16,28ZM16,6A10,10,0,1,0,26,16,10,10,0,0,0,16,6Z" })), _path213$8 || (_path213$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,1,6-6A6,6,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,16,12Z" })), _circle8$d || (_circle8$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), children); }); { WatsonHealthCdArchive.propTypes = iconPropTypes; } var WatsonHealthCdCreateArchive = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCdCreateArchive(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path214$8 || (_path214$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,20a6,6,0,1,1,6-6A6,6,0,0,1,14,20Zm0-10a4,4,0,1,0,4,4A4,4,0,0,0,14,10Z" })), _circle9$d || (_circle9$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "14", r: "2" })), _path215$7 || (_path215$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,23.54A10,10,0,1,1,24,14c0,.34,0,.67-.05,1h2c0-.33.05-.66.05-1A12,12,0,1,0,14,26a12.33,12.33,0,0,0,3-.39Z" })), _path216$7 || (_path216$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,30l-2.14-1A5,5,0,0,1,20,24.47V18H30v6.47A5,5,0,0,1,27.14,29ZM22,20v4.47a3,3,0,0,0,1.72,2.71l1.28.61,1.28-.61A3,3,0,0,0,28,24.47V20Z" })), children); }); { WatsonHealthCdCreateArchive.propTypes = iconPropTypes; } var WatsonHealthCdCreateExchange = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCdCreateExchange(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle10$c || (_circle10$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "14", r: "2" })), _path217$7 || (_path217$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,2a12,12,0,0,0,0,24V24A10,10,0,1,1,24,14,8.27,8.27,0,0,1,24,15h2c0-.33.05-.66.05-1A12,12,0,0,0,14,2Z" })), _path218$5 || (_path218$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 24L26.17 24 23.58 26.59 25 28 30 23 25 18 23.58 19.42 26.17 22 17 22 17 24zM14 20a6 6 0 116-6A6 6 0 0114 20zm0-10a4 4 0 104 4A4 4 0 0014 10z" })), children); }); { WatsonHealthCdCreateExchange.propTypes = iconPropTypes; } var Cda = /*#__PURE__*/React__default["default"].forwardRef(function Cda(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path219$5 || (_path219$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9H24a2.002 2.002 0 00-2 2V23h2V18h4v5h2V11A2.0023 2.0023 0 0028 9zm-4 7V11h4v5zM16 23H12V9h4a4.0042 4.0042 0 014 4v6A4.0039 4.0039 0 0116 23zm-2-2h2a2.0027 2.0027 0 002-2V13a2.0023 2.0023 0 00-2-2H14zM10 23H4a2.0023 2.0023 0 01-2-2V11A2.002 2.002 0 014 9h6v2H4V21h6z" })), children); }); { Cda.propTypes = iconPropTypes; } var CellTower = /*#__PURE__*/React__default["default"].forwardRef(function CellTower(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path220$5 || (_path220$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 11L25 16 17 16 17 11 15 11 15 16 7 16 7 11 5 11 5 23 7 23 7 18 10 18 10 30 12 30 12 18 15 18 15 23 17 23 17 18 20 18 20 30 22 30 22 18 25 18 25 23 27 23 27 11zM16 6c-1.7 0-3.2.7-4.2 1.8l1.4 1.4C13.9 8.4 14.9 8 16 8s2.1.4 2.8 1.2l1.4-1.4C19.2 6.7 17.7 6 16 6z" })), _path221$5 || (_path221$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.9,4.9l1.4,1.4C11.8,4.9,13.8,4,16,4s4.2,0.9,5.7,2.3l1.4-1.4C21.3,3.1,18.8,2,16,2S10.7,3.1,8.9,4.9z" })), children); }); { CellTower.propTypes = iconPropTypes; } var CenterCircle = /*#__PURE__*/React__default["default"].forwardRef(function CenterCircle(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path222$5 || (_path222$5 = /*#__PURE__*/React__default["default"].createElement("path", { 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.9492V22H15v3.9492A10.0166,10.0166,0,0,1,6.0508,17H10V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V10h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H22v2h3.9492A10.0166,10.0166,0,0,1,17,25.9492Z" })), children); }); { CenterCircle.propTypes = iconPropTypes; } var CenterSquare = /*#__PURE__*/React__default["default"].forwardRef(function CenterSquare(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223$5 || (_path223$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 12L4 12 4 4 12 4 12 6 6 6 6 12zM28 12L26 12 26 6 20 6 20 4 28 4 28 12zM12 28L4 28 4 20 6 20 6 26 12 26 12 28zM28 28L20 28 20 26 26 26 26 20 28 20 28 28zM15 10H17V14H15zM10 15H14V17H10zM18 15H22V17H18zM15 18H17V22H15z" })), children); }); { CenterSquare.propTypes = iconPropTypes; } var CenterToFit = /*#__PURE__*/React__default["default"].forwardRef(function CenterToFit(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path224$4 || (_path224$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 2L2 2 2 8 4 8 4 4 8 4 8 2zM24 2L30 2 30 8 28 8 28 4 24 4 24 2zM8 30L2 30 2 24 4 24 4 28 8 28 8 30zM24 30L30 30 30 24 28 24 28 28 24 28 24 30zM24 24H8a2.0023 2.0023 0 01-2-2V10A2.0023 2.0023 0 018 8H24a2.0023 2.0023 0 012 2V22A2.0023 2.0023 0 0124 24zM8 10V22H24V10z" })), children); }); { CenterToFit.propTypes = iconPropTypes; } var Certificate = /*#__PURE__*/React__default["default"].forwardRef(function Certificate(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path225$2 || (_path225$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 17L25.912 20.703 30 21.297 27 24 27.771 28 24 25.75 20.229 28 21 24 18 21.297 22.2 20.703 24 17zM6 16H12V18H6zM6 12H16V14H6zM6 8H16V10H6z" })), _path226$2 || (_path226$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16Z" })), children); }); { Certificate.propTypes = iconPropTypes; } var CertificateCheck = /*#__PURE__*/React__default["default"].forwardRef(function CertificateCheck(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path227$2 || (_path227$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 16H12V18H6zM6 12H16V14H6zM6 8H16V10H6z" })), _path228$2 || (_path228$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z" })), _path229$2 || (_path229$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 25.59L19.41 23 18 24.41 22 28.41 30 20.41 28.59 19 22 25.59z" })), children); }); { CertificateCheck.propTypes = iconPropTypes; } var ChangeCatalog = /*#__PURE__*/React__default["default"].forwardRef(function ChangeCatalog(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path230$2 || (_path230$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 24v2h2.4592A5.94 5.94 0 0122 28a6.0066 6.0066 0 01-6-6H14a7.9841 7.9841 0 0014 5.2651V30h2V24zM22 14a8.04 8.04 0 00-6 2.7349V14H14v6h6V18H17.5408A5.94 5.94 0 0122 16a6.0066 6.0066 0 016 6h2A8.0092 8.0092 0 0022 14z" })), _path231$2 || (_path231$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,28H6V24H8V22H6V17H8V15H6V10H8V8H6V4H24v8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8H2v2H4v5H2v2H4v5H2v2H4v4a2,2,0,0,0,2,2h6Z" })), children); }); { ChangeCatalog.propTypes = iconPropTypes; } var CharacterDecimal = /*#__PURE__*/React__default["default"].forwardRef(function CharacterDecimal(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path232$2 || (_path232$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 15H23V17H21z" })), _path233$2 || (_path233$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 23H20a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h4a2.0023 2.0023 0 012 2V21A2.0027 2.0027 0 0124 23zM20 11h0V21h4V11zM11 15H13V17H11z" })), _path234$2 || (_path234$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 23H10a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h4a2.0023 2.0023 0 012 2V21A2.0027 2.0027 0 0114 23zM10 11h0V21h4V11zM4 21H6V23H4z" })), children); }); { CharacterDecimal.propTypes = iconPropTypes; } var CharacterFraction = /*#__PURE__*/React__default["default"].forwardRef(function CharacterFraction(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path235$1 || (_path235$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,30H20V24a2.002,2.002,0,0,1,2-2h4V18H20V16h6a2.0023,2.0023,0,0,1,2,2v4a2.0023,2.0023,0,0,1-2,2H22v4h6Z" })), _path236$1 || (_path236$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.479 15.5H26.521V17.5H4.479z", transform: "rotate(-45 15.5 16.5)" })), _path237$1 || (_path237$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.5 15.5L4.5 14.5 7.5 14.5 7.5 3.5 4.5 3.5 4.5 2.5 8.5 2.5 8.5 14.5 11.5 14.5 11.5 15.5 4.5 15.5z" })), _path238$1 || (_path238$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,3V15H8V3M9,2H4V4H7V14H4v2h8V14H9V2Z" })), children); }); { CharacterFraction.propTypes = iconPropTypes; } var CharacterInteger = /*#__PURE__*/React__default["default"].forwardRef(function CharacterInteger(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path239$1 || (_path239$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.5 22.5L19.5 21.5 22.5 21.5 22.5 10.5 19.5 10.5 19.5 9.5 23.5 9.5 23.5 21.5 26.5 21.5 26.5 22.5 19.5 22.5z" })), _path240$1 || (_path240$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 10V22h0V10m1-1H19v2h3V21H19v2h8V21H24V9zM5 21H15V23H5zM15 13L11 13 11 9 9 9 9 13 5 13 5 15 9 15 9 19 11 19 11 15 15 15 15 13z" })), children); }); { CharacterInteger.propTypes = iconPropTypes; } var CharacterLowerCase = /*#__PURE__*/React__default["default"].forwardRef(function CharacterLowerCase(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path241$1 || (_path241$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 23H24a2.0027 2.0027 0 01-2-2V15a2.0023 2.0023 0 012-2h5v2H24v6h5zM18 13H14V9H12V23h6a2.0027 2.0027 0 002-2V15A2.0023 2.0023 0 0018 13zm-4 8V15h4v6zM8 13H3v2H8v2H4a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 008 13zm0 8H4V19H8z" })), children); }); { CharacterLowerCase.propTypes = iconPropTypes; } var CharacterNegativeNumber = /*#__PURE__*/React__default["default"].forwardRef(function CharacterNegativeNumber(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path242$1 || (_path242$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.5 22.5L19.5 21.5 22.5 21.5 22.5 10.5 19.5 10.5 19.5 9.5 23.5 9.5 23.5 21.5 26.5 21.5 26.5 22.5 19.5 22.5z" })), _path243$1 || (_path243$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 10V22h0V10m1-1H19v2h3V21H19v2h8V21H24V9zM5 15H15V17H5z" })), children); }); { CharacterNegativeNumber.propTypes = iconPropTypes; } var CharacterSentenceCase = /*#__PURE__*/React__default["default"].forwardRef(function CharacterSentenceCase(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path244$1 || (_path244$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 23H24a2.0027 2.0027 0 01-2-2V15a2.0023 2.0023 0 012-2h5v2H24v6h5zM18 13H14V9H12V23h6a2.0027 2.0027 0 002-2V15A2.0023 2.0023 0 0018 13zm-4 8V15h4v6zM8 9H4a2.002 2.002 0 00-2 2V23H4V18H8v5h2V11A2.002 2.002 0 008 9zM4 16V11H8v5z" })), children); }); { CharacterSentenceCase.propTypes = iconPropTypes; } var CharacterUpperCase = /*#__PURE__*/React__default["default"].forwardRef(function CharacterUpperCase(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path245$1 || (_path245$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 23H24a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h6v2H24V21h6zM20 12a3.0033 3.0033 0 00-3-3H12V23h5a3.0033 3.0033 0 003-3V18a2.977 2.977 0 00-.78-2A2.9768 2.9768 0 0020 14zm-6-1h3a1.0013 1.0013 0 011 1v2a1.0013 1.0013 0 01-1 1H14zm4 9a1.0009 1.0009 0 01-1 1H14V17h3a1.0009 1.0009 0 011 1zM8 9H4a2.002 2.002 0 00-2 2V23H4V18H8v5h2V11A2.002 2.002 0 008 9zM4 16V11H8v5z" })), children); }); { CharacterUpperCase.propTypes = iconPropTypes; } var CharacterWholeNumber = /*#__PURE__*/React__default["default"].forwardRef(function CharacterWholeNumber(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path246 || (_path246 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9H22v2h6v4H24v2h4v4H22v2h6a2.0027 2.0027 0 002-2V11A2.0023 2.0023 0 0028 9zM20 23H12V17a2.002 2.002 0 012-2h4V11H12V9h6a2.0023 2.0023 0 012 2v4a2.0023 2.0023 0 01-2 2H14v4h6zM2.5 22.5L2.5 21.5 5.5 21.5 5.5 10.5 2.5 10.5 2.5 9.5 6.5 9.5 6.5 21.5 9.5 21.5 9.5 22.5 2.5 22.5z" })), _path247 || (_path247 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,10V22H6V10M7,9H2v2H5V21H2v2h8V21H7V9Z" })), children); }); { CharacterWholeNumber.propTypes = iconPropTypes; } var CharacterPatterns = /*#__PURE__*/React__default["default"].forwardRef(function CharacterPatterns(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path248 || (_path248 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 26V17.8281l-3.5859 3.586L1 20l6-6 6 6-1.4141 1.4141L8 17.8281V26H18v2H8A2.0024 2.0024 0 016 26zM30 22L30 20 22 20 22 22 27.5 22 22 28 22 30 30 30 30 28 24.507 28 30 22zM26 6v8.1719l3.5859-3.586L31 12l-6 6-6-6 1.4141-1.4141L24 14.1719V6H14V4H24A2.0024 2.0024 0 0126 6zM8 2H3V4H8V6H4A2 2 0 002 8v2a2 2 0 002 2h6V4A2.0023 2.0023 0 008 2zm0 8H4V8H8z" })), children); }); { CharacterPatterns.propTypes = iconPropTypes; } var ChargingStation = /*#__PURE__*/React__default["default"].forwardRef(function ChargingStation(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path249 || (_path249 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.857 21.514L10.143 20.486 12.234 17 7.234 17 11.143 10.486 12.857 11.514 10.766 15 15.766 15 11.857 21.514z" })), _path250 || (_path250 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,7H29V4H27V7H26v6h1V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.5a3.5,3.5,0,0,0,7,0V13h1ZM17,26H6V6H17Z" })), children); }); { ChargingStation.propTypes = iconPropTypes; } var ChargingStationFilled = /*#__PURE__*/React__default["default"].forwardRef(function ChargingStationFilled(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path251 || (_path251 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,7V4H27V7H26v6h1V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.5a3.5,3.5,0,0,0,7,0V13h1V7ZM11.8574,21.5146l-1.7148-1.0292L12.2339,17h-5l3.9087-6.5146,1.7148,1.0292L10.7661,15h5Z" })), _path252 || (_path252 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M11.857 21.514L10.143 20.486 12.234 17 7.234 17 11.143 10.486 12.857 11.514 10.766 15 15.766 15 11.857 21.514z", "data-icon-path": "inner-path" })), children); }); { ChargingStationFilled.propTypes = iconPropTypes; } var Chart_3D = /*#__PURE__*/React__default["default"].forwardRef(function Chart_3D(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path253 || (_path253 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,23v3.5859l-5-5V15a1,1,0,0,0-.5527-.8945L17,11.3818V5.8281l2.5859,2.586L21,7,16,2,11,7l1.4141,1.4141L15,5.8281v5.5537L9.5527,14.1055A1,1,0,0,0,9,15v6.5859l-5,5V23H2v7H9V28H5.4141l4.7832-4.7832,5.3554,2.6777a1.001,1.001,0,0,0,.8946,0l5.3554-2.6777L26.5859,28H23v2h7V23Zm-13,.3818-4-2V16.6182l4,2Zm1-6.5L12.2363,15,16,13.1182,19.7637,15Zm5,4.5-4,2V18.6182l4-2Z" })), children); }); { Chart_3D.propTypes = iconPropTypes; } var ChartArea = /*#__PURE__*/React__default["default"].forwardRef(function ChartArea(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path254 || (_path254 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.4761,8.0151,13.4473,4.2109a2.0076,2.0076,0,0,0-2.1158.2051L4,10.001V2H2V28a2,2,0,0,0,2,2H30V5.7354ZM28,20.209l-7.62,1.8022-7.0288-2.8838a1.99,1.99,0,0,0-2.022.37L4,25.8359v-4.455l8.375-9.4,7.0186,5.62a2.0155,2.0155,0,0,0,2.0459.2119L28,14.6025ZM12.5239,5.9849l7.03,3.8042a2.012,2.012,0,0,0,1.3408.16L28,8.2646v4.1138L20.6187,16.02,13.6,10.4a1.99,1.99,0,0,0-2.6885.2642L4,18.3838v-5.87ZM4.5513,28,12.62,20.9888l7.0288,2.8838a1.9977,1.9977,0,0,0,1.147.0771L28,22.2612V28Z" })), children); }); { ChartArea.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$d, _path2$d, _path3$d, _path4$d, _path5$d, _path6$d, _path7$d, _path8$d, _path9$d, _path10$d, _path11$d, _path12$d, _path13$d, _path14$d, _path15$d, _path16$d, _path17$d, _path18$d, _path19$d, _path20$d, _path21$d, _path22$d, _path23$d, _path24$d, _path25$d, _path26$d, _path27$d, _path28$d, _path29$d, _path30$d, _path31$d, _path32$d, _path33$d, _path34$d, _path35$d, _path36$d, _path37$d, _path38$d, _path39$d, _path40$d, _path41$d, _path42$d, _path43$d, _path44$d, _path45$d, _path46$d, _path47$d, _path48$d, _path49$d, _path50$d, _path51$d, _path52$d, _path53$d, _path54$d, _path55$d, _path56$d, _path57$d, _path58$d, _path59$d, _path60$d, _path61$d, _circle$d, _circle2$d, _circle3$d, _circle4$c, _circle5$c, _path62$d, _path63$d, _path64$d, _path65$d, _circle6$c, _circle7$c, _circle8$c, _path66$d, _circle9$c, _circle10$b, _path67$d, _path68$d, _path69$d, _path70$d, _path71$d, _path72$d, _path73$d, _path74$d, _path75$d, _path76$d, _path77$d, _circle11$b, _circle12$a, _circle13$9, _circle14$8, _circle15$8, _path78$d, _path79$d, _path80$d, _path81$d, _circle16$8, _circle17$7, _circle18$6, _circle19$6, _circle20$6, _circle21$5, _circle22$5, _circle23$5, _circle24$5, _circle25$5, _circle26$5, _circle27$5, _circle28$5, _circle29$5, _path82$d, _path83$d, _path84$d, _path85$d, _path86$d, _path87$d, _path88$d, _path89$d, _path90$d, _path91$d, _path92$d, _path93$d, _path94$d, _path95$d, _path96$d, _path97$d, _path98$d, _path99$d, _path100$d, _path101$d, _path102$d, _path103$d, _path104$d, _path105$d, _path106$d, _path107$d, _path108$d, _path109$d, _path110$d, _path111$d, _path112$d, _path113$d, _path114$d, _path115$d, _path116$d, _path117$d, _path118$d, _path119$d, _path120$d, _path121$d, _path122$d, _path123$d, _path124$d, _path125$d, _path126$d, _path127$d, _path128$d, _path129$d, _path130$d, _path131$d, _path132$d, _path133$d, _path134$d, _path135$d, _path136$d, _path137$d, _path138$d, _path139$d, _path140$d, _path141$d, _path142$d, _path143$d, _path144$d, _path145$d, _path146$d, _path147$d, _path148$d, _path149$d, _path150$d, _path151$d, _path152$d, _path153$d, _path154$d, _path155$d, _path156$d, _path157$d, _path158$d, _path159$d, _path160$d, _path161$d, _path162$d, _path163$d, _path164$d, _path165$d, _path166$d, _path167$d, _path168$d, _path169$d, _path170$d, _path171$d, _path172$d, _path173$d, _path174$d, _circle30$5, _path175$d, _circle31$5, _path176$d, _circle32$4, _circle33$4, _path177$d, _path178$d, _path179$d, _path180$d, _path181$d, _path182$d, _path183$d, _circle34$4, _path184$d, _path185$d, _path186$d, _path187$d, _path188$d, _path189$d, _path190$d, _path191$c, _path192$c, _path193$c, _path194$c, _path195$b, _path196$a, _path197$a, _path198$a, _path199$a, _path200$a, _path201$a, _path202$a, _path203$a, _path204$a, _path205$a, _path206$a, _path207$a, _path208$a, _path209$a, _path210$8, _path211$8, _path212$7, _path213$7, _path214$7, _path215$6, _path216$6, _path217$6, _path218$4, _path219$4, _path220$4, _path221$4, _path222$4, _path223$4; var _excluded$i = ["children", "size"], _excluded2$d = ["children", "size"], _excluded3$d = ["children", "size"], _excluded4$d = ["children", "size"], _excluded5$d = ["children", "size"], _excluded6$d = ["children", "size"], _excluded7$d = ["children", "size"], _excluded8$d = ["children", "size"], _excluded9$d = ["children", "size"], _excluded10$d = ["children", "size"], _excluded11$d = ["children", "size"], _excluded12$d = ["children", "size"], _excluded13$d = ["children", "size"], _excluded14$d = ["children", "size"], _excluded15$d = ["children", "size"], _excluded16$d = ["children", "size"], _excluded17$d = ["children", "size"], _excluded18$d = ["children", "size"], _excluded19$d = ["children", "size"], _excluded20$d = ["children", "size"], _excluded21$d = ["children", "size"], _excluded22$d = ["children", "size"], _excluded23$d = ["children", "size"], _excluded24$d = ["children", "size"], _excluded25$d = ["children", "size"], _excluded26$d = ["children", "size"], _excluded27$d = ["children", "size"], _excluded28$d = ["children", "size"], _excluded29$d = ["children", "size"], _excluded30$d = ["children", "size"], _excluded31$d = ["children", "size"], _excluded32$d = ["children", "size"], _excluded33$d = ["children", "size"], _excluded34$d = ["children", "size"], _excluded35$d = ["children", "size"], _excluded36$d = ["children", "size"], _excluded37$d = ["children", "size"], _excluded38$d = ["children", "size"], _excluded39$d = ["children", "size"], _excluded40$d = ["children", "size"], _excluded41$d = ["children", "size"], _excluded42$d = ["children", "size"], _excluded43$d = ["children", "size"], _excluded44$d = ["children", "size"], _excluded45$d = ["children", "size"], _excluded46$d = ["children", "size"], _excluded47$d = ["children", "size"], _excluded48$d = ["children", "size"], _excluded49$d = ["children", "size"], _excluded50$d = ["children", "size"], _excluded51$d = ["children", "size"], _excluded52$d = ["children", "size"], _excluded53$d = ["children", "size"], _excluded54$d = ["children", "size"], _excluded55$d = ["children", "size"], _excluded56$d = ["children", "size"], _excluded57$d = ["children", "size"], _excluded58$d = ["children", "size"], _excluded59$d = ["children", "size"], _excluded60$d = ["children", "size"], _excluded61$d = ["children", "size"], _excluded62$d = ["children", "size"], _excluded63$d = ["children", "size"], _excluded64$d = ["children", "size"], _excluded65$d = ["children", "size"], _excluded66$d = ["children", "size"], _excluded67$d = ["children", "size"], _excluded68$d = ["children", "size"], _excluded69$d = ["children", "size"], _excluded70$d = ["children", "size"], _excluded71$d = ["children", "size"], _excluded72$d = ["children", "size"], _excluded73$d = ["children", "size"], _excluded74$d = ["children", "size"], _excluded75$d = ["children", "size"], _excluded76$d = ["children", "size"], _excluded77$d = ["children", "size"], _excluded78$d = ["children", "size"], _excluded79$d = ["children", "size"], _excluded80$d = ["children", "size"], _excluded81$d = ["children", "size"], _excluded82$d = ["children", "size"], _excluded83$d = ["children", "size"], _excluded84$d = ["children", "size"], _excluded85$d = ["children", "size"], _excluded86$d = ["children", "size"], _excluded87$d = ["children", "size"], _excluded88$d = ["children", "size"], _excluded89$d = ["children", "size"], _excluded90$d = ["children", "size"], _excluded91$d = ["children", "size"], _excluded92$d = ["children", "size"], _excluded93$d = ["children", "size"], _excluded94$d = ["children", "size"], _excluded95$d = ["children", "size"], _excluded96$d = ["children", "size"], _excluded97$d = ["children", "size"], _excluded98$d = ["children", "size"], _excluded99$d = ["children", "size"], _excluded100$d = ["children", "size"], _excluded101$d = ["children", "size"], _excluded102$d = ["children", "size"], _excluded103$d = ["children", "size"], _excluded104$d = ["children", "size"], _excluded105$d = ["children", "size"], _excluded106$d = ["children", "size"], _excluded107$d = ["children", "size"], _excluded108$d = ["children", "size"], _excluded109$d = ["children", "size"], _excluded110$d = ["children", "size"], _excluded111$d = ["children", "size"], _excluded112$d = ["children", "size"], _excluded113$d = ["children", "size"], _excluded114$d = ["children", "size"], _excluded115$d = ["children", "size"], _excluded116$d = ["children", "size"], _excluded117$d = ["children", "size"], _excluded118$d = ["children", "size"], _excluded119$d = ["children", "size"], _excluded120$d = ["children", "size"], _excluded121$d = ["children", "size"], _excluded122$d = ["children", "size"], _excluded123$d = ["children", "size"], _excluded124$c = ["children", "size"], _excluded125$c = ["children", "size"]; var ChartAreaSmooth = /*#__PURE__*/React__default["default"].forwardRef(function ChartAreaSmooth(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$i); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$d || (_path$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6.6143l-1.3152.4365A20.9218,20.9218,0,0,1,23,8c-1.7344,0-3.3225-.9072-5.0039-1.8682C16.1621,5.084,14.2656,4,12,4,9.123,4,5.9146,6.2061,4,7.772V2H2V28a2.0025,2.0025,0,0,0,2,2H30ZM4,20.2944C5.874,17.3765,9.56,13,12,13c1.6379,0,2.96,1.1016,4.36,2.2686C17.8965,16.5488,19.6379,18,22,18a9.4686,9.4686,0,0,0,6-2.5288v4.9556A13.0026,13.0026,0,0,1,22,22a13.8619,13.8619,0,0,1-4.6838-.9487A15.682,15.682,0,0,0,12,20c-2.927,0-6.0676,2.959-8,5.1577ZM12,6c1.7344,0,3.3225.9072,5.0039,1.8682C18.8379,8.916,20.7344,10,23,10a21.432,21.432,0,0,0,5-.6782v3.3213C27.3167,13.4463,24.9155,16,22,16c-1.6379,0-2.96-1.1016-4.36-2.2686C16.1035,12.4512,14.3621,11,12,11c-2.9358,0-6.0632,3.3394-8,5.8447V10.4238C5.5461,8.9658,9.2588,6,12,6ZM4.249,28C5.8623,25.9087,9.41,22,12,22a13.8619,13.8619,0,0,1,4.6838.9487A15.682,15.682,0,0,0,22,24a14.7362,14.7362,0,0,0,6-1.34V28Z" })), children); }); { ChartAreaSmooth.propTypes = iconPropTypes; } var ChartAreaStepper = /*#__PURE__*/React__default["default"].forwardRef(function ChartAreaStepper(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$d || (_path2$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,10V6H10v6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V10ZM12,14V8h8v4h8V22H22V16H12v6H4V14ZM4,28V24H14V18h6v6h8v4Z" })), children); }); { ChartAreaStepper.propTypes = iconPropTypes; } var ChartAverage = /*#__PURE__*/React__default["default"].forwardRef(function ChartAverage(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$d || (_path3$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,24c-3.5991,0-5.0293-4.1758-6.4126-8.2139C15.2764,11.9583,13.92,8,11,8a3.44,3.44,0,0,0-3.0532,2.3215L6.0513,9.6838C6.1016,9.5334,7.3218,6,11,6c4.3491,0,6.0122,4.8547,7.48,9.1379C19.6885,18.6667,20.83,22,23,22a3.44,3.44,0,0,0,3.0532-2.3215l1.8955.6377C27.8984,20.4666,26.6782,24,23,24Z" })), _path4$d || (_path4$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V17H6V15H4V2H2V28a2,2,0,0,0,2,2H30V28Z" })), _path5$d || (_path5$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 15H10V17H8zM12 15H14V17H12zM20 15H22V17H20zM24 15H26V17H24zM28 15H30V17H28z" })), children); }); { ChartAverage.propTypes = iconPropTypes; } var ChartBar = /*#__PURE__*/React__default["default"].forwardRef(function ChartBar(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$d || (_path6$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,2H2V28a2,2,0,0,0,2,2H30V28H4V25H26V17H4V13H18V5H4ZM24,19v4H4V19ZM16,7v4H4V7Z" })), children); }); { ChartBar.propTypes = iconPropTypes; } var ChartBarFloating = /*#__PURE__*/React__default["default"].forwardRef(function ChartBarFloating(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$d || (_path7$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 24H14V16H28zM16 22H26V18H16zM26 12H8V4H26zM10 10H24V6H10z" })), _path8$d || (_path8$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2.0023,2.0023,0,0,1-2-2V2H4V28H30Z" })), children); }); { ChartBarFloating.propTypes = iconPropTypes; } var ChartBarOverlay = /*#__PURE__*/React__default["default"].forwardRef(function ChartBarOverlay(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$d || (_path9$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V26H26V16H4V14H18V4H4V2H2V28a2,2,0,0,0,2,2H30V28ZM24,18v6H4V22H20V20H4V18ZM16,6v6H4V10h8V8H4V6Z" })), children); }); { ChartBarOverlay.propTypes = iconPropTypes; } var ChartBarStacked = /*#__PURE__*/React__default["default"].forwardRef(function ChartBarStacked(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$d || (_path10$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V25H26V17H4V13H18V5H4V2H2V28a2,2,0,0,0,2,2H30V28Zm20-5H14V19H24ZM16,11H10V7h6Z" })), children); }); { ChartBarStacked.propTypes = iconPropTypes; } var ChartBarTarget = /*#__PURE__*/React__default["default"].forwardRef(function ChartBarTarget(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$d || (_path11$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 17H30V25H28zM20 5H22V13H20z" })), _path12$d || (_path12$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,2H2V28a2,2,0,0,0,2,2H30V28H4V25H26V17H4V13H18V5H4ZM24,19v4H4V19ZM16,7v4H4V7Z" })), children); }); { ChartBarTarget.propTypes = iconPropTypes; } var ChartBubble = /*#__PURE__*/React__default["default"].forwardRef(function ChartBubble(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$d || (_path13$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), _path14$d || (_path14$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 16a2 2 0 11-2 2 2 2 0 012-2m0-2a4 4 0 104 4 4 4 0 00-4-4zM21 6a4 4 0 11-4 4 4 4 0 014-4m0-2a6 6 0 106 6 6 6 0 00-6-6zM24.5 21A1.5 1.5 0 1123 22.5 1.5 1.5 0 0124.5 21m0-2A3.5 3.5 0 1028 22.5 3.5 3.5 0 0024.5 19z" })), children); }); { ChartBubble.propTypes = iconPropTypes; } var ChartBubblePacked = /*#__PURE__*/React__default["default"].forwardRef(function ChartBubblePacked(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$d || (_path15$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.5322,17.1724A8.99,8.99,0,1,0,13.6074,5.88,5.9969,5.9969,0,1,0,5.051,13.2217a6.9967,6.9967,0,1,0,7.9942,11.4844A5.9981,5.9981,0,0,0,25,24c0-.1216-.011-.24-.0181-.3594a3.4873,3.4873,0,1,0,2.55-6.4682ZM21,4a7,7,0,1,1-7,7A7.0078,7.0078,0,0,1,21,4ZM8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4ZM19,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,19,28Z" })), children); }); { ChartBubblePacked.propTypes = iconPropTypes; } var ChartBullet = /*#__PURE__*/React__default["default"].forwardRef(function ChartBullet(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$d || (_path16$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 22H16V21H14v1H2v6H14v1h2V28H30zM4 26V24H14v2zm24 0H16V24H28zM30 13H24V12H22v1H2v6H22v1h2V19h6zM4 17V15H22v2zm24 0H24V15h4zM30 4H10V3H8V4H2v6H8v1h2V10H30zM4 8V6H8V8zM28 8H10V6H28z" })), children); }); { ChartBullet.propTypes = iconPropTypes; } var ChartCandlestick = /*#__PURE__*/React__default["default"].forwardRef(function ChartCandlestick(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$d || (_path17$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 10H24V6H22v4H20V22h2v4h2V22h2zM24 20H22V12h2zM14 8H12V4H10V8H8V18h2v4h2V18h2zm-2 8H10V10h2z" })), _path18$d || (_path18$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), children); }); { ChartCandlestick.propTypes = iconPropTypes; } var ChartClusterBar = /*#__PURE__*/React__default["default"].forwardRef(function ChartClusterBar(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$d || (_path19$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), _path20$d || (_path20$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 16H12V26H10zM7 22H9V26H7zM26 8H28V26H26zM23 14H25V26H23z" })), _path21$d || (_path21$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 12H17V26H15z", transform: "rotate(-180 16 19)" })), _path22$d || (_path22$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 18H20V26H18z", transform: "rotate(-180 19 22)" })), children); }); { ChartClusterBar.propTypes = iconPropTypes; } var ChartColumn = /*#__PURE__*/React__default["default"].forwardRef(function ChartColumn(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$d || (_path23$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,28V6H19V28H15V14H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V16h4Zm12,0H21V8h4Z" })), children); }); { ChartColumn.propTypes = iconPropTypes; } var ChartColumnFloating = /*#__PURE__*/React__default["default"].forwardRef(function ChartColumnFloating(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path24$d || (_path24$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 22H20V4h8zm-6-2h4V6H22zM16 24H8V10h8zm-6-2h4V12H10z" })), _path25$d || (_path25$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2.0021,2.0021,0,0,1-2-2V2H4V28H30Z" })), children); }); { ChartColumnFloating.propTypes = iconPropTypes; } var ChartColumnTarget = /*#__PURE__*/React__default["default"].forwardRef(function ChartColumnTarget(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$d || (_path26$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 28V6H19V28H15V14H7V28H4V2H2V28a2 2 0 002 2H30V28zM13 28H9V16h4zm12 0H21V8h4zM19 2H27V4H19z" })), _path27$d || (_path27$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 10H15V12H7z" })), children); }); { ChartColumnTarget.propTypes = iconPropTypes; } var ChartCombo = /*#__PURE__*/React__default["default"].forwardRef(function ChartCombo(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$d || (_path28$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,28V16H19V28H15V12H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V14h4Zm12,0H21V18h4Z" })), _path29$d || (_path29$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.7856,14a1.9877,1.9877,0,0,1-1.1787-.3865L11.2041,5.987,8.2419,10,6.6374,8.8065l2.9812-4a1.9978,1.9978,0,0,1,2.749-.446l10.4214,7.64,3.6045-4.8613L28,8.3306l-3.6045,4.8611A2.0014,2.0014,0,0,1,22.7856,14Z" })), children); }); { ChartCombo.propTypes = iconPropTypes; } var ChartComboStacked = /*#__PURE__*/React__default["default"].forwardRef(function ChartComboStacked(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$d || (_path30$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,28V16H19V28H15V12H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,14v6H9V14Zm12,4v6H21V18Z" })), _path31$d || (_path31$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.7856,14a1.9877,1.9877,0,0,1-1.1787-.3865L11.2041,5.987,8.2419,10,6.6374,8.8065l2.9812-4a1.9978,1.9978,0,0,1,2.749-.446l10.4214,7.64,3.6045-4.8613L28,8.3306l-3.6045,4.8611A2.0014,2.0014,0,0,1,22.7856,14Z" })), children); }); { ChartComboStacked.propTypes = iconPropTypes; } var ChartCustom = /*#__PURE__*/React__default["default"].forwardRef(function ChartCustom(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$d || (_path32$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z" })), _path33$d || (_path33$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 15H21V17H17z", transform: "rotate(-90 19 16)" })), _path34$d || (_path34$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 14H18V16H12z", transform: "rotate(-90 15 15)" })), _path35$d || (_path35$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 12H16V14H6z", transform: "rotate(-90 11 13)" })), _path36$d || (_path36$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" })), children); }); { ChartCustom.propTypes = iconPropTypes; } var ChartErrorBar = /*#__PURE__*/React__default["default"].forwardRef(function ChartErrorBar(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$d || (_path37$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,28V12H18V8h2V6H14V8h2v4H12V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM14,14h2v4H14Zm6,14H14V20h6Zm0-10H18V14h2Z" })), children); }); { ChartErrorBar.propTypes = iconPropTypes; } var ChartErrorBarAlt = /*#__PURE__*/React__default["default"].forwardRef(function ChartErrorBarAlt(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$d || (_path38$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 10V8H8v2h2v4.1836a2.983 2.983 0 000 5.6328V24H8v2h6V24H12V19.8164a2.983 2.983 0 000-5.6328V10zM26 6V4H20V6h2V8.1836a2.983 2.983 0 000 5.6328V18H20v2h6V18H24V13.8164a2.983 2.983 0 000-5.6328V6z" })), _path39$d || (_path39$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), children); }); { ChartErrorBarAlt.propTypes = iconPropTypes; } var ChartEvaluation = /*#__PURE__*/React__default["default"].forwardRef(function ChartEvaluation(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$d || (_path40$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.672 6.207H29.915V8.206H25.672z", transform: "rotate(-45.02 27.793 7.207)" })), _path41$d || (_path41$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 20.5L11 15.539 12.59 13.969 16 17.349 23.41 10 25 11.579 16 20.5z" })), _path42$d || (_path42$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V25.4131L10.4141,19,9,17.585l-5,5V2H2V28a2,2,0,0,0,2,2H30V28Z" })), children); }); { ChartEvaluation.propTypes = iconPropTypes; } var ChartHighLow = /*#__PURE__*/React__default["default"].forwardRef(function ChartHighLow(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$d || (_path43$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 8L12 8 12 6 10 6 10 20 7 20 7 22 10 22 10 24 12 24 12 10 15 10 15 8zM27 10L24 10 24 6 22 6 22 18 19 18 19 20 22 20 22 24 24 24 24 12 27 12 27 10z" })), _path44$d || (_path44$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), children); }); { ChartHighLow.propTypes = iconPropTypes; } var ChartHistogram = /*#__PURE__*/React__default["default"].forwardRef(function ChartHistogram(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$d || (_path45$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,16c2.9727,0,4.2324-2.251,5.3447-4.2373C12.4741,9.7441,13.45,8,16,8s3.5259,1.7441,4.6553,3.7627C21.7676,13.749,23.0273,16,26,16h4V14H26c-1.7129,0-2.4834-1.2207-3.5991-3.2144C21.2075,8.6543,19.7231,6,16,6s-5.2075,2.6543-6.4009,4.7856C8.4834,12.7793,7.7129,14,6,14H4V2H2V28a2,2,0,0,0,2,2H30V28H28V22H26v6H21.9992L22,20H20v8H16V16H14V28H9.9992L10,20H8v8H4V16Z" })), children); }); { ChartHistogram.propTypes = iconPropTypes; } var ChartLine = /*#__PURE__*/React__default["default"].forwardRef(function ChartLine(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$d || (_path46$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.67,28l6.39-12,7.3,6.49a2,2,0,0,0,1.7.47,2,2,0,0,0,1.42-1.07L27,10.9,25.18,10,19.69,21l-7.3-6.49A2,2,0,0,0,10.71,14a2,2,0,0,0-1.42,1L4,25V2H2V28a2,2,0,0,0,2,2H30V28Z" })), children); }); { ChartLine.propTypes = iconPropTypes; } var ChartLineData = /*#__PURE__*/React__default["default"].forwardRef(function ChartLineData(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$d || (_path47$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.06,17.88A4.25,4.25,0,0,0,11,18a4,4,0,0,0,2.23-.68l3.22,2.87a3.88,3.88,0,0,0-.2,3.17A4,4,0,1,0,22.62,19l2.54-5.09a3.78,3.78,0,0,0,2.91-.53A4,4,0,1,0,23.38,13l-2.54,5.09A3.86,3.86,0,0,0,20,18a4,4,0,0,0-2.23.68l-3.22-2.87a3.88,3.88,0,0,0,.2-3.17A4,4,0,1,0,8.3,16.93L4,25V2H2V28a2,2,0,0,0,2,2H30V28H4.67ZM26,8a2,2,0,1,1-2,2A2,2,0,0,1,26,8ZM22,22a2,2,0,1,1-2-2A2,2,0,0,1,22,22ZM11,12a2,2,0,1,1-2,2A2,2,0,0,1,11,12Z" })), children); }); { ChartLineData.propTypes = iconPropTypes; } var ChartLineSmooth = /*#__PURE__*/React__default["default"].forwardRef(function ChartLineSmooth(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48$d || (_path48$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,15c1.4854,0,2.5544,1.4966,3.6863,3.0811C17.9983,19.918,19.4854,22,22,22c5.6709,0,7.78-10.79,8-12l-1.9678-.3584C27.55,12.2827,25.3938,20,22,20c-1.4854,0-2.5544-1.4966-3.6863-3.0811C17.0017,15.082,15.5146,13,13,13c-4.186,0-7.4448,7.4043-9,11.7617V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H5.0439C6.5544,22.8574,9.9634,15,13,15Z" })), children); }); { ChartLineSmooth.propTypes = iconPropTypes; } var ChartMarimekko = /*#__PURE__*/React__default["default"].forwardRef(function ChartMarimekko(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$d || (_path49$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,7H21V5h6ZM19,8H13V5h6Zm0,2v8H13V10ZM11,22H5V12h6Zm2-2h6v7H13Zm8-8h6v4H21ZM11,5v5H5V5ZM5,24h6v3H5Zm16,3V18h6v9Z" })), children); }); { ChartMarimekko.propTypes = iconPropTypes; } var ChartMaximum = /*#__PURE__*/React__default["default"].forwardRef(function ChartMaximum(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$d || (_path50$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 6H10V8H8zM12 6H14V8H12zM20 6H22V8H20zM24 6H26V8H24zM28 6H30V8H28z" })), _path51$d || (_path51$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.989,28l-.0271-.1631C26.5105,19.0742,24.0662,9.0894,18,8.0889V6H16V8.085c-6.084.978-8.533,10.9775-9.9863,19.7519L5.9866,28H4V8H6V6H4V2H2V28a2,2,0,0,0,2,2H30V28ZM8.0151,28c2.024-12.1084,4.959-18,8.9727-18s6.9487,5.8916,8.9726,18Z" })), children); }); { ChartMaximum.propTypes = iconPropTypes; } var ChartMedian = /*#__PURE__*/React__default["default"].forwardRef(function ChartMedian(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$d || (_path52$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22H18V24H16z", transform: "rotate(-90 17 23)" })), _path53$d || (_path53$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28V26H16v2H4V2H2V28a2,2,0,0,0,2,2H30V28Z" })), _path54$d || (_path54$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.0532,19.6787A3.44,3.44,0,0,1,23,22c-2.17,0-3.3115-3.333-4.52-6.8623-.3557-1.0386-.7239-2.1094-1.1382-3.1377H18V10H16.4221C15.2124,7.7148,13.5811,6,11,6,7.3218,6,6.1016,9.5332,6.0513,9.6836l1.8955.6377A3.44,3.44,0,0,1,11,8c2.92,0,4.2764,3.958,5.5874,7.7861.2544.7422.5105,1.4893.7813,2.2139H16v2h2.2019c1.0828,2.2886,2.4959,4,4.7981,4,3.6782,0,4.8984-3.5332,4.9487-3.6836Z" })), _path55$d || (_path55$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 6H18V8H16z", transform: "rotate(-90 17 7)" })), _path56$d || (_path56$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 2H18V4H16z", transform: "rotate(-90 17 3)" })), children); }); { ChartMedian.propTypes = iconPropTypes; } var ChartMinimum = /*#__PURE__*/React__default["default"].forwardRef(function ChartMinimum(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$d || (_path57$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V26H6V24H4V2H2V28a2,2,0,0,0,2,2H30V28Z" })), _path58$d || (_path58$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 24H10V26H8zM12 24H14V26H12zM20 24H22V26H20zM24 24H26V26H24zM28 24H30V26H28z" })), _path59$d || (_path59$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.9463,4.3281,25.9727,4C23.9487,16.1084,21.0137,22,17,22S10.0513,16.1084,8.0271,4l-1.9734.3281C7.51,13.0566,9.9631,22.93,16,23.9131V26h2V23.9131C24.0371,22.93,26.4907,13.0566,27.9463,4.3281Z" })), children); }); { ChartMinimum.propTypes = iconPropTypes; } var ChartMultiLine = /*#__PURE__*/React__default["default"].forwardRef(function ChartMultiLine(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$d || (_path60$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.5859,28l7.1783-5.998L19.7578,23.94a2.021,2.021,0,0,0,1.314-.1206L28,20.5811l-.8479-1.8121-6.9163,3.229L12.2422,20.06a2.0033,2.0033,0,0,0-1.74.3838L4,25.8818V20.49l7.7642-6.4877L19.7578,15.94a2.021,2.021,0,0,0,1.314-.1206l6.9287-3.2383-.8467-1.812-6.918,3.2285L12.2422,12.06a2.0049,2.0049,0,0,0-1.74.3838L4,17.8818V12.49L11.7642,6.002,19.7578,7.94a2.021,2.021,0,0,0,1.314-.1206L28,4.5859l-.8457-1.8115L20.2358,5.998,12.2422,4.06a2.0033,2.0033,0,0,0-1.74.3838L4,9.8818V2H2V28a2,2,0,0,0,2,2H30V28Z" })), children); }); { ChartMultiLine.propTypes = iconPropTypes; } var ChartMultitype = /*#__PURE__*/React__default["default"].forwardRef(function ChartMultitype(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$d || (_path61$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 22H30V30H28zM24 18H26V30H24zM20 26H22V30H20zM9 16a7 7 0 107 7A7.0078 7.0078 0 009 16zm4.8989 6H10V18.1011A5.0145 5.0145 0 0113.8989 22zM9 28a5 5 0 01-1-9.8989V22a2 2 0 002 2h3.8989A5.0081 5.0081 0 019 28zM22.5352 12l4-6H30V4H25.4648l-4 6H18V2H16V14a2 2 0 002 2H30V14H18V12z" })), _circle$d || (_circle$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "7", r: "1" })), _circle2$d || (_circle2$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "11", r: "1" })), _circle3$d || (_circle3$d = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "5", r: "1" })), _circle4$c || (_circle4$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "5", cy: "9", r: "1" })), _circle5$c || (_circle5$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "13", r: "1" })), children); }); { ChartMultitype.propTypes = iconPropTypes; } var ChartNetwork = /*#__PURE__*/React__default["default"].forwardRef(function ChartNetwork(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$d || (_path62$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h2v4.1A5,5,0,0,0,18.1,22H14V20a2,2,0,0,0-2-2H10V13.9a5,5,0,1,0-2,0V18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V24h4.1A5,5,0,1,0,24,18.1V14ZM6,9a3,3,0,1,1,3,3A3,3,0,0,1,6,9Zm6,17H6V20h6Zm14-3a3,3,0,1,1-3-3A3,3,0,0,1,26,23ZM20,6h6v6H20Z" })), children); }); { ChartNetwork.propTypes = iconPropTypes; } var ChartParallel = /*#__PURE__*/React__default["default"].forwardRef(function ChartParallel(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63$d || (_path63$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2V5.3071l-6,2.25V2H20V7.5229l-8-3.2V2H10V4.4458l-6,3.75V2H2V30H4V27.6182l6-3V30h2V24.3442l8,2.4V30h2V26.5542l6-3.75V30h2V2Zm0,5.4429V12.5L22,17V9.6929ZM20,9.6768v7.5571l-8-4.8V6.4771ZM10,6.8042v5.7417l-6,5.25V10.5542ZM4,25.3818V20.4541l6-5.25v7.1777Zm8-3.1259v-7.49l8,4.8v5.0894Zm10,1.94V19.5L28,15v5.4458Z" })), children); }); { ChartParallel.propTypes = iconPropTypes; } var ChartPie = /*#__PURE__*/React__default["default"].forwardRef(function ChartPie(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$d || (_path64$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4ZM26,15H17V6.05A10,10,0,0,1,26,15ZM15.42,26A10,10,0,0,1,15,6.05v9a2,2,0,0,0,2,2h9A10,10,0,0,1,15.42,26Z" })), children); }); { ChartPie.propTypes = iconPropTypes; } var ChartPoint = /*#__PURE__*/React__default["default"].forwardRef(function ChartPoint(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$d || (_path65$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2.0023,2.0023,0,0,1-2-2V2H4V28H30Z" })), _circle6$c || (_circle6$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "6", r: "3" })), _circle7$c || (_circle7$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "22", r: "3" })), _circle8$c || (_circle8$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "14", r: "3" })), _path66$d || (_path66$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,17a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,9,17Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,9,13Z" })), _circle9$c || (_circle9$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "27", cy: "6", r: "3" })), _circle10$b || (_circle10$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "27", cy: "22", r: "3" })), _path67$d || (_path67$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 17a3 3 0 113-3A3.0033 3.0033 0 0127 17zm0-4a1 1 0 101 1A1.001 1.001 0 0027 13zM18 26a3 3 0 113-3A3.0033 3.0033 0 0118 26zm0-4a1 1 0 101 1A1.001 1.001 0 0018 22zM18 8a3 3 0 113-3A3.0033 3.0033 0 0118 8zm0-4a1 1 0 101 1A1.001 1.001 0 0018 4z" })), children); }); { ChartPoint.propTypes = iconPropTypes; } var ChartPopulation = /*#__PURE__*/React__default["default"].forwardRef(function ChartPopulation(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$d || (_path68$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,22H17V20h9V14H17V12h5V6H17V2H15V6H10v6h5v2H6v6h9v2H2v6H15v2h2V28H30ZM20,8v2H17V8Zm-8,2V8h3v2Zm12,6v2H17V16ZM8,18V16h7v2ZM4,26V24H15v2Zm24,0H17V24H28Z" })), children); }); { ChartPopulation.propTypes = iconPropTypes; } var ChartRadar = /*#__PURE__*/React__default["default"].forwardRef(function ChartRadar(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$d || (_path69$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2,2,13,8,30H24l6-17Zm2.5818,19.2651-5.9861,1.3306-1.4226-7.8252,4.91-4.209,5.4416,4.0816Zm.1977,2.0054L21.3264,28H10.6736l1.7912-3.3267ZM9.59,13.4937,5.74,12.605,15,5.3291V8.8569ZM17,8.75V5.3291l9.26,7.2759-3.15.727ZM4.6143,14.3979l4.6535,1.0738,1.4844,8.164-1.738,3.2281ZM22.9858,26.8638l-2.5766-4.7852,3.0063-6.7646,3.97-.9161Z" })), children); }); { ChartRadar.propTypes = iconPropTypes; } var ChartRadial = /*#__PURE__*/React__default["default"].forwardRef(function ChartRadial(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$d || (_path70$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12,12,0,1,0,16,4V2a14,14,0,0,1,0,28Z" })), _path71$d || (_path71$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,26A10.0115,10.0115,0,0,1,6,16H8a8,8,0,1,0,8-8V6a10,10,0,0,1,0,20Z" })), _path72$d || (_path72$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6.0069,6.0069,0,0,1-6-6h2a4,4,0,1,0,4-4V10a6,6,0,0,1,0,12Z" })), children); }); { ChartRadial.propTypes = iconPropTypes; } var ChartRelationship = /*#__PURE__*/React__default["default"].forwardRef(function ChartRelationship(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$d || (_path73$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,6a3.9963,3.9963,0,0,0-3.8579,3H17.9305A7.9964,7.9964,0,1,0,9,17.9307v4.2114a4,4,0,1,0,2,0V17.9307a7.951,7.951,0,0,0,3.8976-1.6192l3.6693,3.67A3.9529,3.9529,0,0,0,18,22a4,4,0,1,0,4-4,3.9521,3.9521,0,0,0-2.019.5669l-3.6694-3.6694A7.9493,7.9493,0,0,0,17.9305,11h4.2116A3.9934,3.9934,0,1,0,26,6ZM12,26a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,12,26ZM10,16a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,10,16Zm14,6a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,24,22Zm2-10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,12Z" })), children); }); { ChartRelationship.propTypes = iconPropTypes; } var ChartRing = /*#__PURE__*/React__default["default"].forwardRef(function ChartRing(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path74$d || (_path74$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM27.9493,15.001H21.91a5.9825,5.9825,0,0,0-9.3806-3.8853l-4.27-4.27a11.9783,11.9783,0,0,1,19.69,8.1548ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20ZM4,16A11.937,11.937,0,0,1,6.8455,8.26l4.27,4.2695A5.9836,5.9836,0,0,0,15,21.9106v6.04A12.0105,12.0105,0,0,1,4,16ZM17,27.95v-6.04A6.0069,6.0069,0,0,0,21.91,17h6.04A12.0082,12.0082,0,0,1,17,27.95Z" })), children); }); { ChartRing.propTypes = iconPropTypes; } var ChartRiver = /*#__PURE__*/React__default["default"].forwardRef(function ChartRiver(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$d || (_path75$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4326,20.0171l8.0376,4.68a1.958,1.958,0,0,0,1.0508.3012,2.2412,2.2412,0,0,0,.4888-.0556l7.2532-1.9769A1,1,0,0,0,30,22.0007V7.996A1,1,0,0,0,28.74,7.0305L21.5034,8.9829l-8.0371-4.68a1.9917,1.9917,0,0,0-1.8652-.1352L4,7.4727V2H2V28a2,2,0,0,0,2,2H30V28H4V23.6577ZM28,21.2344l-6.4966,1.75-8.0371-4.68a1.9931,1.9931,0,0,0-1.8652-.1353L4,21.4746V16.6572l8.4326-3.6416L20.47,17.6968a1.962,1.962,0,0,0,1.0508.3008,2.2112,2.2112,0,0,0,.4888-.0557L28,16.31ZM12.4326,6.0156l8.0376,4.68a2.0091,2.0091,0,0,0,1.54.2451L28,9.3081v4.9258l-6.4966,1.7505-8.0371-4.6812a1.9917,1.9917,0,0,0-1.8652-.1352L4,14.4736V9.6562Z" })), children); }); { ChartRiver.propTypes = iconPropTypes; } var ChartRose = /*#__PURE__*/React__default["default"].forwardRef(function ChartRose(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$d || (_path76$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,17A15.017,15.017,0,0,0,15,2H14V8.0591A9.0122,9.0122,0,0,0,6.0591,16H4v1A11.0109,11.0109,0,0,0,14,27.9492V30h1A13.0084,13.0084,0,0,0,27.9492,18H30ZM16,4.0381A13.0217,13.0217,0,0,1,27.9619,16H16ZM14,10.08V16H8.08A7.0037,7.0037,0,0,1,14,10.08ZM6.0552,18H14v7.939A9.0134,9.0134,0,0,1,6.0552,18ZM16,27.9551V18h9.9551A11.0191,11.0191,0,0,1,16,27.9551Z" })), children); }); { ChartRose.propTypes = iconPropTypes; } var ChartScatter = /*#__PURE__*/React__default["default"].forwardRef(function ChartScatter(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$d || (_path77$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), _circle11$b || (_circle11$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "22", r: "2" })), _circle12$a || (_circle12$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "15", r: "2" })), _circle13$9 || (_circle13$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "15", r: "2" })), _circle14$8 || (_circle14$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "6", r: "2" })), _circle15$8 || (_circle15$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "8", r: "2" })), children); }); { ChartScatter.propTypes = iconPropTypes; } var ChartSpiral = /*#__PURE__*/React__default["default"].forwardRef(function ChartSpiral(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$d || (_path78$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.919,13.919,0,0,0,7.3245,5.0327,1.9728,1.9728,0,0,0,7,5,2,2,0,0,0,5,7a1.9752,1.9752,0,0,0,.0327.3247A13.986,13.986,0,1,0,16,2Zm0,26A11.977,11.977,0,0,1,6.3589,8.8857a1.8311,1.8311,0,0,0,1.1528.04l1.4634,1.4634a8.9862,8.9862,0,0,0,11.8311,13.207,1.9916,1.9916,0,0,0,2.79-2.79,8.9294,8.9294,0,0,0,0-9.6124,1.9916,1.9916,0,0,0-2.79-2.79,8.9445,8.9445,0,0,0-10.417.5713L8.9258,7.5117a1.8294,1.8294,0,0,0-.04-1.1528A11.9925,11.9925,0,1,1,16,28Zm0-14a2,2,0,1,1-2,2A2.0025,2.0025,0,0,1,16,14Zm3.4331-.019,2.0552-2.0552a2.0443,2.0443,0,0,0,.2265.0454,6.9573,6.9573,0,0,1,0,8.0576,2.0443,2.0443,0,0,0-.2265.0454L19.4331,18.019a3.8788,3.8788,0,0,0,0-4.038Zm.5957-3.6958a1.9993,1.9993,0,0,0,.0454.2265L18.019,12.5669a3.8788,3.8788,0,0,0-4.038,0l-2.1653-2.1655a6.9522,6.9522,0,0,1,8.2131-.1162ZM12.5669,13.981A3.951,3.951,0,0,0,12,16a4.0045,4.0045,0,0,0,4,4,3.9521,3.9521,0,0,0,2.019-.5669l2.0552,2.0552a1.9993,1.9993,0,0,0-.0454.2265,6.988,6.988,0,0,1-9.6272-9.8994Z" })), children); }); { ChartSpiral.propTypes = iconPropTypes; } var ChartStacked = /*#__PURE__*/React__default["default"].forwardRef(function ChartStacked(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$d || (_path79$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28V6H20V28H16V14H8V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM22,8h4V18H22ZM10,16h4v6H10Z" })), children); }); { ChartStacked.propTypes = iconPropTypes; } var ChartStepper = /*#__PURE__*/React__default["default"].forwardRef(function ChartStepper(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$d || (_path80$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,22V14h8V6h8V4H20v8H12v8H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V22Z" })), children); }); { ChartStepper.propTypes = iconPropTypes; } var ChartSunburst = /*#__PURE__*/React__default["default"].forwardRef(function ChartSunburst(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$d || (_path81$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2a1,1,0,0,0-1,1v7.09a5.9618,5.9618,0,0,0-2.46,1.043L7.8384,6.4311a1.4554,1.4554,0,0,0-2.087.0244A14.05,14.05,0,0,0,9.8047,28.5972a10.8482,10.8482,0,0,0,1.8989.7676,14.0982,14.0982,0,0,0,13.8443-3.1319,1.4336,1.4336,0,0,0,.0278-2.0639L20.877,19.47A5.963,5.963,0,0,0,21.91,17H29a1,1,0,0,0,1-1A14.0158,14.0158,0,0,0,16,2Zm0,10a4,4,0,1,1-4,4A4.0045,4.0045,0,0,1,16,12ZM6.83,8.251l4.2959,4.2959a5.91,5.91,0,0,0-.0113,6.9243L6.8381,23.7481A12.0168,12.0168,0,0,1,6.83,8.251Zm1.4228,16.91,4.2759-4.2759A5.9589,5.9589,0,0,0,15,21.91v6.042A11.8783,11.8783,0,0,1,8.2529,25.1612ZM17,27.9561V21.9092a5.9631,5.9631,0,0,0,2.4609-1.0273l4.2818,4.2817A11.8905,11.8905,0,0,1,17,27.9561ZM21.91,15A6.0063,6.0063,0,0,0,17,10.09V4.041A12.0208,12.0208,0,0,1,27.9585,15Z" })), children); }); { ChartSunburst.propTypes = iconPropTypes; } var ChartTSne = /*#__PURE__*/React__default["default"].forwardRef(function ChartTSne(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle16$8 || (_circle16$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "20", r: "2" })), _circle17$7 || (_circle17$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle18$6 || (_circle18$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "14", r: "2" })), _circle19$6 || (_circle19$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "4", r: "2" })), _circle20$6 || (_circle20$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "6", r: "2" })), _circle21$5 || (_circle21$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "10", r: "2" })), _circle22$5 || (_circle22$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "12", r: "2" })), _circle23$5 || (_circle23$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "22", r: "2" })), _circle24$5 || (_circle24$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "28", r: "2" })), _circle25$5 || (_circle25$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "26", r: "2" })), _circle26$5 || (_circle26$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "20", r: "2" })), _circle27$5 || (_circle27$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "4", r: "2" })), _circle28$5 || (_circle28$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "24", r: "2" })), _circle29$5 || (_circle29$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "16", r: "2" })), children); }); { ChartTSne.propTypes = iconPropTypes; } var ChartTreemap = /*#__PURE__*/React__default["default"].forwardRef(function ChartTreemap(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$d || (_path82$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2.0023,2.0023,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,12H23V4h5ZM16,4h5V14H16ZM14,4V20H4V4ZM4,22H14v6H4Zm12,6V16H28V28Z" })), children); }); { ChartTreemap.propTypes = iconPropTypes; } var ChartVennDiagram = /*#__PURE__*/React__default["default"].forwardRef(function ChartVennDiagram(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$d || (_path83$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,6a9.92,9.92,0,0,0-4,.84A9.92,9.92,0,0,0,12,6a10,10,0,0,0,0,20,9.92,9.92,0,0,0,4-.84A9.92,9.92,0,0,0,20,26,10,10,0,0,0,20,6ZM12,24A8,8,0,0,1,12,8a7.91,7.91,0,0,1,1.76.2,10,10,0,0,0,0,15.6A7.91,7.91,0,0,1,12,24Zm8-8a8,8,0,0,1-4,6.92A8,8,0,0,1,16,9.08,8,8,0,0,1,20,16Zm0,8a7.91,7.91,0,0,1-1.76-.2,10,10,0,0,0,0-15.6A7.91,7.91,0,0,1,20,8a8,8,0,0,1,0,16Z" })), children); }); { ChartVennDiagram.propTypes = iconPropTypes; } var ChartViolinPlot = /*#__PURE__*/React__default["default"].forwardRef(function ChartViolinPlot(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$d || (_path84$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" })), _path85$d || (_path85$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.86 7.8232L13 4.7231V2H11V4.7231l-1.86 3.1A7.9986 7.9986 0 008 11.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V19.2769l1.86-3.1A7.9986 7.9986 0 0016 12.061v-.122A7.9961 7.9961 0 0014.86 7.8232zM12 6.9434l1.145 1.9087A6.0027 6.0027 0 0113.9185 11h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0110.0815 13h3.837a6.0086 6.0086 0 01-.7735 2.1484zM27.86 11.8232L26 8.7231V2H24V8.7231l-1.86 3.1A7.9986 7.9986 0 0021 15.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V23.2769l1.86-3.1A7.9986 7.9986 0 0029 16.061v-.122A7.9961 7.9961 0 0027.86 11.8232zm-2.86-.88l1.145 1.9087A6.0027 6.0027 0 0126.9185 15h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0123.0815 17h3.837a6.0086 6.0086 0 01-.7735 2.1484z" })), children); }); { ChartViolinPlot.propTypes = iconPropTypes; } var ChartWaterfall = /*#__PURE__*/React__default["default"].forwardRef(function ChartWaterfall(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$d || (_path86$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z" })), _path87$d || (_path87$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 4H16V18H14z" })), children); }); { ChartWaterfall.propTypes = iconPropTypes; } var ChartWinLoss = /*#__PURE__*/React__default["default"].forwardRef(function ChartWinLoss(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$d || (_path88$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H16V6a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,6v9H2v2H16v9a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V17h2ZM6,6h8v9H6ZM26,26H18V17h8Z" })), children); }); { ChartWinLoss.propTypes = iconPropTypes; } var Chat = /*#__PURE__*/React__default["default"].forwardRef(function Chat(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$d || (_path89$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.74,30,16,29l4-7h6a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2H6A2,2,0,0,0,4,8V20a2,2,0,0,0,2,2h9v2H6a4,4,0,0,1-4-4V8A4,4,0,0,1,6,4H26a4,4,0,0,1,4,4V20a4,4,0,0,1-4,4H21.16Z" })), _path90$d || (_path90$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H24V12H8zM8 16H18V18H8z" })), children); }); { Chat.propTypes = iconPropTypes; } var ChatLaunch = /*#__PURE__*/React__default["default"].forwardRef(function ChatLaunch(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$d || (_path91$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 4L22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4zM28 16v4a1.9965 1.9965 0 01-2 2H20l-4 7 1.7358 1 3.4288-6H26a3.9992 3.9992 0 004-4V16zM4 20V8A1.9965 1.9965 0 016 6H18V4H6A3.9986 3.9986 0 002 8V20a3.9992 3.9992 0 004 4h9V22H6A1.9965 1.9965 0 014 20z" })), children); }); { ChatLaunch.propTypes = iconPropTypes; } var ChatOff = /*#__PURE__*/React__default["default"].forwardRef(function ChatOff(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$d || (_path92$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 8V21h2V8a3.9986 3.9986 0 00-4-4H8.2429l2 2H26A1.9965 1.9965 0 0128 8zM30 28.5859L3.4141 2 2 3.4141 3.5039 4.918A3.9181 3.9181 0 002 8V20a3.9992 3.9992 0 004 4h6V22H6a1.9965 1.9965 0 01-2-2V8a1.9814 1.9814 0 01.9194-1.6665L20.5859 22H17l-4 7 1.7358 1 3.4288-6h4.4213l6 6z" })), children); }); { ChatOff.propTypes = iconPropTypes; } var ChatOperational = /*#__PURE__*/React__default["default"].forwardRef(function ChatOperational(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$d || (_path93$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.586 10.414L19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z" })), _path94$d || (_path94$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.586 10.414L24.166 14 24.166 14 20.584 17.587 22 19 27 14 22 9 20.586 10.414zM10 9L11.593 12 15 12.414 12.5 14.667 13 18 10 16.125 7 18 7.5 14.667 5 12.414 8.5 12 10 9z" })), _path95$d || (_path95$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" })), children); }); { ChatOperational.propTypes = iconPropTypes; } var ChatBot = /*#__PURE__*/React__default["default"].forwardRef(function ChatBot(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$d || (_path96$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 19a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0116 19zM20 8a2 2 0 102 2A1.9806 1.9806 0 0020 8zM12 8a2 2 0 102 2A1.9806 1.9806 0 0012 8z" })), _path97$d || (_path97$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V6a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,6V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V6A3.9988,3.9988,0,0,1,6,2H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" })), children); }); { ChatBot.propTypes = iconPropTypes; } var Checkbox = /*#__PURE__*/React__default["default"].forwardRef(function Checkbox(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$d || (_path98$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" })), children); }); { Checkbox.propTypes = iconPropTypes; } var CheckboxChecked = /*#__PURE__*/React__default["default"].forwardRef(function CheckboxChecked(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$d || (_path99$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" })), _path100$d || (_path100$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 21.5L9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z" })), children); }); { CheckboxChecked.propTypes = iconPropTypes; } var CheckboxCheckedFilled = /*#__PURE__*/React__default["default"].forwardRef(function CheckboxCheckedFilled(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$d || (_path101$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z" })), _path102$d || (_path102$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z", "data-icon-path": "inner-path" })), children); }); { CheckboxCheckedFilled.propTypes = iconPropTypes; } var CheckboxIndeterminate = /*#__PURE__*/React__default["default"].forwardRef(function CheckboxIndeterminate(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path103$d || (_path103$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 14H22V18H10z" })), _path104$d || (_path104$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" })), children); }); { CheckboxIndeterminate.propTypes = iconPropTypes; } var CheckboxIndeterminateFilled = /*#__PURE__*/React__default["default"].forwardRef(function CheckboxIndeterminateFilled(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$d || (_path105$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM22,18H10V14H22Z" })), _path106$d || (_path106$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22,18H10V14H22Z", "data-icon-path": "inner-path" })), children); }); { CheckboxIndeterminateFilled.propTypes = iconPropTypes; } var Checkmark = /*#__PURE__*/React__default["default"].forwardRef(function Checkmark(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$d); if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path107$d || (_path107$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z" })), _path108$d || (_path108$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path109$d || (_path109$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 15.9L4.7 10.6 3.6 11.6 8.9 16.9 10 18 20.6 7.4 19.5 6.3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$d || (_path110$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z" })), children); }); { Checkmark.propTypes = iconPropTypes; } var CheckmarkFilled = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkFilled(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path111$d || (_path111$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z" })), _path112$d || (_path112$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path113$d || (_path113$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z" })), _path114$d || (_path114$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path115$d || (_path115$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z" })), _path116$d || (_path116$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z", "data-icon-path": "inner-path", opacity: "0" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$d || (_path117$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z" })), _path118$d || (_path118$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z", "data-icon-path": "inner-path" })), children); }); { CheckmarkFilled.propTypes = iconPropTypes; } var CheckmarkFilledError = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkFilledError(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$d || (_path119$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path120$d || (_path120$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,2a12,12,0,1,0,2,23.82V24a8,8,0,0,1,8-8h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z" })), _path121$d || (_path121$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z", "data-icon-path": "inner-path" })), children); }); { CheckmarkFilledError.propTypes = iconPropTypes; } var CheckmarkFilledWarning = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkFilledWarning(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$d || (_path122$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,2a12,12,0,1,0,3.3928,23.5059l3.9246-7.8492A2.9846,2.9846,0,0,1,24,16h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z" })), _path123$d || (_path123$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path124$d || (_path124$d = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z", "data-icon-path": "inner-path" })), children); }); { CheckmarkFilledWarning.propTypes = iconPropTypes; } var CheckmarkOutline = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkOutline(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$d || (_path125$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z" })), _path126$d || (_path126$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { CheckmarkOutline.propTypes = iconPropTypes; } var CheckmarkOutlineError = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkOutlineError(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$d || (_path127$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" })), _path128$d || (_path128$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM30 24a6 6 0 10-6 6A6.0066 6.0066 0 0030 24zm-2 0a3.9521 3.9521 0 01-.5669 2.019L21.981 20.5669A3.9529 3.9529 0 0124 20 4.0045 4.0045 0 0128 24zm-8 0a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0124 28 4.0045 4.0045 0 0120 24z" })), children); }); { CheckmarkOutlineError.propTypes = iconPropTypes; } var CheckmarkOutlineWarning = /*#__PURE__*/React__default["default"].forwardRef(function CheckmarkOutlineWarning(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$d || (_path129$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" })), _path130$d || (_path130$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM27.38 28H20.6178L24 21.2358zM24 18a1 1 0 00-.8947.5527l-5 10A1.0005 1.0005 0 0019 30H29a1 1 0 00.9214-1.3892L24.8946 18.5527A1 1 0 0024 18z" })), children); }); { CheckmarkOutlineWarning.propTypes = iconPropTypes; } var Chemistry = /*#__PURE__*/React__default["default"].forwardRef(function Chemistry(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$d || (_path131$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.2314,23.6182,20,13.6748V4h2V2H10V4h2v9.6748L4.7686,23.6182A4.0183,4.0183,0,0,0,8.0186,30H23.9814a4.0183,4.0183,0,0,0,3.25-6.3818ZM14,14.3252V4h4V14.3252L20.6728,18H11.3272ZM23.9814,28H8.0186a2.0192,2.0192,0,0,1-1.6329-3.2061L9.8726,20H22.1274l3.4869,4.7939A2.0192,2.0192,0,0,1,23.9814,28Z" })), children); }); { Chemistry.propTypes = iconPropTypes; } var ChemistryReference = /*#__PURE__*/React__default["default"].forwardRef(function ChemistryReference(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$d || (_path132$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" })), _path133$d || (_path133$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,13.67V4h2V2H10V4h2v9.67L9.58,17h2.4767L14,14.33V4h4V14.33l7.61,10.46a2.0133,2.0133,0,0,1-.44,2.82,2.0406,2.0406,0,0,1-1.19.39H15v2h8.98a4.0154,4.0154,0,0,0,3.25-6.38Z" })), children); }); { ChemistryReference.propTypes = iconPropTypes; } var ChevronDown = /*#__PURE__*/React__default["default"].forwardRef(function ChevronDown(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 10 6", fill: "currentColor" }, rest), _path134$d || (_path134$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z" })), children); } if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path135$d || (_path135$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$d || (_path136$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z" })), children); }); { ChevronDown.propTypes = iconPropTypes; } var ChevronLeft = /*#__PURE__*/React__default["default"].forwardRef(function ChevronLeft(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 10", fill: "currentColor" }, rest), _path137$d || (_path137$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z" })), children); } if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path138$d || (_path138$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$d || (_path139$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z" })), children); }); { ChevronLeft.propTypes = iconPropTypes; } var ChevronMini = /*#__PURE__*/React__default["default"].forwardRef(function ChevronMini(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path140$d || (_path140$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 9L15 15 9 15z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$d || (_path141$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 19L31 31 19 31 31 19z" })), children); }); { ChevronMini.propTypes = iconPropTypes; } var ChevronRight = /*#__PURE__*/React__default["default"].forwardRef(function ChevronRight(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 10", fill: "currentColor" }, rest), _path142$d || (_path142$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z" })), children); } if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path143$d || (_path143$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$d || (_path144$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z" })), children); }); { ChevronRight.propTypes = iconPropTypes; } var ChevronSort = /*#__PURE__*/React__default["default"].forwardRef(function ChevronSort(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path145$d || (_path145$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5zM8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$d || (_path146$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 28L9 21 10.41 19.59 16 25.17 21.59 19.59 23 21 16 28zM16 4L23 11 21.59 12.41 16 6.83 10.41 12.41 9 11 16 4z" })), children); }); { ChevronSort.propTypes = iconPropTypes; } var ChevronSortDown = /*#__PURE__*/React__default["default"].forwardRef(function ChevronSortDown(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path147$d || (_path147$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$d || (_path148$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 28L9 21 10.4 19.6 16 25.2 21.6 19.6 23 21z" })), children); }); { ChevronSortDown.propTypes = iconPropTypes; } var ChevronSortUp = /*#__PURE__*/React__default["default"].forwardRef(function ChevronSortUp(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path149$d || (_path149$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$d || (_path150$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 4L23 11 21.6 12.4 16 6.8 10.4 12.4 9 11z" })), children); }); { ChevronSortUp.propTypes = iconPropTypes; } var ChevronUp = /*#__PURE__*/React__default["default"].forwardRef(function ChevronUp(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 10 6", fill: "currentColor" }, rest), _path151$d || (_path151$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 0L10 5 9.3 5.7 5 1.4 0.7 5.7 0 5z" })), children); } if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path152$d || (_path152$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$d || (_path153$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 10L26 20 24.6 21.4 16 12.8 7.4 21.4 6 20z" })), children); }); { ChevronUp.propTypes = iconPropTypes; } var Chip = /*#__PURE__*/React__default["default"].forwardRef(function Chip(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$d || (_path154$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,11V21H21V11Zm8,8H13V13h6Z" })), _path155$d || (_path155$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,13V11H26V8a2,2,0,0,0-2-2H21V2H19V6H13V2H11V6H8A2,2,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2,2,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2,2,0,0,0,2-2V21h4V19H26V13ZM24,24H8V8H24Z" })), children); }); { Chip.propTypes = iconPropTypes; } var Choices = /*#__PURE__*/React__default["default"].forwardRef(function Choices(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$d || (_path156$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13L28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13 6 7.414 15 16.414 15 26 4 26 4 28 28 28 28 26 17 26 17 16.414 26 7.414 26 13 28 13z" })), children); }); { Choices.propTypes = iconPropTypes; } var ChooseItem = /*#__PURE__*/React__default["default"].forwardRef(function ChooseItem(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$d || (_path157$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 6H30V26H28zM17 6L15.57 7.393 23.15 15 2 15 2 17 23.15 17 15.57 24.573 17 26 27 16 17 6z" })), children); }); { ChooseItem.propTypes = iconPropTypes; } var ChoroplethMap = /*#__PURE__*/React__default["default"].forwardRef(function ChoroplethMap(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$d || (_path158$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.2427,4.03l-8-2a1.0065,1.0065,0,0,0-.6143.0415l-9.7,3.88L3.2427,4.03A1,1,0,0,0,2,5V27a1,1,0,0,0,.7573.97l8,2A1.0244,1.0244,0,0,0,11,30a.9953.9953,0,0,0,.3716-.0718l9.7-3.88,7.686,1.9219A1,1,0,0,0,30,27V5A1,1,0,0,0,29.2427,4.03ZM28,11H22V4.2806l6,1.5ZM10,19H4V13h6Zm2-8V7.6771l8-3.2V11Zm8,2v6H12V13Zm-8,8h8v3.3227l-8,3.2Zm10-8h6v6H22ZM10,7.7806V11H4V6.2806ZM4,21h6v6.7192l-6-1.5Zm18,3.2187V21h6v4.7192Z" })), children); }); { ChoroplethMap.propTypes = iconPropTypes; } var CicsCmas = /*#__PURE__*/React__default["default"].forwardRef(function CicsCmas(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$d || (_path159$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.3335 30H26V28h4V26H28a2.002 2.002 0 01-2-2V21.6665A1.6684 1.6684 0 0127.6665 20H32v2H28v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0130.3335 30zM22.3335 20h-2.667A1.6665 1.6665 0 0018 21.6665V30h2V26h2v4h2V21.6665A1.6665 1.6665 0 0022.3335 20zM20 24V22h2v2zM12.5 24L11 20 9 20 9 30 11 30 11 23 12.5 27 14 23 14 30 16 30 16 20 14 20 12.5 24zM1 22v6.5A1.4727 1.4727 0 002.5 30H7V28H3V22H7V20H3A2.0059 2.0059 0 001 22zM13 8L11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11 13 11 13 8z" })), _path160$d || (_path160$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,6H26V18h2V6a2.0059,2.0059,0,0,0-2-2H6A2.0059,2.0059,0,0,0,4,6V18H6Z" })), children); }); { CicsCmas.propTypes = iconPropTypes; } var CicsExplorer = /*#__PURE__*/React__default["default"].forwardRef(function CicsExplorer(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$d || (_path161$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 16L19.4 14.6 21.7 10.3 17.4 12.6 16 8 14.6 12.6 10.3 10.3 12.6 14.6 8 16 12.6 17.4 10.3 21.7 14.6 19.4 16 24 17.4 19.4 21.7 21.7 19.4 17.4 24 16z" })), _path162$d || (_path162$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { CicsExplorer.propTypes = iconPropTypes; } var CicsSystemGroup = /*#__PURE__*/React__default["default"].forwardRef(function CicsSystemGroup(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$d || (_path163$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 2H23V4h5V28H23v2h5a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0028 2zM14 17H8a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V18A.9448.9448 0 0014 17zm-1 6H9V19h4z" })), _path164$d || (_path164$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 24V18a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6A1.0021 1.0021 0 0025 24zm-2-1H19V19h4zM14 7H8A.9448.9448 0 007 8v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V8A.9448.9448 0 0014 7zm-1 6H9V9h4zM18 15h6a.9448.9448 0 001-1V8a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6A1.0021 1.0021 0 0018 15zm1-6h4v4H19z" })), _path165$d || (_path165$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,4H9V2H4A2.0059,2.0059,0,0,0,2,4V28a2.0059,2.0059,0,0,0,2,2H9V28H4Z" })), children); }); { CicsSystemGroup.propTypes = iconPropTypes; } var CicsWuiRegion = /*#__PURE__*/React__default["default"].forwardRef(function CicsWuiRegion(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$d || (_path166$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 22L24 22 24 28 22 28 22 30 28 30 28 28 26 28 26 22 28 22 28 20 22 20 22 22zM18 28H16V20H14v8.6A1.4529 1.4529 0 0015.5 30h3A1.4529 1.4529 0 0020 28.6V20H18zM10.2 20L10 28.5 9 22 7 22 6 28.5 5.8 20 4 20 4.72 30 7 30 8 23.5 9 30 11.28 30 12 20 10.2 20zM16 11L13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11z" })), _path167$d || (_path167$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V18H6V6H26V18h2V6A2.0059,2.0059,0,0,0,26,4Z" })), children); }); { CicsWuiRegion.propTypes = iconPropTypes; } var CicsRegion = /*#__PURE__*/React__default["default"].forwardRef(function CicsRegion(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$d || (_path168$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5 18L21 18.7 21 16 19 16 19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18zM16 13L16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13z" })), _path169$d || (_path169$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,26,4ZM6,26V6H26V26Z" })), children); }); { CicsRegion.propTypes = iconPropTypes; } var CicsRegionRouting = /*#__PURE__*/React__default["default"].forwardRef(function CicsRegionRouting(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$d || (_path170$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 2L22 4 26.6 4 20 10.6 21.4 12 28 5.4 28 10 30 10 30 2 22 2zM19 16L19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z" })), _path171$d || (_path171$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z" })), children); }); { CicsRegionRouting.propTypes = iconPropTypes; } var CicsRegionTarget = /*#__PURE__*/React__default["default"].forwardRef(function CicsRegionTarget(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$d || (_path172$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 7H28V10H26zM29 4H32V6H29zM26 0H28V3H26zM22 4H25V6H22zM19 16L19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z" })), _path173$d || (_path173$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z" })), children); }); { CicsRegionTarget.propTypes = iconPropTypes; } var Cicsplex = /*#__PURE__*/React__default["default"].forwardRef(function Cicsplex(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$d || (_path174$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 18.6V17H6v1.6A7.3833 7.3833 0 0013.4 26H15V24H13.4A5.3775 5.3775 0 018 18.6zM28 18H20a2.0059 2.0059 0 00-2 2v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V20A2.0059 2.0059 0 0028 18zM20 28V20h8v8zM24 13.4V15h2V13.4A7.3833 7.3833 0 0018.6 6H17V8h1.6A5.3775 5.3775 0 0124 13.4zM12 2H4A2.0059 2.0059 0 002 4v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0012 2zM4 12V4h8v8z" })), children); }); { Cicsplex.propTypes = iconPropTypes; } var CircleFilled = /*#__PURE__*/React__default["default"].forwardRef(function CircleFilled(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle30$5 || (_circle30$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "10" })), _path175$d || (_path175$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { CircleFilled.propTypes = iconPropTypes; } var CircleSolid = /*#__PURE__*/React__default["default"].forwardRef(function CircleSolid(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle31$5 || (_circle31$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "14" })), children); }); { CircleSolid.propTypes = iconPropTypes; } var CircleDash = /*#__PURE__*/React__default["default"].forwardRef(function CircleDash(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$d || (_path176$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.7 4.7a14.7 14.7 0 00-3 3.1L6.3 9A13.26 13.26 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.51 12.51 0 002 16H4A11.48 11.48 0 014.6 12.3zM2.7 20.4a14.4 14.4 0 002 3.9l1.6-1.2a12.89 12.89 0 01-1.7-3.3zM7.8 27.3a14.4 14.4 0 003.9 2l.6-1.9A12.89 12.89 0 019 25.7zM11.7 2.7l.6 1.9A11.48 11.48 0 0116 4V2A12.51 12.51 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.53 11.53 0 0123 25.7zM27.4 19.7l1.9.6A15.47 15.47 0 0030 16H28A11.48 11.48 0 0127.4 19.7zM29.2 11.6a14.4 14.4 0 00-2-3.9L25.6 8.9a12.89 12.89 0 011.7 3.3zM24.1 4.6a14.4 14.4 0 00-3.9-2l-.6 1.9a12.89 12.89 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.48 11.48 0 0116 28v2A21.42 21.42 0 0020.3 29.3z" })), children); }); { CircleDash.propTypes = iconPropTypes; } var CircleFill = /*#__PURE__*/React__default["default"].forwardRef(function CircleFill(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _circle32$4 || (_circle32$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "8", r: "6" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _circle33$4 || (_circle33$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "8", r: "6" })), children); }); { CircleFill.propTypes = iconPropTypes; } var WatsonHealthCircleMeasurement = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCircleMeasurement(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$d || (_path177$d = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path178$d || (_path178$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,12.41V16h2V9H16v2h3.59L11,19.59V16H9v7h7V21H12.41Z" })), children); }); { WatsonHealthCircleMeasurement.propTypes = iconPropTypes; } var CirclePacking = /*#__PURE__*/React__default["default"].forwardRef(function CirclePacking(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$d || (_path179$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.5,7A3.5,3.5,0,1,1,20,12.5,3.5041,3.5041,0,0,1,23.5,9Zm.4348-1.978C23.791,7.0107,23.6467,7,23.5,7a5.4826,5.4826,0,0,0-4.1323,1.8784,8.0109,8.0109,0,0,0-5.5664-4.6675A11.8554,11.8554,0,0,1,23.9348,7.022ZM16,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,28ZM12,18a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,12,18ZM4,16a11.97,11.97,0,0,1,.2112-2.1987,7.9921,7.9921,0,0,0,7.3459,6.1762,5.9581,5.9581,0,0,0-.89,6.7564A12.0025,12.0025,0,0,1,4,16ZM21.3325,26.7339a5.9834,5.9834,0,0,0-4.1782-8.6206,8.02,8.02,0,0,0,1.9126-2.3672,5.4883,5.4883,0,0,0,8.9167-.0679c.003.1079.0164.2134.0164.3218A12.0025,12.0025,0,0,1,21.3325,26.7339Z" })), children); }); { CirclePacking.propTypes = iconPropTypes; } var CircleStroke = /*#__PURE__*/React__default["default"].forwardRef(function CircleStroke(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$d); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path180$d || (_path180$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path181$d || (_path181$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z" })), children); }); { CircleStroke.propTypes = iconPropTypes; } var QCircuitComposer = /*#__PURE__*/React__default["default"].forwardRef(function QCircuitComposer(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$d || (_path182$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 9L18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z" })), _path183$d || (_path183$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H26V6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6v9H2v2H6v9a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V17h4ZM8,26V6H24V26Z" })), children); }); { QCircuitComposer.propTypes = iconPropTypes; } var Classification = /*#__PURE__*/React__default["default"].forwardRef(function Classification(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle34$4 || (_circle34$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "19", r: "1" })), _path184$d || (_path184$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.7,9.3l-7-7A.9087.9087,0,0,0,20,2H10A2.0058,2.0058,0,0,0,8,4V14H6a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2H8v4a2.0058,2.0058,0,0,0,2,2H26a2.0058,2.0058,0,0,0,2-2V10A.9092.9092,0,0,0,27.7,9.3ZM20,4.4,25.6,10H20ZM6,16h9.5972L19,19l-3.3926,3H6ZM26,28H10V24h5.6089a2.0076,2.0076,0,0,0,1.3135-.4927l3.3833-2.9917a2.0015,2.0015,0,0,0,.01-3.0229l-3.4033-3.0083A1.9961,1.9961,0,0,0,15.6089,14H10V4h8v6a2.0058,2.0058,0,0,0,2,2h6Z" })), children); }); { Classification.propTypes = iconPropTypes; } var ClassifierLanguage = /*#__PURE__*/React__default["default"].forwardRef(function ClassifierLanguage(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$d || (_path185$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 10V2H22v8h3v4H23v2h7V14H27V10zM24 4h4V8H24zM20 23.41L18.59 22 16 24.59 13.41 22 12 23.41 14.59 26 12 28.59 13.41 30 16 27.41 18.59 30 20 28.59 17.41 26 20 23.41zM20 14L12 14 12 16 15 16 15 21 17 21 17 16 20 16 20 14zM7 9.86a4 4 0 10-2 0V14H2v2H9V14H7zM4 6A2 2 0 116 8 2 2 0 014 6z" })), children); }); { ClassifierLanguage.propTypes = iconPropTypes; } var Clean = /*#__PURE__*/React__default["default"].forwardRef(function Clean(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$d || (_path186$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 18H26V20H20z", transform: "rotate(-180 23 19)" })), _path187$d || (_path187$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 26H30V28H24z", transform: "rotate(-180 27 27)" })), _path188$d || (_path188$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 22H28V24H22z", transform: "rotate(-180 25 23)" })), _path189$d || (_path189$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.0029,20a4.8952,4.8952,0,0,0-2.4044-4.1729L22,3,20.2691,2,12.6933,15.126A5.6988,5.6988,0,0,0,7.45,16.6289C3.7064,20.24,3.9963,28.6821,4.01,29.04a1,1,0,0,0,1,.96H20.0012a1,1,0,0,0,.6-1.8C17.0615,25.5439,17.0029,20.0537,17.0029,20ZM11.93,16.9971A3.11,3.11,0,0,1,15.0041,20c0,.0381.0019.208.0168.4688L9.1215,17.8452A3.8,3.8,0,0,1,11.93,16.9971ZM15.4494,28A5.2,5.2,0,0,1,14,25H12a6.4993,6.4993,0,0,0,.9684,3H10.7451A16.6166,16.6166,0,0,1,10,24H8a17.3424,17.3424,0,0,0,.6652,4H6c.031-1.8364.29-5.8921,1.8027-8.5527l7.533,3.35A13.0253,13.0253,0,0,0,17.5968,28Z" })), children); }); { Clean.propTypes = iconPropTypes; } var Close = /*#__PURE__*/React__default["default"].forwardRef(function Close(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$d || (_path190$d = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z" })), children); }); { Close.propTypes = iconPropTypes; } var CloseFilled = /*#__PURE__*/React__default["default"].forwardRef(function CloseFilled(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$d); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path191$c || (_path191$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M10.7,11.5L8,8.8l-2.7,2.7l-0.8-0.8L7.2,8L4.5,5.3l0.8-0.8L8,7.2 l2.7-2.7l0.8,0.8L8.8,8l2.7,2.7L10.7,11.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$c || (_path192$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M21.4,23L16,17.6L10.6,23L9,21.4l5.4-5.4L9,10.6L10.6,9 l5.4,5.4L21.4,9l1.6,1.6L17.6,16l5.4,5.4L21.4,23z" })), _path193$c || (_path193$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.4 16L9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4 21.4 23 16 17.6 10.6 23 9 21.4 14.4 16", "data-icon-path": "inner-path", opacity: "0" })), children); }); { CloseFilled.propTypes = iconPropTypes; } var CloseOutline = /*#__PURE__*/React__default["default"].forwardRef(function CloseOutline(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$c || (_path194$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M16,28C9.4,28,4,22.6,4,16S9.4,4,16,4s12,5.4,12,12 S22.6,28,16,28z" })), _path195$b || (_path195$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4 23L16 17.6 10.6 23 9 21.4 14.4 16 9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4z" })), children); }); { CloseOutline.propTypes = iconPropTypes; } var ClosedCaption = /*#__PURE__*/React__default["default"].forwardRef(function ClosedCaption(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path196$a || (_path196$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 21H10a2 2 0 01-2-2V13a2 2 0 012-2h5v2H10v6h5zM25 21H20a2 2 0 01-2-2V13a2 2 0 012-2h5v2H20v6h5z" })), _path197$a || (_path197$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,8V24H28V8Z" })), children); }); { ClosedCaption.propTypes = iconPropTypes; } var ClosedCaptionAlt = /*#__PURE__*/React__default["default"].forwardRef(function ClosedCaptionAlt(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$a || (_path198$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 17H25V19H19zM11 17H17V19H11zM6 17H9V19H6zM22 13H26V15H22zM13 13H20V15H13zM6 13H11V15H6z" })), _path199$a || (_path199$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" })), children); }); { ClosedCaptionAlt.propTypes = iconPropTypes; } var ClosedCaptionFilled = /*#__PURE__*/React__default["default"].forwardRef(function ClosedCaptionFilled(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$a || (_path200$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,13H10v6h5v2H10a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm10,0H20v6h5v2H20a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Z" })), children); }); { ClosedCaptionFilled.propTypes = iconPropTypes; } var Cloud = /*#__PURE__*/React__default["default"].forwardRef(function Cloud(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$a || (_path201$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z" })), children); }); { Cloud.propTypes = iconPropTypes; } var CloudAlerting = /*#__PURE__*/React__default["default"].forwardRef(function CloudAlerting(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$a || (_path202$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,17v5H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z" })), _path203$a || (_path203$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,14H17a1,1,0,0,1-.8574-1.5144l6-10a1,1,0,0,1,1.7154,0l6,10A1,1,0,0,1,29,14ZM18.7661,12h8.4678L23,4.9436Z" })), children); }); { CloudAlerting.propTypes = iconPropTypes; } var CloudAuditing = /*#__PURE__*/React__default["default"].forwardRef(function CloudAuditing(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$a || (_path204$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" })), _path205$a || (_path205$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 15L16 10.04 17.59 8.47 21 11.85 28.41 4.5 30 6.08 21 15z" })), children); }); { CloudAuditing.propTypes = iconPropTypes; } var CloudDataOps = /*#__PURE__*/React__default["default"].forwardRef(function CloudDataOps(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path206$a || (_path206$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 18H30V28H28zM24 14H26V28H24zM20 22H22V28H20zM22.175 10L23.76 8.7339A9.9522 9.9522 0 0017.89 5.1816 10.0025 10.0025 0 006.17 13.1152 7.5054 7.5054 0 00.0544 21.4087 7.6843 7.6843 0 007.7692 28H16V26H7.6945a5.632 5.632 0 01-5.6023-4.4858 5.5064 5.5064 0 014.4339-6.4307l1.3486-.2441.2139-1.11a8.206 8.206 0 016.7426-6.6426 7.9666 7.9666 0 013.0137.13A7.8037 7.8037 0 0122.175 10z" })), children); }); { CloudDataOps.propTypes = iconPropTypes; } var CloudDownload = /*#__PURE__*/React__default["default"].forwardRef(function CloudDownload(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$a || (_path207$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" })), _path208$a || (_path208$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 26.17L17 14 15 14 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17z" })), children); }); { CloudDownload.propTypes = iconPropTypes; } var CloudLogging = /*#__PURE__*/React__default["default"].forwardRef(function CloudLogging(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$a || (_path209$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 16v6H4V6H15V4H4A2 2 0 002 6V22a2 2 0 002 2h8v4H8v2H24V28H20V24h8a2 2 0 002-2V16zM18 28H14V24h4zM18 4H30V6H18z" })), _path210$8 || (_path210$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 8H30V10H18zM18 12H24V14H18z" })), children); }); { CloudLogging.propTypes = iconPropTypes; } var CloudMonitoring = /*#__PURE__*/React__default["default"].forwardRef(function CloudMonitoring(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$8 || (_path211$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" })), _path212$7 || (_path212$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,18h-.01a1,1,0,0,1-.9511-.7253L15.2456,11H11V9h5a1,1,0,0,1,.9615.7252l1.0742,3.7589,3.0088-9.7783A1.0142,1.0142,0,0,1,22,3a.98.98,0,0,1,.9487.6838L24.7207,9H30v2H24a1,1,0,0,1-.9487-.6838l-1.0132-3.04L18.9556,17.2942A1,1,0,0,1,18,18Z" })), children); }); { CloudMonitoring.propTypes = iconPropTypes; } var CloudOffline = /*#__PURE__*/React__default["default"].forwardRef(function CloudOffline(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path213$7 || (_path213$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008 12.1362a8.8694 8.8694 0 00-.9795-2.5434L30 3.4142 28.5872 2 2 28.5872 3.4142 30l5-5H23.5a6.4974 6.4974 0 001.3008-12.8638zM23.5 23H10.4141L22.3418 11.0723a6.9049 6.9049 0 01.6006 2.0708l.0986.812.8154.0639A4.4975 4.4975 0 0123.5 23zM4.2964 23.4487l1.4313-1.4311A4.4774 4.4774 0 018.144 14.019l.8155-.0639.0991-.812a6.9867 6.9867 0 0110.63-5.0865l1.4431-1.4428A8.9859 8.9859 0 007.2 12.1362 6.4891 6.4891 0 004.2964 23.4487z" })), children); }); { CloudOffline.propTypes = iconPropTypes; } var CloudServiceManagement = /*#__PURE__*/React__default["default"].forwardRef(function CloudServiceManagement(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path214$7 || (_path214$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,17v5H4V6H14V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z" })), _path215$6 || (_path215$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z" })), children); }); { CloudServiceManagement.propTypes = iconPropTypes; } var CloudUpload = /*#__PURE__*/React__default["default"].forwardRef(function CloudUpload(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216$6 || (_path216$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 18L12.41 19.41 15 16.83 15 29 17 29 17 16.83 19.59 19.41 21 18 16 13 11 18z" })), _path217$6 || (_path217$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" })), children); }); { CloudUpload.propTypes = iconPropTypes; } var CloudApp = /*#__PURE__*/React__default["default"].forwardRef(function CloudApp(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path218$4 || (_path218$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.8289 13.1155A10.02 10.02 0 0016 5.0005V7a8.0233 8.0233 0 017.8649 6.4934l.2591 1.346 1.3488.2441A5.5019 5.5019 0 0124.5076 26H16v2h8.5076a7.5019 7.5019 0 001.3213-14.8845zM8 24H14V26H8zM4 24H6V26H4zM6 20H14V22H6zM2 20H4V22H2zM8 16H14V18H8zM4 16H6V18H4zM10 12H14V14H10zM6 12H8V14H6zM12 8H14V10H12z" })), children); }); { CloudApp.propTypes = iconPropTypes; } var CloudCeiling = /*#__PURE__*/React__default["default"].forwardRef(function CloudCeiling(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path219$4 || (_path219$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H11V30H2zM21 28H30V30H21zM17 26.167L17 17.832 19.586 20.414 21 19 16 14 11 19 12.413 20.415 15 17.832 15 26.167 12.413 23.584 11 25 16 30 21 25 19.586 23.586 17 26.167z" })), _path220$4 || (_path220$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,16H21V14h2a3,3,0,0,0,0-6c-.0938.0144-.1538.0219-.2153.0263l-.8037.0572L21.7544,7.31a5.9927,5.9927,0,0,0-11.1758-.8655l-.2832.5994-.8423-.0455A3.5008,3.5008,0,0,0,9.5,14H11v2H9.5A5.5,5.5,0,0,1,9.07,5.0166,7.9909,7.9909,0,0,1,23.42,6.0175,5,5,0,0,1,23,16Z" })), children); }); { CloudCeiling.propTypes = iconPropTypes; } var CloudFoundry_1 = /*#__PURE__*/React__default["default"].forwardRef(function CloudFoundry_1(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path221$4 || (_path221$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z" })), _path222$4 || (_path222$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 24H11a2 2 0 01-2-2V19a2 2 0 012-2h3v2H11v3h3zM21 15V13H19a2 2 0 00-2 2v2H16v2h1v5h2V19h2V17H19V15z" })), children); }); { CloudFoundry_1.propTypes = iconPropTypes; } var CloudFoundry_2 = /*#__PURE__*/React__default["default"].forwardRef(function CloudFoundry_2(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223$4 || (_path223$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 11L25 9 17 9 17 23 19 23 19 17 24 17 24 15 19 15 19 11 25 11zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z" })), children); }); { CloudFoundry_2.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$c, _path2$c, _circle$c, _path3$c, _circle2$c, _path4$c, _path5$c, _circle3$c, _path6$c, _circle4$b, _path7$c, _path8$c, _path9$c, _circle5$b, _path10$c, _circle6$b, _path11$c, _path12$c, _circle7$b, _path13$c, _circle8$b, _path14$c, _path15$c, _path16$c, _path17$c, _path18$c, _path19$c, _path20$c, _path21$c, _path22$c, _path23$c, _path24$c, _circle9$b, _path25$c, _path26$c, _path27$c, _path28$c, _path29$c, _path30$c, _path31$c, _circle10$a, _circle11$a, _circle12$9, _circle13$8, _circle14$7, _path32$c, _path33$c, _path34$c, _path35$c, _path36$c, _path37$c, _path38$c, _path39$c, _path40$c, _path41$c, _path42$c, _path43$c, _circle15$7, _path44$c, _path45$c, _path46$c, _path47$c, _path48$c, _path49$c, _path50$c, _path51$c, _path52$c, _path53$c, _path54$c, _path55$c, _path56$c, _path57$c, _path58$c, _path59$c, _path60$c, _path61$c, _path62$c, _path63$c, _path64$c, _path65$c, _path66$c, _circle16$7, _path67$c, _path68$c, _path69$c, _path70$c, _circle17$6, _circle18$5, _path71$c, _path72$c, _circle19$5, _path73$c, _path74$c, _path75$c, _path76$c, _path77$c, _path78$c, _path79$c, _path80$c, _path81$c, _path82$c, _path83$c, _path84$c, _circle20$5, _circle21$4, _circle22$4, _circle23$4, _circle24$4, _circle25$4, _circle26$4, _path85$c, _path86$c, _path87$c, _path88$c, _path89$c, _path90$c, _path91$c, _path92$c, _path93$c, _path94$c, _circle27$4, _circle28$4, _circle29$4, _circle30$4, _circle31$4, _path95$c, _path96$c, _path97$c, _path98$c, _path99$c, _path100$c, _circle32$3, _circle33$3, _circle34$3, _circle35$3, _circle36$3, _circle37$3, _path101$c, _path102$c, _circle38$2, _circle39$2, _circle40$2, _circle41$2, _path103$c, _path104$c, _path105$c, _path106$c, _path107$c, _path108$c, _path109$c, _path110$c, _path111$c, _path112$c, _path113$c, _path114$c, _path115$c, _path116$c, _path117$c, _path118$c, _path119$c, _path120$c, _path121$c, _path122$c, _path123$c, _path124$c, _circle42$2, _path125$c, _path126$c, _path127$c, _path128$c, _path129$c, _path130$c, _path131$c, _path132$c, _path133$c, _path134$c, _path135$c, _path136$c, _path137$c, _path138$c, _path139$c, _path140$c, _path141$c, _path142$c, _path143$c, _path144$c, _path145$c, _path146$c, _path147$c, _path148$c, _path149$c, _path150$c, _path151$c, _path152$c, _path153$c, _path154$c, _path155$c, _path156$c, _circle43$2, _circle44$2, _circle45$1, _path157$c, _path158$c, _path159$c, _path160$c, _path161$c, _circle46$1, _circle47$1, _circle48$1, _path162$c, _path163$c, _path164$c, _path165$c, _circle49$1, _circle50$1, _circle51, _path166$c, _path167$c, _path168$c, _path169$c, _path170$c, _path171$c, _circle52, _path172$c, _path173$c, _path174$c, _circle53, _path175$c, _circle54, _circle55, _circle56, _path176$c, _circle57, _path177$c, _path178$c, _path179$c, _circle58, _path180$c, _circle59, _circle60, _circle61, _path181$c, _path182$c, _path183$c, _path184$c, _path185$c, _path186$c, _path187$c, _circle62, _path188$c, _circle63, _path189$c, _path190$c; var _excluded$h = ["children", "size"], _excluded2$c = ["children", "size"], _excluded3$c = ["children", "size"], _excluded4$c = ["children", "size"], _excluded5$c = ["children", "size"], _excluded6$c = ["children", "size"], _excluded7$c = ["children", "size"], _excluded8$c = ["children", "size"], _excluded9$c = ["children", "size"], _excluded10$c = ["children", "size"], _excluded11$c = ["children", "size"], _excluded12$c = ["children", "size"], _excluded13$c = ["children", "size"], _excluded14$c = ["children", "size"], _excluded15$c = ["children", "size"], _excluded16$c = ["children", "size"], _excluded17$c = ["children", "size"], _excluded18$c = ["children", "size"], _excluded19$c = ["children", "size"], _excluded20$c = ["children", "size"], _excluded21$c = ["children", "size"], _excluded22$c = ["children", "size"], _excluded23$c = ["children", "size"], _excluded24$c = ["children", "size"], _excluded25$c = ["children", "size"], _excluded26$c = ["children", "size"], _excluded27$c = ["children", "size"], _excluded28$c = ["children", "size"], _excluded29$c = ["children", "size"], _excluded30$c = ["children", "size"], _excluded31$c = ["children", "size"], _excluded32$c = ["children", "size"], _excluded33$c = ["children", "size"], _excluded34$c = ["children", "size"], _excluded35$c = ["children", "size"], _excluded36$c = ["children", "size"], _excluded37$c = ["children", "size"], _excluded38$c = ["children", "size"], _excluded39$c = ["children", "size"], _excluded40$c = ["children", "size"], _excluded41$c = ["children", "size"], _excluded42$c = ["children", "size"], _excluded43$c = ["children", "size"], _excluded44$c = ["children", "size"], _excluded45$c = ["children", "size"], _excluded46$c = ["children", "size"], _excluded47$c = ["children", "size"], _excluded48$c = ["children", "size"], _excluded49$c = ["children", "size"], _excluded50$c = ["children", "size"], _excluded51$c = ["children", "size"], _excluded52$c = ["children", "size"], _excluded53$c = ["children", "size"], _excluded54$c = ["children", "size"], _excluded55$c = ["children", "size"], _excluded56$c = ["children", "size"], _excluded57$c = ["children", "size"], _excluded58$c = ["children", "size"], _excluded59$c = ["children", "size"], _excluded60$c = ["children", "size"], _excluded61$c = ["children", "size"], _excluded62$c = ["children", "size"], _excluded63$c = ["children", "size"], _excluded64$c = ["children", "size"], _excluded65$c = ["children", "size"], _excluded66$c = ["children", "size"], _excluded67$c = ["children", "size"], _excluded68$c = ["children", "size"], _excluded69$c = ["children", "size"], _excluded70$c = ["children", "size"], _excluded71$c = ["children", "size"], _excluded72$c = ["children", "size"], _excluded73$c = ["children", "size"], _excluded74$c = ["children", "size"], _excluded75$c = ["children", "size"], _excluded76$c = ["children", "size"], _excluded77$c = ["children", "size"], _excluded78$c = ["children", "size"], _excluded79$c = ["children", "size"], _excluded80$c = ["children", "size"], _excluded81$c = ["children", "size"], _excluded82$c = ["children", "size"], _excluded83$c = ["children", "size"], _excluded84$c = ["children", "size"], _excluded85$c = ["children", "size"], _excluded86$c = ["children", "size"], _excluded87$c = ["children", "size"], _excluded88$c = ["children", "size"], _excluded89$c = ["children", "size"], _excluded90$c = ["children", "size"], _excluded91$c = ["children", "size"], _excluded92$c = ["children", "size"], _excluded93$c = ["children", "size"], _excluded94$c = ["children", "size"], _excluded95$c = ["children", "size"], _excluded96$c = ["children", "size"], _excluded97$c = ["children", "size"], _excluded98$c = ["children", "size"], _excluded99$c = ["children", "size"], _excluded100$c = ["children", "size"], _excluded101$c = ["children", "size"], _excluded102$c = ["children", "size"], _excluded103$c = ["children", "size"], _excluded104$c = ["children", "size"], _excluded105$c = ["children", "size"], _excluded106$c = ["children", "size"], _excluded107$c = ["children", "size"], _excluded108$c = ["children", "size"], _excluded109$c = ["children", "size"], _excluded110$c = ["children", "size"], _excluded111$c = ["children", "size"], _excluded112$c = ["children", "size"], _excluded113$c = ["children", "size"], _excluded114$c = ["children", "size"], _excluded115$c = ["children", "size"], _excluded116$c = ["children", "size"], _excluded117$c = ["children", "size"], _excluded118$c = ["children", "size"], _excluded119$c = ["children", "size"], _excluded120$c = ["children", "size"], _excluded121$c = ["children", "size"], _excluded122$c = ["children", "size"], _excluded123$c = ["children", "size"], _excluded124$b = ["children", "size"], _excluded125$b = ["children", "size"]; var CloudRegistry = /*#__PURE__*/React__default["default"].forwardRef(function CloudRegistry(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$h); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$c || (_path$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H23a2.0023 2.0023 0 01-2-2V23a2.0023 2.0023 0 012-2h5a2.0023 2.0023 0 012 2v5A2.0023 2.0023 0 0128 30zm-5-7h-.0012L23 28h5V23zM16 23H11a2.0023 2.0023 0 01-2-2V11a2.0023 2.0023 0 012-2H21a2.0023 2.0023 0 012 2v5H21V11H11V21h5z" })), _path2$c || (_path2$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V16H28V4H4V28H16Z" })), children); }); { CloudRegistry.propTypes = iconPropTypes; } var CloudSatellite = /*#__PURE__*/React__default["default"].forwardRef(function CloudSatellite(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$c || (_circle$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "20", r: "2" })), _path3$c || (_path3$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,14Z" })), _circle2$c || (_circle2$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "12", r: "2" })), _path4$c || (_path4$c = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { CloudSatellite.propTypes = iconPropTypes; } var CloudSatelliteConfig = /*#__PURE__*/React__default["default"].forwardRef(function CloudSatelliteConfig(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$c || (_path5$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32,26V24H29.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,26,20.1011V18H24v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,20.1011,24H18v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,24,29.8989V32h2V29.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,29.8989,26Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,28Z" })), _circle3$c || (_circle3$c = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "20", r: "2" })), _path6$c || (_path6$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z" })), _circle4$b || (_circle4$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "12", r: "2" })), _path7$c || (_path7$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z" })), children); }); { CloudSatelliteConfig.propTypes = iconPropTypes; } var CloudSatelliteLink = /*#__PURE__*/React__default["default"].forwardRef(function CloudSatelliteLink(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$c || (_path8$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.9763,24.9748l-5.0015,5.0015a3.501,3.501,0,0,1-4.9511-4.9511L22.4383,26.44A1.5,1.5,0,0,0,24.56,28.5617L29.5617,23.56A1.5,1.5,0,0,0,27.44,21.4383l-1.4146-1.4146a3.501,3.501,0,0,1,4.9511,4.9511Z" })), _path9$c || (_path9$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.0252,21.0237l-5.0015,5.0015a3.501,3.501,0,0,0,4.9511,4.9511L18.56,29.5617A1.5,1.5,0,0,1,16.4383,27.44L21.44,22.4383A1.5,1.5,0,0,1,23.5617,24.56l1.4146,1.4146a3.501,3.501,0,0,0-4.9511-4.9511Z" })), _circle5$b || (_circle5$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "20", r: "2" })), _path10$c || (_path10$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z" })), _circle6$b || (_circle6$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "12", r: "2" })), _path11$c || (_path11$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.3076,27.2725,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L10.3,29Z" })), children); }); { CloudSatelliteLink.propTypes = iconPropTypes; } var CloudSatelliteServices = /*#__PURE__*/React__default["default"].forwardRef(function CloudSatelliteServices(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$c || (_path12$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,26a2.97,2.97,0,0,0-1.8551.6607L25,25.4224V23.8157a3,3,0,1,0-2,0v1.6067l-2.1449,1.2383A2.97,2.97,0,0,0,19,26a3.02,3.02,0,1,0,2.9254,2.3525L24,27.1548l2.0746,1.1977A2.9978,2.9978,0,1,0,29,26ZM19,30a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,19,30Zm5-10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,24,20Zm5,10a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,29,30Z" })), _circle7$b || (_circle7$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "20", r: "2" })), _path13$c || (_path13$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z" })), _circle8$b || (_circle8$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "12", r: "2" })), _path14$c || (_path14$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z" })), children); }); { CloudSatelliteServices.propTypes = iconPropTypes; } var CloudServices = /*#__PURE__*/React__default["default"].forwardRef(function CloudServices(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$c || (_path15$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.8218,10.124a9.9991,9.9991,0,0,0-19.6435,0A7.4964,7.4964,0,0,0,7.5,25H8V23H7.5a5.4961,5.4961,0,0,1-.3769-10.9795l.8364-.0571.09-.8335a7.9979,7.9979,0,0,1,15.9013,0l.09.8335.8364.0571A5.4961,5.4961,0,0,1,24.5,23H24v2h.5a7.4964,7.4964,0,0,0,1.3218-14.876Z" })), _path16$c || (_path16$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,22V20H20.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,17,16.1011V14H15v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,11.1011,20H9v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,15,25.8989V28h2V25.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,20.8989,22Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,24Z" })), children); }); { CloudServices.propTypes = iconPropTypes; } var Cloudy = /*#__PURE__*/React__default["default"].forwardRef(function Cloudy(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$c || (_path17$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.0005,15.5005a6.5324,6.5324,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0,6.5321,6.5321,0,0,0-5.2,6.3638,6.4543,6.4543,0,0,0,1.6887,4.35A5.9829,5.9829,0,0,0,8,30H19a5.9764,5.9764,0,0,0,5.6094-8.1016A6.5051,6.5051,0,0,0,30.0005,15.5005ZM19,28H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,19.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,28Zm4.5-8h-.0554a5.9562,5.9562,0,0,0-2.7959-1.7564,7.4952,7.4952,0,0,0-14.2984,0,5.9877,5.9877,0,0,0-1.0315.4073A4.4446,4.4446,0,0,1,4,15.5005a4.5171,4.5171,0,0,1,4.144-4.481l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639a4.4975,4.4975,0,0,1-.3564,8.981Z" })), children); }); { Cloudy.propTypes = iconPropTypes; } var WatsonHealthCobbAngle = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCobbAngle(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$c || (_path18$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 17V15a2 2 0 00-2-2H10a2 2 0 00-2 2v2a2 2 0 002 2h8A2 2 0 0020 17zM10 15h8v2H10zM23.42 24.48A2 2 0 0021 23.06l-7.73 2.07a2 2 0 00-1.42 2.44h0l.52 1.93A2 2 0 0014.27 31a3 3 0 00.52-.07l7.73-2.07h0a2 2 0 001.41-2.45zM14.27 29l-.51-1.94L21.48 25 22 26.92zM13.24 6.86L21 8.93h0a2.24 2.24 0 00.51.07 2 2 0 001.94-1.48L24 5.58a2 2 0 00-1.41-2.45L14.79 1.06a2 2 0 00-2.45 1.41h0l-.52 1.93a2 2 0 001.42 2.44zm1-3.86L22 5.07 21.48 7 13.76 4.93zM14 21H16V23H14zM14 9H16V11H14z" })), children); }); { WatsonHealthCobbAngle.propTypes = iconPropTypes; } var Code$1 = /*#__PURE__*/React__default["default"].forwardRef(function Code(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$c || (_path19$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 16L24 23 22.59 21.59 28.17 16 22.59 10.41 24 9 31 16zM1 16L8 9 9.41 10.41 3.83 16 9.41 21.59 8 23 1 16z" })), _path20$c || (_path20$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.91 15H26.080000000000002V17H5.91z", transform: "rotate(-75 15.996 16)" })), children); }); { Code$1.propTypes = iconPropTypes; } var CodeHide = /*#__PURE__*/React__default["default"].forwardRef(function CodeHide(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$c || (_path21$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.713 13.471L19.576 6.518 17.645 6 16.08 11.838 17.713 13.471zM24.207 19.965L25.621 21.379 31 16 24 9 22.586 10.414 28.172 16 24.207 19.965zM30 28.586L3.414 2 2 3.414 7.793 9.207 1 16 8 23 9.414 21.586 3.828 16 9.207 10.621 14.884 16.298 12.423 25.482 14.355 26 16.517 17.931 28.586 30 30 28.586z" })), children); }); { CodeHide.propTypes = iconPropTypes; } var CodeReference = /*#__PURE__*/React__default["default"].forwardRef(function CodeReference(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$c || (_path22$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM30 10L24 4 22.586 5.414 27.172 10 22.586 14.586 24 16 30 10z" })), _path23$c || (_path23$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.944 9.001H24.974000000000004V11.001H8.944z", transform: "rotate(-74.995 16.96 10)" })), _path24$c || (_path24$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 10L10 4 11.414 5.414 6.828 10 11.414 14.586 10 16 4 10z" })), children); }); { CodeReference.propTypes = iconPropTypes; } var CodeSigningService = /*#__PURE__*/React__default["default"].forwardRef(function CodeSigningService(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle9$b || (_circle9$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "20", r: "1" })), _path25$c || (_path25$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.4141 30H15V25.5857l5.0337-5.0337A4.6069 4.6069 0 0120 20a5 5 0 114.4478 4.9663zM17 28h1.5859l5.2061-5.2063.5395.1238a3.0351 3.0351 0 10-2.249-2.2488l.1236.5393L17 26.4143zM6 8H8V16H6zM2 8H4V16H2zM18 8H20V14H18zM14 16H12a2 2 0 01-2-2V10a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0114 16zm-2-2h2V10H12zM2 18H4V26H2zM14 18H16V22H14zM10 26H8a2 2 0 01-2-2V20a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0110 26zM8 24h2V20H8zM2 2H4V6H2zM14 2H16V6H14zM18 2H20V6H18zM10 6H8A2 2 0 016 4V2H8V4h2V2h2V4A2 2 0 0110 6z" })), children); }); { CodeSigningService.propTypes = iconPropTypes; } var Cognitive = /*#__PURE__*/React__default["default"].forwardRef(function Cognitive(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$c || (_path26$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,13A11,11,0,0,0,19,2H11a9,9,0,0,0-9,9v3a5,5,0,0,0,5,5H8.1A5,5,0,0,0,13,23h1.38l4,7,1.73-1-4-6.89A2,2,0,0,0,14.38,21H13a3,3,0,0,1,0-6h1V13H13a5,5,0,0,0-4.9,4H7a3,3,0,0,1-3-3V12H6A3,3,0,0,0,9,9V8H7V9a1,1,0,0,1-1,1H4.08A7,7,0,0,1,11,4h6V6a1,1,0,0,1-1,1H14V9h2a3,3,0,0,0,3-3V4a9,9,0,0,1,8.05,5H26a3,3,0,0,0-3,3v1h2V12a1,1,0,0,1,1-1h1.77A8.76,8.76,0,0,1,28,13v1a5,5,0,0,1-5,5H20v2h3a7,7,0,0,0,3-.68V21a3,3,0,0,1-3,3H22v2h1a5,5,0,0,0,5-5V18.89A7,7,0,0,0,30,14Z" })), children); }); { Cognitive.propTypes = iconPropTypes; } var Collaborate = /*#__PURE__*/React__default["default"].forwardRef(function Collaborate(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$c || (_path27$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 21V20H4v1a7 7 0 007 7h3V26H11A5 5 0 016 21zM24 11v1h2V11a7 7 0 00-7-7H16V6h3A5 5 0 0124 11zM11 11H5a3 3 0 00-3 3v2H4V14a1 1 0 011-1h6a1 1 0 011 1v2h2V14A3 3 0 0011 11zM8 10A4 4 0 104 6 4 4 0 008 10zM8 4A2 2 0 116 6 2 2 0 018 4zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM20 20a4 4 0 104-4A4 4 0 0020 20zm6 0a2 2 0 11-2-2A2 2 0 0126 20z" })), children); }); { Collaborate.propTypes = iconPropTypes; } var CollapseAll = /*#__PURE__*/React__default["default"].forwardRef(function CollapseAll(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$c || (_path28$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H28V7H13V5H28a2.0023,2.0023,0,0,1,2,2Z" })), _path29$c || (_path29$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,20H23V12H8V10H23a2.0023,2.0023,0,0,1,2,2Z" })), _path30$c || (_path30$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,27H4a2.0023,2.0023,0,0,1-2-2V17a2.0023,2.0023,0,0,1,2-2H18a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,18,27ZM4,17v8H18.0012L18,17Z" })), children); }); { CollapseAll.propTypes = iconPropTypes; } var CollapseCategories = /*#__PURE__*/React__default["default"].forwardRef(function CollapseCategories(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$c || (_path31$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 25H28V27H14zM7.17 26L4.59 28.58 6 30 10 26 6 22 4.58 23.41 7.17 26zM14 15H28V17H14zM7.17 16L4.59 18.58 6 20 10 16 6 12 4.58 13.41 7.17 16zM14 5H28V7H14zM7.17 6L4.59 8.58 6 10 10 6 6 2 4.58 3.41 7.17 6z" })), children); }); { CollapseCategories.propTypes = iconPropTypes; } var ColorPalette = /*#__PURE__*/React__default["default"].forwardRef(function ColorPalette(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle10$a || (_circle10$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "12", r: "2" })), _circle11$a || (_circle11$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "9", r: "2" })), _circle12$9 || (_circle12$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "12", r: "2" })), _circle13$8 || (_circle13$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "18", r: "2" })), _circle14$7 || (_circle14$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "19", cy: "23", r: "2" })), _path32$c || (_path32$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.54,2A14,14,0,0,0,2,16a4.82,4.82,0,0,0,6.09,4.65l1.12-.31A3,3,0,0,1,13,23.24V27a3,3,0,0,0,3,3A14,14,0,0,0,30,15.46,14.05,14.05,0,0,0,16.54,2Zm8.11,22.31A11.93,11.93,0,0,1,16,28a1,1,0,0,1-1-1V23.24a5,5,0,0,0-5-5,5.07,5.07,0,0,0-1.33.18l-1.12.31A2.82,2.82,0,0,1,4,16,12,12,0,0,1,16.47,4,12.18,12.18,0,0,1,28,15.53,11.89,11.89,0,0,1,24.65,24.32Z" })), children); }); { ColorPalette.propTypes = iconPropTypes; } var ColorSwitch = /*#__PURE__*/React__default["default"].forwardRef(function ColorSwitch(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$c || (_path33$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM6,26,26,6V26Z" })), children); }); { ColorSwitch.propTypes = iconPropTypes; } var Column = /*#__PURE__*/React__default["default"].forwardRef(function Column(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$c || (_path34$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 4H26V28H24zM18 6V26H14V6h4m0-2H14a2 2 0 00-2 2V26a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2zM6 4H8V28H6z" })), children); }); { Column.propTypes = iconPropTypes; } var ColumnDelete = /*#__PURE__*/React__default["default"].forwardRef(function ColumnDelete(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$c || (_path35$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z" })), _path36$c || (_path36$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 14V28H18V6H16V28a2.0023 2.0023 0 002 2h6a2.0023 2.0023 0 002-2V14zM10 30H4a2.0021 2.0021 0 01-2-2V8A2.0021 2.0021 0 014 6h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 8V28h6V8z" })), children); }); { ColumnDelete.propTypes = iconPropTypes; } var ColumnInsert = /*#__PURE__*/React__default["default"].forwardRef(function ColumnInsert(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$c || (_path37$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H22a2.0021 2.0021 0 01-2-2V10a2.0021 2.0021 0 012-2h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30zM22 10V28h6V10zM16 9L21.586 3.414 20.172 2 16 6.172 11.828 2 10.414 3.414 16 9zM10 30H4a2.0021 2.0021 0 01-2-2V10A2.0021 2.0021 0 014 8h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 10V28h6V10z" })), children); }); { ColumnInsert.propTypes = iconPropTypes; } var ColumnDependency = /*#__PURE__*/React__default["default"].forwardRef(function ColumnDependency(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$c || (_path38$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,10V2H22V5H17a2.0023,2.0023,0,0,0-2,2v8H10V12H2v8h8V17h5v8a2.0023,2.0023,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3h8V12H22v3H17V7h5v3ZM8,18H4V14H8Zm16,6h4v4H24Zm0-10h4v4H24ZM24,4h4V8H24Z" })), children); }); { ColumnDependency.propTypes = iconPropTypes; } var Commit = /*#__PURE__*/React__default["default"].forwardRef(function Commit(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$c || (_path39$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H21.91A5.9925,5.9925,0,0,0,10.09,15H2v2h8.09A5.9925,5.9925,0,0,0,21.91,17H30ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Z" })), children); }); { Commit.propTypes = iconPropTypes; } var CommunicationUnified = /*#__PURE__*/React__default["default"].forwardRef(function CommunicationUnified(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$c || (_path40$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 17H18a2.0025 2.0025 0 00-2 2v6a2.0025 2.0025 0 002 2h4V25H18V19H28v6H25.4648l-2.5937 3.8906L24.5352 30l2-3H28a2.0025 2.0025 0 002-2V19A2.0025 2.0025 0 0028 17zM8.6667 24.1086l.8614-.8615a.8334.8334 0 01.8988-.1844l1.0493.42A.8334.8334 0 0112 24.2561v1.9082a.8334.8334 0 01-.8786.8341c-7.3546-.4578-8.84-6.6863-9.1158-9.0723A.8316.8316 0 012.8343 17H4.7085a.8335.8335 0 01.7737.5238l.42 1.0493a.8332.8332 0 01-.1845.8988l-.8614.8614A4.5267 4.5267 0 008.6667 24.1086zM21 9H28V11H21zM21 5H30V7H21zM17 6L14 8.2V6a2.0024 2.0024 0 00-2-2H4A2.0024 2.0024 0 002 6v6a2.0024 2.0024 0 002 2h8a2.0024 2.0024 0 002-2V9.8L17 12zM4 12V6h8v6z" })), children); }); { CommunicationUnified.propTypes = iconPropTypes; } var Compare = /*#__PURE__*/React__default["default"].forwardRef(function Compare(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41$c || (_path41$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H18V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H14v2a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,15h6.17L7.59,17.59,9,19l5-5L9,9,7.59,10.41,10.17,13H4V4H16V24H4ZM16,28V26a2,2,0,0,0,2-2V8H28v9H21.83l2.58-2.59L23,13l-5,5,5,5,1.41-1.41L21.83,19H28v9Z" })), children); }); { Compare.propTypes = iconPropTypes; } var Compass = /*#__PURE__*/React__default["default"].forwardRef(function Compass(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$c || (_path42$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), _path43$c || (_path43$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,10.41,21.59,9l-4.3,4.3a3,3,0,0,0-4,4L9,21.59,10.41,23l4.3-4.3a3,3,0,0,0,4-4ZM17,16a1,1,0,1,1-1-1A1,1,0,0,1,17,16Z" })), _circle15$7 || (_circle15$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "7.5", r: "1.5" })), children); }); { Compass.propTypes = iconPropTypes; } var QComposerEdit = /*#__PURE__*/React__default["default"].forwardRef(function QComposerEdit(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$c || (_path44$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.82,10H30V8H25.82a3,3,0,0,0-5.64,0H13V5H5V8H2v2H5v3h8V10h7.18A3,3,0,0,0,22,11.82v7.32A4,4,0,0,0,19.14,22H2v2H19.14a4,4,0,0,0,7.72,0H30V22H26.86A4,4,0,0,0,24,19.14V11.82A3,3,0,0,0,25.82,10ZM11,11H7V7h4ZM25,23a2,2,0,1,1-2-2A2,2,0,0,1,25,23Z" })), children); }); { QComposerEdit.propTypes = iconPropTypes; } var Concept = /*#__PURE__*/React__default["default"].forwardRef(function Concept(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$c || (_path45$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.8851,19.4711a5.9609,5.9609,0,0,0,0-6.9422L23,10.4141l1.293,1.2929a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414l-4-4a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414L21.5859,9l-2.1148,2.1149a5.9609,5.9609,0,0,0-6.9422,0L10,8.5859V2H2v8H8.5859l2.529,2.5289a5.9609,5.9609,0,0,0,0,6.9422L9,21.5859,7.707,20.293a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l4,4a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414L10.4141,23l2.1148-2.1149a5.9609,5.9609,0,0,0,6.9422,0L22,23.4141V30h8V22H23.4141ZM25,4.4141,27.5859,7,25,9.5859,22.4141,7ZM7,27.5859,4.4141,25,7,22.4141,9.5859,25ZM8,8H4V4H8Zm4,8a4,4,0,1,1,4,4A4.0045,4.0045,0,0,1,12,16Zm12,8h4v4H24Z" })), children); }); { Concept.propTypes = iconPropTypes; } var ConditionPoint = /*#__PURE__*/React__default["default"].forwardRef(function ConditionPoint(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$c || (_path46$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.343 10.343H21.657V21.657H10.343z", transform: "rotate(-45 16 16)" })), _path47$c || (_path47$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3906,14.5269,17.4731,2.6094a2.0852,2.0852,0,0,0-2.9462,0L2.6094,14.5269a2.0852,2.0852,0,0,0,0,2.9462L14.5269,29.3906a2.0852,2.0852,0,0,0,2.9462,0L29.3906,17.4731a2.0852,2.0852,0,0,0,0-2.9462ZM16,28.0356,3.9646,16,16,3.9644,28.0356,16Z" })), children); }); { ConditionPoint.propTypes = iconPropTypes; } var ConditionWaitPoint = /*#__PURE__*/React__default["default"].forwardRef(function ConditionWaitPoint(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48$c || (_path48$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.343 10.343H21.657V21.657H10.343z", transform: "rotate(-45 16 16)" })), _path49$c || (_path49$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12.0136,12.0136,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), children); }); { ConditionWaitPoint.propTypes = iconPropTypes; } var Connect = /*#__PURE__*/React__default["default"].forwardRef(function Connect(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$c || (_path50$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,16a7,7,0,0,0-4.18,1.39L14.6,13.17A6.86,6.86,0,0,0,16,9a7,7,0,1,0-2.81,5.59l4.21,4.22A7,7,0,1,0,23,16ZM4,9a5,5,0,1,1,5,5A5,5,0,0,1,4,9Z", transform: "translate(0 .01)" })), children); }); { Connect.propTypes = iconPropTypes; } var ConnectRecursive = /*#__PURE__*/React__default["default"].forwardRef(function ConnectRecursive(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path51$c || (_path51$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,7H13.8281l3.586-3.5859L16,2,10,8l6,6,1.4141-1.4141L13.8281,9H28V20H11.8989A5.0145,5.0145,0,0,0,8,16.1011V2H6V16.1011a5,5,0,0,0,0,9.7978V30H8V25.8989A5.0145,5.0145,0,0,0,11.8989,22H28a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,28,7ZM7,24a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,24Z" })), children); }); { ConnectRecursive.propTypes = iconPropTypes; } var ConnectSource = /*#__PURE__*/React__default["default"].forwardRef(function ConnectSource(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$c || (_path52$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,10l-1.4141,1.4141L26.1719,15H11.8989A5.0145,5.0145,0,0,0,8,11.1011V2H6v9.1011a5,5,0,0,0,0,9.7978V30H8V20.8989A5.0145,5.0145,0,0,0,11.8989,17h14.273l-3.586,3.5859L24,22l6-6ZM7,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,19Z" })), children); }); { ConnectSource.propTypes = iconPropTypes; } var ConnectTarget = /*#__PURE__*/React__default["default"].forwardRef(function ConnectTarget(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53$c || (_path53$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 2H30V30H28zM20 10l-1.4141 1.4141L22.1719 15H11.8989a5 5 0 100 2h10.273l-3.586 3.5859L20 22l6-6zM7 19a3 3 0 113-3A3.0033 3.0033 0 017 19z" })), children); }); { ConnectTarget.propTypes = iconPropTypes; } var ConnectionReceive = /*#__PURE__*/React__default["default"].forwardRef(function ConnectionReceive(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$c || (_path54$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM30 14L21.83 14 24.41 16.59 23 18 18 13 23 8 24.41 9.41 21.83 12 30 12 30 14z" })), _path55$c || (_path55$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z" })), children); }); { ConnectionReceive.propTypes = iconPropTypes; } var ConnectionSend = /*#__PURE__*/React__default["default"].forwardRef(function ConnectionSend(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$c || (_path56$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM18 14L26.17 14 23.59 16.59 25 18 30 13 25 8 23.59 9.41 26.17 12 18 12 18 14z" })), _path57$c || (_path57$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z" })), children); }); { ConnectionSend.propTypes = iconPropTypes; } var ConnectionTwoWay = /*#__PURE__*/React__default["default"].forwardRef(function ConnectionTwoWay(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$c || (_path58$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM30 22L21.83 22 24.41 24.59 23 26 18 21 23 16 24.41 17.41 21.83 20 30 20 30 22zM19 12L27.17 12 24.59 14.59 26 16 31 11 26 6 24.59 7.41 27.17 10 19 10 19 12z" })), _path59$c || (_path59$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26v2H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V26Z" })), children); }); { ConnectionTwoWay.propTypes = iconPropTypes; } var ConnectionSignal = /*#__PURE__*/React__default["default"].forwardRef(function ConnectionSignal(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$c || (_path60$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 12H17V30H15zM11.33 18.22a7 7 0 010-10.44l1.34 1.49a5 5 0 000 7.46zM20.67 18.22l-1.34-1.49a5 5 0 000-7.46l1.34-1.49a7 7 0 010 10.44z" })), _path61$c || (_path61$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.4 21.8a11 11 0 010-17.6L9.6 5.8a9 9 0 000 14.4zM23.6 21.8l-1.2-1.6a9 9 0 000-14.4l1.2-1.6a11 11 0 010 17.6z" })), children); }); { ConnectionSignal.propTypes = iconPropTypes; } var ConnectionSignalOff = /*#__PURE__*/React__default["default"].forwardRef(function ConnectionSignalOff(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$c || (_path62$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,13a8.9089,8.9089,0,0,1-2.5249,6.2339l1.4133,1.4131A10.9795,10.9795,0,0,0,23.6006,4.2l-1.2012,1.6A8.932,8.932,0,0,1,26,13Z" })), _path63$c || (_path63$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 13a5.0022 5.0022 0 01-.9023 2.8564l1.4277 1.4278a6.9831 6.9831 0 00-.8584-9.5015l-1.334 1.49A5.0077 5.0077 0 0121 13zM30 28.5859L3.4143 2 2 3.4141l3.71 3.71A10.9824 10.9824 0 008.3994 21.8008l1.2012-1.6A8.9678 8.9678 0 017.1714 8.5854l2.1963 2.1963a6.9664 6.9664 0 001.9648 7.4351l1.334-1.49A5.0072 5.0072 0 0111 13a4.8854 4.8854 0 01.0393-.5464L15 16.4141V30h2V18.4141L28.5857 30z" })), children); }); { ConnectionSignalOff.propTypes = iconPropTypes; } var Construction = /*#__PURE__*/React__default["default"].forwardRef(function Construction(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$c || (_path64$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.34 16.06a1.0007 1.0007 0 00-1.1084.3L24.46 20.8857l-5.4355-.9882-3.602-8.9512A3.014 3.014 0 0012.6138 9h-4.06A3.0018 3.0018 0 007.01 9.4277L2 12.4336v6.4009l5 .9092V30H9V20.1074l3.5652.648L14 24.2V30h2V23.8l-1.0911-2.6182L22.99 22.6509 18.2319 28.36A1 1 0 0019 30H29a1 1 0 001-1V17A1 1 0 0029.34 16.06zM4 17.1655V13.5664l3-1.8v5.9448zm5 .9092V11h3.6138a1.0141 1.0141 0 01.9453.6709l3.14 7.8037zM28 28H21.1353L28 19.7617zM12.5 8A3.5 3.5 0 1116 4.5 3.5042 3.5042 0 0112.5 8zm0-5A1.5 1.5 0 1014 4.5 1.5017 1.5017 0 0012.5 3z" })), children); }); { Construction.propTypes = iconPropTypes; } var ContainerRegistry = /*#__PURE__*/React__default["default"].forwardRef(function ContainerRegistry(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$c || (_path65$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,13V6H8V22H24V13ZM10,8h5v5H10Zm0,7h5v5H10Zm12,5H17V15h5Z" })), _path66$c || (_path66$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 11H19V2h9zM21 9h5V4H21zM28 20H26v2h2v6H4V22H6V20H4a2.0024 2.0024 0 00-2 2v6a2.0024 2.0024 0 002 2H28a2.0024 2.0024 0 002-2V22A2.0024 2.0024 0 0028 20z" })), _circle16$7 || (_circle16$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), children); }); { ContainerRegistry.propTypes = iconPropTypes; } var ContainerServices = /*#__PURE__*/React__default["default"].forwardRef(function ContainerServices(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67$c || (_path67$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22V17a2.0023,2.0023,0,0,0-2-2H17V10h3a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H12a2.0023,2.0023,0,0,0-2,2V8a2.0023,2.0023,0,0,0,2,2h3v5H7a2.0023,2.0023,0,0,0-2,2v5H2v8h8V22H7V17h8v5H12v8h8V22H17V17h8v5H22v8h8V22ZM12,4h8V8H12ZM8,28H4V24H8Zm10,0H14V24h4Zm10,0H24V24h4Z" })), children); }); { ContainerServices.propTypes = iconPropTypes; } var ContainerSoftware = /*#__PURE__*/React__default["default"].forwardRef(function ContainerSoftware(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$c || (_path68$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H20V4h8Zm-6-2h4V6H22Z" })), _path69$c || (_path69$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,15V9H9V23H23V15Zm-6-4h4v4H11Zm4,10H11V17h4Zm6,0H17V17h4Z" })), _path70$c || (_path70$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0023,2.0023,0,0,1,26,28Z" })), children); }); { ContainerSoftware.propTypes = iconPropTypes; } var ContentDeliveryNetwork = /*#__PURE__*/React__default["default"].forwardRef(function ContentDeliveryNetwork(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle17$6 || (_circle17$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "21", r: "2" })), _circle18$5 || (_circle18$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "7", r: "2" })), _path71$c || (_path71$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,31a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,27,31Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,27,25Z" })), _path72$c || (_path72$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16A14.0412,14.0412,0,0,0,16,2,13.0426,13.0426,0,0,0,9.2,3.8l1.1,1.7a24.4254,24.4254,0,0,1,2.4-1A25.1349,25.1349,0,0,0,10,15H4a11.1489,11.1489,0,0,1,1.4-4.7L3.9,9A13.8418,13.8418,0,0,0,2,16,13.9983,13.9983,0,0,0,16,30a13.3656,13.3656,0,0,0,5.2-1l-.6-1.9a11.4416,11.4416,0,0,1-5.2.9h0A21.0713,21.0713,0,0,1,12,17H29.9A3.4019,3.4019,0,0,0,30,16ZM12.8,27.6h0a13.02,13.02,0,0,1-5.3-3.1A12.5053,12.5053,0,0,1,4,17h6A25.0022,25.0022,0,0,0,12.8,27.6ZM12,15A21.4461,21.4461,0,0,1,15.3,4h1.4A21.4461,21.4461,0,0,1,20,15Zm10,0A23.2777,23.2777,0,0,0,19.2,4.4,12.0919,12.0919,0,0,1,27.9,15Z" })), children); }); { ContentDeliveryNetwork.propTypes = iconPropTypes; } var ContentView = /*#__PURE__*/React__default["default"].forwardRef(function ContentView(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle19$5 || (_circle19$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "19", r: "2" })), _path73$c || (_path73$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.7769,18.4785A8.64,8.64,0,0,0,16,13a8.64,8.64,0,0,0-7.7769,5.4785L8,19l.2231.5215A8.64,8.64,0,0,0,16,25a8.64,8.64,0,0,0,7.7769-5.4785L24,19ZM16,23a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,23Z" })), _path74$c || (_path74$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM5,5H27V9H5ZM5,27V11H27V27Z" })), children); }); { ContentView.propTypes = iconPropTypes; } var Continue = /*#__PURE__*/React__default["default"].forwardRef(function Continue(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$c || (_path75$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 28a1 1 0 01-1-1V5a1 1 0 011.501-.8652l19 11a1 1 0 010 1.73l-19 11A.9975.9975 0 0110 28zM11 6.7344V25.2656L27 16zM4 4H6V28H4z" })), children); }); { Continue.propTypes = iconPropTypes; } var ContinueFilled = /*#__PURE__*/React__default["default"].forwardRef(function ContinueFilled(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$c || (_path76$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 28a1 1 0 01-1-1V5a1 1 0 011.501-.8652l19 11a1 1 0 010 1.73l-19 11A.9975.9975 0 0110 28zM4 4H6V28H4z" })), children); }); { ContinueFilled.propTypes = iconPropTypes; } var ContinuousDeployment = /*#__PURE__*/React__default["default"].forwardRef(function ContinuousDeployment(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$c || (_path77$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2l-6,6l1.4,1.4L23,5.8V19c0,5-4,9-9,9c-1.6,0-3.1-0.4-4.3-1.1C10.1,27,10.5,27,11,27c4.4,0,8-3.6,8-8s-3.6-8-8-8 s-8,3.6-8,8c0,6.1,4.9,11,11,11s11-4.9,11-11V5.8l3.6,3.6L30,8L24,2z M5,19.6c0-0.2,0-0.4,0-0.6c0-3.3,2.7-6,6-6s6,2.7,6,6 s-2.7,6-6,6C7.9,25,5.3,22.6,5,19.6z" })), children); }); { ContinuousDeployment.propTypes = iconPropTypes; } var ContinuousIntegration = /*#__PURE__*/React__default["default"].forwardRef(function ContinuousIntegration(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$c || (_path78$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.9,15.5l-5.7-10C25.9,5.2,25.6,5,25.3,5H6.7C6.4,5,6.1,5.2,5.9,5.5l-5.7,10C0,15.7,0,15.8,0,16s0,0.3,0.1,0.5l5.7,10 C6.1,26.8,6.4,27,6.7,27h18.5c0.4,0,0.7-0.2,0.9-0.5l5.7-10C32,16.3,32,16.2,32,16S32,15.7,31.9,15.5z M17.8,15h-8l4-7L17.8,15z M15.5,7h8l-4,7L15.5,7z M17.8,17l-4,7l-4-7H17.8z M19.5,18l4,7h-8L19.5,18z M21.2,17h8l-4,7L21.2,17z M21.2,15l4-7l4,7H21.2z M7.3,7H12l-4.6,8H2.7L7.3,7z M7.3,25l-4.6-8h4.7l4.6,8H7.3z" })), children); }); { ContinuousIntegration.propTypes = iconPropTypes; } var WatsonHealthContourDraw = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthContourDraw(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$c || (_path79$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.7 4.7a14.7029 14.7029 0 00-3 3.1L6.3 9A13.2634 13.2634 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.5111 12.5111 0 002 16H4A11.4756 11.4756 0 014.6 12.3zM11.7 2.7l.6 1.9A11.4756 11.4756 0 0116 4V2A12.5111 12.5111 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.526 11.526 0 0123 25.7zM27.4 19.7l1.9.6A15.4747 15.4747 0 0030 16H28A11.4756 11.4756 0 0127.4 19.7zM29.2 11.6a14.4029 14.4029 0 00-2-3.9L25.6 8.9a12.8867 12.8867 0 011.7 3.3zM24.1 4.6a14.4029 14.4029 0 00-3.9-2l-.6 1.9a12.8867 12.8867 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.4756 11.4756 0 0116 28v2A21.4206 21.4206 0 0020.3 29.3zM15.4023 24.248a11.9488 11.9488 0 00-1.7182-3.3354L15.2974 19.73a13.9486 13.9486 0 012.0044 3.893zM11.02 18.2668a11.9215 11.9215 0 00-3.3467-1.6943l.6114-1.9043a13.9242 13.9242 0 013.9072 1.978z" })), children); }); { WatsonHealthContourDraw.propTypes = iconPropTypes; } var WatsonHealthContourEdit = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthContourEdit(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$c || (_path80$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30V28A12.0021 12.0021 0 0019.6924 4.5786l.6152-1.9033A14.0022 14.0022 0 0116 30zM7.7 4.7a14.7029 14.7029 0 00-3 3.1L6.3 9A13.2634 13.2634 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.5111 12.5111 0 002 16H4A11.4756 11.4756 0 014.6 12.3zM11.7 2.7l.6 1.9A11.4756 11.4756 0 0116 4V2A12.5111 12.5111 0 0011.7 2.7z" })), _path81$c || (_path81$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.4023 24.248a11.9488 11.9488 0 00-1.7182-3.3354L15.2974 19.73a13.9486 13.9486 0 012.0044 3.893zM11.02 18.2668a11.9215 11.9215 0 00-3.3467-1.6943l.6114-1.9043a13.9242 13.9242 0 013.9072 1.978z" })), children); }); { WatsonHealthContourEdit.propTypes = iconPropTypes; } var WatsonHealthContourFinding = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthContourFinding(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$c || (_path82$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.7 4.7a14.7029 14.7029 0 00-3 3.1L6.3 9A13.2634 13.2634 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.5111 12.5111 0 002 16H4A11.4756 11.4756 0 014.6 12.3zM2.7 20.4a14.4029 14.4029 0 002 3.9l1.6-1.2a12.8867 12.8867 0 01-1.7-3.3zM7.8 27.3a14.4029 14.4029 0 003.9 2l.6-1.9A12.8867 12.8867 0 019 25.7zM11.7 2.7l.6 1.9A11.4756 11.4756 0 0116 4V2A12.5111 12.5111 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.526 11.526 0 0123 25.7zM27.4 19.7l1.9.6A15.4747 15.4747 0 0030 16H28A11.4756 11.4756 0 0127.4 19.7zM29.2 11.6a14.4029 14.4029 0 00-2-3.9L25.6 8.9a12.8867 12.8867 0 011.7 3.3zM24.1 4.6a14.4029 14.4029 0 00-3.9-2l-.6 1.9a12.8867 12.8867 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.4756 11.4756 0 0116 28v2A21.4206 21.4206 0 0020.3 29.3zM16 26A10 10 0 1126 16 10.0115 10.0115 0 0116 26zM16 8a8 8 0 108 8A8.0092 8.0092 0 0016 8z" })), children); }); { WatsonHealthContourFinding.propTypes = iconPropTypes; } var Contrast = /*#__PURE__*/React__default["default"].forwardRef(function Contrast(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$c || (_path83$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.37,11.84a13.6,13.6,0,0,0-1.06-2.51A14.17,14.17,0,0,0,25.9,6.1a14,14,0,1,0,0,19.8,14.17,14.17,0,0,0,2.41-3.23,13.6,13.6,0,0,0,1.06-2.51,14,14,0,0,0,0-8.32ZM4,16A12,12,0,0,1,16,4V28A12,12,0,0,1,4,16Z" })), children); }); { Contrast.propTypes = iconPropTypes; } var ConvertToCloud = /*#__PURE__*/React__default["default"].forwardRef(function ConvertToCloud(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$c || (_path84$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5 12H19a4 4 0 010-8h.0835A4.7864 4.7864 0 0123 2a4.9816 4.9816 0 014.6543 3.2034A3.4667 3.4667 0 0130 8.5 3.5041 3.5041 0 0126.5 12zM19 6a2 2 0 000 4h7.5A1.5017 1.5017 0 0028 8.5a1.4855 1.4855 0 00-1.2778-1.4739L26.061 6.927l-.1616-.6487a2.9568 2.9568 0 00-5.4873-.7121L20.1143 6zM23 14l-5 5 1.4141 1.4141L22 17.8325V24H16v2h6a2.0025 2.0025 0 002-2V17.8325l2.5874 2.583L28 19zM2 20H12V22H2zM2 24H12V26H2zM2 28H12V30H2z" })), children); }); { ConvertToCloud.propTypes = iconPropTypes; } var Cookie = /*#__PURE__*/React__default["default"].forwardRef(function Cookie(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle20$5 || (_circle20$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "21", r: "2" })), _circle21$4 || (_circle21$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "20", r: "2" })), _circle22$4 || (_circle22$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "10", r: "2" })), _circle23$4 || (_circle23$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "15", r: "1" })), _circle24$4 || (_circle24$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "5", r: "2" })), _circle25$4 || (_circle25$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "29", cy: "3", r: "1" })), _circle26$4 || (_circle26$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "23", r: "1" })), _path85$c || (_path85$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30C8.3,30,2,23.7,2,16S8.3,2,16,2c0.1,0,0.2,0,0.3,0l1.4,0.1l-0.3,1.2c-0.1,0.4-0.2,0.9-0.2,1.3c0,2.8,2.2,5,5,5 c1,0,2-0.3,2.9-0.9l1.3,1.5c-0.4,0.4-0.6,0.9-0.6,1.4c0,1.3,1.3,2.4,2.7,1.9l1.2-0.5l0.2,1.3C30,14.9,30,15.5,30,16 C30,23.7,23.7,30,16,30z M15.3,4C9,4.4,4,9.6,4,16c0,6.6,5.4,12,12,12s12-5.4,12-12c0-0.1,0-0.3,0-0.4c-2.3,0.1-4.2-1.7-4.2-4 c0-0.1,0-0.1,0-0.2c-0.5,0.1-1,0.2-1.6,0.2c-3.9,0-7-3.1-7-7C15.2,4.4,15.2,4.2,15.3,4z" })), children); }); { Cookie.propTypes = iconPropTypes; } var Copy = /*#__PURE__*/React__default["default"].forwardRef(function Copy(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$c || (_path86$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" })), _path87$c || (_path87$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" })), children); }); { Copy.propTypes = iconPropTypes; } var CopyFile = /*#__PURE__*/React__default["default"].forwardRef(function CopyFile(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$c || (_path88$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.4,14.7l-6.1-6.1C21,8.2,20.5,8,20,8h-8c-1.1,0-2,0.9-2,2v18c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V16.1 C28,15.6,27.8,15.1,27.4,14.7z M20,10l5.9,6H20V10z M12,28V10h6v6c0,1.1,0.9,2,2,2h6l0,10H12z" })), _path89$c || (_path89$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,18H4V4c0-1.1,0.9-2,2-2h14v2H6V18z" })), children); }); { CopyFile.propTypes = iconPropTypes; } var CopyLink = /*#__PURE__*/React__default["default"].forwardRef(function CopyLink(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$c || (_path90$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.9474,19a4.9476,4.9476,0,0,1-3.4991-8.4465l5.1053-5.1043a4.9482,4.9482,0,0,1,6.9981,6.9976l-.5523.5526-1.4158-1.4129.5577-.5579a2.95,2.95,0,0,0-.0039-4.1653,3.02,3.02,0,0,0-4.17,0l-5.1047,5.104a2.9474,2.9474,0,0,0,0,4.1692,3.02,3.02,0,0,0,4.17,0l1.4143,1.4145A4.9176,4.9176,0,0,1,11.9474,19Z" })), _path91$c || (_path91$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.9474,17a4.9476,4.9476,0,0,1-3.4991-8.4465l.5526-.5526,1.4143,1.4146-.5526.5523a2.9476,2.9476,0,0,0,0,4.1689,3.02,3.02,0,0,0,4.17,0c.26-.26,4.7293-4.7293,5.1053-5.1045a2.951,2.951,0,0,0,0-4.1687,3.02,3.02,0,0,0-4.17,0L21.5536,3.449a4.9483,4.9483,0,0,1,6.9981,6.9978c-.3765.376-4.844,4.8428-5.1038,5.1035A4.9193,4.9193,0,0,1,19.9474,17Z" })), _path92$c || (_path92$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30H4a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,4,6H8V8H4V28H24V18h2V28A2.0021,2.0021,0,0,1,24,30Z" })), children); }); { CopyLink.propTypes = iconPropTypes; } var Corn = /*#__PURE__*/React__default["default"].forwardRef(function Corn(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$c || (_path93$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,16c-.3374,0-.67.02-1,.0508V16C22,8.115,19.0435,2,16.5,2S11,8.115,11,16v5H6v3a6.0067,6.0067,0,0,0,6,6h3A11.0125,11.0125,0,0,0,26,19V16ZM13,16h2V14H13.0728a25.8942,25.8942,0,0,1,.5654-4H16V8H14.2c.81-2.4058,1.8149-3.7715,2.3-3.9863.66.2919,2.2842,2.7036,3.0654,6.9863H18v2h1.8442A29.1625,29.1625,0,0,1,20,16v.4263A11.0554,11.0554,0,0,0,13.79,21H13ZM12,28a4.0045,4.0045,0,0,1-4-4V23h4.7639A10.9033,10.9033,0,0,0,12,27Zm12-9a9.01,9.01,0,0,1-9,9H14V27a9.01,9.01,0,0,1,9-9h1Z" })), children); }); { Corn.propTypes = iconPropTypes; } var Corner = /*#__PURE__*/React__default["default"].forwardRef(function Corner(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$c || (_path94$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,9H14V6H6v8H9V28h2V14h3V11H28ZM12,12H8V8h4Z" })), children); }); { Corner.propTypes = iconPropTypes; } var Coronavirus = /*#__PURE__*/React__default["default"].forwardRef(function Coronavirus(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle27$4 || (_circle27$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15.5", cy: "11.5", r: "1.5" })), _circle28$4 || (_circle28$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20.5", cy: "15.5", r: "1.5" })), _circle29$4 || (_circle29$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "1" })), _circle30$4 || (_circle30$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16.5", cy: "20.5", r: "1.5" })), _circle31$4 || (_circle31$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11.5", cy: "16.5", r: "1.5" })), _path95$c || (_path95$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,13v2H25.9492a9.9476,9.9476,0,0,0-2.2143-5.3213l1.4367-1.4365,1.4143,1.4145L28,8.2427,23.7578,4l-1.414,1.4141,1.414,1.414-1.437,1.4365A9.9464,9.9464,0,0,0,17,6.0508V4h2V2H13V4h2V6.0508A9.9464,9.9464,0,0,0,9.6792,8.2646L8.2422,6.8281l1.414-1.414L8.2422,4,4,8.2427l1.4141,1.414L6.8284,8.2422,8.2651,9.6787A9.9476,9.9476,0,0,0,6.0508,15H4V13H2v6H4V17H6.0508a9.9476,9.9476,0,0,0,2.2143,5.3213L6.8284,23.7578,5.4141,22.3433,4,23.7573,8.2422,28l1.414-1.4141-1.414-1.414,1.437-1.4365A9.9464,9.9464,0,0,0,15,25.9492V28H13v2h6V28H17V25.9492a9.9464,9.9464,0,0,0,5.3208-2.2138l1.437,1.4365-1.414,1.414L23.7578,28,28,23.7573l-1.4141-1.414-1.4143,1.4145-1.4367-1.4365A9.9476,9.9476,0,0,0,25.9492,17H28v2h2V13ZM16,24a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,24Z" })), children); }); { Coronavirus.propTypes = iconPropTypes; } var Cost = /*#__PURE__*/React__default["default"].forwardRef(function Cost(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$c || (_path96$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,23a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,16,23Zm0-12a5,5,0,1,0,5,5A5.0057,5.0057,0,0,0,16,11Z" })), _path97$c || (_path97$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6.4141,28.5859,5l-3.35,3.35A12.0812,12.0812,0,0,0,23.65,6.7637L27,3.4141,25.5859,2,21.9766,5.6094A11.9792,11.9792,0,0,0,5.6094,21.9766L2,25.5859,3.4141,27l3.35-3.35A12.0812,12.0812,0,0,0,8.35,25.2363L5,28.5859,6.4141,30l3.6093-3.6094A11.9792,11.9792,0,0,0,26.3906,10.0234ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { Cost.propTypes = iconPropTypes; } var CostTotal = /*#__PURE__*/React__default["default"].forwardRef(function CostTotal(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$c || (_path98$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 13H22V15H10zM10 18H22V20H10z" })), _path99$c || (_path99$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6.4141,28.5859,5l-3.35,3.35A12.0812,12.0812,0,0,0,23.65,6.7637L27,3.4141,25.5859,2,21.9766,5.6094A11.9792,11.9792,0,0,0,5.6094,21.9766L2,25.5859,3.4141,27l3.35-3.35A12.0812,12.0812,0,0,0,8.35,25.2363L5,28.5859,6.4141,30l3.6093-3.6094A11.9792,11.9792,0,0,0,26.3906,10.0234ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { CostTotal.propTypes = iconPropTypes; } var Cough = /*#__PURE__*/React__default["default"].forwardRef(function Cough(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$c || (_path100$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H24V27H20a5.0055,5.0055,0,0,1-5-5V20.7207l-2.3162-.772a1,1,0,0,1-.5412-1.4631L15,13.7229V11a9.01,9.01,0,0,1,9-9h5V4H24a7.0078,7.0078,0,0,0-7,7v3a.9991.9991,0,0,1-.1426.5144l-2.3586,3.9312,1.8174.6057A1,1,0,0,1,17,20v2a3.0033,3.0033,0,0,0,3,3h5a1,1,0,0,1,1,1Z" })), _circle32$3 || (_circle32$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "23", r: "1" })), _circle33$3 || (_circle33$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "20", r: "1" })), _circle34$3 || (_circle34$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "26", r: "1" })), _circle35$3 || (_circle35$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "17", r: "1" })), _circle36$3 || (_circle36$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "29", r: "1" })), _circle37$3 || (_circle37$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "23", r: "1" })), _path101$c || (_path101$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 12H23V14H19z" })), children); }); { Cough.propTypes = iconPropTypes; } var Course = /*#__PURE__*/React__default["default"].forwardRef(function Course(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$c || (_path102$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V20.6182l-5-2.5-5,2.5V4H8V28H24V24h2v4A2.0027,2.0027,0,0,1,24,30ZM21,15.8818l3,1.5V4H18V17.3818Z" })), children); }); { Course.propTypes = iconPropTypes; } var Covariate = /*#__PURE__*/React__default["default"].forwardRef(function Covariate(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle38$2 || (_circle38$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "16", r: "2" })), _circle39$2 || (_circle39$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "8", r: "2" })), _circle40$2 || (_circle40$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "12", r: "2" })), _circle41$2 || (_circle41$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "18", r: "2" })), _path103$c || (_path103$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,3.4141,28.5859,2,4,26.5859V2H2V28a2,2,0,0,0,2,2H30V28H5.4141ZM4,28Z" })), children); }); { Covariate.propTypes = iconPropTypes; } var Credentials = /*#__PURE__*/React__default["default"].forwardRef(function Credentials(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$c || (_path104$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22a4 4 0 10-4-4A4 4 0 0016 22zm0-6a2 2 0 11-2 2A2 2 0 0116 16zM14 6H18V8H14z" })), _path105$c || (_path105$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2H8A2.002,2.002,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2H24a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,24,2ZM20,28H12V26a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm2,0V26a3,3,0,0,0-3-3H13a3,3,0,0,0-3,3v2H8V4H24V28Z" })), children); }); { Credentials.propTypes = iconPropTypes; } var Critical = /*#__PURE__*/React__default["default"].forwardRef(function Critical(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$c); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path106$c || (_path106$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.887 11.4727a5.9936 5.9936 0 00-8.36-8.3594zM3.113 4.5273a5.9936 5.9936 0 008.36 8.3594z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path107$c || (_path107$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.887 11.4727a5.9936 5.9936 0 00-8.36-8.3594zM3.113 4.5273a5.9936 5.9936 0 008.36 8.3594z" })), children); }); { Critical.propTypes = iconPropTypes; } var CriticalSeverity = /*#__PURE__*/React__default["default"].forwardRef(function CriticalSeverity(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$c); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path108$c || (_path108$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 13L3 13 3 3 13 13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path109$c || (_path109$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 13L3 13 3 3 13 13z" })), children); }); { CriticalSeverity.propTypes = iconPropTypes; } var Crop = /*#__PURE__*/React__default["default"].forwardRef(function Crop(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$c || (_path110$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,20H23V9H12V7H23a2,2,0,0,1,2,2Z" })), _path111$c || (_path111$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,23V2H7V7H2V9H7V23a2,2,0,0,0,2,2H23v5h2V25h5V23Z" })), children); }); { Crop.propTypes = iconPropTypes; } var CropGrowth = /*#__PURE__*/React__default["default"].forwardRef(function CropGrowth(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$c || (_path112$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,13a4.0045,4.0045,0,0,0,4-4V6H27a3.979,3.979,0,0,0-2.7468,1.1064A6.0041,6.0041,0,0,0,19,4H16V7a6.0066,6.0066,0,0,0,6,6h1V26H11V21h1a4.0045,4.0045,0,0,0,4-4V14H13a3.979,3.979,0,0,0-2.7468,1.1064A6.0041,6.0041,0,0,0,5,12H2v3a6.0066,6.0066,0,0,0,6,6H9v5H2v2H30V26H25V13Zm-1-3a2.002,2.002,0,0,1,2-2h1V9a2.002,2.002,0,0,1-2,2H25ZM11,18a2.002,2.002,0,0,1,2-2h1v1a2.002,2.002,0,0,1-2,2H11ZM9,19H8a4.0045,4.0045,0,0,1-4-4V14H5a4.0045,4.0045,0,0,1,4,4Zm14-8H22a4.0045,4.0045,0,0,1-4-4V6h1a4.0045,4.0045,0,0,1,4,4Z" })), children); }); { CropGrowth.propTypes = iconPropTypes; } var CropHealth = /*#__PURE__*/React__default["default"].forwardRef(function CropHealth(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$c || (_path113$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H10V30H2zM17 29a1 1 0 01-.7808-.3752L12.52 24H2V22H13a1 1 0 01.7808.3752l3.146 3.9322 5.2412-7.8621A1 1 0 0123.8 18.4L26.5 22H30v2H26a.9991.9991 0 01-.8-.4l-2.1523-2.8694-5.2159 7.824a.9986.9986 0 01-.7885.4443zM11 16V11h1a4.0045 4.0045 0 004-4V4H13a3.9779 3.9779 0 00-2.7468 1.1067A6.0034 6.0034 0 005 2H2V5a6.0066 6.0066 0 006 6H9v5H2v2H16V16zM13 6h1V7a2.002 2.002 0 01-2 2H11V8A2.002 2.002 0 0113 6zM8 9A4.0045 4.0045 0 014 5V4H5A4.0045 4.0045 0 019 8V9z" })), children); }); { CropHealth.propTypes = iconPropTypes; } var WatsonHealthCrossReference = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCrossReference(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$c || (_path114$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 24H15V26H11zM5 24H9V26H5zM23 24H27V26H23zM17 24H21V26H17zM9 22a4.92 4.92 0 014-2h6a5.22 5.22 0 014 2h2.3A6.87 6.87 0 0019 18H13a6.87 6.87 0 00-6.3 4zM24 28H26V30H24zM6 28H8V30H6zM16 16a7 7 0 117-7A7 7 0 0116 16zM16 4a5 5 0 00-5 5A5 5 0 0021 9 5 5 0 0016 4z" })), children); }); { WatsonHealthCrossReference.propTypes = iconPropTypes; } var CrossTab = /*#__PURE__*/React__default["default"].forwardRef(function CrossTab(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$c || (_path115$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H10A2.0023,2.0023,0,0,0,8,4V7H4A2.0023,2.0023,0,0,0,2,9V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM10,4H28V7H10ZM28,14H20V9h8ZM10,21V16h8v5Zm8,2v5H10V23ZM8,21H4V16H8ZM18,9v5H10V9Zm2,7h8v5H20ZM8,9v5H4V9ZM4,23H8v5H4Zm16,5V23h8v5Z" })), children); }); { CrossTab.propTypes = iconPropTypes; } var Crossroads = /*#__PURE__*/React__default["default"].forwardRef(function Crossroads(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$c || (_path116$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5859,6.5859A1.9862,1.9862,0,0,0,25.1719,6H17V2H15V12H6.8281a1.9862,1.9862,0,0,0-1.414.5859L2,16l3.4141,3.4141A1.9862,1.9862,0,0,0,6.8281,20H15V30h2V14h8.1719a1.9862,1.9862,0,0,0,1.414-.5859L30,10ZM6.8281,18l-2-2,2-2H15v4Zm18.3438-6H17V8h8.1719l2,2Z" })), children); }); { Crossroads.propTypes = iconPropTypes; } var CrowdReport = /*#__PURE__*/React__default["default"].forwardRef(function CrowdReport(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$c || (_path117$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.832,19.5547l-1.664-1.1094L17.4648,15H20V10H12v5h2v2H12a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2v5a2.0021,2.0021,0,0,1-2,2H18.5352Z" })), _path118$c || (_path118$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { CrowdReport.propTypes = iconPropTypes; } var CrowdReportFilled = /*#__PURE__*/React__default["default"].forwardRef(function CrowdReportFilled(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$c || (_path119$c = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16.832,19.5547l-1.664-1.1094L17.4648,15H20V10H12v5h2v2H12a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2h8a2.0021,2.0021,0,0,1,2,2v5a2.0021,2.0021,0,0,1-2,2H18.5352Z" })), _path120$c || (_path120$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm6,13a2.0023,2.0023,0,0,1-2,2H18.5352L16.832,19.5547l-1.664-1.1094L17.4648,15H20V10H12v5h2v2H12a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2h8a2.0023,2.0023,0,0,1,2,2Z" })), children); }); { CrowdReportFilled.propTypes = iconPropTypes; } var Csv = /*#__PURE__*/React__default["default"].forwardRef(function Csv(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$c || (_path121$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9L26 22 24 9 22 9 24.516 23 27.484 23 30 9 28 9zM18 23H12V21h6V17H14a2.002 2.002 0 01-2-2V11a2.002 2.002 0 012-2h6v2H14v4h4a2.002 2.002 0 012 2v4A2.002 2.002 0 0118 23zM10 23H4a2.0023 2.0023 0 01-2-2V11A2.002 2.002 0 014 9h6v2H4V21h6z" })), children); }); { Csv.propTypes = iconPropTypes; } var QCU1 = /*#__PURE__*/React__default["default"].forwardRef(function QCU1(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$c || (_path122$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 23H5a2 2 0 01-2-2V15a2 2 0 012-2h5v2H5v6h5zM18 23H14a2 2 0 01-2-2V9h2V21h4V9h2V21A2 2 0 0118 23zM27 21L27 9.01 22 9.01 22 11.01 25 11.01 25 21 22 21 22 23 30 23 30 21 27 21z" })), children); }); { QCU1.propTypes = iconPropTypes; } var QCU3 = /*#__PURE__*/React__default["default"].forwardRef(function QCU3(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$c || (_path123$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 23H5a2 2 0 01-2-2V15a2 2 0 012-2h5v2H5v6h5zM18 23H14a2 2 0 01-2-2V9h2V21h4V9h2V21A2 2 0 0118 23zM28 9H22v2h6v4H23v2h5v4H22v2h6a2 2 0 002-2V11A2 2 0 0028 9z" })), children); }); { QCU3.propTypes = iconPropTypes; } var Cube = /*#__PURE__*/React__default["default"].forwardRef(function Cube(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$c || (_path124$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5039,8.1362l-12-7a1,1,0,0,0-1.0078,0l-12,7A1,1,0,0,0,3,9V23a1,1,0,0,0,.4961.8638l12,7a1,1,0,0,0,1.0078,0l12-7A1,1,0,0,0,29,23V9A1,1,0,0,0,28.5039,8.1362ZM16,3.1577,26.0156,9,16,14.8423,5.9844,9ZM5,10.7412l10,5.833V28.2588L5,22.4258ZM17,28.2588V16.5742l10-5.833V22.4258Z" })), children); }); { Cube.propTypes = iconPropTypes; } var CubeView = /*#__PURE__*/React__default["default"].forwardRef(function CubeView(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle42$2 || (_circle42$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path125$c || (_path125$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.7769,15.4785A8.64,8.64,0,0,0,16,10a8.64,8.64,0,0,0-7.7769,5.4785L8,16l.2231.5215A8.64,8.64,0,0,0,16,22a8.64,8.64,0,0,0,7.7769-5.4785L24,16ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Z" })), _path126$c || (_path126$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5039,8.1362l-12-7a1,1,0,0,0-1.0078,0l-12,7A1,1,0,0,0,3,9V23a1,1,0,0,0,.4961.8638l12,7a1,1,0,0,0,1.0078,0l12-7A1,1,0,0,0,29,23V9A1,1,0,0,0,28.5039,8.1362ZM27,22.4258,16,28.8423,5,22.4258V9.5742L16,3.1577,27,9.5742Z" })), children); }); { CubeView.propTypes = iconPropTypes; } var Currency = /*#__PURE__*/React__default["default"].forwardRef(function Currency(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$c || (_path127$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,12V10H17V7H15v3H13a2.002,2.002,0,0,0-2,2v3a2.002,2.002,0,0,0,2,2h6v3H11v2h4v3h2V22h2a2.0023,2.0023,0,0,0,2-2V17a2.002,2.002,0,0,0-2-2H13V12Z" })), _path128$c || (_path128$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12.0353,12.0353,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14.0412,14.0412,0,0,0,16,2Z" })), children); }); { Currency.propTypes = iconPropTypes; } var CurrencyBaht = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyBaht(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$c || (_path129$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4023,15.6426A4.9727,4.9727,0,0,0,23,12V11a5.0059,5.0059,0,0,0-5-5H17V3H15V6H10V26h5v3h2V26h2a5.0059,5.0059,0,0,0,5-5V20A4.9834,4.9834,0,0,0,21.4023,15.6426ZM12,8h6a3.0033,3.0033,0,0,1,3,3v1a3.0033,3.0033,0,0,1-3,3H12ZM22,21a3.0033,3.0033,0,0,1-3,3H12V17h7a3.0033,3.0033,0,0,1,3,3Z" })), children); }); { CurrencyBaht.propTypes = iconPropTypes; } var CurrencyDollar = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyDollar(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$c || (_path130$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,20.5151c0-4.6152-3.78-5.1411-6.8171-5.563-3.31-.4609-5.1829-.86-5.1829-3.71C11,8.8491,13.5071,8,15.6538,8a6.7538,6.7538,0,0,1,5.5681,2.6279l1.5562-1.2558A8.6508,8.6508,0,0,0,17,6.0962V3H15V6.022c-3.6152.2192-6,2.26-6,5.22,0,4.73,3.83,5.2627,6.9075,5.69C19.16,17.3848,21,17.7744,21,20.5151,21,23.5474,17.8674,24,16,24c-3.4294,0-4.8782-.9639-6.2219-2.6279L8.2219,22.6279A8.4382,8.4382,0,0,0,15,25.9648V29h2V25.9551C20.7256,25.6509,23,23.6279,23,20.5151Z" })), children); }); { CurrencyDollar.propTypes = iconPropTypes; } var CurrencyEuro = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyEuro(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$c || (_path131$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,26c-3.6162,0-6.3328-2.2974-7.4456-6H19V18H9.1321A15.2782,15.2782,0,0,1,9,16c0-.33.01-.6641.0259-1H19V13H9.2371C9.8447,9.3525,11.81,6,17,6c3.8533,0,5.5315,1.6465,7.1282,4.4893l1.7436-.9786C24.2649,6.6484,22.0779,4,17,4,10.6448,4,7,8.374,7,16c0,7.0654,4.1121,12,10,12,5.0779,0,7.2649-2.6484,8.8718-5.5107l-1.7436-.9786C22.5315,24.3535,20.8533,26,17,26Z" })), children); }); { CurrencyEuro.propTypes = iconPropTypes; } var CurrencyLira = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyLira(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$c || (_path132$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,19a6.0066,6.0066,0,0,1-6,6H13V18.1079L21.2139,15V13L13,16.1079v-3L21.2139,10V8L13,11.1079V5H11v6.8647L8,13v2l3-1.1353v3L8,18v2l3-1.1353V27h6a8.0092,8.0092,0,0,0,8-8Z" })), children); }); { CurrencyLira.propTypes = iconPropTypes; } var CurrencyPound = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyPound(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$c || (_path133$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4531,25A8.7775,8.7775,0,0,0,14,20a10.6,10.6,0,0,0-.18-2H22V16H13.2175c-.0842-.2109-.17-.4194-.2556-.624A9.8586,9.8586,0,0,1,12,11a4.792,4.792,0,0,1,5-5,6.1234,6.1234,0,0,1,5.2222,2.6279l1.5556-1.2558A8.11,8.11,0,0,0,17,4a6.7781,6.7781,0,0,0-7,7,11.65,11.65,0,0,0,1.0559,5H8v2h3.7729A8.209,8.209,0,0,1,12,20c0,2.5234-1.4858,5-3,5v2H24V25Z" })), children); }); { CurrencyPound.propTypes = iconPropTypes; } var CurrencyRuble = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyRuble(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$c || (_path134$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,4H10V15H7v2h3v3H7v2h3v6h2V22h9V20H12V17h7a6.0067,6.0067,0,0,0,6-6V10A6.0067,6.0067,0,0,0,19,4Zm4,7a4.0045,4.0045,0,0,1-4,4H12V6h7a4.0045,4.0045,0,0,1,4,4Z" })), children); }); { CurrencyRuble.propTypes = iconPropTypes; } var CurrencyRupee = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyRupee(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$c || (_path135$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,7V5H8V7h5.5a4.4906,4.4906,0,0,1,4.45,4H8v2h9.95A4.4906,4.4906,0,0,1,13.5,17H8v2.3452L17.6169,28l1.3379-1.4863L10.606,19H13.5a6.5041,6.5041,0,0,0,6.4746-6H24V11H19.9746A6.4719,6.4719,0,0,0,18.18,7Z" })), children); }); { CurrencyRupee.propTypes = iconPropTypes; } var CurrencyShekel = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyShekel(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$c || (_path136$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,27H7V5h8a5.0057,5.0057,0,0,1,5,5V22H18V10a3.0033,3.0033,0,0,0-3-3H9Z" })), _path137$c || (_path137$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,27H12V10h2V25h6a3.0033,3.0033,0,0,0,3-3V5h2V22A5.0057,5.0057,0,0,1,20,27Z" })), children); }); { CurrencyShekel.propTypes = iconPropTypes; } var CurrencyWon = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyWon(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$c || (_path138$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 14L28 12 23.045 12 24 5 22 5 20 23 17 8 15 8 12 23 10 5 8 5 8.955 12 4 12 4 14 9.227 14 9.636 17 4 17 4 19 9.909 19 11 27 13 27 16 12 19 27 21 27 22.091 19 28 19 28 17 22.364 17 22.773 14 28 14z" })), children); }); { CurrencyWon.propTypes = iconPropTypes; } var CurrencyYen = /*#__PURE__*/React__default["default"].forwardRef(function CurrencyYen(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$c || (_path139$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.271 5L22 5 16 16 10 5 7.729 5 13.794 16 8 16 8 18 15 18 15 21 8 21 8 23 15 23 15 27 17 27 17 23 24 23 24 21 17 21 17 18 24 18 24 16 18.206 16 24.271 5z" })), children); }); { CurrencyYen.propTypes = iconPropTypes; } var Cursor_1 = /*#__PURE__*/React__default["default"].forwardRef(function Cursor_1(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$c || (_path140$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,28a1,1,0,0,1-.71-.29l-6.13-6.14-3.33,5a1,1,0,0,1-1,.44,1,1,0,0,1-.81-.7l-6-20A1,1,0,0,1,6.29,5l20,6a1,1,0,0,1,.7.81,1,1,0,0,1-.44,1l-5,3.33,6.14,6.13a1,1,0,0,1,0,1.42l-4,4A1,1,0,0,1,23,28Zm0-2.41L25.59,23l-7.16-7.15,5.25-3.5L7.49,7.49l4.86,16.19,3.5-5.25Z" })), children); }); { Cursor_1.propTypes = iconPropTypes; } var Cursor_2 = /*#__PURE__*/React__default["default"].forwardRef(function Cursor_2(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$c || (_path141$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.34,12.06l-22-8A1,1,0,0,0,4.06,5.34l8,22A1,1,0,0,0,13,28h0a1,1,0,0,0,.93-.63l3.84-9.6,9.6-3.84a1,1,0,0,0,0-1.87Zm-10.71,4h0l-.4.16-.16.4h0L13,24.2,6.67,6.67,24.2,13Z" })), children); }); { Cursor_2.propTypes = iconPropTypes; } var Cut = /*#__PURE__*/React__default["default"].forwardRef(function Cut(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$c || (_path142$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5,19.63,20.24,16l6.26-3.63a5,5,0,0,0-1.21-9.2A5.19,5.19,0,0,0,24,3a5,5,0,0,0-4.33,7.53,5,5,0,0,0,2.39,2.1l-3.82,2.21L4,6.6,3,8.34,16.24,16,3,23.68l1,1.74,14.24-8.26,3.82,2.21a5,5,0,0,0-2.39,2.1A5,5,0,0,0,24,29a5.19,5.19,0,0,0,1.29-.17,5,5,0,0,0,1.21-9.2ZM21.4,9.53a3,3,0,0,1,1.1-4.12,3,3,0,0,1,4.1,1.11,3,3,0,0,1-1.1,4.11h0A3,3,0,0,1,21.4,9.53Zm5.2,16a3,3,0,0,1-4.1,1.11,3,3,0,0,1-1.1-4.12,3,3,0,0,1,4.1-1.1h0A3,3,0,0,1,26.6,25.48Z" })), children); }); { Cut.propTypes = iconPropTypes; } var WatsonHealthCutInHalf = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthCutInHalf(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$c || (_path143$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4ZM4,6H16V26H4Z" })), children); }); { WatsonHealthCutInHalf.propTypes = iconPropTypes; } var CutOut = /*#__PURE__*/React__default["default"].forwardRef(function CutOut(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$c || (_path144$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.05 13.7326L18.05 12 7.928 17.8457 6.9312 17.27a2.9524 2.9524 0 00.6672-.769A3 3 0 103.5 17.5986l2.428 1.4019L3.5 20.4023a3.0342 3.0342 0 103.4407.3223l.987-.5693L14.5914 24l1-1.7294-5.6634-3.27zM4.0344 15.26a1 1 0 11.4658.6069A.9929.9929 0 014.0344 15.26zM4.9988 22a1 1 0 11-.8645 1.5A1 1 0 014.9988 22zM17 26H21V28H17zM10 26H14V28H10z" })), _path145$c || (_path145$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28H24V26h4V4H7V8H5V4A2.0023,2.0023,0,0,1,7,2H28a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,28,28Z" })), children); }); { CutOut.propTypes = iconPropTypes; } var QCY = /*#__PURE__*/React__default["default"].forwardRef(function QCY(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$c || (_path146$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 23H10a2 2 0 01-2-2V15a2 2 0 012-2h5v2H10v6h5zM24 9L22 9 20 16 18 9 16 9 19 18 19 23 21 23 21 18 24 9z" })), children); }); { QCY.propTypes = iconPropTypes; } var Cyclist = /*#__PURE__*/React__default["default"].forwardRef(function Cyclist(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$c || (_path147$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 30a6 6 0 116-6A6.0069 6.0069 0 0125 30zm0-10a4 4 0 104 4A4.0045 4.0045 0 0025 20zM7 30a6 6 0 116-6A6.0069 6.0069 0 017 30zM7 20a4 4 0 104 4A4.0045 4.0045 0 007 20z" })), _path148$c || (_path148$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 27H15V20.4139L9.5849 15a2.003 2.003 0 010-2.8292l4.5859-4.5859a2.0024 2.0024 0 012.8286 0L21.414 12H27v1.9993L20.5853 14l-5-5L11 13.5849l6 6zM21.5 8A3.5 3.5 0 1125 4.5 3.5042 3.5042 0 0121.5 8zm0-5A1.5 1.5 0 1023 4.5 1.5017 1.5017 0 0021.5 3z" })), children); }); { Cyclist.propTypes = iconPropTypes; } var QCZ = /*#__PURE__*/React__default["default"].forwardRef(function QCZ(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$c || (_path149$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 23H9a2 2 0 01-2-2V15a2 2 0 012-2h5v2H9v6h5zM24 9L16 9 16 11 22 11 16 21 16 23 24 23 24 21 18 21 24 11 24 9z" })), children); }); { QCZ.propTypes = iconPropTypes; } var Dashboard = /*#__PURE__*/React__default["default"].forwardRef(function Dashboard(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$c || (_path150$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 21H26V26H24zM20 16H22V26H20zM11 26a5.0059 5.0059 0 01-5-5H8a3 3 0 103-3V16a5 5 0 010 10z" })), _path151$c || (_path151$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2.002,2.002,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,9H14V4H28ZM12,4v7H4V4ZM4,28V13H28.0007l.0013,15Z" })), children); }); { Dashboard.propTypes = iconPropTypes; } var DashboardReference = /*#__PURE__*/React__default["default"].forwardRef(function DashboardReference(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$c || (_path152$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM24 21H26V26H24zM20 16H22V26H20zM16 18H18V26H16z" })), _path153$c || (_path153$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2.002,2.002,0,0,0,2,4V16H4V13H28.001l.001,15H16v2H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM12,11H4V4h8Zm2,0V4H28l.0007,7Z" })), children); }); { DashboardReference.propTypes = iconPropTypes; } var Data_1 = /*#__PURE__*/React__default["default"].forwardRef(function Data_1(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$c || (_path154$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 6H28V8H15zM15 24H28V26H15zM4 15H17V17H4zM7 11a4 4 0 114-4A4 4 0 017 11zM7 5A2 2 0 109 7 2 2 0 007 5zM7 29a4 4 0 114-4A4 4 0 017 29zm0-6a2 2 0 102 2A2 2 0 007 23zM25 20a4 4 0 114-4A4 4 0 0125 20zm0-6a2 2 0 102 2A2 2 0 0025 14z" })), children); }); { Data_1.propTypes = iconPropTypes; } var Data_2 = /*#__PURE__*/React__default["default"].forwardRef(function Data_2(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$c || (_path155$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6H15V8H4zM18 6H28V8H18zM21 12H28V14H21zM11 12H18V14H11zM4 12H8V14H4zM4 18H28V20H4zM4 24H21V26H4zM24 24H28V26H24z" })), children); }); { Data_2.propTypes = iconPropTypes; } var DataBase = /*#__PURE__*/React__default["default"].forwardRef(function DataBase(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$c || (_path156$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V5A2,2,0,0,0,24,3Zm0,2v6H8V5ZM8,19V13H24v6Zm0,8V21H24v6Z" })), _circle43$2 || (_circle43$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "8", r: "1" })), _circle44$2 || (_circle44$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "16", r: "1" })), _circle45$1 || (_circle45$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "24", r: "1" })), children); }); { DataBase.propTypes = iconPropTypes; } var DataBaseAlt = /*#__PURE__*/React__default["default"].forwardRef(function DataBaseAlt(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$c || (_path157$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 8H12V10H7zM7 12H12V14H7zM7 16H12V18H7zM20 8H25V10H20zM20 12H25V14H20zM20 16H25V18H20z" })), _path158$c || (_path158$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2.0023,2.0023,0,0,0,2,6V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4ZM4,6H15V28H4ZM17,28V6H28V28Z" })), children); }); { DataBaseAlt.propTypes = iconPropTypes; } var DataCenter = /*#__PURE__*/React__default["default"].forwardRef(function DataCenter(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$c || (_path159$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H23V6a2.0023,2.0023,0,0,0-2-2H11A2.0023,2.0023,0,0,0,9,6v4H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V12A2.0023,2.0023,0,0,0,28,10ZM4,28V12H9v2H7v2H9v2H7v2H9v2H7v2H9v4Zm17,0H11V6H21Zm7,0H23V24h2V22H23V20h2V18H23V16h2V14H23V12h5Z" })), _path160$c || (_path160$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 8H18V10H14zM14 12H18V14H14zM14 16H18V18H14z" })), children); }); { DataCenter.propTypes = iconPropTypes; } var DataCheck = /*#__PURE__*/React__default["default"].forwardRef(function DataCheck(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$c || (_path161$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27.18L20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z" })), _circle46$1 || (_circle46$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "8", r: "1" })), _circle47$1 || (_circle47$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "16", r: "1" })), _circle48$1 || (_circle48$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "24", r: "1" })), _path162$c || (_path162$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2h8V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z" })), children); }); { DataCheck.propTypes = iconPropTypes; } var DataConnected = /*#__PURE__*/React__default["default"].forwardRef(function DataConnected(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$c || (_path163$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30L24 30 24 28 28 28 28 4 24 4 24 2 30 2 30 30z" })), _path164$c || (_path164$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.91,19.59a4.51,4.51,0,0,0-2.66-3.24,4.55,4.55,0,0,0-3.5,0,4.94,4.94,0,0,0-.64.35L15.3,13.89a4.53,4.53,0,1,0-1.41,1.41l2.81,2.81a4.48,4.48,0,0,0-.61,3.3,4.51,4.51,0,0,0,2.66,3.24,4.55,4.55,0,0,0,3.5,0,4.51,4.51,0,0,0,2.66-3.24,4.65,4.65,0,0,0,0-1.82ZM11.5,14A2.5,2.5,0,1,1,14,11.5,2.5,2.5,0,0,1,11.5,14Z" })), _path165$c || (_path165$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30L2 30 2 2 8 2 8 4 4 4 4 28 8 28 8 30z" })), children); }); { DataConnected.propTypes = iconPropTypes; } var DataError = /*#__PURE__*/React__default["default"].forwardRef(function DataError(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle49$1 || (_circle49$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "8", r: "1" })), _circle50$1 || (_circle50$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "16", r: "1" })), _circle51 || (_circle51 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "24", r: "1" })), _path166$c || (_path166$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H18V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z" })), _path167$c || (_path167$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 24.415L27.586 23 25 25.587 22.414 23 21 24.415 23.586 27 21 29.586 22.414 31 25 28.414 27.586 31 29 29.586 26.414 27 29 24.415z" })), children); }); { DataError.propTypes = iconPropTypes; } var DataFormat = /*#__PURE__*/React__default["default"].forwardRef(function DataFormat(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$c || (_path168$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 11H26V13H18zM6 19H14V21H6zM10 16a4 4 0 114-4A4.0045 4.0045 0 0110 16zm0-6a2 2 0 102 2A2.002 2.002 0 0010 10zM22 24a4 4 0 114-4A4.0045 4.0045 0 0122 24zm0-6a2 2 0 102 2A2.002 2.002 0 0022 18z" })), _path169$c || (_path169$c = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DataFormat.propTypes = iconPropTypes; } var DataReference = /*#__PURE__*/React__default["default"].forwardRef(function DataReference(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$c || (_path170$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 13L25 4 23 4 23 6 20 6 20 8 23 8 23 13 20 13 20 15 28 15 28 13 25 13zM8.5 6A3.5 3.5 0 115 9.5 3.504 3.504 0 018.5 6m0-2A5.5 5.5 0 1014 9.5 5.5 5.5 0 008.5 4zM23.5 20A3.5 3.5 0 1120 23.5 3.504 3.504 0 0123.5 20m0-2A5.5 5.5 0 1029 23.5 5.5 5.5 0 0023.5 18zM6 19L6 21 9.586 21 4 26.586 5.414 28 11 22.414 11 26 13 26 13 19 6 19z" })), children); }); { DataReference.propTypes = iconPropTypes; } var DataSet = /*#__PURE__*/React__default["default"].forwardRef(function DataSet(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$c || (_path171$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 13L25 4 23 4 23 6 20 6 20 8 23 8 23 13 20 13 20 15 28 15 28 13 25 13zM8.5 6A3.5 3.5 0 115 9.5 3.5 3.5 0 018.5 6m0-2A5.5 5.5 0 1014 9.5 5.5 5.5 0 008.5 4zM8.5 20A3.5 3.5 0 115 23.5 3.5 3.5 0 018.5 20m0-2A5.5 5.5 0 1014 23.5 5.5 5.5 0 008.5 18zM23.5 20A3.5 3.5 0 1120 23.5 3.5 3.5 0 0123.5 20m0-2A5.5 5.5 0 1029 23.5 5.5 5.5 0 0023.5 18z" })), children); }); { DataSet.propTypes = iconPropTypes; } var DataStructured = /*#__PURE__*/React__default["default"].forwardRef(function DataStructured(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle52 || (_circle52 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "7", r: "1" })), _path172$c || (_path172$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22.14V18a2,2,0,0,0-2-2H17V12h9a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2h9v4H7a2,2,0,0,0-2,2v4.14a4,4,0,1,0,2,0V18h8v4H12v8h8V22H17V18h8v4.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26Zm10-2v4H14V24ZM6,10V4H26v6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" })), children); }); { DataStructured.propTypes = iconPropTypes; } var DataUnstructured = /*#__PURE__*/React__default["default"].forwardRef(function DataUnstructured(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$c || (_path173$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 24a2 2 0 11-2 2 2 2 0 012-2m0-2a4 4 0 104 4A4 4 0 006 22zM16 4a2 2 0 11-2 2 2 2 0 012-2m0-2a4 4 0 104 4A4 4 0 0016 2zM26 4a2 2 0 11-2 2 2 2 0 012-2m0-2a4 4 0 104 4A4 4 0 0026 2zM18 24v4H14V24h4m2-2H12v8h8z" })), _path174$c || (_path174$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22.14V17a2,2,0,0,0-2-2H7V10h3V2H2v8H5v5a2,2,0,0,0,2,2H25v5.14a4,4,0,1,0,2,0ZM4,4H8V8H4ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" })), children); }); { DataUnstructured.propTypes = iconPropTypes; } var DataView = /*#__PURE__*/React__default["default"].forwardRef(function DataView(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle53 || (_circle53 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "24", r: "2" })), _path175$c || (_path175$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" })), _circle54 || (_circle54 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "8", r: "1" })), _circle55 || (_circle55 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "16", r: "1" })), _circle56 || (_circle56 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "24", r: "1" })), _path176$c || (_path176$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,21h7V19H5V13H21v3h2V5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2h7V27H5ZM5,5H21v6H5Z" })), children); }); { DataView.propTypes = iconPropTypes; } var DataViewAlt = /*#__PURE__*/React__default["default"].forwardRef(function DataViewAlt(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle57 || (_circle57 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "24", r: "2" })), _path177$c || (_path177$c = /*#__PURE__*/React__default["default"].createElement("path", { 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 28zM7 17H12V19H7zM7 12H19V14H7zM7 7H19V9H7z" })), _path178$c || (_path178$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,2,4,2A2.0058,2.0058,0,0,0,2,4V28a2.0058,2.0058,0,0,0,2,2h8V28H4V4H22V15h2V4A2.0058,2.0058,0,0,0,22,2Z" })), children); }); { DataViewAlt.propTypes = iconPropTypes; } var DataAccessor = /*#__PURE__*/React__default["default"].forwardRef(function DataAccessor(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$c || (_path179$c = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle58 || (_circle58 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path180$c || (_path180$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,13a2.9609,2.9609,0,0,0-1.2854.3008L17.4141,11l2.3-2.3008A2.9609,2.9609,0,0,0,21,9a3,3,0,1,0-3-3,2.9665,2.9665,0,0,0,.3,1.2852L16,9.5859,13.7,7.2852A2.9665,2.9665,0,0,0,14,6a3,3,0,1,0-3,3,2.9609,2.9609,0,0,0,1.2854-.3008L14.5859,11l-2.3005,2.3008A2.9609,2.9609,0,0,0,11,13a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L16,12.4141l2.3,2.3007A2.9665,2.9665,0,0,0,18,16a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,5ZM10,6a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,10,6Zm1,11a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,17Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,21,17Z" })), children); }); { DataAccessor.propTypes = iconPropTypes; } var DataBackup = /*#__PURE__*/React__default["default"].forwardRef(function DataBackup(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle59 || (_circle59 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "7", r: "1" })), _circle60 || (_circle60 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "15", r: "1" })), _circle61 || (_circle61 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "23", r: "1" })), _path181$c || (_path181$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,26H4V20h8V18H4V12H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V26a2,2,0,0,0,2,2h8ZM4,4H20v6H4Z" })), _path182$c || (_path182$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,17v2.4131A6.996,6.996,0,1,0,22,30V28a5,5,0,1,1,4.5762-7H24v2h6V17Z" })), children); }); { DataBackup.propTypes = iconPropTypes; } var DataBin = /*#__PURE__*/React__default["default"].forwardRef(function DataBin(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$c || (_path183$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 2H20a2.0023 2.0023 0 00-2 2V28a2.0023 2.0023 0 002 2h8a2.0023 2.0023 0 002-2V4A2.0023 2.0023 0 0028 2zm0 2v7H20V4zm0 9v6H20V13zM20 28V21h8v7zM12 15L10 15 10 13 8 13 8 15 6 15 6 17 8 17 8 19 10 19 10 17 12 17 12 15z" })), _path184$c || (_path184$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,6V4H10A2.0023,2.0023,0,0,0,8,6V9.08A6.99,6.99,0,0,0,8,22.92V26a2.0023,2.0023,0,0,0,2,2h6V26H10V22.92A6.99,6.99,0,0,0,10,9.08V6ZM14,16a5,5,0,1,1-5-5A5.0059,5.0059,0,0,1,14,16Z" })), children); }); { DataBin.propTypes = iconPropTypes; } var DataBlob = /*#__PURE__*/React__default["default"].forwardRef(function DataBlob(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$c || (_path185$c = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path186$c || (_path186$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 7H15V14H13zM8 7H10V14H8zM22 14H20a2.0021 2.0021 0 01-2-2V9a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v3A2.0021 2.0021 0 0122 14zM20 9v3h2V9zM22 18H24V25H22zM8 18H10V25H8zM17 25H15a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v3A2.0021 2.0021 0 0117 25zm-2-5v3h2V20z" })), children); }); { DataBlob.propTypes = iconPropTypes; } var DataClass = /*#__PURE__*/React__default["default"].forwardRef(function DataClass(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$c || (_path187$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,16a3.9612,3.9612,0,0,0-2.02.5657l-2.8586-2.8585,2.293-2.293a2,2,0,0,0,0-2.8284l-6-6a2,2,0,0,0-2.8284,0l-6,6a2,2,0,0,0,0,2.8284l2.293,2.293L8.02,16.5657A4.043,4.043,0,1,0,9.4343,17.98l2.8585-2.8586,2.293,2.293A1.9773,1.9773,0,0,0,15,17.7233V22H12v8h8V22H17V17.7233a1.9773,1.9773,0,0,0,.4142-.3091l2.293-2.293L22.5657,17.98A3.9885,3.9885,0,1,0,26,16ZM8,20a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,20Zm10,4v4H14V24h4Zm-2-8-6-6,6-6,6,6Zm10,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,22Z" })), children); }); { DataClass.propTypes = iconPropTypes; } var DataCollection = /*#__PURE__*/React__default["default"].forwardRef(function DataCollection(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle62 || (_circle62 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path188$c || (_path188$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 17L30 15 23.83 15 26.41 12.41 25 11 20 16 25 21 26.41 19.59 23.83 17 30 17zM15 23.83L15 30 17 30 17 23.83 19.59 26.41 21 25 16 20 11 25 12.41 26.41 15 23.83zM7 11L5.59 12.41 8.17 15 2 15 2 17 8.17 17 5.59 19.59 7 21 12 16 7 11zM17 8.17L17 2 15 2 15 8.17 12.41 5.59 11 7 16 12 21 7 19.59 5.59 17 8.17z" })), children); }); { DataCollection.propTypes = iconPropTypes; } var DataDefinition = /*#__PURE__*/React__default["default"].forwardRef(function DataDefinition(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle63 || (_circle63 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "14", r: "2" })), _path189$c || (_path189$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,30a.9967.9967,0,0,1-.707-.293L8.5859,19A2.0126,2.0126,0,0,1,8,17.5859V10a2.002,2.002,0,0,1,2-2h7.5859A1.9864,1.9864,0,0,1,19,8.5859L29.707,19.293a.9994.9994,0,0,1,0,1.414l-9,9A.9967.9967,0,0,1,20,30ZM10,10v7.5859l10,10L27.5859,20l-10-10Z" })), _path190$c || (_path190$c = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8H28V4H4V28h8Z" })), children); }); { DataDefinition.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$b, _switch$4, _switch2$1, _path2$b, _path3$b, _switch3, _path4$b, _path5$b, _path6$b, _path7$b, _path8$b, _path9$b, _path10$b, _path11$b, _path12$b, _path13$b, _path14$b, _path15$b, _path16$b, _path17$b, _path18$b, _path19$b, _path20$b, _path21$b, _path22$b, _path23$b, _path24$b, _path25$b, _circle$b, _path26$b, _circle2$b, _path27$b, _path28$b, _path29$b, _path30$b, _path31$b, _path32$b, _path33$b, _path34$b, _path35$b, _path36$b, _path37$b, _path38$b, _path39$b, _path40$b, _path41$b, _path42$b, _path43$b, _path44$b, _path45$b, _path46$b, _path47$b, _path48$b, _path49$b, _path50$b, _path51$b, _path52$b, _path53$b, _path54$b, _path55$b, _path56$b, _path57$b, _path58$b, _path59$b, _path60$b, _path61$b, _path62$b, _path63$b, _path64$b, _path65$b, _path66$b, _path67$b, _path68$b, _path69$b, _path70$b, _path71$b, _path72$b, _path73$b, _path74$b, _path75$b, _path76$b, _path77$b, _path78$b, _path79$b, _path80$b, _path81$b, _path82$b, _path83$b, _path84$b, _path85$b, _path86$b, _path87$b, _path88$b, _path89$b, _path90$b, _path91$b, _path92$b, _path93$b, _path94$b, _path95$b, _path96$b, _path97$b, _path98$b, _path99$b, _path100$b, _path101$b, _path102$b, _path103$b, _path104$b, _path105$b, _path106$b, _path107$b, _path108$b, _circle3$b, _path109$b, _path110$b, _path111$b, _circle4$a, _path112$b, _path113$b, _path114$b, _circle5$a, _path115$b, _path116$b, _path117$b, _path118$b, _path119$b, _path120$b, _path121$b, _path122$b, _path123$b, _path124$b, _path125$b, _path126$b, _path127$b, _path128$b, _path129$b, _path130$b, _path131$b, _path132$b, _path133$b, _path134$b, _path135$b, _path136$b, _path137$b, _path138$b, _path139$b, _path140$b, _path141$b, _path142$b, _path143$b, _path144$b, _path145$b, _path146$b, _path147$b, _path148$b, _path149$b, _path150$b, _path151$b, _path152$b, _path153$b, _path154$b, _path155$b, _path156$b, _path157$b, _path158$b, _path159$b, _path160$b, _path161$b, _path162$b, _path163$b, _path164$b, _path165$b, _path166$b, _path167$b, _circle6$a, _path168$b, _path169$b, _path170$b, _path171$b, _path172$b, _path173$b, _path174$b, _path175$b, _circle7$a, _path176$b, _path177$b, _path178$b, _path179$b, _path180$b, _path181$b, _path182$b, _path183$b, _circle8$a, _path184$b, _path185$b, _path186$b, _path187$b, _path188$b, _path189$b, _path190$b, _path191$b, _path192$b, _path193$b, _circle9$a, _path194$b, _path195$a; var _excluded$g = ["children", "size"], _excluded2$b = ["children", "size"], _excluded3$b = ["children", "size"], _excluded4$b = ["children", "size"], _excluded5$b = ["children", "size"], _excluded6$b = ["children", "size"], _excluded7$b = ["children", "size"], _excluded8$b = ["children", "size"], _excluded9$b = ["children", "size"], _excluded10$b = ["children", "size"], _excluded11$b = ["children", "size"], _excluded12$b = ["children", "size"], _excluded13$b = ["children", "size"], _excluded14$b = ["children", "size"], _excluded15$b = ["children", "size"], _excluded16$b = ["children", "size"], _excluded17$b = ["children", "size"], _excluded18$b = ["children", "size"], _excluded19$b = ["children", "size"], _excluded20$b = ["children", "size"], _excluded21$b = ["children", "size"], _excluded22$b = ["children", "size"], _excluded23$b = ["children", "size"], _excluded24$b = ["children", "size"], _excluded25$b = ["children", "size"], _excluded26$b = ["children", "size"], _excluded27$b = ["children", "size"], _excluded28$b = ["children", "size"], _excluded29$b = ["children", "size"], _excluded30$b = ["children", "size"], _excluded31$b = ["children", "size"], _excluded32$b = ["children", "size"], _excluded33$b = ["children", "size"], _excluded34$b = ["children", "size"], _excluded35$b = ["children", "size"], _excluded36$b = ["children", "size"], _excluded37$b = ["children", "size"], _excluded38$b = ["children", "size"], _excluded39$b = ["children", "size"], _excluded40$b = ["children", "size"], _excluded41$b = ["children", "size"], _excluded42$b = ["children", "size"], _excluded43$b = ["children", "size"], _excluded44$b = ["children", "size"], _excluded45$b = ["children", "size"], _excluded46$b = ["children", "size"], _excluded47$b = ["children", "size"], _excluded48$b = ["children", "size"], _excluded49$b = ["children", "size"], _excluded50$b = ["children", "size"], _excluded51$b = ["children", "size"], _excluded52$b = ["children", "size"], _excluded53$b = ["children", "size"], _excluded54$b = ["children", "size"], _excluded55$b = ["children", "size"], _excluded56$b = ["children", "size"], _excluded57$b = ["children", "size"], _excluded58$b = ["children", "size"], _excluded59$b = ["children", "size"], _excluded60$b = ["children", "size"], _excluded61$b = ["children", "size"], _excluded62$b = ["children", "size"], _excluded63$b = ["children", "size"], _excluded64$b = ["children", "size"], _excluded65$b = ["children", "size"], _excluded66$b = ["children", "size"], _excluded67$b = ["children", "size"], _excluded68$b = ["children", "size"], _excluded69$b = ["children", "size"], _excluded70$b = ["children", "size"], _excluded71$b = ["children", "size"], _excluded72$b = ["children", "size"], _excluded73$b = ["children", "size"], _excluded74$b = ["children", "size"], _excluded75$b = ["children", "size"], _excluded76$b = ["children", "size"], _excluded77$b = ["children", "size"], _excluded78$b = ["children", "size"], _excluded79$b = ["children", "size"], _excluded80$b = ["children", "size"], _excluded81$b = ["children", "size"], _excluded82$b = ["children", "size"], _excluded83$b = ["children", "size"], _excluded84$b = ["children", "size"], _excluded85$b = ["children", "size"], _excluded86$b = ["children", "size"], _excluded87$b = ["children", "size"], _excluded88$b = ["children", "size"], _excluded89$b = ["children", "size"], _excluded90$b = ["children", "size"], _excluded91$b = ["children", "size"], _excluded92$b = ["children", "size"], _excluded93$b = ["children", "size"], _excluded94$b = ["children", "size"], _excluded95$b = ["children", "size"], _excluded96$b = ["children", "size"], _excluded97$b = ["children", "size"], _excluded98$b = ["children", "size"], _excluded99$b = ["children", "size"], _excluded100$b = ["children", "size"], _excluded101$b = ["children", "size"], _excluded102$b = ["children", "size"], _excluded103$b = ["children", "size"], _excluded104$b = ["children", "size"], _excluded105$b = ["children", "size"], _excluded106$b = ["children", "size"], _excluded107$b = ["children", "size"], _excluded108$b = ["children", "size"], _excluded109$b = ["children", "size"], _excluded110$b = ["children", "size"], _excluded111$b = ["children", "size"], _excluded112$b = ["children", "size"], _excluded113$b = ["children", "size"], _excluded114$b = ["children", "size"], _excluded115$b = ["children", "size"], _excluded116$b = ["children", "size"], _excluded117$b = ["children", "size"], _excluded118$b = ["children", "size"], _excluded119$b = ["children", "size"], _excluded120$b = ["children", "size"], _excluded121$b = ["children", "size"], _excluded122$b = ["children", "size"], _excluded123$b = ["children", "size"], _excluded124$a = ["children", "size"], _excluded125$a = ["children", "size"]; var didWarnAboutDeprecation$1 = {}; var DataDiode = /*#__PURE__*/React__default["default"].forwardRef(function DataDiode(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$g); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$b || (_path$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15H27V7H25v8H22V7H20v7.8262L7.5239,7.1484A1,1,0,0,0,6,8v7H2v2H6v7a1,1,0,0,0,1.5239.8516L20,17.1738V25h2V17h3v8h2V17h3ZM8,22.21V9.79L18.0918,16Z" })), children); }); { DataDiode.propTypes = iconPropTypes; } var DataEnrichment = /*#__PURE__*/React__default["default"].forwardRef(function DataEnrichment(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch$4 || (_switch$4 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13H30V15H28z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.2 3.8H26.2V5.8H24.2z", transform: "rotate(-45.001 25.192 4.808)" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 0H17V2H15z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.8 3.8H7.8V5.8H5.8z", transform: "rotate(-134.999 6.808 4.808)" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 13H4V15H2zM13 30H19V32H13zM11 26H21V28H11zM16 4C10.5 4 6 8.5 6 14c0 4.4 2 6.3 3.5 7.6 1 .9 1.5 1.5 1.5 2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4 18.9 8 17.5 8 14c0-4.4 3.6-8 8-8s8 3.6 8 8c0 3.5-1.4 4.9-2.8 6.1-1.1 1-2.2 2-2.2 3.9h2c0-.9.5-1.5 1.5-2.4C24 20.3 26 18.4 26 14 26 8.5 21.5 4 16 4z" })))), children); }); { DataEnrichment.propTypes = iconPropTypes; } var DataEnrichmentAdd = /*#__PURE__*/React__default["default"].forwardRef(function DataEnrichmentAdd(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch2$1 || (_switch2$1 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13H30V15H28z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.2 3.8H26.2V5.8H24.2z", transform: "rotate(-45.001 25.192 4.808)" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 0H17V2H15z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.8 3.8H7.8V5.8H5.8z", transform: "rotate(-134.999 6.808 4.808)" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 13H4V15H2zM20 13L17 13 17 10 15 10 15 13 12 13 12 15 15 15 15 18 17 18 17 15 20 15zM13 30H19V32H13zM11 26H21V28H11z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4C10.5,4,6,8.5,6,14c0,4.4,2,6.3,3.5,7.6c1,0.9,1.5,1.5,1.5,2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4,18.9,8,17.5,8,14 c0-4.4,3.6-8,8-8s8,3.6,8,8c0,3.5-1.4,4.9-2.8,6.1c-1.1,1-2.2,2-2.2,3.9h2c0-0.9,0.5-1.5,1.5-2.4C24,20.3,26,18.4,26,14 C26,8.5,21.5,4,16,4z" })))), children); }); { DataEnrichmentAdd.propTypes = iconPropTypes; } var DataPlayer = /*#__PURE__*/React__default["default"].forwardRef(function DataPlayer(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$b || (_path2$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 24v2H15.8164a2.983 2.983 0 00-5.6328 0H4V24H2v6H4V28h6.1836a2.983 2.983 0 005.6328 0H28v2h2V24zM13 7.5L13 16.499 13 16.499 21 12 13 7.5z" })), _path3$b || (_path3$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22A10,10,0,1,1,26,12,10.0113,10.0113,0,0,1,16,22ZM16,4a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,16,4Z" })), children); }); { DataPlayer.propTypes = iconPropTypes; } var DataQualityDefinition = /*#__PURE__*/React__default["default"].forwardRef(function DataQualityDefinition(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch3 || (_switch3 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.6 24.4L27.2 27 27.2 27 24.6 29.6 26 31 30 27 26 23zM22.4 24.4L19.8 27 19.8 27 22.4 29.6 21 31 17 27 21 23z" }), /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "8", r: "1" }), /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "16", r: "1" }), /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "24", r: "1" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,3H8C6.9,3,6,3.9,6,5v22c0,1.1,0.9,2,2,2h7v-2H8v-6h18V5C26,3.9,25.1,3,24,3z M24,19H8v-6h16V19z M24,11H8V5h16V11z" })))), children); }); { DataQualityDefinition.propTypes = iconPropTypes; } var DataRefinery = /*#__PURE__*/React__default["default"].forwardRef(function DataRefinery(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$b || (_path4$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,30a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,22Z" })), _path5$b || (_path5$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,26H14V24H24V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z" })), _path6$b || (_path6$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z" })), children); }); { DataRefinery.propTypes = iconPropTypes; } var DataRefineryReference = /*#__PURE__*/React__default["default"].forwardRef(function DataRefineryReference(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$b || (_path7$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM28 12H22a2.0023 2.0023 0 01-2-2V4a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0128 12zM22 4v6h6V4z" })), _path8$b || (_path8$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,26H16V24h8V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z" })), children); }); { DataRefineryReference.propTypes = iconPropTypes; } var DataShare = /*#__PURE__*/React__default["default"].forwardRef(function DataShare(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$b || (_path9$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 25V15.8281l-3.5859 3.586L0 18l6-6 6 6-1.4141 1.4141L7 15.8281V25H19v2H7A2.0024 2.0024 0 015 25zM24 22h4a2.002 2.002 0 012 2v4a2.002 2.002 0 01-2 2H24a2.002 2.002 0 01-2-2V24A2.002 2.002 0 0124 22zm4 6V24H23.9985L24 28zM27 6v9.1719l3.5859-3.586L32 13l-6 6-6-6 1.4141-1.4141L25 15.1719V6H13V4H25A2.0024 2.0024 0 0127 6zM2 6H8V8H2zM2 2H10V4H2z" })), children); }); { DataShare.propTypes = iconPropTypes; } var DataTable = /*#__PURE__*/React__default["default"].forwardRef(function DataTable(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$b || (_path10$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 18H12V20H8zM14 18H18V20H14zM8 14H12V16H8zM14 22H18V24H14zM20 14H24V16H20zM20 22H24V24H20z" })), _path11$b || (_path11$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,2,0,4H5V5ZM5,27V11H27l0,16Z" })), children); }); { DataTable.propTypes = iconPropTypes; } var DataTableReference = /*#__PURE__*/React__default["default"].forwardRef(function DataTableReference(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$b || (_path12$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM20 22H24V24H20zM16 18H20V20H16zM20 14H24V16H20zM8 14H12V16H8z" })), _path13$b || (_path13$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.0027,2.0027,0,0,0,3,5V16H5V11H27V27H16v2H27a2.0027,2.0027,0,0,0,2-2V5A2.0027,2.0027,0,0,0,27,3Zm0,6H5V5H27Z" })), children); }); { DataTableReference.propTypes = iconPropTypes; } var DataVis_1 = /*#__PURE__*/React__default["default"].forwardRef(function DataVis_1(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$b || (_path14$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a3.9553,3.9553,0,0,0-2.0193.5667L20.167,18.7529a4.9654,4.9654,0,0,0,0-5.5058L22.714,10.7A3.0284,3.0284,0,1,0,21.3,9.286l-2.547,2.547a4.9654,4.9654,0,0,0-5.5058,0L9.4332,8.0191A3.9553,3.9553,0,0,0,10,6a4,4,0,1,0-4,4,3.9553,3.9553,0,0,0,2.0191-.5668l3.8139,3.8139a4.9654,4.9654,0,0,0,0,5.5058L8.0192,22.5668A3.9556,3.9556,0,0,0,6,22a4,4,0,1,0,4,4,3.9553,3.9553,0,0,0-.5667-2.0192l3.8138-3.8138A4.9686,4.9686,0,0,0,15,20.8989v3.2848a3,3,0,1,0,2,0V20.8989a4.9686,4.9686,0,0,0,1.7529-.7319l3.8138,3.8137A3.9553,3.9553,0,0,0,22,26a4,4,0,1,0,4-4ZM16,13a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,13ZM4,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,28Zm20,0a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z" })), children); }); { DataVis_1.propTypes = iconPropTypes; } var DataVis_2 = /*#__PURE__*/React__default["default"].forwardRef(function DataVis_2(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$b || (_path15$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H17a2.002,2.002,0,0,0-2,2v6H4a2.002,2.002,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H15a2.0023,2.0023,0,0,0,2-2V22H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2,0,4H17V4ZM15.0009,22H4V18H15ZM17,10H28.0007l.0005,4H17Zm-2,2v4H4V12ZM4,28V24H15.0011l0,4Zm13-8V16H28.0015l0,4Z" })), children); }); { DataVis_2.propTypes = iconPropTypes; } var DataVis_3 = /*#__PURE__*/React__default["default"].forwardRef(function DataVis_3(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$b || (_path16$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,3a2.9913,2.9913,0,0,0-2.8163,2H21.858a3.9807,3.9807,0,0,0-7.716,0H9.858A3.9916,3.9916,0,1,0,5,9.858v4.284a3.9807,3.9807,0,0,0,0,7.716v3.3257a3,3,0,1,0,2,0V21.858a3.978,3.978,0,0,0,1.6729-.9034l3.3638,1.6819A2.9635,2.9635,0,0,0,12,23a3.0117,3.0117,0,1,0,.9221-2.1572L9.7744,19.269A3.95,3.95,0,0,0,10,18a3.9963,3.9963,0,0,0-3-3.858V9.858A3.9947,3.9947,0,0,0,9.858,7h4.284a3.9366,3.9366,0,0,0,4.7816,2.8818l1.8118,3.1705a3.0451,3.0451,0,1,0,1.7326-.9987L20.6893,8.941A3.9839,3.9839,0,0,0,21.858,7h3.3257A2.995,2.995,0,1,0,28,3ZM8,18a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,18ZM6,8A2,2,0,1,1,8,6,2.002,2.002,0,0,1,6,8ZM16,6a2,2,0,1,1,2,2A2.002,2.002,0,0,1,16,6Z" })), children); }); { DataVis_3.propTypes = iconPropTypes; } var DataVis_4 = /*#__PURE__*/React__default["default"].forwardRef(function DataVis_4(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$b || (_path17$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.002,2.002,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0027,2.0027,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3Zm0,6H17V5H27ZM15,27H11V23h4Zm0-6H11V17h4ZM9,21H5V17H9Zm2-6V11H21v4Zm0-6V5h4V9Zm12,2h4l0,4H23ZM9,5V15H5V5ZM5,23H9v4H5Zm12,4V17H27.001l.001,10Z" })), children); }); { DataVis_4.propTypes = iconPropTypes; } var DatabaseDatastax = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseDatastax(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$b || (_path18$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.8684 22.0684l1.7937-1.7476A4.2184 4.2184 0 0023.95 21.9534c1.4026 0 2.0005-.5288 2.0005-1.38 0-.69-.4138-1.1267-1.4717-1.2646l-1.1958-.1612c-2.5754-.3217-4.0009-1.4484-4.0009-3.633 0-2.3225 1.8166-3.7942 4.5529-3.7942a5.7221 5.7221 0 014.691 1.8855l-1.7246 1.7246a3.9649 3.9649 0 00-2.8743-1.2876c-1.2649 0-1.8167.5059-1.8167 1.2417 0 .8049.4368 1.1726 1.5638 1.3567l1.2187.1609c2.6213.3679 3.886 1.5408 3.886 3.5412 0 2.3226-1.9546 3.9322-4.9439 3.9322A6.0942 6.0942 0 0118.8684 22.0684zM4.24 7.95h5.8409c4.185 0 6.9213 2.69 6.9213 8.0254S14.2661 24 10.0811 24H4.24zm5.8409 13.36c2.2534 0 3.7021-1.3338 3.7021-4.07V14.71c0-2.7364-1.4487-4.07-3.7021-4.07H7.2756V21.31z" })), children); }); { DatabaseDatastax.propTypes = iconPropTypes; } var DatabaseElastic = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseElastic(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$b || (_path19$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.8281 22.0684l1.7937-1.7476A4.2185 4.2185 0 0022.91 21.9534c1.4025 0 2-.5288 2-1.38 0-.69-.4138-1.1267-1.4716-1.2646l-1.1958-.1612c-2.5755-.3217-4.001-1.4484-4.001-3.633 0-2.3225 1.8166-3.7942 4.553-3.7942a5.722 5.722 0 014.6909 1.8855l-1.7246 1.7246a3.9643 3.9643 0 00-2.8743-1.2876c-1.2649 0-1.8166.5059-1.8166 1.2417 0 .8049.4367 1.1726 1.5637 1.3567l1.2187.1609c2.6214.3679 3.886 1.5408 3.886 3.5413 0 2.3225-1.9546 3.9321-4.9438 3.9321A6.0944 6.0944 0 0117.8281 22.0684zM5.2471 24V7.95H15.825v2.69H8.2825v3.8862h6.6687v2.6905H8.2825V21.31H15.825V24z" })), children); }); { DatabaseElastic.propTypes = iconPropTypes; } var DatabaseEnterpriseDb2 = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseEnterpriseDb2(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$b || (_path20$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.84 24V11.9966H20.783v2h.1149a3.3115 3.3115 0 013.3572-2.2764c2.46 0 3.84 1.7017 3.84 4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187 0-2.3913.6438-2.3913 1.9314V24zM4.2236 24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24z" })), children); }); { DatabaseEnterpriseDb2.propTypes = iconPropTypes; } var DatabaseEtcd = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseEtcd(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$b || (_path21$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.9443 20.9417v-6.6h-1.77V11.9966h.92c.8735 0 1.1494-.4138 1.1494-1.2417V8.7083h2.6445v3.2883h2.46V14.342h-2.46v7.3125h2.2764V24H24.0488A2.778 2.778 0 0120.9443 20.9417zM6.6846 24V7.95H17.2627v2.69H9.72v3.8862h6.669v2.6905H9.72V21.31h7.543V24z" })), children); }); { DatabaseEtcd.propTypes = iconPropTypes; } var DatabaseMongodb = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseMongodb(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$b || (_path22$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.3481 28.875c-4.0473 0-5.5878-1.0579-5.5878-2.8284a2.2115 2.2115 0 012.1386-2.3v-.253a1.9726 1.9726 0 01-1.5405-2c0-1.242 1.0576-1.8628 2.207-2.1158v-.0918a3.6228 3.6228 0 01-2.1845-3.4953c0-2.4375 1.7246-4.07 4.9672-4.07A6.6717 6.6717 0 0127.44 12.02v-.3908a1.5343 1.5343 0 011.7022-1.7476h1.8623v2.2534H28.4521v.322a3.5917 3.5917 0 011.8628 3.3343c0 2.4145-1.7016 4.0241-4.9668 4.0241a7.3662 7.3662 0 01-1.8393-.207 1.23 1.23 0 00-.8511 1.0808c0 .5979.5059.8967 1.564.8967H27.44c2.9434 0 4.208 1.2649 4.208 3.4263C31.6484 27.5183 29.9473 28.875 25.3481 28.875zm1.4947-4.7371H22.75a1.473 1.473 0 00-.6211 1.2417c0 .92.6895 1.4717 2.5293 1.4717H26.13c1.9087 0 2.76-.4829 2.76-1.4946C28.89 24.5979 28.3374 24.1379 26.8428 24.1379zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1617-1.84s-2.1616.6209-2.1616 1.84v.3912c0 1.1955.7588 1.84 2.1616 1.84S27.51 17.17 27.51 15.9749zM2.2344 7.95H5.66l4.1162 7.8413h.0923l4.07-7.8413h3.2886V24H14.3525V12.48h-.0918L13.0186 15.032l-3.2881 6.07-3.2881-6.07L5.2007 12.48H5.1084V24H2.2344z" })), children); }); { DatabaseMongodb.propTypes = iconPropTypes; } var DatabasePostgreSql = /*#__PURE__*/React__default["default"].forwardRef(function DatabasePostgreSql(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$b || (_path23$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.98 28.875c-4.0474 0-5.5879-1.0579-5.5879-2.8284a2.2112 2.2112 0 012.1387-2.3v-.253a1.9725 1.9725 0 01-1.541-2c0-1.242 1.0576-1.8628 2.2075-2.1158v-.0918a3.622 3.622 0 01-2.1846-3.4953c0-2.4375 1.7246-4.07 4.9673-4.07a6.6768 6.6768 0 012.0923.2988v-.3908a1.5341 1.5341 0 011.7016-1.7476h1.8623v2.2534H26.0835v.322a3.5926 3.5926 0 011.8628 3.3343c0 2.4145-1.7022 4.0241-4.9668 4.0241a7.3717 7.3717 0 01-1.84-.207 1.23 1.23 0 00-.8505 1.0808c0 .5979.5058.8967 1.5634.8967h3.2193c2.9433 0 4.208 1.2649 4.208 3.4263C29.28 27.5183 27.5781 28.875 22.98 28.875zm1.4941-4.7371H20.3809A1.474 1.474 0 0019.76 25.38c0 .92.69 1.4717 2.5293 1.4717h1.4716c1.9092 0 2.76-.4829 2.76-1.4946C26.5205 24.5979 25.9688 24.1379 24.4736 24.1379zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1611-1.84s-2.1621.6209-2.1621 1.84v.3912c0 1.1955.7588 1.84 2.1621 1.84S25.1406 17.17 25.1406 15.9749zM4.603 24V7.95h7.22c2.9668 0 4.76 2 4.76 4.967 0 2.9893-1.7935 4.9668-4.76 4.9668H7.6387V24zm3.0357-8.738h3.9092a1.6886 1.6886 0 001.8852-1.8167V12.3875a1.672 1.672 0 00-1.8852-1.7935H7.6387z" })), children); }); { DatabasePostgreSql.propTypes = iconPropTypes; } var DatabaseRabbit = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseRabbit(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path24$b || (_path24$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.9434 20.7346c0-2.46 1.8623-3.6792 5.1279-3.6792h2.0464v-.8738c0-1.3337-.6665-2.1154-2.23-2.1154a3.1249 3.1249 0 00-2.7363 1.5175L18.4033 14.02a5.0544 5.0544 0 014.6909-2.3c3.2422 0 4.9668 1.54 4.9668 4.2771v5.6567h1.1958V24H27.624a2.184 2.184 0 01-2.23-2.07h-.1377c-.3912 1.5408-1.7017 2.3455-3.4952 2.3455C19.3232 24.2759 17.9434 22.8733 17.9434 20.7346zm7.1743-.3218V18.8262H23.2324c-1.541 0-2.3.5288-2.3 1.4717v.3908c0 .9658.667 1.4488 1.8164 1.4488C24.06 22.1375 25.1177 21.54 25.1177 20.4128zM6.9717 24H3.9365V7.95H11.18c2.92 0 4.7373 1.9316 4.7373 4.967a4.4237 4.4237 0 01-2.9893 4.553L16.2158 24h-3.38L9.8462 17.8145H6.9717zm3.9092-8.738a1.689 1.689 0 001.8857-1.8167V12.3875a1.6723 1.6723 0 00-1.8857-1.7935H6.9717v4.668z" })), children); }); { DatabaseRabbit.propTypes = iconPropTypes; } var DatabaseRedis = /*#__PURE__*/React__default["default"].forwardRef(function DatabaseRedis(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$b || (_path25$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7156 22h-.115a3.371 3.371 0 01-3.3113 2.2764c-3.0124 0-4.6912-2.2764-4.6912-6.3006 0-4.0012 1.6788-6.2546 4.6912-6.2546a3.3049 3.3049 0 013.3113 2.2534h.115v-6.99h2.9433V24H25.7156zm0-2.1157V16.0667c0-1.1727-1.0808-1.9314-2.4837-1.9314A2.556 2.556 0 0020.68 16.9636v2.07a2.5365 2.5365 0 002.5522 2.8052C24.6348 21.8384 25.7156 21.1257 25.7156 19.8838zM6.5576 24H3.5222V7.95h7.2434c2.92 0 4.7371 1.9316 4.7371 4.967a4.4237 4.4237 0 01-2.9893 4.553L15.8018 24h-3.38L9.4321 17.8145H6.5576zm3.9092-8.738a1.6888 1.6888 0 001.8855-1.8167V12.3875a1.6722 1.6722 0 00-1.8855-1.7935H6.5576v4.668z" })), children); }); { DatabaseRedis.propTypes = iconPropTypes; } var Datastore = /*#__PURE__*/React__default["default"].forwardRef(function Datastore(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$b || (_circle$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "23", r: "1" })), _path26$b || (_path26$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 22H20V24H8z" })), _circle2$b || (_circle2$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "9", r: "1" })), _path27$b || (_path27$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8H20V10H8z" })), _path28$b || (_path28$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H8v4H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V20a2,2,0,0,0-2-2H24V14ZM6,6H26v6H6ZM26,26H6V20H26Zm-4-8H10V14H22Z" })), children); }); { Datastore.propTypes = iconPropTypes; } var Debug = /*#__PURE__*/React__default["default"].forwardRef(function Debug(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$b || (_path29$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.83,20l.34-2L25,17.15V13c0-.08,0-.15,0-.23l5.06-1.36-.51-1.93-4.83,1.29A9,9,0,0,0,20,5V2H18V4.23a8.81,8.81,0,0,0-4,0V2H12V5a9,9,0,0,0-4.71,5.82L2.46,9.48,2,11.41,7,12.77c0,.08,0,.15,0,.23v4.15L1.84,18l.32,2L7,19.18a8.9,8.9,0,0,0,.82,3.57L3.29,27.29l1.42,1.42,4.19-4.2a9,9,0,0,0,14.2,0l4.19,4.2,1.42-1.42-4.54-4.54A8.9,8.9,0,0,0,25,19.18ZM15,25.92A7,7,0,0,1,9,19V13h6ZM9.29,11a7,7,0,0,1,13.42,0ZM23,19a7,7,0,0,1-6,6.92V13h6Z" })), children); }); { Debug.propTypes = iconPropTypes; } var DecisionTree = /*#__PURE__*/React__default["default"].forwardRef(function DecisionTree(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$b || (_path30$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,12V4H22V7H18a2.0023,2.0023,0,0,0-2,2v6H10V12H2v8h8V17h6v6a2.0023,2.0023,0,0,0,2,2h4v3h8V20H22v3H18V9h4v3ZM8,18H4V14H8Zm16,4h4v4H24ZM24,6h4v4H24Z" })), children); }); { DecisionTree.propTypes = iconPropTypes; } var Delivery = /*#__PURE__*/React__default["default"].forwardRef(function Delivery(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$b || (_path31$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 16H16V18H4zM2 11H12V13H2z" })), _path32$b || (_path32$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H6V8H21V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a4,4,0,1,0,0,2h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z" })), children); }); { Delivery.propTypes = iconPropTypes; } var DeliveryAdd = /*#__PURE__*/React__default["default"].forwardRef(function DeliveryAdd(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$b || (_path33$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6L8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z" })), _path34$b || (_path34$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H15V8h6V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V14H2V24a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z" })), children); }); { DeliveryAdd.propTypes = iconPropTypes; } var DeliveryParcel = /*#__PURE__*/React__default["default"].forwardRef(function DeliveryParcel(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$b || (_path35$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4819,8.624l-10-5.5a1,1,0,0,0-.9638,0l-10,5.5a1,1,0,0,0,0,1.752L18,15.5913V26.3086l-3.0362-1.6693L14,26.3912l4.5181,2.4848a.9984.9984,0,0,0,.9638,0l10-5.5A1,1,0,0,0,30,22.5V9.5A1,1,0,0,0,29.4819,8.624ZM19,5.1416,26.9248,9.5,19,13.8584,11.0752,9.5Zm9,16.7671-8,4.4V15.5913l8-4.4Z" })), _path36$b || (_path36$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 14H10V16H2z", transform: "rotate(-180 6 15)" })), _path37$b || (_path37$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 22H12V24H4z", transform: "rotate(-180 8 23)" })), _path38$b || (_path38$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 18H14V20H6z", transform: "rotate(-180 10 19)" })), children); }); { DeliveryParcel.propTypes = iconPropTypes; } var DeliveryTruck = /*#__PURE__*/React__default["default"].forwardRef(function DeliveryTruck(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$b || (_path39$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.92,16.61l-3-7A1,1,0,0,0,26,9H23V7a1,1,0,0,0-1-1H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.92,16.61ZM23,11h2.34l2.14,5H23ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm10.14-3H12.86a4,4,0,0,0-7.72,0H4V8H21V20.56A4,4,0,0,0,19.14,23ZM23,26a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86A4,4,0,0,0,23,20V18h5Z" })), children); }); { DeliveryTruck.propTypes = iconPropTypes; } var WatsonHealthDenominate = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthDenominate(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$b || (_path40$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23H19a3 3 0 00-3 3v2h2V26a1 1 0 011-1h6a1 1 0 011 1v2h2V26A3 3 0 0025 23zM18 18a4 4 0 104-4A4 4 0 0018 18zm6 0a2 2 0 11-2-2A2 2 0 0124 18zM15 15.415L13.586 14 11 16.587 8.414 14 7 15.415 9.586 18 7 20.586 8.414 22 11 19.414 13.586 22 15 20.586 12.414 18 15 15.415z" })), _path41$b || (_path41$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26H4V6h7.1716l3.4141,3.4143L15.1716,10H28v8h2V10a2,2,0,0,0-2-2H16L12.5859,4.5858A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z" })), children); }); { WatsonHealthDenominate.propTypes = iconPropTypes; } var Departure = /*#__PURE__*/React__default["default"].forwardRef(function Departure(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$b || (_path42$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM13.48 5.15l5.69 8.14.8 1.15 1.35-.36 4.52-1.21a2.13 2.13 0 011.12 0A1.84 1.84 0 0128.23 14 1.87 1.87 0 0127 16.45l-18.71 5a1.78 1.78 0 01-1 0A1.87 1.87 0 016 20.12l-.25-.93L5 16.38l-.74-2.74 1.44-.39L8 16.35l.81 1.08 1.31-.35 2.8-.75 1.94-.52-.52-1.93L12.08 5.52l1.4-.37M14.16 3a1.06 1.06 0 00-.5 0l-3.09.83A1 1 0 009.89 5l2.5 9.36-2.81.75L6.85 11.5a1 1 0 00-.52-.36 1.06 1.06 0 00-.5 0L2.72 12A1 1 0 002 13.16L3 16.9l.75 2.8.25.94a3.87 3.87 0 002.74 2.74 3.91 3.91 0 002 0l18.7-5a3.84 3.84 0 000-7.44 4.27 4.27 0 00-2.16 0l-4.51 1.21L14.7 3.41A1 1 0 0014.16 3z" })), children); }); { Departure.propTypes = iconPropTypes; } var Deploy = /*#__PURE__*/React__default["default"].forwardRef(function Deploy(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$b || (_path43$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,2,17,8l1.4146,1.4023L22,5.8184V28H6V12H4V28a2.0025,2.0025,0,0,0,2,2H22a2.0025,2.0025,0,0,0,2-2V5.8154l3.5859,3.5869L29,8Z" })), _path44$b || (_path44$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24H12a2.0023,2.0023,0,0,1-2-2V18a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,16,24Zm-4-6v4h4V18Z" })), children); }); { Deploy.propTypes = iconPropTypes; } var DeployRules = /*#__PURE__*/React__default["default"].forwardRef(function DeployRules(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$b || (_path45$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 4L12 10 13.41 11.41 17 7.83 17 20 19 20 19 7.83 22.59 11.41 24 10 18 4zM8 18H15V20H8zM8 22H24V24H8zM8 26H24V28H8z" })), children); }); { DeployRules.propTypes = iconPropTypes; } var DeploymentPattern = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentPattern(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$b || (_path46$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 20H4.73A1.9735 1.9735 0 003 19a2 2 0 000 4A1.9735 1.9735 0 004.73 22H8zM29 9a1.9735 1.9735 0 00-1.73 1H24v2h3.27A1.9991 1.9991 0 1029 9z" })), _path47$b || (_path47$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.4141 5L21 .5859 16.5859 5 20 8.4141V18h2V8.4141zM21 3.4141L22.5859 5 21 6.5859 19.4141 5zM12 23.5859V14H10v9.5859L6.5859 27 11 31.4141 15.4141 27zM9.4141 27L11 25.4141 12.5859 27 11 28.5859z" })), _path48$b || (_path48$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,10H8.4141L5,6.5859.5859,11,5,15.4141,8.4141,12H18ZM5,12.5859,3.4141,11,5,9.4141,6.5859,11Z" })), _path49$b || (_path49$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 3A2 2 0 009 3 1.9733 1.9733 0 0010 4.73V8h2V4.73A1.9733 1.9733 0 0013 3zM22 27.2705V24H20v3.27a2 2 0 102 0z" })), _path50$b || (_path50$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.4141,21,27,16.5859,23.5859,20H14v2h9.5859L27,25.4141ZM27,19.4141,28.5859,21,27,22.5859,25.4141,21Z" })), children); }); { DeploymentPattern.propTypes = iconPropTypes; } var DeploymentPolicy = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentPolicy(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path51$b || (_path51$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 16L19 14 26.171 14 23.878 11.707 25.292 10.293 30 15 25.292 19.707 23.878 18.293 26.171 16 19 16zM17 12L15 12 15 5.828 12.707 8.121 11.293 6.707 16 2 20.707 6.707 19.293 8.121 17 5.828 17 12zM17 20.1011V18a4.0045 4.0045 0 00-4-4H5.8281l2.293-2.293L6.707 10.293 2 15l4.707 4.707 1.4141-1.414L5.8281 16H13a2.0025 2.0025 0 012 2v2.1011a5 5 0 102 0zM16 28a3 3 0 113-3A3.0033 3.0033 0 0116 28z" })), children); }); { DeploymentPolicy.propTypes = iconPropTypes; } var DeploymentUnitData = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitData(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$b || (_path52$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,23H12V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,16,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H14Z" })), children); }); { DeploymentUnitData.propTypes = iconPropTypes; } var DeploymentUnitExecution = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitExecution(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53$b || (_path53$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 11L20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z" })), children); }); { DeploymentUnitExecution.propTypes = iconPropTypes; } var DeploymentUnitInstallation = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitInstallation(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$b || (_path54$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 11L15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z" })), children); }); { DeploymentUnitInstallation.propTypes = iconPropTypes; } var DeploymentUnitPresentation = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitPresentation(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$b || (_path55$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V11H14Z" })), children); }); { DeploymentUnitPresentation.propTypes = iconPropTypes; } var DeploymentUnitTechnicalData = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitTechnicalData(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$b || (_path56$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 23H17V9h4a4.0045 4.0045 0 014 4v6A4.0042 4.0042 0 0121 23zm-2-2h2a2.0023 2.0023 0 002-2V13a2.002 2.002 0 00-2-2H19zM7 11L10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" })), children); }); { DeploymentUnitTechnicalData.propTypes = iconPropTypes; } var DeploymentUnitTechnicalExecution = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitTechnicalExecution(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$b || (_path57$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 11L25 9 17 9 17 23 25 23 25 21 19 21 19 17 24 17 24 15 19 15 19 11 25 11zM7 11L10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" })), children); }); { DeploymentUnitTechnicalExecution.propTypes = iconPropTypes; } var DeploymentUnitTechnicalInstallation = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitTechnicalInstallation(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$b || (_path58$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 11L20 11 20 21 17 21 17 23 25 23 25 21 22 21 22 11 25 11 25 9 17 9 17 11zM7 11L10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" })), children); }); { DeploymentUnitTechnicalInstallation.propTypes = iconPropTypes; } var DeploymentUnitTechnicalPresentation = /*#__PURE__*/React__default["default"].forwardRef(function DeploymentUnitTechnicalPresentation(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$b || (_path59$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 23H17V9h6a2.002 2.002 0 012 2v5a2.002 2.002 0 01-2 2H19zm0-7h4V10.9985H19zM7 11L10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z" })), children); }); { DeploymentUnitTechnicalPresentation.propTypes = iconPropTypes; } var DeskAdjustable = /*#__PURE__*/React__default["default"].forwardRef(function DeskAdjustable(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$b || (_path60$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 27.172L17 22 15 22 15 27.172 12.414 24.586 11 26 16 31 21 26 19.586 24.586 17 27.172z" })), _path61$b || (_path61$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 12H2v8H4V30H6V20H26V30h2V20h2zm-2 6H4V14H28zM15 4.828L15 10 17 10 17 4.828 19.586 7.414 21 6 16 1 11 6 12.414 7.414 15 4.828z" })), children); }); { DeskAdjustable.propTypes = iconPropTypes; } var Development = /*#__PURE__*/React__default["default"].forwardRef(function Development(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$b || (_path62$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 4V8H4V4H8M2 2v8h8V2zM18 7v4H14V7h4M12 5v8h8V5zM8 16v4H4V16H8M2 14v8h8V14z" })), _path63$b || (_path63$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,10v6H16v6H10v8H30V10Zm-4,8h4v4H18ZM16,28H12V24h4Zm6,0H18V24h4Zm6,0H24V24h4Zm0-6H24V18h4Zm-4-6V12h4v4Z" })), children); }); { Development.propTypes = iconPropTypes; } var Devices = /*#__PURE__*/React__default["default"].forwardRef(function Devices(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$b || (_path64$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,30H4a2,2,0,0,1-2-2V16a2,2,0,0,1,2-2h6a2,2,0,0,1,2,2V28A2,2,0,0,1,10,30ZM4,16V28h6V16Z" })), _path65$b || (_path65$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H6A2,2,0,0,0,4,6v6H6V6H28V20H14v2h2v4H14v2h9V26H18V22H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Z" })), children); }); { Devices.propTypes = iconPropTypes; } var DewPoint = /*#__PURE__*/React__default["default"].forwardRef(function DewPoint(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$b || (_path66$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 10a4 4 0 114-4A4.0045 4.0045 0 0124 10zm0-6a2 2 0 102 2A2.0021 2.0021 0 0024 4zM14.5 30A5.4962 5.4962 0 019 24.52c0-3.4426 4.3442-21.0141 4.5293-21.76a1 1 0 011.9414 0C15.6558 3.5059 20 21.0774 20 24.52A5.4962 5.4962 0 0114.5 30zm0-22.7561C13.0391 13.38 11 22.4089 11 24.52a3.5 3.5 0 007 0C18 22.4089 15.9609 13.38 14.5 7.2439z" })), children); }); { DewPoint.propTypes = iconPropTypes; } var DewPointFilled = /*#__PURE__*/React__default["default"].forwardRef(function DewPointFilled(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67$b || (_path67$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 10a4 4 0 114-4A4.0045 4.0045 0 0124 10zm0-6a2 2 0 102 2A2.0021 2.0021 0 0024 4zM14.5 30A5.4962 5.4962 0 019 24.52c0-3.4426 4.3442-21.0141 4.5293-21.76a1 1 0 011.9414 0C15.6558 3.5059 20 21.0774 20 24.52A5.4962 5.4962 0 0114.5 30z" })), children); }); { DewPointFilled.propTypes = iconPropTypes; } var Diagram = /*#__PURE__*/React__default["default"].forwardRef(function Diagram(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$b || (_path68$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,30A11,11,0,0,1,13,8a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11,11,0,0,1,13,30ZM12,10.06A9,9,0,1,0,21.94,20H14a2,2,0,0,1-2-2Z" })), _path69$b || (_path69$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,14H19a2,2,0,0,1-2-2V3a1,1,0,0,1,1-1A11,11,0,0,1,29,13,1,1,0,0,1,28,14Zm-9-2h7.94A9,9,0,0,0,19,4.06Z" })), children); }); { Diagram.propTypes = iconPropTypes; } var DiagramReference = /*#__PURE__*/React__default["default"].forwardRef(function DiagramReference(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$b || (_path70$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" })), _path71$b || (_path71$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,28V26a9.0133,9.0133,0,0,0,8.9448-8H16a2.0021,2.0021,0,0,1-2-2V8.0552A9.0133,9.0133,0,0,0,6,17H4A11.0125,11.0125,0,0,1,15,6a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11.0125,11.0125,0,0,1,15,28Z" })), _path72$b || (_path72$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.0057,14H19.995A1.9957,1.9957,0,0,1,18,12V3a1.0083,1.0083,0,0,1,1.02-1A11.0125,11.0125,0,0,1,30,12.98,1.0035,1.0035,0,0,1,29.0057,14ZM20,12h7.9448A9.018,9.018,0,0,0,20,4.0552Z" })), children); }); { DiagramReference.propTypes = iconPropTypes; } var WatsonHealthDicom_6000 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthDicom_6000(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$b || (_path73$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 11H7a3 3 0 00-3 3v2H6V14a1 1 0 011-1h6a1 1 0 011 1v2h2V14A3 3 0 0013 11zM10 10A4 4 0 106 6 4 4 0 0010 10zm0-6A2 2 0 118 6 2 2 0 0110 4zM20 4H30V6H20zM20 8H30V10H20zM20 12H26V14H20zM5 30H3a2 2 0 01-2-2V22a2 2 0 012-2H6v2H3v2H5a2 2 0 012 2v2A2 2 0 015 30zM3 26v2H5V26zM13 30H11a2 2 0 01-2-2V22a2 2 0 012-2h2a2 2 0 012 2v6A2 2 0 0113 30zm-2-8v6h2V22zM21 30H19a2 2 0 01-2-2V22a2 2 0 012-2h2a2 2 0 012 2v6A2 2 0 0121 30zm-2-8v6h2V22zM29 30H27a2 2 0 01-2-2V22a2 2 0 012-2h2a2 2 0 012 2v6A2 2 0 0129 30zm-2-8v6h2V22z" })), children); }); { WatsonHealthDicom_6000.propTypes = iconPropTypes; } var WatsonHealthDicomOverlay = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthDicomOverlay(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path74$b || (_path74$b = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path75$b || (_path75$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 8H16V10H6zM6 12H16V14H6zM6 16H12V18H6z" })), children); }); { WatsonHealthDicomOverlay.propTypes = iconPropTypes; } var DirectLink = /*#__PURE__*/React__default["default"].forwardRef(function DirectLink(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$b); { if (!didWarnAboutDeprecation$1["DirectLink"]) { didWarnAboutDeprecation$1["DirectLink"] = true; console.warn("The current icon has been replaced with the correct version of the App icon, use the most appropriate ibm-cloud--direct-link icon variant instead. As a result, the DirectLink component will be removed in the next major version of @carbon/icons-react."); } } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$b || (_path76$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.4131,14.584,12.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L1.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l3.2915,3.2915L3,22.5859,4.4141,24l1.8784-1.8784L9.584,25.4131a2.0016,2.0016,0,0,0,2.832,0l2.2559-2.2559-1.4156-1.4155L10.998,23.999,3.001,16.002l7.997-8.001,8.001,8.001L17.5,17.5l1.4146,1.4146,1.4985-1.4986a2.0016,2.0016,0,0,0,0-2.832Z" })), _path77$b || (_path77$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4131,14.584l-3.2915-3.2915L29,9.4141,27.5859,8,25.7075,9.8784,22.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L17.3281,8.8428l1.4146,1.4145L20.998,8.001l8.001,8.001-8.001,7.997-7.997-7.997,1.5-1.501-1.4156-1.4156L11.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l7.9971,7.9971a2.0016,2.0016,0,0,0,2.832,0l7.9971-7.9971a2.0016,2.0016,0,0,0,0-2.832Z" })), children); }); { DirectLink.propTypes = iconPropTypes; } var DirectionBearRight_01 = /*#__PURE__*/React__default["default"].forwardRef(function DirectionBearRight_01(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$b || (_path78$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,4V6h6.5859L12.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,13.4644,13.95L20,7.4141V14h2V4Z" })), children); }); { DirectionBearRight_01.propTypes = iconPropTypes; } var DirectionBearRight_01Filled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionBearRight_01Filled(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$b || (_path79$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z" })), _path80$b || (_path80$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z", "data-icon-path": "inner-path" })), children); }); { DirectionBearRight_01Filled.propTypes = iconPropTypes; } var DirectionBearRight_02 = /*#__PURE__*/React__default["default"].forwardRef(function DirectionBearRight_02(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$b || (_path81$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4V6h6.5859L16.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,17.4644,13.95L24,7.4141V14h2V4Z" })), _path82$b || (_path82$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5 5.55H10.5V13.45H8.5z", transform: "rotate(-45 9.5 9.5)" })), children); }); { DirectionBearRight_02.propTypes = iconPropTypes; } var DirectionBearRight_02Filled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionBearRight_02Filled(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$b || (_path83$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM6,7.4141,7.4141,6,14,12.5859,12.5859,14ZM26,16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6H26Z" })), _path84$b || (_path84$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M26,6V16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6ZM14,12.5859,7.4141,6,6,7.4141,12.5859,14Z", "data-icon-path": "inner-path" })), children); }); { DirectionBearRight_02Filled.propTypes = iconPropTypes; } var DirectionCurve = /*#__PURE__*/React__default["default"].forwardRef(function DirectionCurve(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$b || (_path85$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,4l-7,7,1.4141,1.4141L16,7.8281v6.7686a3.01,3.01,0,0,1-.6572,1.874l-2.2471,2.8086A5.0206,5.0206,0,0,0,12,22.4033V28h2V22.4033a3.01,3.01,0,0,1,.6572-1.874l2.2471-2.8086A5.0206,5.0206,0,0,0,18,14.5967V7.8281l4.5859,4.586L24,11Z" })), children); }); { DirectionCurve.propTypes = iconPropTypes; } var DirectionCurveFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionCurveFilled(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$b || (_path86$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z" })), _path87$b || (_path87$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z", "data-icon-path": "inner-path" })), children); }); { DirectionCurveFilled.propTypes = iconPropTypes; } var DirectionFork = /*#__PURE__*/React__default["default"].forwardRef(function DirectionFork(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$b || (_path88$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 13L6 7.414 15 16.414 15 28 17 28 17 16.414 26 7.414 26 13 28 13 28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13z" })), children); }); { DirectionFork.propTypes = iconPropTypes; } var DirectionForkFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionForkFilled(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$b || (_path89$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8 14L8 9.414 15 16.414 15 26 17 26 17 16.414 24 9.414 24 14 26 14 26 6 18 6 18 8 22.586 8 16 14.586 9.414 8 14 8 14 6 6 6 6 14 8 14z", "data-icon-path": "inner-path" })), _path90$b || (_path90$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,14H24V9.4141l-7,7V26H15V16.4141l-7-7V14H6V6h8V8H9.4141L16,14.5859,22.5859,8H18V6h8Z" })), children); }); { DirectionForkFilled.propTypes = iconPropTypes; } var DirectionLoopLeft = /*#__PURE__*/React__default["default"].forwardRef(function DirectionLoopLeft(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$b || (_path91$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 20H18V28H16z" })), _path92$b || (_path92$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,4a7.0078,7.0078,0,0,0-7,7v3h2V11a5,5,0,1,1,5,5H5.8281l4.586-4.5859L9,10,2,17l7,7,1.4141-1.4141L5.8281,18H23A7,7,0,0,0,23,4Z" })), children); }); { DirectionLoopLeft.propTypes = iconPropTypes; } var DirectionLoopLeftFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionLoopLeftFilled(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$b || (_path93$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,18h2v8H16ZM4,15l7,7,1.4141-1.4141L7.8281,16H21a5,5,0,1,0-5-5v1h2V11a3,3,0,1,1,3,3H7.8281l4.586-4.5859L11,8Z", "data-icon-path": "inner-path" })), _path94$b || (_path94$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4ZM16,18h2v8H16ZM4,15l7-7,1.4141,1.4141L7.8281,14H21a3,3,0,1,0-3-3v1H16V11a5,5,0,1,1,5,5H7.8281l4.586,4.5859L11,22Z" })), children); }); { DirectionLoopLeftFilled.propTypes = iconPropTypes; } var DirectionLoopRight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionLoopRight(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$b || (_path95$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 20H16V28H14z" })), _path96$b || (_path96$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,4a7.0078,7.0078,0,0,1,7,7v3H14V11a5,5,0,1,0-5,5H26.1719l-4.586-4.5859L23,10l7,7-7,7-1.4141-1.4141L26.1719,18H9A7,7,0,0,1,9,4Z" })), children); }); { DirectionLoopRight.propTypes = iconPropTypes; } var DirectionLoopRightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionLoopRightFilled(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$b || (_path97$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,26H14V18h2ZM21,8,19.5859,9.4141,24.1719,14H11a3,3,0,1,1,3-3v1h2V11a5,5,0,1,0-5,5H24.1719l-4.586,4.5859L21,22l7-7Z", "data-icon-path": "inner-path" })), _path98$b || (_path98$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM16,26H14V18h2Zm5-4-1.4141-1.4141L24.1719,16H11a5,5,0,1,1,5-5v1H14V11a3,3,0,1,0-3,3H24.1719l-4.586-4.5859L21,8l7,7Z" })), children); }); { DirectionLoopRightFilled.propTypes = iconPropTypes; } var DirectionMerge = /*#__PURE__*/React__default["default"].forwardRef(function DirectionMerge(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$b || (_path99$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.8784,15.4648A2.9821,2.9821,0,0,1,17,13.3433V7.8281l4.5859,4.586L23,11,16,4,9,11l1.4141,1.4141L15,7.8281v5.5152a2.9805,2.9805,0,0,1-.8784,2.1211l-2.6572,2.6567A4.9682,4.9682,0,0,0,10,21.6567V28h2V21.6567a2.9805,2.9805,0,0,1,.8784-2.1211l2.6572-2.6567A5.0021,5.0021,0,0,0,16,16.3135a5.0021,5.0021,0,0,0,.4644.5654l2.6572,2.6563A2.9821,2.9821,0,0,1,20,21.6567V28h2V21.6567a4.9682,4.9682,0,0,0-1.4644-3.5356Z" })), children); }); { DirectionMerge.propTypes = iconPropTypes; } var DirectionMergeFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionMergeFilled(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$b || (_path100$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z" })), _path101$b || (_path101$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z", "data-icon-path": "inner-path" })), children); }); { DirectionMergeFilled.propTypes = iconPropTypes; } var DirectionRight_01 = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRight_01(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$b || (_path102$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,4,17.5859,5.4141,22.1719,10H10a2,2,0,0,0-2,2V28h2V12H22.1719l-4.586,4.5859L19,18l7-7Z" })), children); }); { DirectionRight_01.propTypes = iconPropTypes; } var DirectionRight_01Filled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRight_01Filled(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path103$b || (_path103$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z" })), _path104$b || (_path104$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z", "data-icon-path": "inner-path" })), children); }); { DirectionRight_01Filled.propTypes = iconPropTypes; } var DirectionRight_02 = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRight_02(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$b || (_path105$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 8L17.5859 9.4141 22.1719 14H10a2 2 0 00-2 2V28h2V16H22.1719l-4.586 4.5859L19 22l7-7zM8 4H10V12H8z" })), children); }); { DirectionRight_02.propTypes = iconPropTypes; } var DirectionRight_02Filled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRight_02Filled(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$b || (_path106$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z" })), _path107$b || (_path107$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z", "data-icon-path": "inner-path" })), children); }); { DirectionRight_02Filled.propTypes = iconPropTypes; } var DirectionRotaryFirstRight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryFirstRight(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$b || (_path108$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18v6.5859L15.8712,14.457A5.9242,5.9242,0,0,0,17,11a6,6,0,1,0-7,5.91V28h2V16.91a5.9566,5.9566,0,0,0,2.4554-1.04L24.5859,26H18v2H28V18ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z" })), children); }); { DirectionRotaryFirstRight.propTypes = iconPropTypes; } var DirectionRotaryFirstRightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryFirstRightFilled(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3$b || (_circle3$b = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "11", r: "3" })), _path109$b || (_path109$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859l-8.833-8.833A4.9678,4.9678,0,0,1,12,15.8989V26H10V15.8989a5.0113,5.0113,0,1,1,5.167-2.146L24,22.5859V16h2Z" })), _path110$b || (_path110$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Zm13,2v6.5859l-8.833-8.833A4.9959,4.9959,0,1,0,10,15.8989V26h2V15.8989a4.9678,4.9678,0,0,0,1.7529-.7319L22.5859,24H16v2H26V16Z", "data-icon-path": "inner-path" })), children); }); { DirectionRotaryFirstRightFilled.propTypes = iconPropTypes; } var DirectionRotaryRight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryRight(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$b || (_path111$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,4,20.5859,5.4141,25.1719,10H16.91A5.9965,5.9965,0,1,0,10,16.91V28h2V16.91A6.0061,6.0061,0,0,0,16.91,12h8.2622l-4.586,4.5859L22,18l7-7ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z" })), children); }); { DirectionRotaryRight.propTypes = iconPropTypes; } var DirectionRotaryRightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryRightFilled(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle4$a || (_circle4$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "11", r: "3" })), _path112$b || (_path112$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,18l-1.4141-1.4141L23.1719,12h-7.273A5.0145,5.0145,0,0,1,12,15.8989V26H10V15.8989A5,5,0,1,1,15.8989,10h7.273l-4.586-4.5859L20,4l7,7Z" })), _path113$b || (_path113$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M20,4,18.5859,5.4141,23.1719,10h-7.273A5,5,0,1,0,10,15.8989V26h2V15.8989A5.0145,5.0145,0,0,0,15.8989,12h7.273l-4.586,4.5859L20,18l7-7ZM11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Z", "data-icon-path": "inner-path" })), children); }); { DirectionRotaryRightFilled.propTypes = iconPropTypes; } var DirectionRotaryStraight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryStraight(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$b || (_path114$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,12.09V5.8281l4.5859,4.586L23,9,16,2,9,9l1.4141,1.4141L15,5.8281V12.09A5.9925,5.9925,0,0,0,15,23.91V28h2V23.91A5.9925,5.9925,0,0,0,17,12.09ZM16,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,22Z" })), children); }); { DirectionRotaryStraight.propTypes = iconPropTypes; } var DirectionRotaryStraightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionRotaryStraightFilled(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle5$a || (_circle5$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "19", r: "3" })), _path115$b || (_path115$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,12.4141,17,7.8281v6.273a5,5,0,0,1,0,9.7978V28H15V23.8989a5,5,0,0,1,0-9.7978V7.8281l-4.5859,4.586L9,11l7-7,7,7Z" })), _path116$b || (_path116$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M21.5859,12.4141,23,11,16,4,9,11l1.4141,1.4141L15,7.8281v6.273a5,5,0,0,0,0,9.7978V28h2V23.8989a5,5,0,0,0,0-9.7978V7.8281ZM19,19a3,3,0,1,1-3-3A3.0033,3.0033,0,0,1,19,19Z", "data-icon-path": "inner-path" })), children); }); { DirectionRotaryStraightFilled.propTypes = iconPropTypes; } var DirectionSharpTurn = /*#__PURE__*/React__default["default"].forwardRef(function DirectionSharpTurn(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$b || (_path117$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18v6.5859L7.707,6.293A1,1,0,0,0,6,7V28H8V9.4141L24.5859,26H18v2H28V18Z" })), children); }); { DirectionSharpTurn.propTypes = iconPropTypes; } var DirectionSharpTurnFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionSharpTurnFilled(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$b || (_path118$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z" })), _path119$b || (_path119$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z", "data-icon-path": "inner-path" })), children); }); { DirectionSharpTurnFilled.propTypes = iconPropTypes; } var DirectionStraight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionStraight(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$b || (_path120$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 4L9 11 10.414 12.414 15 7.828 15 28 17 28 17 7.828 21.586 12.414 23 11 16 4z" })), children); }); { DirectionStraight.propTypes = iconPropTypes; } var DirectionStraightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionStraightFilled(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$b || (_path121$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z" })), _path122$b || (_path122$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z", "data-icon-path": "inner-path" })), children); }); { DirectionStraightFilled.propTypes = iconPropTypes; } var DirectionStraightRight = /*#__PURE__*/React__default["default"].forwardRef(function DirectionStraightRight(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$b || (_path123$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 16L21 9 19.586 10.414 24.172 15 4 15 4 17 24.172 17 19.586 21.586 21 23 28 16z" })), children); }); { DirectionStraightRight.propTypes = iconPropTypes; } var DirectionStraightRightFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionStraightRightFilled(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$b || (_path124$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z" })), _path125$b || (_path125$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z", "data-icon-path": "inner-path" })), children); }); { DirectionStraightRightFilled.propTypes = iconPropTypes; } var DirectionUTurn = /*#__PURE__*/React__default["default"].forwardRef(function DirectionUTurn(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$b || (_path126$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5859,19.5859,22,24.1719V12A8,8,0,0,0,6,12V28H8V12a6,6,0,0,1,12,0V24.1719l-4.5859-4.586L14,21l7,7,7-7Z" })), children); }); { DirectionUTurn.propTypes = iconPropTypes; } var DirectionUTurnFilled = /*#__PURE__*/React__default["default"].forwardRef(function DirectionUTurnFilled(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$b || (_path127$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M26.5859,17.5859,22,22.1719V14A8,8,0,0,0,6,14V26H8V14a6,6,0,0,1,12,0v8.1719l-4.5859-4.586L14,19l7,7,7-7Z", "data-icon-path": "inner-path" })), _path128$b || (_path128$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21,26l-7-7,1.4141-1.4141L20,22.1719V14A6,6,0,0,0,8,14V26H6V14a8,8,0,0,1,16,0v8.1719l4.5859-4.586L28,19Z" })), children); }); { DirectionUTurnFilled.propTypes = iconPropTypes; } var DirectoryDomain = /*#__PURE__*/React__default["default"].forwardRef(function DirectoryDomain(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$b || (_path129$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H18.8157A2.9959,2.9959,0,0,0,17,24.1841V19h7a2.0025,2.0025,0,0,0,2-2V4a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,4V17a2.0025,2.0025,0,0,0,2,2h7v5.1841A2.9959,2.9959,0,0,0,13.1843,26H4v2h9.1843a2.982,2.982,0,0,0,5.6314,0H28ZM24,12H8V9H24Zm0-8V7H8V4ZM8,14H24v3H8Zm8,14a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,16,28Z" })), children); }); { DirectoryDomain.propTypes = iconPropTypes; } var DistributeHorizontalCenter = /*#__PURE__*/React__default["default"].forwardRef(function DistributeHorizontalCenter(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$b || (_path130$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 10H23V2H21v8H20a2.0023 2.0023 0 00-2 2v8a2.0023 2.0023 0 002 2h1v8h2V22h1a2.0023 2.0023 0 002-2V12A2.0023 2.0023 0 0024 10zm0 10H20V12h4zM12 6H11V2H9V6H8A2.0023 2.0023 0 006 8V24a2.0023 2.0023 0 002 2H9v4h2V26h1a2.0023 2.0023 0 002-2V8A2.0023 2.0023 0 0012 6zm0 18H8V8h4z" })), children); }); { DistributeHorizontalCenter.propTypes = iconPropTypes; } var DistributeHorizontalLeft = /*#__PURE__*/React__default["default"].forwardRef(function DistributeHorizontalLeft(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$b || (_path131$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 22H24a2.0021 2.0021 0 01-2-2V12a2.0021 2.0021 0 012-2h4a2.0021 2.0021 0 012 2v8A2.0021 2.0021 0 0128 22zM24 12v8h4V12zM18 2H20V30H18zM12 26H8a2.0021 2.0021 0 01-2-2V8A2.0021 2.0021 0 018 6h4a2.0021 2.0021 0 012 2V24A2.0021 2.0021 0 0112 26zM8 8V24h4V8zM2 2H4V30H2z" })), children); }); { DistributeHorizontalLeft.propTypes = iconPropTypes; } var DistributeHorizontalRight = /*#__PURE__*/React__default["default"].forwardRef(function DistributeHorizontalRight(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$b || (_path132$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 2H30V30H28zM24 22H20a2.0021 2.0021 0 01-2-2V12a2.0021 2.0021 0 012-2h4a2.0021 2.0021 0 012 2v8A2.0021 2.0021 0 0124 22zM20 12h-.0015L20 20h4V12zM12 2H14V30H12zM8 26H4a2.0021 2.0021 0 01-2-2V8A2.0021 2.0021 0 014 6H8a2.0021 2.0021 0 012 2V24A2.0021 2.0021 0 018 26zM4 8H3.9985L4 24H8V8z" })), children); }); { DistributeHorizontalRight.propTypes = iconPropTypes; } var DistributeVerticalBottom = /*#__PURE__*/React__default["default"].forwardRef(function DistributeVerticalBottom(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$b || (_path133$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM24 26H8a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0124 26zm0-6.0012L8 20v4H24zM2 12H30V14H2zM20 10H12a2.0021 2.0021 0 01-2-2V4a2.0021 2.0021 0 012-2h8a2.0021 2.0021 0 012 2V8A2.0021 2.0021 0 0120 10zm0-6.0012L12 4V8h8z" })), children); }); { DistributeVerticalBottom.propTypes = iconPropTypes; } var DistributeVerticalCenter = /*#__PURE__*/React__default["default"].forwardRef(function DistributeVerticalCenter(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$b || (_path134$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 21H26V20a2.0023 2.0023 0 00-2-2H8a2.0023 2.0023 0 00-2 2v1H2v2H6v1a2.0023 2.0023 0 002 2H24a2.0023 2.0023 0 002-2V23h4zm-6 3H8V20l16-.001zM30 9H22V8a2.0023 2.0023 0 00-2-2H12a2.0023 2.0023 0 00-2 2V9H2v2h8v1a2.0023 2.0023 0 002 2h8a2.0023 2.0023 0 002-2V11h8zM20 12H12V8l8-.001z" })), children); }); { DistributeVerticalCenter.propTypes = iconPropTypes; } var DistributeVerticalTop = /*#__PURE__*/React__default["default"].forwardRef(function DistributeVerticalTop(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$b || (_path135$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30H8a2.0021 2.0021 0 01-2-2V24a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0124 30zM8 24v4H24V24zM2 18H30V20H2zM20 14H12a2.0021 2.0021 0 01-2-2V8a2.0021 2.0021 0 012-2h8a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0120 14zM12 8v4h8V8zM2 2H30V4H2z" })), children); }); { DistributeVerticalTop.propTypes = iconPropTypes; } var WatsonHealthDna = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthDna(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$b || (_path136$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,2V1H20V2a7.04,7.04,0,0,1-.08,1H12.08A7.04,7.04,0,0,1,12,2V1H10V2c0,3.7549,1.9707,5.6035,4.1008,7C11.9707,10.3965,10,12.2451,10,16s1.9707,5.6035,4.1008,7C11.9707,24.3965,10,26.2451,10,30v1h2V30a7.04,7.04,0,0,1,.08-1H19.92A7.04,7.04,0,0,1,20,30v1h2V30c0-3.7549-1.9707-5.6035-4.1008-7C20.0293,21.6035,22,19.7549,22,16s-1.9707-5.6035-4.1008-7C20.0293,7.6035,22,5.7549,22,2ZM20,16a7.04,7.04,0,0,1-.08,1H12.08a6.3212,6.3212,0,0,1,0-2H19.92A7.04,7.04,0,0,1,20,16Zm-.7559,11H12.7559A8.9078,8.9078,0,0,1,16,24.17,8.9078,8.9078,0,0,1,19.2441,27ZM16,21.83A8.9078,8.9078,0,0,1,12.7559,19h6.4882A8.9078,8.9078,0,0,1,16,21.83ZM19.2441,13H12.7559A8.9078,8.9078,0,0,1,16,10.17,8.9078,8.9078,0,0,1,19.2441,13ZM16,7.83A8.9078,8.9078,0,0,1,12.7559,5h6.4882A8.9078,8.9078,0,0,1,16,7.83Z" })), children); }); { WatsonHealthDna.propTypes = iconPropTypes; } var DnsServices = /*#__PURE__*/React__default["default"].forwardRef(function DnsServices(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$b || (_path137$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20H30V22H20zM20 24H26V26H20z" })), _path138$b || (_path138$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,17V16A13.9871,13.9871,0,1,0,19.23,29.625l-.46-1.9463A12.0419,12.0419,0,0,1,16,28c-.19,0-.375-.0186-.563-.0273A20.3044,20.3044,0,0,1,12.0259,17Zm-2.0415-2H21.9751A24.2838,24.2838,0,0,0,19.2014,4.4414,12.0228,12.0228,0,0,1,27.9585,15ZM16.563,4.0273A20.3044,20.3044,0,0,1,19.9741,15H12.0259A20.3044,20.3044,0,0,1,15.437,4.0273C15.625,4.0186,15.81,4,16,4S16.375,4.0186,16.563,4.0273Zm-3.7644.4141A24.2838,24.2838,0,0,0,10.0249,15H4.0415A12.0228,12.0228,0,0,1,12.7986,4.4414Zm0,23.1172A12.0228,12.0228,0,0,1,4.0415,17h5.9834A24.2838,24.2838,0,0,0,12.7986,27.5586Z" })), children); }); { DnsServices.propTypes = iconPropTypes; } var Doc = /*#__PURE__*/React__default["default"].forwardRef(function Doc(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$b || (_path139$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 23H24a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h6v2H24V21h6zM18 23H14a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h4a2.002 2.002 0 012 2V21A2.0023 2.0023 0 0118 23zM14 11V21h4V11zM6 23H2V9H6a4.0045 4.0045 0 014 4v6A4.0045 4.0045 0 016 23zM4 21H6a2.002 2.002 0 002-2V13a2.002 2.002 0 00-2-2H4z" })), children); }); { Doc.propTypes = iconPropTypes; } var Document$1 = /*#__PURE__*/React__default["default"].forwardRef(function Document(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$b || (_path140$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7,9.3l-7-7C18.5,2.1,18.3,2,18,2H8C6.9,2,6,2.9,6,4v24c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V10C26,9.7,25.9,9.5,25.7,9.3 z M18,4.4l5.6,5.6H18V4.4z M24,28H8V4h8v6c0,1.1,0.9,2,2,2h6V28z" })), _path141$b || (_path141$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 22H22V24H10zM10 16H22V18H10z" })), children); }); { Document$1.propTypes = iconPropTypes; } var DocumentAdd = /*#__PURE__*/React__default["default"].forwardRef(function DocumentAdd(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$b || (_path142$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24z" })), _path143$b || (_path143$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v4h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentAdd.propTypes = iconPropTypes; } var DocumentAttachment = /*#__PURE__*/React__default["default"].forwardRef(function DocumentAttachment(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$b || (_path144$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H11a2.0023,2.0023,0,0,1-2-2V22h2v6H26V6H17V4h9a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,26,30Z" })), _path145$b || (_path145$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 10H24V12H17zM16 15H24V17H16zM15 20H24V22H15zM9 19a5.0055 5.0055 0 01-5-5V3H6V14a3 3 0 006 0V5a1 1 0 00-2 0V15H8V5a3 3 0 016 0v9A5.0055 5.0055 0 019 19z" })), children); }); { DocumentAttachment.propTypes = iconPropTypes; } var DocumentAudio = /*#__PURE__*/React__default["default"].forwardRef(function DocumentAudio(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$b || (_path146$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,31a.9987.9987,0,0,1-.6245-.2192L23.6494,27H20a1,1,0,0,1-1-1V21a1,1,0,0,1,1-1h3.6494l4.7261-3.7808A1,1,0,0,1,30,17V30a1,1,0,0,1-1,1Zm-8-6h3a1,1,0,0,1,.6245.2192L28,27.9194V19.0806l-3.3755,2.7A1,1,0,0,1,24,22H21Z" })), _path147$b || (_path147$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentAudio.propTypes = iconPropTypes; } var DocumentBlank = /*#__PURE__*/React__default["default"].forwardRef(function DocumentBlank(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$b || (_path148$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7,9.3l-7-7A.9078.9078,0,0,0,18,2H8A2.0059,2.0059,0,0,0,6,4V28a2.0059,2.0059,0,0,0,2,2H24a2.0059,2.0059,0,0,0,2-2V10A.9078.9078,0,0,0,25.7,9.3ZM18,4.4,23.6,10H18ZM24,28H8V4h8v6a2.0059,2.0059,0,0,0,2,2h6Z" })), children); }); { DocumentBlank.propTypes = iconPropTypes; } var DocumentDownload = /*#__PURE__*/React__default["default"].forwardRef(function DocumentDownload(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$b || (_path149$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 25L28.586 23.586 26 26.172 26 18 24 18 24 26.172 21.414 23.586 20 25 25 30 30 25z" })), _path150$b || (_path150$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2H18ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentDownload.propTypes = iconPropTypes; } var DocumentEpdf = /*#__PURE__*/React__default["default"].forwardRef(function DocumentEpdf(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$b || (_path151$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26V22a2.0023,2.0023,0,0,0-2-2H22a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V28H22V26Zm-6-4h4v2H22Z" })), _path152$b || (_path152$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.707,9.293l-7-7A1,1,0,0,0,18,2H8A2.002,2.002,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2h8V28H8V4h8v6a2.002,2.002,0,0,0,2,2h6v4h2V10A1,1,0,0,0,25.707,9.293ZM18,4.4141,23.5859,10H18Z" })), children); }); { DocumentEpdf.propTypes = iconPropTypes; } var DocumentExport = /*#__PURE__*/React__default["default"].forwardRef(function DocumentExport(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$b || (_path153$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 21L26.17 21 23.59 23.59 25 25 30 20 25 15 23.59 16.41 26.17 19 13 19 13 21z" })), _path154$b || (_path154$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,14V10a1,1,0,0,0-.29-.71l-7-7A1,1,0,0,0,14,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V26H20v2H4V4h8v6a2,2,0,0,0,2,2h6v2Zm-8-4V4.41L19.59,10Z" })), children); }); { DocumentExport.propTypes = iconPropTypes; } var DocumentHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function DocumentHorizontal(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$b || (_path155$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H4A2.0023,2.0023,0,0,0,2,8V24a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V8A2.0023,2.0023,0,0,0,28,6ZM20,24H12V22a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm8,0H22V22a3,3,0,0,0-3-3H13a3,3,0,0,0-3,3v2H4V8H28Z" })), _path156$b || (_path156$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,18a4,4,0,1,0-4-4A4,4,0,0,0,16,18Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,16,12Z" })), children); }); { DocumentHorizontal.propTypes = iconPropTypes; } var DocumentImport = /*#__PURE__*/React__default["default"].forwardRef(function DocumentImport(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$b || (_path157$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 19L14.83 19 17.41 16.41 16 15 11 20 16 25 17.41 23.59 14.83 21 28 21 28 19z" })), _path158$b || (_path158$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,14V10a1,1,0,0,0-.29-.71l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V26H22v2H6V4h8v6a2,2,0,0,0,2,2h6v2Zm-8-4V4.41L21.59,10Z" })), children); }); { DocumentImport.propTypes = iconPropTypes; } var DocumentPdf = /*#__PURE__*/React__default["default"].forwardRef(function DocumentPdf(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$b || (_path159$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 18L30 16 24 16 24 26 26 26 26 22 29 22 29 20 26 20 26 18 30 18zM19 26H15V16h4a3.0033 3.0033 0 013 3v4A3.0033 3.0033 0 0119 26zm-2-2h2a1.0011 1.0011 0 001-1V19a1.0011 1.0011 0 00-1-1H17zM11 16H6V26H8V23h3a2.0027 2.0027 0 002-2V18A2.0023 2.0023 0 0011 16zM8 21V18h3l.001 3z" })), _path160$b || (_path160$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,14V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,14,2H4A2.0059,2.0059,0,0,0,2,4V28a2,2,0,0,0,2,2H20V28H4V4h8v6a2.0059,2.0059,0,0,0,2,2h6v2Zm-8-4V4.4L19.6,10Z" })), children); }); { DocumentPdf.propTypes = iconPropTypes; } var DocumentPreliminary = /*#__PURE__*/React__default["default"].forwardRef(function DocumentPreliminary(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$b || (_path161$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30a6 6 0 116-6A6.0067 6.0067 0 0124 30zm0-10a4 4 0 104 4A4.0045 4.0045 0 0024 20zM8 22H16V24H8zM8 16H18V18H8z" })), _path162$b || (_path162$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H6V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2H16ZM16,4.4,21.6,10H16Z" })), children); }); { DocumentPreliminary.propTypes = iconPropTypes; } var DocumentProtected = /*#__PURE__*/React__default["default"].forwardRef(function DocumentProtected(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$b || (_path163$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,21V18a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v5a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V23A2.0025,2.0025,0,0,0,28,21Zm-6-3a2,2,0,0,1,4,0v3H22ZM20,28V23h8v5Z" })), _path164$b || (_path164$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.499,9.085,16.707,2.293A1,1,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2h8V28H6V4h8v6a2.0023,2.0023,0,0,0,2,2h6.292a1.7075,1.7075,0,0,0,1.207-2.915ZM16,10V4.4141L21.5854,10Z" })), children); }); { DocumentProtected.propTypes = iconPropTypes; } var DocumentSecurity = /*#__PURE__*/React__default["default"].forwardRef(function DocumentSecurity(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$b || (_path165$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,30l-2.1387-1.0127A5.0216,5.0216,0,0,1,18,24.4678V18H28v6.4678a5.0216,5.0216,0,0,1-2.8613,4.52ZM20,20v4.4678a3.012,3.012,0,0,0,1.7168,2.7109L23,27.7861l1.2832-.6074A3.012,3.012,0,0,0,26,24.4678V20Z" })), _path166$b || (_path166$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H6V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2H16ZM16,4.4,21.6,10H16Z" })), children); }); { DocumentSecurity.propTypes = iconPropTypes; } var DocumentSigned = /*#__PURE__*/React__default["default"].forwardRef(function DocumentSigned(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$b || (_path167$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.4141,30H15V25.5857l5.0337-5.0337A4.6069,4.6069,0,0,1,20,20a5,5,0,1,1,4.4478,4.9663ZM17,28h1.5859l5.2061-5.2063.5395.1238a3.0351,3.0351,0,1,0-2.249-2.2488l.1236.5393L17,26.4143Z" })), _circle6$a || (_circle6$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "20", r: "1" })), _path168$b || (_path168$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 6H20V8H8zM8 10H20V12H8zM8 14H14V16H8zM8 24H12V26H8z" })), _path169$b || (_path169$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2v9H22V4H6V28h6Z" })), children); }); { DocumentSigned.propTypes = iconPropTypes; } var DocumentSketch = /*#__PURE__*/React__default["default"].forwardRef(function DocumentSketch(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$b || (_path170$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20l1.4272,1.9028L23,26.9629l-4.4272-5.06L20,20h6m1-2H19l-3,4,7,8,7-8-3-4Z" })), _path171$b || (_path171$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentSketch.propTypes = iconPropTypes; } var DocumentSubtract = /*#__PURE__*/React__default["default"].forwardRef(function DocumentSubtract(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$b || (_path172$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 24H30V26H20z" })), _path173$b || (_path173$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v8h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentSubtract.propTypes = iconPropTypes; } var DocumentTasks = /*#__PURE__*/React__default["default"].forwardRef(function DocumentTasks(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$b || (_path174$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 27.18L19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z" })), _path175$b || (_path175$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v6h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h7ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentTasks.propTypes = iconPropTypes; } var DocumentUnknown = /*#__PURE__*/React__default["default"].forwardRef(function DocumentUnknown(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle7$a || (_circle7$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "28.5", r: "1.5" })), _path176$b || (_path176$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,25H8V21h2a2,2,0,0,0,0-4H8a2.0023,2.0023,0,0,0-2,2v.5H4V19a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z" })), _path177$b || (_path177$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.7,9.3l-7-7A.9085.9085,0,0,0,20,2H10A2.0058,2.0058,0,0,0,8,4v8h2V4h8v6a2.0058,2.0058,0,0,0,2,2h6V28H14v2H26a2.0058,2.0058,0,0,0,2-2V10A.9092.9092,0,0,0,27.7,9.3ZM20,10V4.4L25.6,10Z" })), children); }); { DocumentUnknown.propTypes = iconPropTypes; } var DocumentUnprotected = /*#__PURE__*/React__default["default"].forwardRef(function DocumentUnprotected(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path178$b || (_path178$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.499,9.085,16.707,2.293A1,1,0,0,0,16,2H6A2.0058,2.0058,0,0,0,4,4V28a2.0058,2.0058,0,0,0,2,2h8V28H6V4h8v6a2.0023,2.0023,0,0,0,2,2h6.292a1.7075,1.7075,0,0,0,1.207-2.915ZM16,10V4.4141L21.5854,10Z" })), _path179$b || (_path179$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,21H22V18a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v5a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V23A2.0025,2.0025,0,0,0,28,21Zm-8,7V23h8v5Z" })), children); }); { DocumentUnprotected.propTypes = iconPropTypes; } var DocumentVertical = /*#__PURE__*/React__default["default"].forwardRef(function DocumentVertical(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$b || (_path180$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,14a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,16,14Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z" })), _path181$b || (_path181$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2H8A2.0023,2.0023,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2H24a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,24,2ZM12,24V18a.9447.9447,0,0,1,1-1h6a.9447.9447,0,0,1,1,1v6H18v4H14V24Zm8,4V26a2.0058,2.0058,0,0,0,2-2V18a2.9463,2.9463,0,0,0-3-3H13a2.9463,2.9463,0,0,0-3,3v6a2.0058,2.0058,0,0,0,2,2v2H8V4H24V28Z" })), children); }); { DocumentVertical.propTypes = iconPropTypes; } var DocumentVideo = /*#__PURE__*/React__default["default"].forwardRef(function DocumentVideo(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$b || (_path182$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,19l-4,3.2V20a2.0023,2.0023,0,0,0-2-2H16a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V23.8L30,27ZM16,26V20h8l.0015,6Z" })), _path183$b || (_path183$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3l2,0V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h4ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentVideo.propTypes = iconPropTypes; } var DocumentView = /*#__PURE__*/React__default["default"].forwardRef(function DocumentView(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle8$a || (_circle8$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "24", r: "2" })), _path184$b || (_path184$b = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z" })), _path185$b || (_path185$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" })), _path186$b || (_path186$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v4h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h4ZM18,4.4,23.6,10H18Z" })), children); }); { DocumentView.propTypes = iconPropTypes; } var DocumentWordProcessor = /*#__PURE__*/React__default["default"].forwardRef(function DocumentWordProcessor(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$b || (_path187$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.3 20L27.391 28.611 26 20 24 20 22.609 28.611 21.7 20 20 20 21.36 30 23.64 30 25 21.626 26.36 30 28.64 30 30 20 28.3 20z" })), _path188$b || (_path188$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.707,9.293l-7-7A1,1,0,0,0,18,2H8A2.002,2.002,0,0,0,6,4V28a2.0023,2.0023,0,0,0,2,2h8V28H8V4h8v6a2.002,2.002,0,0,0,2,2h6v4h2V10A1,1,0,0,0,25.707,9.293ZM18,4.4141,23.5859,10H18Z" })), children); }); { DocumentWordProcessor.propTypes = iconPropTypes; } var DocumentWordProcessorReference = /*#__PURE__*/React__default["default"].forwardRef(function DocumentWordProcessorReference(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$b || (_path189$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.3 20L27.391 28.611 26 20 24 20 22.609 28.611 21.7 20 20 20 21.36 30 23.64 30 25 21.626 26.36 30 28.64 30 30 20 28.3 20zM4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM25.707 9.293l-7-7A1 1 0 0018 2H8A2.002 2.002 0 006 4V16H8V4h8v6a2.002 2.002 0 002 2h6v4h2V10A1 1 0 0025.707 9.293zM18 10V4.4141L23.5859 10z" })), children); }); { DocumentWordProcessorReference.propTypes = iconPropTypes; } var DocumentSentiment = /*#__PURE__*/React__default["default"].forwardRef(function DocumentSentiment(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$b || (_path190$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.303,16a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,25l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,16Z" })), _path191$b || (_path191$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7,9.3l-7-7A.9078.9078,0,0,0,18,2H8A2.0059,2.0059,0,0,0,6,4V28a2.0059,2.0059,0,0,0,2,2H24a2.0059,2.0059,0,0,0,2-2V10A.9078.9078,0,0,0,25.7,9.3ZM18,4.4,23.6,10H18ZM24,28H8V4h8v6a2.0059,2.0059,0,0,0,2,2h6Z" })), children); }); { DocumentSentiment.propTypes = iconPropTypes; } var DogWalker = /*#__PURE__*/React__default["default"].forwardRef(function DogWalker(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$b || (_path192$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20H22V30H20zM4 23H6V30H4z" })), _path193$b || (_path193$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30H14V26a1.0011 1.0011 0 00-1-1H11v5H9V23h4a3.0033 3.0033 0 013 3zM7.5 22A3.5041 3.5041 0 014 18.5V17H2V15H6v3.5a1.5 1.5 0 003 0V15h4v2H11v1.5A3.5041 3.5041 0 017.5 22zM27 10H21.354a2.9861 2.9861 0 00-2.7856 1.8857l-1.4419 3.6055-3.6079 4.51 1.562 1.249 3.7-4.625 1.645-3.9961A.9949.9949 0 0121.354 12H27a1.0009 1.0009 0 011 1v7H25V30h2V22h1a2.0023 2.0023 0 002-2V13A3.0033 3.0033 0 0027 10zM24 9a4 4 0 114-4A4.0045 4.0045 0 0124 9zm0-6a2 2 0 102 2A2.0021 2.0021 0 0024 3z" })), children); }); { DogWalker.propTypes = iconPropTypes; } var DotMark = /*#__PURE__*/React__default["default"].forwardRef(function DotMark(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle9$a || (_circle9$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "8" })), children); }); { DotMark.propTypes = iconPropTypes; } var DoubleInteger = /*#__PURE__*/React__default["default"].forwardRef(function DoubleInteger(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$b || (_path194$b = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 8V6H13V2H11V6H8V2H6V6H2V8H6v3H2v2H6v4H8V13h3v4h2V13h4V11H13V8zm-6 3H8V8h3zM30 21V19H26V15H24v4H21V15H19v4H15v2h4v3H15v2h4v4h2V26h3v4h2V26h4V24H26V21zm-6 3H21V21h3z" })), children); }); { DoubleInteger.propTypes = iconPropTypes; } var DownToBottom = /*#__PURE__*/React__default["default"].forwardRef(function DownToBottom(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$a || (_path195$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 18L6 8 7.4 6.6 16 15.2 24.6 6.6 26 8zM4 22H28V24H4z" })), children); }); { DownToBottom.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$a, _path2$a, _path3$a, _path4$a, _path5$a, _path6$a, _path7$a, _path8$a, _path9$a, _path10$a, _path11$a, _path12$a, _path13$a, _path14$a, _path15$a, _path16$a, _circle$a, _path17$a, _path18$a, _path19$a, _path20$a, _path21$a, _path22$a, _path23$a, _path24$a, _circle2$a, _path25$a, _path26$a, _path27$a, _path28$a, _circle3$a, _path29$a, _path30$a, _path31$a, _path32$a, _path33$a, _path34$a, _path35$a, _path36$a, _path37$a, _path38$a, _path39$a, _path40$a, _path41$a, _path42$a, _path43$a, _path44$a, _path45$a, _path46$a, _path47$a, _path48$a, _path49$a, _path50$a, _path51$a, _path52$a, _path53$a, _path54$a, _path55$a, _path56$a, _circle4$9, _circle5$9, _circle6$9, _circle7$9, _path57$a, _path58$a, _path59$a, _circle8$9, _circle9$9, _circle10$9, _path60$a, _path61$a, _path62$a, _path63$a, _path64$a, _path65$a, _path66$a, _path67$a, _path68$a, _path69$a, _circle11$9, _path70$a, _path71$a, _path72$a, _path73$a, _path74$a, _path75$a, _path76$a, _path77$a, _path78$a, _path79$a, _path80$a, _path81$a, _path82$a, _path83$a, _path84$a, _path85$a, _path86$a, _path87$a, _path88$a, _path89$a, _path90$a, _path91$a, _path92$a, _path93$a, _path94$a, _path95$a, _path96$a, _path97$a, _path98$a, _path99$a, _path100$a, _path101$a, _path102$a, _path103$a, _path104$a, _path105$a, _path106$a, _path107$a, _path108$a, _path109$a, _path110$a, _path111$a, _path112$a, _path113$a, _path114$a, _path115$a, _path116$a, _path117$a, _path118$a, _path119$a, _path120$a, _path121$a, _path122$a, _path123$a, _path124$a, _path125$a, _path126$a, _path127$a, _path128$a, _path129$a, _path130$a, _path131$a, _path132$a, _path133$a, _path134$a, _path135$a, _path136$a, _path137$a, _path138$a, _path139$a, _path140$a, _path141$a, _path142$a, _path143$a, _path144$a, _path145$a, _circle12$8, _path146$a, _path147$a, _path148$a, _path149$a, _path150$a, _path151$a, _path152$a, _path153$a, _path154$a, _path155$a, _path156$a, _path157$a, _path158$a, _path159$a, _path160$a, _path161$a, _path162$a, _path163$a, _circle13$7, _path164$a, _path165$a, _circle14$6, _path166$a, _circle15$6, _circle16$6, _path167$a, _path168$a, _path169$a, _path170$a, _path171$a, _path172$a, _path173$a, _path174$a, _path175$a, _path176$a, _path177$a, _path178$a, _path179$a, _path180$a, _path181$a, _path182$a, _path183$a, _path184$a, _path185$a, _path186$a, _path187$a, _path188$a, _path189$a, _path190$a, _path191$a, _path192$a, _path193$a, _path194$a, _path195$9, _path196$9, _path197$9, _path198$9, _path199$9, _path200$9, _path201$9, _path202$9, _path203$9, _path204$9, _path205$9, _path206$9, _path207$9, _path208$9, _path209$9, _rect$3; var _excluded$f = ["children", "size"], _excluded2$a = ["children", "size"], _excluded3$a = ["children", "size"], _excluded4$a = ["children", "size"], _excluded5$a = ["children", "size"], _excluded6$a = ["children", "size"], _excluded7$a = ["children", "size"], _excluded8$a = ["children", "size"], _excluded9$a = ["children", "size"], _excluded10$a = ["children", "size"], _excluded11$a = ["children", "size"], _excluded12$a = ["children", "size"], _excluded13$a = ["children", "size"], _excluded14$a = ["children", "size"], _excluded15$a = ["children", "size"], _excluded16$a = ["children", "size"], _excluded17$a = ["children", "size"], _excluded18$a = ["children", "size"], _excluded19$a = ["children", "size"], _excluded20$a = ["children", "size"], _excluded21$a = ["children", "size"], _excluded22$a = ["children", "size"], _excluded23$a = ["children", "size"], _excluded24$a = ["children", "size"], _excluded25$a = ["children", "size"], _excluded26$a = ["children", "size"], _excluded27$a = ["children", "size"], _excluded28$a = ["children", "size"], _excluded29$a = ["children", "size"], _excluded30$a = ["children", "size"], _excluded31$a = ["children", "size"], _excluded32$a = ["children", "size"], _excluded33$a = ["children", "size"], _excluded34$a = ["children", "size"], _excluded35$a = ["children", "size"], _excluded36$a = ["children", "size"], _excluded37$a = ["children", "size"], _excluded38$a = ["children", "size"], _excluded39$a = ["children", "size"], _excluded40$a = ["children", "size"], _excluded41$a = ["children", "size"], _excluded42$a = ["children", "size"], _excluded43$a = ["children", "size"], _excluded44$a = ["children", "size"], _excluded45$a = ["children", "size"], _excluded46$a = ["children", "size"], _excluded47$a = ["children", "size"], _excluded48$a = ["children", "size"], _excluded49$a = ["children", "size"], _excluded50$a = ["children", "size"], _excluded51$a = ["children", "size"], _excluded52$a = ["children", "size"], _excluded53$a = ["children", "size"], _excluded54$a = ["children", "size"], _excluded55$a = ["children", "size"], _excluded56$a = ["children", "size"], _excluded57$a = ["children", "size"], _excluded58$a = ["children", "size"], _excluded59$a = ["children", "size"], _excluded60$a = ["children", "size"], _excluded61$a = ["children", "size"], _excluded62$a = ["children", "size"], _excluded63$a = ["children", "size"], _excluded64$a = ["children", "size"], _excluded65$a = ["children", "size"], _excluded66$a = ["children", "size"], _excluded67$a = ["children", "size"], _excluded68$a = ["children", "size"], _excluded69$a = ["children", "size"], _excluded70$a = ["children", "size"], _excluded71$a = ["children", "size"], _excluded72$a = ["children", "size"], _excluded73$a = ["children", "size"], _excluded74$a = ["children", "size"], _excluded75$a = ["children", "size"], _excluded76$a = ["children", "size"], _excluded77$a = ["children", "size"], _excluded78$a = ["children", "size"], _excluded79$a = ["children", "size"], _excluded80$a = ["children", "size"], _excluded81$a = ["children", "size"], _excluded82$a = ["children", "size"], _excluded83$a = ["children", "size"], _excluded84$a = ["children", "size"], _excluded85$a = ["children", "size"], _excluded86$a = ["children", "size"], _excluded87$a = ["children", "size"], _excluded88$a = ["children", "size"], _excluded89$a = ["children", "size"], _excluded90$a = ["children", "size"], _excluded91$a = ["children", "size"], _excluded92$a = ["children", "size"], _excluded93$a = ["children", "size"], _excluded94$a = ["children", "size"], _excluded95$a = ["children", "size"], _excluded96$a = ["children", "size"], _excluded97$a = ["children", "size"], _excluded98$a = ["children", "size"], _excluded99$a = ["children", "size"], _excluded100$a = ["children", "size"], _excluded101$a = ["children", "size"], _excluded102$a = ["children", "size"], _excluded103$a = ["children", "size"], _excluded104$a = ["children", "size"], _excluded105$a = ["children", "size"], _excluded106$a = ["children", "size"], _excluded107$a = ["children", "size"], _excluded108$a = ["children", "size"], _excluded109$a = ["children", "size"], _excluded110$a = ["children", "size"], _excluded111$a = ["children", "size"], _excluded112$a = ["children", "size"], _excluded113$a = ["children", "size"], _excluded114$a = ["children", "size"], _excluded115$a = ["children", "size"], _excluded116$a = ["children", "size"], _excluded117$a = ["children", "size"], _excluded118$a = ["children", "size"], _excluded119$a = ["children", "size"], _excluded120$a = ["children", "size"], _excluded121$a = ["children", "size"], _excluded122$a = ["children", "size"], _excluded123$a = ["children", "size"], _excluded124$9 = ["children", "size"], _excluded125$9 = ["children", "size"]; var Download = /*#__PURE__*/React__default["default"].forwardRef(function Download(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$f); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path$a || (_path$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 7L12.3 6.3 8.5 10.1 8.5 1 7.5 1 7.5 10.1 3.7 6.3 3 7 8 12zM13 12v2H3v-2H2v2l0 0c0 .6.4 1 1 1h10c.6 0 1-.4 1-1l0 0v-2H13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$a || (_path2$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 24v4H6V24H4v4H4a2 2 0 002 2H26a2 2 0 002-2h0V24zM26 14L24.59 12.59 17 20.17 17 2 15 2 15 20.17 7.41 12.59 6 14 16 24 26 14z" })), children); }); { Download.propTypes = iconPropTypes; } var WatsonHealthDownloadStudy = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthDownloadStudy(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$a || (_path3$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 25L28.586 23.586 26 26.172 26 18 24 18 24 26.172 21.414 23.586 20 25 25 30 30 25zM19 14H23V16H19zM19 10H26V12H19zM9 18h6a3 3 0 013 3v2H16V21a1 1 0 00-1-1H9a1 1 0 00-1 1v2H6V21A3 3 0 019 18zM16 13a4 4 0 10-4 4A4 4 0 0016 13zm-2 0a2 2 0 11-2-2A2 2 0 0114 13z" })), _path4$a || (_path4$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,26H4V6H28V16h2V6a2,2,0,0,0-2-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H18Z" })), children); }); { WatsonHealthDownloadStudy.propTypes = iconPropTypes; } var DragHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function DragHorizontal(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$a || (_path5$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 4L12 15 5.83 15 8.41 12.41 7 11 2 16 7 21 8.41 19.59 5.83 17 12 17 12 28 14 28 14 4 12 4zM25 11L23.59 12.41 26.17 15 20 15 20 4 18 4 18 28 20 28 20 17 26.17 17 23.59 19.59 25 21 30 16 25 11z" })), children); }); { DragHorizontal.propTypes = iconPropTypes; } var DragVertical = /*#__PURE__*/React__default["default"].forwardRef(function DragVertical(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$a || (_path6$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L15 20 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17 17 20 28 20 28 18 4 18 4 20zM11 7L12.41 8.41 15 5.83 15 12 4 12 4 14 28 14 28 12 17 12 17 5.83 19.59 8.41 21 7 16 2 11 7z" })), children); }); { DragVertical.propTypes = iconPropTypes; } var Draggable = /*#__PURE__*/React__default["default"].forwardRef(function Draggable(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$a || (_path7$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6H14V10H10zM18 6H22V10H18zM10 14H14V18H10zM18 14H22V18H18zM10 22H14V26H10zM18 22H22V26H18z" })), children); }); { Draggable.propTypes = iconPropTypes; } var Draw = /*#__PURE__*/React__default["default"].forwardRef(function Draw(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$a || (_path8$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.14,28a3.42,3.42,0,0,1-2.42-5.85L21.86,17a1.42,1.42,0,1,0-2-2L13,21.85a3.5,3.5,0,0,1-4.85,0,3.43,3.43,0,0,1,0-4.84l8.58-8.58a1.42,1.42,0,1,0-2-2L6.41,14.7,5,13.3,13.29,5a3.43,3.43,0,0,1,4.84,4.85L9.56,18.42a1.42,1.42,0,0,0,0,2,1.45,1.45,0,0,0,2,0l6.86-6.86a3.43,3.43,0,1,1,4.85,4.84l-5.15,5.15a1.42,1.42,0,0,0,2,2l4.44-4.43L26,22.56,21.56,27A3.38,3.38,0,0,1,19.14,28Z" })), children); }); { Draw.propTypes = iconPropTypes; } var DrillBack = /*#__PURE__*/React__default["default"].forwardRef(function DrillBack(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$a || (_path9$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 22L7.414 20.586 3.828 17 12 17 12 15 3.828 15 7.414 11.414 6 10 0 16 6 22z" })), _path10$a || (_path10$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10a5.9815,5.9815,0,0,0-4.2427,1.7573L16,16l-4.2427,4.2427A6,6,0,1,0,16,10Z" })), _path11$a || (_path11$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.9581,13.9581,0,0,0,6.105,6.105L7.5188,7.5186a12,12,0,1,1,0,16.9628L6.105,25.895A13.9974,13.9974,0,1,0,16,2Z" })), children); }); { DrillBack.propTypes = iconPropTypes; } var DrillDown = /*#__PURE__*/React__default["default"].forwardRef(function DrillDown(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$a || (_path12$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6L11.414 4.586 15 8.172 15 0 17 0 17 8.172 20.586 4.586 22 6 16 12 10 6z" })), _path13$a || (_path13$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,16a5.9815,5.9815,0,0,0-1.7573-4.2427L16,16l-4.2427-4.2427A6,6,0,1,0,22,16Z" })), _path14$a || (_path14$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16a13.9581,13.9581,0,0,0-4.105-9.895L24.4814,7.5188a12,12,0,1,1-16.9628,0L6.105,6.105A13.9974,13.9974,0,1,0,30,16Z" })), children); }); { DrillDown.propTypes = iconPropTypes; } var DrillThrough = /*#__PURE__*/React__default["default"].forwardRef(function DrillThrough(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$a || (_path15$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12,12,0,1,0,16,4V2a14,14,0,0,1,0,28Z" })), _path16$a || (_path16$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 12L4 10 8.586 10 2 3.414 3.414 2 10 8.586 10 4 12 4 12 12 4 12zM16 10v6H10a6 6 0 106-6z" })), children); }); { DrillThrough.propTypes = iconPropTypes; } var DriverAnalysis = /*#__PURE__*/React__default["default"].forwardRef(function DriverAnalysis(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$a || (_circle$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "16", r: "2" })), _path17$a || (_path17$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DriverAnalysis.propTypes = iconPropTypes; } var Drone = /*#__PURE__*/React__default["default"].forwardRef(function Drone(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$a || (_path18$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path19$a || (_path19$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Drone.propTypes = iconPropTypes; } var DroneDelivery = /*#__PURE__*/React__default["default"].forwardRef(function DroneDelivery(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$a || (_path20$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,30H12V22h8Zm-6-2h4V24H14Z" })), _path21$a || (_path21$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path22$a || (_path22$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DroneDelivery.propTypes = iconPropTypes; } var DroneFront = /*#__PURE__*/React__default["default"].forwardRef(function DroneFront(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$a || (_path23$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path24$a || (_path24$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DroneFront.propTypes = iconPropTypes; } var DroneVideo = /*#__PURE__*/React__default["default"].forwardRef(function DroneVideo(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle2$a || (_circle2$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "21", r: "1" })), _path25$a || (_path25$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path26$a || (_path26$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DroneVideo.propTypes = iconPropTypes; } var DropPhoto = /*#__PURE__*/React__default["default"].forwardRef(function DropPhoto(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$a || (_path27$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path28$a || (_path28$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { DropPhoto.propTypes = iconPropTypes; } var DropPhotoFilled = /*#__PURE__*/React__default["default"].forwardRef(function DropPhotoFilled(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3$a || (_circle3$a = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "19", cy: "22", r: "2" })), _path29$a || (_path29$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path30$a || (_path30$a = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path31$a || (_path31$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 11H29V13H27zM27 7H29V9H27zM27 3H29V5H27zM23 3H25V5H23zM19 3H21V5H19zM15 3H17V5H15zM11 3H13V5H11zM7 3H9V5H7zM3 3H5V5H3zM3 7H5V9H3zM3 11H5V13H3zM3 15H5V17H3zM3 19H5V21H3zM3 23H5V25H3zM3 27H5V29H3z" })), children); }); { DropPhotoFilled.propTypes = iconPropTypes; } var Drought = /*#__PURE__*/React__default["default"].forwardRef(function Drought(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$a || (_path32$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Drought.propTypes = iconPropTypes; } var Dvr = /*#__PURE__*/React__default["default"].forwardRef(function Dvr(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$a || (_path33$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Dvr.propTypes = iconPropTypes; } var Earth = /*#__PURE__*/React__default["default"].forwardRef(function Earth(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$a || (_path34$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Earth.propTypes = iconPropTypes; } var EarthAmericas = /*#__PURE__*/React__default["default"].forwardRef(function EarthAmericas(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$a || (_path35$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthAmericas.propTypes = iconPropTypes; } var EarthAmericasFilled = /*#__PURE__*/React__default["default"].forwardRef(function EarthAmericasFilled(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$a || (_path36$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthAmericasFilled.propTypes = iconPropTypes; } var EarthEuropeAfrica = /*#__PURE__*/React__default["default"].forwardRef(function EarthEuropeAfrica(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$a || (_path37$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthEuropeAfrica.propTypes = iconPropTypes; } var EarthEuropeAfricaFilled = /*#__PURE__*/React__default["default"].forwardRef(function EarthEuropeAfricaFilled(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$a || (_path38$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthEuropeAfricaFilled.propTypes = iconPropTypes; } var EarthFilled = /*#__PURE__*/React__default["default"].forwardRef(function EarthFilled(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$a || (_path39$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthFilled.propTypes = iconPropTypes; } var EarthSoutheastAsia = /*#__PURE__*/React__default["default"].forwardRef(function EarthSoutheastAsia(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$a || (_path40$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 24H17V26H14zM17 22H19V24H17zM17 18H19V20H17z" })), _path41$a || (_path41$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthSoutheastAsia.propTypes = iconPropTypes; } var EarthSoutheastAsiaFilled = /*#__PURE__*/React__default["default"].forwardRef(function EarthSoutheastAsiaFilled(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$a || (_path42$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 22H19V24H17zM17 18H19V20H17zM14 24H17V26H14z" })), _path43$a || (_path43$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EarthSoutheastAsiaFilled.propTypes = iconPropTypes; } var Earthquake = /*#__PURE__*/React__default["default"].forwardRef(function Earthquake(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$a || (_path44$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Earthquake.propTypes = iconPropTypes; } var EdgeCluster = /*#__PURE__*/React__default["default"].forwardRef(function EdgeCluster(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$a || (_path45$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdgeCluster.propTypes = iconPropTypes; } var EdgeDevice = /*#__PURE__*/React__default["default"].forwardRef(function EdgeDevice(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$a || (_path46$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path47$a || (_path47$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdgeDevice.propTypes = iconPropTypes; } var WatsonHealthEdgeEnhancement = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthEdgeEnhancement(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48$a || (_path48$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path49$a || (_path49$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthEdgeEnhancement.propTypes = iconPropTypes; } var WatsonHealthEdgeEnhancement_01 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthEdgeEnhancement_01(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$a || (_path50$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path51$a || (_path51$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthEdgeEnhancement_01.propTypes = iconPropTypes; } var WatsonHealthEdgeEnhancement_02 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthEdgeEnhancement_02(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$a || (_path52$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path53$a || (_path53$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthEdgeEnhancement_02.propTypes = iconPropTypes; } var WatsonHealthEdgeEnhancement_03 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthEdgeEnhancement_03(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$a || (_path54$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 20H22v2h4v2H23v2h3v2H22v2h4a2.0027 2.0027 0 002-2V22A2.0023 2.0023 0 0026 20zM28 16h2A14 14 0 0016 2V4A12 12 0 0128 16z" })), _path55$a || (_path55$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthEdgeEnhancement_03.propTypes = iconPropTypes; } var EdgeNode = /*#__PURE__*/React__default["default"].forwardRef(function EdgeNode(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$a || (_path56$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 6H26V10H22z" })), _circle4$9 || (_circle4$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "7", r: "1" })), _circle5$9 || (_circle5$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "25", r: "1" })), _circle6$9 || (_circle6$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "21", r: "1" })), _circle7$9 || (_circle7$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "17", r: "1" })), _path57$a || (_path57$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path58$a || (_path58$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdgeNode.propTypes = iconPropTypes; } var EdgeNodeAlt = /*#__PURE__*/React__default["default"].forwardRef(function EdgeNodeAlt(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$a || (_path59$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle8$9 || (_circle8$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "8", r: "1" })), _circle9$9 || (_circle9$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "16", r: "1" })), _circle10$9 || (_circle10$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "24", r: "1" })), _path60$a || (_path60$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdgeNodeAlt.propTypes = iconPropTypes; } var EdgeService = /*#__PURE__*/React__default["default"].forwardRef(function EdgeService(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$a || (_path61$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 11H9V21H7zM11 11H13V21H11zM15 11H17V21H15zM19 11H21V21H19zM23 11H25V21H23z" })), _path62$a || (_path62$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdgeService.propTypes = iconPropTypes; } var Edit = /*#__PURE__*/React__default["default"].forwardRef(function Edit(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63$a || (_path63$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Edit.propTypes = iconPropTypes; } var EditOff = /*#__PURE__*/React__default["default"].forwardRef(function EditOff(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$a || (_path64$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EditOff.propTypes = iconPropTypes; } var EdtLoop = /*#__PURE__*/React__default["default"].forwardRef(function EdtLoop(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$a || (_path65$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EdtLoop.propTypes = iconPropTypes; } var Education = /*#__PURE__*/React__default["default"].forwardRef(function Education(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$a || (_path66$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path67$a || (_path67$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,2V4H9v7a7,7,0,0,0,14,0V4h5V2Zm7,2H21V7H11Zm5,12a5,5,0,0,1-5-5V9H21v2A5,5,0,0,1,16,16Z" })), children); }); { Education.propTypes = iconPropTypes; } var Email$1 = /*#__PURE__*/React__default["default"].forwardRef(function Email(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$a || (_path68$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Email$1.propTypes = iconPropTypes; } var EmailNew = /*#__PURE__*/React__default["default"].forwardRef(function EmailNew(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$a || (_path69$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle11$9 || (_circle11$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "24", r: "4" })), children); }); { EmailNew.propTypes = iconPropTypes; } var Encryption = /*#__PURE__*/React__default["default"].forwardRef(function Encryption(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$a || (_path70$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Encryption.propTypes = iconPropTypes; } var EnergyRenewable = /*#__PURE__*/React__default["default"].forwardRef(function EnergyRenewable(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71$a || (_path71$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EnergyRenewable.propTypes = iconPropTypes; } var Enterprise = /*#__PURE__*/React__default["default"].forwardRef(function Enterprise(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$a || (_path72$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14z" })), _path73$a || (_path73$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30ZM4,4H20V28H4ZM22,28V14h6V28Z" })), children); }); { Enterprise.propTypes = iconPropTypes; } var Equalizer = /*#__PURE__*/React__default["default"].forwardRef(function Equalizer(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path74$a || (_path74$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H10V30H2zM2 24H10V26H2zM12 28H20V30H12zM12 24H20V26H12zM2 20H10V22H2zM12 20H20V22H12zM2 16H10V18H2zM12 16H20V18H12zM12 12H20V14H12zM12 8H20V10H12zM12 4H20V6H12zM22 28H30V30H22zM22 24H30V26H22z" })), children); }); { Equalizer.propTypes = iconPropTypes; } var Erase = /*#__PURE__*/React__default["default"].forwardRef(function Erase(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$a || (_path75$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Erase.propTypes = iconPropTypes; } var WatsonHealthErase_3D = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthErase_3D(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$a || (_path76$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthErase_3D.propTypes = iconPropTypes; } var Error$1 = /*#__PURE__*/React__default["default"].forwardRef(function Error(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$a || (_path77$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Error$1.propTypes = iconPropTypes; } var ErrorFilled = /*#__PURE__*/React__default["default"].forwardRef(function ErrorFilled(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$a); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path78$a || (_path78$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path79$a || (_path79$a = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M10.7,11.5L4.5,5.3l0.8-0.8l6.2,6.2L10.7,11.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path80$a || (_path80$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path81$a || (_path81$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path82$a || (_path82$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path83$a || (_path83$a = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16.3,17.5L6.5,7.7l1.2-1.2l9.8,9.8L16.3,17.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$a || (_path84$a = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M14.9 7.2H17.1V24.799H14.9z", "data-icon-path": "inner-path", transform: "rotate(-45 16 16)" })), _path85$a || (_path85$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ErrorFilled.propTypes = iconPropTypes; } var ErrorOutline = /*#__PURE__*/React__default["default"].forwardRef(function ErrorOutline(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$a); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path86$a || (_path86$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path87$a || (_path87$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.4 3.6H8.5V12.4H7.4z", transform: "rotate(-45.001 8 8)" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$a || (_path88$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.9 7.2H17.1V24.799H14.9z", transform: "rotate(-45 16 16)" })), _path89$a || (_path89$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ErrorOutline.propTypes = iconPropTypes; } var Event = /*#__PURE__*/React__default["default"].forwardRef(function Event(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$a || (_path90$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" })), _path91$a || (_path91$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Event.propTypes = iconPropTypes; } var EventSchedule = /*#__PURE__*/React__default["default"].forwardRef(function EventSchedule(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$a || (_path92$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path93$a || (_path93$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.59 25L20 22.41 20 18 22 18 22 21.59 24 23.59 22.59 25z" })), _path94$a || (_path94$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" })), children); }); { EventSchedule.propTypes = iconPropTypes; } var Events = /*#__PURE__*/React__default["default"].forwardRef(function Events(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$a || (_path95$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Events.propTypes = iconPropTypes; } var EventsAlt = /*#__PURE__*/React__default["default"].forwardRef(function EventsAlt(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$a || (_path96$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { EventsAlt.propTypes = iconPropTypes; } var ExamMode = /*#__PURE__*/React__default["default"].forwardRef(function ExamMode(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$a || (_path97$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ExamMode.propTypes = iconPropTypes; } var Exit = /*#__PURE__*/React__default["default"].forwardRef(function Exit(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$a || (_path98$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Exit.propTypes = iconPropTypes; } var ExpandAll = /*#__PURE__*/React__default["default"].forwardRef(function ExpandAll(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$a || (_path99$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ExpandAll.propTypes = iconPropTypes; } var ExpandCategories = /*#__PURE__*/React__default["default"].forwardRef(function ExpandCategories(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$a || (_path100$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ExpandCategories.propTypes = iconPropTypes; } var Explore = /*#__PURE__*/React__default["default"].forwardRef(function Explore(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$a || (_path101$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path102$a || (_path102$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Explore.propTypes = iconPropTypes; } var Export = /*#__PURE__*/React__default["default"].forwardRef(function Export(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$a); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path103$a || (_path103$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$a || (_path104$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Export.propTypes = iconPropTypes; } var Eyedropper = /*#__PURE__*/React__default["default"].forwardRef(function Eyedropper(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$a || (_path105$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Eyedropper.propTypes = iconPropTypes; } var FaceActivated = /*#__PURE__*/React__default["default"].forwardRef(function FaceActivated(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$a || (_path106$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path107$a || (_path107$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceActivated.propTypes = iconPropTypes; } var FaceActivatedAdd = /*#__PURE__*/React__default["default"].forwardRef(function FaceActivatedAdd(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$a || (_path108$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path109$a || (_path109$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.82,14A12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a14.71,14.71,0,0,0-.16-2Z" })), children); }); { FaceActivatedAdd.propTypes = iconPropTypes; } var FaceActivatedFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceActivatedFilled(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$a || (_path110$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceActivatedFilled.propTypes = iconPropTypes; } var FaceAdd = /*#__PURE__*/React__default["default"].forwardRef(function FaceAdd(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$a || (_path111$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path112$a || (_path112$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceAdd.propTypes = iconPropTypes; } var FaceCool = /*#__PURE__*/React__default["default"].forwardRef(function FaceCool(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$a || (_path113$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path114$a || (_path114$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceCool.propTypes = iconPropTypes; } var FaceDissatisfied = /*#__PURE__*/React__default["default"].forwardRef(function FaceDissatisfied(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$a || (_path115$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path116$a || (_path116$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceDissatisfied.propTypes = iconPropTypes; } var FaceDissatisfiedFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceDissatisfiedFilled(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$a || (_path117$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceDissatisfiedFilled.propTypes = iconPropTypes; } var FaceDizzy = /*#__PURE__*/React__default["default"].forwardRef(function FaceDizzy(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$a || (_path118$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path119$a || (_path119$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceDizzy.propTypes = iconPropTypes; } var FaceDizzyFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceDizzyFilled(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$a || (_path120$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceDizzyFilled.propTypes = iconPropTypes; } var FaceMask = /*#__PURE__*/React__default["default"].forwardRef(function FaceMask(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$a || (_path121$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path122$a || (_path122$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceMask.propTypes = iconPropTypes; } var FaceNeutral = /*#__PURE__*/React__default["default"].forwardRef(function FaceNeutral(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$a || (_path123$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path124$a || (_path124$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceNeutral.propTypes = iconPropTypes; } var FaceNeutralFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceNeutralFilled(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$a || (_path125$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceNeutralFilled.propTypes = iconPropTypes; } var FacePending = /*#__PURE__*/React__default["default"].forwardRef(function FacePending(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$a || (_path126$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path127$a || (_path127$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FacePending.propTypes = iconPropTypes; } var FacePendingFilled = /*#__PURE__*/React__default["default"].forwardRef(function FacePendingFilled(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$a || (_path128$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FacePendingFilled.propTypes = iconPropTypes; } var FaceSatisfied = /*#__PURE__*/React__default["default"].forwardRef(function FaceSatisfied(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$a || (_path129$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path130$a || (_path130$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceSatisfied.propTypes = iconPropTypes; } var FaceSatisfiedFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceSatisfiedFilled(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$a || (_path131$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceSatisfiedFilled.propTypes = iconPropTypes; } var FaceWink = /*#__PURE__*/React__default["default"].forwardRef(function FaceWink(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$a || (_path132$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path133$a || (_path133$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceWink.propTypes = iconPropTypes; } var FaceWinkFilled = /*#__PURE__*/React__default["default"].forwardRef(function FaceWinkFilled(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$a || (_path134$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FaceWinkFilled.propTypes = iconPropTypes; } var Factor = /*#__PURE__*/React__default["default"].forwardRef(function Factor(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$a || (_path135$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,28V9H24V4h2V2H20V4h2V9H19V28H15V16H12V11h2V9H8v2h2v5H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V18h4Zm8-17h4V28H21Z" })), children); }); { Factor.propTypes = iconPropTypes; } var Fade = /*#__PURE__*/React__default["default"].forwardRef(function Fade(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$a); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path136$a || (_path136$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$a || (_path137$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Fade.propTypes = iconPropTypes; } var Favorite = /*#__PURE__*/React__default["default"].forwardRef(function Favorite(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$a || (_path138$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Favorite.propTypes = iconPropTypes; } var FavoriteFilled = /*#__PURE__*/React__default["default"].forwardRef(function FavoriteFilled(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$a || (_path139$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FavoriteFilled.propTypes = iconPropTypes; } var FavoriteHalf = /*#__PURE__*/React__default["default"].forwardRef(function FavoriteHalf(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$a || (_path140$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FavoriteHalf.propTypes = iconPropTypes; } var FetchUpload = /*#__PURE__*/React__default["default"].forwardRef(function FetchUpload(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$a || (_path141$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,7,6,17l1.41,1.41L15,10.83V28H2v2H15a2,2,0,0,0,2-2V10.83l7.59,7.58L26,17Z" })), _path142$a || (_path142$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z" })), children); }); { FetchUpload.propTypes = iconPropTypes; } var FetchUploadCloud = /*#__PURE__*/React__default["default"].forwardRef(function FetchUploadCloud(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$a || (_path143$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,13l-5,5,1.41,1.41L15,16.83V28H6v2h9a2,2,0,0,0,2-2V16.83l2.59,2.58L21,18Z" })), _path144$a || (_path144$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FetchUploadCloud.propTypes = iconPropTypes; } var FileStorage = /*#__PURE__*/React__default["default"].forwardRef(function FileStorage(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$a || (_path145$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle12$8 || (_circle12$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path146$a || (_path146$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FileStorage.propTypes = iconPropTypes; } var Filter = /*#__PURE__*/React__default["default"].forwardRef(function Filter(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$a || (_path147$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Filter.propTypes = iconPropTypes; } var FilterEdit = /*#__PURE__*/React__default["default"].forwardRef(function FilterEdit(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$a || (_path148$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path149$a || (_path149$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FilterEdit.propTypes = iconPropTypes; } var FilterRemove = /*#__PURE__*/React__default["default"].forwardRef(function FilterRemove(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$a || (_path150$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path151$a || (_path151$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FilterRemove.propTypes = iconPropTypes; } var FilterReset = /*#__PURE__*/React__default["default"].forwardRef(function FilterReset(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$a || (_path152$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path153$a || (_path153$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FilterReset.propTypes = iconPropTypes; } var Finance = /*#__PURE__*/React__default["default"].forwardRef(function Finance(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$a || (_path154$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Finance.propTypes = iconPropTypes; } var FingerprintRecognition = /*#__PURE__*/React__default["default"].forwardRef(function FingerprintRecognition(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$a || (_path155$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path156$a || (_path156$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path157$a || (_path157$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path158$a || (_path158$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path159$a || (_path159$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FingerprintRecognition.propTypes = iconPropTypes; } var Fire = /*#__PURE__*/React__default["default"].forwardRef(function Fire(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$a || (_path160$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Fire.propTypes = iconPropTypes; } var Firewall = /*#__PURE__*/React__default["default"].forwardRef(function Firewall(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$a || (_path161$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path162$a || (_path162$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Firewall.propTypes = iconPropTypes; } var FirewallClassic = /*#__PURE__*/React__default["default"].forwardRef(function FirewallClassic(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$a || (_path163$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FirewallClassic.propTypes = iconPropTypes; } var Fish = /*#__PURE__*/React__default["default"].forwardRef(function Fish(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle13$7 || (_circle13$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "7", r: "1" })), _path164$a || (_path164$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Fish.propTypes = iconPropTypes; } var FishMultiple = /*#__PURE__*/React__default["default"].forwardRef(function FishMultiple(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$a || (_path165$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle14$6 || (_circle14$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17", cy: "11", r: "1" })), _path166$a || (_path166$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle15$6 || (_circle15$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "11", r: "1" })), _circle16$6 || (_circle16$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "11", r: "1" })), _path167$a || (_path167$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FishMultiple.propTypes = iconPropTypes; } var FitToHeight = /*#__PURE__*/React__default["default"].forwardRef(function FitToHeight(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$a || (_path168$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path169$a || (_path169$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FitToHeight.propTypes = iconPropTypes; } var FitToScreen = /*#__PURE__*/React__default["default"].forwardRef(function FitToScreen(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$a || (_path170$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path171$a || (_path171$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FitToScreen.propTypes = iconPropTypes; } var FitToWidth = /*#__PURE__*/React__default["default"].forwardRef(function FitToWidth(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$a || (_path172$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path173$a || (_path173$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FitToWidth.propTypes = iconPropTypes; } var Flag = /*#__PURE__*/React__default["default"].forwardRef(function Flag(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$a || (_path174$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30H4V2H28l-5.8,9L28,20H6ZM6,18H24.33L19.8,11l4.53-7H6Z" })), children); }); { Flag.propTypes = iconPropTypes; } var FlagFilled = /*#__PURE__*/React__default["default"].forwardRef(function FlagFilled(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$a || (_path175$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30H4V2H28l-5.8,9L28,20H6Z" })), children); }); { FlagFilled.propTypes = iconPropTypes; } var FlaggingTaxi = /*#__PURE__*/React__default["default"].forwardRef(function FlaggingTaxi(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$a || (_path176$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path177$a || (_path177$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlaggingTaxi.propTypes = iconPropTypes; } var Flash = /*#__PURE__*/React__default["default"].forwardRef(function Flash(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path178$a || (_path178$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Flash.propTypes = iconPropTypes; } var FlashFilled = /*#__PURE__*/React__default["default"].forwardRef(function FlashFilled(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$a || (_path179$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlashFilled.propTypes = iconPropTypes; } var FlashOff = /*#__PURE__*/React__default["default"].forwardRef(function FlashOff(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$a || (_path180$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlashOff.propTypes = iconPropTypes; } var FlashOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function FlashOffFilled(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$a || (_path181$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlashOffFilled.propTypes = iconPropTypes; } var FlightInternational = /*#__PURE__*/React__default["default"].forwardRef(function FlightInternational(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$a || (_path182$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path183$a || (_path183$a = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M25,25l5,2V25l-5-2.5V20a1,1,0,0,0-2,0v2.5L18,25v2l5-2v3.5L21,30v1l3-1,3,1V30l-2-1.5Z" })), children); }); { FlightInternational.propTypes = iconPropTypes; } var FlightRoster = /*#__PURE__*/React__default["default"].forwardRef(function FlightRoster(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$a || (_path184$a = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M26,6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6V26a2,2,0,0,0,2,2h8V26H8V6H24v6h2Z" })), _path185$a || (_path185$a = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 18H16V20H10zM10 14H22V16H10z" })), _path186$a || (_path186$a = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M22 10v2H10V10zM25 23l5 2V23l-5-2.5V18a1 1 0 00-2 0v2.5L18 23v2l5-2v3.5L21 28v1l3-1 3 1V28l-2-1.5z" })), children); }); { FlightRoster.propTypes = iconPropTypes; } var FlightSchedule = /*#__PURE__*/React__default["default"].forwardRef(function FlightSchedule(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$a || (_path187$a = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z" })), _path188$a || (_path188$a = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16V26H6V6h4V8h2V6h8V8h2V6h4v7h2V6A2,2,0,0,0,26,4Z" })), children); }); { FlightSchedule.propTypes = iconPropTypes; } var FloatingIp = /*#__PURE__*/React__default["default"].forwardRef(function FloatingIp(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$a || (_path189$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FloatingIp.propTypes = iconPropTypes; } var Flood = /*#__PURE__*/React__default["default"].forwardRef(function Flood(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$a || (_path190$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Flood.propTypes = iconPropTypes; } var FloodWarning = /*#__PURE__*/React__default["default"].forwardRef(function FloodWarning(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$a || (_path191$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path192$a || (_path192$a = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,11h-1.5V7h1.5ZM23,12a1,1,0,1,0,1,1A1,1,0,0,0,23,12Z" })), _path193$a || (_path193$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path194$a || (_path194$a = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FloodWarning.propTypes = iconPropTypes; } var Floorplan = /*#__PURE__*/React__default["default"].forwardRef(function Floorplan(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$9 || (_path195$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Floorplan.propTypes = iconPropTypes; } var Flow = /*#__PURE__*/React__default["default"].forwardRef(function Flow(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path196$9 || (_path196$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Flow.propTypes = iconPropTypes; } var FlowConnection = /*#__PURE__*/React__default["default"].forwardRef(function FlowConnection(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$9 || (_path197$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlowConnection.propTypes = iconPropTypes; } var FlowData = /*#__PURE__*/React__default["default"].forwardRef(function FlowData(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$9 || (_path198$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { FlowData.propTypes = iconPropTypes; } var FlowModeler = /*#__PURE__*/React__default["default"].forwardRef(function FlowModeler(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$9 || (_path199$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path200$9 || (_path200$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,11H13l-3,4,6,6,6-6Z" })), children); }); { FlowModeler.propTypes = iconPropTypes; } var FlowModelerReference = /*#__PURE__*/React__default["default"].forwardRef(function FlowModelerReference(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$9 || (_path201$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V22h8zm-6-2h4V24H24zM4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM19 11H13l-3 4 6 6 6-6z" })), _path202$9 || (_path202$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 17V15a4 4 0 000-8H12V5H24a6 6 0 010 12zM10 10H2V2h8zM4 8H8V4H4z" })), children); }); { FlowModelerReference.propTypes = iconPropTypes; } var FlowStream = /*#__PURE__*/React__default["default"].forwardRef(function FlowStream(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$9 || (_path203$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 24H11.8625a4.13 4.13 0 00-.4284-1.02L21.98 12.4343A3.9943 3.9943 0 1020.1414 8H14v2h6.1414a3.96 3.96 0 00.4243 1.02L10.02 21.5656A3.9943 3.9943 0 1011.8587 26H20v3h8V21H20zM24 7a2 2 0 11-2 2A2.0023 2.0023 0 0124 7zM8 27a2 2 0 112-2A2.0023 2.0023 0 018 27zm14-4h4v4H22zM9.6929 12.7505a5 5 0 01-.0005-7.5L11.0166 6.75a3 3 0 00-.0005 4.501z" })), _path204$9 || (_path204$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z" })), children); }); { FlowStream.propTypes = iconPropTypes; } var FlowStreamReference = /*#__PURE__*/React__default["default"].forwardRef(function FlowStreamReference(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path205$9 || (_path205$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 24H16v2h4v3h8V21H20zm2-1h4v4H22zM4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM24 5a3.9962 3.9962 0 00-3.8579 3H14v2h6.1421a3.94 3.94 0 00.4248 1.019L14 17.5862 15.4138 19l6.5672-6.5669A3.9521 3.9521 0 0024 13a4 4 0 000-8zm0 6a2 2 0 112-2A2.0023 2.0023 0 0124 11zM9.6929 12.7505a5 5 0 01-.0005-7.5L11.0166 6.75a3 3 0 00-.0005 4.501z" })), _path206$9 || (_path206$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z" })), children); }); { FlowStreamReference.propTypes = iconPropTypes; } var FlowLogsVpc = /*#__PURE__*/React__default["default"].forwardRef(function FlowLogsVpc(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$9 || (_path207$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 19H30V21H18zM18 23H30V25H18zM18 27H26V29H18z" })), _path208$9 || (_path208$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,4a3.9962,3.9962,0,0,0-3.8579,3H12V4H4v8h8V9h8.1421a3.94,3.94,0,0,0,.4248,1.019L10.019,20.5669A3.9521,3.9521,0,0,0,8,20a4,4,0,1,0,3.8579,5H16V23H11.8579a3.94,3.94,0,0,0-.4248-1.019L21.981,11.4331A3.9521,3.9521,0,0,0,24,12a4,4,0,0,0,0-8ZM10,10H6V6h4ZM8,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,26ZM24,10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,10Z" })), children); }); { FlowLogsVpc.propTypes = iconPropTypes; } var Fog = /*#__PURE__*/React__default["default"].forwardRef(function Fog(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$9 || (_path209$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,11.1382a8.9938,8.9938,0,0,0-17.6006,0A6.533,6.533,0,0,0,2,17.5H2V19a1,1,0,0,0,1,1H15a1,1,0,0,0,0-2H4v-.4966H4a4.5176,4.5176,0,0,1,4.144-4.4819l.8155-.064.0991-.812a6.9936,6.9936,0,0,1,13.8838,0l.0986.812.8154.064A4.4962,4.4962,0,0,1,23.5,22H7a1,1,0,0,0,0,2H23.5a6.4963,6.4963,0,0,0,1.3008-12.8618Z" })), _rect$3 || (_rect$3 = /*#__PURE__*/React__default["default"].createElement("rect", { width: "18", height: "2", x: "2", y: "26", rx: "1" })), children); }); { Fog.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$9, _path2$9, _path3$9, _path4$9, _path5$9, _path6$9, _path7$9, _path8$9, _path9$9, _path10$9, _path11$9, _path12$9, _path13$9, _path14$9, _path15$9, _circle$9, _circle2$9, _circle3$9, _path16$9, _path17$9, _path18$9, _path19$9, _circle4$8, _circle5$8, _circle6$8, _path20$9, _path21$9, _path22$9, _path23$9, _path24$9, _path25$9, _path26$9, _path27$9, _path28$9, _path29$9, _path30$9, _path31$9, _path32$9, _path33$9, _path34$9, _path35$9, _path36$9, _path37$9, _path38$9, _path39$9, _path40$9, _path41$9, _path42$9, _path43$9, _path44$9, _circle7$8, _circle8$8, _circle9$8, _circle10$8, _path45$9, _path46$9, _circle11$8, _circle12$7, _circle13$6, _circle14$5, _path47$9, _path48$9, _path49$9, _path50$9, _path51$9, _path52$9, _path53$9, _path54$9, _path55$9, _path56$9, _path57$9, _path58$9, _path59$9, _path60$9, _path61$9, _path62$9, _path63$9, _path64$9, _path65$9, _path66$9, _path67$9, _path68$9, _path69$9, _path70$9, _path71$9, _path72$9, _path73$9, _path74$9, _path75$9, _path76$9, _path77$9, _path78$9, _path79$9, _path80$9, _path81$9, _path82$9, _path83$9, _circle15$5, _circle16$5, _circle17$5, _circle18$4, _circle19$4, _path84$9, _path85$9, _path86$9, _path87$9, _path88$9, _path89$9, _path90$9, _path91$9, _path92$9, _path93$9, _path94$9, _circle20$4, _circle21$3, _circle22$3, _path95$9, _path96$9, _path97$9, _circle23$3, _circle24$3, _circle25$3, _path98$9, _circle26$3, _circle27$3, _circle28$3, _circle29$3, _circle30$3, _path99$9, _path100$9, _path101$9, _path102$9, _circle31$3, _path103$9, _circle32$2, _path104$9, _path105$9, _path106$9, _path107$9, _path108$9, _path109$9, _path110$9, _path111$9, _path112$9, _path113$9, _path114$9, _path115$9, _path116$9, _path117$9, _path118$9, _path119$9, _path120$9, _path121$9, _path122$9, _path123$9, _path124$9, _path125$9, _path126$9, _circle33$2, _circle34$2, _circle35$2, _path127$9, _path128$9, _path129$9, _path130$9, _path131$9, _circle36$2, _path132$9, _path133$9, _circle37$2, _path134$9, _path135$9, _path136$9, _path137$9, _path138$9, _path139$9, _circle38$1, _path140$9, _circle39$1, _path141$9, _path142$9, _path143$9, _path144$9, _path145$9, _path146$9, _path147$9, _path148$9, _path149$9, _path150$9, _path151$9, _path152$9, _path153$9, _path154$9, _path155$9, _path156$9, _path157$9, _path158$9, _path159$9, _path160$9, _path161$9, _path162$9, _path163$9, _path164$9, _path165$9, _path166$9, _path167$9, _path168$9, _path169$9, _path170$9, _path171$9, _path172$9, _circle40$1, _circle41$1, _circle42$1, _circle43$1, _circle44$1, _path173$9, _path174$9, _path175$9, _path176$9, _circle45, _path177$9, _circle46, _path178$9, _path179$9, _path180$9, _path181$9, _path182$9, _path183$9, _path184$9, _path185$9, _path186$9, _path187$9, _path188$9, _path189$9, _path190$9, _path191$9, _path192$9, _path193$9, _path194$9, _path195$8, _path196$8, _path197$8, _path198$8, _path199$8, _path200$8, _path201$8, _circle47, _path202$8, _path203$8, _circle48, _circle49, _circle50, _path204$8, _path205$8, _path206$8, _path207$8, _path208$8, _path209$8, _path210$7, _path211$7, _path212$6, _path213$6, _path214$6, _path215$5, _path216$5, _path217$5; var _excluded$e = ["children", "size"], _excluded2$9 = ["children", "size"], _excluded3$9 = ["children", "size"], _excluded4$9 = ["children", "size"], _excluded5$9 = ["children", "size"], _excluded6$9 = ["children", "size"], _excluded7$9 = ["children", "size"], _excluded8$9 = ["children", "size"], _excluded9$9 = ["children", "size"], _excluded10$9 = ["children", "size"], _excluded11$9 = ["children", "size"], _excluded12$9 = ["children", "size"], _excluded13$9 = ["children", "size"], _excluded14$9 = ["children", "size"], _excluded15$9 = ["children", "size"], _excluded16$9 = ["children", "size"], _excluded17$9 = ["children", "size"], _excluded18$9 = ["children", "size"], _excluded19$9 = ["children", "size"], _excluded20$9 = ["children", "size"], _excluded21$9 = ["children", "size"], _excluded22$9 = ["children", "size"], _excluded23$9 = ["children", "size"], _excluded24$9 = ["children", "size"], _excluded25$9 = ["children", "size"], _excluded26$9 = ["children", "size"], _excluded27$9 = ["children", "size"], _excluded28$9 = ["children", "size"], _excluded29$9 = ["children", "size"], _excluded30$9 = ["children", "size"], _excluded31$9 = ["children", "size"], _excluded32$9 = ["children", "size"], _excluded33$9 = ["children", "size"], _excluded34$9 = ["children", "size"], _excluded35$9 = ["children", "size"], _excluded36$9 = ["children", "size"], _excluded37$9 = ["children", "size"], _excluded38$9 = ["children", "size"], _excluded39$9 = ["children", "size"], _excluded40$9 = ["children", "size"], _excluded41$9 = ["children", "size"], _excluded42$9 = ["children", "size"], _excluded43$9 = ["children", "size"], _excluded44$9 = ["children", "size"], _excluded45$9 = ["children", "size"], _excluded46$9 = ["children", "size"], _excluded47$9 = ["children", "size"], _excluded48$9 = ["children", "size"], _excluded49$9 = ["children", "size"], _excluded50$9 = ["children", "size"], _excluded51$9 = ["children", "size"], _excluded52$9 = ["children", "size"], _excluded53$9 = ["children", "size"], _excluded54$9 = ["children", "size"], _excluded55$9 = ["children", "size"], _excluded56$9 = ["children", "size"], _excluded57$9 = ["children", "size"], _excluded58$9 = ["children", "size"], _excluded59$9 = ["children", "size"], _excluded60$9 = ["children", "size"], _excluded61$9 = ["children", "size"], _excluded62$9 = ["children", "size"], _excluded63$9 = ["children", "size"], _excluded64$9 = ["children", "size"], _excluded65$9 = ["children", "size"], _excluded66$9 = ["children", "size"], _excluded67$9 = ["children", "size"], _excluded68$9 = ["children", "size"], _excluded69$9 = ["children", "size"], _excluded70$9 = ["children", "size"], _excluded71$9 = ["children", "size"], _excluded72$9 = ["children", "size"], _excluded73$9 = ["children", "size"], _excluded74$9 = ["children", "size"], _excluded75$9 = ["children", "size"], _excluded76$9 = ["children", "size"], _excluded77$9 = ["children", "size"], _excluded78$9 = ["children", "size"], _excluded79$9 = ["children", "size"], _excluded80$9 = ["children", "size"], _excluded81$9 = ["children", "size"], _excluded82$9 = ["children", "size"], _excluded83$9 = ["children", "size"], _excluded84$9 = ["children", "size"], _excluded85$9 = ["children", "size"], _excluded86$9 = ["children", "size"], _excluded87$9 = ["children", "size"], _excluded88$9 = ["children", "size"], _excluded89$9 = ["children", "size"], _excluded90$9 = ["children", "size"], _excluded91$9 = ["children", "size"], _excluded92$9 = ["children", "size"], _excluded93$9 = ["children", "size"], _excluded94$9 = ["children", "size"], _excluded95$9 = ["children", "size"], _excluded96$9 = ["children", "size"], _excluded97$9 = ["children", "size"], _excluded98$9 = ["children", "size"], _excluded99$9 = ["children", "size"], _excluded100$9 = ["children", "size"], _excluded101$9 = ["children", "size"], _excluded102$9 = ["children", "size"], _excluded103$9 = ["children", "size"], _excluded104$9 = ["children", "size"], _excluded105$9 = ["children", "size"], _excluded106$9 = ["children", "size"], _excluded107$9 = ["children", "size"], _excluded108$9 = ["children", "size"], _excluded109$9 = ["children", "size"], _excluded110$9 = ["children", "size"], _excluded111$9 = ["children", "size"], _excluded112$9 = ["children", "size"], _excluded113$9 = ["children", "size"], _excluded114$9 = ["children", "size"], _excluded115$9 = ["children", "size"], _excluded116$9 = ["children", "size"], _excluded117$9 = ["children", "size"], _excluded118$9 = ["children", "size"], _excluded119$9 = ["children", "size"], _excluded120$9 = ["children", "size"], _excluded121$9 = ["children", "size"], _excluded122$9 = ["children", "size"], _excluded123$9 = ["children", "size"], _excluded124$8 = ["children", "size"], _excluded125$8 = ["children", "size"]; var Folder = /*#__PURE__*/React__default["default"].forwardRef(function Folder(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$e); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$9 || (_path$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.17,6l3.42,3.41.58.59H28V26H4V6h7.17m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4Z" })), children); }); { Folder.propTypes = iconPropTypes; } var FolderAdd = /*#__PURE__*/React__default["default"].forwardRef(function FolderAdd(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$9 || (_path2$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 20L24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24 26 24z" })), _path3$9 || (_path3$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h14v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z" })), children); }); { FolderAdd.propTypes = iconPropTypes; } var FolderDetails = /*#__PURE__*/React__default["default"].forwardRef(function FolderDetails(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$9 || (_path4$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 20H30V22H16zM16 24H30V26H16zM16 28H23V30H16z" })), _path5$9 || (_path5$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26H4V6h7.17l3.42,3.41.58.59H28v8h2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z" })), children); }); { FolderDetails.propTypes = iconPropTypes; } var FolderDetailsReference = /*#__PURE__*/React__default["default"].forwardRef(function FolderDetailsReference(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$9 || (_path6$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 28H23V30H16zM16 24H30V26H16zM16 20H30V22H16zM4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM28 8H16L12.5859 4.5859A2.0007 2.0007 0 0011.1716 4H4A2 2 0 002 6V18H4V6h7.1716l3.4141 3.4141L15.1716 10H28v8h2V10A2 2 0 0028 8z" })), children); }); { FolderDetailsReference.propTypes = iconPropTypes; } var FolderMoveTo = /*#__PURE__*/React__default["default"].forwardRef(function FolderMoveTo(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$9 || (_path7$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 13L16.59 14.41 19.17 17 10 17 10 19 19.17 19 16.59 21.59 18 23 23 18 18 13z" })), _path8$9 || (_path8$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.1716,6l3.4142,3.4142L15.1716,10H28V26H4V6h7.1716m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.5858,4.5858A2,2,0,0,0,11.1716,4Z" })), children); }); { FolderMoveTo.propTypes = iconPropTypes; } var FolderOff = /*#__PURE__*/React__default["default"].forwardRef(function FolderOff(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$9 || (_path9$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 8H25.4141L30 3.4141 28.5859 2 2 28.5859 3.4141 30l2-2H28a2 2 0 002-2V10A2 2 0 0028 8zm0 18H7.4141l16-16H28zM4 6h7.1716l3.4141 3.4141L15.1716 10H18V8H16L12.5859 4.5859A2.0007 2.0007 0 0011.1716 4H4A2 2 0 002 6V24H4z" })), children); }); { FolderOff.propTypes = iconPropTypes; } var FolderOpen = /*#__PURE__*/React__default["default"].forwardRef(function FolderOpen(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$9 || (_path10$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H20.8284L17.4143,4.5859A2,2,0,0,0,16,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM8,26V14h8v6.17l-2.59-2.58L12,19l5,5,5-5-1.41-1.41L18,20.17V14a2.0025,2.0025,0,0,0-2-2H8a2.0025,2.0025,0,0,0-2,2V26H4V6H16l4,4h8v2H22v2h6V26Z" })), children); }); { FolderOpen.propTypes = iconPropTypes; } var FolderParent = /*#__PURE__*/React__default["default"].forwardRef(function FolderParent(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$9 || (_path11$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H16L12.5857,4.5857A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V16.83l2.59,2.58L22,18l-5-5-5,5,1.41,1.41L16,16.83V26H4V6h7.1716l4,4H28V26H22v2h6a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Z" })), children); }); { FolderParent.propTypes = iconPropTypes; } var FolderShared = /*#__PURE__*/React__default["default"].forwardRef(function FolderShared(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$9 || (_path12$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM22,26H14V25a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm6,0H24V25a3,3,0,0,0-3-3H15a3,3,0,0,0-3,3v1H4V6h7.17l3.42,3.41.58.59H28Z" })), _path13$9 || (_path13$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,17a4,4,0,1,0,4-4A4,4,0,0,0,14,17Zm4-2a2,2,0,1,1-2,2A2,2,0,0,1,18,15Z" })), children); }); { FolderShared.propTypes = iconPropTypes; } var Folders$1 = /*#__PURE__*/React__default["default"].forwardRef(function Folders(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$9 || (_path14$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 28H6a2.0021 2.0021 0 01-2-2V11A2.0021 2.0021 0 016 9h5.6665a2.0119 2.0119 0 011.2007.4L16.3335 12H26a2.0021 2.0021 0 012 2V26A2.0021 2.0021 0 0126 28zM11.6665 11H5.9985L6 26H26V14H15.6665zM28 9H17.6665l-4-3H6V4h7.6665a2.0119 2.0119 0 011.2007.4L18.3335 7H28z" })), children); }); { Folders$1.propTypes = iconPropTypes; } var ForecastHail = /*#__PURE__*/React__default["default"].forwardRef(function ForecastHail(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$9 || (_path15$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" })), _circle$9 || (_circle$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14.5", cy: "23.5", r: "1.5" })), _circle2$9 || (_circle2$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11.5", cy: "19.5", r: "1.5" })), _circle3$9 || (_circle3$9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17.5", cy: "19.5", r: "1.5" })), _path16$9 || (_path16$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.964 14.5H18.036V16.499H12.964z", transform: "rotate(-45 15.5 15.5)" })), _path17$9 || (_path17$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.964 14.5H24.035999999999998V16.499H18.964z", transform: "rotate(-45 21.5 15.5)" })), children); }); { ForecastHail.propTypes = iconPropTypes; } var ForecastHail_30 = /*#__PURE__*/React__default["default"].forwardRef(function ForecastHail_30(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$9 || (_path18$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.964 13.5H14.036000000000001V15.499H8.964z", transform: "rotate(-45 11.5 14.5)" })), _path19$9 || (_path19$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.379 14.5H17.622V16.499H15.379z", transform: "rotate(-44.995 16.5 15.5)" })), _circle4$8 || (_circle4$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10.5", cy: "22.5", r: "1.5" })), _circle5$8 || (_circle5$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.5", cy: "18.5", r: "1.5" })), _circle6$8 || (_circle6$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13.5", cy: "18.5", r: "1.5" })), _path20$9 || (_path20$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z" })), _path21$9 || (_path21$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20H16v2h4v2H17v2h3v2H16v2h4a2.0027 2.0027 0 002-2V22A2.0023 2.0023 0 0020 20zM28 30H26a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 30zm-2-8v6h2V22z" })), children); }); { ForecastHail_30.propTypes = iconPropTypes; } var ForecastLightning = /*#__PURE__*/React__default["default"].forwardRef(function ForecastLightning(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$9 || (_path22$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.67 24L13.934 23 16.221 19 12.332 19 16.325 12 18.062 13 15.778 17 19.668 17 15.67 24z" })), _path23$9 || (_path23$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" })), children); }); { ForecastLightning.propTypes = iconPropTypes; } var ForecastLightning_30 = /*#__PURE__*/React__default["default"].forwardRef(function ForecastLightning_30(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path24$9 || (_path24$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z" })), _path25$9 || (_path25$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.67 24L9.934 23 12.221 19 8.332 19 12.325 12 14.062 13 11.778 17 15.668 17 11.67 24zM20 20H16v2h4v2H17v2h3v2H16v2h4a2.0027 2.0027 0 002-2V22A2.0023 2.0023 0 0020 20zM28 30H26a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2h2a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 30zm-2-8v6h2V22z" })), children); }); { ForecastLightning_30.propTypes = iconPropTypes; } var Fork = /*#__PURE__*/React__default["default"].forwardRef(function Fork(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$9 || (_path26$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18a3.9962,3.9962,0,0,0-3.8579,3H17V11h5.1421a4,4,0,1,0,0-2H17a2.002,2.002,0,0,0-2,2v4H9.8579a4,4,0,1,0,0,2H15v4a2.002,2.002,0,0,0,2,2h5.1421A3.9934,3.9934,0,1,0,26,18ZM26,8a2,2,0,1,1-2,2A2.002,2.002,0,0,1,26,8ZM6,18a2,2,0,1,1,2-2A2.002,2.002,0,0,1,6,18Zm20,6a2,2,0,1,1,2-2A2.002,2.002,0,0,1,26,24Z" })), children); }); { Fork.propTypes = iconPropTypes; } var Forum = /*#__PURE__*/React__default["default"].forwardRef(function Forum(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$9 || (_path27$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H8C6.8,6,6,6.8,6,8v14c0,1.2,0.8,2,2,2h8v-2H8V8h20v14h-7.2L16,28.8l1.6,1.2l4.2-6H28c1.2,0,2-0.8,2-2V8 C30,6.8,29.2,6,28,6z" })), _path28$9 || (_path28$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18H2V5c0-1.7,1.3-3,3-3h13v2H5C4.4,4,4,4.4,4,5V18z" })), children); }); { Forum.propTypes = iconPropTypes; } var Forward_10 = /*#__PURE__*/React__default["default"].forwardRef(function Forward_10(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$9 || (_path29$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" })), _path30$9 || (_path30$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.63 22.13a2.84 2.84 0 01-1.28-.27 2.44 2.44 0 01-.89-.77 3.57 3.57 0 01-.52-1.25 7.69 7.69 0 01-.17-1.68 7.83 7.83 0 01.17-1.68 3.65 3.65 0 01.52-1.25 2.44 2.44 0 01.89-.77 2.84 2.84 0 011.28-.27 2.44 2.44 0 012.16 1 5.23 5.23 0 01.7 2.93 5.23 5.23 0 01-.7 2.93A2.44 2.44 0 0119.63 22.13zm0-1.22a1.07 1.07 0 001-.55A3.38 3.38 0 0021 18.85V17.47a3.31 3.31 0 00-.29-1.5 1.23 1.23 0 00-2.06 0 3.31 3.31 0 00-.29 1.5v1.38a3.38 3.38 0 00.29 1.51A1.06 1.06 0 0019.63 20.91zM10.63 22V20.82h2V15.63l-1.86 1-.55-1.06 2.32-1.3H14v6.5h1.78V22z" })), children); }); { Forward_10.propTypes = iconPropTypes; } var Forward_30 = /*#__PURE__*/React__default["default"].forwardRef(function Forward_30(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$9 || (_path31$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" })), _path32$9 || (_path32$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.64 22.13a2.81 2.81 0 01-1.28-.27 2.36 2.36 0 01-.89-.77A3.39 3.39 0 0117 19.84a7.12 7.12 0 01-.17-1.68A7.24 7.24 0 0117 16.48a3.46 3.46 0 01.52-1.25 2.36 2.36 0 01.89-.77 2.81 2.81 0 011.28-.27 2.44 2.44 0 012.16 1 5.31 5.31 0 01.7 2.93 5.31 5.31 0 01-.7 2.93A2.44 2.44 0 0119.64 22.13zm0-1.22a1 1 0 001-.55 3.24 3.24 0 00.3-1.51V17.47a3.17 3.17 0 00-.3-1.5 1.22 1.22 0 00-2.05 0 3.18 3.18 0 00-.29 1.5v1.38a3.25 3.25 0 00.29 1.51A1 1 0 0019.64 20.91zM12.62 17.42a1.46 1.46 0 001-.27.84.84 0 00.31-.68v-.08a.94.94 0 00-.3-.74 1.2 1.2 0 00-.83-.27 1.65 1.65 0 00-.89.24 2.1 2.1 0 00-.68.68l-.93-.83a5.37 5.37 0 01.44-.51 2.7 2.7 0 01.54-.4 2.55 2.55 0 01.7-.27 3.25 3.25 0 01.87-.1 3.94 3.94 0 011.06.14 2.33 2.33 0 01.82.4 1.91 1.91 0 01.54.63 1.87 1.87 0 01.18.83 2 2 0 01-.11.67 1.82 1.82 0 01-.32.52 1.79 1.79 0 01-.47.36 2.27 2.27 0 01-.57.2V18a2.34 2.34 0 01.63.21 1.7 1.7 0 01.51.38 1.89 1.89 0 01.34.55 2.07 2.07 0 01.12.73 2 2 0 01-.2.92 2 2 0 01-.58.72 2.66 2.66 0 01-.89.45 3.76 3.76 0 01-1.15.16 4.1 4.1 0 01-1-.11A3.1 3.1 0 0111 21.7a2.76 2.76 0 01-.56-.45A4.22 4.22 0 0110 20.7l1.07-.81a3.07 3.07 0 00.28.42 1.94 1.94 0 00.36.34 1.57 1.57 0 00.45.22 2 2 0 00.57.07 1.45 1.45 0 001-.3 1.12 1.12 0 00.34-.85v-.08a1 1 0 00-.37-.8 1.78 1.78 0 00-1.06-.28h-.76V17.42z" })), children); }); { Forward_30.propTypes = iconPropTypes; } var Forward_5 = /*#__PURE__*/React__default["default"].forwardRef(function Forward_5(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$9 || (_path33$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z" })), _path34$9 || (_path34$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z" })), children); }); { Forward_5.propTypes = iconPropTypes; } var Fragile = /*#__PURE__*/React__default["default"].forwardRef(function Fragile(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$9 || (_path35$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,12V6H21v6a5,5,0,0,1-10,0V4h5.5859L14.293,6.293a.9994.9994,0,0,0,0,1.414L15.5859,9,13.293,11.293l1.414,1.414,3-3a.9994.9994,0,0,0,0-1.414L16.4141,7,19.707,3.707A1,1,0,0,0,19,2H10A1,1,0,0,0,9,3v9a7.0053,7.0053,0,0,0,6,6.92V28H10v2H22V28H17V18.92A7.0053,7.0053,0,0,0,23,12Z" })), children); }); { Fragile.propTypes = iconPropTypes; } var Friendship = /*#__PURE__*/React__default["default"].forwardRef(function Friendship(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$9 || (_path36$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 10H7a3.0033 3.0033 0 00-3 3v6a2.0023 2.0023 0 002 2v7a2.0023 2.0023 0 002 2h4a2.0023 2.0023 0 002-2V16H12V28H8V19H6V13a1.0009 1.0009 0 011-1H25a1.0009 1.0009 0 011 1v6H24v9H20V16H18V28a2.0023 2.0023 0 002 2h4a2.0023 2.0023 0 002-2V21a2.0023 2.0023 0 002-2V13A3.0033 3.0033 0 0025 10zM10 9a4 4 0 114-4A4.0042 4.0042 0 0110 9zm0-6a2 2 0 102 2A2.0023 2.0023 0 0010 3zM22 9a4 4 0 114-4A4.0042 4.0042 0 0122 9zm0-6a2 2 0 102 2A2.0023 2.0023 0 0022 3z" })), children); }); { Friendship.propTypes = iconPropTypes; } var FruitBowl = /*#__PURE__*/React__default["default"].forwardRef(function FruitBowl(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$9 || (_path37$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,15a6.0025,6.0025,0,0,0-3.1067-5.2529A3.9792,3.9792,0,0,0,24,7H22a2.0023,2.0023,0,0,1-2,2,6.004,6.004,0,0,0-5.9946,5.8921A7.0005,7.0005,0,0,1,12,10,3.9961,3.9961,0,0,0,9,6.1419V4H7V6.1419A3.9961,3.9961,0,0,0,4,10v5H2v1a14,14,0,0,0,28,0V15Zm-6-4a4.0045,4.0045,0,0,1,4,4H16A4.0045,4.0045,0,0,1,20,11ZM6,10a2,2,0,1,1,4,0,8.991,8.991,0,0,0,1.5322,5H6ZM16,28A12.0166,12.0166,0,0,1,4.0415,17h23.917A12.0166,12.0166,0,0,1,16,28Z" })), children); }); { FruitBowl.propTypes = iconPropTypes; } var Function$1 = /*#__PURE__*/React__default["default"].forwardRef(function Function(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$9 || (_path38$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.6262,29.5256,19.11,27.5935A12.0035,12.0035,0,0,0,25.2312,8.3323l1.5376-1.2788a14.0033,14.0033,0,0,1-7.1426,22.4721Z" })), _path39$9 || (_path39$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,29H8V25.18l.8037-.1607C10.2617,24.728,12,23.6206,12,20V18.6182l-4-2V14.3818l4-2V12c0-5.4673,3.9253-9,10-9h2V6.82l-.8037.1607C21.7383,7.272,20,8.3794,20,12v.3818l4,2v2.2364l-4,2V20C20,25.4673,16.0747,29,10,29Zm0-2c4.9346,0,8-2.6821,8-7V17.3818L21.7642,15.5,18,13.6182V12c0-4.5781,2.3853-6.1924,4-6.76V5c-4.9346,0-8,2.6821-8,7v1.6182L10.2358,15.5,14,17.3818V20c0,4.5781-2.3853,6.1924-4,6.76Z" })), _path40$9 || (_path40$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.2312,24.9465A14.0032,14.0032,0,0,1,12.3779,2.4734l.5161,1.9321A12.0035,12.0035,0,0,0,6.7688,23.6677Z" })), children); }); { Function$1.propTypes = iconPropTypes; } var FunctionMath = /*#__PURE__*/React__default["default"].forwardRef(function FunctionMath(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41$9 || (_path41$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 18L24 18 22 21.897 20 18 18 18 20.905 23 18 28 20 28 22 24.201 24 28 26 28 23.098 23 26 18zM19 6V4H13.9133a1.9906 1.9906 0 00-1.9919 1.8188L11.2686 13H7v2h4.0867l-1 11H5v2h5.0867a1.9906 1.9906 0 001.9919-1.8188L13.0952 15H18V13H13.2769l.6364-7z" })), children); }); { FunctionMath.propTypes = iconPropTypes; } var WatsonHealthFusionBlender = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthFusionBlender(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$9 || (_path42$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,12H17V4h3V2H12V4h3v8H12a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h3v8H12v2h8V28H17V20h3a2,2,0,0,0,2-2V14A2,2,0,0,0,20,12Zm-8,6V14h8v4Z" })), children); }); { WatsonHealthFusionBlender.propTypes = iconPropTypes; } var GameConsole = /*#__PURE__*/React__default["default"].forwardRef(function GameConsole(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$9 || (_path43$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.51,26a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,19l2.33-8.84A5.54,5.54,0,0,1,7.11,6.73a5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,9h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.57,5.57,0,0,1,2.59,3.41L29.81,19a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,21H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,26ZM9.83,8a3.49,3.49,0,0,0-1.72.46,3.6,3.6,0,0,0-1.66,2.19L4.12,19.49A3.6,3.6,0,0,0,6.6,23.88a3.43,3.43,0,0,0,2.62-.34,3.54,3.54,0,0,0,1.66-2.19L11.5,19h9l.61,2.35a3.58,3.58,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.55,3.55,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,8Z" })), _path44$9 || (_path44$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,16a2,2,0,1,1,2-2A2,2,0,0,1,10,16Zm0-2Z" })), _circle7$8 || (_circle7$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "12", r: "1" })), _circle8$8 || (_circle8$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "16", r: "1" })), _circle9$8 || (_circle9$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "14", r: "1" })), _circle10$8 || (_circle10$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "14", r: "1" })), children); }); { GameConsole.propTypes = iconPropTypes; } var GameWireless = /*#__PURE__*/React__default["default"].forwardRef(function GameWireless(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$9 || (_path45$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.51,30a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,23l2.33-8.84a5.54,5.54,0,0,1,2.59-3.41,5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,13h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.55,5.55,0,0,1,2.59,3.41L29.81,23a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,25H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,30ZM9.83,12a3.49,3.49,0,0,0-1.72.46,3.58,3.58,0,0,0-1.66,2.19L4.12,23.49A3.6,3.6,0,0,0,6.6,27.88a3.43,3.43,0,0,0,2.62-.34,3.57,3.57,0,0,0,1.66-2.19L11.5,23h9l.61,2.35a3.6,3.6,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.53,3.53,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,12Z" })), _path46$9 || (_path46$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,20a2,2,0,1,1,2-2A2,2,0,0,1,10,20Zm0-2Z" })), _circle11$8 || (_circle11$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "16", r: "1" })), _circle12$7 || (_circle12$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "20", r: "1" })), _circle13$6 || (_circle13$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "18", r: "1" })), _circle14$5 || (_circle14$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "18", r: "1" })), _path47$9 || (_path47$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.75,9l-1.5-1.33a5,5,0,0,1,7.5,0L18.25,9a3,3,0,0,0-4.5,0Z" })), _path48$9 || (_path48$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.25,6.37a7,7,0,0,0-10.5,0L9.25,5.05a9,9,0,0,1,13.5,0Z" })), children); }); { GameWireless.propTypes = iconPropTypes; } var Gamification = /*#__PURE__*/React__default["default"].forwardRef(function Gamification(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$9 || (_path49$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,23h-.1315l.9635-1.4453A1.0008,1.0008,0,0,0,24,21V12.0005c0-9.8858-7.92-10-8-10A1,1,0,0,0,15,3l-.0005,2H14a.9956.9956,0,0,0-.581.1865l-7,5a1,1,0,0,0-.3676,1.13l1,3a.9976.9976,0,0,0,1.09.6733l4.87-.6958L9.1519,20.47a1,1,0,0,0,.0161,1.085L10.1315,23H10a3.0033,3.0033,0,0,0-3,3v4H26V26A3.0033,3.0033,0,0,0,23,23Zm-7.1519-9.47a1,1,0,0,0-.99-1.52l-6.1738.8819-.5025-1.5078L14.32,7.0005H15.999a1,1,0,0,0,1-.9995L17,4.1289C18.5013,4.4636,21.2167,5.67,21.86,10H19v2h3v2H19v2h3v2H19v2h3v.6973L20.4648,23h-7.93L11.19,20.9824ZM24,28H9V26a1.0009,1.0009,0,0,1,1-1H23a1.0006,1.0006,0,0,1,1,1Z" })), children); }); { Gamification.propTypes = iconPropTypes; } var GasStation = /*#__PURE__*/React__default["default"].forwardRef(function GasStation(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$9 || (_path50$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H15V12H8z" })), _path51$9 || (_path51$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.4142,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5644,3.5644,0,0,0,2.7654,3.5251A3.5062,3.5062,0,0,0,29,24.5V9.4144A2,2,0,0,0,28.4142,8ZM17,26H6V6H17Z" })), children); }); { GasStation.propTypes = iconPropTypes; } var GasStationFilled = /*#__PURE__*/React__default["default"].forwardRef(function GasStationFilled(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$9 || (_path52$9 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8 10H15V12H8z", "data-icon-path": "inner-path" })), _path53$9 || (_path53$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.4143,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5645,3.5645,0,0,0,2.7654,3.5249A3.506,3.506,0,0,0,29,24.5V9.4146A2,2,0,0,0,28.4143,8ZM15,12H8V10h7Z" })), children); }); { GasStationFilled.propTypes = iconPropTypes; } var Gateway = /*#__PURE__*/React__default["default"].forwardRef(function Gateway(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$9 || (_path54$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31,16a1.9857,1.9857,0,0,0-.5859-1.4141L24.6211,8.793,27.489,5.9253a2,2,0,1,0-1.414-1.4141L23.207,7.3789l-5.7929-5.793a1.9995,1.9995,0,0,0-2.8282,0L8.793,7.3789,5.925,4.5112A2,2,0,1,0,4.511,5.9253L7.3789,8.793l-5.793,5.7929a1.9995,1.9995,0,0,0,0,2.8282l5.793,5.7929L4.511,26.0747a2,2,0,1,0,1.414,1.4141l2.868-2.8677,5.7929,5.793a1.9995,1.9995,0,0,0,2.8282,0l5.7929-5.793,2.868,2.8677a2,2,0,1,0,1.414-1.4141L24.6211,23.207l5.793-5.7929A1.9866,1.9866,0,0,0,31,16Zm-7.793,5.793L20.4141,19,19,20.4141l2.793,2.7929L16,29l-5.793-5.793L13,20.4141,11.5859,19,8.793,21.793,3,16l5.7925-5.7935L11.5859,13,13,11.5859,10.2065,8.7925,16,3l5.7935,5.7925L19,11.5859,20.4141,13l2.7934-2.7935L29,16Z" })), children); }); { Gateway.propTypes = iconPropTypes; } var GatewayApi = /*#__PURE__*/React__default["default"].forwardRef(function GatewayApi(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$9 || (_path55$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,18.1841V13.8159a3.0007,3.0007,0,1,0-2,0v4.3687a3,3,0,1,0,2,0ZM16,10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Zm0,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,22Z" })), _path56$9 || (_path56$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewayApi.propTypes = iconPropTypes; } var GatewayMail = /*#__PURE__*/React__default["default"].forwardRef(function GatewayMail(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$9 || (_path57$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.8779,12.1218a.4186.4186,0,0,0-.437-.0971l-9.1666,3.3335a.4167.4167,0,0,0-.0122.7786l4.0006,1.6,1.6,4.0007A.4168.4168,0,0,0,16.25,22h.0067a.4169.4169,0,0,0,.3849-.2743l3.3333-9.1669A.4165.4165,0,0,0,19.8779,12.1218Z" })), _path58$9 || (_path58$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewayMail.propTypes = iconPropTypes; } var GatewayPublic = /*#__PURE__*/React__default["default"].forwardRef(function GatewayPublic(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$9 || (_path59$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,14H14V12a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A2.0023,2.0023,0,0,0,19,14Zm0,7H13V16h6Z" })), _path60$9 || (_path60$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewayPublic.propTypes = iconPropTypes; } var GatewaySecurity = /*#__PURE__*/React__default["default"].forwardRef(function GatewaySecurity(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$9 || (_path61$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,11v6.4678a5.0216,5.0216,0,0,0,2.8613,4.52L16,23l2.1387-1.0127A5.0216,5.0216,0,0,0,21,17.4678V11Zm8,6.4678a3.012,3.012,0,0,1-1.7168,2.7109L16,20.7861l-1.2832-.6074A3.012,3.012,0,0,1,13,17.4678V13h6Z" })), _path62$9 || (_path62$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewaySecurity.propTypes = iconPropTypes; } var GatewayUserAccess = /*#__PURE__*/React__default["default"].forwardRef(function GatewayUserAccess(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63$9 || (_path63$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 22H19V20a1.0011 1.0011 0 00-1-1H14a1.0011 1.0011 0 00-1 1v2H11V20a3.0033 3.0033 0 013-3h4a3.0033 3.0033 0 013 3zM16 16a3.5 3.5 0 113.5-3.5A3.5041 3.5041 0 0116 16zm0-5a1.5 1.5 0 101.5 1.5A1.5017 1.5017 0 0016 11z" })), _path64$9 || (_path64$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewayUserAccess.propTypes = iconPropTypes; } var GatewayVpn = /*#__PURE__*/React__default["default"].forwardRef(function GatewayVpn(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$9 || (_path65$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,14.2783V12a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A1.9929,1.9929,0,0,0,20,14.2783ZM16,10a2.0023,2.0023,0,0,1,2,2v2H14V12A2.0023,2.0023,0,0,1,16,10Zm3,11H13V16h6Z" })), _path66$9 || (_path66$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { GatewayVpn.propTypes = iconPropTypes; } var GenderFemale = /*#__PURE__*/React__default["default"].forwardRef(function GenderFemale(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67$9 || (_path67$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,19.9307a8,8,0,1,0-2,0V22H10v2h5v4h2V24h5V22H17ZM10,12a6,6,0,1,1,6,6A6.0066,6.0066,0,0,1,10,12Z" })), children); }); { GenderFemale.propTypes = iconPropTypes; } var GenderMale = /*#__PURE__*/React__default["default"].forwardRef(function GenderMale(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$9 || (_path68$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,4V6h6.5859l-7.6884,7.6885a8.028,8.028,0,1,0,1.414,1.414L26,7.4141V14h2V4ZM12,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,12,26Z" })), children); }); { GenderMale.propTypes = iconPropTypes; } var GeneratePdf = /*#__PURE__*/React__default["default"].forwardRef(function GeneratePdf(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$9 || (_path69$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24v4H8V24H6v4H6a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2h0V24Z" })), _path70$9 || (_path70$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 21L19.586 19.586 17 22.172 17 14 15 14 15 22.172 12.414 19.586 11 21 16 26 21 21zM28 4L28 2 22 2 22 12 24 12 24 8 27 8 27 6 24 6 24 4 28 4zM17 12H13V2h4a3.0033 3.0033 0 013 3V9A3.0033 3.0033 0 0117 12zm-2-2h2a1.0011 1.0011 0 001-1V5a1.0011 1.0011 0 00-1-1H15zM9 2H4V12H6V9H9a2.0027 2.0027 0 002-2V4A2.0023 2.0023 0 009 2zM6 7V4H9l.001 3z" })), children); }); { GeneratePdf.propTypes = iconPropTypes; } var Gif = /*#__PURE__*/React__default["default"].forwardRef(function Gif(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71$9 || (_path71$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 12v8a3 3 0 003 3h5V15H6v2H8v4H5a1 1 0 01-1-1V12a1 1 0 011-1h5V9H5A3 3 0 002 12zM30 11L30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11zM12 9L12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z" })), children); }); { Gif.propTypes = iconPropTypes; } var Gift = /*#__PURE__*/React__default["default"].forwardRef(function Gift(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$9 || (_path72$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,10H23.2383A4.4867,4.4867,0,0,0,16,4.7065,4.4873,4.4873,0,0,0,8.7617,10H6a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2V28a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V18a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,26,10ZM17,7.5A2.5,2.5,0,1,1,19.5,10H17ZM12.5,5A2.503,2.503,0,0,1,15,7.5V10H12.5a2.5,2.5,0,0,1,0-5ZM6,12h9v4H6Zm2,6h7V28H8ZM24.0012,28H17V18h7ZM17,16V12h9l.0012,4Z" })), children); }); { Gift.propTypes = iconPropTypes; } var Globe = /*#__PURE__*/React__default["default"].forwardRef(function Globe(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$9 || (_path73$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,4a7,7,0,1,1-7,7,7,7,0,0,1,7-7m0-2a9,9,0,1,0,9,9A9,9,0,0,0,14,2Z" })), _path74$9 || (_path74$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,11a13.9563,13.9563,0,0,0-4.1051-9.8949L22.4813,2.5187A11.9944,11.9944,0,0,1,5.5568,19.5194l-.0381-.0381L4.1051,20.8949A13.9563,13.9563,0,0,0,14,25v3H10v2H20V28H16V24.84A14.0094,14.0094,0,0,0,28,11Z" })), children); }); { Globe.propTypes = iconPropTypes; } var Gradient = /*#__PURE__*/React__default["default"].forwardRef(function Gradient(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$9 || (_path75$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0023,2.0023,0,0,0,4,6V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM22,26V22H18v4H14V22H10V18h4V14H10V10h4V6h4v4h4V6h4V26Z" })), _path76$9 || (_path76$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 10H18V14H14zM14 18H18V22H14zM18 14H22V18H18z" })), children); }); { Gradient.propTypes = iconPropTypes; } var GraphicalDataFlow = /*#__PURE__*/React__default["default"].forwardRef(function GraphicalDataFlow(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$9 || (_path77$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H22a2.0023 2.0023 0 01-2-2V22a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0128 30zm-6-8h-.0012L22 28h6V22zM18 26H12a3.0033 3.0033 0 01-3-3V19h2v4a1.001 1.001 0 001 1h6zM26 18H24V15a1.001 1.001 0 00-1-1H18V12h5a3.0033 3.0033 0 013 3zM15 18a.9986.9986 0 01-.4971-.1323L10 15.2886 5.4968 17.8677a1 1 0 01-1.4712-1.0938l1.0618-4.572L2.269 9.1824a1 1 0 01.5662-1.6687l4.2-.7019L9.1006 2.5627a1 1 0 011.7881-.0214l2.2046 4.271 4.0764.7021a1 1 0 01.5613 1.668l-2.8184 3.02 1.0613 4.5718A1 1 0 0115 18zm-5-5s.343.18.4971.2686l3.01 1.7241-.7837-3.3763 2.282-2.4453-3.2331-.5569-1.7456-3.382L8.3829 8.6144l-3.3809.565 2.2745 2.437-.7841 3.3763 3.0105-1.7241C9.657 13.18 10 13 10 13z" })), children); }); { GraphicalDataFlow.propTypes = iconPropTypes; } var Grid = /*#__PURE__*/React__default["default"].forwardRef(function Grid(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$9 || (_path78$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 4H6A2 2 0 004 6v6a2 2 0 002 2h6a2 2 0 002-2V6A2 2 0 0012 4zm0 8H6V6h6zM26 4H20a2 2 0 00-2 2v6a2 2 0 002 2h6a2 2 0 002-2V6A2 2 0 0026 4zm0 8H20V6h6zM12 18H6a2 2 0 00-2 2v6a2 2 0 002 2h6a2 2 0 002-2V20A2 2 0 0012 18zm0 8H6V20h6zM26 18H20a2 2 0 00-2 2v6a2 2 0 002 2h6a2 2 0 002-2V20A2 2 0 0026 18zm0 8H20V20h6z" })), children); }); { Grid.propTypes = iconPropTypes; } var Group$1 = /*#__PURE__*/React__default["default"].forwardRef(function Group(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$9 || (_path79$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 30H29V27a3 3 0 00-3-3H22a3 3 0 00-3 3v3H17V27a5 5 0 015-5h4a5 5 0 015 5zM24 12a3 3 0 11-3 3 3 3 0 013-3m0-2a5 5 0 105 5A5 5 0 0024 10zM15 22H13V19a3 3 0 00-3-3H6a3 3 0 00-3 3v3H1V19a5 5 0 015-5h4a5 5 0 015 5zM8 4A3 3 0 115 7 3 3 0 018 4M8 2a5 5 0 105 5A5 5 0 008 2z" })), children); }); { Group$1.propTypes = iconPropTypes; } var GroupAccess = /*#__PURE__*/React__default["default"].forwardRef(function GroupAccess(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$9 || (_path80$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 19H6V17a3.0033 3.0033 0 013-3h5v2H9a1.0011 1.0011 0 00-1 1zM12 13a4 4 0 114-4A4.0045 4.0045 0 0112 13zm0-6a2 2 0 102 2A2.0021 2.0021 0 0012 7zM20 20a4 4 0 114-4A4.0045 4.0045 0 0120 20zm0-6a2 2 0 102 2A2.0021 2.0021 0 0020 14zM26 26H24V24a1.0011 1.0011 0 00-1-1H17a1.0011 1.0011 0 00-1 1v2H14V24a3.0033 3.0033 0 013-3h6a3.0033 3.0033 0 013 3z" })), _path81$9 || (_path81$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2H8V4H4V28H8zM28 30H24V28h4V4H24V2h4a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30z" })), children); }); { GroupAccess.propTypes = iconPropTypes; } var GroupAccount = /*#__PURE__*/React__default["default"].forwardRef(function GroupAccount(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$9 || (_path82$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 11H11a3 3 0 00-3 3v4h2V14a1 1 0 011-1h6a1 1 0 011 1v1h2V14A3 3 0 0017 11zM10 6a4 4 0 104-4A4 4 0 0010 6zm6 0a2 2 0 11-2-2A2 2 0 0116 6zM22 27H16a2.0021 2.0021 0 01-2-2V19a2.0021 2.0021 0 012-2h6a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0122 27zm-6-8v6h6V19zM8 30H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2H8V4H4V28H8zM28 30H24V28h4V4H24V2h4a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30z" })), children); }); { GroupAccount.propTypes = iconPropTypes; } var GroupPresentation = /*#__PURE__*/React__default["default"].forwardRef(function GroupPresentation(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$9 || (_path83$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 30H8V27H4v3H2V27a2.0023 2.0023 0 012-2H8a2.0023 2.0023 0 012 2zM30 30H28V27H24v3H22V27a2.0023 2.0023 0 012-2h4a2.0023 2.0023 0 012 2zM20 30H18V27H14v3H12V27a2.0023 2.0023 0 012-2h4a2.0023 2.0023 0 012 2z" })), _circle15$5 || (_circle15$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "22", r: "2" })), _circle16$5 || (_circle16$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "6", cy: "22", r: "2" })), _circle17$5 || (_circle17$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "22", r: "2" })), _circle18$4 || (_circle18$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "18", r: "2" })), _circle19$4 || (_circle19$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "18", r: "2" })), _path84$9 || (_path84$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,14H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,26,14ZM6,4v8H26V4Z" })), children); }); { GroupPresentation.propTypes = iconPropTypes; } var GroupResource = /*#__PURE__*/React__default["default"].forwardRef(function GroupResource(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$9 || (_path85$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 24H10a2.0021 2.0021 0 01-2-2V10a2.0021 2.0021 0 012-2H22a2.0021 2.0021 0 012 2V22A2.0021 2.0021 0 0122 24zM10 10V22H22V10zM8 30H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2H8V4H4V28H8zM28 30H24V28h4V4H24V2h4a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30z" })), children); }); { GroupResource.propTypes = iconPropTypes; } var GroupSecurity = /*#__PURE__*/React__default["default"].forwardRef(function GroupSecurity(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$9 || (_path86$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 21H9V19a3.0033 3.0033 0 013-3h6v2H12a1.0011 1.0011 0 00-1 1zM15 15a4 4 0 114-4A4.0045 4.0045 0 0115 15zm0-6a2 2 0 102 2A2.0021 2.0021 0 0015 9zM24 22a4 4 0 114-4A4.0045 4.0045 0 0124 22zm0-6a2 2 0 102 2A2.0021 2.0021 0 0024 16zM30 28H28V26a1.0011 1.0011 0 00-1-1H21a1.0011 1.0011 0 00-1 1v2H18V26a3.0033 3.0033 0 013-3h6a3.0033 3.0033 0 013 3z" })), _path87$9 || (_path87$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z" })), children); }); { GroupSecurity.propTypes = iconPropTypes; } var GroupObjects = /*#__PURE__*/React__default["default"].forwardRef(function GroupObjects(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$9 || (_path88$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,13V9H9V19h4v4H23V13Zm-8-2h6v6H11ZM21,21H15V19h4V15h2Z" })), _path89$9 || (_path89$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" })), children); }); { GroupObjects.propTypes = iconPropTypes; } var GroupObjectsNew = /*#__PURE__*/React__default["default"].forwardRef(function GroupObjectsNew(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$9 || (_path90$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 10L15 10 15 15 10 15 10 17 15 17 15 22 17 22 17 17 22 17 22 15 17 15 17 10z" })), _path91$9 || (_path91$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" })), children); }); { GroupObjectsNew.propTypes = iconPropTypes; } var GroupObjectsSave = /*#__PURE__*/React__default["default"].forwardRef(function GroupObjectsSave(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$9 || (_path92$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 18.18L10.41 14.59 9 16 14 21 23 12 21.59 10.581 14 18.18z" })), _path93$9 || (_path93$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z" })), children); }); { GroupObjectsSave.propTypes = iconPropTypes; } var Growth = /*#__PURE__*/React__default["default"].forwardRef(function Growth(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$9 || (_path94$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,8v2h6.5859L18,18.5859,13.707,14.293a.9994.9994,0,0,0-1.414,0L2,24.5859,3.4141,26,13,16.4141l4.293,4.2929a.9994.9994,0,0,0,1.414,0L28,11.4141V18h2V8Z" })), children); }); { Growth.propTypes = iconPropTypes; } var Gui = /*#__PURE__*/React__default["default"].forwardRef(function Gui(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle20$4 || (_circle20$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "8", r: "1" })), _circle21$3 || (_circle21$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "8", r: "1" })), _circle22$3 || (_circle22$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "8", r: "1" })), _path95$9 || (_path95$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4Zm0,2v4H4V6ZM4,12h6V26H4Zm8,14V12H28V26Z" })), children); }); { Gui.propTypes = iconPropTypes; } var GuiManagement = /*#__PURE__*/React__default["default"].forwardRef(function GuiManagement(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$9 || (_path96$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" })), _path97$9 || (_path97$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2.002,2.002,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H14V26H4V12H28v3h2V6A2.0023,2.0023,0,0,0,28,4Zm0,6H4V6H28Z" })), _circle23$3 || (_circle23$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "8", r: "1" })), _circle24$3 || (_circle24$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "8", r: "1" })), _circle25$3 || (_circle25$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "8", r: "1" })), children); }); { GuiManagement.propTypes = iconPropTypes; } var QH = /*#__PURE__*/React__default["default"].forwardRef(function QH(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$9 || (_path98$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 9L18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z" })), children); }); { QH.propTypes = iconPropTypes; } var Hail = /*#__PURE__*/React__default["default"].forwardRef(function Hail(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle26$3 || (_circle26$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21.5", cy: "29.5", r: "1.5" })), _circle27$3 || (_circle27$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.5", cy: "25.5", r: "1.5" })), _circle28$3 || (_circle28$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.5", cy: "25.5", r: "1.5" })), _circle29$3 || (_circle29$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4.5", cy: "29.5", r: "1.5" })), _circle30$3 || (_circle30$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10.499", cy: "29.5", r: "1.5" })), _path99$9 || (_path99$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.868 30.496L14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z" })), _path100$9 || (_path100$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Hail.propTypes = iconPropTypes; } var WatsonHealthHangingProtocol = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthHangingProtocol(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$9 || (_path101$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.37,20.52,17,15.41V13.86A4,4,0,1,0,12,10h2a2,2,0,1,1,4,.34A2.08,2.08,0,0,1,15.89,12h0a.89.89,0,0,0-.89.89v2.52L5.63,20.52A3.1,3.1,0,0,0,4.25,22a2.83,2.83,0,0,0,2.56,4H25.19a2.83,2.83,0,0,0,2.56-4A3.1,3.1,0,0,0,26.37,20.52ZM25.19,24H6.81A.81.81,0,0,1,6,23.19a1,1,0,0,1,.52-.88L16,17.14l9.48,5.17a1,1,0,0,1,.52.88A.81.81,0,0,1,25.19,24Z" })), children); }); { WatsonHealthHangingProtocol.propTypes = iconPropTypes; } var Harbor = /*#__PURE__*/React__default["default"].forwardRef(function Harbor(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$9 || (_path102$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,17A11.0109,11.0109,0,0,1,17,27.9492V14h6V12H17V9.8579a4,4,0,1,0-2,0V12H9v2h6V27.9492A11.0109,11.0109,0,0,1,5,17H3a13,13,0,0,0,26,0ZM14,6a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,14,6Z" })), children); }); { Harbor.propTypes = iconPropTypes; } var HardwareSecurityModule = /*#__PURE__*/React__default["default"].forwardRef(function HardwareSecurityModule(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle31$3 || (_circle31$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21.5", cy: "7.5", r: "1.5" })), _path103$9 || (_path103$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.4143 20H9V14.5857l6.03-6.03A5.3518 5.3518 0 0115 8a6 6 0 116 6 5.3583 5.3583 0 01-.5559-.03zM11 18h2.5857l6.1706-6.1709.5174.0957A3.935 3.935 0 0021 12a4.0507 4.0507 0 10-3.925-3.2729l.0952.5166L11 15.4143zM28 20H19v2h9v6H4V22H6V20H4a2.0024 2.0024 0 00-2 2v6a2.0024 2.0024 0 002 2H28a2.0024 2.0024 0 002-2V22A2.0024 2.0024 0 0028 20z" })), _circle32$2 || (_circle32$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), children); }); { HardwareSecurityModule.propTypes = iconPropTypes; } var Hashtag = /*#__PURE__*/React__default["default"].forwardRef(function Hashtag(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$9 || (_path104$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12V10H22V4H20v6H12V4H10v6H4v2h6v8H4v2h6v6h2V22h8v6h2V22h6V20H22V12Zm-8,8H12V12h8Z" })), children); }); { Hashtag.propTypes = iconPropTypes; } var Haze = /*#__PURE__*/React__default["default"].forwardRef(function Haze(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$9 || (_path105$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 28H3a1 1 0 010-2H19a1 1 0 010 2zM15 20H3a1 1 0 010-2H15a1 1 0 010 2z" })), _path106$9 || (_path106$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 23.5H28.5V25.5H24.5z", transform: "rotate(45 26.5 24.5)" })), _path107$9 || (_path107$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 15H32V17H28z" })), _path108$9 || (_path108$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 6.5H28.5V8.5H24.5z", transform: "rotate(-45 26.5 7.5)" })), _path109$9 || (_path109$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 2H19V6H17z" })), _path110$9 || (_path110$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 6.5H11.5V8.5H7.5z", transform: "rotate(-135 9.5 7.5)" })), _path111$9 || (_path111$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,8a8.0092,8.0092,0,0,0-8,8h2a6,6,0,1,1,6,6H7a1,1,0,0,0,0,2H18A8,8,0,0,0,18,8Z" })), children); }); { Haze.propTypes = iconPropTypes; } var HazeNight = /*#__PURE__*/React__default["default"].forwardRef(function HazeNight(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$9 || (_path112$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,22H13a1,1,0,0,0,0,2h9.6772a11.0991,11.0991,0,0,1-7.5561,2.9976c-.1384,0-.2783.0048-.4177,0a11.0945,11.0945,0,0,1-3.201-21.584,15.1528,15.1528,0,0,0-.0488,6.5869h2.0457a13.15,13.15,0,0,1,.39-7.6206A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0A13.04,13.04,0,0,0,25.3779,24H29a1,1,0,0,0,0-2Z" })), _path113$9 || (_path113$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 20H17a1 1 0 010-2H27a1 1 0 010 2zM25 16H13a1 1 0 010-2H25a1 1 0 010 2z" })), children); }); { HazeNight.propTypes = iconPropTypes; } var Hd = /*#__PURE__*/React__default["default"].forwardRef(function Hd(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$9 || (_path114$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path115$9 || (_path115$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 11H18V21h4a3 3 0 003-3V14A3 3 0 0022 11zm1 7a1 1 0 01-1 1H20V13h2a1 1 0 011 1zM13 11L13 15 10 15 10 11 8 11 8 21 10 21 10 17 13 17 13 21 15 21 15 11 13 11z" })), children); }); { Hd.propTypes = iconPropTypes; } var HdFilled = /*#__PURE__*/React__default["default"].forwardRef(function HdFilled(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$9 || (_path116$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,13H20v6h2a1,1,0,0,0,1-1V14A1,1,0,0,0,22,13Z" })), _path117$9 || (_path117$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,21H13V17H10v4H8V11h2v4h3V11h2Zm10-3a3,3,0,0,1-3,3H18V11h4a3,3,0,0,1,3,3Z" })), children); }); { HdFilled.propTypes = iconPropTypes; } var Hdr = /*#__PURE__*/React__default["default"].forwardRef(function Hdr(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$9 || (_path118$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 15V11a2 2 0 00-2-2H22V23h2V17h1.48l2.34 6H30l-2.33-6H28A2 2 0 0030 15zm-6-4h4v4H24zM16 23H12V9h4a4 4 0 014 4v6A4 4 0 0116 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H14zM8 9L8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z" })), children); }); { Hdr.propTypes = iconPropTypes; } var Headphones = /*#__PURE__*/React__default["default"].forwardRef(function Headphones(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$9 || (_path119$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,16V15A9,9,0,0,0,7,15v1A5,5,0,0,0,7,26H9V15a7,7,0,0,1,14,0V26h2a5,5,0,0,0,0-10ZM4,21a3,3,0,0,1,3-3v6A3,3,0,0,1,4,21Zm21,3V18a3,3,0,0,1,0,6Z" })), children); }); { Headphones.propTypes = iconPropTypes; } var Headset = /*#__PURE__*/React__default["default"].forwardRef(function Headset(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$9 || (_path120$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,10h-.06A9,9,0,0,0,7.06,10H7A5,5,0,0,0,7,20H9V11a7,7,0,0,1,14,0V21a4,4,0,0,1-3.17,3.91,4,4,0,1,0,.05,2A6,6,0,0,0,25,21V20a5,5,0,0,0,0-10ZM4,15a3,3,0,0,1,3-3v6A3,3,0,0,1,4,15ZM16,28a2,2,0,1,1,2-2A2,2,0,0,1,16,28Zm9-10V12a3,3,0,0,1,0,6Z" })), children); }); { Headset.propTypes = iconPropTypes; } var HealthCross = /*#__PURE__*/React__default["default"].forwardRef(function HealthCross(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$9 || (_path121$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,28H13a2.0023,2.0023,0,0,1-2-2V21H6a2.0023,2.0023,0,0,1-2-2V13a2.002,2.002,0,0,1,2-2h5V6a2.002,2.002,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v5h5a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H21v5A2.0027,2.0027,0,0,1,19,28ZM6,13v6h7v7h6V19h7V13H19V6H13v7Z" })), children); }); { HealthCross.propTypes = iconPropTypes; } var Hearing = /*#__PURE__*/React__default["default"].forwardRef(function Hearing(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$9 || (_path122$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,30V28A10.0114,10.0114,0,0,0,28,18h2A12.0134,12.0134,0,0,1,18,30Z" })), _path123$9 || (_path123$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,26V24a6.0066,6.0066,0,0,0,6-6h2A8.0092,8.0092,0,0,1,18,26Z" })), _path124$9 || (_path124$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 22V20a2.0023 2.0023 0 002-2h2A4.0042 4.0042 0 0118 22zM10 2a9.01 9.01 0 00-9 9H3a7 7 0 0114 0 7.09 7.09 0 01-3.501 6.1348L13 17.4229v3.0732a2.9354 2.9354 0 01-.9009 2.1514 4.1824 4.1824 0 01-4.6318 1.03A4.0918 4.0918 0 015 20H3a6.1156 6.1156 0 003.6694 5.5117 5.7822 5.7822 0 002.3145.4863A6.5854 6.5854 0 0013.4624 24.11 4.94 4.94 0 0015 20.4961V18.5537A9.1077 9.1077 0 0019 11 9.01 9.01 0 0010 2z" })), _path125$9 || (_path125$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.28,8.0825A3.0061,3.0061,0,0,1,13,11h2a4.9786,4.9786,0,0,0-1.8843-3.9111A5.0414,5.0414,0,0,0,8.835,6.1323,4.95,4.95,0,0,0,5.1323,9.835,5.0318,5.0318,0,0,0,7.436,15.2935,3.0777,3.0777,0,0,1,9,17.9229V20h2V17.9229a5.0608,5.0608,0,0,0-2.5371-4.3458A3.0016,3.0016,0,0,1,9.28,8.0825Z" })), children); }); { Hearing.propTypes = iconPropTypes; } var HeatMap = /*#__PURE__*/React__default["default"].forwardRef(function HeatMap(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$9 || (_path126$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 18H22V20H20zM28 16H30V18H28zM14 6H16V8H14zM16 22H12V16a2.0023 2.0023 0 00-2-2H4a2.0023 2.0023 0 00-2 2v6a2.0023 2.0023 0 002 2h6v4a2.0023 2.0023 0 002 2h4a2.0023 2.0023 0 002-2V24A2.0023 2.0023 0 0016 22zM4 22V16h6v6zm8 6V24h4v4zM28 30H24a2.0021 2.0021 0 01-2-2V24a2.0021 2.0021 0 012-2h4a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0128 30zm-4-6v4h4V24zM28 2H22a2.0023 2.0023 0 00-2 2v6H18a2.0023 2.0023 0 00-2 2v2a2.0023 2.0023 0 002 2h2a2.0023 2.0023 0 002-2V12h6a2.0023 2.0023 0 002-2V4A2.0023 2.0023 0 0028 2zM18 14V12h2v2zm4-4V4h6v6zM8 10H4A2.0021 2.0021 0 012 8V4A2.0021 2.0021 0 014 2H8a2.0021 2.0021 0 012 2V8A2.0021 2.0021 0 018 10zM4 4V8H8V4z" })), children); }); { HeatMap.propTypes = iconPropTypes; } var HeatMap_02 = /*#__PURE__*/React__default["default"].forwardRef(function HeatMap_02(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle33$2 || (_circle33$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "20", r: "2" })), _circle34$2 || (_circle34$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "12", r: "2" })), _circle35$2 || (_circle35$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "29", cy: "19", r: "1" })), _path127$9 || (_path127$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5 30A3.5 3.5 0 1130 26.5 3.5041 3.5041 0 0126.5 30zm0-5A1.5 1.5 0 1028 26.5 1.5017 1.5017 0 0026.5 25zM14 30a3.958 3.958 0 01-2.126-.6211 6.9977 6.9977 0 114.1109-6.8384A3.9916 3.9916 0 0114 30zm-1.8843-3.0278l.5391.4946a1.9915 1.9915 0 102.0039-3.343l-.6909-.2432.03-.8467a5.0085 5.0085 0 10-2.5166 4.3023zM24 16a6.0067 6.0067 0 01-6-6 5.3246 5.3246 0 01.0269-.5327A3.9564 3.9564 0 0116 6a4.0045 4.0045 0 014-4 3.9564 3.9564 0 013.4673 2.0271C23.6484 4.009 23.8252 4 24 4a6 6 0 010 12zM20 4a2.0021 2.0021 0 00-2 2 1.9805 1.9805 0 001.43 1.9023l.9018.2706-.2153.9162A3.9938 3.9938 0 1024 6a4.0064 4.0064 0 00-.9121.1162l-.9155.2141-.27-.9006A1.9807 1.9807 0 0020 4zM6.5 11A4.5 4.5 0 1111 6.5 4.5051 4.5051 0 016.5 11zm0-7A2.5 2.5 0 109 6.5 2.503 2.503 0 006.5 4z" })), children); }); { HeatMap_02.propTypes = iconPropTypes; } var HeatMap_03 = /*#__PURE__*/React__default["default"].forwardRef(function HeatMap_03(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$9 || (_path128$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM19,9H13V5h6Zm0,2v4H13V11Zm-8,0v4H5V11Zm0,6v4H5V17Zm2,0h6v4H13Zm8-2V11h6l0,4ZM5,23h6v4H5Zm16,4V23h6v4Z" })), children); }); { HeatMap_03.propTypes = iconPropTypes; } var HeatMapStocks = /*#__PURE__*/React__default["default"].forwardRef(function HeatMapStocks(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$9 || (_path129$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM9,21H5V17H9Zm2,2h4v4H11Zm6,0h4v4H17Zm0-8V11h4v4Zm4-6H17V5h4Zm2,2h4v4H23ZM15,5V15H5V5Zm8,22V17h4V27Z" })), children); }); { HeatMapStocks.propTypes = iconPropTypes; } var Helicopter = /*#__PURE__*/React__default["default"].forwardRef(function Helicopter(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$9 || (_path130$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,8V6H8V8H18v4H4V8H2v8H4V14h6.2192l2.0533,8.2129A4.9923,4.9923,0,0,0,17.123,26H26a4.0045,4.0045,0,0,0,4-4V19.3623a2.0007,2.0007,0,0,0-.4639-1.28L25.0684,12.72A1.9968,1.9968,0,0,0,23.5317,12H20V8ZM26,24H17.123a2.9949,2.9949,0,0,1-2.91-2.2725L12.2808,14H18v6H28v2A2.0023,2.0023,0,0,1,26,24ZM23.5317,14l3.3333,4H20V14Z" })), children); }); { Helicopter.propTypes = iconPropTypes; } var Help = /*#__PURE__*/React__default["default"].forwardRef(function Help(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$9); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path131$9 || (_path131$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle36$2 || (_circle36$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "11.8", r: ".8" })), _path132$9 || (_path132$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5,4H7.8C6.5,4,5.5,5,5.5,6.2c0,0,0,0,0,0v0.2h1V6.2C6.5,5.6,7.1,5,7.8,5h0.8c0.7,0,1.2,0.6,1.2,1.2S9.2,7.5,8.5,7.5h-1 v2.2h1V8.5c1.2,0,2.2-1,2.2-2.2S9.7,4,8.5,4z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$9 || (_path133$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle37$2 || (_circle37$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "23.5", r: "1.5" })), _path134$9 || (_path134$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,8H15.5A4.49,4.49,0,0,0,11,12.5V13h2v-.5A2.5,2.5,0,0,1,15.5,10H17a2.5,2.5,0,0,1,0,5H15v4.5h2V17a4.5,4.5,0,0,0,0-9Z" })), children); }); { Help.propTypes = iconPropTypes; } var HelpFilled = /*#__PURE__*/React__default["default"].forwardRef(function HelpFilled(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$9 || (_path135$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,23a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z" })), _path136$9 || (_path136$9 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z", "data-icon-path": "inner-path" })), children); }); { HelpFilled.propTypes = iconPropTypes; } var HelpDesk = /*#__PURE__*/React__default["default"].forwardRef(function HelpDesk(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$9 || (_path137$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 10H21a3.0033 3.0033 0 00-3 3v6a2.0023 2.0023 0 002 2v7a2.0023 2.0023 0 002 2h4a2.0023 2.0023 0 002-2V21a2.0023 2.0023 0 002-2V13A3.0033 3.0033 0 0027 10zm1 9H26v9H22V19H20V13a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1zM20 5a4 4 0 114 4A4.0042 4.0042 0 0120 5zm2 0a2 2 0 102-2A2.0023 2.0023 0 0022 5zM14 16V13a3.0033 3.0033 0 00-3-3H5a3.0033 3.0033 0 00-3 3v3H0v2H16V16zM4 13a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1v3H4zM4 5A4 4 0 118 9 4.0042 4.0042 0 014 5zM6 5A2 2 0 108 3 2.0023 2.0023 0 006 5z" })), children); }); { HelpDesk.propTypes = iconPropTypes; } var QHintonPlot = /*#__PURE__*/React__default["default"].forwardRef(function QHintonPlot(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$9 || (_path138$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 2H6V6H2zM10 2H14V6H10zM18 2H22V6H18zM26 2H30V6H26zM2 10H6V14H2zM10 10H14V14H10zM18 10H22V14H18zM26 10H30V14H26zM2 18H6V22H2zM10 18H14V22H10zM18 18H22V22H18zM26 18H30V22H26zM2 26H6V30H2zM10 26H14V30H10zM18 26H22V30H18zM26 26H30V30H26z" })), children); }); { QHintonPlot.propTypes = iconPropTypes; } var WatsonHealthHl7Attributes = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthHl7Attributes(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$9 || (_path139$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 9L21 9 21 13 23 13 23 11 26.847 11 22 23 24.157 23 29 11 29 9zM14 21L14 9 12 9 12 23 20 23 20 21 14 21zM8 9L8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z" })), children); }); { WatsonHealthHl7Attributes.propTypes = iconPropTypes; } var WatsonHealthHoleFilling = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthHoleFilling(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle38$1 || (_circle38$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "5" })), _path140$9 || (_path140$9 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthHoleFilling.propTypes = iconPropTypes; } var WatsonHealthHoleFillingCursor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthHoleFillingCursor(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle39$1 || (_circle39$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "19", cy: "19", r: "4" })), _path141$9 || (_path141$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H10a2.0023 2.0023 0 01-2-2V10a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM10 10V28H28V10zM11 2L2 2 2 11 4 11 4 4 11 4 11 2z" })), children); }); { WatsonHealthHoleFillingCursor.propTypes = iconPropTypes; } var Home = /*#__PURE__*/React__default["default"].forwardRef(function Home(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$9 || (_path142$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.6123,2.2138a1.01,1.01,0,0,0-1.2427,0L1,13.4194l1.2427,1.5717L4,13.6209V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM18,26H14V18h4Zm2,0V18a2.0023,2.0023,0,0,0-2-2H14a2.002,2.002,0,0,0-2,2v8H6V12.0615l10-7.79,10,7.8005V26Z" })), children); }); { Home.propTypes = iconPropTypes; } var HorizontalView = /*#__PURE__*/React__default["default"].forwardRef(function HorizontalView(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$9 || (_path143$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H4a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v8A2.0021 2.0021 0 0128 30zM4 20H3.9985L4 28H28V20zM28 14H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2H28a2.0021 2.0021 0 012 2v8A2.0021 2.0021 0 0128 14zM4 4H3.9985L4 12H28V4z" })), children); }); { HorizontalView.propTypes = iconPropTypes; } var Hospital = /*#__PURE__*/React__default["default"].forwardRef(function Hospital(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$9 || (_path144$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 10L17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z" })), _path145$9 || (_path145$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H26V4a2.0023,2.0023,0,0,0-2-2H8A2.0023,2.0023,0,0,0,6,4v6H4a2.0023,2.0023,0,0,0-2,2V30H30V12A2.0023,2.0023,0,0,0,28,10ZM14,28V22h4v6Zm6,0V21a1,1,0,0,0-1-1H13a1,1,0,0,0-1,1v7H4V12H8V4H24v8h4V28Z" })), children); }); { Hospital.propTypes = iconPropTypes; } var HospitalBed = /*#__PURE__*/React__default["default"].forwardRef(function HospitalBed(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$9 || (_path146$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z" })), _path147$9 || (_path147$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.5 17A1.5 1.5 0 118 18.5 1.5017 1.5017 0 019.5 17m0-2A3.5 3.5 0 1013 18.5 3.5 3.5 0 009.5 15zM21 6L17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z" })), children); }); { HospitalBed.propTypes = iconPropTypes; } var Hotel = /*#__PURE__*/React__default["default"].forwardRef(function Hotel(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$9 || (_path148$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.5,15A1.5,1.5,0,1,1,8,16.5,1.5,1.5,0,0,1,9.5,15m0-2A3.5,3.5,0,1,0,13,16.5,3.5,3.5,0,0,0,9.5,13Z" })), _path149$9 || (_path149$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,14H17a2,2,0,0,0-2,2v6H4V10.6L16,4.14l12.53,6.74.94-1.76-13-7a1,1,0,0,0-.94,0l-13,7A1,1,0,0,0,2,10V30H4V24H28v6h2V19A5,5,0,0,0,25,14Zm-8,8V16h8a3,3,0,0,1,3,3v3Z" })), children); }); { Hotel.propTypes = iconPropTypes; } var Hourglass = /*#__PURE__*/React__default["default"].forwardRef(function Hourglass(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$9 || (_path150$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 19H17V21H15zM15 23H17V25H15z" })), _path151$9 || (_path151$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,11.67V4h3V2H6V4H9v7.67a2,2,0,0,0,.4,1.2L11.75,16,9.4,19.13a2,2,0,0,0-.4,1.2V28H6v2H26V28H23V20.33a2,2,0,0,0-.4-1.2L20.25,16l2.35-3.13A2,2,0,0,0,23,11.67ZM21,4v7H11V4Zm0,16.33V28H11V20.33L14.25,16,12,13h8l-2.25,3Z" })), children); }); { Hourglass.propTypes = iconPropTypes; } var Html = /*#__PURE__*/React__default["default"].forwardRef(function Html(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$9 || (_path152$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 19L28 11 26 11 26 21 32 21 32 19 28 19zM24 11L22 11 20.5 15 19 11 17 11 17 21 19 21 19 14 20.5 18 22 14 22 21 24 21 24 11zM9 13L11 13 11 21 13 21 13 13 15 13 15 11 9 11 9 13zM5 11L5 15 2 15 2 11 0 11 0 21 2 21 2 17 5 17 5 21 7 21 7 11 5 11z" })), children); }); { Html.propTypes = iconPropTypes; } var HtmlReference = /*#__PURE__*/React__default["default"].forwardRef(function HtmlReference(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$9 || (_path153$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM28 14L28 6 26 6 26 16 32 16 32 14 28 14zM24 6L22 6 20.5 10 19 6 17 6 17 16 19 16 19 9 20.5 13 22 9 22 16 24 16 24 6zM9 8L11 8 11 16 13 16 13 8 15 8 15 6 9 6 9 8zM5 6L5 10 2 10 2 6 0 6 0 16 2 16 2 12 5 12 5 16 7 16 7 6 5 6z" })), children); }); { HtmlReference.propTypes = iconPropTypes; } var Http = /*#__PURE__*/React__default["default"].forwardRef(function Http(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$9 || (_path154$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 11H25V21h2V18h3a2.0027 2.0027 0 002-2V13A2.0023 2.0023 0 0030 11zm-3 5V13h3l.001 3zM10 13L12 13 12 21 14 21 14 13 16 13 16 11 10 11 10 13zM23 11L17 11 17 13 19 13 19 21 21 21 21 13 23 13 23 11zM6 11L6 15 3 15 3 11 1 11 1 21 3 21 3 17 6 17 6 21 8 21 8 11 6 11z" })), children); }); { Http.propTypes = iconPropTypes; } var Humidity = /*#__PURE__*/React__default["default"].forwardRef(function Humidity(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$9 || (_path155$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.4761,13.9932,16.8472,3.4365a1.04,1.04,0,0,0-1.6944,0L8.4941,14.0444A9.9861,9.9861,0,0,0,7,19a9,9,0,0,0,18,0A10.0632,10.0632,0,0,0,23.4761,13.9932ZM16,26.0005a7.0089,7.0089,0,0,1-7-7,7.978,7.978,0,0,1,1.2183-3.9438l.935-1.4888L21.2271,23.6411A6.9772,6.9772,0,0,1,16,26.0005Z" })), children); }); { Humidity.propTypes = iconPropTypes; } var HumidityAlt = /*#__PURE__*/React__default["default"].forwardRef(function HumidityAlt(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$9 || (_path156$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 12a3.8978 3.8978 0 01-4-3.777 3.9017 3.9017 0 01.6533-2.0639L25.17 2.4141a1.0381 1.0381 0 011.6592 0L29.3154 6.11A3.9693 3.9693 0 0130 8.223 3.8978 3.8978 0 0126 12zm0-7.2368L24.3438 7.2257A1.89 1.89 0 0024 8.223a2.0139 2.0139 0 004 0 1.98 1.98 0 00-.375-1.0466zM23.5 30H8.5A6.4962 6.4962 0 017.2 17.1381a8.9938 8.9938 0 0117.6006 0A6.4964 6.4964 0 0123.5 30zM16 12a7 7 0 00-6.9414 6.1452l-.0991.8122-.8155.064A4.4962 4.4962 0 008.5 28h15a4.4962 4.4962 0 00.3564-8.9786l-.8154-.064-.0986-.8122A7.0022 7.0022 0 0016 12z" })), children); }); { HumidityAlt.propTypes = iconPropTypes; } var Hurricane = /*#__PURE__*/React__default["default"].forwardRef(function Hurricane(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$9 || (_path157$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z" })), children); }); { Hurricane.propTypes = iconPropTypes; } var HybridNetworking = /*#__PURE__*/React__default["default"].forwardRef(function HybridNetworking(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$9 || (_path158$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,24.1836V20H15v4.1836a3,3,0,1,0,2,0Z" })), _path159$9 || (_path159$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,12a3.9962,3.9962,0,0,0-3.8579,3H9.8579a4,4,0,1,0,0,2H22.1421A3.9934,3.9934,0,1,0,26,12ZM6,18a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,6,18Zm20,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,26,18Z" })), _path160$9 || (_path160$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,5a3,3,0,1,0-4,2.8164V12h2V7.8164A2.9917,2.9917,0,0,0,19,5Z" })), children); }); { HybridNetworking.propTypes = iconPropTypes; } var HybridNetworkingAlt = /*#__PURE__*/React__default["default"].forwardRef(function HybridNetworkingAlt(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$9 || (_path161$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a3.9583,3.9583,0,0,0-2.02.5659L17.4141,16,23.981,9.4331A3.9521,3.9521,0,0,0,26,10a4,4,0,1,0-4-4,3.951,3.951,0,0,0,.5669,2.019L16,14.5859,9.4343,8.02A3.9577,3.9577,0,0,0,10,6a4,4,0,1,0-4,4,3.9583,3.9583,0,0,0,2.02-.5659L14.5859,16,8.019,22.5669A3.9521,3.9521,0,0,0,6,22a4,4,0,1,0,4,4,3.951,3.951,0,0,0-.5669-2.019L16,17.4141,22.5657,23.98A3.9577,3.9577,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z" })), children); }); { HybridNetworkingAlt.propTypes = iconPropTypes; } var IbmDataReplication = /*#__PURE__*/React__default["default"].forwardRef(function IbmDataReplication(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162$9 || (_path162$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20v2h5.22a11.0163 11.0163 0 01-11.97 4.6533l-.4986 1.937A13 13 0 0026 24.293V28h2V20zM25 3a4.0045 4.0045 0 00-4 4 3.954 3.954 0 00.5669 2.019L9.019 21.5669A3.9521 3.9521 0 007 21a4 4 0 104 4 3.954 3.954 0 00-.5669-2.019L22.981 10.4331A3.9518 3.9518 0 0025 11a4 4 0 000-8zM7 27a2 2 0 112-2A2.002 2.002 0 017 27zM25 9a2 2 0 112-2A2.002 2.002 0 0125 9zM16 3A13.04 13.04 0 006 7.707V4H4v8h8V10H6.78a11.0163 11.0163 0 0111.97-4.6533l.4986-1.937A13.0358 13.0358 0 0016 3z" })), children); }); { IbmDataReplication.propTypes = iconPropTypes; } var IbmDatastage = /*#__PURE__*/React__default["default"].forwardRef(function IbmDatastage(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$9 || (_path163$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 22.1V13h-2v9.1c-1.4.4-2.5 1.5-2.9 2.9H13v2h9.1c.4 1.7 2 3 3.9 3 2.2 0 4-1.8 4-4C30 24.1 28.7 22.6 27 22.1zM26 28c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2S27.1 28 26 28zM10 30H2v-8h8V30zM4 28h4v-4H4V28zM9.9 7H19V5H9.9C9.4 3.3 7.9 2 6 2 3.8 2 2 3.8 2 6c0 1.9 1.3 3.4 3 3.9V19h2V9.9C8.4 9.5 9.5 8.4 9.9 7zM6 8C4.9 8 4 7.1 4 6s.9-2 2-2 2 .9 2 2S7.1 8 6 8z" })), _path164$9 || (_path164$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 2L22 4 26.6 4 11 19.6 12.4 21 28 5.4 28 10 30 10 30 2z" })), children); }); { IbmDatastage.propTypes = iconPropTypes; } var IbmMatch_360 = /*#__PURE__*/React__default["default"].forwardRef(function IbmMatch_360(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$9 || (_path165$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 25a2 2 0 102 2A2.0059 2.0059 0 005 25zM16 25a2 2 0 102 2A2.0059 2.0059 0 0016 25zM27 25a2 2 0 102 2A2.0059 2.0059 0 0027 25zM28 23H26V11a2.0059 2.0059 0 00-2-2H22V7h2a4.0118 4.0118 0 014 4zM15 12H17V23H15zM6 23H4V11A4.0118 4.0118 0 018 7h2V9H8a2.0059 2.0059 0 00-2 2zM16 2L14.7 4.6343l-2.9057.42 2.1029 2.0514L13.4 10 16 8.6343 18.6 10l-.4972-2.8943 2.1029-2.0486L17.3 4.6343z" })), children); }); { IbmMatch_360.propTypes = iconPropTypes; } var IbmMq = /*#__PURE__*/React__default["default"].forwardRef(function IbmMq(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$9 || (_path166$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,28.4l-0.9-1.8c4-2.1,6.5-6.2,6.5-10.6c0-6.6-5.4-12-12-12c-1.3,0-2.5,0.2-3.7,0.6l-0.6-1.9C13.1,2.2,14.5,2,16,2 c7.7,0,14,6.3,14,14C30,21.2,27.1,26,22.5,28.4z" })), _path167$9 || (_path167$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.5 23.8l-1-1.7c2.2-1.2 3.5-3.6 3.5-6.1 0-3.9-3.1-7-7-7-.6 0-1.2.1-1.8.2l-.5-1.9C14.5 7.1 15.2 7 16 7c5 0 9 4 9 9C25 19.2 23.3 22.2 20.5 23.8zM9.5 28.4C4.9 26 2 21.2 2 16c0-1.5.2-2.9.7-4.3l1.9.6C4.2 13.5 4 14.7 4 16c0 4.5 2.5 8.6 6.5 10.6L9.5 28.4z" })), _path168$9 || (_path168$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.5,23.8C8.7,22.2,7,19.2,7,16c0-0.8,0.1-1.5,0.3-2.2l1.9,0.5C9.1,14.8,9,15.4,9,16c0,2.5,1.3,4.8,3.5,6.1L11.5,23.8z" })), _path169$9 || (_path169$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,16c0-2.2-1.8-4-4-4c-0.7,0-1.4,0.2-2,0.6L8.9,7.5C9,7.3,9,7.2,9,7c0-1.1-0.9-2-2-2S5,5.9,5,7s0.9,2,2,2 c0.2,0,0.3,0,0.5-0.1l5.1,5.1c-0.4,0.6-0.6,1.3-0.6,2c0,1.9,1.3,3.4,3,3.9v7.4c-0.6,0.3-1,1-1,1.7c0,1.1,0.9,2,2,2s2-0.9,2-2 c0-0.7-0.4-1.4-1-1.7v-7.4C18.7,19.4,20,17.9,20,16z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z" })), children); }); { IbmMq.propTypes = iconPropTypes; } var IbmOpenEnterpriseLanguages = /*#__PURE__*/React__default["default"].forwardRef(function IbmOpenEnterpriseLanguages(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$9 || (_path170$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.586 21.414L27.166 25 27.166 25 23.584 28.587 25 30 30 25 25 20zM20.414 21.414L16.834 25 16.834 25 20.416 28.587 19 30 14 25 19 20zM22 6H24V14H22zM18 6H20V14H18zM14 14h-2c-1.103 0-2-.897-2-2V8c0-1.103.897-2 2-2h2c1.103 0 2 .897 2 2v4C16 13.103 15.103 14 14 14zM12 8v4h2V8H12zM6 6H8V14H6z" })), _path171$9 || (_path171$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,28H4c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h22c1.103,0,2,0.897,2,2v12h-2V4H4v22h6V28z" })), children); }); { IbmOpenEnterpriseLanguages.propTypes = iconPropTypes; } var IbmPowerVs = /*#__PURE__*/React__default["default"].forwardRef(function IbmPowerVs(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$9 || (_path172$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 25c-2 0-4-.7-5.6-2l1.3-1.6c1.3 1 2.8 1.5 4.4 1.5 3.9 0 7-3.1 7-7 0-.3 0-.7-.1-1l2-.3C25 15.1 25 15.6 25 16 25 21 21 25 16 25zM7.1 17.3C7 16.9 7 16.4 7 16c0-5 4-9 9-9 2 0 4 .7 5.6 2l-1.3 1.6C19.1 9.5 17.6 9 16 9c-3.9 0-7 3.1-7 7 0 .3 0 .7.1 1L7.1 17.3z" })), _circle40$1 || (_circle40$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "27", r: "1" })), _circle41$1 || (_circle41$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "20", r: "1" })), _circle42$1 || (_circle42$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "12", r: "1" })), _circle43$1 || (_circle43$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle44$1 || (_circle44$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "5", r: "1" })), _path173$9 || (_path173$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30C8.3 30 2 23.7 2 16c0-3.7 1.5-7.3 4.1-9.9l1.4 1.4C5.2 9.8 4 12.8 4 16c0 6.6 5.4 12 12 12 1.4 0 2.8-.2 4.1-.7l.7 1.9C19.3 29.7 17.6 30 16 30zM25.9 25.9l-1.4-1.4c2.3-2.3 3.5-5.3 3.5-8.5 0-6.6-5.4-12-12-12-1.4 0-2.8.2-4.1.7l-.7-1.9C12.7 2.3 14.4 2 16 2c7.7 0 14 6.3 14 14C30 19.7 28.5 23.3 25.9 25.9z" })), children); }); { IbmPowerVs.propTypes = iconPropTypes; } var IbmCloud = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloud(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$9 || (_path174$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5805 13.65A9.7327 9.7327 0 006.286 17.5387 6.75 6.75 0 007 31H23a8.7465 8.7465 0 001.5805-17.35zM23 29.5H7a5.2373 5.2373 0 01-.6993-10.4293 9.7265 9.7265 0 001.1036 3.7838.75.75 0 101.3213-.709A8.25 8.25 0 0122.752 13.5133a8.754 8.754 0 00-6.315 2.95.75.75 0 101.1245.9922A7.25 7.25 0 1123 29.5zM31.8983 10.2548a.7582.7582 0 00-1.0364-.2776l-3.02 1.7438A.7587.7587 0 1028.6 13.035l3.02-1.7438A.7589.7589 0 0031.8983 10.2548zM22.6764 7.87a.7583.7583 0 001.0364-.2776l1.7438-3.02a.7587.7587 0 00-1.314-.7588l-1.7438 3.02A.7588.7588 0 0022.6764 7.87zM16 6.0811a.759.759 0 00.7588-.7588V1.8347a.7588.7588 0 10-1.5175 0V5.3223A.7589.7589 0 0016 6.0811zM8.2873 7.5922a.7587.7587 0 001.314-.7588l-1.7438-3.02a.7587.7587 0 10-1.314.7588zM4.1585 11.721l-3.02-1.7438a.7587.7587 0 10-.7588 1.314L3.4 13.035a.7587.7587 0 10.7588-1.314z" })), children); }); { IbmCloud.propTypes = iconPropTypes; } var IbmCloudCitrixDaas = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudCitrixDaas(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$9 || (_path175$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 23H23V27H19zM26 23H30V27H26zM19 16H23V20H19zM26 16H30V20H26z" })), _path176$9 || (_path176$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4c-4.3,0-7.9,3-8.8,7.1c-3,0.6-5.2,3.3-5.2,6.4C2,21.1,4.9,24,8.5,24H16v-2H8.5C6,22,4,20,4,17.5c0-2.3,1.8-4.3,4.1-4.5 L9,13l0.1-0.8C9.5,8.6,12.5,6,16,6c3.9,0,7,3.1,7,7h2C25,8,21,4,16,4z" })), children); }); { IbmCloudCitrixDaas.propTypes = iconPropTypes; } var IbmCloudDedicatedHost = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDedicatedHost(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle45 || (_circle45 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "6", r: "1" })), _path177$9 || (_path177$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 2H6A2 2 0 004 4V8a2 2 0 002 2h9v4h2V10h9a2 2 0 002-2V4A2 2 0 0026 2zm0 6H6V4H26zM17 28L17 26 15 26 15 28 4 28 4 30 28 30 28 28 17 28z" })), _circle46 || (_circle46 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "20", r: "1" })), _path178$9 || (_path178$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,24H26a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v4A2,2,0,0,0,6,24Zm0-6H26v4H6Z" })), children); }); { IbmCloudDedicatedHost.propTypes = iconPropTypes; } var IbmCloudDirectLink_1Connect = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_1Connect(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$9 || (_path179$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,29H13c-1.1,0-2-0.9-2-2v-4h2v4h14V13h-4v-2h4c1.1,0,2,0.9,2,2v14C29,28.1,28.1,29,27,29z" })), _path180$9 || (_path180$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,17c-0.5,0-0.9,0.1-1.3,0.3l-4-4c0.2-0.4,0.3-0.8,0.3-1.3c0-1.7-1.3-3-3-3s-3,1.3-3,3s1.3,3,3,3c0.5,0,0.9-0.1,1.3-0.3 l4,4C17.1,19.1,17,19.5,17,20c0,1.7,1.3,3,3,3s3-1.3,3-3S21.7,17,20,17z M11,12c0-0.6,0.4-1,1-1s1,0.4,1,1s-0.4,1-1,1S11,12.6,11,12 z M20,21c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S20.6,21,20,21z" })), _path181$9 || (_path181$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,3h14c1.1,0,2,0.9,2,2v4h-2V5H5v14h4v2H5c-1.1,0-2-0.9-2-2V5C3,3.9,3.9,3,5,3z" })), children); }); { IbmCloudDirectLink_1Connect.propTypes = iconPropTypes; } var IbmCloudDirectLink_1Dedicated = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_1Dedicated(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$9 || (_path182$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,29H13c-1.1,0-2-0.9-2-2v-4h2v4h14V13h-4v-2h4c1.1,0,2,0.9,2,2v14C29,28.1,28.1,29,27,29z" })), _path183$9 || (_path183$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,21h-6c-1.1,0-2-0.9-2-2v-6c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2v6C21,20.1,20.1,21,19,21z M13,13v6h6l0-6H13z" })), _path184$9 || (_path184$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,3h14c1.1,0,2,0.9,2,2v4h-2V5H5v14h4v2H5c-1.1,0-2-0.9-2-2V5C3,3.9,3.9,3,5,3z" })), children); }); { IbmCloudDirectLink_1Dedicated.propTypes = iconPropTypes; } var IbmCloudDirectLink_1DedicatedHosting = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_1DedicatedHosting(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$9 || (_path185$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,29H13c-1.1,0-2-0.9-2-2v-4h2v4h14V13h-4v-2h4c1.1,0,2,0.9,2,2v14C29,28.1,28.1,29,27,29z" })), _path186$9 || (_path186$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 19H21V21H11zM11 15H21V17H11zM11 11H21V13H11z" })), _path187$9 || (_path187$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,3h14c1.1,0,2,0.9,2,2v4h-2V5H5v14h4v2H5c-1.1,0-2-0.9-2-2V5C3,3.9,3.9,3,5,3z" })), children); }); { IbmCloudDirectLink_1DedicatedHosting.propTypes = iconPropTypes; } var IbmCloudDirectLink_1Exchange = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_1Exchange(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$9 || (_path188$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,29H13c-1.1,0-2-0.9-2-2v-4h2v4h14V13h-4v-2h4c1.1,0,2,0.9,2,2v14C29,28.1,28.1,29,27,29z" })), _path189$9 || (_path189$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 15L19 19 15 19 15 21 21 21 21 15zM17 11L11 11 11 17 13 17 13 13 17 13z" })), _path190$9 || (_path190$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,3h14c1.1,0,2,0.9,2,2v4h-2V5H5v14h4v2H5c-1.1,0-2-0.9-2-2V5C3,3.9,3.9,3,5,3z" })), children); }); { IbmCloudDirectLink_1Exchange.propTypes = iconPropTypes; } var IbmCloudDirectLink_2Connect = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_2Connect(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$9 || (_path191$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.2,13c0.4,1.2,1.5,2,2.8,2c1.7,0,3-1.3,3-3s-1.3-3-3-3c-1.3,0-2.4,0.8-2.8,2H5c-1.1,0-2,0.9-2,2v6H0v2h3v6 c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4h-2v4H5V13H17.2z M20,11c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S19.4,11,20,11z" })), _path192$9 || (_path192$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,11V5c0-1.1-0.9-2-2-2H13c-1.1,0-2,0.9-2,2v4h2V5h14v14H14.8c-0.4-1.2-1.5-2-2.8-2c-1.7,0-3,1.3-3,3s1.3,3,3,3 c1.3,0,2.4-0.8,2.8-2H27c1.1,0,2-0.9,2-2v-6h3v-2H29z M12,21c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S12.6,21,12,21z" })), children); }); { IbmCloudDirectLink_2Connect.propTypes = iconPropTypes; } var IbmCloudDirectLink_2Dedicated = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_2Dedicated(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$9 || (_path193$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32,11h-3V5c0-1.1-0.9-2-2-2H13c-1.1,0-2,0.9-2,2v4h2V5h14v14H13v-4h-2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h3V11z" })), _path194$9 || (_path194$9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,17v-4c0-1.1-0.9-2-2-2H5c-1.1,0-2,0.9-2,2v6H0v2h3v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4h-2v4H5V13h14v4H21z" })), children); }); { IbmCloudDirectLink_2Dedicated.propTypes = iconPropTypes; } var IbmCloudDirectLink_2DedicatedHosting = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudDirectLink_2DedicatedHosting(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$8 || (_path195$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,27H5V13h4v-2H5c-1.1,0-2,0.9-2,2v6H0v2h3v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4h-2V27z" })), _path196$8 || (_path196$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 19H21V21H11zM11 15H21V17H11zM11 11H21V13H11z" })), _path197$8 || (_path197$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,11V5c0-1.1-0.9-2-2-2H13c-1.1,0-2,0.9-2,2v4h2V5h14v14h-4v2h4c1.1,0,2-0.9,2-2v-6h3v-2H29z" })), children); }); { IbmCloudDirectLink_2DedicatedHosting.propTypes = iconPropTypes; } var IbmCloudEventNotification = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudEventNotification(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$8 || (_path198$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,19c-0.7,0-1.4,0.3-1.9,0.7l-4.3-2.6c0.1-0.4,0.2-0.7,0.2-1.1c0-0.4-0.1-0.8-0.2-1.1l4.3-2.6c0.5,0.4,1.2,0.7,1.9,0.7 c1.7,0,3-1.3,3-3s-1.3-3-3-3s-3,1.3-3,3c0,0.2,0,0.4,0.1,0.6l-4.3,2.6C18.1,12.4,17.1,12,16,12c-0.6,0-1.1,0.1-1.6,0.4l-3.8-4.8 C10.8,7.1,11,6.6,11,6c0-1.7-1.3-3-3-3S5,4.3,5,6s1.3,3,3,3c0.3,0,0.7-0.1,1-0.2l3.8,4.8c-0.3,0.4-0.5,0.9-0.7,1.4H7.8 c-0.4-1.2-1.5-2-2.8-2c-1.7,0-3,1.3-3,3s1.3,3,3,3c1.3,0,2.4-0.8,2.8-2h4.3c0.1,0.5,0.4,1,0.7,1.4L9,23.2C8.7,23.1,8.3,23,8,23 c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3c0-0.6-0.2-1.1-0.5-1.6l3.8-4.8c0.5,0.2,1.1,0.4,1.6,0.4c1.1,0,2.1-0.4,2.8-1.2l4.3,2.6 c0,0.2-0.1,0.4-0.1,0.6c0,1.7,1.3,3,3,3s3-1.3,3-3S27.7,19,26,19z M26,9c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S25.4,9,26,9z M7,6 c0-0.6,0.4-1,1-1s1,0.4,1,1S8.6,7,8,7S7,6.6,7,6z M5,17c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1c0.6,0,1,0.4,1,1C6,16.6,5.6,17,5,17z M8,27c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S8.6,27,8,27z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z M26,23 c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S26.6,23,26,23z" })), children); }); { IbmCloudEventNotification.propTypes = iconPropTypes; } var IbmCloudEventStreams = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudEventStreams(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$8 || (_path199$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,9.2l-1,1.7c2.2,1.2,3.5,3.6,3.5,6.1c0,5.2-3.8,8.7-6,10.2V24h-1c-2.5,0-4.9-1.4-6.1-3.6l-1.7,1c1.4,2.6,4,4.2,6.9,4.6 V29c0,0.3,0.2,0.7,0.5,0.9C18.6,30,18.8,30,19,30c0.2,0,0.3,0,0.4-0.1C19.8,29.7,28,25.5,28,17C28,13.8,26.3,10.8,23.5,9.2z" })), _path200$8 || (_path200$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,13.1V7.8c1.2-0.4,2-1.5,2-2.8c0-1.7-1.3-3-3-3s-3,1.3-3,3c0,1.3,0.8,2.4,2,2.8v5.3c-0.4,0.1-0.7,0.2-1,0.4l-5.3-5.3 C11.9,7.9,12,7.5,12,7c0-1.7-1.3-3-3-3S6,5.3,6,7s1.3,3,3,3c0.5,0,0.9-0.1,1.3-0.3l5.3,5.3c-0.2,0.3-0.3,0.7-0.4,1H9.8 c-0.4-1.2-1.5-2-2.8-2c-1.7,0-3,1.3-3,3s1.3,3,3,3c1.3,0,2.4-0.8,2.8-2h5.3c0.4,1.7,2,3,3.9,3c2.2,0,4-1.8,4-4 C23,15.1,21.7,13.6,20,13.1z M19,4c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S18.4,4,19,4z M9,8C8.4,8,8,7.6,8,7s0.4-1,1-1s1,0.4,1,1 S9.6,8,9,8z M7,18c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S7.6,18,7,18z M19,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S20.1,19,19,19z" })), children); }); { IbmCloudEventStreams.propTypes = iconPropTypes; } var IbmCloudHyperProtectCryptoServices = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudHyperProtectCryptoServices(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$8 || (_path201$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,30l-2.1-1c-1.7-0.8-2.9-2.6-2.9-4.5V18h10v6.5c0,1.9-1.1,3.7-2.9,4.5L25,30z M22,20v4.5c0,1.2,0.7,2.2,1.7,2.7l1.3,0.6 l1.3-0.6c1-0.5,1.7-1.6,1.7-2.7V20H22z" })), _circle47 || (_circle47 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "10", r: "2" })), _path202$8 || (_path202$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,2c-5,0-9,4-9,9c0,0.9,0.1,1.8,0.4,2.6L2,24v6h6l10-10l-1.4-1.4l-2.8,2.8L12.4,20L11,21.4l1.4,1.4l-1.6,1.6L9.4,23 L8,24.4l1.4,1.4L7.2,28H4v-3.2l9.8-9.8l0.8-0.8L14.3,13c-0.2-0.7-0.3-1.3-0.3-2c0-3.9,3.1-7,7-7s7,3.1,7,7c0,1.5-0.5,2.9-1.3,4h2.3 c0.6-1.2,0.9-2.6,0.9-4C30,6,26,2,21,2z" })), children); }); { IbmCloudHyperProtectCryptoServices.propTypes = iconPropTypes; } var IbmCloudHyperProtectDbaas = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudHyperProtectDbaas(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$8 || (_path203$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30l-2.1-1c-1.7-0.8-2.9-2.6-2.9-4.5V18h10v6.5c0,1.9-1.1,3.7-2.9,4.5L24,30z M21,20v4.5c0,1.2,0.7,2.2,1.7,2.7l1.3,0.6 l1.3-0.6c1-0.5,1.7-1.6,1.7-2.7V20H21z" })), _circle48 || (_circle48 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "23", r: "1" })), _circle49 || (_circle49 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "15", r: "1" })), _circle50 || (_circle50 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "7", r: "1" })), _path204$8 || (_path204$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,2H7C5.9,2,5,2.9,5,4v22c0,1.1,0.9,2,2,2h9v-2H7v-6h9v-2H7v-6h16v3h2V4C25,2.9,24.1,2,23,2z M7,10V4h16v6H7z" })), children); }); { IbmCloudHyperProtectDbaas.propTypes = iconPropTypes; } var IbmCloudHyperProtectVs = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudHyperProtectVs(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path205$8 || (_path205$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,18v6.5c0,1.9,1.1,3.7,2.9,4.5l2.1,1l2.1-1c1.7-0.8,2.9-2.6,2.9-4.5V18H20z M28,24.5c0,1.2-0.7,2.2-1.7,2.7L25,27.8 l-1.3-0.6c-1-0.5-1.7-1.6-1.7-2.7V20h6V24.5z" })), _path206$8 || (_path206$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,2H5C3.9,2,3,2.9,3,4v22c0,1.1,0.9,2,2,2h11V4h9v11h2V4C27,2.9,26.1,2,25,2z M13.6,12.2L5,23.9V5.1L13.6,12.2z M6,26 l8-10.9V26H6z M14,9.9L6.8,4H14V9.9z" })), children); }); { IbmCloudHyperProtectVs.propTypes = iconPropTypes; } var IbmCloudInternetServices = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudInternetServices(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$8 || (_path207$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22c-0.7,0-1.4,0.3-1.9,0.7l-5.2-3.1c0-0.2,0.1-0.4,0.1-0.6s0-0.4-0.1-0.6l5.2-3.1c0.5,0.4,1.2,0.7,1.9,0.7 c1.7,0,3-1.3,3-3s-1.3-3-3-3s-3,1.3-3,3c0,0.2,0,0.4,0.1,0.6l-5.2,3.1C18.4,16.3,17.7,16,17,16c-1.7,0-3,1.3-3,3s1.3,3,3,3 c0.7,0,1.4-0.3,1.9-0.7l5.2,3.1c0,0.2-0.1,0.4-0.1,0.6c0,1.7,1.3,3,3,3s3-1.3,3-3S28.7,22,27,22z M27,12c0.6,0,1,0.4,1,1s-0.4,1-1,1 s-1-0.4-1-1S26.4,12,27,12z M17,20c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S17.6,20,17,20z M27,26c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S27.6,26,27,26z" })), _path208$8 || (_path208$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,25H8.5c-3,0-5.5-2.5-5.5-5.5c0-2.7,1.9-4.9,4.5-5.4l1.3-0.2l0.3-1.3C9.9,8.7,13.2,6,17,6c0.5,0,1,0,1.5,0.1 c1.6,0.3,3,1.1,4.2,2.2l1.4-1.4c-1.4-1.4-3.2-2.4-5.2-2.7C18.3,4.1,17.6,4,17,4c-4.7,0-8.9,3.3-9.8,8.1C3.6,12.8,1,15.9,1,19.5 C1,23.6,4.3,27,8.5,27H19V25z" })), children); }); { IbmCloudInternetServices.propTypes = iconPropTypes; } var IbmCloudKeyProtect = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudKeyProtect(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$8 || (_path209$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,14.1V2h-5v2h3v2h-3v2h3v6.1c-1.7,0.4-3,2-3,3.9c0,2.2,1.8,4,4,4s4-1.8,4-4C29,16.1,27.7,14.6,26,14.1z M25,20 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C27,19.1,26.1,20,25,20z" })), _path210$7 || (_path210$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,31l-5.5-3.2c-3.4-2-5.5-5.6-5.5-9.5V4c0-1.1,0.9-2,2-2h12v2H6v14.3c0,3.2,1.7,6.2,4.5,7.8l4.5,2.7l4.5-2.7 c1.1-0.7,2.1-1.5,2.8-2.6l1.6,1.1c-0.9,1.3-2.1,2.4-3.5,3.2L15,31z" })), children); }); { IbmCloudKeyProtect.propTypes = iconPropTypes; } var IbmCloudKubernetesService = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudKubernetesService(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$7 || (_path211$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,23c-0.2,0-0.4,0-0.5-0.1l-5-3C10.2,19.7,10,19.4,10,19v-6c0-0.4,0.2-0.7,0.5-0.9l5-3C15.6,9,15.8,9,16,9 c0.2,0,0.4,0,0.5,0.1l5,3c0.3,0.2,0.5,0.5,0.5,0.9v6c0,0.4-0.2,0.7-0.5,0.9l-5,3C16.4,23,16.2,23,16,23z M12,18.4l4,2.4l4-2.4v-4.9 l-4-2.4l-4,2.4V18.4z" })), _path212$6 || (_path212$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,31c-0.2,0-0.3,0-0.5-0.1l-12-7C3.2,23.7,3,23.4,3,23V9c0-0.4,0.2-0.7,0.5-0.9l12-7C15.7,1,15.8,1,16,1 c0.2,0,0.3,0,0.5,0.1l12,7l-1,1.7L16,3.2L5,9.6v12.9l11,6.4l11-6.4V15h2v8c0,0.4-0.2,0.7-0.5,0.9l-12,7C16.3,31,16.2,31,16,31z" })), children); }); { IbmCloudKubernetesService.propTypes = iconPropTypes; } var IbmCloudLogging = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudLogging(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path213$6 || (_path213$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.4,10c0.3,0.5,0.7,0.9,1.3,1.2l1.3,0.6l1.3-0.6c1-0.5,1.7-1.6,1.7-2.7V4h-3V2h5v6.5c0,1.9-1.1,3.7-2.9,4.5l-2.2,1l-2.1-1 c-1.3-0.6-2.2-1.7-2.6-3H24.4z" })), _path214$6 || (_path214$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 6H24V8H16zM16 2H24V4H16z" })), _path215$5 || (_path215$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16v6H4V6h10V4H4C2.9,4,2,4.9,2,6v16c0,1.1,0.9,2,2,2h8v4H8v2h16v-2h-4v-4h8c1.1,0,2-0.9,2-2v-6H28z M18,28h-4v-4h4V28z" })), children); }); { IbmCloudLogging.propTypes = iconPropTypes; } var IbmCloudMassDataMigration = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudMassDataMigration(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216$5 || (_path216$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 30H10c-1.1 0-2-.9-2-2v-3h2v3h12v-3h2v3C24 29.1 23.1 30 22 30zM15 14.8L15 25 17 25 17 14.8 19.6 17.4 21 16 16 11 11 16 12.4 17.4z" })), _path217$5 || (_path217$5 = /*#__PURE__*/React__default["default"].createElement("path", { 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,22H12v-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.5H20v2h3.5c3.6,0,6.5-2.9,6.5-6.5C30,12.4,27.8,9.7,24.8,9.1z" })), children); }); { IbmCloudMassDataMigration.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$8, _path2$8, _path3$8, _path4$8, _path5$8, _path6$8, _path7$8, _path8$8, _path9$8, _path10$8, _path11$8, _path12$8, _path13$8, _path14$8, _path15$8, _path16$8, _switch$3, _circle$8, _circle2$8, _circle3$8, _circle4$7, _path17$8, _path18$8, _path19$8, _path20$8, _path21$8, _path22$8, _path23$8, _path24$8, _path25$8, _path26$8, _path27$8, _path28$8, _path29$8, _path30$8, _path31$8, _path32$8, _path33$8, _path34$8, _path35$8, _path36$8, _path37$8, _path38$8, _path39$8, _path40$8, _path41$8, _path42$8, _circle5$7, _circle6$7, _circle7$7, _path43$8, _path44$8, _circle8$7, _circle9$7, _path45$8, _circle10$7, _path46$8, _path47$8, _path48$8, _path49$8, _circle11$7, _path50$8, _circle12$6, _path51$8, _circle13$5, _path52$8, _path53$8, _path54$8, _path55$8, _path56$8, _path57$8, _path58$8, _path59$8, _path60$8, _path61$8, _path62$8, _path63$8, _path64$8, _path65$8, _path66$8, _path67$8, _path68$8, _path69$8, _circle14$4, _circle15$4, _path70$8, _circle16$4, _circle17$4, _path71$8, _path72$8, _path73$8, _path74$8, _path75$8, _path76$8, _path77$8, _path78$8, _path79$8, _path80$8, _path81$8, _path82$8, _path83$8, _path84$8, _path85$8, _path86$8, _path87$8, _path88$8, _path89$8, _path90$8, _path91$8, _path92$8, _path93$8, _path94$8, _path95$8, _path96$8, _path97$8, _path98$8, _path99$8, _path100$8, _path101$8, _path102$8, _circle18$3, _path103$8, _path104$8, _path105$8, _circle19$3, _path106$8, _path107$8, _path108$8, _path109$8, _path110$8, _path111$8, _path112$8, _path113$8, _path114$8, _path115$8, _path116$8, _path117$8, _path118$8, _path119$8, _path120$8, _path121$8, _path122$8, _path123$8, _path124$8, _path125$8, _path126$8, _path127$8, _path128$8, _path129$8, _path130$8, _path131$8, _path132$8, _path133$8, _path134$8, _path135$8, _path136$8, _path137$8, _path138$8, _path139$8, _path140$8, _circle20$3, _path141$8, _path142$8, _circle21$2, _path143$8, _circle22$2, _path144$8, _path145$8, _circle23$2, _path146$8, _circle24$2, _path147$8, _path148$8, _path149$8, _path150$8, _path151$8, _path152$8, _path153$8, _path154$8, _circle25$2, _circle26$2, _circle27$2, _path155$8, _path156$8, _path157$8, _path158$8, _path159$8, _path160$8, _path161$8, _path162$8, _path163$8, _path164$8, _path165$8, _path166$8, _path167$8, _path168$8, _path169$8, _path170$8, _circle28$2, _path171$8, _path172$8, _path173$8, _path174$8, _path175$8, _path176$8, _path177$8, _path178$8, _path179$8, _path180$8, _path181$8, _path182$8, _path183$8, _path184$8, _path185$8, _path186$8, _path187$8, _path188$8, _path189$8, _path190$8, _path191$8, _path192$8, _path193$8, _path194$8, _path195$7, _path196$7, _path197$7, _path198$7, _path199$7, _path200$7, _path201$7, _path202$7, _path203$7, _path204$7, _path205$7, _path206$7, _path207$7, _path208$7, _path209$7, _path210$6, _path211$6, _path212$5, _path213$5, _path214$5, _path215$4, _path216$4, _path217$4, _path218$3, _path219$3, _path220$3, _circle29$2, _path221$3, _path222$3, _circle30$2, _path223$3, _path224$3, _circle31$2, _path225$1, _path226$1, _path227$1, _path228$1, _path229$1, _rect$2, _path230$1, _path231$1, _path232$1, _path233$1, _path234$1; var _excluded$d = ["children", "size"], _excluded2$8 = ["children", "size"], _excluded3$8 = ["children", "size"], _excluded4$8 = ["children", "size"], _excluded5$8 = ["children", "size"], _excluded6$8 = ["children", "size"], _excluded7$8 = ["children", "size"], _excluded8$8 = ["children", "size"], _excluded9$8 = ["children", "size"], _excluded10$8 = ["children", "size"], _excluded11$8 = ["children", "size"], _excluded12$8 = ["children", "size"], _excluded13$8 = ["children", "size"], _excluded14$8 = ["children", "size"], _excluded15$8 = ["children", "size"], _excluded16$8 = ["children", "size"], _excluded17$8 = ["children", "size"], _excluded18$8 = ["children", "size"], _excluded19$8 = ["children", "size"], _excluded20$8 = ["children", "size"], _excluded21$8 = ["children", "size"], _excluded22$8 = ["children", "size"], _excluded23$8 = ["children", "size"], _excluded24$8 = ["children", "size"], _excluded25$8 = ["children", "size"], _excluded26$8 = ["children", "size"], _excluded27$8 = ["children", "size"], _excluded28$8 = ["children", "size"], _excluded29$8 = ["children", "size"], _excluded30$8 = ["children", "size"], _excluded31$8 = ["children", "size"], _excluded32$8 = ["children", "size"], _excluded33$8 = ["children", "size"], _excluded34$8 = ["children", "size"], _excluded35$8 = ["children", "size"], _excluded36$8 = ["children", "size"], _excluded37$8 = ["children", "size"], _excluded38$8 = ["children", "size"], _excluded39$8 = ["children", "size"], _excluded40$8 = ["children", "size"], _excluded41$8 = ["children", "size"], _excluded42$8 = ["children", "size"], _excluded43$8 = ["children", "size"], _excluded44$8 = ["children", "size"], _excluded45$8 = ["children", "size"], _excluded46$8 = ["children", "size"], _excluded47$8 = ["children", "size"], _excluded48$8 = ["children", "size"], _excluded49$8 = ["children", "size"], _excluded50$8 = ["children", "size"], _excluded51$8 = ["children", "size"], _excluded52$8 = ["children", "size"], _excluded53$8 = ["children", "size"], _excluded54$8 = ["children", "size"], _excluded55$8 = ["children", "size"], _excluded56$8 = ["children", "size"], _excluded57$8 = ["children", "size"], _excluded58$8 = ["children", "size"], _excluded59$8 = ["children", "size"], _excluded60$8 = ["children", "size"], _excluded61$8 = ["children", "size"], _excluded62$8 = ["children", "size"], _excluded63$8 = ["children", "size"], _excluded64$8 = ["children", "size"], _excluded65$8 = ["children", "size"], _excluded66$8 = ["children", "size"], _excluded67$8 = ["children", "size"], _excluded68$8 = ["children", "size"], _excluded69$8 = ["children", "size"], _excluded70$8 = ["children", "size"], _excluded71$8 = ["children", "size"], _excluded72$8 = ["children", "size"], _excluded73$8 = ["children", "size"], _excluded74$8 = ["children", "size"], _excluded75$8 = ["children", "size"], _excluded76$8 = ["children", "size"], _excluded77$8 = ["children", "size"], _excluded78$8 = ["children", "size"], _excluded79$8 = ["children", "size"], _excluded80$8 = ["children", "size"], _excluded81$8 = ["children", "size"], _excluded82$8 = ["children", "size"], _excluded83$8 = ["children", "size"], _excluded84$8 = ["children", "size"], _excluded85$8 = ["children", "size"], _excluded86$8 = ["children", "size"], _excluded87$8 = ["children", "size"], _excluded88$8 = ["children", "size"], _excluded89$8 = ["children", "size"], _excluded90$8 = ["children", "size"], _excluded91$8 = ["children", "size"], _excluded92$8 = ["children", "size"], _excluded93$8 = ["children", "size"], _excluded94$8 = ["children", "size"], _excluded95$8 = ["children", "size"], _excluded96$8 = ["children", "size"], _excluded97$8 = ["children", "size"], _excluded98$8 = ["children", "size"], _excluded99$8 = ["children", "size"], _excluded100$8 = ["children", "size"], _excluded101$8 = ["children", "size"], _excluded102$8 = ["children", "size"], _excluded103$8 = ["children", "size"], _excluded104$8 = ["children", "size"], _excluded105$8 = ["children", "size"], _excluded106$8 = ["children", "size"], _excluded107$8 = ["children", "size"], _excluded108$8 = ["children", "size"], _excluded109$8 = ["children", "size"], _excluded110$8 = ["children", "size"], _excluded111$8 = ["children", "size"], _excluded112$8 = ["children", "size"], _excluded113$8 = ["children", "size"], _excluded114$8 = ["children", "size"], _excluded115$8 = ["children", "size"], _excluded116$8 = ["children", "size"], _excluded117$8 = ["children", "size"], _excluded118$8 = ["children", "size"], _excluded119$8 = ["children", "size"], _excluded120$8 = ["children", "size"], _excluded121$8 = ["children", "size"], _excluded122$8 = ["children", "size"], _excluded123$8 = ["children", "size"], _excluded124$7 = ["children", "size"], _excluded125$7 = ["children", "size"]; var didWarnAboutDeprecation = {}; var IbmCloudPal = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPal(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$d); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$8 || (_path$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.5,17.7l-6-3.5C24.4,14,24.2,14,24,14s-0.4,0-0.5,0.1l-6,3.5c-0.3,0.2-0.5,0.5-0.5,0.9v6.9c0,0.4,0.2,0.7,0.5,0.9l6,3.5 C23.6,30,23.8,30,24,30s0.4,0,0.5-0.1l6-3.5c0.3-0.2,0.5-0.5,0.5-0.9v-6.9C31,18.2,30.8,17.9,30.5,17.7z M29,24.9l-5,3l-5-3v-5.8 l5-3l5,3V24.9z" })), _path2$8 || (_path2$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26H9c-4.4,0-8-3.6-8-8c0-3.7,2.6-6.9,6.2-7.8C8,5.5,12.1,2,17,2c5.5,0,10,4.5,10,10h-2c0-4.4-3.6-8-8-8 c-4.1,0-7.5,3.1-8,7.2L9,12l-0.8,0.1C5.2,12.5,3,15,3,18c0,3.3,2.7,6,6,6h5V26z" })), children); }); { IbmCloudPal.propTypes = iconPropTypes; } var IbmCloudSecretsManager = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudSecretsManager(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$8 || (_path3$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,16c0-0.7-0.2-1.4-0.6-2l3.3-3.3l-1.4-1.4L18,12.6c-0.6-0.4-1.3-0.6-2-0.6c-0.7,0-1.4,0.2-2,0.6l-3.3-3.3l-1.4,1.4 l3.3,3.3c-0.4,0.6-0.6,1.3-0.6,2c0,0.7,0.2,1.4,0.6,2l-3.3,3.3l1.4,1.4l3.3-3.3c0.6,0.4,1.3,0.6,2,0.6c0.7,0,1.4-0.2,2-0.6l3.3,3.3 l1.4-1.4L19.4,18C19.8,17.4,20,16.7,20,16z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C18,17.1,17.1,18,16,18z" })), _path4$8 || (_path4$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,17h6v-2h-2.1C29.4,7.7,23.4,2,16,2C8.3,2,2,8.3,2,16s6.3,14,14,14c5.2,0,9.7-2.8,12.1-7l-1.7-1c-2.1,3.6-5.9,6-10.4,6 C9.4,28,4,22.6,4,16C4,9.4,9.4,4,16,4c6.3,0,11.4,4.9,11.9,11H26V17z" })), children); }); { IbmCloudSecretsManager.propTypes = iconPropTypes; } var IbmCloudSecurityComplianceCenter = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudSecurityComplianceCenter(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$8 || (_path5$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,18v5.5c0,1.5-0.9,2.8-2.3,3.5L26,27.8 L24.3,27c-1.4-0.6-2.3-2-2.3-3.5V18H30 M32,16H20v7.5c0,2.2,1.3,4.3,3.4,5.3L26,30l2.6-1.2c2.1-1,3.4-3,3.4-5.3V16L32,16z" })), _path6$8 || (_path6$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,25H7.5C3.4,25,0,21.6,0,17.5c0-3.7,2.7-6.7,6.2-7.4C7.1,5.4,11.2,2,16,2c5.5,0,10,4.5,10,10h-2c0-4.4-3.6-8-8-8 c-4.1,0-7.5,3.1-8,7.1L8,12L7.1,12C4.2,12.2,2,14.6,2,17.5c0,3,2.5,5.5,5.5,5.5H16V25z" })), children); }); { IbmCloudSecurityComplianceCenter.propTypes = iconPropTypes; } var IbmCloudSubnets = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudSubnets(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$8 || (_path7$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a3.6069,3.6069,0,0,0-2,.6L19.4143,18,18,19.4141,22.6,24a4.1755,4.1755,0,0,0-.4,1H9.8583A3.5525,3.5525,0,0,0,9.4,24L24,9.4a3.6069,3.6069,0,0,0,2,.6,4,4,0,1,0-3.8569-5H9.9A4.0785,4.0785,0,0,0,6,2a4,4,0,0,0,0,8,3.6066,3.6066,0,0,0,2-.6L12.5858,14,14,12.5859,9.4,8a4.175,4.175,0,0,0,.4-1H22.1418A3.5553,3.5553,0,0,0,22.6,8L8,22.6A3.6066,3.6066,0,0,0,6,22a4,4,0,1,0,3.8569,5H22.1A4.0118,4.0118,0,1,0,26,22ZM26,4a2,2,0,1,1-2,2A2.0058,2.0058,0,0,1,26,4ZM6,8A2,2,0,1,1,8,6,2.0058,2.0058,0,0,1,6,8ZM6,28a2,2,0,1,1,2-2A2.0058,2.0058,0,0,1,6,28Zm20,0a2,2,0,1,1,2-2A2.0058,2.0058,0,0,1,26,28Z" })), children); }); { IbmCloudSubnets.propTypes = iconPropTypes; } var IbmCloudSysdigSecure = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudSysdigSecure(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$8 || (_path8$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,14l-2.1-1c-1.7-0.8-2.9-2.6-2.9-4.5V2h10v6.5c0,1.9-1.1,3.7-2.9,4.5L25,14z M22,4v4.5c0,1.2,0.7,2.2,1.7,2.7l1.3,0.6 l1.3-0.6c1-0.5,1.7-1.6,1.7-2.7V4H22z" })), _path9$8 || (_path9$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16v6H4V6h12V4H4C2.9,4,2,4.9,2,6v16c0,1.1,0.9,2,2,2h8v4H8v2h16v-2h-4v-4h8c1.1,0,2-0.9,2-2v-6H28z M18,28h-4v-4h4V28z" })), children); }); { IbmCloudSysdigSecure.propTypes = iconPropTypes; } var IbmCloudTransitGateway = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudTransitGateway(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$8 || (_path10$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.9,20.9l3.5-3.5a1.9333,1.9333,0,0,0,0-2.8L24.1,9.3l1.4-1.4A.9015.9015,0,0,0,26,8a2,2,0,1,0-2-2,.9015.9015,0,0,0,.1.5L18,12.6a3.6333,3.6333,0,0,0-4,0L10.7,9.3,16,4l3.5,3.5,1.4-1.4L17.4,2.6a1.9333,1.9333,0,0,0-2.8,0L9.3,7.9,7.9,6.5A.9015.9015,0,0,0,8,6,2,2,0,1,0,6,8a.9015.9015,0,0,0,.5-.1L12.6,14a3.6333,3.6333,0,0,0,0,4L9.3,21.3,4,16l3.5-3.5L6.1,11.1,2.6,14.6a1.9333,1.9333,0,0,0,0,2.8l5.3,5.3L6.5,24.1A.9015.9015,0,0,0,6,24a2,2,0,1,0,2,2,.9015.9015,0,0,0-.1-.5L14,19.4a3.6333,3.6333,0,0,0,4,0l3.3,3.3L16,28l-3.5-3.5-1.4,1.4,3.5,3.5a1.9333,1.9333,0,0,0,2.8,0l5.3-5.3,1.4,1.4c0,.2-.1.3-.1.5a2,2,0,1,0,2-2,.9015.9015,0,0,0-.5.1L19.4,18a3.6333,3.6333,0,0,0,0-4l3.3-3.3L28,16l-3.5,3.5ZM16,18a2,2,0,1,1,2-2A2.0059,2.0059,0,0,1,16,18Z" })), children); }); { IbmCloudTransitGateway.propTypes = iconPropTypes; } var IbmCloudVpcEndpoints = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudVpcEndpoints(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$8 || (_path11$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,27H7a2.0059,2.0059,0,0,1-2-2V12H7V25H20Z" })), _path12$8 || (_path12$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.4,22l-4-4a3.6057,3.6057,0,0,0,.6-2,4.0118,4.0118,0,0,0-4-4,3.6057,3.6057,0,0,0-2,.6l-4-4V2H2v8H8.6l4,4a3.6057,3.6057,0,0,0-.6,2,4.0118,4.0118,0,0,0,4,4,3.6057,3.6057,0,0,0,2-.6l4,4V30h8V22ZM8,8H4V4H8Zm8,10a2,2,0,1,1,2-2A2.0059,2.0059,0,0,1,16,18ZM28,28H24V24h4Z" })), _path13$8 || (_path13$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,20h2V7a2.0059,2.0059,0,0,0-2-2H12V7H25Z" })), children); }); { IbmCloudVpcEndpoints.propTypes = iconPropTypes; } var IbmCloudPakApplications = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakApplications(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$8 || (_path14$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,22H15a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,21,22Zm-6-6v4h6V16Z" })), _path15$8 || (_path15$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,17H9V12a2.0023,2.0023,0,0,1,2-2h6v2H11Z" })), _path16$8 || (_path16$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakApplications.propTypes = iconPropTypes; } var IbmCloudPakBusinessAutomation = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakBusinessAutomation(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch$3 || (_switch$3 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,16c0-1.5-1.2-2.8-2.7-3c-1.1-2.4-3.5-4-6.3-4c-0.2,0-0.5,0-0.7,0.1C14.7,8.4,13.9,8,13,8c-1.7,0-3,1.3-3,3 c0,0.4,0.1,0.7,0.2,1.1C9.4,13.2,9,14.5,9,16s0.4,2.8,1.2,3.9C10.1,20.3,10,20.6,10,21c0,1.7,1.3,3,3,3c0.9,0,1.7-0.4,2.3-1.1 c0.2,0,0.5,0.1,0.7,0.1c2.8,0,5.2-1.7,6.3-4C23.8,18.8,25,17.5,25,16z M13,10c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1 S12.4,10,13,10z M13,22c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S13.6,22,13,22z M16,21c0-1.7-1.3-3-3-3c-0.5,0-1,0.1-1.4,0.4 C11.2,17.7,11,16.9,11,16s0.2-1.7,0.6-2.4C12,13.9,12.5,14,13,14c1.7,0,3-1.3,3-3c1.9,0,3.4,1,4.3,2.5C19.5,14.1,19,15,19,16 s0.5,1.9,1.3,2.5C19.4,20,17.9,21,16,21z M22,17c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S22.6,17,22,17z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,31c-0.2,0-0.3,0-0.5-0.1l-12-7C3.2,23.7,3,23.4,3,23V9c0-0.4,0.2-0.7,0.5-0.9l12-7c0.3-0.2,0.7-0.2,1,0l12,7l-1,1.7 L16,3.2L5,9.6v12.9l11,6.4l11-6.4V15h2v8c0,0.4-0.2,0.7-0.5,0.9l-12,7C16.3,31,16.2,31,16,31z" })))), children); }); { IbmCloudPakBusinessAutomation.propTypes = iconPropTypes; } var IbmCloudPakData = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakData(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$8 || (_circle$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "15", r: "1" })), _circle2$8 || (_circle2$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "15", r: "1" })), _circle3$8 || (_circle3$8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "10", r: "1" })), _circle4$7 || (_circle4$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "23", r: "1" })), _path17$8 || (_path17$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,19a1.9822,1.9822,0,0,0-.5116.0743L18.707,17.293l-.0257.0257A2.9642,2.9642,0,0,0,19,16a3.0033,3.0033,0,0,0-3-3,2.9642,2.9642,0,0,0-1.3187.3187l.0257-.0257-1.7813-1.7814a2.0345,2.0345,0,1,0-1.4141,1.4141L13.293,14.707l.0258-.0258A2.9634,2.9634,0,0,0,13,16a3.0033,3.0033,0,0,0,3,3,2.9634,2.9634,0,0,0,1.3188-.3188l-.0258.0258,1.7813,1.7814A1.9956,1.9956,0,1,0,21,19Zm-5-2a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,17Z" })), _path18$8 || (_path18$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakData.propTypes = iconPropTypes; } var IbmCloudPakIntegration = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakIntegration(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$8 || (_path19$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.1213 9.8787a3 3 0 00-4.2426 0l-.4645.4644 1.4142 1.4142.4645-.4645a1 1 0 011.4142 1.4144L17.4142 16l1.4143 1.4142 3.2928-3.2929A3 3 0 0022.1213 9.8787zM12.7071 20.7072a1 1 0 01-1.4142-1.4144L14.5858 16l-1.4142-1.4142L9.8787 17.8787a3 3 0 104.2426 4.2426l.4645-.4644-1.4142-1.4143zM14.1213 9.8787a3 3 0 00-4.2426 4.2426l.4645.4645 1.4142-1.4142-.4645-.4645a1 1 0 011.4142-1.4143L16 14.5858l1.4142-1.4143z" })), _path20$8 || (_path20$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.1213,17.8787l-.4645-.4645-1.4141,1.4142.4644.4645a1,1,0,0,1-1.4142,1.4143L16,17.4142l-1.4142,1.4142,3.2929,3.2929a3,3,0,0,0,4.2426-4.2426Z" })), _path21$8 || (_path21$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakIntegration.propTypes = iconPropTypes; } var IbmCloudPakMantaAutomatedDataLineage = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakMantaAutomatedDataLineage(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$8 || (_path22$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,11V5H24V7H14V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4v8a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V9a3.0033,3.0033,0,0,1,3,3v9H11V19H5v6h6V23h6v2a2.0025,2.0025,0,0,0,2,2h5v2h6V23H24v2H19V18h5v2h6V14H24v2H19V12a4.9521,4.9521,0,0,0-1.0254-3H24v2ZM4,12V4h8v8ZM9,23H7V21H9Zm17,2h2v2H26Zm0-9h2v2H26Zm0-9h2V9H26Z" })), children); }); { IbmCloudPakMantaAutomatedDataLineage.propTypes = iconPropTypes; } var IbmCloudPakMulticloudMgmt = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakMulticloudMgmt(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$8 || (_path23$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path24$8 || (_path24$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakMulticloudMgmt.propTypes = iconPropTypes; } var IbmCloudPakNetezza = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakNetezza(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$8 || (_path25$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 10L19 19.2 13.5 10 11 10 11 22 13 22 13 12.8 18.5 22 21 22 21 10z" })), _path26$8 || (_path26$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakNetezza.propTypes = iconPropTypes; } var IbmCloudPakNetworkAutomation = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakNetworkAutomation(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$8 || (_path27$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path28$8 || (_path28$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path29$8 || (_path29$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.6362,21.364a9,9,0,0,1,0-12.728L11.05,10.0505a6.9993,6.9993,0,0,0,0,9.899Z" })), _path30$8 || (_path30$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakNetworkAutomation.propTypes = iconPropTypes; } var IbmCloudPakSecurity = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakSecurity(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$8 || (_path31$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path32$8 || (_path32$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakSecurity.propTypes = iconPropTypes; } var IbmCloudPakSystem = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakSystem(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$8 || (_path33$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 11.671H17V15.328H15z", transform: "rotate(-45 16 13.5)" })), _path34$8 || (_path34$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 16.672H17V20.329H15z", transform: "rotate(-45 16 18.5)" })), _path35$8 || (_path35$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path36$8 || (_path36$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakSystem.propTypes = iconPropTypes; } var IbmCloudPakWatsonAiops = /*#__PURE__*/React__default["default"].forwardRef(function IbmCloudPakWatsonAiops(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$8 || (_path37$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path38$8 || (_path38$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmCloudPakWatsonAiops.propTypes = iconPropTypes; } var IbmSecurity = /*#__PURE__*/React__default["default"].forwardRef(function IbmSecurity(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$8 || (_path39$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmSecurity.propTypes = iconPropTypes; } var IbmSecurityServices = /*#__PURE__*/React__default["default"].forwardRef(function IbmSecurityServices(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$8 || (_path40$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path41$8 || (_path41$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmSecurityServices.propTypes = iconPropTypes; } var IbmWatsonAssistant = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonAssistant(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$8 || (_path42$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle5$7 || (_circle5$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "17", r: "1" })), _circle6$7 || (_circle6$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "17", r: "1" })), _circle7$7 || (_circle7$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "17", r: "1" })), _path43$8 || (_path43$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonAssistant.propTypes = iconPropTypes; } var IbmWatsonDiscovery = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonDiscovery(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$8 || (_path44$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 17H14V19H6z" })), _circle8$7 || (_circle8$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "18", r: "1" })), _circle9$7 || (_circle9$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "14", r: "1" })), _path45$8 || (_path45$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 13H10V15H2zM6 9H14V11H6z" })), _circle10$7 || (_circle10$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "10", r: "1" })), _path46$8 || (_path46$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonDiscovery.propTypes = iconPropTypes; } var IbmWatsonKnowledgeCatalog = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonKnowledgeCatalog(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$8 || (_path47$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27.2L20.4 24.6 19 26 23 30 30 23 28.6 21.6zM12 18H20V20H12zM12 13H20V15H12zM12 8H20V10H12z" })), _path48$8 || (_path48$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonKnowledgeCatalog.propTypes = iconPropTypes; } var IbmWatsonKnowledgeStudio = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonKnowledgeStudio(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$8 || (_path49$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle11$7 || (_circle11$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "12", cy: "19", r: "1" })), _path50$8 || (_path50$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 18H9V20H6zM6 14H13V16H6zM10 10H17V12H10z" })), _circle12$6 || (_circle12$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "11", r: "1" })), _path51$8 || (_path51$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 6H20V8H16z" })), _circle13$5 || (_circle13$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "7", r: "1" })), _path52$8 || (_path52$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H10V8H6z" })), _path53$8 || (_path53$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonKnowledgeStudio.propTypes = iconPropTypes; } var IbmWatsonLanguageTranslator = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonLanguageTranslator(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$8 || (_path54$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonLanguageTranslator.propTypes = iconPropTypes; } var IbmWatsonMachineLearning = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonMachineLearning(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$8 || (_path55$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path56$8 || (_path56$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonMachineLearning.propTypes = iconPropTypes; } var IbmWatsonNaturalLanguageClassifier = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonNaturalLanguageClassifier(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$8 || (_path57$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonNaturalLanguageClassifier.propTypes = iconPropTypes; } var IbmWatsonNaturalLanguageUnderstanding = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonNaturalLanguageUnderstanding(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$8 || (_path58$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 23H11V25H6zM6 19H11V21H6z" })), _path59$8 || (_path59$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonNaturalLanguageUnderstanding.propTypes = iconPropTypes; } var IbmWatsonOpenscale = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonOpenscale(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$8 || (_path60$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path61$8 || (_path61$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonOpenscale.propTypes = iconPropTypes; } var IbmWatsonOrders = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonOrders(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$8 || (_path62$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13h-2v-2c0-2.8-2.2-5-5-5h-3V4h3c3.9 0 7 3.1 7 7V13zM22 20H25V22H22zM22 24H25V26H22z" })), _path63$8 || (_path63$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonOrders.propTypes = iconPropTypes; } var IbmWatsonQuery = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonQuery(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$8 || (_path64$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path65$8 || (_path65$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonQuery.propTypes = iconPropTypes; } var IbmWatsonSpeechToText = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonSpeechToText(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$8 || (_path66$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonSpeechToText.propTypes = iconPropTypes; } var IbmWatsonStudio = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonStudio(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67$8 || (_path67$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonStudio.propTypes = iconPropTypes; } var IbmWatsonTextToSpeech = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonTextToSpeech(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$8 || (_path68$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonTextToSpeech.propTypes = iconPropTypes; } var IbmWatsonToneAnalyzer = /*#__PURE__*/React__default["default"].forwardRef(function IbmWatsonToneAnalyzer(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$8 || (_path69$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle14$4 || (_circle14$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "5", r: "1" })), _circle15$4 || (_circle15$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "19", cy: "5", r: "1" })), _path70$8 || (_path70$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle16$4 || (_circle16$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15.5", cy: "17.5", r: "1.5" })), _circle17$4 || (_circle17$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8.5", cy: "17.5", r: "1.5" })), _path71$8 || (_path71$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmWatsonToneAnalyzer.propTypes = iconPropTypes; } var IbmZCloudModStack = /*#__PURE__*/React__default["default"].forwardRef(function IbmZCloudModStack(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$8 || (_path72$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path73$8 || (_path73$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path74$8 || (_path74$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmZCloudModStack.propTypes = iconPropTypes; } var IbmZCloudProvisioning = /*#__PURE__*/React__default["default"].forwardRef(function IbmZCloudProvisioning(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$8 || (_path75$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 17H14V21H10zM17 10H21V14H17zM17 17H21V21H17z" })), _path76$8 || (_path76$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmZCloudProvisioning.propTypes = iconPropTypes; } var IbmZOsPackageManager = /*#__PURE__*/React__default["default"].forwardRef(function IbmZOsPackageManager(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$8 || (_path77$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IbmZOsPackageManager.propTypes = iconPropTypes; } var WatsonHealthICa_2D = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthICa_2D(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$8 || (_path78$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthICa_2D.propTypes = iconPropTypes; } var IceAccretion = /*#__PURE__*/React__default["default"].forwardRef(function IceAccretion(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$8 || (_path79$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path80$8 || (_path80$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 26L23 28 22 26 22 20 24 20 24 26zM8 24L7 26 6 24 6 18 8 18 8 24z" })), children); }); { IceAccretion.propTypes = iconPropTypes; } var IceVision = /*#__PURE__*/React__default["default"].forwardRef(function IceVision(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$8 || (_path81$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 14L19 21 20 23 21 21 21 14 19 14zM17 14H13a2 2 0 00-2 2v4l1 2 1-2V16h2v7l1 2 1-2z" })), _path82$8 || (_path82$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), children); }); { IceVision.propTypes = iconPropTypes; } var QID = /*#__PURE__*/React__default["default"].forwardRef(function QID(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$8 || (_path83$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 9H12V11H10zM18 23H14V9h4a4 4 0 014 4v6A4 4 0 0118 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H16zM10 13H12V23H10z" })), children); }); { QID.propTypes = iconPropTypes; } var IdManagement = /*#__PURE__*/React__default["default"].forwardRef(function IdManagement(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$8 || (_path84$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path85$8 || (_path85$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,19v9H4V8H16V6H4A2,2,0,0,0,2,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19Z" })), _path86$8 || (_path86$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IdManagement.propTypes = iconPropTypes; } var Idea = /*#__PURE__*/React__default["default"].forwardRef(function Idea(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$8 || (_path87$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Idea.propTypes = iconPropTypes; } var Identification = /*#__PURE__*/React__default["default"].forwardRef(function Identification(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$8 || (_path88$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path89$8 || (_path89$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Identification.propTypes = iconPropTypes; } var Image$1 = /*#__PURE__*/React__default["default"].forwardRef(function Image(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$8 || (_path90$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path91$8 || (_path91$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Image$1.propTypes = iconPropTypes; } var ImageCopy = /*#__PURE__*/React__default["default"].forwardRef(function ImageCopy(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$8 || (_path92$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path93$8 || (_path93$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageCopy.propTypes = iconPropTypes; } var ImageMedical = /*#__PURE__*/React__default["default"].forwardRef(function ImageMedical(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$8 || (_path94$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path95$8 || (_path95$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageMedical.propTypes = iconPropTypes; } var ImageReference = /*#__PURE__*/React__default["default"].forwardRef(function ImageReference(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$8 || (_path96$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path97$8 || (_path97$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageReference.propTypes = iconPropTypes; } var ImageSearch = /*#__PURE__*/React__default["default"].forwardRef(function ImageSearch(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$8 || (_path98$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path99$8 || (_path99$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageSearch.propTypes = iconPropTypes; } var ImageSearchAlt = /*#__PURE__*/React__default["default"].forwardRef(function ImageSearchAlt(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$8 || (_path100$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path101$8 || (_path101$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageSearchAlt.propTypes = iconPropTypes; } var ImageService = /*#__PURE__*/React__default["default"].forwardRef(function ImageService(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$8 || (_path102$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle18$3 || (_circle18$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path103$8 || (_path103$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImageService.propTypes = iconPropTypes; } var ImportExport = /*#__PURE__*/React__default["default"].forwardRef(function ImportExport(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$8 || (_path104$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ImportExport.propTypes = iconPropTypes; } var ImproveRelevance = /*#__PURE__*/React__default["default"].forwardRef(function ImproveRelevance(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$8 || (_path105$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 26.59L19.41 24 18 25.41 22 29.41 30 21.41 28.59 20 22 26.59z" })), _circle19$3 || (_circle19$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path106$8 || (_path106$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path107$8 || (_path107$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16A12,12,0,1,0,16,28V26A10,10,0,1,1,26,16Z" })), children); }); { ImproveRelevance.propTypes = iconPropTypes; } var InProgress = /*#__PURE__*/React__default["default"].forwardRef(function InProgress(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$8 || (_path108$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InProgress.propTypes = iconPropTypes; } var InProgressError = /*#__PURE__*/React__default["default"].forwardRef(function InProgressError(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109$8 || (_path109$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path110$8 || (_path110$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InProgressError.propTypes = iconPropTypes; } var InProgressWarning = /*#__PURE__*/React__default["default"].forwardRef(function InProgressWarning(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$8 || (_path111$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path112$8 || (_path112$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InProgressWarning.propTypes = iconPropTypes; } var Incomplete = /*#__PURE__*/React__default["default"].forwardRef(function Incomplete(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$8); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path113$8 || (_path113$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$8 || (_path114$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Incomplete.propTypes = iconPropTypes; } var IncompleteCancel = /*#__PURE__*/React__default["default"].forwardRef(function IncompleteCancel(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$8 || (_path115$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IncompleteCancel.propTypes = iconPropTypes; } var IncompleteError = /*#__PURE__*/React__default["default"].forwardRef(function IncompleteError(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$8 || (_path116$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IncompleteError.propTypes = iconPropTypes; } var IncompleteWarning = /*#__PURE__*/React__default["default"].forwardRef(function IncompleteWarning(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$8 || (_path117$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IncompleteWarning.propTypes = iconPropTypes; } var IncreaseLevel = /*#__PURE__*/React__default["default"].forwardRef(function IncreaseLevel(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$8 || (_path118$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IncreaseLevel.propTypes = iconPropTypes; } var Industry = /*#__PURE__*/React__default["default"].forwardRef(function Industry(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$8 || (_path119$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Industry.propTypes = iconPropTypes; } var Information = /*#__PURE__*/React__default["default"].forwardRef(function Information(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$8); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path120$8 || (_path120$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path121$8 || (_path121$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$8 || (_path122$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path123$8 || (_path123$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Information.propTypes = iconPropTypes; } var InformationDisabled = /*#__PURE__*/React__default["default"].forwardRef(function InformationDisabled(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$8 || (_path124$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path125$8 || (_path125$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InformationDisabled.propTypes = iconPropTypes; } var InformationFilled = /*#__PURE__*/React__default["default"].forwardRef(function InformationFilled(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$8 || (_path126$8 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path127$8 || (_path127$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InformationFilled.propTypes = iconPropTypes; } var InformationSquare = /*#__PURE__*/React__default["default"].forwardRef(function InformationSquare(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$8 || (_path128$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path129$8 || (_path129$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InformationSquare.propTypes = iconPropTypes; } var InformationSquareFilled = /*#__PURE__*/React__default["default"].forwardRef(function InformationSquareFilled(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$8 || (_path130$8 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path131$8 || (_path131$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InformationSquareFilled.propTypes = iconPropTypes; } var InfrastructureClassic = /*#__PURE__*/React__default["default"].forwardRef(function InfrastructureClassic(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$8 || (_path132$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z" })), _path133$8 || (_path133$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InfrastructureClassic.propTypes = iconPropTypes; } var Insert = /*#__PURE__*/React__default["default"].forwardRef(function Insert(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$8 || (_path134$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Insert.propTypes = iconPropTypes; } var InsertPage = /*#__PURE__*/React__default["default"].forwardRef(function InsertPage(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$8 || (_path135$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InsertPage.propTypes = iconPropTypes; } var InsertSyntax = /*#__PURE__*/React__default["default"].forwardRef(function InsertSyntax(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$8 || (_path136$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path137$8 || (_path137$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InsertSyntax.propTypes = iconPropTypes; } var Inspection = /*#__PURE__*/React__default["default"].forwardRef(function Inspection(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$8 || (_path138$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z" })), _path139$8 || (_path139$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Inspection.propTypes = iconPropTypes; } var InstanceBx = /*#__PURE__*/React__default["default"].forwardRef(function InstanceBx(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$8 || (_path140$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle20$3 || (_circle20$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _path141$8 || (_path141$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InstanceBx.propTypes = iconPropTypes; } var InstanceClassic = /*#__PURE__*/React__default["default"].forwardRef(function InstanceClassic(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$8 || (_path142$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle21$2 || (_circle21$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _path143$8 || (_path143$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InstanceClassic.propTypes = iconPropTypes; } var InstanceCx = /*#__PURE__*/React__default["default"].forwardRef(function InstanceCx(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle22$2 || (_circle22$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _path144$8 || (_path144$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InstanceCx.propTypes = iconPropTypes; } var InstanceMx = /*#__PURE__*/React__default["default"].forwardRef(function InstanceMx(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$8 || (_path145$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle23$2 || (_circle23$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _path146$8 || (_path146$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InstanceMx.propTypes = iconPropTypes; } var InstanceVirtual = /*#__PURE__*/React__default["default"].forwardRef(function InstanceVirtual(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle24$2 || (_circle24$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "23", r: "1" })), _path147$8 || (_path147$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InstanceVirtual.propTypes = iconPropTypes; } var Integration = /*#__PURE__*/React__default["default"].forwardRef(function Integration(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$8 || (_path148$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Integration.propTypes = iconPropTypes; } var IntentRequestActive = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestActive(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$8 || (_path149$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z" })), _path150$8 || (_path150$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestActive.propTypes = iconPropTypes; } var IntentRequestCreate = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestCreate(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$8 || (_path151$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z" })), _path152$8 || (_path152$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestCreate.propTypes = iconPropTypes; } var IntentRequestHeal = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestHeal(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$8 || (_path153$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path154$8 || (_path154$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestHeal.propTypes = iconPropTypes; } var IntentRequestInactive = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestInactive(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle25$2 || (_circle25$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18.5", cy: "22.5", r: "1.5" })), _circle26$2 || (_circle26$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23.5", cy: "22.5", r: "1.5" })), _circle27$2 || (_circle27$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28.5", cy: "22.5", r: "1.5" })), _path155$8 || (_path155$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestInactive.propTypes = iconPropTypes; } var IntentRequestScaleIn = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestScaleIn(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$8 || (_path156$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestScaleIn.propTypes = iconPropTypes; } var IntentRequestScaleOut = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestScaleOut(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$8 || (_path157$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestScaleOut.propTypes = iconPropTypes; } var IntentRequestUninstall = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestUninstall(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$8 || (_path158$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path159$8 || (_path159$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestUninstall.propTypes = iconPropTypes; } var IntentRequestUpgrade = /*#__PURE__*/React__default["default"].forwardRef(function IntentRequestUpgrade(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$8 || (_path160$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z" })), _path161$8 || (_path161$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntentRequestUpgrade.propTypes = iconPropTypes; } var Interactions = /*#__PURE__*/React__default["default"].forwardRef(function Interactions(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$8); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path162$8 || (_path162$8 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", 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" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$8 || (_path163$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Interactions.propTypes = iconPropTypes; } var WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$8 || (_path164$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path165$8 || (_path165$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.586 18.586H10.414V21.413999999999998H7.586z", transform: "rotate(-45 9 20)" })), _path166$8 || (_path166$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.586 7.586H21.413999999999998V10.414H18.586z", transform: "rotate(-45 20 9)" })), _path167$8 || (_path167$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.586 7.586H10.414V10.414H7.586z", transform: "rotate(-45 9 9)" })), _path168$8 || (_path168$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 2L2 2 2 11 4 11 4 4 11 4 11 2z" })), children); }); { WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypes; } var Intersect = /*#__PURE__*/React__default["default"].forwardRef(function Intersect(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path169$8 || (_path169$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z" })), _path170$8 || (_path170$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Intersect.propTypes = iconPropTypes; } var IntrusionPrevention = /*#__PURE__*/React__default["default"].forwardRef(function IntrusionPrevention(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle28$2 || (_circle28$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "23.887", r: "2" })), _path171$8 || (_path171$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path172$8 || (_path172$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IntrusionPrevention.propTypes = iconPropTypes; } var InventoryManagement = /*#__PURE__*/React__default["default"].forwardRef(function InventoryManagement(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$8 || (_path173$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z" })), _path174$8 || (_path174$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { InventoryManagement.propTypes = iconPropTypes; } var IotConnect = /*#__PURE__*/React__default["default"].forwardRef(function IotConnect(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$8 || (_path175$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path176$8 || (_path176$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IotConnect.propTypes = iconPropTypes; } var IotPlatform = /*#__PURE__*/React__default["default"].forwardRef(function IotPlatform(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$8 || (_path177$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path178$8 || (_path178$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z" })), _path179$8 || (_path179$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z" })), children); }); { IotPlatform.propTypes = iconPropTypes; } var Iso = /*#__PURE__*/React__default["default"].forwardRef(function Iso(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$8 || (_path180$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Iso.propTypes = iconPropTypes; } var IsoFilled = /*#__PURE__*/React__default["default"].forwardRef(function IsoFilled(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$8 || (_path181$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 13H24V19H21z" })), _path182$8 || (_path182$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IsoFilled.propTypes = iconPropTypes; } var IsoOutline = /*#__PURE__*/React__default["default"].forwardRef(function IsoOutline(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$8 || (_path183$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path184$8 || (_path184$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { IsoOutline.propTypes = iconPropTypes; } var JoinFull = /*#__PURE__*/React__default["default"].forwardRef(function JoinFull(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$8 || (_path185$8 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path186$8 || (_path186$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path187$8 || (_path187$8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z" })), _path188$8 || (_path188$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JoinFull.propTypes = iconPropTypes; } var JoinInner = /*#__PURE__*/React__default["default"].forwardRef(function JoinInner(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$8 || (_path189$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JoinInner.propTypes = iconPropTypes; } var JoinLeft = /*#__PURE__*/React__default["default"].forwardRef(function JoinLeft(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$8 || (_path190$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path191$8 || (_path191$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path192$8 || (_path192$8 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path193$8 || (_path193$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JoinLeft.propTypes = iconPropTypes; } var JoinOuter = /*#__PURE__*/React__default["default"].forwardRef(function JoinOuter(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$8 || (_path194$8 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JoinOuter.propTypes = iconPropTypes; } var JoinRight = /*#__PURE__*/React__default["default"].forwardRef(function JoinRight(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$7 || (_path195$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path196$7 || (_path196$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", 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", "data-icon-path": "inner-path" })), _path197$7 || (_path197$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path198$7 || (_path198$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JoinRight.propTypes = iconPropTypes; } var Jpg = /*#__PURE__*/React__default["default"].forwardRef(function Jpg(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$7 || (_path199$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Jpg.propTypes = iconPropTypes; } var Json = /*#__PURE__*/React__default["default"].forwardRef(function Json(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$7 || (_path200$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Json.propTypes = iconPropTypes; } var JsonReference = /*#__PURE__*/React__default["default"].forwardRef(function JsonReference(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$7 || (_path201$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JsonReference.propTypes = iconPropTypes; } var JumpLink = /*#__PURE__*/React__default["default"].forwardRef(function JumpLink(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$7 || (_path202$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { JumpLink.propTypes = iconPropTypes; } var KeepDry = /*#__PURE__*/React__default["default"].forwardRef(function KeepDry(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$7 || (_path203$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path204$7 || (_path204$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { KeepDry.propTypes = iconPropTypes; } var Keyboard = /*#__PURE__*/React__default["default"].forwardRef(function Keyboard(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path205$7 || (_path205$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path206$7 || (_path206$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z" })), children); }); { Keyboard.propTypes = iconPropTypes; } var KeyboardOff = /*#__PURE__*/React__default["default"].forwardRef(function KeyboardOff(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$7 || (_path207$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z" })), _path208$7 || (_path208$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.2 10H28v13h2V10c0-1.1-.9-2-2-2H12.2L14.2 10zM30 28.6L3.4 2 2 3.4 6.6 8H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h20.6l4 4L30 28.6zM4 24V10h4.6l2 2H10v2h2.6l2 2H14v2h2.6l2 2H10v2h10.6l2 2H4z" })), children); }); { KeyboardOff.propTypes = iconPropTypes; } var Kubernetes = /*#__PURE__*/React__default["default"].forwardRef(function Kubernetes(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$8); { if (!didWarnAboutDeprecation["Kubernetes"]) { didWarnAboutDeprecation["Kubernetes"] = true; console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react."); } } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$7 || (_path209$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z" })), children); }); { Kubernetes.propTypes = iconPropTypes; } var Label$1 = /*#__PURE__*/React__default["default"].forwardRef(function Label(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path210$6 || (_path210$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 0023 13zm0 8H19V19h4zM13 9H9a2.002 2.002 0 00-2 2V23H9V18h4v5h2V11A2.002 2.002 0 0013 9zM9 16V11h4v5z" })), _path211$6 || (_path211$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z" })), children); }); { Label$1.propTypes = iconPropTypes; } var Language = /*#__PURE__*/React__default["default"].forwardRef(function Language(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212$5 || (_path212$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 19H24V21H18zM18 15H30V17H18zM18 11H30V13H18zM14 21V19H9V17H7v2H2v2h8.2148a8.5914 8.5914 0 01-2.2159 3.9771A9.2731 9.2731 0 016.5521 23H4.3334a10.8553 10.8553 0 002.1451 3.2966A14.6584 14.6584 0 013 28.127L3.7021 30a16.42 16.42 0 004.2907-2.3362A16.4883 16.4883 0 0012.2979 30L13 28.127A14.664 14.664 0 019.5228 26.3 10.3132 10.3132 0 0012.2516 21zM11.1666 13H13.333L8.75 2H6.5832L2 13H4.1664L5 11h5.3335zM5.8331 9L7.6665 4.6 9.5 9z" })), children); }); { Language.propTypes = iconPropTypes; } var Laptop = /*#__PURE__*/React__default["default"].forwardRef(function Laptop(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path213$5 || (_path213$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z", transform: "translate(0 .005)" })), _path214$5 || (_path214$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 26.005H30V28.005H2z" })), children); }); { Laptop.propTypes = iconPropTypes; } var Lasso = /*#__PURE__*/React__default["default"].forwardRef(function Lasso(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215$4 || (_path215$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z" })), children); }); { Lasso.propTypes = iconPropTypes; } var LassoPolygon = /*#__PURE__*/React__default["default"].forwardRef(function LassoPolygon(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216$4 || (_path216$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z" })), children); }); { LassoPolygon.propTypes = iconPropTypes; } var Launch$1 = /*#__PURE__*/React__default["default"].forwardRef(function Launch(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$8); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path217$4 || (_path217$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z" })), _path218$3 || (_path218$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path219$3 || (_path219$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z" })), _path220$3 || (_path220$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z" })), children); }); { Launch$1.propTypes = iconPropTypes; } var WatsonHealthLaunchStudy_1 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthLaunchStudy_1(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle29$2 || (_circle29$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "25", r: "1" })), _path221$3 || (_path221$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 10.59L17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z" })), _path222$3 || (_path222$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 24H20V26H8z" })), children); }); { WatsonHealthLaunchStudy_1.propTypes = iconPropTypes; } var WatsonHealthLaunchStudy_2 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthLaunchStudy_2(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle30$2 || (_circle30$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "7", r: "1" })), _path223$3 || (_path223$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 4v6H6V4H26m0-2H6A2 2 0 004 4v6a2 2 0 002 2H26a2 2 0 002-2V4a2 2 0 00-2-2zM20.59 21.41L17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z" })), _path224$3 || (_path224$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 6H20V8H8z" })), children); }); { WatsonHealthLaunchStudy_2.propTypes = iconPropTypes; } var WatsonHealthLaunchStudy_3 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthLaunchStudy_3(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle31$2 || (_circle31$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "25", r: "1" })), _path225$1 || (_path225$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 4.59L17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z" })), _path226$1 || (_path226$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.59 10.59L16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59zM8 24H20V26H8z" })), children); }); { WatsonHealthLaunchStudy_3.propTypes = iconPropTypes; } var Layers = /*#__PURE__*/React__default["default"].forwardRef(function Layers(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path227$1 || (_path227$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z" })), _path228$1 || (_path228$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30a.9967.9967 0 01-.4741-.12l-13-7L3.4741 21.12 16 27.8643 28.5259 21.12l.9482 1.7607-13 7A.9967.9967 0 0116 30zM16 18a.9967.9967 0 01-.4741-.12l-13-7a1 1 0 010-1.7607l13-7a.9982.9982 0 01.9482 0l13 7a1 1 0 010 1.7607l-13 7A.9967.9967 0 0116 18zM5.1094 10L16 15.8643 26.8906 10 16 4.1358z" })), children); }); { Layers.propTypes = iconPropTypes; } var Legend = /*#__PURE__*/React__default["default"].forwardRef(function Legend(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path229$1 || (_path229$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22H30V24H16z" })), _rect$2 || (_rect$2 = /*#__PURE__*/React__default["default"].createElement("rect", { width: "6", height: "6", x: "4", y: "20", rx: "1" })), _path230$1 || (_path230$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8H30V10H16zM9.5 12h-5a.5.5 0 01-.4473-.7236l2.5-5.0224a.5206.5206 0 01.8945 0l2.5 5.0225A.5.5 0 019.5 12z" })), children); }); { Legend.propTypes = iconPropTypes; } var LetterAa = /*#__PURE__*/React__default["default"].forwardRef(function LetterAa(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path231$1 || (_path231$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2 2 0 0023 13zm0 8H19V19h4zM13 9H9a2 2 0 00-2 2V23H9V18h4v5h2V11A2 2 0 0013 9zM9 16V11h4v5z" })), children); }); { LetterAa.propTypes = iconPropTypes; } var LetterBb = /*#__PURE__*/React__default["default"].forwardRef(function LetterBb(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path232$1 || (_path232$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 13H19V9H17V23h6a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM15 12a3 3 0 00-3-3H7V23h5a3 3 0 003-3V18a3 3 0 00-.78-2A3 3 0 0015 14zM9 11h3a1 1 0 011 1v2a1 1 0 01-1 1H9zm4 9a1 1 0 01-1 1H9V17h3a1 1 0 011 1z" })), children); }); { LetterBb.propTypes = iconPropTypes; } var LetterCc = /*#__PURE__*/React__default["default"].forwardRef(function LetterCc(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path233$1 || (_path233$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 23H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v6h5zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z" })), children); }); { LetterCc.propTypes = iconPropTypes; } var LetterDd = /*#__PURE__*/React__default["default"].forwardRef(function LetterDd(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path234$1 || (_path234$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 9v4H19a2 2 0 00-2 2v6a2 2 0 002 2h6V9zm-4 6h4v6H19zM11 23H7V9h4a4 4 0 014 4v6A4 4 0 0111 23zM9 21h2a2 2 0 002-2V13a2 2 0 00-2-2H9z" })), children); }); { LetterDd.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$7, _path2$7, _path3$7, _path4$7, _path5$7, _path6$7, _path7$7, _path8$7, _path9$7, _path10$7, _path11$7, _path12$7, _path13$7, _path14$7, _path15$7, _path16$7, _path17$7, _path18$7, _path19$7, _path20$7, _path21$7, _path22$7, _path23$7, _path24$7, _path25$7, _path26$7, _path27$7, _path28$7, _path29$7, _path30$7, _path31$7, _path32$7, _path33$7, _path34$7, _path35$7, _path36$7, _path37$7, _path38$7, _path39$7, _path40$7, _path41$7, _path42$7, _path43$7, _path44$7, _path45$7, _path46$7, _path47$7, _path48$7, _path49$7, _path50$7, _path51$7, _path52$7, _path53$7, _path54$7, _path55$7, _path56$7, _path57$7, _path58$7, _path59$7, _path60$7, _path61$7, _path62$7, _path63$7, _path64$7, _path65$7, _path66$7, _path67$7, _path68$7, _path69$7, _path70$7, _path71$7, _path72$7, _circle$7, _circle2$7, _path73$7, _circle3$7, _circle4$6, _path74$7, _path75$7, _path76$7, _path77$7, _path78$7, _path79$7, _path80$7, _path81$7, _path82$7, _path83$7, _path84$7, _path85$7, _path86$7, _path87$7, _path88$7, _path89$7, _path90$7, _path91$7, _path92$7, _path93$7, _path94$7, _path95$7, _circle5$6, _circle6$6, _path96$7, _path97$7, _path98$7, _path99$7, _path100$7, _path101$7, _path102$7, _path103$7, _path104$7, _path105$7, _path106$7, _circle7$6, _path107$7, _path108$7, _path109$7, _path110$7, _path111$7, _path112$7, _path113$7, _circle8$6, _path114$7, _path115$7, _path116$7, _path117$7, _path118$7, _path119$7, _path120$7, _path121$7, _path122$7, _circle9$6, _circle10$6, _path123$7, _path124$7, _path125$7, _circle11$6, _path126$7, _path127$7, _path128$7, _path129$7, _path130$7, _path131$7, _path132$7, _path133$7, _path134$7, _path135$7, _path136$7, _path137$7, _path138$7, _path139$7, _path140$7, _path141$7, _path142$7, _path143$7, _path144$7, _path145$7, _path146$7, _path147$7, _path148$7, _path149$7, _path150$7, _path151$7, _path152$7, _path153$7, _path154$7, _path155$7, _path156$7, _path157$7, _path158$7, _path159$7, _path160$7, _path161$7, _path162$7, _path163$7, _path164$7, _path165$7, _path166$7, _path167$7, _path168$7, _path169$7, _path170$7, _path171$7, _path172$7, _path173$7, _path174$7, _path175$7, _path176$7, _path177$7, _path178$7, _path179$7, _path180$7, _path181$7, _path182$7, _path183$7, _path184$7, _path185$7, _path186$7, _path187$7, _path188$7, _path189$7, _path190$7, _path191$7, _path192$7, _path193$7, _path194$7, _path195$6, _path196$6, _path197$6, _path198$6, _circle12$5, _path199$6, _path200$6, _path201$6, _path202$6, _path203$6, _path204$6, _path205$6, _path206$6, _path207$6, _path208$6, _path209$6; var _excluded$c = ["children", "size"], _excluded2$7 = ["children", "size"], _excluded3$7 = ["children", "size"], _excluded4$7 = ["children", "size"], _excluded5$7 = ["children", "size"], _excluded6$7 = ["children", "size"], _excluded7$7 = ["children", "size"], _excluded8$7 = ["children", "size"], _excluded9$7 = ["children", "size"], _excluded10$7 = ["children", "size"], _excluded11$7 = ["children", "size"], _excluded12$7 = ["children", "size"], _excluded13$7 = ["children", "size"], _excluded14$7 = ["children", "size"], _excluded15$7 = ["children", "size"], _excluded16$7 = ["children", "size"], _excluded17$7 = ["children", "size"], _excluded18$7 = ["children", "size"], _excluded19$7 = ["children", "size"], _excluded20$7 = ["children", "size"], _excluded21$7 = ["children", "size"], _excluded22$7 = ["children", "size"], _excluded23$7 = ["children", "size"], _excluded24$7 = ["children", "size"], _excluded25$7 = ["children", "size"], _excluded26$7 = ["children", "size"], _excluded27$7 = ["children", "size"], _excluded28$7 = ["children", "size"], _excluded29$7 = ["children", "size"], _excluded30$7 = ["children", "size"], _excluded31$7 = ["children", "size"], _excluded32$7 = ["children", "size"], _excluded33$7 = ["children", "size"], _excluded34$7 = ["children", "size"], _excluded35$7 = ["children", "size"], _excluded36$7 = ["children", "size"], _excluded37$7 = ["children", "size"], _excluded38$7 = ["children", "size"], _excluded39$7 = ["children", "size"], _excluded40$7 = ["children", "size"], _excluded41$7 = ["children", "size"], _excluded42$7 = ["children", "size"], _excluded43$7 = ["children", "size"], _excluded44$7 = ["children", "size"], _excluded45$7 = ["children", "size"], _excluded46$7 = ["children", "size"], _excluded47$7 = ["children", "size"], _excluded48$7 = ["children", "size"], _excluded49$7 = ["children", "size"], _excluded50$7 = ["children", "size"], _excluded51$7 = ["children", "size"], _excluded52$7 = ["children", "size"], _excluded53$7 = ["children", "size"], _excluded54$7 = ["children", "size"], _excluded55$7 = ["children", "size"], _excluded56$7 = ["children", "size"], _excluded57$7 = ["children", "size"], _excluded58$7 = ["children", "size"], _excluded59$7 = ["children", "size"], _excluded60$7 = ["children", "size"], _excluded61$7 = ["children", "size"], _excluded62$7 = ["children", "size"], _excluded63$7 = ["children", "size"], _excluded64$7 = ["children", "size"], _excluded65$7 = ["children", "size"], _excluded66$7 = ["children", "size"], _excluded67$7 = ["children", "size"], _excluded68$7 = ["children", "size"], _excluded69$7 = ["children", "size"], _excluded70$7 = ["children", "size"], _excluded71$7 = ["children", "size"], _excluded72$7 = ["children", "size"], _excluded73$7 = ["children", "size"], _excluded74$7 = ["children", "size"], _excluded75$7 = ["children", "size"], _excluded76$7 = ["children", "size"], _excluded77$7 = ["children", "size"], _excluded78$7 = ["children", "size"], _excluded79$7 = ["children", "size"], _excluded80$7 = ["children", "size"], _excluded81$7 = ["children", "size"], _excluded82$7 = ["children", "size"], _excluded83$7 = ["children", "size"], _excluded84$7 = ["children", "size"], _excluded85$7 = ["children", "size"], _excluded86$7 = ["children", "size"], _excluded87$7 = ["children", "size"], _excluded88$7 = ["children", "size"], _excluded89$7 = ["children", "size"], _excluded90$7 = ["children", "size"], _excluded91$7 = ["children", "size"], _excluded92$7 = ["children", "size"], _excluded93$7 = ["children", "size"], _excluded94$7 = ["children", "size"], _excluded95$7 = ["children", "size"], _excluded96$7 = ["children", "size"], _excluded97$7 = ["children", "size"], _excluded98$7 = ["children", "size"], _excluded99$7 = ["children", "size"], _excluded100$7 = ["children", "size"], _excluded101$7 = ["children", "size"], _excluded102$7 = ["children", "size"], _excluded103$7 = ["children", "size"], _excluded104$7 = ["children", "size"], _excluded105$7 = ["children", "size"], _excluded106$7 = ["children", "size"], _excluded107$7 = ["children", "size"], _excluded108$7 = ["children", "size"], _excluded109$7 = ["children", "size"], _excluded110$7 = ["children", "size"], _excluded111$7 = ["children", "size"], _excluded112$7 = ["children", "size"], _excluded113$7 = ["children", "size"], _excluded114$7 = ["children", "size"], _excluded115$7 = ["children", "size"], _excluded116$7 = ["children", "size"], _excluded117$7 = ["children", "size"], _excluded118$7 = ["children", "size"], _excluded119$7 = ["children", "size"], _excluded120$7 = ["children", "size"], _excluded121$7 = ["children", "size"], _excluded122$7 = ["children", "size"], _excluded123$7 = ["children", "size"], _excluded124$6 = ["children", "size"], _excluded125$6 = ["children", "size"]; var LetterEe = /*#__PURE__*/React__default["default"].forwardRef(function LetterEe(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$c); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$7 || (_path$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 19V15a2.0023 2.0023 0 00-2-2H19a2.0023 2.0023 0 00-2 2v6a2.0077 2.0077 0 002 2h5V21H19V19zm-6-4h4v2H19zM15 11L15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z" })), children); }); { LetterEe.propTypes = iconPropTypes; } var LetterFf = /*#__PURE__*/React__default["default"].forwardRef(function LetterFf(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$7 || (_path2$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 11L16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11zM24 11V9H21a2 2 0 00-2 2v2H17v2h2v8h2V15h3V13H21V11z" })), children); }); { LetterFf.propTypes = iconPropTypes; } var LetterGg = /*#__PURE__*/React__default["default"].forwardRef(function LetterGg(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$7 || (_path3$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v2H18v2h5a2 2 0 002-2V13zm4 8H19V15h4zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h4V17H11V15h4z" })), children); }); { LetterGg.propTypes = iconPropTypes; } var LetterHh = /*#__PURE__*/React__default["default"].forwardRef(function LetterHh(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$7 || (_path4$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 9L13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9zM23 13H19V9H17V23h2V15h4v8h2V15A2 2 0 0023 13z" })), children); }); { LetterHh.propTypes = iconPropTypes; } var LetterIi = /*#__PURE__*/React__default["default"].forwardRef(function LetterIi(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$7 || (_path5$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 11L13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11zM20 13H22V23H20zM20 9H22V11H20z" })), children); }); { LetterIi.propTypes = iconPropTypes; } var LetterJj = /*#__PURE__*/React__default["default"].forwardRef(function LetterJj(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$7 || (_path6$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9H22V11H20zM20 25H17v2h3a2 2 0 002-2V13H20zM14 23H10a2 2 0 01-2-2V19h2v2h4V9h2V21A2 2 0 0114 23z" })), children); }); { LetterJj.propTypes = iconPropTypes; } var LetterKk = /*#__PURE__*/React__default["default"].forwardRef(function LetterKk(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$7 || (_path7$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 9L12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9zM22.78 23L25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z" })), children); }); { LetterKk.propTypes = iconPropTypes; } var LetterLl = /*#__PURE__*/React__default["default"].forwardRef(function LetterLl(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$7 || (_path8$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 21L11 9 9 9 9 23 17 23 17 21 11 21zM23 23H21a2 2 0 01-2-2V9h2V21h2z" })), children); }); { LetterLl.propTypes = iconPropTypes; } var LetterMm = /*#__PURE__*/React__default["default"].forwardRef(function LetterMm(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$7 || (_path9$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 13H16V23h2V15h2v8h2V15h2v8h2V15A2 2 0 0024 13zM12 9L10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z" })), children); }); { LetterMm.propTypes = iconPropTypes; } var LetterNn = /*#__PURE__*/React__default["default"].forwardRef(function LetterNn(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$7 || (_path10$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23H23V15H19v8H17V13h6a2 2 0 012 2zM13 19L9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z" })), children); }); { LetterNn.propTypes = iconPropTypes; } var LetterOo = /*#__PURE__*/React__default["default"].forwardRef(function LetterOo(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$7 || (_path11$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 23H19a2 2 0 01-2-2V15a2 2 0 012-2h4a2 2 0 012 2v6A2 2 0 0123 23zm-4-8v6h4V15zM13 23H9a2 2 0 01-2-2V11A2 2 0 019 9h4a2 2 0 012 2V21A2 2 0 0113 23zM9 11V21h4V11z" })), children); }); { LetterOo.propTypes = iconPropTypes; } var LetterPp = /*#__PURE__*/React__default["default"].forwardRef(function LetterPp(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$7 || (_path12$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 13H17V27h2V23h4a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM9 23H7V9h6a2 2 0 012 2v5a2 2 0 01-2 2H9zm0-7h4V11H9z" })), children); }); { LetterPp.propTypes = iconPropTypes; } var LetterQq = /*#__PURE__*/React__default["default"].forwardRef(function LetterQq(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$7 || (_path13$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v4h2V13zm4 8H19V15h4zM13 9H9a2 2 0 00-2 2V21a2 2 0 002 2h1v2a2 2 0 002 2h2V25H12V23h1a2 2 0 002-2V11A2 2 0 0013 9zM9 21V11h4V21z" })), children); }); { LetterQq.propTypes = iconPropTypes; } var LetterRr = /*#__PURE__*/React__default["default"].forwardRef(function LetterRr(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$7 || (_path14$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 15V11a2 2 0 00-2-2H8V23h2V17h1.48l2.34 6H16l-2.33-6H14A2 2 0 0016 15zm-6-4h4v4H10zM24 13L18 13 18 23 20 23 20 15 24 15 24 13z" })), children); }); { LetterRr.propTypes = iconPropTypes; } var LetterSs = /*#__PURE__*/React__default["default"].forwardRef(function LetterSs(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$7 || (_path15$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 23H17V21h5V19H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v2h3a2 2 0 012 2v2A2 2 0 0122 23zM13 23H7V21h6V17H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9v4h4a2 2 0 012 2v4A2 2 0 0113 23z" })), children); }); { LetterSs.propTypes = iconPropTypes; } var LetterTt = /*#__PURE__*/React__default["default"].forwardRef(function LetterTt(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$7 || (_path16$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 11L11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11zM23 15V13H20V11H18v2H16v2h2v6a2 2 0 002 2h3V21H20V15z" })), children); }); { LetterTt.propTypes = iconPropTypes; } var LetterUu = /*#__PURE__*/React__default["default"].forwardRef(function LetterUu(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$7 || (_path17$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 23H19a2 2 0 01-2-2V13h2v8h4V13h2v8A2 2 0 0123 23zM13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23z" })), children); }); { LetterUu.propTypes = iconPropTypes; } var LetterVv = /*#__PURE__*/React__default["default"].forwardRef(function LetterVv(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$7 || (_path18$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 13L23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13zM13 9L11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z" })), children); }); { LetterVv.propTypes = iconPropTypes; } var LetterWw = /*#__PURE__*/React__default["default"].forwardRef(function LetterWw(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$7 || (_path19$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.3 13L23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13zM12.21 9L11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z" })), children); }); { LetterWw.propTypes = iconPropTypes; } var LetterXx = /*#__PURE__*/React__default["default"].forwardRef(function LetterXx(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$7 || (_path20$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 9L13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9zM25 13L23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z" })), children); }); { LetterXx.propTypes = iconPropTypes; } var LetterYy = /*#__PURE__*/React__default["default"].forwardRef(function LetterYy(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$7 || (_path21$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 9L13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9zM23 13l-2 7.52L19.08 13H17l3.15 9.87L19.53 25H17v2h2.26a2 2 0 001.91-1.42L25 13z" })), children); }); { LetterYy.propTypes = iconPropTypes; } var LetterZz = /*#__PURE__*/React__default["default"].forwardRef(function LetterZz(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$7 || (_path22$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 15L25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15zM15 9L7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z" })), children); }); { LetterZz.propTypes = iconPropTypes; } var License = /*#__PURE__*/React__default["default"].forwardRef(function License(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$7 || (_path23$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6H22V8H10zM10 10H22V12H10zM10 24H16V26H10zM10 14H16V16H10z" })), _path24$7 || (_path24$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z" })), children); }); { License.propTypes = iconPropTypes; } var LicenseDraft = /*#__PURE__*/React__default["default"].forwardRef(function LicenseDraft(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$7 || (_path25$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 6H20V8H8zM8 10H20V12H8zM8 14H14V16H8zM8 24H12V26H8z" })), _path26$7 || (_path26$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM12 30H6a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 016 2H22a2.0021 2.0021 0 012 2V14H22V4H6V28h6z" })), children); }); { LicenseDraft.propTypes = iconPropTypes; } var LicenseGlobal = /*#__PURE__*/React__default["default"].forwardRef(function LicenseGlobal(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$7 || (_path27$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 14a8 8 0 108 8A8.0092 8.0092 0 0022 14zm5.91 7H25.9563a12.03 12.03 0 00-1.2183-4.3325A6.01 6.01 0 0127.91 21zm-7.8545 0A10.0135 10.0135 0 0122 16.0146 10.0121 10.0121 0 0123.9448 21zm3.89 2A10.01 10.01 0 0122 27.9854 10.0121 10.0121 0 0120.0552 23zm-4.6831-6.332A12.0265 12.0265 0 0018.0435 21H16.09A6.01 6.01 0 0119.2617 16.668zM16.09 23h1.9532a12.0265 12.0265 0 001.2182 4.332A6.01 6.01 0 0116.09 23zm8.6482 4.332A12.0242 12.0242 0 0025.9565 23H27.91A6.0088 6.0088 0 0124.7385 27.332zM6 14H12V16H6zM6 6H18V8H6zM6 10H18V12H6zM6 24H12V26H6z" })), _path28$7 || (_path28$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z" })), children); }); { LicenseGlobal.propTypes = iconPropTypes; } var LicenseMaintenance = /*#__PURE__*/React__default["default"].forwardRef(function LicenseMaintenance(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$7 || (_path29$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM30 24V22H27.8989a4.9678 4.9678 0 00-.7319-1.7529l1.49-1.49-1.414-1.414-1.49 1.49A4.9678 4.9678 0 0024 18.1011V16H22v2.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 0018.1011 22H16v2h2.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 0022 27.8989V30h2V27.8989a4.9678 4.9678 0 001.7529-.7319l1.49 1.49 1.414-1.414-1.49-1.49A4.9678 4.9678 0 0027.8989 24zm-7 2a3 3 0 113-3A3.0033 3.0033 0 0123 26z" })), _path30$7 || (_path30$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z" })), children); }); { LicenseMaintenance.propTypes = iconPropTypes; } var LicenseMaintenanceDraft = /*#__PURE__*/React__default["default"].forwardRef(function LicenseMaintenanceDraft(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$7 || (_path31$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM20 13V11H17.8579a3.94 3.94 0 00-.4248-1.019L18.95 8.4644 17.5356 7.05 16.019 8.5669A3.9443 3.9443 0 0015 8.1421V6H13V8.1421a3.9443 3.9443 0 00-1.019.4248L10.4644 7.05 9.05 8.4644 10.5669 9.981A3.94 3.94 0 0010.1421 11H8v2h2.1421a3.94 3.94 0 00.4248 1.019L9.05 15.5356 10.4644 16.95l1.5166-1.5166A3.9443 3.9443 0 0013 15.8579V18h2V15.8579a3.9443 3.9443 0 001.019-.4248L17.5356 16.95 18.95 15.5356 17.4331 14.019A3.94 3.94 0 0017.8579 13zm-6 1a2 2 0 112-2A2.0025 2.0025 0 0114 14z" })), _path32$7 || (_path32$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" })), children); }); { LicenseMaintenanceDraft.propTypes = iconPropTypes; } var LicenseThirdParty = /*#__PURE__*/React__default["default"].forwardRef(function LicenseThirdParty(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$7 || (_path33$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM24 24a4 4 0 10-4-4A4 4 0 0024 24zm0-6a2 2 0 11-2 2A2 2 0 0124 18z" })), _path34$7 || (_path34$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z" })), children); }); { LicenseThirdParty.propTypes = iconPropTypes; } var LicenseThirdPartyDraft = /*#__PURE__*/React__default["default"].forwardRef(function LicenseThirdPartyDraft(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$7 || (_path35$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM17 15H11a3 3 0 00-3 3v1h2V18a1 1 0 011-1h6a1 1 0 011 1v1h2V18A3 3 0 0017 15zM14 14a4 4 0 10-4-4A4 4 0 0014 14zm0-6a2 2 0 11-2 2A2 2 0 0114 8z" })), _path36$7 || (_path36$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z" })), children); }); { LicenseThirdPartyDraft.propTypes = iconPropTypes; } var Lifesaver = /*#__PURE__*/React__default["default"].forwardRef(function Lifesaver(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$7 || (_path37$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z" })), children); }); { Lifesaver.propTypes = iconPropTypes; } var Light = /*#__PURE__*/React__default["default"].forwardRef(function Light(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$7); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path38$7 || (_path38$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 1H8.5V3.5H7.5z" })), _path39$7 || (_path39$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.8 3.4H13.3V4.4H10.8z", transform: "rotate(-45.001 12.041 3.923)" })), _path40$7 || (_path40$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.5 7.5H15V8.5H12.5z" })), _path41$7 || (_path41$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.6 10.8H12.6V13.3H11.6z", transform: "rotate(-45.001 12.075 12.041)" })), _path42$7 || (_path42$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 12.5H8.5V15H7.5z" })), _path43$7 || (_path43$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.7 11.6H5.2V12.6H2.7z", transform: "rotate(-45.001 3.96 12.079)" })), _path44$7 || (_path44$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M1 7.5H3.5V8.5H1z" })), _path45$7 || (_path45$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.4 2.7H4.4V5.2H3.4z", transform: "rotate(-45.001 3.925 3.961)" })), _path46$7 || (_path46$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$7 || (_path47$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V7H15z" })), _path48$7 || (_path48$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 6.854H26.625999999999998V8.854H21.668z", transform: "rotate(-45 24.147 7.853)" })), _path49$7 || (_path49$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 15H30V17H25z" })), _path50$7 || (_path50$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.147 21.668H25.147V26.625999999999998H23.147z", transform: "rotate(-45 24.147 24.146)" })), _path51$7 || (_path51$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 25H17V30H15z" })), _path52$7 || (_path52$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.375 23.147H10.333V25.147H5.375z", transform: "rotate(-45 7.853 24.146)" })), _path53$7 || (_path53$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 15H7V17H2z" })), _path54$7 || (_path54$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 5.375H8.854V10.333H6.854z", transform: "rotate(-45 7.854 7.853)" })), _path55$7 || (_path55$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" })), children); }); { Light.propTypes = iconPropTypes; } var LightFilled = /*#__PURE__*/React__default["default"].forwardRef(function LightFilled(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$7 || (_path56$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V7H15z" })), _path57$7 || (_path57$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 6.854H26.625999999999998V8.854H21.668z", transform: "rotate(-45 24.147 7.853)" })), _path58$7 || (_path58$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 15H30V17H25z" })), _path59$7 || (_path59$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.147 21.668H25.147V26.625999999999998H23.147z", transform: "rotate(-45 24.147 24.146)" })), _path60$7 || (_path60$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 25H17V30H15z" })), _path61$7 || (_path61$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.375 23.147H10.333V25.147H5.375z", transform: "rotate(-45 7.853 24.146)" })), _path62$7 || (_path62$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 15H7V17H2z" })), _path63$7 || (_path63$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 5.375H8.854V10.333H6.854z", transform: "rotate(-45 7.854 7.853)" })), _path64$7 || (_path64$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" })), children); }); { LightFilled.propTypes = iconPropTypes; } var Lightning = /*#__PURE__*/React__default["default"].forwardRef(function Lightning(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$7 || (_path65$7 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Lightning.propTypes = iconPropTypes; } var Link$2 = /*#__PURE__*/React__default["default"].forwardRef(function Link(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$7 || (_path66$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z" })), _path67$7 || (_path67$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z" })), children); }); { Link$2.propTypes = iconPropTypes; } var Linux = /*#__PURE__*/React__default["default"].forwardRef(function Linux(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$7 || (_path68$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z" })), children); }); { Linux.propTypes = iconPropTypes; } var LinuxAlt = /*#__PURE__*/React__default["default"].forwardRef(function LinuxAlt(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$7 || (_path69$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z" })), _path70$7 || (_path70$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z" })), children); }); { LinuxAlt.propTypes = iconPropTypes; } var List = /*#__PURE__*/React__default["default"].forwardRef(function List(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71$7 || (_path71$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6H28V8H10zM10 24H28V26H10zM10 15H28V17H10zM4 15H6V17H4zM4 6H6V8H4zM4 24H6V26H4z" })), children); }); { List.propTypes = iconPropTypes; } var ListBoxes = /*#__PURE__*/React__default["default"].forwardRef(function ListBoxes(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$7 || (_path72$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8H30V10H16zM16 22H30V24H16zM10 14H4a2.0023 2.0023 0 01-2-2V6A2.0023 2.0023 0 014 4h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0110 14zM4 6v6h6.0012L10 6zM10 28H4a2.0023 2.0023 0 01-2-2V20a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0110 28zM4 20v6h6.0012L10 20z" })), children); }); { ListBoxes.propTypes = iconPropTypes; } var ListBulleted = /*#__PURE__*/React__default["default"].forwardRef(function ListBulleted(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$7); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _circle$7 || (_circle$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3.5", cy: "4.5", r: "1.5" })), _circle2$7 || (_circle2$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3.5", cy: "11.5", r: "1.5" })), _path73$7 || (_path73$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 11H15V12H8zM8 4H15V5H8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3$7 || (_circle3$7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "9", r: "3" })), _circle4$6 || (_circle4$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "23", r: "3" })), _path74$7 || (_path74$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22H30V24H16zM16 8H30V10H16z" })), children); }); { ListBulleted.propTypes = iconPropTypes; } var ListChecked = /*#__PURE__*/React__default["default"].forwardRef(function ListChecked(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$7 || (_path75$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8H30V10H16zM6 10.59L3.41 8 2 9.41 6 13.41 14 5.41 12.59 4 6 10.59zM16 22H30V24H16zM6 24.59L3.41 22 2 23.41 6 27.41 14 19.41 12.59 18 6 24.59z" })), children); }); { ListChecked.propTypes = iconPropTypes; } var ListDropdown = /*#__PURE__*/React__default["default"].forwardRef(function ListDropdown(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$7 || (_path76$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z" })), _path77$7 || (_path77$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 11H17V13H15zM19 11H26V13H19zM15 17H17V19H15zM19 17H26V19H19zM15 23H17V25H15zM19 23H26V25H19z" })), children); }); { ListDropdown.propTypes = iconPropTypes; } var ListNumbered = /*#__PURE__*/React__default["default"].forwardRef(function ListNumbered(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$7 || (_path78$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22H30V24H16zM16 8H30V10H16zM8 12L8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12zM10 28H4V24a2 2 0 012-2H8V20H4V18H8a2 2 0 012 2v2a2 2 0 01-2 2H6v2h4z" })), children); }); { ListNumbered.propTypes = iconPropTypes; } var LoadBalancerApplication = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerApplication(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$7 || (_path79$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V14H15v2H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM9 2V12H23V2zm2 2h2v6H11zm10 6H15V4h6z" })), children); }); { LoadBalancerApplication.propTypes = iconPropTypes; } var LoadBalancerClassic = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerClassic(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$7 || (_path80$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM20 10V2H12v8zM14 8V4h4V8z" })), children); }); { LoadBalancerClassic.propTypes = iconPropTypes; } var LoadBalancerGlobal = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerGlobal(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$7 || (_path81$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM16 10a4 4 0 114-4A4.0045 4.0045 0 0116 10zm0-6a2 2 0 102 2A2.0021 2.0021 0 0016 4z" })), children); }); { LoadBalancerGlobal.propTypes = iconPropTypes; } var LoadBalancerListener = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerListener(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$7 || (_path82$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 8H17V10H15zM19 8H21V10H19zM11 8H13V10H11zM25 16H17V13H15v3H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM11 3H21V5H11z" })), children); }); { LoadBalancerListener.propTypes = iconPropTypes; } var LoadBalancerLocal = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerLocal(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$7 || (_path83$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 16H17V10H15v6H7a2.0023 2.0023 0 00-2 2v6H7V18h8v6h2V18h8v6h2V18A2.0023 2.0023 0 0025 16zM4 26H8V30H4zM14 26H18V30H14zM24 26H28V30H24zM11 5H21V7H11z" })), children); }); { LoadBalancerLocal.propTypes = iconPropTypes; } var LoadBalancerNetwork = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerNetwork(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$7 || (_path84$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 16H17V12H15v4H7a2.0023 2.0023 0 00-2 2v4H7V18h8v4h2V18h8v4h2V18A2.0023 2.0023 0 0025 16zM20 10V2H12v8h8zM14 8V4h4V8zM26 24a2.9948 2.9948 0 00-2.8157 2H18.8157a2.982 2.982 0 00-5.6314 0H8.8157a3 3 0 100 2h4.3686a2.982 2.982 0 005.6314 0h4.3686A2.9947 2.9947 0 1026 24zM6 28a1 1 0 111-1A1.0009 1.0009 0 016 28zm10 0a1 1 0 111-1A1.0009 1.0009 0 0116 28zm10 0a1 1 0 111-1A1.0009 1.0009 0 0126 28z" })), children); }); { LoadBalancerNetwork.propTypes = iconPropTypes; } var LoadBalancerPool = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerPool(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$7 || (_path85$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 15H22V17H10zM8.7 6.2852A2.9665 2.9665 0 009 5 3 3 0 106 8a2.96 2.96 0 001.2852-.3008L10 10.4141V13h2V9.5859zM6 6A1 1 0 117 5 1.0009 1.0009 0 016 6zM19 5a3 3 0 10-4 2.8154V13h2V7.8159A2.9957 2.9957 0 0019 5zM16 6a1 1 0 111-1A1.0009 1.0009 0 0116 6zM26 2a3.0033 3.0033 0 00-3 3 2.9665 2.9665 0 00.3 1.2852L20 9.5859V13h2V10.4141l2.7148-2.7149A2.96 2.96 0 0026 8a3 3 0 000-6zm0 4a1 1 0 111-1A1.0009 1.0009 0 0126 6zM12 19H10v2.5859L7.2854 24.3008A2.9609 2.9609 0 006 24a3 3 0 103 3 2.9665 2.9665 0 00-.3-1.2852L12 22.4141zM6 28a1 1 0 111-1A1.0009 1.0009 0 016 28zM17 24.1841V19H15v5.1841a3 3 0 102 0zM16 28a1 1 0 111-1A1.0009 1.0009 0 0116 28zM26 24a2.9609 2.9609 0 00-1.2854.3008L22 21.5859V19H20v3.4141l3.3 3.3007A2.9665 2.9665 0 0023 27a3 3 0 103-3zm0 4a1 1 0 111-1A1.0009 1.0009 0 0126 28z" })), children); }); { LoadBalancerPool.propTypes = iconPropTypes; } var LoadBalancerVpc = /*#__PURE__*/React__default["default"].forwardRef(function LoadBalancerVpc(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$7 || (_path86$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30H2V24H8zM4 28H6V26H4zM19 30H13V24h6zm-4-2h2V26H15zM30 30H24V24h6zm-4-2h2V26H26zM16 10a4 4 0 114-4A4.0045 4.0045 0 0116 10zm0-6a2 2 0 102 2A2.002 2.002 0 0016 4zM26 16H21a4.0045 4.0045 0 01-4-4H15a4.0045 4.0045 0 01-4 4H6a2.0023 2.0023 0 00-2 2v4H6V18h5A5.9694 5.9694 0 0015 16.46V22h2V16.46A5.9694 5.9694 0 0021 18h5v4h2V18A2.0023 2.0023 0 0026 16z" })), children); }); { LoadBalancerVpc.propTypes = iconPropTypes; } var Location = /*#__PURE__*/React__default["default"].forwardRef(function Location(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$7 || (_path87$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z" })), _path88$7 || (_path88$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { Location.propTypes = iconPropTypes; } var LocationCompany = /*#__PURE__*/React__default["default"].forwardRef(function LocationCompany(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$7 || (_path89$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), _path90$7 || (_path90$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z" })), _path91$7 || (_path91$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 16H17V18H15zM15 12H17V14H15z" })), children); }); { LocationCompany.propTypes = iconPropTypes; } var LocationCompanyFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationCompanyFilled(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$7 || (_path92$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Zm-4-2H15v2h2Zm0-4H15v2h2Z" })), _path93$7 || (_path93$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm1,16H15V16h2Zm0-4H15V12h2Zm4,4H19V10H13v8H11V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z" })), children); }); { LocationCompanyFilled.propTypes = iconPropTypes; } var LocationCurrent = /*#__PURE__*/React__default["default"].forwardRef(function LocationCurrent(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$7 || (_path94$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z" })), children); }); { LocationCurrent.propTypes = iconPropTypes; } var LocationFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationFilled(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$7 || (_path95$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,17Z" })), _circle5$6 || (_circle5$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "13", r: "4", fill: "none" })), children); }); { LocationFilled.propTypes = iconPropTypes; } var LocationHazard = /*#__PURE__*/React__default["default"].forwardRef(function LocationHazard(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle6$6 || (_circle6$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "20.5", r: "1.5" })), _path96$7 || (_path96$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 7H17V16H15z" })), _path97$7 || (_path97$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { LocationHazard.propTypes = iconPropTypes; } var LocationHazardFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationHazardFilled(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$7 || (_path98$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Zm-1.125-6h2.25V7h-2.25Z" })), _path99$7 || (_path99$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2ZM14.875,7h2.25v9h-2.25ZM16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Z" })), children); }); { LocationHazardFilled.propTypes = iconPropTypes; } var LocationHeart = /*#__PURE__*/React__default["default"].forwardRef(function LocationHeart(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$7 || (_path100$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z" })), _path101$7 || (_path101$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { LocationHeart.propTypes = iconPropTypes; } var LocationHeartFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationHeartFilled(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$7 || (_path102$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z" })), _path103$7 || (_path103$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm4.2109,11.7021L16.002,18l-4.2129-4.2979a2.7992,2.7992,0,0,1,0-3.8964,2.6619,2.6619,0,0,1,3.8159,0l.397.4057.393-.4057a2.6619,2.6619,0,0,1,3.8159,0A2.7992,2.7992,0,0,1,20.2109,13.7021Z" })), children); }); { LocationHeartFilled.propTypes = iconPropTypes; } var LocationPerson = /*#__PURE__*/React__default["default"].forwardRef(function LocationPerson(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$7 || (_path104$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 19H18V17H14v2H12V17a2.0021 2.0021 0 012-2h4a2.0021 2.0021 0 012 2zM16 14a3 3 0 113-3A3.0033 3.0033 0 0116 14zm0-4a1 1 0 101 1A1.0011 1.0011 0 0016 10z" })), _path105$7 || (_path105$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { LocationPerson.propTypes = iconPropTypes; } var LocationPersonFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationPersonFilled(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$7 || (_path106$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Zm-1-8a3,3,0,1,0-3,3A3.0033,3.0033,0,0,0,19,11Zm-2,0a1,1,0,1,1-1-1A1.0011,1.0011,0,0,1,17,11Z" })), _circle7$6 || (_circle7$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "11", r: "1" })), _path107$7 || (_path107$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,6a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,8Zm4,11H18V17H14v2H12V17a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z" })), children); }); { LocationPersonFilled.propTypes = iconPropTypes; } var LocationSave = /*#__PURE__*/React__default["default"].forwardRef(function LocationSave(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$7 || (_path108$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 30h2V28a1.0009 1.0009 0 011-1h6a1.0009 1.0009 0 011 1v2h2V28a3.0033 3.0033 0 00-3-3H21a3.0033 3.0033 0 00-3 3zM24 24a4 4 0 114-4A4.0042 4.0042 0 0124 24zm0-6a2 2 0 102 2A2.0023 2.0023 0 0024 18zM25.3418 10.06l-22-8A1 1 0 002.06 3.3415l8 22A1.001 1.001 0 0010.9839 26H11a1 1 0 00.9287-.6289L15.77 15.7692l9.6016-3.8408a1 1 0 00-.0293-1.8687zM14.6284 14.0709v0l-.3979.1591-.1591.3979 0 0-3.0269 7.5678L4.6719 4.6715l17.5244 6.3726z" })), children); }); { LocationSave.propTypes = iconPropTypes; } var LocationStar = /*#__PURE__*/React__default["default"].forwardRef(function LocationStar(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109$7 || (_path109$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 7L17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z" })), _path110$7 || (_path110$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z" })), children); }); { LocationStar.propTypes = iconPropTypes; } var LocationStarFilled = /*#__PURE__*/React__default["default"].forwardRef(function LocationStarFilled(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$7 || (_path111$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16 7L17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z" })), _path112$7 || (_path112$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm3.6,16L16,15.7085,12.4,18l.6-4.0742-3-2.7529,4.2-.5064L16,7l1.9116,3.6665L22,11.1729l-3,2.7529Z" })), children); }); { LocationStarFilled.propTypes = iconPropTypes; } var Locked = /*#__PURE__*/React__default["default"].forwardRef(function Locked(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$7 || (_path113$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z" })), children); }); { Locked.propTypes = iconPropTypes; } var LogicalPartition = /*#__PURE__*/React__default["default"].forwardRef(function LogicalPartition(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle8$6 || (_circle8$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "7", r: "1" })), _path114$7 || (_path114$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22V18a2,2,0,0,0-2-2H17V12h9a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2h9v4H7a2,2,0,0,0-2,2v4H2v8h8V22H7V18h8v4H12v8h8V22H17V18h8v4H22v8h8V22ZM8,28H4V24H8Zm10-4v4H14V24ZM6,10V4H26v6ZM28,28H24V24h4Z" })), children); }); { LogicalPartition.propTypes = iconPropTypes; } var Login = /*#__PURE__*/React__default["default"].forwardRef(function Login(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$7 || (_path115$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z" })), _path116$7 || (_path116$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.59 20.59L18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z" })), children); }); { Login.propTypes = iconPropTypes; } var LogoAngular = /*#__PURE__*/React__default["default"].forwardRef(function LogoAngular(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$7 || (_path117$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5,16h4.9L16,10.8L13.5,16z" })), _path118$7 || (_path118$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z" })), children); }); { LogoAngular.propTypes = iconPropTypes; } var LogoDigg = /*#__PURE__*/React__default["default"].forwardRef(function LogoDigg(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$7 || (_path119$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.48 7.6v3.92H2V21H9.28V7.6zm0 11.2H4.8v-5H6.48zM10.4 11.52H13.2V21.04H10.4zM10.4 7.6H13.2V10.399999999999999H10.4zM14.32 11.52V21H18.8v1.12H14.32V24.4H21.6V11.52zM18.8 18.8H17.12v-5H18.8zM22.72 11.52V21H27.2v1.12H22.72V24.4H30V11.52zM27.2 18.8H25.52v-5H27.2z" })), children); }); { LogoDigg.propTypes = iconPropTypes; } var LogoDiscord = /*#__PURE__*/React__default["default"].forwardRef(function LogoDiscord(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$7 || (_path120$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z" })), children); }); { LogoDiscord.propTypes = iconPropTypes; } var LogoFacebook = /*#__PURE__*/React__default["default"].forwardRef(function LogoFacebook(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$7 || (_path121$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z" })), children); }); { LogoFacebook.propTypes = iconPropTypes; } var LogoFigma = /*#__PURE__*/React__default["default"].forwardRef(function LogoFigma(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$7 || (_path122$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z" })), children); }); { LogoFigma.propTypes = iconPropTypes; } var LogoFlickr = /*#__PURE__*/React__default["default"].forwardRef(function LogoFlickr(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle9$6 || (_circle9$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "16", r: "6" })), _circle10$6 || (_circle10$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "16", r: "6" })), children); }); { LogoFlickr.propTypes = iconPropTypes; } var LogoGithub = /*#__PURE__*/React__default["default"].forwardRef(function LogoGithub(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$7 || (_path123$7 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M16,2a14,14,0,0,0-4.43,27.28c.7.13,1-.3,1-.67s0-1.21,0-2.38c-3.89.84-4.71-1.88-4.71-1.88A3.71,3.71,0,0,0,6.24,22.3c-1.27-.86.1-.85.1-.85A2.94,2.94,0,0,1,8.48,22.9a3,3,0,0,0,4.08,1.16,2.93,2.93,0,0,1,.88-1.87c-3.1-.36-6.37-1.56-6.37-6.92a5.4,5.4,0,0,1,1.44-3.76,5,5,0,0,1,.14-3.7s1.17-.38,3.85,1.43a13.3,13.3,0,0,1,7,0c2.67-1.81,3.84-1.43,3.84-1.43a5,5,0,0,1,.14,3.7,5.4,5.4,0,0,1,1.44,3.76c0,5.38-3.27,6.56-6.39,6.91a3.33,3.33,0,0,1,.95,2.59c0,1.87,0,3.38,0,3.84s.25.81,1,.67A14,14,0,0,0,16,2Z" })), children); }); { LogoGithub.propTypes = iconPropTypes; } var LogoGlassdoor = /*#__PURE__*/React__default["default"].forwardRef(function LogoGlassdoor(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path124$7 || (_path124$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z" })), _path125$7 || (_path125$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z" })), children); }); { LogoGlassdoor.propTypes = iconPropTypes; } var LogoInstagram = /*#__PURE__*/React__default["default"].forwardRef(function LogoInstagram(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle11$6 || (_circle11$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22.406", cy: "9.594", r: "1.44" })), _path126$7 || (_path126$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,9.8378A6.1622,6.1622,0,1,0,22.1622,16,6.1622,6.1622,0,0,0,16,9.8378ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" })), _path127$7 || (_path127$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,6.1622c3.2041,0,3.5837.0122,4.849.07a6.6418,6.6418,0,0,1,2.2283.4132,3.9748,3.9748,0,0,1,2.2774,2.2774,6.6418,6.6418,0,0,1,.4132,2.2283c.0577,1.2653.07,1.6449.07,4.849s-.0122,3.5837-.07,4.849a6.6418,6.6418,0,0,1-.4132,2.2283,3.9748,3.9748,0,0,1-2.2774,2.2774,6.6418,6.6418,0,0,1-2.2283.4132c-1.2652.0577-1.6446.07-4.849.07s-3.5838-.0122-4.849-.07a6.6418,6.6418,0,0,1-2.2283-.4132,3.9748,3.9748,0,0,1-2.2774-2.2774,6.6418,6.6418,0,0,1-.4132-2.2283c-.0577-1.2653-.07-1.6449-.07-4.849s.0122-3.5837.07-4.849a6.6418,6.6418,0,0,1,.4132-2.2283A3.9748,3.9748,0,0,1,8.9227,6.6453a6.6418,6.6418,0,0,1,2.2283-.4132c1.2653-.0577,1.6449-.07,4.849-.07M16,4c-3.259,0-3.6677.0138-4.9476.0722A8.8068,8.8068,0,0,0,8.14,4.63,6.1363,6.1363,0,0,0,4.63,8.14a8.8068,8.8068,0,0,0-.5578,2.9129C4.0138,12.3323,4,12.741,4,16s.0138,3.6677.0722,4.9476A8.8074,8.8074,0,0,0,4.63,23.8605a6.1363,6.1363,0,0,0,3.51,3.51,8.8068,8.8068,0,0,0,2.9129.5578C12.3323,27.9862,12.741,28,16,28s3.6677-.0138,4.9476-.0722a8.8074,8.8074,0,0,0,2.9129-.5578,6.1363,6.1363,0,0,0,3.51-3.51,8.8074,8.8074,0,0,0,.5578-2.9129C27.9862,19.6677,28,19.259,28,16s-.0138-3.6677-.0722-4.9476A8.8068,8.8068,0,0,0,27.37,8.14a6.1363,6.1363,0,0,0-3.51-3.5095,8.8074,8.8074,0,0,0-2.9129-.5578C19.6677,4.0138,19.259,4,16,4Z" })), children); }); { LogoInstagram.propTypes = iconPropTypes; } var LogoInvision = /*#__PURE__*/React__default["default"].forwardRef(function LogoInvision(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128$7 || (_path128$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z" })), children); }); { LogoInvision.propTypes = iconPropTypes; } var LogoJupyter = /*#__PURE__*/React__default["default"].forwardRef(function LogoJupyter(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$7 || (_path129$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.0766 3.5878a1.69 1.69 0 11-1.76-1.5853 1.67 1.67 0 011.76 1.5853zM16.2191 23.1113c-4.4866 0-8.43-1.61-10.4688-3.9882a11.1618 11.1618 0 0020.9377 0C24.6541 21.5011 20.7257 23.1113 16.2191 23.1113zM16.2191 7.6483c4.4867 0 8.43 1.61 10.4689 3.9881a11.1618 11.1618 0 00-20.9377 0C7.7892 9.2535 11.7126 7.6483 16.2191 7.6483zM10.0427 27.7388a2.1085 2.1085 0 11-.2031-.7976 2.1278 2.1278 0 01.2031.7976zM6.26 7.1064A1.2263 1.2263 0 117.4517 5.83 1.2415 1.2415 0 016.26 7.1064z" })), children); }); { LogoJupyter.propTypes = iconPropTypes; } var LogoKeybase = /*#__PURE__*/React__default["default"].forwardRef(function LogoKeybase(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$7 || (_path130$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.1233 26.9328a1.1122 1.1122 0 11-1.1121-1.1122 1.112 1.112 0 011.1121 1.1122M21.0257 26.9328a1.1122 1.1122 0 11-1.1122-1.1122 1.1121 1.1121 0 011.1122 1.1122" })), _path131$7 || (_path131$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.999 5.797H10.973V6.771H9.999z", transform: "rotate(-86.462 10.486 6.284)" })), _path132$7 || (_path132$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.4275,16.3825l-.0013.001a13.0868,13.0868,0,0,0-5.1431-4.1825c-.3754-.1667-.7543-.3142-1.1354-.4454.0128-.0314.0277-.0615.04-.0933a4.83,4.83,0,0,0-2.9861-6.319,5.9368,5.9368,0,0,0-1.9962-.3558c-.0366-.1253-.1165-.6743.58-2.1571L14.3742,2q-.17.236-.3368.4661c-.384.5309-.7549,1.0444-1.1029,1.55a2.1657,2.1657,0,0,0-1.4486-.6771L9.8543,3.2377H9.852l-.0025,0c-.0429-.0025-.0864-.0039-.1293-.0039A2.1877,2.1877,0,0,0,7.54,5.2825L7.4388,6.9169l0,.003,0,.0028A2.1882,2.1882,0,0,0,9.4854,9.23l1.1673.0723a5.1711,5.1711,0,0,0,.47,2.688,13.1954,13.1954,0,0,0-4.2637,2.9C3,18.7883,3,23.06,3,26.4916v2.0706l1.524-1.6163A12.3293,12.3293,0,0,0,5.8548,30H7.8367A10.7091,10.7091,0,0,1,5.878,25.51l2.2353-2.3708L6.963,26.745l2.03-1.4774c3.5858-2.61,7.8678-3.2093,12.7263-1.7826a4.6276,4.6276,0,0,0,5.2189-1.468c.0441-.0628.0828-.128.1228-.1926a9.6141,9.6141,0,0,1,.1638,1.7454,12.4214,12.4214,0,0,1-1.61,6.43h1.877A14.4022,14.4022,0,0,0,28.87,23.57,12.2666,12.2666,0,0,0,26.4275,16.3825ZM13.8455,5.9257a1.5872,1.5872,0,0,0,1.3983.7068,4.2111,4.2111,0,0,1,1.44.2719,3.17,3.17,0,0,1,1.0279,5.4638l-.4752-.5849-.0032-.004a1.7048,1.7048,0,0,0-3.0235.9865,3.2143,3.2143,0,0,1-1.899-3.5412,8.4815,8.4815,0,0,1,1.4374-3.466A1.642,1.642,0,0,0,13.8455,5.9257Zm3.49,9.2589-.6072.4962a.2675.2675,0,0,1-.376-.038l-.1264-.1549a.2791.2791,0,0,1,.0394-.3927l.6-.49-1.235-1.5158a.362.362,0,1,1,.5611-.4575l3.4546,4.2517a.3619.3619,0,0,1-.1988.5815.3566.3566,0,0,1-.0816.0094.3609.3609,0,0,1-.2806-.1332l-.3441-.4239-1.2215.9971a.2815.2815,0,0,1-.3965-.04l-.5532-.6775a.2786.2786,0,0,1,.04-.3919l1.2275-1.002ZM9.08,7.0184l.1014-1.6342A.5394.5394,0,0,1,9.72,4.8781l.0326.001,1.6335.1013a.5387.5387,0,0,1,.5046.5716l-.0073.1182a10.6739,10.6739,0,0,0-.9028,2.0046L9.5859,7.5886A.5407.5407,0,0,1,9.08,7.0184ZM25.5944,21.07a2.9883,2.9883,0,0,1-3.4112.8373c-4.5313-1.3305-8.6289-1.0534-12.2124.82l1.9069-5.978-7.203,7.6393a11.67,11.67,0,0,1,3.3532-8.3419,11.4953,11.4953,0,0,1,4.1073-2.6908,5.42,5.42,0,0,0,2.2411,1.2214,4.714,4.714,0,0,0,.5627.12,1.6258,1.6258,0,0,0,.2449,1.6416l.0847.1038a1.6247,1.6247,0,0,0,.2594,1.605l.5532.6777a1.6276,1.6276,0,0,0,2.29.2314l.3314-.2705a1.7079,1.7079,0,0,0,1.9867-2.6535l-1.9427-2.3911a4.88,4.88,0,0,0,.4863-.456,12.449,12.449,0,0,1,1.3829.5181,11.419,11.419,0,0,1,4.5085,3.6838C26.0987,18.7278,26.2745,20.1043,25.5944,21.07Z" })), children); }); { LogoKeybase.propTypes = iconPropTypes; } var LogoKubernetes = /*#__PURE__*/React__default["default"].forwardRef(function LogoKubernetes(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$7 || (_path133$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.134 17.189L15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189zM14.2166 13.88l.0024.0019a.5239.5239 0 00.8321-.4013l0-.003.0127-.0063L15.242 10.33c-.2173.0268-.43.0635-.6333.1094a6.2 6.2 0 00-2.9727 1.6176l2.5752 1.8257zM12.8347 16.2622l.003-.001a.5241.5241 0 00.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775 6.1775 0 00-.8746 3.9l3.0142-.87zM13.8645 18.501a.5229.5229 0 00-.6059-.3989l-.0034 0-.0049-.0063-3.0908.5249a6.2052 6.2052 0 002.4863 3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184 0 0013.8645 18.501zM16.4622 19.6431l-.0015-.0025a.53.53 0 00-.48-.2759.5269.5269 0 00-.4434.2769l-.0015.0029H15.533l-1.52 2.7481a6.2277 6.2277 0 003.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534zM18.7371 18.09l-.0034 0a.51.51 0 00-.1206-.0088.5263.5263 0 00-.4546.7319l.001.0024-.004.0054 1.21 2.9234A6.185 6.185 0 0021.86 18.61l-3.1176-.5269zM21.2893 13.2437L18.951 15.3364l.0014.0064-.0024.0019a.5249.5249 0 00.2055.9014l.0035.0005.0024.0132 3.0293.872a6.2915 6.2915 0 00-.9014-3.8881zM16.9383 13.4673l0 .0029a.5161.5161 0 00.1143.3037.5236.5236 0 00.7192.0967l.0025-.0019.0088.0039 2.5586-1.814a6.2307 6.2307 0 00-3.584-1.7285l.1777 3.1357z" })), _path134$7 || (_path134$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z" })), children); }); { LogoKubernetes.propTypes = iconPropTypes; } var LogoLinkedin = /*#__PURE__*/React__default["default"].forwardRef(function LogoLinkedin(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$7 || (_path135$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z" })), children); }); { LogoLinkedin.propTypes = iconPropTypes; } var LogoLivestream = /*#__PURE__*/React__default["default"].forwardRef(function LogoLivestream(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$7 || (_path136$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.49 23.71h-.76c-2.26 0-4.52 0-6.78 0a3.12 3.12 0 01-2.41-1A14.91 14.91 0 0110 18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84 7.84 0 002 5.6c1.24 0 2.41 0 3.57 0a45.63 45.63 0 017 .61 8.09 8.09 0 016.34 5.09 48.51 48.51 0 012.17 7.36A26 26 0 0022.49 23.71zM28.1 26.38a2.93 2.93 0 01-2.74-2.64 42.08 42.08 0 01-.14-4.9 48 48 0 00-.61-7.58 3.75 3.75 0 00-.83-2h2.65c.54 0 .73.37.89.78A12.1 12.1 0 0128 13.28c.29 2.72.31 5.45.33 8.18a10.94 10.94 0 000 1.15c.09.78.4 1.1 1.17 1.08.5 0 .5-.06.5-.06v2.69A8.62 8.62 0 0128.1 26.38z" })), children); }); { LogoLivestream.propTypes = iconPropTypes; } var LogoMedium = /*#__PURE__*/React__default["default"].forwardRef(function LogoMedium(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$7 || (_path137$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 16c0 3.7-.6 6.7-1.4 6.7-.8 0-1.4-3-1.4-6.7s.6-6.7 1.4-6.7C29.4 9.3 30 12.3 30 16M26.5 16c0 4.1-1.8 7.5-3.9 7.5s-3.9-3.4-3.9-7.5 1.8-7.5 3.9-7.5S26.5 11.9 26.5 16M17.8 16c0 4.4-3.5 8-7.9 8S2 20.4 2 16s3.5-8 7.9-8S17.8 11.6 17.8 16" })), children); }); { LogoMedium.propTypes = iconPropTypes; } var LogoNpm = /*#__PURE__*/React__default["default"].forwardRef(function LogoNpm(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$7 || (_path138$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z" })), children); }); { LogoNpm.propTypes = iconPropTypes; } var LogoOpenshift = /*#__PURE__*/React__default["default"].forwardRef(function LogoOpenshift(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$7 || (_path139$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z" })), children); }); { LogoOpenshift.propTypes = iconPropTypes; } var LogoPinterest = /*#__PURE__*/React__default["default"].forwardRef(function LogoPinterest(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$7 || (_path140$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2" })), children); }); { LogoPinterest.propTypes = iconPropTypes; } var LogoPython = /*#__PURE__*/React__default["default"].forwardRef(function LogoPython(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$7 || (_path141$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z" })), _path142$7 || (_path142$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z" })), _path143$7 || (_path143$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.8351,2a19.0717,19.0717,0,0,0-3.192.2725c-2.8268.4994-3.34,1.5447-3.34,3.4723V8.2909h6.68V9.14H6.7962a4.1708,4.1708,0,0,0-4.173,3.3867,12.4855,12.4855,0,0,0,0,6.7889c.4748,1.9776,1.6088,3.3867,3.55,3.3867H8.47V19.65a4.2449,4.2449,0,0,1,4.173-4.15h6.6721a3.3654,3.3654,0,0,0,3.34-3.3944V5.745a3.729,3.729,0,0,0-3.34-3.4723A20.8377,20.8377,0,0,0,15.8351,2ZM12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z" })), _path144$7 || (_path144$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z" })), children); }); { LogoPython.propTypes = iconPropTypes; } var LogoQuora = /*#__PURE__*/React__default["default"].forwardRef(function LogoQuora(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$7 || (_path145$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z" })), children); }); { LogoQuora.propTypes = iconPropTypes; } var LogoRScript = /*#__PURE__*/React__default["default"].forwardRef(function LogoRScript(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$7 || (_path146$7 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z" })), children); }); { LogoRScript.propTypes = iconPropTypes; } var LogoReact = /*#__PURE__*/React__default["default"].forwardRef(function LogoReact(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$7 || (_path147$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z" })), _path148$7 || (_path148$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z" })), children); }); { LogoReact.propTypes = iconPropTypes; } var LogoSketch = /*#__PURE__*/React__default["default"].forwardRef(function LogoSketch(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$7 || (_path149$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.1,3.2l7.7,0.9c0.2,0,0.3,0.1,0.4,0.2l5.7,7.7c0.2,0.2,0.2,0.5,0,0.7l-13.6,16c-0.1,0.1-0.3,0.1-0.4,0c0,0,0,0,0,0 l-13.6-16C2,12.5,2,12.2,2.1,12l5.7-7.7c0.1-0.1,0.2-0.2,0.4-0.2l7.7-0.9C16,3.2,16,3.2,16.1,3.2z M17.7,4.8c0,0-0.1,0-0.2,0 c0,0-0.1,0.1,0,0.2l0,0l4.3,5.4c0,0.1,0.1,0.1,0.1,0.2c0,0.2-0.1,0.3-0.3,0.3l0,0H10.4c-0.1,0-0.1,0-0.2-0.1 c-0.1-0.1-0.1-0.3-0.1-0.4l0,0L14.5,5c0,0,0-0.1,0-0.2c0,0-0.1,0-0.2,0l0,0l-5.9,5.9c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.2-0.2v0 l0.2-4.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1l0,0l-1.1,4.9c0,0.2-0.2,0.3-0.3,0.3l0,0l-2.8,0.6c-0.1,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.1,0.1,0.1l0,0h2.7c0.2,0,0.3,0.1,0.4,0.2l0,0l6.6,11.8c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1-0.1,0.1-0.2l0,0L8.6,12.9 c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.4l0,0h14.2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.2,0.3,0.2,0.4l0,0l-5.3,11.3c0,0.1,0,0.2,0.1,0.2 c0.1,0,0.2,0,0.2-0.1l0,0L25,12.6c0.1-0.1,0.2-0.2,0.4-0.2l0,0h2.7c0.1,0,0.1,0,0.1-0.1c0-0.1,0-0.1-0.1-0.1l0,0l-2.8-0.6 c-0.2,0-0.3-0.2-0.4-0.3l0,0L24,6.3c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1v0l0.2,4.3c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.2,0.1-0.3,0l0,0L17.7,4.8z" })), children); }); { LogoSketch.propTypes = iconPropTypes; } var LogoSkype = /*#__PURE__*/React__default["default"].forwardRef(function LogoSkype(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$7 || (_path150$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.91,17.88A11.63,11.63,0,0,0,28.06,16,12.06,12.06,0,0,0,16,3.94a11.63,11.63,0,0,0-1.88.15,7.29,7.29,0,0,0-10,10A11.63,11.63,0,0,0,3.94,16,12.06,12.06,0,0,0,16,28.06a11.63,11.63,0,0,0,1.88-.15,7.29,7.29,0,0,0,10-10Zm-6.18,3.6a5,5,0,0,1-2.24,1.73,9,9,0,0,1-3.48.62A8.41,8.41,0,0,1,12,23a5.2,5.2,0,0,1-1.82-1.63,3.59,3.59,0,0,1-.7-2,1.36,1.36,0,0,1,.43-1A1.56,1.56,0,0,1,11,18a1.38,1.38,0,0,1,.91.32,2.5,2.5,0,0,1,.63.94,5.83,5.83,0,0,0,.66,1.18,2.61,2.61,0,0,0,1,.78,3.87,3.87,0,0,0,1.69.31,4,4,0,0,0,2.34-.62,1.8,1.8,0,0,0,.89-1.53,1.54,1.54,0,0,0-.47-1.17,3.09,3.09,0,0,0-1.25-.7c-.52-.17-1.21-.34-2.08-.53A16,16,0,0,1,12.41,16a4.78,4.78,0,0,1-1.89-1.4,3.5,3.5,0,0,1-.7-2.21,3.65,3.65,0,0,1,.74-2.24,4.7,4.7,0,0,1,2.14-1.5A9.51,9.51,0,0,1,16,8.17a8.63,8.63,0,0,1,2.59.35,5.81,5.81,0,0,1,1.83.92,3.91,3.91,0,0,1,1.06,1.21,2.62,2.62,0,0,1,.34,1.25,1.4,1.4,0,0,1-.43,1,1.43,1.43,0,0,1-1.07.46,1.25,1.25,0,0,1-.89-.28,3.36,3.36,0,0,1-.65-.87,3.79,3.79,0,0,0-1.05-1.31,3.13,3.13,0,0,0-1.95-.46,3.64,3.64,0,0,0-2,.5,1.44,1.44,0,0,0-.76,1.2,1.15,1.15,0,0,0,.25.75,2.21,2.21,0,0,0,.72.55,4.74,4.74,0,0,0,.92.36c.32.09.84.22,1.57.39.92.2,1.74.42,2.49.66a7.61,7.61,0,0,1,1.9.88,3.59,3.59,0,0,1,1.23,1.31A4,4,0,0,1,22.5,19,4.24,4.24,0,0,1,21.73,21.48Z" })), children); }); { LogoSkype.propTypes = iconPropTypes; } var LogoSlack = /*#__PURE__*/React__default["default"].forwardRef(function LogoSlack(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$7 || (_path151$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.0423 19.1661A2.5212 2.5212 0 116.5212 16.645H9.0423zM10.3127 19.1661a2.5212 2.5212 0 015.0423 0v6.3127a2.5212 2.5212 0 11-5.0423 0zM12.8339 9.0423A2.5212 2.5212 0 1115.355 6.5212V9.0423zM12.8339 10.3127a2.5212 2.5212 0 010 5.0423H6.5212a2.5212 2.5212 0 110-5.0423zM22.9577 12.8339a2.5212 2.5212 0 112.5211 2.5211H22.9577zM21.6873 12.8339a2.5212 2.5212 0 01-5.0423 0V6.5212a2.5212 2.5212 0 115.0423 0zM19.1661 22.9577a2.5212 2.5212 0 11-2.5211 2.5211V22.9577zM19.1661 21.6873a2.5212 2.5212 0 010-5.0423h6.3127a2.5212 2.5212 0 110 5.0423z" })), children); }); { LogoSlack.propTypes = iconPropTypes; } var LogoSnapchat = /*#__PURE__*/React__default["default"].forwardRef(function LogoSnapchat(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$7 || (_path152$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.9774,9.6279a7.33,7.33,0,0,0-.1186-1.2888,5.2458,5.2458,0,0,0-.4872-1.4948,5.1869,5.1869,0,0,0-.9988-1.3324,4.9557,4.9557,0,0,0-2.1805-1.2433,8.8444,8.8444,0,0,0-2.3059-.2458l-.0044-.0119H10.1143l-.0007.0119a12.578,12.578,0,0,0-1.3221.0591A6.2955,6.2955,0,0,0,7.3792,4.4,5.1155,5.1155,0,0,0,4.2538,7.8152a8.8,8.8,0,0,0-.2459,2.2855L4,21.9065a14.9206,14.9206,0,0,0,.1088,1.5992A5.53,5.53,0,0,0,4.6,25.1205a5.17,5.17,0,0,0,1.443,1.744,4.6907,4.6907,0,0,0,1.4442.7822,7.83,7.83,0,0,0,2.3741.3484c.5034.0032,1.0069.0158,1.5106.0137,3.659-.0154,7.3178.0264,10.9767-.0226a8.6316,8.6316,0,0,0,1.44-.1528A4.8765,4.8765,0,0,0,26.2,26.6613a4.9915,4.9915,0,0,0,1.5931-2.6546,9.6646,9.6646,0,0,0,.2074-2.1v-.1407C28,21.7112,27.9793,9.7855,27.9774,9.6279ZM24.7635,20.7326c-.1536.36-.93.6577-2.2433.8606-.1232.019-.1751.2183-.2463.5445-.0293.1348-.0592.2669-.1.4057a.2451.2451,0,0,1-.26.1943h-.0205a2.1011,2.1011,0,0,1-.3738-.0472,4.921,4.921,0,0,0-.9852-.1044,4.37,4.37,0,0,0-.7106.06,3.4048,3.4048,0,0,0-1.3483.6888,3.912,3.912,0,0,1-2.3668.9328c-.05,0-.0973-.0018-.1335-.0035-.0287.0024-.0584.0035-.0881.0035a3.9062,3.9062,0,0,1-2.3651-.9322,3.4118,3.4118,0,0,0-1.35-.69,4.3612,4.3612,0,0,0-.71-.06,4.858,4.858,0,0,0-.9852.1115,2.1872,2.1872,0,0,1-.3737.0536.2574.2574,0,0,1-.2807-.2012c-.0414-.1407-.0711-.277-.1-.4082-.0716-.328-.1237-.5282-.2465-.5472-1.3133-.2026-2.0893-.5011-2.2439-.8626a.3349.3349,0,0,1-.0272-.114.2109.2109,0,0,1,.1764-.22,4.5854,4.5854,0,0,0,2.7564-1.6391,6.1681,6.1681,0,0,0,.94-1.4616l.0048-.01a.943.943,0,0,0,.09-.79c-.1693-.3991-.73-.5769-1.1007-.6946-.0921-.0291-.1794-.0567-.2488-.0844-.3288-.13-.8693-.4041-.7973-.7828a.7333.7333,0,0,1,.7127-.4683.5052.5052,0,0,1,.2158.043,2.1572,2.1572,0,0,0,.8916.2355.7465.7465,0,0,0,.5134-.1569q-.0145-.2629-.0318-.5256a8.8742,8.8742,0,0,1,.2122-3.5447A4.6074,4.6074,0,0,1,15.8173,7.76q.177-.0015.3539-.0033a4.6152,4.6152,0,0,1,4.2853,2.7606,8.884,8.884,0,0,1,.2118,3.5478l-.0036.0574c-.01.1629-.02.317-.0278.4665a.7215.7215,0,0,0,.4656.1558,2.2321,2.2321,0,0,0,.84-.234.6628.6628,0,0,1,.2751-.0545.832.832,0,0,1,.3133.06l.005.0019a.5825.5825,0,0,1,.4409.4781c.0034.1835-.133.4578-.8039.7226-.0687.0272-.1564.0551-.2489.0844-.3712.1178-.9312.2956-1.1005.6944a.9422.9422,0,0,0,.09.7893l.0048.01a5.4311,5.4311,0,0,0,3.6967,3.1005.211.211,0,0,1,.1764.22A.3408.3408,0,0,1,24.7635,20.7326Z" })), _path153$7 || (_path153$7 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M24.7635,20.7326c-.1536.36-.93.6577-2.2433.8606-.1232.019-.1751.2183-.2463.5445-.0293.1348-.0592.2669-.1.4057a.2451.2451,0,0,1-.26.1943h-.0205a2.1011,2.1011,0,0,1-.3738-.0472,4.921,4.921,0,0,0-.9852-.1044,4.37,4.37,0,0,0-.7106.06,3.4048,3.4048,0,0,0-1.3483.6888,3.912,3.912,0,0,1-2.3668.9328c-.05,0-.0973-.0018-.1335-.0035-.0287.0024-.0584.0035-.0881.0035a3.9062,3.9062,0,0,1-2.3651-.9322,3.4118,3.4118,0,0,0-1.35-.69,4.3612,4.3612,0,0,0-.71-.06,4.858,4.858,0,0,0-.9852.1115,2.1872,2.1872,0,0,1-.3737.0536.2574.2574,0,0,1-.2807-.2012c-.0414-.1407-.0711-.277-.1-.4082-.0716-.328-.1237-.5282-.2465-.5472-1.3133-.2026-2.0893-.5011-2.2439-.8626a.3349.3349,0,0,1-.0272-.114.2109.2109,0,0,1,.1764-.22,4.5854,4.5854,0,0,0,2.7564-1.6391,6.1681,6.1681,0,0,0,.94-1.4616l.0048-.01a.943.943,0,0,0,.09-.79c-.1693-.3991-.73-.5769-1.1007-.6946-.0921-.0291-.1794-.0567-.2488-.0844-.3288-.13-.8693-.4041-.7973-.7828a.7333.7333,0,0,1,.7127-.4683.5052.5052,0,0,1,.2158.043,2.1572,2.1572,0,0,0,.8916.2355.7465.7465,0,0,0,.5134-.1569q-.0145-.2629-.0318-.5256a8.8742,8.8742,0,0,1,.2122-3.5447A4.6074,4.6074,0,0,1,15.8173,7.76q.177-.0015.3539-.0033a4.6152,4.6152,0,0,1,4.2853,2.7606,8.884,8.884,0,0,1,.2118,3.5478l-.0036.0574c-.01.1629-.02.317-.0278.4665a.7215.7215,0,0,0,.4656.1558,2.2321,2.2321,0,0,0,.84-.234.6628.6628,0,0,1,.2751-.0545.832.832,0,0,1,.3133.06l.005.0019a.5825.5825,0,0,1,.4409.4781c.0034.1835-.133.4578-.8039.7226-.0687.0272-.1564.0551-.2489.0844-.3712.1178-.9312.2956-1.1005.6944a.9422.9422,0,0,0,.09.7893l.0048.01a5.4311,5.4311,0,0,0,3.6967,3.1005.211.211,0,0,1,.1764.22A.3408.3408,0,0,1,24.7635,20.7326Z", "data-icon-path": "inner-path" })), children); }); { LogoSnapchat.propTypes = iconPropTypes; } var LogoSvelte = /*#__PURE__*/React__default["default"].forwardRef(function LogoSvelte(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$7 || (_path154$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.1,5.7C23.5,2,18.4,0.9,14.7,3.2L8.2,7.4c-1.8,1.1-3,2.9-3.4,5c-0.3,1.7,0,3.5,0.8,5.1c-0.6,0.8-0.9,1.8-1.1,2.8 c-0.4,2.1,0.1,4.3,1.4,6c2.6,3.7,7.7,4.8,11.4,2.5l6.5-4.2c1.8-1.1,3-2.9,3.4-5c0.3-1.7,0-3.5-0.8-5.1c0.6-0.8,0.9-1.8,1.1-2.8 C27.9,9.6,27.4,7.4,26.1,5.7z M24.3,11c0,0.2-0.1,0.4-0.2,0.6L24,12l-0.3-0.2c-0.8-0.6-1.6-1-2.6-1.3l-0.2-0.1l0-0.2 c0-0.3-0.1-0.7-0.3-1c-0.4-0.5-1-0.8-1.7-0.6c-0.1,0-0.3,0.1-0.4,0.2L12,12.9c-0.3,0.2-0.5,0.5-0.6,0.9c-0.1,0.4,0,0.8,0.2,1.1 c0.4,0.5,1,0.8,1.7,0.6c0.1,0,0.3-0.1,0.4-0.2l2.5-1.6c0.4-0.3,0.9-0.5,1.3-0.6c2.1-0.5,4.3,0.3,5.6,2.1c0.7,1,1,2.4,0.8,3.6 c-0.2,1.2-1,2.3-2,3l-6.5,4.2c-0.4,0.3-0.9,0.5-1.3,0.6c-2.1,0.5-4.3-0.3-5.6-2.1c-0.7-1-1-2.4-0.8-3.6c0-0.2,0.1-0.4,0.2-0.6L8,20 l0.3,0.2c0.8,0.6,1.6,1,2.6,1.3l0.2,0.1l0,0.2c0,0.3,0.1,0.7,0.3,1c0.4,0.5,1,0.8,1.7,0.6c0.1,0,0.3-0.1,0.4-0.2l6.5-4.2 c0.3-0.2,0.5-0.5,0.6-0.9c0.1-0.4,0-0.8-0.2-1.1c-0.4-0.5-1-0.8-1.7-0.6c-0.1,0-0.3,0.1-0.4,0.2l-2.5,1.6c-0.4,0.3-0.9,0.5-1.3,0.6 c-2.1,0.5-4.3-0.3-5.6-2.1c-0.8-1-1-2.4-0.8-3.6c0.2-1.2,1-2.3,2-3l6.5-4.2c0.4-0.3,0.9-0.5,1.3-0.6c2.1-0.5,4.3,0.3,5.6,2.1 C24.2,8.5,24.5,9.8,24.3,11z" })), children); }); { LogoSvelte.propTypes = iconPropTypes; } var LogoTumblr = /*#__PURE__*/React__default["default"].forwardRef(function LogoTumblr(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$7 || (_path155$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.6,28h-4c-3.59,0-6.3-1.86-6.3-6.3V14.58H9V10.72A7.17,7.17,0,0,0,14.3,4h3.76v6.12h4.36v4.46H18.06v6.2c0,1.86.94,2.49,2.42,2.49H22.6Z" })), children); }); { LogoTumblr.propTypes = iconPropTypes; } var LogoTwitter = /*#__PURE__*/React__default["default"].forwardRef(function LogoTwitter(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$7 || (_path156$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.92,24.94A12.76,12.76,0,0,0,24.76,12.1c0-.2,0-.39,0-.59A9.4,9.4,0,0,0,27,9.18a9.31,9.31,0,0,1-2.59.71,4.56,4.56,0,0,0,2-2.5,8.89,8.89,0,0,1-2.86,1.1,4.52,4.52,0,0,0-7.7,4.11,12.79,12.79,0,0,1-9.3-4.71,4.51,4.51,0,0,0,1.4,6,4.47,4.47,0,0,1-2-.56v.05A4.53,4.53,0,0,0,9.5,17.83a4.53,4.53,0,0,1-2,.08A4.51,4.51,0,0,0,11.68,21,9.05,9.05,0,0,1,6.07,23,9.77,9.77,0,0,1,5,22.91a12.77,12.77,0,0,0,6.92,2" })), children); }); { LogoTwitter.propTypes = iconPropTypes; } var LogoVmware = /*#__PURE__*/React__default["default"].forwardRef(function LogoVmware(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path157$7 || (_path157$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32,16.77V13.8372c0-2.4818-2.4817-3.8355-4.5123-3.8355a6.7446,6.7446,0,0,0-3.8354,1.5793,5.066,5.066,0,0,0-3.61-1.5793,5.9389,5.9389,0,0,0-3.8354,1.5793,3.8172,3.8172,0,0,0-3.3842-1.5793A3.4913,3.4913,0,0,0,9.482,11.8232L6.5058,18.575,3.2011,11.0011a1.67,1.67,0,0,0-2.1883-.8656h0A1.67,1.67,0,0,0,.1536,12.37L4.25,21.2824s.6769,1.5793,2.0305,1.5793a1.9088,1.9088,0,0,0,2.0306-1.1281c.3124-.4687,2.6809-5.45,4.1078-8.4692a.5679.5679,0,0,1,1.0812.2437v7.4868a1.8462,1.8462,0,0,0,1.6848,1.8629,1.8051,1.8051,0,0,0,1.9251-1.801V14.8524a1.9177,1.9177,0,0,1,3.8354,0v6.2044a1.8049,1.8049,0,0,0,3.61,0V14.8524a1.9177,1.9177,0,0,1,3.8354,0v6.2044a1.8049,1.8049,0,0,0,3.61,0Z" })), children); }); { LogoVmware.propTypes = iconPropTypes; } var LogoVue = /*#__PURE__*/React__default["default"].forwardRef(function LogoVue(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$7 || (_path158$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.9,3.9L16,19.4L7.1,3.9H2l14,24.3L30,3.9H24.9z" })), _path159$7 || (_path159$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,9.5l-3.2-5.6H8.1L16,17.5l7.9-13.6h-4.6L16,9.5z" })), children); }); { LogoVue.propTypes = iconPropTypes; } var LogoWechat = /*#__PURE__*/React__default["default"].forwardRef(function LogoWechat(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$7 || (_path160$7 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M27.0857,24.7792A6.6179,6.6179,0,0,0,30,19.4662c0-3.88-3.7765-7.0269-8.4338-7.0269s-8.4339,3.1465-8.4339,7.0269,3.7765,7.028,8.4339,7.028a9.9547,9.9547,0,0,0,2.7533-.385l.2473-.0374a.8923.8923,0,0,1,.448.13l1.8469,1.0664.1621.0525a.2813.2813,0,0,0,.2812-.2812l-.0455-.2053-.38-1.4175-.0292-.18A.56.56,0,0,1,27.0857,24.7792ZM12.1208,4.68C6.5313,4.68,2,8.4552,2,13.1137a7.9386,7.9386,0,0,0,3.4965,6.3746.6713.6713,0,0,1,.2835.55l-.035.2147-.4562,1.701L5.234,22.2a.3384.3384,0,0,0,.3372.3383l.196-.063,2.2155-1.28a1.0584,1.0584,0,0,1,.5366-.1552l.2975.0443a11.9674,11.9674,0,0,0,3.304.4632l.5554-.014a6.5153,6.5153,0,0,1-.3395-2.0662c0-4.2478,4.1323-7.6918,9.2295-7.6918l.55.014C21.3538,7.761,17.169,4.68,12.1208,4.68Zm6.6337,13.6629a1.1247,1.1247,0,1,1,1.1247-1.1247A1.1243,1.1243,0,0,1,18.7545,18.3427Zm5.6233,0a1.1247,1.1247,0,1,1,1.1235-1.1247A1.1245,1.1245,0,0,1,24.3778,18.3427ZM8.7468,11.7638a1.3493,1.3493,0,1,1,1.35-1.3486A1.3485,1.3485,0,0,1,8.7468,11.7638Zm6.7469,0a1.3493,1.3493,0,1,1,1.35-1.3486A1.3486,1.3486,0,0,1,15.4937,11.7638Z" })), children); }); { LogoWechat.propTypes = iconPropTypes; } var LogoXing = /*#__PURE__*/React__default["default"].forwardRef(function LogoXing(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$7 || (_path161$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.42,8.29a1.25,1.25,0,0,0-1.13-.76h-4a.65.65,0,0,0-.55.25.63.63,0,0,0,0,.62l2.73,4.73v0L4.17,20.72a.6.6,0,0,0,0,.62.58.58,0,0,0,.52.28h4a1.22,1.22,0,0,0,1.1-.78l4.36-7.71S11.42,8.29,11.42,8.29Z" })), _path162$7 || (_path162$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.83,2.88a.65.65,0,0,0,0-.62A.61.61,0,0,0,27.3,2H23.22a1.19,1.19,0,0,0-1.08.77s-8.7,15.43-9,15.93l5.74,10.53A1.26,1.26,0,0,0,20,30h4a.59.59,0,0,0,.54-.26.62.62,0,0,0,0-.62l-5.69-10.4a0,0,0,0,1,0,0Z" })), children); }); { LogoXing.propTypes = iconPropTypes; } var LogoYelp = /*#__PURE__*/React__default["default"].forwardRef(function LogoYelp(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$7 || (_path163$7 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M9.09 15.2458l4.6706 2.2777a1.0706 1.0706 0 01-.21 2.0011L8.5087 20.7818a1.0729 1.0729 0 01-1.3241-.921 9.2173 9.2173 0 01.4213-3.9965A1.0706 1.0706 0 019.09 15.2458zM10.96 24.8605l3.4763-3.8613a1.0707 1.0707 0 011.8657.7537l-.1814 5.1945a1.072 1.072 0 01-1.2491 1.0192A9.3014 9.3014 0 0111.1488 26.46 1.0713 1.0713 0 0110.96 24.8605zM19.2025 19.7222l4.9412 1.6058a1.0713 1.0713 0 01.6363 1.4794 9.3022 9.3022 0 01-2.4707 3.1663 1.072 1.072 0 01-1.5914-.2581l-2.7543-4.4078A1.0707 1.0707 0 0119.2025 19.7222zM24.2273 16.57l-4.9948 1.4321A1.0706 1.0706 0 0118.05 16.3742l2.906-4.3078A1.0706 1.0706 0 0122.55 11.86 9.2168 9.2168 0 0124.9135 15.11 1.0729 1.0729 0 0124.2273 16.57zM12.5561 4.45a14.9542 14.9542 0 00-2.5676.9459 1.07 1.07 0 00-.4636 1.5013l4.8819 8.4557a1.0707 1.0707 0 001.9979-.5353V5.0534A1.07 1.07 0 0015.2526 3.985 14.9577 14.9577 0 0012.5561 4.45z" })), children); }); { LogoYelp.propTypes = iconPropTypes; } var LogoYoutube = /*#__PURE__*/React__default["default"].forwardRef(function LogoYoutube(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$7 || (_path164$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.41,9.26a3.5,3.5,0,0,0-2.47-2.47C24.76,6.2,16,6.2,16,6.2s-8.76,0-10.94.59A3.5,3.5,0,0,0,2.59,9.26,36.13,36.13,0,0,0,2,16a36.13,36.13,0,0,0,.59,6.74,3.5,3.5,0,0,0,2.47,2.47C7.24,25.8,16,25.8,16,25.8s8.76,0,10.94-.59a3.5,3.5,0,0,0,2.47-2.47A36.13,36.13,0,0,0,30,16,36.13,36.13,0,0,0,29.41,9.26ZM13.2,20.2V11.8L20.47,16Z" })), children); }); { LogoYoutube.propTypes = iconPropTypes; } var Logout = /*#__PURE__*/React__default["default"].forwardRef(function Logout(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$7 || (_path165$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30H18a2.0023,2.0023,0,0,0,2-2V25H18v3H6V4H18V7h2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4V28A2.0023,2.0023,0,0,0,6,30Z" })), _path166$7 || (_path166$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.586 20.586L24.172 17 10 17 10 15 24.172 15 20.586 11.414 22 10 28 16 22 22 20.586 20.586z" })), children); }); { Logout.propTypes = iconPropTypes; } var Loop = /*#__PURE__*/React__default["default"].forwardRef(function Loop(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$7 || (_path167$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.59 19.41L26 22 21 22 21 24 26 24 23.59 26.59 25 28 30 23 25 18 23.59 19.41zM13 6A9 9 0 005.52 20l1.66-1.11A7 7 0 1113 22H2v2H13A9 9 0 0013 6z" })), children); }); { Loop.propTypes = iconPropTypes; } var LowSeverity = /*#__PURE__*/React__default["default"].forwardRef(function LowSeverity(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$7); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path168$7 || (_path168$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 4H12V12H4z" })), _path169$7 || (_path169$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,4v8H4V4h8m1-1H3V13H13V3Z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path170$7 || (_path170$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 4H12V12H4z" })), _path171$7 || (_path171$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,4v8H4V4h8m1-1H3V13H13V3Z" })), children); }); { LowSeverity.propTypes = iconPropTypes; } var MacCommand = /*#__PURE__*/React__default["default"].forwardRef(function MacCommand(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$7 || (_path172$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,13a4,4,0,0,0,4-4V8a4,4,0,0,0-4-4H23a4,4,0,0,0-4,4v3H13V8A4,4,0,0,0,9,4H8A4,4,0,0,0,4,8V9a4,4,0,0,0,4,4h3v6H8a4,4,0,0,0-4,4v1a4,4,0,0,0,4,4H9a4,4,0,0,0,4-4V21h6v3a4,4,0,0,0,4,4h1a4,4,0,0,0,4-4V23a4,4,0,0,0-4-4H21V13ZM21,8a2,2,0,0,1,2-2h1a2,2,0,0,1,2,2V9a2,2,0,0,1-2,2H21ZM8,11A2,2,0,0,1,6,9V8A2,2,0,0,1,8,6H9a2,2,0,0,1,2,2v3H8Zm3,13a2,2,0,0,1-2,2H8a2,2,0,0,1-2-2V23a2,2,0,0,1,2-2h3Zm8-5H13V13h6Zm2,2h3a2,2,0,0,1,2,2v1a2,2,0,0,1-2,2H23a2,2,0,0,1-2-2Z" })), children); }); { MacCommand.propTypes = iconPropTypes; } var MacOption = /*#__PURE__*/React__default["default"].forwardRef(function MacOption(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$7 || (_path173$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 5H28V7H18zM10.6 5L4 5 4 7 9.4 7 18.4 27 28 27 28 25 19.6 25z" })), children); }); { MacOption.propTypes = iconPropTypes; } var MacShift = /*#__PURE__*/React__default["default"].forwardRef(function MacShift(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$7 || (_path174$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,28H11a2.0023,2.0023,0,0,1-2-2V16H4a1,1,0,0,1-.707-1.707l12-12a.9994.9994,0,0,1,1.414,0l12,12A1,1,0,0,1,28,16H23V26A2.0027,2.0027,0,0,1,21,28ZM6.4141,14H11V26H21V14h4.5859L16,4.4141Z" })), children); }); { MacShift.propTypes = iconPropTypes; } var MachineLearning = /*#__PURE__*/React__default["default"].forwardRef(function MachineLearning(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$7 || (_path175$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 25a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0116 25zM20 14a2 2 0 102 2A1.9806 1.9806 0 0020 14zM12 14a2 2 0 102 2A1.9806 1.9806 0 0012 14z" })), _path176$7 || (_path176$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16V14H28V10a4.0045,4.0045,0,0,0-4-4H22V2H20V6H12V2H10V6H8a4.0045,4.0045,0,0,0-4,4v4H2v2H4v5H2v2H4v3a4.0045,4.0045,0,0,0,4,4H24a4.0045,4.0045,0,0,0,4-4V23h2V21H28V16ZM26,26a2.0023,2.0023,0,0,1-2,2H8a2.0023,2.0023,0,0,1-2-2V10A2.0023,2.0023,0,0,1,8,8H24a2.0023,2.0023,0,0,1,2,2Z" })), children); }); { MachineLearning.propTypes = iconPropTypes; } var MachineLearningModel = /*#__PURE__*/React__default["default"].forwardRef(function MachineLearningModel(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$7 || (_path177$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 24a2.9609 2.9609 0 00-1.2854.3008L21.4141 20H18v2h2.5859l3.7146 3.7148A2.9665 2.9665 0 0024 27a3 3 0 103-3zm0 4a1 1 0 111-1A1.0009 1.0009 0 0127 28zM27 13a2.9948 2.9948 0 00-2.8157 2H18v2h6.1843A2.9947 2.9947 0 1027 13zm0 4a1 1 0 111-1A1.0009 1.0009 0 0127 17zM27 2a3.0033 3.0033 0 00-3 3 2.9657 2.9657 0 00.3481 1.373L20.5957 10H18v2h3.4043l4.3989-4.2524A2.9987 2.9987 0 1027 2zm0 4a1 1 0 111-1A1.0009 1.0009 0 0127 6z" })), _path178$7 || (_path178$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,6h2V4H18a3.9756,3.9756,0,0,0-3,1.3823A3.9756,3.9756,0,0,0,12,4H11a9.01,9.01,0,0,0-9,9v6a9.01,9.01,0,0,0,9,9h1a3.9756,3.9756,0,0,0,3-1.3823A3.9756,3.9756,0,0,0,18,28h2V26H18a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,18,6ZM12,26H11a7.0047,7.0047,0,0,1-6.92-6H6V18H4V14H7a3.0033,3.0033,0,0,0,3-3V9H8v2a1.0009,1.0009,0,0,1-1,1H4.08A7.0047,7.0047,0,0,1,11,6h1a2.0023,2.0023,0,0,1,2,2v4H12v2h2v4H12a3.0033,3.0033,0,0,0-3,3v2h2V21a1.0009,1.0009,0,0,1,1-1h2v4A2.0023,2.0023,0,0,1,12,26Z" })), children); }); { MachineLearningModel.propTypes = iconPropTypes; } var MagicWand = /*#__PURE__*/React__default["default"].forwardRef(function MagicWand(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$7 || (_path179$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4141,24,12,6.5859a2.0476,2.0476,0,0,0-2.8281,0l-2.586,2.586a2.0021,2.0021,0,0,0,0,2.8281L23.999,29.4141a2.0024,2.0024,0,0,0,2.8281,0l2.587-2.5865a1.9993,1.9993,0,0,0,0-2.8281ZM8,10.5859,10.5859,8l5,5-2.5866,2.5869-5-5ZM25.4131,28l-11-10.999L17,14.4141l11,11Z" })), _path180$7 || (_path180$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.586 14.586H5.414V17.414H2.586z", transform: "rotate(-45 4 16)" })), _path181$7 || (_path181$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.586 2.586H17.414V5.414H14.586z", transform: "rotate(-45 16 4)" })), _path182$7 || (_path182$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.586 2.586H5.414V5.414H2.586z", transform: "rotate(-45 4 4)" })), children); }); { MagicWand.propTypes = iconPropTypes; } var MagicWandFilled = /*#__PURE__*/React__default["default"].forwardRef(function MagicWandFilled(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$7 || (_path183$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4141,24,12,6.5859a2.0476,2.0476,0,0,0-2.8281,0l-2.586,2.586a2.0021,2.0021,0,0,0,0,2.8281L23.999,29.4141a2.0024,2.0024,0,0,0,2.8281,0l2.587-2.5865a1.9993,1.9993,0,0,0,0-2.8281ZM8,10.5859,10.5859,8l5,5-2.5866,2.5869-5-5Z" })), _path184$7 || (_path184$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.586 14.586H5.414V17.414H2.586z", transform: "rotate(-45 4 16)" })), _path185$7 || (_path185$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.586 2.586H17.414V5.414H14.586z", transform: "rotate(-45 16 4)" })), _path186$7 || (_path186$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.586 2.586H5.414V5.414H2.586z", transform: "rotate(-45 4 4)" })), children); }); { MagicWandFilled.propTypes = iconPropTypes; } var WatsonHealthMagnify = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthMagnify(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$7 || (_path187$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,21H4V4H22v8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V21a2,2,0,0,0,2,2h8Z" })), _path188$7 || (_path188$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,28.58l-3.11-3.11a6,6,0,1,0-1.42,1.42L28.58,30ZM22,26a4,4,0,1,1,4-4A4,4,0,0,1,22,26Z" })), children); }); { WatsonHealthMagnify.propTypes = iconPropTypes; } var MailAll = /*#__PURE__*/React__default["default"].forwardRef(function MailAll(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$7 || (_path189$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.59 20.41L20.17 24 20.17 24 16.58 27.59 18 29 23 24 18 19 16.59 20.41zM23.59 20.41L27.17 24 27.17 24 23.58 27.59 25 29 30 24 25 19 23.59 20.41z" })), _path190$7 || (_path190$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,23H4V7.91l11.43,7.91a1,1,0,0,0,1.14,0L28,7.91V17h2V7a2,2,0,0,0-2-2H4A2,2,0,0,0,2,7V23a2,2,0,0,0,2,2H14ZM25.8,7,16,13.78,6.2,7Z" })), children); }); { MailAll.propTypes = iconPropTypes; } var MailReply = /*#__PURE__*/React__default["default"].forwardRef(function MailReply(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$7 || (_path191$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,18l-1.4141,1.4141L26.1672,22H18a4,4,0,0,0,0,8h2V28H18a2,2,0,0,1,0-4h8.1672l-2.5827,2.5874L25,28l5-5Z" })), _path192$7 || (_path192$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,22H4L3.9966,6.9064l11.4341,7.9159a1.0008,1.0008,0,0,0,1.1386,0L28,6.9086,28,16h2V6a2.0025,2.0025,0,0,0-2-2H4A2,2,0,0,0,2,5.9965V22a2.0026,2.0026,0,0,0,2,2h6ZM25.7986,6,16,12.7837,6.2014,6Z" })), children); }); { MailReply.propTypes = iconPropTypes; } var WatsonHealthMammogram = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthMammogram(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$7 || (_path193$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 32L32 32 32 25 30 25 30 30 25 30 25 32zM25 27H22V17h3a3.0033 3.0033 0 013 3v4A3.0033 3.0033 0 0125 27zm-1-2h1a1.0006 1.0006 0 001-1V20a1.0006 1.0006 0 00-1-1H24zM20 27H14V23a2.002 2.002 0 012-2h2V19H14V17h4a2.0023 2.0023 0 012 2v2a2.0023 2.0023 0 01-2 2H16v2h4zM25 15H22V5h3a3.0033 3.0033 0 013 3v4A3.0033 3.0033 0 0125 15zm-1-2h1a1.0009 1.0009 0 001-1V8a1.0009 1.0009 0 00-1-1H24zM18 5H14V7h4V9H15v2h3v2H14v2h4a2.0027 2.0027 0 002-2V7A2.0023 2.0023 0 0018 5zM10 27H8V23.9541C3.2847 23.5117 2 19.9443 2 18c0-3.0146 2.082-4.5015 3.9189-5.814C7.5723 11.0054 9 9.9854 9 8V5h2V8c0 3.0146-2.082 4.5015-3.9189 5.814C5.4277 14.9946 4 16.0146 4 18c.0054.4033.1914 4 5 4a1 1 0 011 1zM7 0L0 0 0 7 2 7 2 2 7 2 7 0z" })), children); }); { WatsonHealthMammogram.propTypes = iconPropTypes; } var ManageProtection = /*#__PURE__*/React__default["default"].forwardRef(function ManageProtection(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$7 || (_path194$7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,9.8242,26.7071A10.9815,10.9815,0,0,1,4,17V4A2.0022,2.0022,0,0,1,6,2H26a2.0022,2.0022,0,0,1,2,2V17a10.9815,10.9815,0,0,1-5.8242,9.7069ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z" })), _path195$6 || (_path195$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,25.277V6h8V16.8048a7,7,0,0,1-3.7,6.1731Z" })), children); }); { ManageProtection.propTypes = iconPropTypes; } var ManagedSolutions = /*#__PURE__*/React__default["default"].forwardRef(function ManagedSolutions(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path196$6 || (_path196$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 23L25 23 25 18 23 18 23 23 18 23 18 25 23 25 23 30 25 30 25 25 30 25 30 23z" })), _path197$6 || (_path197$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.1273,11.8394l1.1807.2136a5.7919,5.7919,0,0,1,2.6247,1.1445A5.4219,5.4219,0,0,1,29.9532,18h2.0293a7.5022,7.5022,0,0,0-6.15-7.8848,10.0067,10.0067,0,0,0-7.9387-7.9336,10.0025,10.0025,0,0,0-11.72,7.9336A7.5055,7.5055,0,0,0,.0576,18.4088,7.6841,7.6841,0,0,0,7.7725,25H14V23H7.6978a5.6323,5.6323,0,0,1-5.6024-4.4859,5.5064,5.5064,0,0,1,4.4338-6.4306l1.3488-.2441.2138-1.11a8.2061,8.2061,0,0,1,6.7427-6.6426,7.9714,7.9714,0,0,1,3.0138.13,8.1442,8.1442,0,0,1,6.0526,6.4464Z" })), children); }); { ManagedSolutions.propTypes = iconPropTypes; } var Map$1 = /*#__PURE__*/React__default["default"].forwardRef(function Map(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$6 || (_path198$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24l-6.09-8.6A8.14,8.14,0,0,1,16,2a8.08,8.08,0,0,1,8,8.13,8.2,8.2,0,0,1-1.8,5.13ZM16,4a6.07,6.07,0,0,0-6,6.13,6.19,6.19,0,0,0,1.49,4L16,20.52,20.63,14A6.24,6.24,0,0,0,22,10.13,6.07,6.07,0,0,0,16,4Z" })), _circle12$5 || (_circle12$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "9", r: "2" })), _path199$6 || (_path199$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H26v2h2V28H4V14H6V12H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V14A2,2,0,0,0,28,12Z" })), children); }); { Map$1.propTypes = iconPropTypes; } var MapCenter = /*#__PURE__*/React__default["default"].forwardRef(function MapCenter(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$6 || (_path200$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 26H25V30H23zM23 18H25V22H23zM26 23H30V25H26zM18 23H22V25H18zM25.3418 10.06l-22-8A1 1 0 002.06 3.3415l8 22A1.0011 1.0011 0 0010.9839 26H11a1 1 0 00.9287-.6289L15.77 15.7692l9.6015-3.8408a1 1 0 00-.0293-1.8687zM14.6284 14.0709v0l-.3979.1591-.1591.3979 0 0-3.0268 7.5678L4.6719 4.6715l17.5244 6.3726z" })), children); }); { MapCenter.propTypes = iconPropTypes; } var MapIdentify = /*#__PURE__*/React__default["default"].forwardRef(function MapIdentify(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$6 || (_path201$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 8H17V14H15zM15 18H17V24H15zM18 15H24V17H18zM8 15H14V17H8zM4 10H2V4A2.0021 2.0021 0 014 2h6V4H4zM10 30H4a2.0021 2.0021 0 01-2-2V22H4v6h6zM28 30H22V28h6V22h2v6A2.0021 2.0021 0 0128 30zM30 10H28V4H22V2h6a2.0021 2.0021 0 012 2z" })), children); }); { MapIdentify.propTypes = iconPropTypes; } var MapBoundary = /*#__PURE__*/React__default["default"].forwardRef(function MapBoundary(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$6 || (_path202$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 10H14V14H12zM18 18H22V20H18zM14 18L14 16 12 16 12 20 16 20 16 18 14 18zM16 4H28V16H16z" })), _path203$6 || (_path203$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.885 29.997L11.819 26.142 4 27.989 4 4 14 4 14 8 12 8 12 6 6 6 6 25.461 12.181 24.001 18.115 27.773 22.818 26 26 26 26 20 24 20 24 18 28 18 28 28 23.182 28 17.885 29.997z" })), children); }); { MapBoundary.propTypes = iconPropTypes; } var MapBoundaryVegetation = /*#__PURE__*/React__default["default"].forwardRef(function MapBoundaryVegetation(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$6 || (_path204$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 16H18V14h5V10a2 2 0 012-2h1.5a1.5 1.5 0 00.2837-2.9734l-.7109-.1355L25.9982 4.32a2.6322 2.6322 0 00-1.68-2.1823 2.5051 2.5051 0 00-3.0836 1.3042l-.3032.6472-.71-.0771a2.0185 2.0185 0 00-2.17 2.4343A2.0976 2.0976 0 0020.1261 8H21v2h-.7817A4.1491 4.1491 0 0116.012 6.3136a4.0047 4.0047 0 013.7414-4.306A4.5006 4.5006 0 0127.8267 3.26a3.5051 3.5051 0 012.1422 3.7094A3.6283 3.6283 0 0126.3172 10H25v4h3zM18 18H22V20H18zM14 18L14 16 12 16 12 20 16 20 16 18 14 18zM12 10H14V14H12z" })), _path205$6 || (_path205$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.885 30L11.819 26.142 4 27.989 4 4 14 4 14 8 12 8 12 6 6 6 6 25.461 12.181 24.001 18.115 27.776 22.818 26 26 26 26 20 24 20 24 18 28 18 28 28 23.182 28 17.885 30z" })), children); }); { MapBoundaryVegetation.propTypes = iconPropTypes; } var MarineWarning = /*#__PURE__*/React__default["default"].forwardRef(function MarineWarning(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path206$6 || (_path206$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,20H7a1,1,0,0,0-.97,1.2422L6.9692,25H9.0308l-.75-3H23.7192l-.75,3h2.0616l.9394-3.7578A1,1,0,0,0,25,20H14V3a1,1,0,0,0-1.7993-.6011L2.2075,15.3906A1,1,0,0,0,3,17h9ZM5.0308,15,12,5.94V15Z" })), _path207$6 || (_path207$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.9058,25.751A2.998,2.998,0,0,1,24,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,20,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,16,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,12,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,8,28a2.998,2.998,0,0,1-2.9058-2.249l-1.9365.498A4.9965,4.9965,0,0,0,8,30a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,24,30a4.9965,4.9965,0,0,0,4.8423-3.751Z" })), _path208$6 || (_path208$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z" })), _path209$6 || (_path209$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" })), children); }); { MarineWarning.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$6, _path2$6, _path3$6, _path4$6, _path5$6, _path6$6, _path7$6, _path8$6, _path9$6, _path10$6, _path11$6, _path12$6, _path13$6, _path14$6, _circle$6, _path15$6, _path16$6, _circle2$6, _path17$6, _path18$6, _path19$6, _path20$6, _path21$6, _path22$6, _path23$6, _path24$6, _path25$6, _path26$6, _path27$6, _path28$6, _path29$6, _path30$6, _path31$6, _path32$6, _switch$2, _switch2, _path33$6, _path34$6, _path35$6, _path36$6, _path37$6, _path38$6, _path39$6, _path40$6, _path41$6, _path42$6, _path43$6, _path44$6, _path45$6, _path46$6, _path47$6, _path48$6, _path49$6, _path50$6, _circle3$6, _circle4$5, _path51$6, _path52$6, _path53$6, _path54$6, _path55$6, _path56$6, _circle5$5, _path57$6, _path58$6, _path59$6, _path60$6, _path61$6, _path62$6, _path63$6, _path64$6, _path65$6, _path66$6, _path67$6, _path68$6, _path69$6, _path70$6, _path71$6, _path72$6, _path73$6, _path74$6, _path75$6, _path76$6, _path77$6, _path78$6, _path79$6, _path80$6, _path81$6, _path82$6, _path83$6, _path84$6, _path85$6, _path86$6, _path87$6, _path88$6, _path89$6, _path90$6, _path91$6, _path92$6, _path93$6, _path94$6, _path95$6, _path96$6, _path97$6, _path98$6, _path99$6, _path100$6, _path101$6, _path102$6, _path103$6, _path104$6, _path105$6, _circle6$5, _path106$6, _path107$6, _path108$6, _circle7$5, _circle8$5, _circle9$5, _circle10$5, _circle11$5, _circle12$4, _circle13$4, _circle14$3, _circle15$3, _path109$6, _circle16$3, _circle17$3, _circle18$2, _circle19$2, _circle20$2, _circle21$1, _circle22$1, _circle23$1, _circle24$1, _circle25$1, _circle26$1, _circle27$1, _circle28$1, _circle29$1, _circle30$1, _circle31$1, _circle32$1, _path110$6, _path111$6, _path112$6, _path113$6, _circle33$1, _path114$6, _path115$6, _path116$6, _circle34$1, _path117$6, _circle35$1, _path118$6, _circle36$1, _path119$6, _path120$6, _path121$6, _path122$6, _path123$6, _path124$6, _path125$6, _path126$6, _path127$6, _circle37$1, _circle38, _circle39, _path128$6, _circle40, _path129$6, _circle41, _circle42, _path130$6, _path131$6, _path132$6, _path133$6, _path134$6, _path135$6, _path136$6, _path137$6, _path138$6, _path139$6, _path140$6, _path141$6, _path142$6, _path143$6, _path144$6, _path145$6, _path146$6, _path147$6, _path148$6, _path149$6, _path150$6, _path151$6, _path152$6, _path153$6, _path154$6, _path155$6, _path156$6, _path157$6, _path158$6, _path159$6, _path160$6, _path161$6, _path162$6, _path163$6, _path164$6, _path165$6, _path166$6, _path167$6, _path168$6, _circle43, _path169$6, _path170$6, _path171$6, _path172$6, _path173$6, _path174$6, _path175$6, _path176$6, _path177$6, _path178$6, _path179$6, _path180$6, _path181$6, _path182$6, _path183$6, _path184$6, _path185$6, _path186$6, _path187$6, _path188$6, _path189$6, _path190$6, _path191$6, _path192$6, _path193$6, _circle44, _path194$6; var _excluded$b = ["children", "size"], _excluded2$6 = ["children", "size"], _excluded3$6 = ["children", "size"], _excluded4$6 = ["children", "size"], _excluded5$6 = ["children", "size"], _excluded6$6 = ["children", "size"], _excluded7$6 = ["children", "size"], _excluded8$6 = ["children", "size"], _excluded9$6 = ["children", "size"], _excluded10$6 = ["children", "size"], _excluded11$6 = ["children", "size"], _excluded12$6 = ["children", "size"], _excluded13$6 = ["children", "size"], _excluded14$6 = ["children", "size"], _excluded15$6 = ["children", "size"], _excluded16$6 = ["children", "size"], _excluded17$6 = ["children", "size"], _excluded18$6 = ["children", "size"], _excluded19$6 = ["children", "size"], _excluded20$6 = ["children", "size"], _excluded21$6 = ["children", "size"], _excluded22$6 = ["children", "size"], _excluded23$6 = ["children", "size"], _excluded24$6 = ["children", "size"], _excluded25$6 = ["children", "size"], _excluded26$6 = ["children", "size"], _excluded27$6 = ["children", "size"], _excluded28$6 = ["children", "size"], _excluded29$6 = ["children", "size"], _excluded30$6 = ["children", "size"], _excluded31$6 = ["children", "size"], _excluded32$6 = ["children", "size"], _excluded33$6 = ["children", "size"], _excluded34$6 = ["children", "size"], _excluded35$6 = ["children", "size"], _excluded36$6 = ["children", "size"], _excluded37$6 = ["children", "size"], _excluded38$6 = ["children", "size"], _excluded39$6 = ["children", "size"], _excluded40$6 = ["children", "size"], _excluded41$6 = ["children", "size"], _excluded42$6 = ["children", "size"], _excluded43$6 = ["children", "size"], _excluded44$6 = ["children", "size"], _excluded45$6 = ["children", "size"], _excluded46$6 = ["children", "size"], _excluded47$6 = ["children", "size"], _excluded48$6 = ["children", "size"], _excluded49$6 = ["children", "size"], _excluded50$6 = ["children", "size"], _excluded51$6 = ["children", "size"], _excluded52$6 = ["children", "size"], _excluded53$6 = ["children", "size"], _excluded54$6 = ["children", "size"], _excluded55$6 = ["children", "size"], _excluded56$6 = ["children", "size"], _excluded57$6 = ["children", "size"], _excluded58$6 = ["children", "size"], _excluded59$6 = ["children", "size"], _excluded60$6 = ["children", "size"], _excluded61$6 = ["children", "size"], _excluded62$6 = ["children", "size"], _excluded63$6 = ["children", "size"], _excluded64$6 = ["children", "size"], _excluded65$6 = ["children", "size"], _excluded66$6 = ["children", "size"], _excluded67$6 = ["children", "size"], _excluded68$6 = ["children", "size"], _excluded69$6 = ["children", "size"], _excluded70$6 = ["children", "size"], _excluded71$6 = ["children", "size"], _excluded72$6 = ["children", "size"], _excluded73$6 = ["children", "size"], _excluded74$6 = ["children", "size"], _excluded75$6 = ["children", "size"], _excluded76$6 = ["children", "size"], _excluded77$6 = ["children", "size"], _excluded78$6 = ["children", "size"], _excluded79$6 = ["children", "size"], _excluded80$6 = ["children", "size"], _excluded81$6 = ["children", "size"], _excluded82$6 = ["children", "size"], _excluded83$6 = ["children", "size"], _excluded84$6 = ["children", "size"], _excluded85$6 = ["children", "size"], _excluded86$6 = ["children", "size"], _excluded87$6 = ["children", "size"], _excluded88$6 = ["children", "size"], _excluded89$6 = ["children", "size"], _excluded90$6 = ["children", "size"], _excluded91$6 = ["children", "size"], _excluded92$6 = ["children", "size"], _excluded93$6 = ["children", "size"], _excluded94$6 = ["children", "size"], _excluded95$6 = ["children", "size"], _excluded96$6 = ["children", "size"], _excluded97$6 = ["children", "size"], _excluded98$6 = ["children", "size"], _excluded99$6 = ["children", "size"], _excluded100$6 = ["children", "size"], _excluded101$6 = ["children", "size"], _excluded102$6 = ["children", "size"], _excluded103$6 = ["children", "size"], _excluded104$6 = ["children", "size"], _excluded105$6 = ["children", "size"], _excluded106$6 = ["children", "size"], _excluded107$6 = ["children", "size"], _excluded108$6 = ["children", "size"], _excluded109$6 = ["children", "size"], _excluded110$6 = ["children", "size"], _excluded111$6 = ["children", "size"], _excluded112$6 = ["children", "size"], _excluded113$6 = ["children", "size"], _excluded114$6 = ["children", "size"], _excluded115$6 = ["children", "size"], _excluded116$6 = ["children", "size"], _excluded117$6 = ["children", "size"], _excluded118$6 = ["children", "size"], _excluded119$6 = ["children", "size"], _excluded120$6 = ["children", "size"], _excluded121$6 = ["children", "size"], _excluded122$6 = ["children", "size"], _excluded123$6 = ["children", "size"], _excluded124$5 = ["children", "size"], _excluded125$5 = ["children", "size"]; var MathCurve = /*#__PURE__*/React__default["default"].forwardRef(function MathCurve(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$b); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$6 || (_path$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.3555,23.0581C12.77,24.5918,15.6208,26,17.9514,26a3.8729,3.8729,0,0,0,2.856-1.084c2.2859-2.29.14-6.3979-1.938-10.3721L24.67,8.7427c1.07.686,2.1038,1.4253,3.0117,2.124L29,9.3486c-.7783-.6064-1.772-1.3383-2.8721-2.0634L30,3.4131,28.5859,2,24.3794,6.2061c-3.3164-1.91-7.1079-3.2461-9.2288-1.1216-2.0388,2.0425-.5512,5.5317,1.2683,9.082l-6.3071,6.3066c-1.0322-.7133-1.9985-1.4448-2.8-2.101L6,19.8848c.6145.5058,1.5513,1.2451,2.6653,2.0351L4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4133ZM16.5647,6.501c1.1357-1.1377,3.6931-.2862,6.3372,1.1831l-4.9947,4.9941C16.5942,10.0591,15.5562,7.5112,16.5647,6.501Zm.8215,9.5259c1.58,3.0317,3.1822,6.2959,2.0071,7.4726-1.3125,1.3145-4.5227-.0254-7.572-1.9077Z" })), children); }); { MathCurve.propTypes = iconPropTypes; } var QMatrix = /*#__PURE__*/React__default["default"].forwardRef(function QMatrix(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$6 || (_path2$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 13L18 4 16 4 16 6 13 6 13 8 16 8 16 13 13 13 13 15 21 15 21 13 18 13zM16.5 20A3.5 3.5 0 1113 23.5 3.5 3.5 0 0116.5 20m0-2A5.5 5.5 0 1022 23.5 5.5 5.5 0 0016.5 18zM8 30L2 30 2 2 8 2 8 4 4 4 4 28 8 28 8 30zM30 30L24 30 24 28 28 28 28 4 24 4 24 2 30 2 30 30z" })), children); }); { QMatrix.propTypes = iconPropTypes; } var Maximize = /*#__PURE__*/React__default["default"].forwardRef(function Maximize(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path3$6 || (_path3$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 15L6 14 2.7 14 7 9.7 6.3 9 2 13.3 2 10 1 10 1 15zM10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$6 || (_path4$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 2L20 4 26.586 4 18 12.582 19.414 14 28 5.414 28 12 30 12 30 2 20 2zM14 19.416L12.592 18 4 26.586 4 20 2 20 2 30 12 30 12 28 5.414 28 14 19.416z" })), children); }); { Maximize.propTypes = iconPropTypes; } var MediaLibrary = /*#__PURE__*/React__default["default"].forwardRef(function MediaLibrary(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$6 || (_path5$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 15L13 23 13 23 20 19 13 15z" })), _path6$6 || (_path6$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 28H6a2.0021 2.0021 0 01-2-2V12a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2V26A2.0021 2.0021 0 0126 28zM6 12V26H26V12zM6 6H26V8H6zM8 2H24V4H8z" })), children); }); { MediaLibrary.propTypes = iconPropTypes; } var MediaLibraryFilled = /*#__PURE__*/React__default["default"].forwardRef(function MediaLibraryFilled(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$6 || (_path7$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M13 15L13 23 13 23 20 19 13 15z", "data-icon-path": "inner-path" })), _path8$6 || (_path8$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 10H6a2.0023 2.0023 0 00-2 2V26a2.0023 2.0023 0 002 2H26a2.0023 2.0023 0 002-2V12A2.0023 2.0023 0 0026 10zM13 23h0V15l7 4zM6 6H26V8H6zM8 2H24V4H8z" })), children); }); { MediaLibraryFilled.propTypes = iconPropTypes; } var MediaCast = /*#__PURE__*/React__default["default"].forwardRef(function MediaCast(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$6 || (_path9$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 26H5a3 3 0 00-3-3zM9 26H7a5.0057 5.0057 0 00-5-5V19A7.0078 7.0078 0 019 26z" })), _path10$6 || (_path10$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,26H11a9.01,9.01,0,0,0-9-9V15A11.0125,11.0125,0,0,1,13,26Z" })), _path11$6 || (_path11$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H15V24H28V8H4v5H2V8A2.0021,2.0021,0,0,1,4,6H28a2.0021,2.0021,0,0,1,2,2V24A2.0021,2.0021,0,0,1,28,26Z" })), children); }); { MediaCast.propTypes = iconPropTypes; } var Medication = /*#__PURE__*/React__default["default"].forwardRef(function Medication(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$6 || (_path12$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2H8A2,2,0,0,0,6,4V8a2,2,0,0,0,2,2V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V10a2,2,0,0,0,2-2V4A2,2,0,0,0,24,2ZM10,14h3V24H10ZM22,28H10V26h5V12H10V10H22ZM8,8V4H24V8Z" })), children); }); { Medication.propTypes = iconPropTypes; } var MedicationAlert = /*#__PURE__*/React__default["default"].forwardRef(function MedicationAlert(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$6 || (_path13$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 19H24V24H22z" })), _path14$6 || (_path14$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,31a8,8,0,1,1,8-8A8,8,0,0,1,23,31Zm0-14a6,6,0,1,0,6,6A6,6,0,0,0,23,17Z" })), _circle$6 || (_circle$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "26", r: "1" })), _path15$6 || (_path15$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,2H4A2,2,0,0,0,2,4V8a2,2,0,0,0,2,2V28a2,2,0,0,0,2,2h8V28H6V26h5V12H6V10H18v3h2V10a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2ZM9,14V24H6V14ZM4,8V4H20V8Z" })), children); }); { MedicationAlert.propTypes = iconPropTypes; } var MedicationReminder = /*#__PURE__*/React__default["default"].forwardRef(function MedicationReminder(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$6 || (_path16$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,2H4A2,2,0,0,0,2,4V8a2,2,0,0,0,2,2V28a2,2,0,0,0,2,2H18a2,2,0,0,0,2-2V10a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2ZM6,14H9V24H6ZM18,28H6V26h5V12H6V10H18ZM4,8V4H20V8Z" })), _circle2$6 || (_circle2$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "16", r: "4" })), children); }); { MedicationReminder.propTypes = iconPropTypes; } var Menu$1 = /*#__PURE__*/React__default["default"].forwardRef(function Menu(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path17$6 || (_path17$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 12H14V13H2zM2 9H14V10H2zM2 6H14V7H2zM2 3H14V4H2z" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path18$6 || (_path18$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 14.8H18V16H2zM2 11.2H18V12.399999999999999H2zM2 7.6H18V8.799999999999999H2zM2 4H18V5.2H2z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path19$6 || (_path19$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 18H21V19.5H3zM3 13.5H21V15H3zM3 9H21V10.5H3zM3 4.5H21V6H3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$6 || (_path20$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6H28V8H4zM4 24H28V26H4zM4 12H28V14H4zM4 18H28V20H4z" })), children); }); { Menu$1.propTypes = iconPropTypes; } var MessageQueue = /*#__PURE__*/React__default["default"].forwardRef(function MessageQueue(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$6 || (_path21$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V21H4v5H28V21h2v5A2.0021,2.0021,0,0,1,28,28Z" })), _path22$6 || (_path22$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 21H25V23H7zM7 16H25V18H7zM7 11H25V13H7zM7 6H25V8H7z" })), children); }); { MessageQueue.propTypes = iconPropTypes; } var Meter = /*#__PURE__*/React__default["default"].forwardRef(function Meter(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$6 || (_path23$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 16a9.9283 9.9283 0 00-1.1392-4.6182l-1.4961 1.4961A7.9483 7.9483 0 0124 16zM23.4141 10L22 8.5859l-4.7147 4.7147A2.9659 2.9659 0 0016 13a3 3 0 103 3 2.9659 2.9659 0 00-.3006-1.2853zM16 17a1 1 0 111-1A1.0013 1.0013 0 0116 17zM16 8a7.9515 7.9515 0 013.1223.6353l1.4961-1.4961A9.9864 9.9864 0 006 16H8A8.0092 8.0092 0 0116 8z" })), _path24$6 || (_path24$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Meter.propTypes = iconPropTypes; } var MeterAlt = /*#__PURE__*/React__default["default"].forwardRef(function MeterAlt(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$6 || (_path25$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 20a13.8535 13.8535 0 00-2.2291-7.5288l-1.4452 1.4453A11.8917 11.8917 0 0128 20zM28 9.414L26.5859 8 18.019 16.5669A3.9521 3.9521 0 0016 16a4 4 0 104 4 3.9533 3.9533 0 00-.5669-2.0191zM16 22a2 2 0 112-2A2.0023 2.0023 0 0116 22zM16 8a11.9086 11.9086 0 016.0833 1.6743l1.4536-1.4536A13.9773 13.9773 0 002 20H4A12.0137 12.0137 0 0116 8z" })), children); }); { MeterAlt.propTypes = iconPropTypes; } var Microphone = /*#__PURE__*/React__default["default"].forwardRef(function Microphone(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$6 || (_path26$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,14v3A7,7,0,0,1,9,17V14H7v3a9,9,0,0,0,8,8.94V28H11v2H21V28H17V25.94A9,9,0,0,0,25,17V14Z" })), _path27$6 || (_path27$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a5,5,0,0,0,5-5V7A5,5,0,0,0,11,7V17A5,5,0,0,0,16,22ZM13,7a3,3,0,0,1,6,0V17a3,3,0,0,1-6,0Z" })), children); }); { Microphone.propTypes = iconPropTypes; } var MicrophoneFilled = /*#__PURE__*/React__default["default"].forwardRef(function MicrophoneFilled(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$6 || (_path28$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,14v3A7,7,0,0,1,9,17V14H7v3a9,9,0,0,0,8,8.94V28H11v2H21V28H17V25.94A9,9,0,0,0,25,17V14Z" })), _path29$6 || (_path29$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a5,5,0,0,0,5-5V7A5,5,0,0,0,11,7V17A5,5,0,0,0,16,22Z" })), children); }); { MicrophoneFilled.propTypes = iconPropTypes; } var MicrophoneOff = /*#__PURE__*/React__default["default"].forwardRef(function MicrophoneOff(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$6 || (_path30$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.18 18.57A7.41 7.41 0 019 17V14H7v3a8.84 8.84 0 00.58 3.18zM13 15V7a3 3 0 016 0V8.75l2-2A5 5 0 0011 7v8zM23 17a7 7 0 01-11.73 5.14l1.42-1.41A5 5 0 0021 17V12.42l9-9L28.59 2 2 28.59 3.41 30l6.44-6.44A8.91 8.91 0 0015 25.94V28H11v2H21V28H17V25.94A9 9 0 0025 17V14H23zm-4 0a3 3 0 01-4.9 2.31L19 14.42z" })), children); }); { MicrophoneOff.propTypes = iconPropTypes; } var MicrophoneOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function MicrophoneOffFilled(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$6 || (_path31$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 17a7 7 0 01-11.73 5.14l1.42-1.41A5 5 0 0021 17V12.42l9-9L28.59 2 2 28.59 3.41 30l6.44-6.44A8.91 8.91 0 0015 25.94V28H11v2H21V28H17V25.94A9 9 0 0025 17V14H23zM9 17.32c0-.11 0-.21 0-.32V14H7v3a9 9 0 00.25 2.09zM20.76 5.58A5 5 0 0011 7v8.34z" })), children); }); { MicrophoneOffFilled.propTypes = iconPropTypes; } var Microscope = /*#__PURE__*/React__default["default"].forwardRef(function Microscope(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$6 || (_path32$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.3943,24a7.8772,7.8772,0,0,0-1.6707-8.5684,3.918,3.918,0,0,0-1.0844-4.414l2.7759-2.7759a2.0025,2.0025,0,0,0,0-2.8286L22.5869,2.5849a2.0021,2.0021,0,0,0-2.8286,0L6.5859,15.7573a2.0027,2.0027,0,0,0,0,2.8286l2.8282,2.8282a2.0024,2.0024,0,0,0,2.8286,0l4.7749-4.7754a3.9329,3.9329,0,0,0,5.5139.4326A5.9442,5.9442,0,0,1,23.1775,24H16v4H4v2H28V24ZM10.8281,20,8,17.1714,9.8787,15.293l2.8283,2.8281ZM16,14a3.9811,3.9811,0,0,0,.0762.7524L14.1211,16.707l-2.8284-2.8281,9.88-9.88L24.001,6.8271l-3.2488,3.2491A3.9771,3.9771,0,0,0,16,14Zm4,2a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,20,16Zm6,12H18V26h8Z" })), children); }); { Microscope.propTypes = iconPropTypes; } var Microservices_1 = /*#__PURE__*/React__default["default"].forwardRef(function Microservices_1(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch$2 || (_switch$2 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 21l-4-2.2v-4.5l4-2.2 4 2.2v4.5L11 21zM9 17.6l2 1.1 2-1.1v-2.2l-2-1.1-2 1.1V17.6zM6 30l-4-2.2v-4.5L6 21l4 2.2v4.5L6 30zM4 26.6l2 1.1 2-1.1v-2.2l-2-1.1-2 1.1V26.6zM16 30l-4-2.2v-4.5l4-2.2 4 2.2v4.5L16 30zM14 26.6l2 1.1 2-1.1v-2.2l-2-1.1-2 1.1V26.6zM26 30l-4-2.2v-4.5l4-2.2 4 2.2v4.5L26 30zM24 26.6l2 1.1 2-1.1v-2.2l-2-1.1-2 1.1V26.6zM24.6 11.6L22 14.2V9.4l3-1.7V3.2L21 1l-4 2.2v4.5l3 1.7v4.7l-2.6-2.6L16 13l5 5 5-5L24.6 11.6zM19 4.4l2-1.1 2 1.1v2.2l-2 1.1-2-1.1V4.4z" })))), children); }); { Microservices_1.propTypes = iconPropTypes; } var Microservices_2 = /*#__PURE__*/React__default["default"].forwardRef(function Microservices_2(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch2 || (_switch2 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22v-6h-6v-6H2v20h20v-8H16zM14 18v4h-4 0v-4H14zM4 12h4v4H4V12zM8 18v4H4v-4H8zM4 28v-4h4v4H4zM14 28h-4v-4h4V28zM20 28h-4v-4h4V28zM29.6 13.6L27 16.2V10h3V2h-8v8h3v6.2l-2.6-2.6L21 15l5 5 5-5L29.6 13.6zM24 4h4v4h-4V4z" })))), children); }); { Microservices_2.propTypes = iconPropTypes; } var Migrate = /*#__PURE__*/React__default["default"].forwardRef(function Migrate(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$6 || (_path33$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 2H6A2 2 0 004 4V8a2 2 0 002 2h9v6.17l-2.59-2.58L11 15l5 5 5-5-1.41-1.41L17 16.17V10h9a2 2 0 002-2V4A2 2 0 0026 2zM6 4h4V8H6zM26 8H12V4H26zM26 22H6a2 2 0 00-2 2v4a2 2 0 002 2H26a2 2 0 002-2V24A2 2 0 0026 22zM6 24H20v4H6zm20 4H22V24h4z" })), children); }); { Migrate.propTypes = iconPropTypes; } var MigrateAlt = /*#__PURE__*/React__default["default"].forwardRef(function MigrateAlt(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$6 || (_path34$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,22H12V20H10v6H4V17H20.1719l-3.586,3.5859L18,22l6-6-6-6-1.4141,1.4141L20.1719,15H4V6h6v6h2V6H28Z" })), children); }); { MigrateAlt.propTypes = iconPropTypes; } var Milestone = /*#__PURE__*/React__default["default"].forwardRef(function Milestone(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$6 || (_path35$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5857,6.5859A1.9865,1.9865,0,0,0,23.1714,6H16V2H14V6H6A2.0025,2.0025,0,0,0,4,8v6a2.0025,2.0025,0,0,0,2,2h8V30h2V16h7.1714a1.9865,1.9865,0,0,0,1.4143-.5859L29,11ZM23.1714,14H6V8H23.1716l3,3Z" })), children); }); { Milestone.propTypes = iconPropTypes; } var MilitaryCamp = /*#__PURE__*/React__default["default"].forwardRef(function MilitaryCamp(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$6 || (_path36$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,28v-10.48a2.0035,2.0035,0,0,0-.853-1.6387L17,9.48V8h6V2H15V9.48L5.8528,15.8823A2.0023,2.0023,0,0,0,5,17.5205V28H2v2H30V28ZM17,4h4V6H17ZM7,17.5205l9-6.3,9,6.3V28H17V20H15v8H7Z" })), children); }); { MilitaryCamp.propTypes = iconPropTypes; } var Minimize = /*#__PURE__*/React__default["default"].forwardRef(function Minimize(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path37$6 || (_path37$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 9L2 10 5.3 10 1 14.3 1.7 15 6 10.7 6 14 7 14 7 9zM14 7L14 6 10.7 6 15 1.7 14.3 1 10 5.3 10 2 9 2 9 7z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$6 || (_path38$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 18L4 20 10.586 20 2 28.582 3.414 30 12 21.414 12 28 14 28 14 18 4 18zM30 3.416L28.592 2 20 10.586 20 4 18 4 18 14 28 14 28 12 21.414 12 30 3.416z" })), children); }); { Minimize.propTypes = iconPropTypes; } var Misuse = /*#__PURE__*/React__default["default"].forwardRef(function Misuse(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path39$6 || (_path39$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M10.7,11.5L8,8.8l-2.7,2.7l-0.8-0.8L7.2,8L4.5,5.3l0.8-0.8L8,7.2 l2.7-2.7l0.8,0.8L8.8,8l2.7,2.7L10.7,11.5z" })), _path40$6 || (_path40$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.7,11.5L8,8.8l-2.7,2.7l-0.8-0.8L7.2,8L4.5,5.3l0.8-0.8L8,7.2l2.7-2.7l0.8,0.8L8.8,8 l2.7,2.7L10.7,11.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path41$6 || (_path41$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M13.5,14.5L10,11l-3.5,3.5l-1-1L9,10L5.5,6.5l1-1L10,9l3.5-3.5l1,1 L11,10l3.5,3.5L13.5,14.5z" })), _path42$6 || (_path42$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M13.5,14.5L10,11l-3.5,3.5l-1-1L9,10L5.5,6.5l1-1L10,9l3.5-3.5l1,1L11,10l3.5,3.5L13.5,14.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path43$6 || (_path43$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M16.2,17.5L12,13.3l-4.2,4.2l-1.3-1.3l4.2-4.2L6.5,7.8l1.3-1.3 l4.2,4.2l4.2-4.2l1.3,1.3L13.3,12l4.2,4.2L16.2,17.5z" })), _path44$6 || (_path44$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16.2,17.5L12,13.3l-4.2,4.2l-1.3-1.3l4.2-4.2L6.5,7.8l1.3-1.3l4.2,4.2l4.2-4.2l1.3,1.3 L13.3,12l4.2,4.2L16.2,17.5z", "data-icon-path": "inner-path", opacity: "0" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$6 || (_path45$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M21.4,23L16,17.6L10.6,23L9,21.4l5.4-5.4L9,10.6L10.6,9 l5.4,5.4L21.4,9l1.6,1.6L17.6,16l5.4,5.4L21.4,23z" })), _path46$6 || (_path46$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M21.4,23L16,17.6L10.6,23L9,21.4l5.4-5.4L9,10.6L10.6,9l5.4,5.4L21.4,9l1.6,1.6L17.6,16 l5.4,5.4L21.4,23z", "data-icon-path": "inner-path", opacity: "0" })), children); }); { Misuse.propTypes = iconPropTypes; } var MisuseOutline = /*#__PURE__*/React__default["default"].forwardRef(function MisuseOutline(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path47$6 || (_path47$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path48$6 || (_path48$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.7 11.5L8 8.8 5.3 11.5 4.5 10.7 7.2 8 4.5 5.3 5.3 4.5 8 7.2 10.7 4.5 11.5 5.3 8.8 8 11.5 10.7z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$6 || (_path49$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M16,28C9.4,28,4,22.6,4,16S9.4,4,16,4s12,5.4,12,12 S22.6,28,16,28z" })), _path50$6 || (_path50$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4 23L16 17.6 10.6 23 9 21.4 14.4 16 9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4z" })), children); }); { MisuseOutline.propTypes = iconPropTypes; } var MixedRainHail = /*#__PURE__*/React__default["default"].forwardRef(function MixedRainHail(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3$6 || (_circle3$6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.5", cy: "25.5", r: "1.5" })), _circle4$5 || (_circle4$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21.5", cy: "29.5", r: "1.5" })), _path51$6 || (_path51$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.868 30.496L14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z" })), _path52$6 || (_path52$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 32a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 019 32zM24.8008 9.1362a8.9943 8.9943 0 00-17.6006 0 6.4929 6.4929 0 00.23 12.7681L6.106 24.5527a1 1 0 101.7885.8946l2-4a1 1 0 00-.447-1.3418A.9786.9786 0 009 20.01V20H8.5a4.4975 4.4975 0 01-.356-8.981l.8155-.0639.0991-.812a6.9938 6.9938 0 0113.8838 0l.0986.812.8154.0639A4.4975 4.4975 0 0123.5 20H23v2h.5A6.4974 6.4974 0 0024.8008 9.1362z" })), children); }); { MixedRainHail.propTypes = iconPropTypes; } var Mobile = /*#__PURE__*/React__default["default"].forwardRef(function Mobile(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53$6 || (_path53$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,4H10A2.002,2.002,0,0,0,8,6V28a2.0023,2.0023,0,0,0,2,2H22a2.0027,2.0027,0,0,0,2-2V6A2.0023,2.0023,0,0,0,22,4Zm0,2,0,2H10V6ZM10,28V10H22l0,18Z" })), children); }); { Mobile.propTypes = iconPropTypes; } var MobileAdd = /*#__PURE__*/React__default["default"].forwardRef(function MobileAdd(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$6 || (_path54$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 24L24 24 24 20 22 20 22 24 18 24 18 26 22 26 22 30 24 30 24 26 28 26 28 24z" })), _path55$6 || (_path55$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,28V10H22v7h2V6a2.0023,2.0023,0,0,0-2-2H10A2.002,2.002,0,0,0,8,6V28a2.0023,2.0023,0,0,0,2,2h6l0-2ZM10,6H22l0,2H10Z" })), children); }); { MobileAdd.propTypes = iconPropTypes; } var MobileAudio = /*#__PURE__*/React__default["default"].forwardRef(function MobileAudio(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$6 || (_path56$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 12H30V15H28zM24 7H26V20H24zM20 11H22V16H20zM16 9H18V18H16zM12 12H14V15H12z" })), _circle5$5 || (_circle5$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13.5", cy: "24.5", r: "1.5" })), _path57$6 || (_path57$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,30H7a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,7,2H20V4H7V28H20V24h2v4A2.0023,2.0023,0,0,1,20,30Z" })), children); }); { MobileAudio.propTypes = iconPropTypes; } var MobileCheck = /*#__PURE__*/React__default["default"].forwardRef(function MobileCheck(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$6 || (_path58$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 27.18L17.41 24.59 16 26 20 30 28 22 26.59 20.59 20 27.18z" })), _path59$6 || (_path59$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,28V10H22v9h2V6a2.0023,2.0023,0,0,0-2-2H10A2.002,2.002,0,0,0,8,6V28a2.0023,2.0023,0,0,0,2,2h4V28ZM10,6H22l0,2H10Z" })), children); }); { MobileCheck.propTypes = iconPropTypes; } var MobileDownload = /*#__PURE__*/React__default["default"].forwardRef(function MobileDownload(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$6 || (_path60$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 25L26.586 23.586 24 26.172 24 18 22 18 22 26.172 19.414 23.586 18 25 23 30 28 25z" })), _path61$6 || (_path61$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,28V10H22v5h2V6a2.0023,2.0023,0,0,0-2-2H10A2.002,2.002,0,0,0,8,6V28a2.0023,2.0023,0,0,0,2,2h6V28ZM10,6H22l0,2H10Z" })), children); }); { MobileDownload.propTypes = iconPropTypes; } var MobileLandscape = /*#__PURE__*/React__default["default"].forwardRef(function MobileLandscape(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$6 || (_path62$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3,10V22a2.002,2.002,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V10a2.0027,2.0027,0,0,0-2-2H5A2.0023,2.0023,0,0,0,3,10Zm2,0,2,0V22H5ZM27,22H9V10H27Z" })), children); }); { MobileLandscape.propTypes = iconPropTypes; } var MobilityServices = /*#__PURE__*/React__default["default"].forwardRef(function MobilityServices(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63$6 || (_path63$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3379 19.9336l-7.7324-2.7783L18.374 13.0967A2.99 2.99 0 0016.0537 12H8.0576a2.9982 2.9982 0 00-2.48 1.3115L2.8662 17.2949A4.9884 4.9884 0 002 20.1074V26a1 1 0 001 1H5.1421a3.9806 3.9806 0 007.7158 0h6.2842a3.9806 3.9806 0 007.7158 0H29a1 1 0 001-1V20.875A1 1 0 0029.3379 19.9336zM9 28a2 2 0 112-2A2.0027 2.0027 0 019 28zm14 0a2 2 0 112-2A2.0025 2.0025 0 0123 28zm5-3H26.8579a3.9806 3.9806 0 00-7.7158 0H12.8579a3.9806 3.9806 0 00-7.7158 0H4V20.1074A2.9977 2.9977 0 014.52 18.4189l2.711-3.9814A.9992.9992 0 018.0576 14h7.9961a.9928.9928 0 01.7647.3545l3.3994 4.2685a1.0007 1.0007 0 00.4443.3184L28 21.5781zM28 2H24a2.0023 2.0023 0 00-2 2v8a2.0023 2.0023 0 002 2h4a2.0023 2.0023 0 002-2V4A2.0023 2.0023 0 0028 2zm0 2V6H24V4zm-4 8V8h4v4z" })), children); }); { MobilityServices.propTypes = iconPropTypes; } var Model = /*#__PURE__*/React__default["default"].forwardRef(function Model(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$6 || (_path64$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,4H8.5L1.7158,13.0454,16,29.5269,30.2842,13.0454ZM27,12H21.5543l-3.75-6H22.5ZM10.3021,14l3.7536,10.23L5.19,14Zm2.13,0H19.568l-3.569,9.7212Zm.3725-2L16,6.8867,19.1957,12Zm8.8935,2H26.81L17.9427,24.2314ZM9.5,6h4.6957l-3.75,6H5Z" })), children); }); { Model.propTypes = iconPropTypes; } var ModelAlt = /*#__PURE__*/React__default["default"].forwardRef(function ModelAlt(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65$6 || (_path65$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.4473,16.1055,23,13.3818V7a1,1,0,0,0-.5527-.8945l-6-3a1.0008,1.0008,0,0,0-.8946,0l-6,3A1,1,0,0,0,9,7v6.3818L3.5527,16.1055A1,1,0,0,0,3,17v7a1,1,0,0,0,.5527.8945l6,3a1.001,1.001,0,0,0,.8946,0L16,25.1182l5.5527,2.7763a1.001,1.001,0,0,0,.8946,0l6-3A1,1,0,0,0,29,24V17A1,1,0,0,0,28.4473,16.1055ZM21,13.3818l-4,2V10.6182l4-2ZM16,5.1182,19.7637,7,16,8.8818,12.2363,7Zm-5,3.5,4,2v4.7636l-4-2ZM9,25.3818l-4-2V18.6182l4,2Zm1-6.5L6.2363,17,10,15.1182,13.7637,17Zm1,1.7364,4-2v4.7636l-4,2Zm10,4.7636-4-2V18.6182l4,2Zm1-6.5L18.2363,17,22,15.1182,25.7637,17Zm5,4.5-4,2V20.6182l4-2Z" })), children); }); { ModelAlt.propTypes = iconPropTypes; } var ModelReference = /*#__PURE__*/React__default["default"].forwardRef(function ModelReference(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$6 || (_path66$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" })), _path67$6 || (_path67$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,4H8.5L1.7158,13.0454,6.01,18l1.5114-1.31L5.19,14h5.2554L16,22.8867,21.5544,14H26.81L15.8125,26.6919,17.3242,28l12.96-14.9546ZM5,12,9.5,6h4.6958l-3.75,6ZM16,6.8867,19.1958,12H12.8042Zm0,12.2266L12.8044,14h6.3912ZM21.5542,12l-3.75-6H22.5L27,12Z" })), children); }); { ModelReference.propTypes = iconPropTypes; } var ModelBuilder = /*#__PURE__*/React__default["default"].forwardRef(function ModelBuilder(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$6 || (_path68$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,4V7H10V4H2v8h8V9h7.0234A4.9463,4.9463,0,0,0,16,12v8A3.0037,3.0037,0,0,1,13,23H10V20H2v8h8V25H13A5.0062,5.0062,0,0,0,18,20V12a2.9982,2.9982,0,0,1,2.9971-3H22v3h8V4ZM8,10H4V6H8ZM8,26H4V22H8ZM28,10H24V6h4Z" })), children); }); { ModelBuilder.propTypes = iconPropTypes; } var ModelBuilderReference = /*#__PURE__*/React__default["default"].forwardRef(function ModelBuilderReference(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69$6 || (_path69$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" })), _path70$6 || (_path70$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,4V7H10V4H2v8h8V9h7.0234A4.9463,4.9463,0,0,0,16,12V28h2V12a2.9982,2.9982,0,0,1,2.9971-3H22v3h8V4ZM8,10H4V6H8Zm20,0H24V6h4Z" })), children); }); { ModelBuilderReference.propTypes = iconPropTypes; } var Money = /*#__PURE__*/React__default["default"].forwardRef(function Money(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71$6 || (_path71$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 22H30V24H2zM2 26H30V28H2zM24 10a2 2 0 102 2 2 2 0 00-2-2zM16 16a4 4 0 114-4A4.0045 4.0045 0 0116 16zm0-6a2 2 0 102 2A2.002 2.002 0 0016 10zM8 10a2 2 0 102 2 2 2 0 00-2-2z" })), _path72$6 || (_path72$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20H4a2.0051,2.0051,0,0,1-2-2V6A2.0051,2.0051,0,0,1,4,4H28a2.0051,2.0051,0,0,1,2,2V18A2.0027,2.0027,0,0,1,28,20ZM28,6H4V18H28Z" })), children); }); { Money.propTypes = iconPropTypes; } var Monster = /*#__PURE__*/React__default["default"].forwardRef(function Monster(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$6 || (_path73$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 22L21 22 21 20 19 20 19 22 17 22 17 20 15 20 15 22 13 22 13 20 11 20 11 22 9 22 9 24 11 24 11 26 13 26 13 24 15 24 15 26 17 26 17 24 19 24 19 26 21 26 21 24 23 24 23 22z" })), _path74$6 || (_path74$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,11H27V4a2.0025,2.0025,0,0,0-2-2H7A2.0025,2.0025,0,0,0,5,4v7H4a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2H5v4a7.0078,7.0078,0,0,0,7,7h8a7.0078,7.0078,0,0,0,7-7V19h1a2.0025,2.0025,0,0,0,2-2V13A2.0025,2.0025,0,0,0,28,11ZM25,4V7.3818L22.4473,6.1055a1.0008,1.0008,0,0,0-.8946,0L18,7.8818,14.4473,6.1055a1.0008,1.0008,0,0,0-.8946,0L10,7.8818l-3-1.5V4Zm3,13H25v6a5.0057,5.0057,0,0,1-5,5H12a5.0057,5.0057,0,0,1-5-5V17H4V13H7V8.6182L9.5527,9.8945a1.0008,1.0008,0,0,0,.8946,0L14,8.1182l3.5527,1.7763a1.001,1.001,0,0,0,.8946,0L22,8.1182l3,1.5V13h3Z" })), _path75$6 || (_path75$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 14H14V16H9zM18 14H23V16H18z" })), children); }); { Monster.propTypes = iconPropTypes; } var Monument = /*#__PURE__*/React__default["default"].forwardRef(function Monument(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$6 || (_path76$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,28V6L16,2,12,6V28H2v2H30V28Zm-6,0V6.8281l2-2,2,2V28Z" })), children); }); { Monument.propTypes = iconPropTypes; } var Moon$1 = /*#__PURE__*/React__default["default"].forwardRef(function Moon(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$6 || (_path77$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5025,5.4136A15.0755,15.0755,0,0,0,25.096,23.6082a11.1134,11.1134,0,0,1-7.9749,3.3893c-.1385,0-.2782.0051-.4178,0A11.0944,11.0944,0,0,1,13.5025,5.4136M14.98,3a1.0024,1.0024,0,0,0-.1746.0156A13.0959,13.0959,0,0,0,16.63,28.9973c.1641.006.3282,0,.4909,0a13.0724,13.0724,0,0,0,10.702-5.5556,1.0094,1.0094,0,0,0-.7833-1.5644A13.08,13.08,0,0,1,15.8892,4.38,1.0149,1.0149,0,0,0,14.98,3Z" })), children); }); { Moon$1.propTypes = iconPropTypes; } var Moonrise = /*#__PURE__*/React__default["default"].forwardRef(function Moonrise(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$6 || (_path78$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM26 26H24a7.987 7.987 0 00-2.0371-5.3335l1.49-1.334A9.9835 9.9835 0 0126 26zM16 26H14a9.9268 9.9268 0 013.7539-7.804A7.89 7.89 0 0016 18a8.0092 8.0092 0 00-8 8H6A10.0113 10.0113 0 0116 16a9.8923 9.8923 0 014.4458 1.0515 1 1 0 010 1.79A7.9567 7.9567 0 0016 26zM16 2L11 7 12.41 8.41 15 5.83 15 6 15 14 17 14 17 6 17 5.83 19.59 8.41 21 7 16 2z" })), children); }); { Moonrise.propTypes = iconPropTypes; } var Moonset = /*#__PURE__*/React__default["default"].forwardRef(function Moonset(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$6 || (_path79$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM26 26H24a7.987 7.987 0 00-2.0371-5.3335l1.49-1.334A9.9835 9.9835 0 0126 26zM16 26H14a9.9268 9.9268 0 013.7539-7.804A7.89 7.89 0 0016 18a8.0092 8.0092 0 00-8 8H6A10.0113 10.0113 0 0116 16a9.8923 9.8923 0 014.4458 1.0515 1 1 0 010 1.79A7.9567 7.9567 0 0016 26zM16 14L11 9 12.41 7.59 15 10.17 15 10 15 2 17 2 17 10 17 10.17 19.59 7.59 21 9 16 14z" })), children); }); { Moonset.propTypes = iconPropTypes; } var MostlyCloudy = /*#__PURE__*/React__default["default"].forwardRef(function MostlyCloudy(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$6 || (_path80$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.743,18.6872A6.05,6.05,0,0,0,22.8,17.6006a5.9977,5.9977,0,1,0-10.7334-4.4444,7.5568,7.5568,0,0,0-5.7158,5.0879A5.9926,5.9926,0,0,0,8,30H19a5.9854,5.9854,0,0,0,2.743-11.3128ZM18,10a4.0042,4.0042,0,0,1,4,4,3.9613,3.9613,0,0,1-.8,2.3994,4.0122,4.0122,0,0,1-.94.8917,7.5416,7.5416,0,0,0-6.1339-4.2395A3.9985,3.9985,0,0,1,18,10Zm1,18H8a3.9928,3.9928,0,0,1-.6729-7.93L7.99,19.958l.1456-.6562a5.4958,5.4958,0,0,1,10.729,0l.1464.6562.6622.1123A3.9928,3.9928,0,0,1,19,28Z", transform: "translate(0 .005)" })), _path81$6 || (_path81$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 13.005H30V15.005H26z" })), _path82$6 || (_path82$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.071 5.929H27.071V7.929H23.071z", transform: "rotate(-45 25.077 6.931)" })), _path83$6 || (_path83$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 2.005H19V6.005H17z" })), _path84$6 || (_path84$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.929 4.929H11.929V8.929H9.929z", transform: "rotate(-45 10.935 6.931)" })), children); }); { MostlyCloudy.propTypes = iconPropTypes; } var MostlyCloudyNight = /*#__PURE__*/React__default["default"].forwardRef(function MostlyCloudyNight(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$6 || (_path85$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.8438,15.0347a1.5169,1.5169,0,0,0-1.23-.8658,5.3547,5.3547,0,0,1-3.4094-1.7158A6.4653,6.4653,0,0,1,23.918,6.0605a1.6025,1.6025,0,0,0-.2989-1.5459,1.4543,1.4543,0,0,0-1.36-.4931l-.0191.0039a7.927,7.927,0,0,0-6.22,7.4307A7.3638,7.3638,0,0,0,13.5,11a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,28H19a5.9771,5.9771,0,0,0,5.6147-8.0884,7.5054,7.5054,0,0,0,5.1324-3.3569A1.5372,1.5372,0,0,0,29.8438,15.0347ZM19,26H8a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,26Zm4.4653-8.001h-.0217a5.9581,5.9581,0,0,0-2.7942-1.7549,7.5068,7.5068,0,0,0-2.6008-3.6767c-.01-.1016-.0361-.1978-.041-.3008a6.078,6.078,0,0,1,3.7907-6.05,8.4577,8.4577,0,0,0,1.94,7.5967A7.4007,7.4007,0,0,0,27.64,16.041,5.4286,5.4286,0,0,1,23.4653,17.999Z" })), children); }); { MostlyCloudyNight.propTypes = iconPropTypes; } var Mountain = /*#__PURE__*/React__default["default"].forwardRef(function Mountain(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$6 || (_path86$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.6343,26,17.7888,5.1055a2,2,0,0,0-3.5879.021L4.3657,26H2v2H30V26ZM15.99,5.979,20.9473,16.5,19,17.7979l-3-2-3,2-1.9551-1.3033ZM10.1846,18.3247,13,20.2021l3-2,3,2,2.8091-1.873L25.4233,26H6.5752Z" })), children); }); { Mountain.propTypes = iconPropTypes; } var Mov = /*#__PURE__*/React__default["default"].forwardRef(function Mov(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$6 || (_path87$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9L26 22 24 9 22 9 24.52 23 27.48 23 30 9 28 9zM18 23H14a2 2 0 01-2-2V11a2 2 0 012-2h4a2 2 0 012 2V21A2 2 0 0118 23zM14 11V21h4V11zM8 9L6.49 14 6 15.98 5.54 14 4 9 2 9 2 23 4 23 4 15 3.84 13 4.42 15 6 19.63 7.58 15 8.16 13 8 15 8 23 10 23 10 9 8 9z" })), children); }); { Mov.propTypes = iconPropTypes; } var Move = /*#__PURE__*/React__default["default"].forwardRef(function Move(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$6 || (_path88$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 11L23.59 12.41 26.17 15 17 15 17 5.83 19.59 8.41 21 7 16 2 11 7 12.41 8.41 15 5.83 15 15 5.83 15 8.41 12.41 7 11 2 16 7 21 8.41 19.59 5.83 17 15 17 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17 17 17 26.17 17 23.59 19.59 25 21 30 16 25 11z" })), children); }); { Move.propTypes = iconPropTypes; } var Movement = /*#__PURE__*/React__default["default"].forwardRef(function Movement(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$6 || (_path89$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,20l-1.41,1.41L26.17,25H10a4,4,0,0,1,0-8H22A6,6,0,0,0,22,5H5.83L9.41,1.41,8,0,2,6l6,6,1.41-1.41L5.83,7H22a4,4,0,0,1,0,8H10a6,6,0,0,0,0,12H26.17l-3.58,3.59L24,32l6-6Z" })), children); }); { Movement.propTypes = iconPropTypes; } var Mp3 = /*#__PURE__*/React__default["default"].forwardRef(function Mp3(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$6 || (_path90$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9H22v2h6v4H24v2h4v4H22v2h6a2 2 0 002-2V11A2 2 0 0028 9zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM8 9L6.49 14 6 15.98 5.54 14 4 9 2 9 2 23 4 23 4 15 3.84 13 4.42 15 6 19.63 7.58 15 8.16 13 8 15 8 23 10 23 10 9 8 9z" })), children); }); { Mp3.propTypes = iconPropTypes; } var Mp4 = /*#__PURE__*/React__default["default"].forwardRef(function Mp4(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$6 || (_path91$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 10v8h0V10m1-1H27v8H24V9H22V19h5v4h2V19h1V17H29V9zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM8 9L6.49 14 6 15.98 5.54 14 4 9 2 9 2 23 4 23 4 15 3.84 13 4.42 15 6 19.63 7.58 15 8.16 13 8 15 8 23 10 23 10 9 8 9z" })), children); }); { Mp4.propTypes = iconPropTypes; } var Mpeg = /*#__PURE__*/React__default["default"].forwardRef(function Mpeg(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$6 || (_path92$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32 21H28a2.0023 2.0023 0 01-2-2V13a2.002 2.002 0 012-2h4v2H28v6h2V17H29l0-2h3zM24 13L24 11.024 18 11.024 18 21 24 21 24 19 20 19 20 17 22 17 22 15 20 15 20 13 24 13zM14 11H9V21h2V18h3a2.0027 2.0027 0 002-2V13A2.0023 2.0023 0 0014 11zm-3 5V13h3l.001 3zM7 11L5 11 3.5 15 2 11 0 11 0 21 2 21 2 14 3.5 18 5 14 5 21 7 21 7 11z" })), children); }); { Mpeg.propTypes = iconPropTypes; } var Mpg2 = /*#__PURE__*/React__default["default"].forwardRef(function Mpg2(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$6 || (_path93$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32 21H26V17a2.002 2.002 0 012-2h2V13H26V11h4a2.0023 2.0023 0 012 2v2a2.0023 2.0023 0 01-2 2H28v2h4zM24 21H20a2.0023 2.0023 0 01-2-2V13a2.002 2.002 0 012-2h4v2H20v6h2V17H21l0-2h3zM14 11H9V21h2V18h3a2.0027 2.0027 0 002-2V13A2.0023 2.0023 0 0014 11zm-3 5V13h3l.001 3zM7 11L5 11 3.5 15 2 11 0 11 0 21 2 21 2 14 3.5 18 5 14 5 21 7 21 7 11z" })), children); }); { Mpg2.propTypes = iconPropTypes; } var Music = /*#__PURE__*/React__default["default"].forwardRef(function Music(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$6 || (_path94$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,4H10A2.002,2.002,0,0,0,8,6V20.5563A3.9551,3.9551,0,0,0,6,20a4,4,0,1,0,4,4V12H25v8.5562A3.9545,3.9545,0,0,0,23,20a4,4,0,1,0,4,4V6A2.0023,2.0023,0,0,0,25,4ZM6,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,26Zm17,0a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,23,26ZM10,6H25v4H10Z" })), children); }); { Music.propTypes = iconPropTypes; } var MusicAdd = /*#__PURE__*/React__default["default"].forwardRef(function MusicAdd(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$6 || (_path95$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 6L26 6 26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6zM24 15v7.5562A3.9552 3.9552 0 0022 22a4 4 0 104 4V15zM22 28a2 2 0 112-2A2.0027 2.0027 0 0122 28zM17 6H10A2.002 2.002 0 008 8V22.5562A3.9557 3.9557 0 006 22a4 4 0 104 4V8h7zM6 28a2 2 0 112-2A2.0023 2.0023 0 016 28z" })), children); }); { MusicAdd.propTypes = iconPropTypes; } var MusicRemove = /*#__PURE__*/React__default["default"].forwardRef(function MusicRemove(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$6 || (_path96$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.41 7L30 3.41 28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7zM24 15v7.5562A3.9552 3.9552 0 0022 22a4 4 0 104 4V15zM22 28a2 2 0 112-2A2.0027 2.0027 0 0122 28zM17 6H10A2.002 2.002 0 008 8V22.5562A3.9557 3.9557 0 006 22a4 4 0 104 4V8h7zM6 28a2 2 0 112-2A2.0023 2.0023 0 016 28z" })), children); }); { MusicRemove.propTypes = iconPropTypes; } var NameSpace = /*#__PURE__*/React__default["default"].forwardRef(function NameSpace(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$6 || (_path97$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 12H4a2.0023 2.0023 0 01-2-2V6A2.0023 2.0023 0 014 4H7V6H4v4H7zM9 10H15V12H9zM17 10H23V12H17zM28 12H25V10h3V6H25V4h3a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0128 12zM17 4H23V6H17zM9 4H15V6H9zM28 28H4a2.0023 2.0023 0 01-2-2V22a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0128 28zM4 22v4H28V22zM2 15H30V17H2z" })), children); }); { NameSpace.propTypes = iconPropTypes; } var NavaidCivil = /*#__PURE__*/React__default["default"].forwardRef(function NavaidCivil(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$6 || (_path98$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14H27.8193A12.0112,12.0112,0,0,0,18,4.1807V2H14V4.1807A12.0112,12.0112,0,0,0,4.1807,14H2v4H4.1807A12.0112,12.0112,0,0,0,14,27.8193V30h4V27.8193A12.0112,12.0112,0,0,0,27.8193,18H30ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { NavaidCivil.propTypes = iconPropTypes; } var NavaidDme = /*#__PURE__*/React__default["default"].forwardRef(function NavaidDme(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$6 || (_path99$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,14Z" })), _path100$6 || (_path100$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,24H8a2.0021,2.0021,0,0,1-2-2V10A2.0021,2.0021,0,0,1,8,8H24a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,24,24ZM8,10V22H24V10Z" })), _path101$6 || (_path101$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z" })), children); }); { NavaidDme.propTypes = iconPropTypes; } var NavaidHelipad = /*#__PURE__*/React__default["default"].forwardRef(function NavaidHelipad(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$6 || (_path102$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 9L18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z" })), _path103$6 || (_path103$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { NavaidHelipad.propTypes = iconPropTypes; } var NavaidMilitary = /*#__PURE__*/React__default["default"].forwardRef(function NavaidMilitary(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$6 || (_path104$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path105$6 || (_path105$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,24Zm0-14a6,6,0,1,0,6,6A6.0067,6.0067,0,0,0,16,10Z" })), _circle6$5 || (_circle6$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), children); }); { NavaidMilitary.propTypes = iconPropTypes; } var NavaidMilitaryCivil = /*#__PURE__*/React__default["default"].forwardRef(function NavaidMilitaryCivil(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$6 || (_path106$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,24Zm0-14a6,6,0,1,0,6,6A6.0067,6.0067,0,0,0,16,10Z" })), _path107$6 || (_path107$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14H27.8193A12.0112,12.0112,0,0,0,18,4.1807V2H14V4.1807A12.0112,12.0112,0,0,0,4.1807,14H2v4H4.1807A12.0112,12.0112,0,0,0,14,27.8193V30h4V27.8193A12.0112,12.0112,0,0,0,27.8193,18H30ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { NavaidMilitaryCivil.propTypes = iconPropTypes; } var NavaidNdb = /*#__PURE__*/React__default["default"].forwardRef(function NavaidNdb(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$6 || (_path108$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,24Zm0-14a6,6,0,1,0,6,6A6.0067,6.0067,0,0,0,16,10Z" })), _circle7$5 || (_circle7$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle8$5 || (_circle8$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "4", r: "2" })), _circle9$5 || (_circle9$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "28", r: "2" })), _circle10$5 || (_circle10$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "16", r: "2" })), _circle11$5 || (_circle11$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "16", r: "2" })), _circle12$4 || (_circle12$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.515", cy: "7.515", r: "2" })), _circle13$4 || (_circle13$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.485", cy: "24.485", r: "2" })), _circle14$3 || (_circle14$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.485", cy: "7.515", r: "2" })), _circle15$3 || (_circle15$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.515", cy: "24.485", r: "2" })), children); }); { NavaidNdb.propTypes = iconPropTypes; } var NavaidNdbDme = /*#__PURE__*/React__default["default"].forwardRef(function NavaidNdbDme(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109$6 || (_path109$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 12H2V4A2.0021 2.0021 0 014 2h8V4H4zM12 30H4a2.0021 2.0021 0 01-2-2V20H4v8h8zM28 30H20V28h8V20h2v8A2.0021 2.0021 0 0128 30zM30 12H28V4H20V2h8a2.0021 2.0021 0 012 2zM16 22a6 6 0 116-6A6.0067 6.0067 0 0116 22zm0-10a4 4 0 104 4A4.0045 4.0045 0 0016 12z" })), _circle16$3 || (_circle16$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle17$3 || (_circle17$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "7", r: "1" })), _circle18$2 || (_circle18$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "3", r: "1" })), _circle19$2 || (_circle19$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "25", r: "1" })), _circle20$2 || (_circle20$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "29", r: "1" })), _circle21$1 || (_circle21$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "16", r: "1" })), _circle22$1 || (_circle22$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "29", cy: "16", r: "1" })), _circle23$1 || (_circle23$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "16", r: "1" })), _circle24$1 || (_circle24$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "16", r: "1" })), _circle25$1 || (_circle25$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9.636", cy: "9.636", r: "1" })), _circle26$1 || (_circle26$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "7", r: "1" })), _circle27$1 || (_circle27$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22.364", cy: "22.364", r: "1" })), _circle28$1 || (_circle28$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "25", r: "1" })), _circle29$1 || (_circle29$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22.364", cy: "9.636", r: "1" })), _circle30$1 || (_circle30$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "25", cy: "7", r: "1" })), _circle31$1 || (_circle31$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9.636", cy: "22.364", r: "1" })), _circle32$1 || (_circle32$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), children); }); { NavaidNdbDme.propTypes = iconPropTypes; } var NavaidPrivate = /*#__PURE__*/React__default["default"].forwardRef(function NavaidPrivate(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$6 || (_path110$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,15V11a2.0023,2.0023,0,0,0-2-2H12V23h2V17h1.4807l2.3345,6H19.96l-2.333-6H18A2.0027,2.0027,0,0,0,20,15Zm-6-4h4v4H14Z" })), _path111$6 || (_path111$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { NavaidPrivate.propTypes = iconPropTypes; } var NavaidSeaplane = /*#__PURE__*/React__default["default"].forwardRef(function NavaidSeaplane(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$6 || (_path112$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,18a3.9962,3.9962,0,0,1-3,3.8579V17h2V15H17V13.8159a3.0007,3.0007,0,1,0-2,0V15H13v2h2v4.8579A3.9962,3.9962,0,0,1,12,18H10a6,6,0,0,0,12,0Zm-4-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Z" })), _path113$6 || (_path113$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14H27.8193A12.0112,12.0112,0,0,0,18,4.1807V2H14V4.1807A12.0112,12.0112,0,0,0,4.1807,14H2v4H4.1807A12.0112,12.0112,0,0,0,14,27.8193V30h4V27.8193A12.0112,12.0112,0,0,0,27.8193,18H30ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { NavaidSeaplane.propTypes = iconPropTypes; } var NavaidTacan = /*#__PURE__*/React__default["default"].forwardRef(function NavaidTacan(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle33$1 || (_circle33$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "14", r: "2" })), _path114$6 || (_path114$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,28H12a1,1,0,0,1-1-1V21.2656L7.2612,14.7231,2.4854,11.8574a1,1,0,0,1-.3536-1.3535l4-7a1,1,0,0,1,1.3828-.3613L12.2769,6h7.4462l4.7623-2.8574a1,1,0,0,1,1.3828.3613l4,7a1,1,0,0,1-.3536,1.3535l-4.7758,2.8657L21,21.2656V27A1,1,0,0,1,20,28Zm-7-2h6V20.7346l4.2616-7.4578,4.3844-2.6306L24.6387,5.3831,20.277,8H11.723L7.3613,5.3831,4.354,10.6462l4.3844,2.6306L13,20.7346Z" })), children); }); { NavaidTacan.propTypes = iconPropTypes; } var NavaidVhfor = /*#__PURE__*/React__default["default"].forwardRef(function NavaidVhfor(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$6 || (_path115$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,28H10a1,1,0,0,1-.8438-.4631l-7-11a1,1,0,0,1,0-1.0738l7-11A1,1,0,0,1,10,4H22a1,1,0,0,1,.8438.4631l7,11a1,1,0,0,1,0,1.0738l-7,11A1,1,0,0,1,22,28ZM10.5488,26H21.4512l6.3633-10L21.4512,6H10.5488L4.1855,16Z" })), _path116$6 || (_path116$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.5,24h-7a1.0005,1.0005,0,0,1-.8413-.4592l-4.5-7a1.0016,1.0016,0,0,1,0-1.0816l4.5-7A1.0005,1.0005,0,0,1,12.5,8h7a1.0005,1.0005,0,0,1,.8413.4592l4.5,7a1.0016,1.0016,0,0,1,0,1.0816l-4.5,7A1.0005,1.0005,0,0,1,19.5,24Zm-6.4541-2h5.9082l3.8569-6-3.8569-6H13.0459L9.189,16Z" })), children); }); { NavaidVhfor.propTypes = iconPropTypes; } var NavaidVor = /*#__PURE__*/React__default["default"].forwardRef(function NavaidVor(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle34$1 || (_circle34$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path117$6 || (_path117$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.8638,15.4961l-7-12A1,1,0,0,0,23,3H9a1,1,0,0,0-.8638.4961l-7,12a1,1,0,0,0,0,1.0078l7,12A1,1,0,0,0,9,29H23a1,1,0,0,0,.8638-.4961l7-12a1,1,0,0,0,0-1.0078ZM22.4258,27H9.5742L3.1577,16,9.5742,5H22.4258l6.4165,11Z" })), children); }); { NavaidVor.propTypes = iconPropTypes; } var NavaidVordme = /*#__PURE__*/React__default["default"].forwardRef(function NavaidVordme(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle35$1 || (_circle35$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path118$6 || (_path118$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,6a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2Zm-2,6.9258L22.9636,6H28ZM27.7637,16,20.491,26H11.509L4.2363,16,11.509,6h8.982ZM9.0364,6,4,12.9248V6ZM4,19.0752,9.0364,26H4ZM22.9636,26l5.0374-6.9263L28,26Z" })), children); }); { NavaidVordme.propTypes = iconPropTypes; } var NavaidVortac = /*#__PURE__*/React__default["default"].forwardRef(function NavaidVortac(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle36$1 || (_circle36$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "14", r: "2" })), _path119$6 || (_path119$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.8682,10.5039l-4-7a.9992.9992,0,0,0-1.3828-.3613L19.7231,6H12.2769L7.5146,3.1426a.9992.9992,0,0,0-1.3828.3613l-4,7a1,1,0,0,0,.3536,1.3535l4.7758,2.8657L11,21.2656V27a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V21.2656l3.7388-6.5425,4.7758-2.8657A1,1,0,0,0,29.8682,10.5039ZM18.8484,21H13.1516L8.5757,12.9922,11.4287,8h9.1426l2.853,4.9922Z" })), children); }); { NavaidVortac.propTypes = iconPropTypes; } var Need = /*#__PURE__*/React__default["default"].forwardRef(function Need(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$6 || (_path120$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.1211 16.8789A2.98 2.98 0 0027.01 16H27a2.9774 2.9774 0 00-2.1211.8789L19.9778 21.78A2.9943 2.9943 0 0017 19H10a5.0059 5.0059 0 00-5 5v.667L2 28.6631l1.6 1.2L7 25.333V24a3.0033 3.0033 0 013-3h7a1 1 0 010 2H13v2h4.9287a3.9717 3.9717 0 002.8286-1.1719L26.293 18.293A.9929.9929 0 0127 18h.0034a1 1 0 01.7036 1.707l-7.414 7.4141A2.9791 2.9791 0 0118.1714 28H11v2h7.1714a4.9665 4.9665 0 003.5356-1.4648l7.4141-7.4141a2.9989 2.9989 0 000-4.2422zM21.586 8.586L18 12 18 2 16 2 16 12 12.414 8.586 11 10 17 16 23 10 21.586 8.586z" })), children); }); { Need.propTypes = iconPropTypes; } var Network_1 = /*#__PURE__*/React__default["default"].forwardRef(function Network_1(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$6 || (_path121$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 20a4 4 0 114-4A4.0045 4.0045 0 0116 20zm0-6a2 2 0 102 2A2.0021 2.0021 0 0016 14zM5 20a4 4 0 114-4A4.0045 4.0045 0 015 20zm0-6a2 2 0 102 2A2.0023 2.0023 0 005 14zM10 31a4 4 0 114-4A4.0045 4.0045 0 0110 31zm0-6a2 2 0 102 2A2.0021 2.0021 0 0010 25zM22 31a4 4 0 114-4A4.0045 4.0045 0 0122 31zm0-6a2 2 0 102 2A2.0021 2.0021 0 0022 25zM27 20a4 4 0 114-4A4.0045 4.0045 0 0127 20zm0-6a2 2 0 102 2A2.0021 2.0021 0 0027 14zM22 9a4 4 0 114-4A4.0045 4.0045 0 0122 9zm0-6a2 2 0 102 2A2.0021 2.0021 0 0022 3zM10 9a4 4 0 114-4A4.0045 4.0045 0 0110 9zm0-6a2 2 0 102 2A2.0021 2.0021 0 0010 3z" })), children); }); { Network_1.propTypes = iconPropTypes; } var Network_2 = /*#__PURE__*/React__default["default"].forwardRef(function Network_2(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$6 || (_path122$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,17h5.1421a4,4,0,1,0,0-2H17V7h5.1421a4,4,0,1,0,0-2H17a2.0023,2.0023,0,0,0-2,2v8H9.8579a4,4,0,1,0,0,2H15v8a2.0023,2.0023,0,0,0,2,2h5.1421a4,4,0,1,0,0-2H17Zm9-3a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,14ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,18a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,18Zm20,6a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,24Z" })), children); }); { Network_2.propTypes = iconPropTypes; } var Network_3 = /*#__PURE__*/React__default["default"].forwardRef(function Network_3(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$6 || (_path123$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V22h8zm-6-2h4V24H24zM20 27H8A6 6 0 018 15h2v2H8a4 4 0 000 8H20z" })), _path124$6 || (_path124$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,20H12V12h8Zm-6-2h4V14H14Z" })), _path125$6 || (_path125$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 17H22V15h2a4 4 0 000-8H12V5H24a6 6 0 010 12zM10 10H2V2h8zM4 8H8V4H4z" })), children); }); { Network_3.propTypes = iconPropTypes; } var Network_3Reference = /*#__PURE__*/React__default["default"].forwardRef(function Network_3Reference(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$6 || (_path126$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM30 30H22V22h8zm-6-2h4V24H24zM20 20H12V12h8zm-6-2h4V14H14z" })), _path127$6 || (_path127$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 17H22V15h2a4 4 0 000-8H12V5H24a6 6 0 010 12zM10 10H2V2h8zM4 8H8V4H4z" })), children); }); { Network_3Reference.propTypes = iconPropTypes; } var Network_4 = /*#__PURE__*/React__default["default"].forwardRef(function Network_4(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle37$1 || (_circle37$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "26", r: "2" })), _circle38 || (_circle38 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "6", r: "2" })), _circle39 || (_circle39 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "16", r: "2" })), _path128$6 || (_path128$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12a3.9962,3.9962,0,0,0-3.8579,3H19.8579a3.9655,3.9655,0,0,0-5.4914-2.6426L11.19,8.3872A3.9626,3.9626,0,0,0,12,6a4,4,0,1,0-4,4,3.96,3.96,0,0,0,1.6338-.3574l3.176,3.97a3.9239,3.9239,0,0,0,0,4.7744l-3.1758,3.97A3.96,3.96,0,0,0,8,22a4,4,0,1,0,4,4,3.9624,3.9624,0,0,0-.81-2.3872l3.1758-3.97A3.9658,3.9658,0,0,0,19.8579,17h4.2842A3.9934,3.9934,0,1,0,28,12ZM6,6A2,2,0,1,1,8,8,2.0023,2.0023,0,0,1,6,6ZM8,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,28Zm8-10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,16,18Zm12,0a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,28,18Z" })), children); }); { Network_4.propTypes = iconPropTypes; } var Network_4Reference = /*#__PURE__*/React__default["default"].forwardRef(function Network_4Reference(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle40 || (_circle40 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "26", r: "2" })), _path129$6 || (_path129$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" })), _circle41 || (_circle41 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "6", r: "2" })), _circle42 || (_circle42 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "16", r: "2" })), _path130$6 || (_path130$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12a3.9962,3.9962,0,0,0-3.8579,3H19.8579a3.9655,3.9655,0,0,0-5.4914-2.6426L11.19,8.3872A3.9624,3.9624,0,0,0,12,6a4,4,0,1,0-4,4,3.96,3.96,0,0,0,1.6338-.3574l3.176,3.97A3.9613,3.9613,0,0,0,12,16a3.9915,3.9915,0,0,0,7.8579,1h4.2842A3.9934,3.9934,0,1,0,28,12ZM8,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,8Zm8,10a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,16,18Zm12,0a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,28,18Z" })), children); }); { Network_4Reference.propTypes = iconPropTypes; } var NetworkAdminControl = /*#__PURE__*/React__default["default"].forwardRef(function NetworkAdminControl(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$6 || (_path131$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 20.415L25.586 19 23 21.587 20.414 19 19 20.415 21.586 23 19 25.586 20.414 27 23 24.414 25.586 27 27 25.586 24.414 23 27 20.415zM24 4a4.0045 4.0045 0 00-4 4 3.951 3.951 0 00.5669 2.019L10.019 20.5669A3.9521 3.9521 0 008 20a4 4 0 104 4 3.951 3.951 0 00-.5669-2.019L21.981 11.4331A3.9521 3.9521 0 0024 12a4 4 0 000-8zM8 26a2 2 0 112-2A2.0023 2.0023 0 018 26zM24 10a2 2 0 112-2A2.0023 2.0023 0 0124 10zM8 11.18L5.41 8.59 4 10 8 14 15 7 13.59 5.59 8 11.18z" })), children); }); { NetworkAdminControl.propTypes = iconPropTypes; } var NetworkEnterprise = /*#__PURE__*/React__default["default"].forwardRef(function NetworkEnterprise(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$6 || (_path132$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7983,10a10,10,0,0,0-19.62.124A7.4964,7.4964,0,0,0,7.5,25H8V23H7.5a5.4961,5.4961,0,0,1-.377-10.9795l.8365-.0571.09-.8335A7.9934,7.9934,0,0,1,23.7368,10Z" })), _path133$6 || (_path133$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H18a2.0023,2.0023,0,0,0-2,2v4H12a2.0023,2.0023,0,0,0-2,2V30H30V14A2.0023,2.0023,0,0,0,28,12ZM12,28V20h4v8Zm16,0H18V14H28Z" })), _path134$6 || (_path134$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 16H22V20H20zM24 16H26V20H24zM20 22H22V26H20zM24 22H26V26H24z" })), children); }); { NetworkEnterprise.propTypes = iconPropTypes; } var NetworkOverlay = /*#__PURE__*/React__default["default"].forwardRef(function NetworkOverlay(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$6 || (_path135$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 23L13.83 23 16.41 20.41 15 19 10 24 15 29 16.41 27.59 13.83 25 22 25 22 23zM11 13L19.17 13 16.59 10.41 18 9 23 14 18 19 16.59 17.59 19.17 15 11 15 11 13z" })), _path136$6 || (_path136$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5,25H24V23h.5a5.4961,5.4961,0,0,0,.377-10.9795l-.8365-.0566-.09-.834a7.9979,7.9979,0,0,0-15.9014,0l-.09.834-.8365.0566A5.4961,5.4961,0,0,0,7.5,23H8v2H7.5A7.4964,7.4964,0,0,1,6.1782,10.124a9.9992,9.9992,0,0,1,19.6436,0A7.4964,7.4964,0,0,1,24.5,25Z" })), children); }); { NetworkOverlay.propTypes = iconPropTypes; } var NetworkPublic = /*#__PURE__*/React__default["default"].forwardRef(function NetworkPublic(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$6 || (_path137$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,13c-4.7,0-8.5,3.8-8.5,8.5s3.8,8.5,8.5,8.5s8.5-3.8,8.5-8.5S27.2,13,22.5,13z M29,21h-3c0-2-0.3-4-0.9-5.5 C27.2,16.5,28.8,18.5,29,21z M22.5,28C22.5,28,22.5,28,22.5,28c-0.4-0.2-1.3-1.8-1.5-5h2.9C23.7,26.2,22.9,27.8,22.5,28z M21,21 c0.1-3.8,1.1-5.8,1.4-6c0,0,0,0,0,0c0.4,0.2,1.4,2.2,1.5,6H21z M19.9,15.5C19.3,17,19.1,19,19,21h-3C16.2,18.5,17.8,16.5,19.9,15.5z M16.2,23H19c0.1,1.6,0.4,3.2,0.9,4.5C18.1,26.7,16.7,25,16.2,23z M25.1,27.5c0.5-1.3,0.8-2.8,0.9-4.5h2.9 C28.3,25,26.9,26.7,25.1,27.5z" })), _path138$6 || (_path138$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.8,10c-0.9-4.6-5-8-9.8-8c-4.8,0-8.9,3.4-9.8,8.1C2.7,10.8,0,13.8,0,17.5C0,21.6,3.4,25,7.5,25H11v-2H7.5 c-3,0-5.5-2.5-5.5-5.5c0-2.9,2.2-5.3,5.1-5.5L8,12L8,11.1C8.5,7.1,11.9,4,16,4c3.7,0,6.8,2.6,7.7,6H25.8z" })), children); }); { NetworkPublic.propTypes = iconPropTypes; } var NewTab = /*#__PURE__*/React__default["default"].forwardRef(function NewTab(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path139$6 || (_path139$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,13H3V3h5V2H3C2.4,2,2,2.4,2,3v10c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V8h-1V13z" })), _path140$6 || (_path140$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 3L13 1 12 1 12 3 10 3 10 4 12 4 12 6 13 6 13 4 15 4 15 3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$6 || (_path141$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,26H6V6H16V4H6A2.002,2.002,0,0,0,4,6V26a2.002,2.002,0,0,0,2,2H26a2.002,2.002,0,0,0,2-2V16H26Z" })), _path142$6 || (_path142$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,26H6V6H16V4H6A2.002,2.002,0,0,0,4,6V26a2.002,2.002,0,0,0,2,2H26a2.002,2.002,0,0,0,2-2V16H26Z" })), _path143$6 || (_path143$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 6L26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6 26 6z" })), children); }); { NewTab.propTypes = iconPropTypes; } var NextFilled = /*#__PURE__*/React__default["default"].forwardRef(function NextFilled(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$6 || (_path144$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2,16A14,14,0,1,0,16,2,14,14,0,0,0,2,16Zm6-1H20.15L14.57,9.3926,16,8l8,8-8,8-1.43-1.4272L20.15,17H8Z" })), _path145$6 || (_path145$6 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16 8L14.57 9.393 20.15 15 8 15 8 17 20.15 17 14.57 22.573 16 24 24 16 16 8z", "data-icon-path": "inner-path" })), children); }); { NextFilled.propTypes = iconPropTypes; } var NextOutline = /*#__PURE__*/React__default["default"].forwardRef(function NextOutline(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$6 || (_path146$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8L14.57 9.393 20.15 15 8 15 8 17 20.15 17 14.57 22.573 16 24 24 16 16 8z" })), _path147$6 || (_path147$6 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { NextOutline.propTypes = iconPropTypes; } var NoImage = /*#__PURE__*/React__default["default"].forwardRef(function NoImage(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$6 || (_path148$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 3.4141L28.5859 2 2 28.5859 3.4141 30l2-2H26a2.0027 2.0027 0 002-2V5.4141zM26 26H7.4141l7.7929-7.793 2.3788 2.3787a2 2 0 002.8284 0L22 19l4 3.9973zm0-5.8318l-2.5858-2.5859a2 2 0 00-2.8284 0L19 19.1682l-2.377-2.3771L26 7.4141zM6 22V19l5-4.9966 1.3733 1.3733 1.4159-1.416-1.375-1.375a2 2 0 00-2.8284 0L6 16.1716V6H22V4H6A2.002 2.002 0 004 6V22z" })), children); }); { NoImage.propTypes = iconPropTypes; } var NoTicket = /*#__PURE__*/React__default["default"].forwardRef(function NoTicket(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$6 || (_path149$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 6h-.5859L30 3.4141 28.5859 2 2 28.5859 3.4141 30l4-4H28a2.0027 2.0027 0 002-2V19a1 1 0 00-1-1 2 2 0 010-4 1 1 0 001-1V8A2.0023 2.0023 0 0028 6zm0 6.1265a4 4 0 000 7.7465V24H21V21H19v3H9.4141L19 14.4141V19h2V12.4141L25.4141 8H28zM4 12.1265V8H19V6H4A2.0023 2.0023 0 002 8v5a1 1 0 001 1 2 2 0 010 4 1 1 0 00-1 1v5H4V19.873a4 4 0 000-7.7465z" })), children); }); { NoTicket.propTypes = iconPropTypes; } var Nominal = /*#__PURE__*/React__default["default"].forwardRef(function Nominal(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path150$6 || (_path150$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,8 C13.6568542,8 15,9.34314575 15,11 C15,12.6568542 13.6568542,14 12,14 C10.3431458,14 9,12.6568542 9,11 C9,9.34314575 10.3431458,8 12,8 Z M4,8 C5.65685425,8 7,9.34314575 7,11 C7,12.6568542 5.65685425,14 4,14 C2.34314575,14 1,12.6568542 1,11 C1,9.34314575 2.34314575,8 4,8 Z M12,9 C10.8954305,9 10,9.8954305 10,11 C10,12.1045695 10.8954305,13 12,13 C13.1045695,13 14,12.1045695 14,11 C14,9.8954305 13.1045695,9 12,9 Z M4,9 C2.8954305,9 2,9.8954305 2,11 C2,12.1045695 2.8954305,13 4,13 C5.1045695,13 6,12.1045695 6,11 C6,9.8954305 5.1045695,9 4,9 Z M8,2 C9.65685425,2 11,3.34314575 11,5 C11,6.65685425 9.65685425,8 8,8 C6.34314575,8 5,6.65685425 5,5 C5,3.34314575 6.34314575,2 8,2 Z M8,3 C6.8954305,3 6,3.8954305 6,5 C6,6.1045695 6.8954305,7 8,7 C9.1045695,7 10,6.1045695 10,5 C10,3.8954305 9.1045695,3 8,3 Z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$6 || (_path151$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 28a6 6 0 116-6A6.0069 6.0069 0 0124 28zm0-10a4 4 0 104 4A4.0045 4.0045 0 0024 18zM8 28a6 6 0 116-6A6.0069 6.0069 0 018 28zM8 18a4 4 0 104 4A4.0045 4.0045 0 008 18zM16 14a6 6 0 116-6A6.0069 6.0069 0 0116 14zM16 4a4 4 0 104 4A4.0045 4.0045 0 0016 4z" })), children); }); { Nominal.propTypes = iconPropTypes; } var WatsonHealthNominate = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthNominate(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$6 || (_path152$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23H19a3 3 0 00-3 3v2h2V26a1 1 0 011-1h6a1 1 0 011 1v2h2V26A3 3 0 0025 23zM18 18a4 4 0 104-4A4 4 0 0018 18zm6 0a2 2 0 11-2-2A2 2 0 0124 18zM10 18.59L7.41 16 6 17.41 10 21.41 17 14.41 15.59 13 10 18.59z" })), _path153$6 || (_path153$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26H4V6h7.1716l3.4141,3.4143L15.1716,10H28v8h2V10a2,2,0,0,0-2-2H16L12.5859,4.5858A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z" })), children); }); { WatsonHealthNominate.propTypes = iconPropTypes; } var NonCertified = /*#__PURE__*/React__default["default"].forwardRef(function NonCertified(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$6 || (_path154$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 8H16V10H6zM6 12H14V14H6zM6 16H10V18H6z" })), _path155$6 || (_path155$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H7.4141L30,3.4141,28.5859,2l-2,2H4A2.0023,2.0023,0,0,0,2,6V22H4V6H24.5859L2,28.5859,3.4141,30l2-2H28a2.0023,2.0023,0,0,0,2-2V10H28Z" })), children); }); { NonCertified.propTypes = iconPropTypes; } var NoodleBowl = /*#__PURE__*/React__default["default"].forwardRef(function NoodleBowl(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$6 || (_path156$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.4141,15l-8-8L2,8.4141,8.5859,15H2v1a14,14,0,0,0,28,0V15ZM16,28A12.0166,12.0166,0,0,1,4.0415,17h23.917A12.0166,12.0166,0,0,1,16,28Z" })), _path157$6 || (_path157$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,8a5.0049,5.0049,0,0,0-1.5708.2554A8.0242,8.0242,0,0,0,14,5,7.9364,7.9364,0,0,0,9.0938,6.68L4.4141,2,3,3.4141,9.05,9.4648l.707-.7075A5.96,5.96,0,0,1,14,7a6.02,6.02,0,0,1,4.6875,2.2642,5.06,5.06,0,0,0-.59.61A2.9892,2.9892,0,0,1,15.7544,11H12v2h3.7544a4.98,4.98,0,0,0,3.9033-1.8745A3,3,0,0,1,25,13h2A5.0059,5.0059,0,0,0,22,8Z" })), children); }); { NoodleBowl.propTypes = iconPropTypes; } var NotAvailable = /*#__PURE__*/React__default["default"].forwardRef(function NotAvailable(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$6 || (_path158$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 15H14V17H4zM18 15H28V17H18z" })), children); }); { NotAvailable.propTypes = iconPropTypes; } var NotSent = /*#__PURE__*/React__default["default"].forwardRef(function NotSent(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$6 || (_path159$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 28.59L3.41 2 2 3.41l8 8L2.66 14.06a1 1 0 000 1.87l9.6 3.84 3.84 9.6A1 1 0 0017 30h0a1 1 0 00.92-.66L20.6 22l8 8zM5.8 15L11.54 13l3.05 3-1.83 1.83zM17 26.2l-2.79-7L16 17.41l3 3.05zM15.69 11.45l7.64-2.78-2.78 7.64 1.56 1.56L25.94 7.34a1 1 0 00-1.28-1.28L14.13 9.89z" })), children); }); { NotSent.propTypes = iconPropTypes; } var NotSentFilled = /*#__PURE__*/React__default["default"].forwardRef(function NotSentFilled(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$6 || (_path160$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 28.59L3.41 2 2 3.41l8 8L2.66 14.06a1 1 0 000 1.87l8.59 3.43L14.59 16 16 17.41l-3.37 3.37 3.44 8.59A1 1 0 0017 30h0a1 1 0 00.92-.66L20.6 22l8 8zM22.49 16.83l3.45-9.49a1 1 0 00-1.28-1.28L15.17 9.51z" })), children); }); { NotSentFilled.propTypes = iconPropTypes; } var Notebook = /*#__PURE__*/React__default["default"].forwardRef(function Notebook(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$6 || (_path161$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 10H26V12H19zM19 15H26V17H19zM19 20H26V22H19z" })), _path162$6 || (_path162$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,5H4A2.002,2.002,0,0,0,2,7V25a2.0023,2.0023,0,0,0,2,2H28a2.0027,2.0027,0,0,0,2-2V7A2.0023,2.0023,0,0,0,28,5ZM4,7H15V25H4ZM17,25V7H28l.002,18Z" })), children); }); { Notebook.propTypes = iconPropTypes; } var NotebookReference = /*#__PURE__*/React__default["default"].forwardRef(function NotebookReference(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$6 || (_path163$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 7.586 22 2 27.586 3.414 29 9 23.414 9 27 11 27 11 20 4 20zM19 10H26V12H19zM19 15H26V17H19zM19 20H26V22H19z" })), _path164$6 || (_path164$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,5H4A2.002,2.002,0,0,0,2,7V17H4V7H15V27H28a2.002,2.002,0,0,0,2-2V7A2.002,2.002,0,0,0,28,5ZM17,25V7H28l.0015,18Z" })), children); }); { NotebookReference.propTypes = iconPropTypes; } var Notification = /*#__PURE__*/React__default["default"].forwardRef(function Notification(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path165$6 || (_path165$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.4,10.1L13,8.8V6.5c0-2.6-1.9-4.7-4.5-5v-1h-1v1C5,1.8,3,3.9,3,6.5v2.3l-1.4,1.3c-0.1,0.1-0.2,0.2-0.1,0.4V12 c0,0.3,0.2,0.5,0.4,0.5c0,0,0,0,0.1,0h3.5C5.5,13.9,6.6,15,8,15s2.5-1.1,2.5-2.5H14c0.3,0,0.5-0.2,0.5-0.4c0,0,0,0,0-0.1v-1.5 C14.5,10.4,14.4,10.2,14.4,10.1z M8,14c-0.8,0-1.5-0.7-1.5-1.5h3C9.5,13.3,8.8,14,8,14z M13.5,11.5h-11v-0.8l1.3-1.4 C3.9,9.3,4,9.1,4,9V6.5c0-2.2,1.8-4,4-4s4,1.8,4,4V9c0,0.1,0.1,0.3,0.1,0.4l1.4,1.3V11.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$6 || (_path166$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.7071,19.293,26,16.5859V13a10.0136,10.0136,0,0,0-9-9.9492V1H15V3.0508A10.0136,10.0136,0,0,0,6,13v3.5859L3.2929,19.293A1,1,0,0,0,3,20v3a1,1,0,0,0,1,1h7v.7768a5.152,5.152,0,0,0,4.5,5.1987A5.0057,5.0057,0,0,0,21,25V24h7a1,1,0,0,0,1-1V20A1,1,0,0,0,28.7071,19.293ZM19,25a3,3,0,0,1-6,0V24h6Zm8-3H5V20.4141L7.707,17.707A1,1,0,0,0,8,17V13a8,8,0,0,1,16,0v4a1,1,0,0,0,.293.707L27,20.4141Z" })), children); }); { Notification.propTypes = iconPropTypes; } var NotificationFilled = /*#__PURE__*/React__default["default"].forwardRef(function NotificationFilled(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$6 || (_path167$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.707,19.293,26,16.5859V13a10.0136,10.0136,0,0,0-9-9.9492V1H15V3.0508A10.0136,10.0136,0,0,0,6,13v3.5859L3.293,19.293A.9993.9993,0,0,0,3,20v3a1,1,0,0,0,1,1h7v1a5,5,0,0,0,10,0V24h7a1,1,0,0,0,1-1V20A.9993.9993,0,0,0,28.707,19.293ZM19,25a3,3,0,0,1-6,0V24h6Z" })), children); }); { NotificationFilled.propTypes = iconPropTypes; } var NotificationNew = /*#__PURE__*/React__default["default"].forwardRef(function NotificationNew(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$6 || (_path168$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,16.5859V14H24v3a1,1,0,0,0,.293.707L27,20.4141V22H5V20.4141L7.707,17.707A1,1,0,0,0,8,17V13A7.9854,7.9854,0,0,1,20,6.0825V3.8467a9.896,9.896,0,0,0-3-.7959V1H15V3.0508A10.0136,10.0136,0,0,0,6,13v3.5859L3.293,19.293A1,1,0,0,0,3,20v3a1,1,0,0,0,1,1h7v1a5,5,0,0,0,10,0V24h7a1,1,0,0,0,1-1V20a1,1,0,0,0-.293-.707ZM19,25a3,3,0,0,1-6,0V24h6Z" })), _circle43 || (_circle43 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "8", r: "4" })), children); }); { NotificationNew.propTypes = iconPropTypes; } var NotificationOff = /*#__PURE__*/React__default["default"].forwardRef(function NotificationOff(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$6); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path169$6 || (_path169$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.5 11.5v-.8l1.3-1.4C3.9 9.3 4 9.1 4 9V6.5c0-2.2 1.8-4 4-4 .9 0 1.8.3 2.5.9l.7-.7C10.5 2 9.5 1.6 8.5 1.5v-1h-1v1C5 1.8 3 3.9 3 6.5v2.3l-1.4 1.3c-.1.1-.2.2-.1.4v1H2.5zM13 8.8V6.5c0-.8-.2-1.6-.5-2.2L15 1.7 14.3 1 1 14.3 1.7 15l2.5-2.5h1.3C5.5 13.9 6.6 15 8 15s2.5-1.1 2.5-2.5H14c.3 0 .5-.2.5-.4 0 0 0 0 0-.1v-1.5c0-.1-.1-.3-.1-.4L13 8.8zM8 14c-.8 0-1.5-.7-1.5-1.5h3C9.5 13.3 8.8 14 8 14zM13.5 11.5H5.2L11.7 5C11.9 5.5 12 6 12 6.5V9c0 .1.1.3.1.4l1.4 1.3V11.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$6 || (_path170$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 16.5859V13a9.9217 9.9217 0 00-1.0833-4.5024L30 3.4141 28.5859 2 2 28.5859 3.4141 30l6-6H11v1a5 5 0 0010 0V24h7a1 1 0 001-1V20a1 1 0 00-.293-.707zM19 25a3 3 0 01-6 0V24h6zm8-3H11.4141L23.4119 10.0024A7.949 7.949 0 0124 13v4a1 1 0 00.293.707L27 20.4141zM7.707 17.707A1 1 0 008 17V13a8.0092 8.0092 0 018-8 7.9253 7.9253 0 014.9857 1.7681l1.4264-1.4263A9.934 9.934 0 0017 3.0508V1H15V3.0508A10.0136 10.0136 0 006 13v3.5859l-3 3L4.4141 21z" })), children); }); { NotificationOff.propTypes = iconPropTypes; } var NotificationOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function NotificationOffFilled(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$6 || (_path171$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 16.5859V13a9.8828 9.8828 0 00-1.0869-4.499L30 3.4141 28.5859 2 2 28.5859 3.4141 30l6-6H11v1a5 5 0 0010 0V24h7a1 1 0 001-1V20a.9993.9993 0 00-.293-.707zM19 25a3 3 0 01-6 0V24h6zM21.61 4.7383A9.9256 9.9256 0 0017 3.0508V1H15V3.0508A10.0136 10.0136 0 006 13v3.5859L3.293 19.293A.9993.9993 0 003 20v3a.9738.9738 0 00.0585.29z" })), children); }); { NotificationOffFilled.propTypes = iconPropTypes; } var Number_0 = /*#__PURE__*/React__default["default"].forwardRef(function Number_0(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$6 || (_path172$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,23H14a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V21A2,2,0,0,1,18,23ZM14,11h0V21h4V11Z" })), _path173$6 || (_path173$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 15H17V17H15z" })), children); }); { Number_0.propTypes = iconPropTypes; } var Number_1 = /*#__PURE__*/React__default["default"].forwardRef(function Number_1(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$6 || (_path174$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10V22h0V10m1-1H12v2h3V21H12v2h8V21H17V9Z" })), children); }); { Number_1.propTypes = iconPropTypes; } var Number_2 = /*#__PURE__*/React__default["default"].forwardRef(function Number_2(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$6 || (_path175$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,23H12V17a2,2,0,0,1,2-2h4V11H12V9h6a2,2,0,0,1,2,2v4a2,2,0,0,1-2,2H14v4h6Z" })), children); }); { Number_2.propTypes = iconPropTypes; } var Number_3 = /*#__PURE__*/React__default["default"].forwardRef(function Number_3(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$6 || (_path176$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,9H12v2h6v4H14v2h4v4H12v2h6a2,2,0,0,0,2-2V11A2,2,0,0,0,18,9Z" })), children); }); { Number_3.propTypes = iconPropTypes; } var Number_4 = /*#__PURE__*/React__default["default"].forwardRef(function Number_4(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$6 || (_path177$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,10v8h0V10m1-1H17v8H14V9H12V19h5v4h2V19h1V17H19V9Z" })), children); }); { Number_4.propTypes = iconPropTypes; } var Number_5 = /*#__PURE__*/React__default["default"].forwardRef(function Number_5(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path178$6 || (_path178$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,23H12V21h6V17H12V9h8v2H14v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,23Z" })), children); }); { Number_5.propTypes = iconPropTypes; } var Number_6 = /*#__PURE__*/React__default["default"].forwardRef(function Number_6(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$6 || (_path179$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,14H14V11h5V9H14a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V16A2,2,0,0,0,18,14Zm-4,7V16h4v5Z" })), children); }); { Number_6.propTypes = iconPropTypes; } var Number_7 = /*#__PURE__*/React__default["default"].forwardRef(function Number_7(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$6 || (_path180$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9L12 9 12 13 14 13 14 11 17.85 11 13 23 15.16 23 20 11 20 9z" })), children); }); { Number_7.propTypes = iconPropTypes; } var Number_8 = /*#__PURE__*/React__default["default"].forwardRef(function Number_8(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$6 || (_path181$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,9H14a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V11A2,2,0,0,0,18,9Zm0,2v4H14V11ZM14,21V17h4v4Z" })), children); }); { Number_8.propTypes = iconPropTypes; } var Number_9 = /*#__PURE__*/React__default["default"].forwardRef(function Number_9(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$6 || (_path182$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,9H14a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2h4v3H13v2h5a2,2,0,0,0,2-2V11A2,2,0,0,0,18,9Zm0,7H14V11h4Z" })), children); }); { Number_9.propTypes = iconPropTypes; } var NumberSmall_0 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_0(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$6 || (_path183$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,21H15a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,17,21Zm-2-8v6h2V13Z" })), children); }); { NumberSmall_0.propTypes = iconPropTypes; } var NumberSmall_1 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_1(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$6 || (_path184$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 19L17 11 15 11 15 12 13 12 13 14 15 14 15 19 13 19 13 21 19 21 19 19 17 19z" })), children); }); { NumberSmall_1.propTypes = iconPropTypes; } var NumberSmall_2 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_2(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$6 || (_path185$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,21H13V17a2,2,0,0,1,2-2h2V13H13V11h4a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H15v2h4Z" })), children); }); { NumberSmall_2.propTypes = iconPropTypes; } var NumberSmall_3 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_3(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$6 || (_path186$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,11H13v2h4v2H14v2h3v2H13v2h4a2,2,0,0,0,2-2V13A2,2,0,0,0,17,11Z" })), children); }); { NumberSmall_3.propTypes = iconPropTypes; } var NumberSmall_4 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_4(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$6 || (_path187$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 11L17 15 15 15 15 11 13 11 13 17 17 17 17 21 19 21 19 11 17 11z" })), children); }); { NumberSmall_4.propTypes = iconPropTypes; } var NumberSmall_5 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_5(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$6 || (_path188$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,21H13V19h4V17H13V11h6v2H15v2h2a2,2,0,0,1,2,2v2A2,2,0,0,1,17,21Z" })), children); }); { NumberSmall_5.propTypes = iconPropTypes; } var NumberSmall_6 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_6(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$6 || (_path189$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,21H15a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3v2H15v2h2a2,2,0,0,1,2,2v2A2,2,0,0,1,17,21Zm-2-4v2h2V17Z" })), children); }); { NumberSmall_6.propTypes = iconPropTypes; } var NumberSmall_7 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_7(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$6 || (_path190$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.44 21L14.44 21 17 13 15 13 15 14 13 14 13 11 19 11 19 13 16.44 21z" })), children); }); { NumberSmall_7.propTypes = iconPropTypes; } var NumberSmall_8 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_8(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$6 || (_path191$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,11H15a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V13A2,2,0,0,0,17,11Zm0,2v2H15V13Zm-2,6V17h2v2Z" })), children); }); { NumberSmall_8.propTypes = iconPropTypes; } var NumberSmall_9 = /*#__PURE__*/React__default["default"].forwardRef(function NumberSmall_9(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$6 || (_path192$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,21H14V19h3V17H15a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,17,21Zm-2-8v2h2V13Z" })), children); }); { NumberSmall_9.propTypes = iconPropTypes; } var ObjectStorage = /*#__PURE__*/React__default["default"].forwardRef(function ObjectStorage(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$6 || (_path193$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20H26v2h2v6H4V22H14V20H4a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V22A2.0023,2.0023,0,0,0,28,20Z" })), _circle44 || (_circle44 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path194$6 || (_path194$6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 8H22v6H16v8h8V16h6zM22 20H18V16h4zm6-6H24V10h4zM18 10H10V2h8zM12 8h4V4H12z" })), children); }); { ObjectStorage.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$5, _circle$5, _path2$5, _path3$5, _circle2$5, _circle3$5, _circle4$4, _path4$5, _path5$5, _path6$5, _path7$5, _path8$5, _path9$5, _path10$5, _path11$5, _path12$5, _path13$5, _path14$5, _path15$5, _path16$5, _path17$5, _path18$5, _path19$5, _path20$5, _path21$5, _path22$5, _path23$5, _path24$5, _path25$5, _path26$5, _path27$5, _path28$5, _path29$5, _path30$5, _path31$5, _path32$5, _path33$5, _path34$5, _path35$5, _path36$5, _path37$5, _circle5$4, _circle6$4, _circle7$4, _circle8$4, _circle9$4, _circle10$4, _path38$5, _path39$5, _path40$5, _path41$5, _path42$5, _path43$5, _path44$5, _path45$5, _path46$5, _path47$5, _path48$5, _path49$5, _path50$5, _path51$5, _path52$5, _path53$5, _path54$5, _path55$5, _path56$5, _path57$5, _path58$5, _path59$5, _path60$5, _path61$5, _path62$5, _path63$5, _path64$5, _path65$5, _path66$5, _path67$5, _path68$5, _path69$5, _path70$5, _path71$5, _path72$5, _circle11$4, _path73$5, _path74$5, _path75$5, _path76$5, _path77$5, _path78$5, _path79$5, _path80$5, _path81$5, _path82$5, _path83$5, _path84$5, _path85$5, _path86$5, _path87$5, _path88$5, _path89$5, _path90$5, _path91$5, _path92$5, _path93$5, _path94$5, _path95$5, _path96$5, _path97$5, _path98$5, _path99$5, _path100$5, _path101$5, _path102$5, _path103$5, _path104$5, _path105$5, _path106$5, _path107$5, _path108$5, _circle12$3, _circle13$3, _circle14$2, _path109$5, _path110$5, _path111$5, _path112$5, _path113$5, _path114$5, _path115$5, _path116$5, _path117$5, _path118$5, _path119$5, _circle15$2, _circle16$2, _circle17$2, _path120$5, _path121$5, _path122$5, _path123$5, _path124$5, _path125$5, _path126$5, _path127$5, _path128$5, _path129$5, _path130$5, _path131$5, _path132$5, _path133$5, _path134$5, _path135$5, _path136$5, _path137$5, _path138$5, _path139$5, _path140$5, _path141$5, _path142$5, _path143$5, _path144$5, _path145$5, _path146$5, _path147$5, _path148$5, _path149$5, _path150$5, _path151$5, _path152$5, _path153$5, _path154$5, _path155$5, _path156$5, _path157$5, _path158$5, _path159$5, _path160$5, _path161$5, _path162$5, _path163$5, _path164$5, _path165$5, _path166$5, _path167$5, _path168$5, _path169$5, _path170$5, _path171$5, _path172$5, _path173$5, _path174$5, _path175$5, _path176$5, _path177$5, _path178$5, _path179$5, _path180$5, _path181$5, _path182$5, _path183$5, _path184$5, _path185$5, _path186$5, _path187$5, _path188$5, _path189$5, _path190$5, _path191$5, _path192$5, _path193$5, _path194$5, _path195$5, _path196$5, _path197$5, _path198$5, _path199$5, _path200$5, _path201$5, _path202$5, _path203$5, _path204$5, _path205$5, _path206$5, _path207$5, _path208$5, _path209$5, _path210$5, _path211$5, _path212$4, _path213$4, _path214$4, _path215$3, _path216$3, _path217$3, _path218$2, _path219$2, _path220$2, _path221$2, _path222$2, _path223$2, _path224$2; var _excluded$a = ["children", "size"], _excluded2$5 = ["children", "size"], _excluded3$5 = ["children", "size"], _excluded4$5 = ["children", "size"], _excluded5$5 = ["children", "size"], _excluded6$5 = ["children", "size"], _excluded7$5 = ["children", "size"], _excluded8$5 = ["children", "size"], _excluded9$5 = ["children", "size"], _excluded10$5 = ["children", "size"], _excluded11$5 = ["children", "size"], _excluded12$5 = ["children", "size"], _excluded13$5 = ["children", "size"], _excluded14$5 = ["children", "size"], _excluded15$5 = ["children", "size"], _excluded16$5 = ["children", "size"], _excluded17$5 = ["children", "size"], _excluded18$5 = ["children", "size"], _excluded19$5 = ["children", "size"], _excluded20$5 = ["children", "size"], _excluded21$5 = ["children", "size"], _excluded22$5 = ["children", "size"], _excluded23$5 = ["children", "size"], _excluded24$5 = ["children", "size"], _excluded25$5 = ["children", "size"], _excluded26$5 = ["children", "size"], _excluded27$5 = ["children", "size"], _excluded28$5 = ["children", "size"], _excluded29$5 = ["children", "size"], _excluded30$5 = ["children", "size"], _excluded31$5 = ["children", "size"], _excluded32$5 = ["children", "size"], _excluded33$5 = ["children", "size"], _excluded34$5 = ["children", "size"], _excluded35$5 = ["children", "size"], _excluded36$5 = ["children", "size"], _excluded37$5 = ["children", "size"], _excluded38$5 = ["children", "size"], _excluded39$5 = ["children", "size"], _excluded40$5 = ["children", "size"], _excluded41$5 = ["children", "size"], _excluded42$5 = ["children", "size"], _excluded43$5 = ["children", "size"], _excluded44$5 = ["children", "size"], _excluded45$5 = ["children", "size"], _excluded46$5 = ["children", "size"], _excluded47$5 = ["children", "size"], _excluded48$5 = ["children", "size"], _excluded49$5 = ["children", "size"], _excluded50$5 = ["children", "size"], _excluded51$5 = ["children", "size"], _excluded52$5 = ["children", "size"], _excluded53$5 = ["children", "size"], _excluded54$5 = ["children", "size"], _excluded55$5 = ["children", "size"], _excluded56$5 = ["children", "size"], _excluded57$5 = ["children", "size"], _excluded58$5 = ["children", "size"], _excluded59$5 = ["children", "size"], _excluded60$5 = ["children", "size"], _excluded61$5 = ["children", "size"], _excluded62$5 = ["children", "size"], _excluded63$5 = ["children", "size"], _excluded64$5 = ["children", "size"], _excluded65$5 = ["children", "size"], _excluded66$5 = ["children", "size"], _excluded67$5 = ["children", "size"], _excluded68$5 = ["children", "size"], _excluded69$5 = ["children", "size"], _excluded70$5 = ["children", "size"], _excluded71$5 = ["children", "size"], _excluded72$5 = ["children", "size"], _excluded73$5 = ["children", "size"], _excluded74$5 = ["children", "size"], _excluded75$5 = ["children", "size"], _excluded76$5 = ["children", "size"], _excluded77$5 = ["children", "size"], _excluded78$5 = ["children", "size"], _excluded79$5 = ["children", "size"], _excluded80$5 = ["children", "size"], _excluded81$5 = ["children", "size"], _excluded82$5 = ["children", "size"], _excluded83$5 = ["children", "size"], _excluded84$5 = ["children", "size"], _excluded85$5 = ["children", "size"], _excluded86$5 = ["children", "size"], _excluded87$5 = ["children", "size"], _excluded88$5 = ["children", "size"], _excluded89$5 = ["children", "size"], _excluded90$5 = ["children", "size"], _excluded91$5 = ["children", "size"], _excluded92$5 = ["children", "size"], _excluded93$5 = ["children", "size"], _excluded94$5 = ["children", "size"], _excluded95$5 = ["children", "size"], _excluded96$5 = ["children", "size"], _excluded97$5 = ["children", "size"], _excluded98$5 = ["children", "size"], _excluded99$5 = ["children", "size"], _excluded100$5 = ["children", "size"], _excluded101$5 = ["children", "size"], _excluded102$5 = ["children", "size"], _excluded103$5 = ["children", "size"], _excluded104$5 = ["children", "size"], _excluded105$5 = ["children", "size"], _excluded106$5 = ["children", "size"], _excluded107$5 = ["children", "size"], _excluded108$5 = ["children", "size"], _excluded109$5 = ["children", "size"], _excluded110$5 = ["children", "size"], _excluded111$5 = ["children", "size"], _excluded112$5 = ["children", "size"], _excluded113$5 = ["children", "size"], _excluded114$5 = ["children", "size"], _excluded115$5 = ["children", "size"], _excluded116$5 = ["children", "size"], _excluded117$5 = ["children", "size"], _excluded118$5 = ["children", "size"], _excluded119$5 = ["children", "size"], _excluded120$5 = ["children", "size"], _excluded121$5 = ["children", "size"], _excluded122$5 = ["children", "size"], _excluded123$5 = ["children", "size"], _excluded124$4 = ["children", "size"], _excluded125$4 = ["children", "size"]; var ObjectStorageAlt = /*#__PURE__*/React__default["default"].forwardRef(function ObjectStorageAlt(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$a); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$5 || (_path$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20H26v2h2v6H4V22H14V20H4a2.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" })), _circle$5 || (_circle$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path2$5 || (_path2$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,14a2.981,2.981,0,0,0-2.0374.811l-4.0039-2.4023A2.9578,2.9578,0,0,0,15,12a2.9578,2.9578,0,0,0-.0413-.4087L18.9626,9.189A2.9909,2.9909,0,1,0,18,7a2.9345,2.9345,0,0,0,.0415.4092L14.0376,9.8115a3,3,0,1,0,0,4.377l4.0039,2.4023A2.9345,2.9345,0,0,0,18,17a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,6Zm-9,7a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,12,13Zm9,5a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,21,18Z" })), children); }); { ObjectStorageAlt.propTypes = iconPropTypes; } var ObservedHail = /*#__PURE__*/React__default["default"].forwardRef(function ObservedHail(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$5 || (_path3$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), _circle2$5 || (_circle2$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13.5", cy: "23.5", r: "1.5" })), _circle3$5 || (_circle3$5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10.5", cy: "19.5", r: "1.5" })), _circle4$4 || (_circle4$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16.5", cy: "19.5", r: "1.5" })), _path4$5 || (_path4$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.964 14.5H17.036V16.499H11.964z", transform: "rotate(-45 14.5 15.5)" })), _path5$5 || (_path5$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.964 14.5H23.035999999999998V16.499H17.964z", transform: "rotate(-45 20.5 15.5)" })), children); }); { ObservedHail.propTypes = iconPropTypes; } var ObservedLightning = /*#__PURE__*/React__default["default"].forwardRef(function ObservedLightning(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$5 || (_path6$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.67 24L13.934 23 16.221 19 12.332 19 16.325 12 18.062 13 15.778 17 19.668 17 15.67 24z" })), _path7$5 || (_path7$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), children); }); { ObservedLightning.propTypes = iconPropTypes; } var Omega = /*#__PURE__*/React__default["default"].forwardRef(function Omega(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$5 || (_path8$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.7373,25A14.3093,14.3093,0,0,0,27,15C27,8.42,22.58,4,16,4S5,8.42,5,15A14.3093,14.3093,0,0,0,9.2627,25H4v2h8V24.7617A12.5683,12.5683,0,0,1,7,15c0-5.4673,3.5327-9,9-9s9,3.5327,9,9a12.5683,12.5683,0,0,1-5,9.7617V27h8V25Z" })), children); }); { Omega.propTypes = iconPropTypes; } var Opacity = /*#__PURE__*/React__default["default"].forwardRef(function Opacity(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$5 || (_path9$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H10V10H6zM10 10H14V14H10zM14 6H18V10H14zM22 6H26V10H22zM6 14H10V18H6zM14 14H18V18H14zM22 14H26V18H22zM6 22H10V26H6zM14 22H18V26H14zM22 22H26V26H22zM18 10H22V14H18zM10 18H14V22H10zM18 18H22V22H18z" })), children); }); { Opacity.propTypes = iconPropTypes; } var OpenPanelBottom = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelBottom(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$5 || (_path10$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,2V18H4V6ZM4,26V20H28v6Z" })), children); }); { OpenPanelBottom.propTypes = iconPropTypes; } var OpenPanelFilledBottom = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelFilledBottom(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$5 || (_path11$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,2V18H4V6Z" })), children); }); { OpenPanelFilledBottom.propTypes = iconPropTypes; } var OpenPanelFilledLeft = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelFilledLeft(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$5 || (_path12$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,22H12V6H28Z" })), children); }); { OpenPanelFilledLeft.propTypes = iconPropTypes; } var OpenPanelFilledRight = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelFilledRight(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$5 || (_path13$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM4,6H20V26H4Z" })), children); }); { OpenPanelFilledRight.propTypes = iconPropTypes; } var OpenPanelFilledTop = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelFilledTop(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$5 || (_path14$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM4,26V14H28V26Z" })), children); }); { OpenPanelFilledTop.propTypes = iconPropTypes; } var OpenPanelLeft = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelLeft(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$5 || (_path15$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM4,6h6V26H4ZM28,26H12V6H28Z" })), children); }); { OpenPanelLeft.propTypes = iconPropTypes; } var OpenPanelRight = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelRight(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$5 || (_path16$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM4,6H20V26H4ZM28,26H22V6h6Z" })), children); }); { OpenPanelRight.propTypes = iconPropTypes; } var OpenPanelTop = /*#__PURE__*/React__default["default"].forwardRef(function OpenPanelTop(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$5 || (_path17$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Zm0,2v6H4V6ZM4,26V14H28V26Z" })), children); }); { OpenPanelTop.propTypes = iconPropTypes; } var QOperation = /*#__PURE__*/React__default["default"].forwardRef(function QOperation(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$5 || (_path18$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 26L21 26 26 16 21 6 23 6 28 16 23 26zM4 6H6V26H4zM16 9H12a2 2 0 00-2 2V21a2 2 0 002 2h4a2 2 0 002-2V11A2 2 0 0016 9zm0 12H12V11h4z" })), _path19$5 || (_path19$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 15H15V17H13z" })), children); }); { QOperation.propTypes = iconPropTypes; } var QOperationGauge = /*#__PURE__*/React__default["default"].forwardRef(function QOperationGauge(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$5 || (_path20$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 4L24 4 24 6 27.75 6 24 10 24 12 30 12 30 10 26.38 10 30 6 30 4zM20 17.62L22.08 14l-1.73-1-2.18 3.76A12 12 0 002 28H4a10 10 0 0113.16-9.48L14 24a2 2 0 102 2 2 2 0 00-.27-1L19 19.35A10 10 0 0124 28h2A12 12 0 0020 17.62z" })), children); }); { QOperationGauge.propTypes = iconPropTypes; } var QOperationIf = /*#__PURE__*/React__default["default"].forwardRef(function QOperationIf(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$5 || (_path21$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 13H14V23H12zM12 9H14V11H12zM23 11V9H20a2 2 0 00-2 2v2H16v2h2v8h2V15h3V13H20V11z" })), children); }); { QOperationIf.propTypes = iconPropTypes; } var OperationsField = /*#__PURE__*/React__default["default"].forwardRef(function OperationsField(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$5 || (_path22$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 6H26V8H16z", transform: "rotate(-90 21 7)" })), _path23$5 || (_path23$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 6H30V8H20z", transform: "rotate(-90 25 7)" })), _path24$5 || (_path24$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 6H34V8H24z", transform: "rotate(-90 29 7)" })), _path25$5 || (_path25$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,20a3.9123,3.9123,0,0,1-4-4,3.9123,3.9123,0,0,1,4-4V10a6,6,0,1,0,6,6H20A3.9123,3.9123,0,0,1,16,20Z" })), _path26$5 || (_path26$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8928,18.4536,26.0979,16,24.78,17.5044l2.7922,2.4517-2.36,4.0878-3.4273-1.1591a9.0315,9.0315,0,0,1-2.7143,1.5644L18.36,28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713l-3.4468,1.166-2.36-4.0878L7.1528,17.561a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.0439,6.7886,7.9561l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H16V2H13.64a2,2,0,0,0-1.9611,1.6079l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0615a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.0439a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4946,5,15.7446,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025l2.3606,4.0878a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H18.36a2,2,0,0,0,1.9611-1.6079l.5037-2.5186a10.9666,10.9666,0,0,0,1.3267-.7534l2.4194.8184a1.9977,1.9977,0,0,0,2.3728-.8946l2.3606-4.0878A2.0006,2.0006,0,0,0,28.8928,18.4536Z" })), children); }); { OperationsField.propTypes = iconPropTypes; } var OperationsRecord = /*#__PURE__*/React__default["default"].forwardRef(function OperationsRecord(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$5 || (_path27$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20H30V22H20zM20 24H30V26H20zM20 28H30V30H20zM16 20a3.9123 3.9123 0 01-4-4 3.9123 3.9123 0 014-4 3.9123 3.9123 0 014 4h2a6 6 0 10-6 6z" })), _path28$5 || (_path28$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3047,11.0439,26.9441,6.9561a1.9977,1.9977,0,0,0-2.3728-.8946l-2.4341.8233a11.0419,11.0419,0,0,0-1.312-.7583l-.5037-2.5186A2,2,0,0,0,18.36,2H13.64a2,2,0,0,0-1.9611,1.6079l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0615a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.0439a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4946,5,15.7446,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025l2.3606,4.0878a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H16V28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713l-3.4468,1.166-2.36-4.0878L7.1528,17.561a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.0439,6.7886,7.9561l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H18.36l.71,3.5508a9.0978,9.0978,0,0,1,2.6948,1.5713l3.4468-1.166,2.36,4.0878-2.7978,2.4522L26.0923,16l2.8-2.4536A2.0006,2.0006,0,0,0,29.3047,11.0439Z" })), children); }); { OperationsRecord.propTypes = iconPropTypes; } var OrderDetails = /*#__PURE__*/React__default["default"].forwardRef(function OrderDetails(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$5 || (_path29$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 21H13a3 3 0 00-3 3v2h2V24a1 1 0 011-1h6a1 1 0 011 1v2h2V24A3 3 0 0019 21zM16 20a4 4 0 10-4-4A4 4 0 0016 20zm0-6a2 2 0 11-2 2A2 2 0 0116 14z" })), _path30$5 || (_path30$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" })), children); }); { OrderDetails.propTypes = iconPropTypes; } var Ordinal = /*#__PURE__*/React__default["default"].forwardRef(function Ordinal(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path31$5 || (_path31$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M1,13 L1,12 L3,12 L3,9 L5.999,9 L6,6 L9,6 L9,3 L13,3 L13,12 L15,12 L15,13 L1,13 Z M5.999,10 L4,10 L4,12 L5.999,12 L5.999,10 Z M8.999,7 L6.999,7 L6.999,9 L7,9 L7,12 L8.999,12 L8.999,7 Z M12,4 L10,4 L10,12 L12,12 L12,4 Z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$5 || (_path32$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,26V4H18v6H12v6H6V26H2v2H30V26ZM8,26V18h4v8Zm6,0V12h4V26Zm6,0V6h4V26Z" })), children); }); { Ordinal.propTypes = iconPropTypes; } var Outage = /*#__PURE__*/React__default["default"].forwardRef(function Outage(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$5 || (_path33$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 24H21V26H12zM13 28H19V30H13z" })), _path34$5 || (_path34$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.7832 18.9746l1.4177-1.418A6.9206 6.9206 0 018 12 7.99 7.99 0 0121.5273 6.2305l1.4136-1.4136A9.9884 9.9884 0 006 12 8.9411 8.9411 0 008.7832 18.9746zM30 3.4141L28.5859 2 2 28.5859 3.4141 30 23.6606 9.7534A7.7069 7.7069 0 0124 12a7.2032 7.2032 0 01-2.8223 6.1426C20.1069 19.1348 19 20.1611 19 22h2c0-.9194.5264-1.45 1.5352-2.3857A9.193 9.193 0 0026 12a9.8739 9.8739 0 00-.7764-3.81z" })), children); }); { Outage.propTypes = iconPropTypes; } var OutlookSevere = /*#__PURE__*/React__default["default"].forwardRef(function OutlookSevere(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$5 || (_path35$5 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M15.1249,19h1.75v5.5h-1.75ZM17,27a1,1,0,1,0-1,1A1,1,0,0,0,17,27Z" })), _path36$5 || (_path36$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.9084,28.94,16.8318,14.4878a.9531.9531,0,0,0-1.6636,0L7.0916,28.94A.7122.7122,0,0,0,7.7134,30H24.2867A.7121.7121,0,0,0,24.9084,28.94ZM15.125,19h1.75v5.5h-1.75ZM16,28a1,1,0,1,1,1-1A1,1,0,0,1,16,28Z" })), _path37$5 || (_path37$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4926,6.4926,0,0,0,.9153,12.8443L9.2217,20H8.5a4.48,4.48,0,0,1-3.3693-7.4556l5.297,5.2964,1.013-1.8135-4.66-4.6606A4.402,4.402,0,0,1,8.144,11.019l.8155-.0639.0991-.812c.0237-.1944.0581-.3848.0972-.5733l3.78,3.7808,1.0138-1.815L9.936,7.522a7.0212,7.0212,0,0,1,1.9754-2.1968L25.8861,19.3A4.4594,4.4594,0,0,1,23.5,20h-.7239l1.107,1.98a6.4927,6.4927,0,0,0,.9177-12.8443Zm2.4994,8.75L13.7823,4.3682a6.9736,6.9736,0,0,1,9.16,5.7749l.0986.812.8154.0639A4.5171,4.5171,0,0,1,28,15.5,4.46,4.46,0,0,1,27.3,17.8862Z" })), children); }); { OutlookSevere.propTypes = iconPropTypes; } var OverflowMenuHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function OverflowMenuHorizontal(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle5$4 || (_circle5$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "16", r: "2" })), _circle6$4 || (_circle6$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle7$4 || (_circle7$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "16", r: "2" })), children); }); { OverflowMenuHorizontal.propTypes = iconPropTypes; } var OverflowMenuVertical = /*#__PURE__*/React__default["default"].forwardRef(function OverflowMenuVertical(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle8$4 || (_circle8$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "8", r: "2" })), _circle9$4 || (_circle9$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle10$4 || (_circle10$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "24", r: "2" })), children); }); { OverflowMenuVertical.propTypes = iconPropTypes; } var Overlay$1 = /*#__PURE__*/React__default["default"].forwardRef(function Overlay(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$5 || (_path38$5 = /*#__PURE__*/React__default["default"].createElement("path", { 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,8ZM4,22V4H22V8H10a2.0023,2.0023,0,0,0-2,2V22Zm18,0H19.4141L10,12.586V10h2.5859l9.4153,9.4156ZM10,15.4141,16.5859,22H10ZM22.001,16.587,15.4141,10H22ZM10,28V24H22a2.0023,2.0023,0,0,0,2-2V10h4V28Z" })), children); }); { Overlay$1.propTypes = iconPropTypes; } var Package = /*#__PURE__*/React__default["default"].forwardRef(function Package(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$5 || (_path39$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H6a2,2,0,0,1-2-2V16a2,2,0,0,1,2-2H9v2H6V28H26V16H23V14h3a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z" })), _path40$5 || (_path40$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 20H19V22H13zM20.59 8.59L17 12.17 17 2 15 2 15 12.17 11.41 8.59 10 10 16 16 22 10 20.59 8.59z" })), children); }); { Package.propTypes = iconPropTypes; } var PageFirst = /*#__PURE__*/React__default["default"].forwardRef(function PageFirst(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41$5 || (_path41$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 16L24 6 25.4 7.4 16.8 16 25.4 24.6 24 26zM8 4H10V28H8z" })), children); }); { PageFirst.propTypes = iconPropTypes; } var PageLast = /*#__PURE__*/React__default["default"].forwardRef(function PageLast(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$5 || (_path42$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 16L8 26 6.6 24.6 15.2 16 6.6 7.4 8 6zM22 4H24V28H22z" })), children); }); { PageLast.propTypes = iconPropTypes; } var PageBreak = /*#__PURE__*/React__default["default"].forwardRef(function PageBreak(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$5 || (_path43$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 18H6V20H2zM26 18H30V20H26zM24 22v6H8V22H6v6a2.0058 2.0058 0 002 2H24a2.0058 2.0058 0 002-2V22zM8 16V4h8v6a2.0058 2.0058 0 002 2h6v4h2V10a.9092.9092 0 00-.3-.7l-7-7A.9087.9087 0 0018 2H8A2.0058 2.0058 0 006 4V16zM18 4.4L23.6 10H18zM10 18H14V20H10zM18 18H22V20H18z" })), children); }); { PageBreak.propTypes = iconPropTypes; } var PageNumber = /*#__PURE__*/React__default["default"].forwardRef(function PageNumber(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$5 || (_path44$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 26L16 26 16 20 20 20 20 18 16 18 16 16 22 16 22 22 18 22 18 24 22 24 22 26z" })), _path45$5 || (_path45$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.7,9.3l-7-7A.9078.9078,0,0,0,18,2H8A2.0059,2.0059,0,0,0,6,4V28a2.0059,2.0059,0,0,0,2,2H24a2.0059,2.0059,0,0,0,2-2V10A.9078.9078,0,0,0,25.7,9.3ZM18,4.4,23.6,10H18ZM24,28H8V4h8v6a2.0059,2.0059,0,0,0,2,2h6Z" })), children); }); { PageNumber.propTypes = iconPropTypes; } var WatsonHealthPageScroll = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthPageScroll(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$5 || (_path46$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H4a1.89,1.89,0,0,1-2-2V14a1.89,1.89,0,0,1,2-2H16a1.89,1.89,0,0,1,2,2V26A1.89,1.89,0,0,1,16,28ZM4,14V26H16V14Z" })), _path47$5 || (_path47$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,19H20V10H10V8H20a1.89,1.89,0,0,1,2,2Z" })), _path48$5 || (_path48$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 14H24V6H16V4h8a1.89 1.89 0 012 2zM24 17L24 19 26.8 19 22 24.4 22 22 20 22 20 28 26 28 26 26 23.2 26 28 20.6 28 23 30 23 30 17 24 17z" })), children); }); { WatsonHealthPageScroll.propTypes = iconPropTypes; } var PaintBrush = /*#__PURE__*/React__default["default"].forwardRef(function PaintBrush(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$5 || (_path49$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.83,23.17,23,17.33V13a1,1,0,0,0-.29-.71l-10-10a1,1,0,0,0-1.42,0l-9,9a1,1,0,0,0,0,1.42l10,10A1,1,0,0,0,13,23h4.34l5.83,5.84a4,4,0,0,0,5.66-5.66ZM6,10.41l2.29,2.3,1.42-1.42L7.41,9,9,7.41l4.29,4.3,1.42-1.42L10.41,6,12,4.41,18.59,11,11,18.59,4.41,12Zm21.41,17a2,2,0,0,1-2.82,0l-6.13-6.12a1.8,1.8,0,0,0-.71-.29H13.41l-1-1L20,12.41l1,1v4.34a1,1,0,0,0,.29.7l6.12,6.14a2,2,0,0,1,0,2.82Z" })), children); }); { PaintBrush.propTypes = iconPropTypes; } var PaintBrushAlt = /*#__PURE__*/React__default["default"].forwardRef(function PaintBrushAlt(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$5 || (_path50$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281,3.1719a4.0941,4.0941,0,0,0-5.6562,0L4.05,22.292A6.9537,6.9537,0,0,0,2,27.2412V30H4.7559a6.9523,6.9523,0,0,0,4.95-2.05L28.8281,8.8286a3.999,3.999,0,0,0,0-5.6567ZM10.91,18.26l2.8286,2.8286L11.6172,23.21,8.7886,20.3818ZM8.2915,26.5356A4.9665,4.9665,0,0,1,4.7559,28H4v-.7588a4.9671,4.9671,0,0,1,1.4644-3.5351l1.91-1.91,2.8286,2.8281ZM27.4141,7.4141,15.1528,19.6748l-2.8286-2.8286,12.2617-12.26a2.0473,2.0473,0,0,1,2.8282,0,1.9995,1.9995,0,0,1,0,2.8282Z" })), children); }); { PaintBrushAlt.propTypes = iconPropTypes; } var PalmTree = /*#__PURE__*/React__default["default"].forwardRef(function PalmTree(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path51$5 || (_path51$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.57,28C17.897,26.7251,16,22.2261,16,12v-.1313l1.1172.7446A6.4613,6.4613,0,0,1,20,18h2a8.457,8.457,0,0,0-3.7734-7.0508L16.8027,10h1.5308a7.04,7.04,0,0,1,4.2,1.4L24.4,12.8l1.2-1.6L23.7334,9.8a9.06,9.06,0,0,0-5.4-1.8H17.1172A7.0306,7.0306,0,0,1,22,6h2V4H22a9.035,9.035,0,0,0-7,3.3643A9.035,9.035,0,0,0,8,4H6V6H8a7.0306,7.0306,0,0,1,4.8828,2H11.6665a9.06,9.06,0,0,0-5.4,1.8L4.4,11.2l1.2,1.6L7.4668,11.4a7.04,7.04,0,0,1,4.2-1.4h1.5308l-1.4239.9492A8.457,8.457,0,0,0,8,18h2a6.4613,6.4613,0,0,1,2.8828-5.3867L14,11.8687V12c0,8.9438,1.4116,13.7646,2.3611,16H2v2H30V28Z" })), children); }); { PalmTree.propTypes = iconPropTypes; } var PanHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function PanHorizontal(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$5 || (_path52$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 10L22.586 11.414 26.172 15 5.828 15 9.414 11.414 8 10 2 16 8 22 9.414 20.586 5.828 17 26.172 17 22.586 20.586 24 22 30 16 24 10z" })), children); }); { PanHorizontal.propTypes = iconPropTypes; } var PanVertical = /*#__PURE__*/React__default["default"].forwardRef(function PanVertical(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53$5 || (_path53$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 8L11.414 9.414 15 5.828 15 26.172 11.414 22.586 10 24 16 30 22 24 20.586 22.586 17 26.172 17 5.828 20.586 9.414 22 8 16 2 10 8z" })), children); }); { PanVertical.propTypes = iconPropTypes; } var PanelExpansion = /*#__PURE__*/React__default["default"].forwardRef(function PanelExpansion(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$5 || (_path54$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6H6A2 2 0 004 8v6a2 2 0 002 2h6a2 2 0 002-2V8A2 2 0 0012 6zM6 14V8h6v6zM26 6H20a2 2 0 00-2 2V24a2 2 0 002 2h6a2 2 0 002-2V8A2 2 0 0026 6zM20 24V8h6V24z" })), children); }); { PanelExpansion.propTypes = iconPropTypes; } var Paragraph$1 = /*#__PURE__*/React__default["default"].forwardRef(function Paragraph(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$5 || (_path55$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,4H13a7,7,0,0,0,0,14V28h2V6h5V28h2V6h5ZM13,16A5,5,0,0,1,13,6Z" })), children); }); { Paragraph$1.propTypes = iconPropTypes; } var Parameter = /*#__PURE__*/React__default["default"].forwardRef(function Parameter(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56$5 || (_path56$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,13V8a2.0023,2.0023,0,0,0-2-2H23V8h3v5a3.9756,3.9756,0,0,0,1.3823,3A3.9756,3.9756,0,0,0,26,19v5H23v2h3a2.0023,2.0023,0,0,0,2-2V19a2.0023,2.0023,0,0,1,2-2V15A2.0023,2.0023,0,0,1,28,13Z" })), _path57$5 || (_path57$5 = /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", d: "M17,9l-.857,3h2L19,9h2l-.857,3H22v2H19.572l-1.143,4H21v2H17.857L17,23H15l.857-3h-2L13,23H11l.857-3H10V18h2.429l1.143-4H11V12h3.143L15,9Zm.572,5h-2l-1.143,4h2Z" })), _path58$5 || (_path58$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,13V8H9V6H6A2.0023,2.0023,0,0,0,4,8v5a2.0023,2.0023,0,0,1-2,2v2a2.0023,2.0023,0,0,1,2,2v5a2.0023,2.0023,0,0,0,2,2H9V24H6V19a3.9756,3.9756,0,0,0-1.3823-3A3.9756,3.9756,0,0,0,6,13Z" })), children); }); { Parameter.propTypes = iconPropTypes; } var ParentChild = /*#__PURE__*/React__default["default"].forwardRef(function ParentChild(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$5 || (_path59$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4v6a2,2,0,0,0,2,2H15v4H9a2,2,0,0,0-2,2v4H4a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V24a2,2,0,0,0-2-2H9V18H23v4H20a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V24a2,2,0,0,0-2-2H25V18a2,2,0,0,0-2-2H17V12ZM12,28H4V24h8Zm16,0H20V24h8ZM4,4H28v6H4Z" })), children); }); { ParentChild.propTypes = iconPropTypes; } var PartlyCloudy = /*#__PURE__*/React__default["default"].forwardRef(function PartlyCloudy(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$5 || (_path60$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 15H31V17H27z" })), _path61$5 || (_path61$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.086 5.794H27.329V7.794H23.086z", transform: "rotate(-45 25.207 6.794)" })), _path62$5 || (_path62$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 1H17V5H15z" })), _path63$5 || (_path63$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.672 24.208H8.915V26.208H4.672z", transform: "rotate(-45 6.793 25.208)" })), _path64$5 || (_path64$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.793 4.672H7.793V8.915H5.793z", transform: "rotate(-45 6.793 6.794)" })), _path65$5 || (_path65$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M1 15H5V17H1zM26.7939 20.3418a6.9617 6.9617 0 00-1.8681-3.2671A8.485 8.485 0 0025 16a9 9 0 10-14.585 7.0332A4.9771 4.9771 0 0015 30H25a4.9947 4.9947 0 001.7939-9.6582zM9 16a6.9955 6.9955 0 0113.9849-.2969A6.8883 6.8883 0 0020 15a7.04 7.04 0 00-6.7944 5.3418A4.986 4.986 0 0011.5618 21.39 6.9675 6.9675 0 019 16zM25 28H15a2.9945 2.9945 0 01-.6963-5.9082l.6587-.1572.0986-.67a4.9923 4.9923 0 019.878 0l.0986.6695.6587.1572A2.9945 2.9945 0 0125 28z" })), children); }); { PartlyCloudy.propTypes = iconPropTypes; } var PartlyCloudyNight = /*#__PURE__*/React__default["default"].forwardRef(function PartlyCloudyNight(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$5 || (_path66$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,19a4.974,4.974,0,0,0-3.2061-4.6582A6.9711,6.9711,0,0,0,13.7578,12.9a13.1418,13.1418,0,0,1,.1314-8.52A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0a13.0412,13.0412,0,0,0,10.29-5.0386A4.99,4.99,0,0,0,30,19ZM14.7034,26.9976a11.0945,11.0945,0,0,1-3.201-21.584,15.1817,15.1817,0,0,0,.8443,9.3676A4.9877,4.9877,0,0,0,15,24h7.6772a11.0991,11.0991,0,0,1-7.5561,2.9976C14.9827,26.9976,14.8428,27.0024,14.7034,26.9976ZM25,22H15a2.9945,2.9945,0,0,1-.6963-5.9082l.6587-.1572.0986-.67a4.9923,4.9923,0,0,1,9.878.0005l.0986.6695.6587.1572A2.9945,2.9945,0,0,1,25,22Z" })), children); }); { PartlyCloudyNight.propTypes = iconPropTypes; } var Partnership = /*#__PURE__*/React__default["default"].forwardRef(function Partnership(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67$5 || (_path67$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 9a4 4 0 114-4A4 4 0 018 9zM8 3a2 2 0 102 2A2 2 0 008 3zM24 9a4 4 0 114-4A4 4 0 0124 9zm0-6a2 2 0 102 2A2 2 0 0024 3zM26 30H22a2 2 0 01-2-2V21h2v7h4V19h2V13a1 1 0 00-1-1H20.58L16 20l-4.58-8H5a1 1 0 00-1 1v6H6v9h4V21h2v7a2 2 0 01-2 2H6a2 2 0 01-2-2V21a2 2 0 01-2-2V13a3 3 0 013-3h7.58L16 16l3.42-6H27a3 3 0 013 3v6a2 2 0 01-2 2v7A2 2 0 0126 30z" })), children); }); { Partnership.propTypes = iconPropTypes; } var PassengerDrinks = /*#__PURE__*/React__default["default"].forwardRef(function PassengerDrinks(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$5 || (_path68$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 4V2H22V4a3.9906 3.9906 0 003 3.8586V11H23v2h6V11H27V7.8586A3.9906 3.9906 0 0030 4zM10.5 9A3.5 3.5 0 1114 5.5 3.5042 3.5042 0 0110.5 9zm0-5A1.5 1.5 0 1012 5.5 1.5017 1.5017 0 0010.5 4zM22.4746 31.313L19.3408 24H12.2393A4.0073 4.0073 0 018.373 21.0293l-1.6337-6.126a3.8987 3.8987 0 017.5341-2.0092L15.1016 16H21v2H13.5645l-1.2227-4.5908a1.9 1.9 0 00-3.6709.979l1.6338 6.1255A2.0052 2.0052 0 0012.2393 22h8.42l3.6543 8.5254z" })), _path69$5 || (_path69$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28H7.7683a2.0025,2.0025,0,0,1-1.9326-1.4849L2.0337,12.2576l1.9326-.5152L7.7683,26H18Z" })), children); }); { PassengerDrinks.propTypes = iconPropTypes; } var PassengerPlus = /*#__PURE__*/React__default["default"].forwardRef(function PassengerPlus(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$5 || (_path70$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.5 9A3.5 3.5 0 1114 5.5 3.5042 3.5042 0 0110.5 9zm0-5A1.5 1.5 0 1012 5.5 1.5017 1.5017 0 0010.5 4zM22.4739 31.313L19.34 24H12.2385a4.0072 4.0072 0 01-3.8662-2.9707l-1.6338-6.126a3.8988 3.8988 0 017.5342-2.0092L15.1008 16H21v2H13.5637l-1.2226-4.5908a1.9 1.9 0 00-3.6709.979l1.6338 6.1255A2.0051 2.0051 0 0012.2385 22h8.42l3.6543 8.5254zM30 6L26 6 26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6z" })), _path71$5 || (_path71$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28H7.7676A2.0025,2.0025,0,0,1,5.835,26.5151L2.033,12.2576l1.9326-.5152L7.7676,26H18Z" })), children); }); { PassengerPlus.propTypes = iconPropTypes; } var Password = /*#__PURE__*/React__default["default"].forwardRef(function Password(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$5 || (_path72$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,2a8.9977,8.9977,0,0,0-8.6119,11.6118L2,24v6H8L18.3881,19.6118A9,9,0,1,0,21,2Zm0,16a7.0125,7.0125,0,0,1-2.0322-.3022L17.821,17.35l-.8472.8472-3.1811,3.1812L12.4141,20,11,21.4141l1.3787,1.3786-1.5859,1.586L9.4141,23,8,24.4141l1.3787,1.3786L7.1716,28H4V24.8284l9.8023-9.8023.8472-.8474-.3473-1.1467A7,7,0,1,1,21,18Z" })), _circle11$4 || (_circle11$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "10", r: "2" })), children); }); { Password.propTypes = iconPropTypes; } var Paste = /*#__PURE__*/React__default["default"].forwardRef(function Paste(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$5 || (_path73$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20H17.83l2.58-2.59L19,16l-5,5,5,5,1.41-1.41L17.83,22H26v8h2V22A2,2,0,0,0,26,20Z" })), _path74$5 || (_path74$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.71,9.29l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2h8V28H6V4h8v6a2,2,0,0,0,2,2h6v2h2V10A1,1,0,0,0,23.71,9.29ZM16,4.41,21.59,10H16Z" })), children); }); { Paste.propTypes = iconPropTypes; } var Pause = /*#__PURE__*/React__default["default"].forwardRef(function Pause(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path75$5 || (_path75$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 4v8H4V4H6M6 3H4C3.4 3 3 3.4 3 4v8c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V4C7 3.4 6.6 3 6 3zM12 4v8h-2V4H12M12 3h-2C9.4 3 9 3.4 9 4v8c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V4C13 3.4 12.6 3 12 3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$5 || (_path76$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 8V24H8V8h4m0-2H8A2 2 0 006 8V24a2 2 0 002 2h4a2 2 0 002-2V8a2 2 0 00-2-2zM24 8V24H20V8h4m0-2H20a2 2 0 00-2 2V24a2 2 0 002 2h4a2 2 0 002-2V8a2 2 0 00-2-2z" })), children); }); { Pause.propTypes = iconPropTypes; } var PauseFilled = /*#__PURE__*/React__default["default"].forwardRef(function PauseFilled(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77$5 || (_path77$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6H10A2 2 0 008 8V24a2 2 0 002 2h2a2 2 0 002-2V8a2 2 0 00-2-2zM22 6H20a2 2 0 00-2 2V24a2 2 0 002 2h2a2 2 0 002-2V8a2 2 0 00-2-2z" })), children); }); { PauseFilled.propTypes = iconPropTypes; } var PauseOutline = /*#__PURE__*/React__default["default"].forwardRef(function PauseOutline(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path78$5 || (_path78$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 5L6 5 6 11 7 11 7 5zM10 5L9 5 9 11 10 11 10 5z" })), _path79$5 || (_path79$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$5 || (_path80$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 10L12 10 12 22 14 22 14 10 14 10zM20 10L18 10 18 22 20 22 20 10 20 10z" })), _path81$5 || (_path81$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), children); }); { PauseOutline.propTypes = iconPropTypes; } var PauseOutlineFilled = /*#__PURE__*/React__default["default"].forwardRef(function PauseOutlineFilled(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path82$5 || (_path82$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M7,11H6V5h1V11z M10,11H9V5h1V11z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$5 || (_path83$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,22H12V10h2Zm6,0H18V10h2Z" })), children); }); { PauseOutlineFilled.propTypes = iconPropTypes; } var PauseFuture = /*#__PURE__*/React__default["default"].forwardRef(function PauseFuture(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$5 || (_path84$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 11L12 11 12 22 14 22 14 11 14 11zM20 11L18 11 18 22 20 22 20 11 20 11z" })), _path85$5 || (_path85$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z" })), children); }); { PauseFuture.propTypes = iconPropTypes; } var PausePast = /*#__PURE__*/React__default["default"].forwardRef(function PausePast(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$5 || (_path86$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 11L12 11 12 22 14 22 14 11 14 11zM20 11L18 11 18 22 20 22 20 11 20 11z" })), _path87$5 || (_path87$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.9158,13.9158,0,0,0,6,6.2343V2H4v8h8V8H7.0783A11.9818,11.9818,0,1,1,4,16H2A14,14,0,1,0,16,2Z" })), children); }); { PausePast.propTypes = iconPropTypes; } var PcnENode = /*#__PURE__*/React__default["default"].forwardRef(function PcnENode(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$5 || (_path88$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 11L20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z" })), _path89$5 || (_path89$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { PcnENode.propTypes = iconPropTypes; } var PcnMilitary = /*#__PURE__*/React__default["default"].forwardRef(function PcnMilitary(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$5 || (_path90$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 16L14.407 19 11 19.414 13.5 21.667 13 25 16 23.125 19 25 18.5 21.667 21 19.414 17.5 19 16 16z" })), _path91$5 || (_path91$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.414 17.414L16 13.834 16 13.834 19.588 17.416 21 16 16 11 11 16 12.414 17.414z" })), _path92$5 || (_path92$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.414 12.414L16 8.834 16 8.834 19.588 12.416 21 11 16 6 11 11 12.414 12.414z" })), _path93$5 || (_path93$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { PcnMilitary.propTypes = iconPropTypes; } var PcnPNode = /*#__PURE__*/React__default["default"].forwardRef(function PcnPNode(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$5 || (_path94$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z" })), _path95$5 || (_path95$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { PcnPNode.propTypes = iconPropTypes; } var PcnZNode = /*#__PURE__*/React__default["default"].forwardRef(function PcnZNode(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$5 || (_path96$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9L12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z" })), _path97$5 || (_path97$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z" })), children); }); { PcnZNode.propTypes = iconPropTypes; } var Pdf = /*#__PURE__*/React__default["default"].forwardRef(function Pdf(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$5 || (_path98$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 11L30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11zM8 9H2V23H4V18H8a2 2 0 002-2V11A2 2 0 008 9zm0 7H4V11H8zM16 23H12V9h4a4 4 0 014 4v6A4 4 0 0116 23zm-2-2h2a2 2 0 002-2V13a2 2 0 00-2-2H14z" })), children); }); { Pdf.propTypes = iconPropTypes; } var PdfReference = /*#__PURE__*/React__default["default"].forwardRef(function PdfReference(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$5 || (_path99$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM22 16L24 16 24 10 29 10 29 8 24 8 24 4 30 4 30 2 22 2 22 16zM16 2H12V16h4a4 4 0 004-4V6A4 4 0 0016 2zm2 10a2 2 0 01-2 2H14V4h2a2 2 0 012 2zM8 2H2V16H4V11H8a2 2 0 002-2V4A2 2 0 008 2zM8 9H4V4H8z" })), children); }); { PdfReference.propTypes = iconPropTypes; } var Pedestrian = /*#__PURE__*/React__default["default"].forwardRef(function Pedestrian(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$5 || (_path100$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.6772,14l-1.2456-3.1143A2.9861,2.9861,0,0,0,17.646,9H13.5542a3.0018,3.0018,0,0,0-1.5439.4277L7,12.4336V18H9V13.5664l3-1.8V23.6973L8.5383,28.8906,10.2024,30,14,24.3027V11h3.646a.9949.9949,0,0,1,.9282.6289L20.3228,16H26V14Z" })), _path101$5 || (_path101$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.051 18.316L19 24.162 19 30 21 30 21 23.838 18.949 17.684 17.051 18.316zM16.5 8A3.5 3.5 0 1120 4.5 3.5042 3.5042 0 0116.5 8zm0-5A1.5 1.5 0 1018 4.5 1.5017 1.5017 0 0016.5 3z" })), children); }); { Pedestrian.propTypes = iconPropTypes; } var PedestrianFamily = /*#__PURE__*/React__default["default"].forwardRef(function PedestrianFamily(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$5 || (_path102$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 30H17a2.0021 2.0021 0 01-2-2V23h2v5h3V23h2V19a1.0011 1.0011 0 00-1-1H12.2793l-2-6H4a1.0011 1.0011 0 00-1 1v6H5v9H9V21h2v7a2.0021 2.0021 0 01-2 2H5a2.0021 2.0021 0 01-2-2V21a2.0021 2.0021 0 01-2-2V13a3.0033 3.0033 0 013-3h6.2793a1.998 1.998 0 011.8975 1.3674L13.7207 16H21a3.0033 3.0033 0 013 3v4a2.0021 2.0021 0 01-2 2v3A2.0021 2.0021 0 0120 30zM28 30H26V19h3V13a1.0011 1.0011 0 00-1-1H24V10h4a3.0033 3.0033 0 013 3v6a2.0021 2.0021 0 01-2 2H28zM7 9a4 4 0 114-4A4.0045 4.0045 0 017 9zM7 3A2 2 0 109 5 2.0021 2.0021 0 007 3zM25 9a4 4 0 114-4A4.0045 4.0045 0 0125 9zm0-6a2 2 0 102 2A2.0021 2.0021 0 0025 3z" })), _path103$5 || (_path103$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.5,15A3.5,3.5,0,1,1,22,11.5,3.5041,3.5041,0,0,1,18.5,15Zm0-5A1.5,1.5,0,1,0,20,11.5,1.5017,1.5017,0,0,0,18.5,10Z" })), children); }); { PedestrianFamily.propTypes = iconPropTypes; } var PedestrianChild = /*#__PURE__*/React__default["default"].forwardRef(function PedestrianChild(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$5 || (_path104$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,16H17.4683l-5-6H5a3.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-2V21H10v7H6V19H4V13a1.0009,1.0009,0,0,1,1-1h6.5317l5,6H26a1.0009,1.0009,0,0,1,1,1v3H25v6H22V22H20v6a2.0023,2.0023,0,0,0,2,2h3a2.0023,2.0023,0,0,0,2-2V24a2.0023,2.0023,0,0,0,2-2V19A3.0033,3.0033,0,0,0,26,16Z" })), _path105$5 || (_path105$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5 15A3.5 3.5 0 1127 11.5 3.5042 3.5042 0 0123.5 15zm0-5A1.5 1.5 0 1025 11.5 1.5017 1.5017 0 0023.5 10zM8 9a4 4 0 114-4A4.0042 4.0042 0 018 9zM8 3a2 2 0 102 2A2.0023 2.0023 0 008 3z" })), children); }); { PedestrianChild.propTypes = iconPropTypes; } var Pen = /*#__PURE__*/React__default["default"].forwardRef(function Pen(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$5 || (_path106$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.3069,6.1069,30,3.4141,28.5859,2,25.8931,4.6929,24.8,3.6a1.9328,1.9328,0,0,0-2.8,0L4,21.6V28h6.4l18-18a1.9329,1.9329,0,0,0,0-2.8ZM9.6,26H6V22.4L23.4,5,27,8.6Z" })), _path107$5 || (_path107$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.136 7.5H18.863999999999997V9.5H8.136z", transform: "rotate(-45 13.5 8.5)" })), children); }); { Pen.propTypes = iconPropTypes; } var PenFountain = /*#__PURE__*/React__default["default"].forwardRef(function PenFountain(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$5 || (_path108$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707,5.293l-3-3a.9994.9994,0,0,0-1.414,0L19.5859,8H17.0947A11.0118,11.0118,0,0,0,6.7124,15.3662L2.0562,28.67a1,1,0,0,0,1.2744,1.2739l13.3037-4.6562A11.012,11.012,0,0,0,24,14.9053V12.4141L29.707,6.707A.9994.9994,0,0,0,29.707,5.293Zm-7.414,6A1,1,0,0,0,22,12v2.9053A9.01,9.01,0,0,1,15.9731,23.4l-9.1677,3.209L16,17.4141,14.5859,16,5.3914,25.1948,8.6,16.0269A9.01,9.01,0,0,1,17.0947,10H20a1,1,0,0,0,.707-.293L26,4.4141,27.5859,6Z" })), children); }); { PenFountain.propTypes = iconPropTypes; } var Pending = /*#__PURE__*/React__default["default"].forwardRef(function Pending(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle12$3 || (_circle12$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "2" })), _circle13$3 || (_circle13$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "16", r: "2" })), _circle14$2 || (_circle14$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _path109$5 || (_path109$5 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { Pending.propTypes = iconPropTypes; } var PendingFilled = /*#__PURE__*/React__default["default"].forwardRef(function PendingFilled(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$5 || (_path110$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,18a2,2,0,1,1,2-2A2,2,0,0,1,8,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,16,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,24,18Z" })), _path111$5 || (_path111$5 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M10,16a2,2,0,1,1-2-2A2,2,0,0,1,10,16Zm6-2a2,2,0,1,0,2,2A2,2,0,0,0,16,14Zm8,0a2,2,0,1,0,2,2A2,2,0,0,0,24,14Z", "data-icon-path": "inner-path" })), children); }); { PendingFilled.propTypes = iconPropTypes; } var Percentage = /*#__PURE__*/React__default["default"].forwardRef(function Percentage(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$5 || (_path112$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14ZM9,6a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,9,6Z" })), _path113$5 || (_path113$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M0.029 15H31.97V17H0.029z", transform: "rotate(-45 16 16)" })), _path114$5 || (_path114$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,23,20Z" })), children); }); { Percentage.propTypes = iconPropTypes; } var PercentageFilled = /*#__PURE__*/React__default["default"].forwardRef(function PercentageFilled(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$5 || (_path115$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14Z" })), _path116$5 || (_path116$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M0.029 15H31.97V17H0.029z", transform: "rotate(-45 16 16)" })), _path117$5 || (_path117$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Z" })), children); }); { PercentageFilled.propTypes = iconPropTypes; } var Person = /*#__PURE__*/React__default["default"].forwardRef(function Person(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$5 || (_path118$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 30H14a2 2 0 01-2-2V21a2 2 0 01-2-2V13a3 3 0 013-3h6a3 3 0 013 3v6a2 2 0 01-2 2v7A2 2 0 0118 30zM13 12a.94.94 0 00-1 1v6h2v9h4V19h2V13a.94.94 0 00-1-1zM16 9a4 4 0 114-4h0A4 4 0 0116 9zm0-6a2 2 0 102 2h0a2 2 0 00-2-2z" })), children); }); { Person.propTypes = iconPropTypes; } var PersonFavorite = /*#__PURE__*/React__default["default"].forwardRef(function PersonFavorite(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$5 || (_path119$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 31H6a2.0059 2.0059 0 01-2-2V22a2.0059 2.0059 0 01-2-2V14a2.9465 2.9465 0 013-3h6a2.9465 2.9465 0 013 3v6a2.0059 2.0059 0 01-2 2v7A2.0059 2.0059 0 0110 31zM5 13a.9448.9448 0 00-1 1v6H6v9h4V20h2V14a.9448.9448 0 00-1-1zM8 10a4 4 0 114-4A4.0045 4.0045 0 018 10zM8 4a2 2 0 102 2A2.002 2.002 0 008 4zM28.7663 4.2558A4.2121 4.2121 0 0023 4.0321a4.2121 4.2121 0 00-5.7663.2237 4.319 4.319 0 000 6.0447L22.998 16.14 23 16.1376l.002.0019 5.7643-5.839A4.319 4.319 0 0028.7663 4.2558zM27.342 8.8948l-4.34 4.3973L23 13.29l-.002.002-4.34-4.3973a2.3085 2.3085 0 010-3.2338 2.2639 2.2639 0 013.1561 0l1.181 1.2074L23 6.8634l.0049.005 1.181-1.2074a2.2639 2.2639 0 013.1561 0A2.3085 2.3085 0 0127.342 8.8948z" })), children); }); { PersonFavorite.propTypes = iconPropTypes; } var Pest = /*#__PURE__*/React__default["default"].forwardRef(function Pest(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle15$2 || (_circle15$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7.5", cy: "9.5", r: "1.5" })), _circle16$2 || (_circle16$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "13", r: "1" })), _circle17$2 || (_circle17$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "21", r: "1" })), _path120$5 || (_path120$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,14a8.9844,8.9844,0,0,0-7,3.3555V13a10.9054,10.9054,0,0,0-1.0093-4.5845l-.3569-.7768L15.811,7.87A2.9549,2.9549,0,0,1,15,8a3.0033,3.0033,0,0,1-3-3,2.9574,2.9574,0,0,1,.1294-.8105l.2324-.8233-.7773-.3569A10.9115,10.9115,0,0,0,7,2H2V9a10.8954,10.8954,0,0,0,2.2339,6.627l.3887.4277.54-.0381a5.5286,5.5286,0,0,1,5.3628,3.2559l.2207.497.5376.0845A11.0219,11.0219,0,0,0,13,20h3V30h2V26h3a9.01,9.01,0,0,0,9-9V14ZM12.1016,17.9468A7.51,7.51,0,0,0,5.5283,14,8.8945,8.8945,0,0,1,4,9V4H7a8.8624,8.8624,0,0,1,3.0259.53A4.2457,4.2457,0,0,0,10,5a4.9658,4.9658,0,0,0,5.47,4.9736A8.8793,8.8793,0,0,1,16,13v5H13A8.1153,8.1153,0,0,1,12.1016,17.9468ZM28,17a7.0078,7.0078,0,0,1-7,7H18V23a7.01,7.01,0,0,1,5.0212-6.7109A1.4971,1.4971,0,1,0,26,16.5a1.485,1.485,0,0,0-.0918-.5H28Z" })), children); }); { Pest.propTypes = iconPropTypes; } var WatsonHealthPetImageB = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthPetImageB(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$5 || (_path121$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 21H21V24H19zM19 0H21V3H19zM8 11H11V13H8zM29 11H32V13H29z" })), _path122$5 || (_path122$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.59 3.07H13.57V6.07H11.59z", transform: "rotate(-45 12.586 4.577)" })), _path123$5 || (_path123$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.44 17.92H28.42V20.92H26.44z", transform: "rotate(-45 27.43 19.408)" })), _path124$5 || (_path124$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.09 18.42H14.09V20.400000000000002H11.09z", transform: "rotate(-45 12.592 19.414)" })), _path125$5 || (_path125$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.93 3.58H28.93V5.5600000000000005H25.93z", transform: "rotate(-45 27.423 4.57)" })), _path126$5 || (_path126$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 5a7 7 0 107 7A7 7 0 0020 5zm0 12A5 5 0 0120 7zM5 18H0V32H5a3 3 0 003-3V27a3 3 0 00-.78-2A3 3 0 008 23V21A3 3 0 005 18zM2 20H5a1 1 0 011 1v2a1 1 0 01-1 1H2zm4 9a1 1 0 01-1 1H2V26H5a1 1 0 011 1zM2 2L9 2 9 0 0 0 0 9 2 9 2 2z" })), children); }); { WatsonHealthPetImageB.propTypes = iconPropTypes; } var WatsonHealthPetImageO = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthPetImageO(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$5 || (_path127$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 29H13V32H11zM11 8H13V11H11zM0 19H3V21H0zM21 19H24V21H21z" })), _path128$5 || (_path128$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.59 11.09H5.57V14.09H3.59z", transform: "rotate(-45 4.585 12.59)" })), _path129$5 || (_path129$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.44 25.93H20.42V28.93H18.44z", transform: "rotate(-45 19.429 27.422)" })), _path130$5 || (_path130$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.09 26.44H6.09V28.42H3.09z", transform: "rotate(-45 4.591 27.428)" })), _path131$5 || (_path131$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.93 11.59H20.93V13.57H17.93z", transform: "rotate(-45 19.423 12.585)" })), _path132$5 || (_path132$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 13a7 7 0 107 7A7 7 0 0012 13zm0 12a5 5 0 010-10zM2 2L9 2 9 0 0 0 0 9 2 9 2 2zM30 0H26a2 2 0 00-2 2V12a2 2 0 002 2h4a2 2 0 002-2V2A2 2 0 0030 0zM26 12V2h4V12z" })), children); }); { WatsonHealthPetImageO.propTypes = iconPropTypes; } var Phone = /*#__PURE__*/React__default["default"].forwardRef(function Phone(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$5 || (_path133$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.76,3h5.51a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.37,9.37,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5A1,1,0,0,0,5,6v.08C5.46,12,8.41,26,25.94,27A1,1,0,0,0,27,26.06V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z" })), children); }); { Phone.propTypes = iconPropTypes; } var PhoneApplication = /*#__PURE__*/React__default["default"].forwardRef(function PhoneApplication(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$5 || (_path134$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 2H30V6H26zM26 8H30V12H26zM20 2H24V6H20zM20 8H24V12H20zM25 30h-.17C5.18 28.87 2.39 12.29 2 7.23A3 3 0 014.7611 4.0088Q4.88 4 5 4h5.27a2 2 0 011.86 1.26L13.65 9a2 2 0 01-.44 2.16l-2.13 2.15a9.36 9.36 0 007.58 7.6l2.17-2.15A2 2 0 0123 18.35l3.77 1.51A2 2 0 0128 21.72V27A3 3 0 0125 30zM5 6a1 1 0 00-1.0032.9968c0 .0278.001.0555.0032.0832C4.46 13 7.41 27 24.94 28a1 1 0 001.0581-.9382Q26 27.0309 26 27V21.72l-3.77-1.51-2.87 2.85L18.88 23C10.18 21.91 9 13.21 9 13.12l-.06-.48 2.84-2.87L10.28 6z" })), children); }); { PhoneApplication.propTypes = iconPropTypes; } var PhoneBlock = /*#__PURE__*/React__default["default"].forwardRef(function PhoneBlock(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path135$5 || (_path135$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z" })), _path136$5 || (_path136$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.41 9L28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z" })), children); }); { PhoneBlock.propTypes = iconPropTypes; } var PhoneBlockFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneBlockFilled(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$5 || (_path137$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z" })), _path138$5 || (_path138$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.41 9L28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z" })), children); }); { PhoneBlockFilled.propTypes = iconPropTypes; } var PhoneFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneFilled(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$5 || (_path139$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.33,21.48l2.24-2.24a2.19,2.19,0,0,1,2.34-.48l2.73,1.09a2.18,2.18,0,0,1,1.36,2v5A2.17,2.17,0,0,1,26.72,29C7.59,27.81,3.73,11.61,3,5.41A2.17,2.17,0,0,1,5.17,3H10a2.16,2.16,0,0,1,2,1.36l1.09,2.73a2.16,2.16,0,0,1-.47,2.34l-2.24,2.24S11.67,20.4,20.33,21.48Z" })), children); }); { PhoneFilled.propTypes = iconPropTypes; } var PhoneIncoming = /*#__PURE__*/React__default["default"].forwardRef(function PhoneIncoming(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$5 || (_path140$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z" })), _path141$5 || (_path141$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 13L27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z" })), children); }); { PhoneIncoming.propTypes = iconPropTypes; } var PhoneIncomingFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneIncomingFilled(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$5 || (_path142$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z" })), _path143$5 || (_path143$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 13L27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z" })), children); }); { PhoneIncomingFilled.propTypes = iconPropTypes; } var PhoneIp = /*#__PURE__*/React__default["default"].forwardRef(function PhoneIp(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$5 || (_path144$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 14H18V16H16zM20 14H22V16H20zM24 14H26V16H24zM16 18H18V20H16zM20 18H22V20H20zM24 18H26V20H24zM16 22H18V24H16zM20 22H22V24H20zM24 22H26V24H24zM16 10H26V12H16z" })), _path145$5 || (_path145$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6H14V5a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,5V6H4A2.0025,2.0025,0,0,0,2,8V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V8A2.0025,2.0025,0,0,0,28,6ZM8,5h4V22H8ZM28,26H4V8H6V22a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V8H28Z" })), children); }); { PhoneIp.propTypes = iconPropTypes; } var PhoneOff = /*#__PURE__*/React__default["default"].forwardRef(function PhoneOff(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$5 || (_path146$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.19 18.56A25.66 25.66 0 015 6.08V6A1 1 0 016 5h5.28l1.5 3.77L9.94 11.64l.06.48a13 13 0 001.46 4.17l1.46-1.46a9.34 9.34 0 01-.84-2.52l2.13-2.15A2 2 0 0014.65 8L13.13 4.26A2 2 0 0011.27 3H5.76A3 3 0 003 6.23 28 28 0 007.79 20zM27.77 18.86L24 17.35a2 2 0 00-2.17.41l-2.17 2.15A9.17 9.17 0 0115.45 18L30 3.41 28.59 2 2 28.59 3.41 30l7-7c3.38 3.18 8.28 5.62 15.39 6H26a3 3 0 003-3V20.72A2 2 0 0027.77 18.86zM27 26v.06a1 1 0 01-1.06.94c-6.51-.37-11-2.54-14.11-5.42L14 19.44A10.77 10.77 0 0019.88 22l.48.06 2.87-2.85L27 20.72z" })), children); }); { PhoneOff.propTypes = iconPropTypes; } var PhoneOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneOffFilled(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$5 || (_path147$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.74 19.56l-2.52-1a2 2 0 00-2.15.44L20 21.06a9.93 9.93 0 01-5.35-2.29L30 3.41 28.59 2 2 28.59 3.41 30l7.93-7.92c3.24 3.12 7.89 5.5 14.55 5.92A2 2 0 0028 26V21.41A2 2 0 0026.74 19.56zM8.15 18.19l3.52-3.52A11.68 11.68 0 0110.85 12l2.07-2.07a2 2 0 00.44-2.15l-1-2.52A2 2 0 0010.5 4H6A2 2 0 004 6.22 29 29 0 008.15 18.19z" })), children); }); { PhoneOffFilled.propTypes = iconPropTypes; } var PhoneOutgoing = /*#__PURE__*/React__default["default"].forwardRef(function PhoneOutgoing(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$5 || (_path148$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,29h-0.2C6.2,27.9,3.4,11.3,3,6.2C2.9,4.6,4.1,3.1,5.8,3C5.8,3,5.9,3,6,3h5.3c0.8,0,1.6,0.5,1.9,1.3L14.6,8 c0.3,0.7,0.1,1.6-0.4,2.2l-2.1,2.1c0.7,3.9,3.7,6.9,7.6,7.6l2.2-2.1c0.6-0.6,1.4-0.7,2.2-0.4l3.8,1.5c0.7,0.3,1.2,1,1.2,1.9V26 C29,27.7,27.7,29,26,29z M6,5C5.4,5,5,5.4,5,6c0,0,0,0.1,0,0.1C5.5,12,8.4,26,25.9,27c0.6,0,1-0.4,1.1-0.9c0,0,0,0,0-0.1v-5.3 l-3.8-1.5l-2.9,2.9L19.9,22c-8.7-1.1-9.9-9.8-9.9-9.9l-0.1-0.5l2.8-2.9L11.3,5H6z" })), _path149$5 || (_path149$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 4L20 6 24.6 6 18 12.6 19.4 14 26 7.4 26 12 28 12 28 4z" })), children); }); { PhoneOutgoing.propTypes = iconPropTypes; } var PhoneOutgoingFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneOutgoingFilled(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$5 || (_path150$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z" })), _path151$5 || (_path151$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 4L20 6 24.586 6 18 12.586 19.414 14 26 7.414 26 12 28 12 28 4 20 4z" })), children); }); { PhoneOutgoingFilled.propTypes = iconPropTypes; } var PhoneSettings = /*#__PURE__*/React__default["default"].forwardRef(function PhoneSettings(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$5 || (_path152$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z" })), _path153$5 || (_path153$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z" })), children); }); { PhoneSettings.propTypes = iconPropTypes; } var PhoneVoice = /*#__PURE__*/React__default["default"].forwardRef(function PhoneVoice(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$5 || (_path154$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z" })), _path155$5 || (_path155$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13H26a7.0078 7.0078 0 00-7-7V4A9.01 9.01 0 0128 13zM26 29h-.17C6.18 27.87 3.39 11.29 3 6.23A3 3 0 015.7612 3.0088Q5.88 3 6 3h5.27a2 2 0 011.86 1.26L14.65 8a2 2 0 01-.44 2.16l-2.13 2.15a9.36 9.36 0 007.58 7.6l2.17-2.15A2 2 0 0124 17.35l3.77 1.51A2 2 0 0129 20.72V26A3 3 0 0126 29zM6 5a1 1 0 00-1.0032.9968q0 .0417.0032.0832C5.46 12 8.41 26 25.94 27a1 1 0 001.0582-.9382Q27 26.0309 27 26V20.72l-3.77-1.51-2.87 2.85L19.88 22C11.18 20.91 10 12.21 10 12.12l-.06-.48 2.84-2.87L11.28 5z" })), children); }); { PhoneVoice.propTypes = iconPropTypes; } var PhoneVoiceFilled = /*#__PURE__*/React__default["default"].forwardRef(function PhoneVoiceFilled(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$5 || (_path156$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z" })), _path157$5 || (_path157$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 13H26a7.0078 7.0078 0 00-7-7V4A9.01 9.01 0 0128 13zM20.3333 21.4823l2.24-2.24a2.1667 2.1667 0 012.3368-.48l2.7281 1.0913A2.1666 2.1666 0 0129 21.8659v4.9613a2.1668 2.1668 0 01-2.2843 2.1686C7.5938 27.8054 3.7321 11.6114 3.0146 5.4079A2.162 2.162 0 015.1692 3H10.042a2.1666 2.1666 0 012.0117 1.362L13.145 7.09a2.1666 2.1666 0 01-.48 2.3367l-2.24 2.24S11.6667 20.399 20.3333 21.4823z" })), children); }); { PhoneVoiceFilled.propTypes = iconPropTypes; } var PhraseSentiment = /*#__PURE__*/React__default["default"].forwardRef(function PhraseSentiment(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$5 || (_path158$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.303,10a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,19l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,10Z" })), _path159$5 || (_path159$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" })), children); }); { PhraseSentiment.propTypes = iconPropTypes; } var PicnicArea = /*#__PURE__*/React__default["default"].forwardRef(function PicnicArea(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$5 || (_path160$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 12a4 4 0 114-4A4.0045 4.0045 0 0124 12zm0-6a2 2 0 102 2A2.0021 2.0021 0 0024 6zM26 22H21.8472L21.18 18H24V16H8v2h2.82l-.6668 4H6v2H9.82l-.6668 4H11.18l.6668-4h8.3056l.6668 4h2.0276L22.18 24H26zM12.18 22l.6665-4h6.3062l.6665 4z" })), children); }); { PicnicArea.propTypes = iconPropTypes; } var PiggyBank = /*#__PURE__*/React__default["default"].forwardRef(function PiggyBank(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$5 || (_path161$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.5,14H20V12H18V11H16v1.0508A2.5,2.5,0,0,0,16.5,17h1a.5.5,0,0,1,0,1H14v2h2v1h2V19.9492A2.5,2.5,0,0,0,17.5,15h-1a.5.5,0,0,1,0-1Z" })), _path162$5 || (_path162$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,13H26.98A5.7789,5.7789,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0926,5.0926,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.013,7.013,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z" })), children); }); { PiggyBank.propTypes = iconPropTypes; } var PiggyBankSlot = /*#__PURE__*/React__default["default"].forwardRef(function PiggyBankSlot(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$5 || (_path163$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 11H20V13H13z" })), _path164$5 || (_path164$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,13H26.98A5.7791,5.7791,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0928,5.0928,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.0129,7.0129,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z" })), children); }); { PiggyBankSlot.propTypes = iconPropTypes; } var Pills = /*#__PURE__*/React__default["default"].forwardRef(function Pills(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$5 || (_path165$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.999,6.999,0,0,0,12.2855,4.5878A7.9969,7.9969,0,1,0,22,14Zm0,2a6.0046,6.0046,0,0,1,5.91,5H16.09A6.0046,6.0046,0,0,1,22,16ZM6,9A5,5,0,0,1,16,9v6H6Zm5,19a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9566,7.9566,0,0,0-.7242,8.9315A4.9885,4.9885,0,0,1,11,28Zm11,0a6.0046,6.0046,0,0,1-5.91-5H27.91A6.0046,6.0046,0,0,1,22,28Z" })), children); }); { Pills.propTypes = iconPropTypes; } var PillsAdd = /*#__PURE__*/React__default["default"].forwardRef(function PillsAdd(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$5 || (_path166$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z" })), _path167$5 || (_path167$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 21L23 21 23 19 21 19 21 21 19 21 19 23 21 23 21 25 23 25 23 23 25 23 25 21z" })), children); }); { PillsAdd.propTypes = iconPropTypes; } var PillsSubtract = /*#__PURE__*/React__default["default"].forwardRef(function PillsSubtract(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$5 || (_path168$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z" })), _path169$5 || (_path169$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 21H25V23H19z" })), children); }); { PillsSubtract.propTypes = iconPropTypes; } var Pin = /*#__PURE__*/React__default["default"].forwardRef(function Pin(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$5 || (_path170$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.59,13.31,30,11.9,20,2,18.69,3.42,19.87,4.6,8.38,14.32,6.66,12.61,5.25,14l5.66,5.68L2,28.58,3.41,30l8.91-8.91L18,26.75l1.39-1.42-1.71-1.71L27.4,12.13ZM16.26,22.2,9.8,15.74,21.29,6,26,10.71Z" })), children); }); { Pin.propTypes = iconPropTypes; } var PinFilled = /*#__PURE__*/React__default["default"].forwardRef(function PinFilled(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$5 || (_path171$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5858,13.3137,30,11.9,20,2,18.6858,3.415l1.1858,1.1857L8.38,14.3225,6.6641,12.6067,5.25,14l5.6572,5.6773L2,28.5831,3.41,30l8.9111-8.9087L18,26.7482l1.3929-1.414L17.6765,23.618l9.724-11.4895Z" })), children); }); { PinFilled.propTypes = iconPropTypes; } var Plane = /*#__PURE__*/React__default["default"].forwardRef(function Plane(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$5 || (_path172$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.37,14.75,20,10V6a4,4,0,0,0-8,0v4L2.63,14.75a1,1,0,0,0-.63.93v5a1,1,0,0,0,1,1,1,1,0,0,0,.29-.05L12,18v5L8.55,24.72a1,1,0,0,0-.55.9V29a1,1,0,0,0,1,1,.9.9,0,0,0,.28,0L16,28l6.72,2A.9.9,0,0,0,23,30a1,1,0,0,0,1-1V25.62a1,1,0,0,0-.55-.9L20,23V18l8.71,3.61a1,1,0,0,0,.29.05,1,1,0,0,0,1-1v-5A1,1,0,0,0,29.37,14.75ZM28,19.15,18,15v9.24l4,2v1.43l-6-1.75-6,1.75V26.24l4-2V15L4,19.15V16.3l10-5.07V6a2,2,0,0,1,4,0v5.23L28,16.3Z" })), children); }); { Plane.propTypes = iconPropTypes; } var PlanePrivate = /*#__PURE__*/React__default["default"].forwardRef(function PlanePrivate(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$5 || (_path173$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5845,14.585l-3.12-1.8721A4.9951,4.9951,0,0,0,22.8921,12H7.7808L7.16,9.5151A1.9975,1.9975,0,0,0,5.2192,8H4a2.0023,2.0023,0,0,0-2,2v7a3.0033,3.0033,0,0,0,3,3h7v6a2.0023,2.0023,0,0,0,2,2h1.3071A2.0086,2.0086,0,0,0,17.18,26.7021L19.6929,20h7.3916a2.9152,2.9152,0,0,0,1.5-5.415ZM27.0845,18H18.3071l-3,8H14V18H5a1.0009,1.0009,0,0,1-1-1V10H5.2192l1,4H10v2h2V14h3v2h2V14h3v2h2V14h.8921a2.9977,2.9977,0,0,1,1.5434.4277l3.12,1.8721a.9154.9154,0,0,1-.4712,1.7Z" })), _path174$5 || (_path174$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,4h1.3228l2.4,6h2.1545L17.18,3.2573A1.9906,1.9906,0,0,0,15.3228,2H14a2.0023,2.0023,0,0,0-2,2v6h2Z" })), children); }); { PlanePrivate.propTypes = iconPropTypes; } var PlaneSea = /*#__PURE__*/React__default["default"].forwardRef(function PlaneSea(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$5 || (_path175$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H28a4.9316 4.9316 0 01-4-1.9873 5.0192 5.0192 0 01-8 0 5.0192 5.0192 0 01-8 0A4.9316 4.9316 0 014 30H2V28H4a3.44 3.44 0 003.0532-2.3215A.9712.9712 0 018 25a1.0069 1.0069 0 01.9487.6838A3.4381 3.4381 0 0012 28a3.44 3.44 0 003.0532-2.3215A.99.99 0 0116 25a1.0069 1.0069 0 01.9487.6838A3.4381 3.4381 0 0020 28a3.44 3.44 0 003.0532-2.3215 1 1 0 011.8955.0053A3.4381 3.4381 0 0028 28h2zM28 6v4H25.5L23.4 7.2A3.0129 3.0129 0 0021 6H15a3.0033 3.0033 0 00-3 3v1H8.6182L7.8945 8.5527l-1-2A1 1 0 006 6H3A1 1 0 002 7v6a3.0033 3.0033 0 003 3h6.82l-.6666 4H7a1 1 0 000 2H27a1 1 0 000-2H22.847L22.18 16h.1629a4.9662 4.9662 0 003.5351-1.4648L28 12.4141V16h2V6zM14 9a1.0009 1.0009 0 011-1h6a1.0045 1.0045 0 01.8.4L23 10H14zm6.82 11H13.18l.6666-4h6.306zm1.5237-6H5a1.0009 1.0009 0 01-1-1V8H5.3818l.7237 1.4473L7.3818 12h18.204l-1.1214 1.1211A2.9789 2.9789 0 0122.3433 14z" })), children); }); { PlaneSea.propTypes = iconPropTypes; } var Play = /*#__PURE__*/React__default["default"].forwardRef(function Play(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path176$5 || (_path176$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.5,14C3.2,14,3,13.8,3,13.5v-11c0-0.2,0.1-0.3,0.2-0.4C3.4,2,3.6,2,3.8,2.1l9.5,5.5c0.2,0.1,0.3,0.4,0.2,0.7 c0,0.1-0.1,0.1-0.2,0.2l-9.5,5.5C3.7,14,3.6,14,3.5,14z M4,3.4v9.3L12,8L4,3.4z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$5 || (_path177$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28ZM8,6.6909V25.3088L24.9248,16Z" })), children); }); { Play.propTypes = iconPropTypes; } var PlayFilled = /*#__PURE__*/React__default["default"].forwardRef(function PlayFilled(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path178$5 || (_path178$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$5 || (_path179$5 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Z" })), _path180$5 || (_path180$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z" })), children); }); { PlayFilled.propTypes = iconPropTypes; } var PlayFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function PlayFilledAlt(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$5 || (_path181$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z" })), children); }); { PlayFilledAlt.propTypes = iconPropTypes; } var PlayOutline = /*#__PURE__*/React__default["default"].forwardRef(function PlayOutline(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path182$5 || (_path182$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z" })), _path183$5 || (_path183$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,11.5c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.2-0.3-0.2-0.4V5c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3 C12,7.7,12.1,8,11.9,8.2c0,0.1-0.1,0.2-0.2,0.2l-5.5,3C6.2,11.5,6.1,11.5,6,11.5z M6.5,5.8v4.3l4-2.2L6.5,5.8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$5 || (_path184$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z" })), _path185$5 || (_path185$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), children); }); { PlayOutline.propTypes = iconPropTypes; } var PlayOutlineFilled = /*#__PURE__*/React__default["default"].forwardRef(function PlayOutlineFilled(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path186$5 || (_path186$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z" })), _path187$5 || (_path187$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.5 10.2L10.5 8 6.5 5.8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$5 || (_path188$5 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z" })), _path189$5 || (_path189$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 20.382L20.764 16 12 11.618 12 20.382z" })), _path190$5 || (_path190$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z" })), children); }); { PlayOutlineFilled.propTypes = iconPropTypes; } var Playlist = /*#__PURE__*/React__default["default"].forwardRef(function Playlist(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$5 || (_path191$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6H22V8H4zM4 12H22V14H4zM4 18H16V20H4zM21 18L28 23 21 28 21 18z" })), children); }); { Playlist.propTypes = iconPropTypes; } var Plug = /*#__PURE__*/React__default["default"].forwardRef(function Plug(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$5 || (_path192$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Zm0,8a6,6,0,0,1-12,0V10H22Z" })), children); }); { Plug.propTypes = iconPropTypes; } var PlugFilled = /*#__PURE__*/React__default["default"].forwardRef(function PlugFilled(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$5 || (_path193$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Z" })), children); }); { PlugFilled.propTypes = iconPropTypes; } var Png = /*#__PURE__*/React__default["default"].forwardRef(function Png(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$5 || (_path194$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 23H24a2 2 0 01-2-2V11a2 2 0 012-2h6v2H24V21h4V17H26V15h4zM18 19L14.32 9 12 9 12 23 14 23 14 13 17.68 23 20 23 20 9 18 9 18 19zM4 23H2V9H8a2 2 0 012 2v5a2 2 0 01-2 2H4zm0-7H8V11H4z" })), children); }); { Png.propTypes = iconPropTypes; } var PointOfPresence = /*#__PURE__*/React__default["default"].forwardRef(function PointOfPresence(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$5 || (_path195$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H18a2.0021 2.0021 0 01-2-2V18a2.0021 2.0021 0 012-2h2v2H18V28H28V18H26V16h2a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30zM14 16H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2H14a2.0021 2.0021 0 012 2V6H14V4H4V14H14V12h2v2A2.0021 2.0021 0 0114 16z" })), _path196$5 || (_path196$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,9a2.9926,2.9926,0,0,0-5.8157-1H9v2H20.1843A2.9939,2.9939,0,0,0,22,11.8154V23h2V11.8159A2.9958,2.9958,0,0,0,26,9Zm-3,1a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,23,10Z" })), children); }); { PointOfPresence.propTypes = iconPropTypes; } var WatsonHealthPointerText = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthPointerText(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$5 || (_path197$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.71 12.29L7.41 6 13 6 13 4 4 4 4 13 6 13 6 7.41 12.29 13.71 13.71 12.29zM28 30H12a2 2 0 01-2-2V18h2V28H28V12H18V10H28a2 2 0 012 2V28A2 2 0 0128 30z" })), _path198$5 || (_path198$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,15H17v2h5v2H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V17A2,2,0,0,0,22,15Zm0,8H18V21h4Z" })), children); }); { WatsonHealthPointerText.propTypes = iconPropTypes; } var Police = /*#__PURE__*/React__default["default"].forwardRef(function Police(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$5 || (_path199$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 24H12V30H10z" })), _path200$5 || (_path200$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,20H7a3.0033,3.0033,0,0,1-3-3V6H2V17a5.0059,5.0059,0,0,0,5,5H21a4.9419,4.9419,0,0,1,2.105.481L17,28.5859,18.4141,30l6.3071-6.3071A4.96,4.96,0,0,1,26,27v3h2V27A7.0078,7.0078,0,0,0,21,20Z" })), _path201$5 || (_path201$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.2746,4.0386l-7-2a1.0013,1.0013,0,0,0-.55,0l-7,2A.9993.9993,0,0,0,10.03,5.2422L11,9.123V11A7,7,0,1,0,25,11V9.123l.97-3.8808A.9993.9993,0,0,0,25.2746,4.0386ZM18,4.04l5.7952,1.6558L23.219,8H19V6H17V8H12.781l-.5762-2.3042ZM18,16a5.0058,5.0058,0,0,1-5-5V10H23v1A5.0058,5.0058,0,0,1,18,16Z" })), children); }); { Police.propTypes = iconPropTypes; } var Policy = /*#__PURE__*/React__default["default"].forwardRef(function Policy(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$5 || (_path202$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 18A6 6 0 1020 22.46v7.54l4-1.8926 4 1.8926V22.46A5.98 5.98 0 0030 18zm-4 8.84l-2-.9467L22 26.84V23.65a5.8877 5.8877 0 004 0zM24 22a4 4 0 114-4A4.0045 4.0045 0 0124 22zM9 14H16V16H9zM9 8H19V10H9z" })), _path203$5 || (_path203$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V8H22V4H6V28H16v2Z" })), children); }); { Policy.propTypes = iconPropTypes; } var Popup = /*#__PURE__*/React__default["default"].forwardRef(function Popup(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$5 || (_path204$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H10A2.0059,2.0059,0,0,0,8,6V20a2.0059,2.0059,0,0,0,2,2H28a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,28,4Zm0,16H10V6H28Z" })), _path205$5 || (_path205$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,26H4V16H6V14H4a2.0059,2.0059,0,0,0-2,2V26a2.0059,2.0059,0,0,0,2,2H18a2.0059,2.0059,0,0,0,2-2V24H18Z" })), children); }); { Popup.propTypes = iconPropTypes; } var Portfolio = /*#__PURE__*/React__default["default"].forwardRef(function Portfolio(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path206$5 || (_path206$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V6a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v4H4a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,6h8v4H12ZM4,26V12H28V26Z" })), children); }); { Portfolio.propTypes = iconPropTypes; } var Power = /*#__PURE__*/React__default["default"].forwardRef(function Power(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$5); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path207$5 || (_path207$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.2,2.9l-0.5,0.9c2.6,1.5,3.5,4.9,2,7.5s-4.9,3.5-7.5,2s-3.5-4.9-2-7.5c0.5-0.8,1.2-1.5,2-2L4.8,2.9 c-3.1,1.8-4.2,5.8-2.4,8.9s5.8,4.2,8.9,2.4s4.2-5.8,2.4-8.9C13.1,4.3,12.2,3.4,11.2,2.9z" })), _path208$5 || (_path208$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 1H8.5V8H7.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$5 || (_path209$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,5.74l-1,1.73a11,11,0,1,1-11,0l-1-1.73a13,13,0,1,0,13,0Z" })), _path210$5 || (_path210$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V16H15z" })), children); }); { Power.propTypes = iconPropTypes; } var Ppt = /*#__PURE__*/React__default["default"].forwardRef(function Ppt(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$5 || (_path211$5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 11L25 11 25 23 27 23 27 11 30 11 30 9 22 9 22 11zM14 23H12V9h6a2.002 2.002 0 012 2v5a2.002 2.002 0 01-2 2H14zm0-7h4V10.9985H14zM4 23H2V9H8a2.002 2.002 0 012 2v5a2.002 2.002 0 01-2 2H4zm0-7H8V10.9985H4z" })), children); }); { Ppt.propTypes = iconPropTypes; } var PresentationFile = /*#__PURE__*/React__default["default"].forwardRef(function PresentationFile(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212$4 || (_path212$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 10H17V18H15zM20 14H22V18H20zM10 12H12V18H10z" })), _path213$4 || (_path213$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,4H17V2H15V4H7A2,2,0,0,0,5,6V20a2,2,0,0,0,2,2h8v6H11v2H21V28H17V22h8a2,2,0,0,0,2-2V6A2,2,0,0,0,25,4Zm0,16H7V6H25Z" })), children); }); { PresentationFile.propTypes = iconPropTypes; } var Pressure = /*#__PURE__*/React__default["default"].forwardRef(function Pressure(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path214$4 || (_path214$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.5053,16l8.1591-7.2529A1,1,0,0,0,25,7H22V2H20V9h2.37L16,14.6621,9.63,9H12V2H10V7H7a1,1,0,0,0-.6646,1.7471L14.4945,16,6.3353,23.2529A1,1,0,0,0,7,25h3v5h2V23H9.63L16,17.3379,22.37,23H20v7h2V25h3a1,1,0,0,0,.6645-1.7471Z" })), children); }); { Pressure.propTypes = iconPropTypes; } var PressureFilled = /*#__PURE__*/React__default["default"].forwardRef(function PressureFilled(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215$3 || (_path215$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 30H10V25H6l10-9 10 9H22zM16 16L6 7h4V2H22V7h4z" })), children); }); { PressureFilled.propTypes = iconPropTypes; } var PreviousFilled = /*#__PURE__*/React__default["default"].forwardRef(function PreviousFilled(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216$3 || (_path216$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,15H11.85l5.58,5.5728L16,24,8,16l8-8,1.43,1.3926L11.85,15H24Z" })), _path217$3 || (_path217$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16 8L17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z", "data-icon-path": "inner-path" })), children); }); { PreviousFilled.propTypes = iconPropTypes; } var PreviousOutline = /*#__PURE__*/React__default["default"].forwardRef(function PreviousOutline(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path218$2 || (_path218$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8L17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z" })), _path219$2 || (_path219$2 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { PreviousOutline.propTypes = iconPropTypes; } var Printer = /*#__PURE__*/React__default["default"].forwardRef(function Printer(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path220$2 || (_path220$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z" })), children); }); { Printer.propTypes = iconPropTypes; } var Product = /*#__PURE__*/React__default["default"].forwardRef(function Product(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path221$2 || (_path221$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 18H14V20H8zM8 22H18V24H8z" })), _path222$2 || (_path222$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z" })), children); }); { Product.propTypes = iconPropTypes; } var ProgressBar = /*#__PURE__*/React__default["default"].forwardRef(function ProgressBar(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223$2 || (_path223$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z" })), _path224$2 || (_path224$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 15H20V17H6z" })), children); }); { ProgressBar.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$4, _path2$4, _path3$4, _path4$4, _path5$4, _path6$4, _path7$4, _path8$4, _path9$4, _path10$4, _path11$4, _circle$4, _circle2$4, _circle3$4, _circle4$3, _circle5$3, _path12$4, _path13$4, _path14$4, _path15$4, _path16$4, _path17$4, _path18$4, _path19$4, _path20$4, _path21$4, _path22$4, _path23$4, _path24$4, _circle6$3, _circle7$3, _circle8$3, _circle9$3, _circle10$3, _circle11$3, _circle12$2, _circle13$2, _path25$4, _path26$4, _path27$4, _path28$4, _path29$4, _path30$4, _path31$4, _path32$4, _path33$4, _path34$4, _path35$4, _path36$4, _path37$4, _circle14$1, _path38$4, _path39$4, _path40$4, _path41$4, _path42$4, _path43$4, _path44$4, _path45$4, _path46$4, _path47$4, _path48$4, _path49$4, _path50$4, _path51$4, _path52$4, _path53$4, _path54$4, _path55$4, _path56$4, _path57$4, _path58$4, _path59$4, _path60$4, _path61$4, _path62$4, _path63$4, _path64$4, _circle15$1, _path65$4, _path66$4, _path67$4, _path68$4, _path69$4, _path70$4, _path71$4, _path72$4, _path73$4, _path74$4, _path75$4, _path76$4, _path77$4, _path78$4, _path79$4, _path80$4, _path81$4, _path82$4, _path83$4, _path84$4, _path85$4, _path86$4, _path87$4, _path88$4, _path89$4, _path90$4, _path91$4, _path92$4, _path93$4, _path94$4, _path95$4, _path96$4, _path97$4, _path98$4, _path99$4, _path100$4, _path101$4, _path102$4, _path103$4, _path104$4, _path105$4, _path106$4, _path107$4, _path108$4, _path109$4, _path110$4, _path111$4, _path112$4, _path113$4, _path114$4, _path115$4, _path116$4, _circle16$1, _path117$4, _path118$4, _path119$4, _path120$4, _path121$4, _path122$4, _path123$4, _path124$4, _path125$4, _path126$4, _path127$4, _path128$4, _path129$4, _path130$4, _path131$4, _path132$4, _path133$4, _path134$4, _path135$4, _path136$4, _path137$4, _path138$4, _path139$4, _path140$4, _path141$4, _path142$4, _path143$4, _path144$4, _path145$4, _path146$4, _path147$4, _path148$4, _path149$4, _path150$4, _path151$4, _circle17$1, _path152$4, _path153$4, _path154$4, _path155$4, _path156$4, _path157$4, _path158$4, _path159$4, _path160$4, _path161$4, _path162$4, _path163$4, _path164$4, _path165$4, _switch$1, _path166$4, _path167$4, _path168$4, _path169$4, _path170$4, _path171$4, _path172$4, _path173$4, _path174$4, _path175$4, _path176$4, _path177$4, _path178$4, _path179$4, _path180$4, _path181$4, _path182$4, _path183$4, _path184$4, _path185$4, _path186$4, _path187$4, _path188$4, _path189$4, _path190$4, _path191$4, _path192$4, _path193$4, _path194$4, _path195$4, _path196$4, _path197$4, _path198$4, _path199$4, _path200$4, _path201$4, _path202$4, _path203$4, _path204$4, _path205$4, _path206$4, _path207$4, _path208$4, _path209$4, _path210$4, _path211$4, _path212$3, _path213$3, _path214$3, _path215$2, _circle18$1, _circle19$1, _circle20$1, _path216$2, _path217$2; var _excluded$9 = ["children", "size"], _excluded2$4 = ["children", "size"], _excluded3$4 = ["children", "size"], _excluded4$4 = ["children", "size"], _excluded5$4 = ["children", "size"], _excluded6$4 = ["children", "size"], _excluded7$4 = ["children", "size"], _excluded8$4 = ["children", "size"], _excluded9$4 = ["children", "size"], _excluded10$4 = ["children", "size"], _excluded11$4 = ["children", "size"], _excluded12$4 = ["children", "size"], _excluded13$4 = ["children", "size"], _excluded14$4 = ["children", "size"], _excluded15$4 = ["children", "size"], _excluded16$4 = ["children", "size"], _excluded17$4 = ["children", "size"], _excluded18$4 = ["children", "size"], _excluded19$4 = ["children", "size"], _excluded20$4 = ["children", "size"], _excluded21$4 = ["children", "size"], _excluded22$4 = ["children", "size"], _excluded23$4 = ["children", "size"], _excluded24$4 = ["children", "size"], _excluded25$4 = ["children", "size"], _excluded26$4 = ["children", "size"], _excluded27$4 = ["children", "size"], _excluded28$4 = ["children", "size"], _excluded29$4 = ["children", "size"], _excluded30$4 = ["children", "size"], _excluded31$4 = ["children", "size"], _excluded32$4 = ["children", "size"], _excluded33$4 = ["children", "size"], _excluded34$4 = ["children", "size"], _excluded35$4 = ["children", "size"], _excluded36$4 = ["children", "size"], _excluded37$4 = ["children", "size"], _excluded38$4 = ["children", "size"], _excluded39$4 = ["children", "size"], _excluded40$4 = ["children", "size"], _excluded41$4 = ["children", "size"], _excluded42$4 = ["children", "size"], _excluded43$4 = ["children", "size"], _excluded44$4 = ["children", "size"], _excluded45$4 = ["children", "size"], _excluded46$4 = ["children", "size"], _excluded47$4 = ["children", "size"], _excluded48$4 = ["children", "size"], _excluded49$4 = ["children", "size"], _excluded50$4 = ["children", "size"], _excluded51$4 = ["children", "size"], _excluded52$4 = ["children", "size"], _excluded53$4 = ["children", "size"], _excluded54$4 = ["children", "size"], _excluded55$4 = ["children", "size"], _excluded56$4 = ["children", "size"], _excluded57$4 = ["children", "size"], _excluded58$4 = ["children", "size"], _excluded59$4 = ["children", "size"], _excluded60$4 = ["children", "size"], _excluded61$4 = ["children", "size"], _excluded62$4 = ["children", "size"], _excluded63$4 = ["children", "size"], _excluded64$4 = ["children", "size"], _excluded65$4 = ["children", "size"], _excluded66$4 = ["children", "size"], _excluded67$4 = ["children", "size"], _excluded68$4 = ["children", "size"], _excluded69$4 = ["children", "size"], _excluded70$4 = ["children", "size"], _excluded71$4 = ["children", "size"], _excluded72$4 = ["children", "size"], _excluded73$4 = ["children", "size"], _excluded74$4 = ["children", "size"], _excluded75$4 = ["children", "size"], _excluded76$4 = ["children", "size"], _excluded77$4 = ["children", "size"], _excluded78$4 = ["children", "size"], _excluded79$4 = ["children", "size"], _excluded80$4 = ["children", "size"], _excluded81$4 = ["children", "size"], _excluded82$4 = ["children", "size"], _excluded83$4 = ["children", "size"], _excluded84$4 = ["children", "size"], _excluded85$4 = ["children", "size"], _excluded86$4 = ["children", "size"], _excluded87$4 = ["children", "size"], _excluded88$4 = ["children", "size"], _excluded89$4 = ["children", "size"], _excluded90$4 = ["children", "size"], _excluded91$4 = ["children", "size"], _excluded92$4 = ["children", "size"], _excluded93$4 = ["children", "size"], _excluded94$4 = ["children", "size"], _excluded95$4 = ["children", "size"], _excluded96$4 = ["children", "size"], _excluded97$4 = ["children", "size"], _excluded98$4 = ["children", "size"], _excluded99$4 = ["children", "size"], _excluded100$4 = ["children", "size"], _excluded101$4 = ["children", "size"], _excluded102$4 = ["children", "size"], _excluded103$4 = ["children", "size"], _excluded104$4 = ["children", "size"], _excluded105$4 = ["children", "size"], _excluded106$4 = ["children", "size"], _excluded107$4 = ["children", "size"], _excluded108$4 = ["children", "size"], _excluded109$4 = ["children", "size"], _excluded110$4 = ["children", "size"], _excluded111$4 = ["children", "size"], _excluded112$4 = ["children", "size"], _excluded113$4 = ["children", "size"], _excluded114$4 = ["children", "size"], _excluded115$4 = ["children", "size"], _excluded116$4 = ["children", "size"], _excluded117$4 = ["children", "size"], _excluded118$4 = ["children", "size"], _excluded119$4 = ["children", "size"], _excluded120$4 = ["children", "size"], _excluded121$4 = ["children", "size"], _excluded122$4 = ["children", "size"], _excluded123$4 = ["children", "size"], _excluded124$3 = ["children", "size"], _excluded125$3 = ["children", "size"]; var ProgressBarRound = /*#__PURE__*/React__default["default"].forwardRef(function ProgressBarRound(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$4 || (_path$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z" })), _path2$4 || (_path2$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z" })), _path3$4 || (_path3$4 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { ProgressBarRound.propTypes = iconPropTypes; } var Promote = /*#__PURE__*/React__default["default"].forwardRef(function Promote(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$4 || (_path4$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 21L17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z" })), _path5$4 || (_path5$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.3 19H17.6V21H6.3z", transform: "rotate(-45.001 12 20)" })), _path6$4 || (_path6$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z" })), children); }); { Promote.propTypes = iconPropTypes; } var PropertyRelationship = /*#__PURE__*/React__default["default"].forwardRef(function PropertyRelationship(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7$4 || (_path7$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 16L22 24 20.6 22.6 27.2 16 20.6 9.4 22 8zM12 15H20V17H12zM2 16L10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z" })), children); }); { PropertyRelationship.propTypes = iconPropTypes; } var Purchase = /*#__PURE__*/React__default["default"].forwardRef(function Purchase(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$4 || (_path8$4 = /*#__PURE__*/React__default["default"].createElement("path", { 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,6Zm0,2v3H4V8ZM4,24V13H28V24Z" })), _path9$4 || (_path9$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 20H16V22H6z" })), children); }); { Purchase.propTypes = iconPropTypes; } var WatsonHealthQcLaunch = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthQcLaunch(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$4 || (_path10$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 22H19a2.0023 2.0023 0 01-2-2V10a2.002 2.002 0 012-2h6v2H19V20h6zM13 8H9a2.002 2.002 0 00-2 2V20a2.0023 2.0023 0 002 2h1v2a2.0023 2.0023 0 002 2h2V24H12V22h1a2.0023 2.0023 0 002-2V10A2.002 2.002 0 0013 8zM9 20V10h4V20z" })), _path11$4 || (_path11$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z" })), children); }); { WatsonHealthQcLaunch.propTypes = iconPropTypes; } var QqPlot = /*#__PURE__*/React__default["default"].forwardRef(function QqPlot(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$4 || (_circle$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "20", cy: "4", r: "2" })), _circle2$4 || (_circle2$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "8", cy: "16", r: "2" })), _circle3$4 || (_circle3$4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "12", r: "2" })), _circle4$3 || (_circle4$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "7", r: "2" })), _circle5$3 || (_circle5$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "24", r: "2" })), _path12$4 || (_path12$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z" })), children); }); { QqPlot.propTypes = iconPropTypes; } var QrCode = /*#__PURE__*/React__default["default"].forwardRef(function QrCode(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$4 || (_path13$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 26H26V28H24z", transform: "rotate(-90 25 27)" })), _path14$4 || (_path14$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 22H20V24H18z", transform: "rotate(-90 19 23)" })), _path15$4 || (_path15$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 30L22 30 22 28 20 28 20 26 18 26 18 30z" })), _path16$4 || (_path16$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23H29V25H25z", transform: "rotate(-90 27 24)" })), _path17$4 || (_path17$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 26L30 26 30 30 26 30 26 28 28 28 28 26zM26 20L26 18 30 18 30 22 28 22 28 20 26 20zM24 20L22 20 22 24 20 24 20 26 24 26 24 20z" })), _path18$4 || (_path18$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 17H21V21H19z", transform: "rotate(-90 20 19)" })), _path19$4 || (_path19$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 22H10V26H6z" })), _path20$4 || (_path20$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 30H2V18H14zM4 28h8V20H4zM22 6H26V10H22z" })), _path21$4 || (_path21$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 14H18V2H30zM20 12h8V4H20zM6 6H10V10H6z" })), _path22$4 || (_path22$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,14H2V2H14ZM4,12h8V4H4Z" })), children); }); { QrCode.propTypes = iconPropTypes; } var QuadrantPlot = /*#__PURE__*/React__default["default"].forwardRef(function QuadrantPlot(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$4 || (_path23$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 15L17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" })), _path24$4 || (_path24$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 30a3 3 0 113-3A3.0033 3.0033 0 015 30zm0-4a1 1 0 101 1A1.001 1.001 0 005 26zM8 8a3 3 0 113-3A3.0033 3.0033 0 018 8zM8 4A1 1 0 109 5 1.001 1.001 0 008 4zM22 13a3 3 0 113-3A3.0033 3.0033 0 0122 13zm0-4a1 1 0 101 1A1.001 1.001 0 0022 9z" })), _circle6$3 || (_circle6$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "11", r: "2" })), _circle7$3 || (_circle7$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "21", r: "2" })), _circle8$3 || (_circle8$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21", cy: "21", r: "2" })), _circle9$3 || (_circle9$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "28", r: "2" })), _circle10$3 || (_circle10$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "24", r: "2" })), _circle11$3 || (_circle11$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "4", cy: "11", r: "2" })), _circle12$2 || (_circle12$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "28", cy: "4", r: "2" })), children); }); { QuadrantPlot.propTypes = iconPropTypes; } var Query = /*#__PURE__*/React__default["default"].forwardRef(function Query(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle13$2 || (_circle13$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "15.5", r: "1.5" })), _path25$4 || (_path25$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,12H10V8h2a2,2,0,0,0,0-4H10A2.0023,2.0023,0,0,0,8,6v.5H6V6a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z" })), _path26$4 || (_path26$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.4479,21.0337A10.971,10.971,0,0,0,19.9211,4.7446l-.999,1.73A8.9967,8.9967,0,1,1,5,14H3a10.9916,10.9916,0,0,0,18.0338,8.4478L28.5859,30,30,28.5859Z" })), children); }); { Query.propTypes = iconPropTypes; } var QueryQueue = /*#__PURE__*/React__default["default"].forwardRef(function QueryQueue(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$4 || (_path27$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 6H28V8H10zM10 12H28V14H10zM15 18H28V20H15zM10 24H28V26H10zM4 14L11 19 4 24 4 14z" })), children); }); { QueryQueue.propTypes = iconPropTypes; } var Queued = /*#__PURE__*/React__default["default"].forwardRef(function Queued(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$4 || (_path28$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 20H30V22H22zM22 24H30V26H22zM22 28H30V30H22zM18 24H20V26H18zM18 20H20V22H18zM18 28H20V30H18zM6.8149 8.293A12.0777 12.0777 0 0110.0068 5.62L9.0079 3.89A14.0845 14.0845 0 005.2841 7.0083zM25.1851 8.293l1.5308-1.2847A14.0845 14.0845 0 0022.9921 3.89l-.9989 1.73A12.0777 12.0777 0 0125.1851 8.293zM4.7366 11.9l-1.8772-.6831A13.9019 13.9019 0 002 16H4A11.917 11.917 0 014.7366 11.9zM6.8149 23.707A11.9975 11.9975 0 014.7366 20.1l-1.8772.6831a13.99 13.99 0 002.4247 4.209zM27.2634 11.9A11.917 11.917 0 0128 16h2a13.8971 13.8971 0 00-.8594-4.7827zM13.9182 27.8066A11.8894 11.8894 0 0110.0068 26.38l-.9989 1.73a13.8673 13.8673 0 004.5633 1.664zM13.9182 4.1934a11.3012 11.3012 0 014.1636 0l.347-1.9678a13.187 13.187 0 00-4.8576 0z" })), children); }); { Queued.propTypes = iconPropTypes; } var Quotes = /*#__PURE__*/React__default["default"].forwardRef(function Quotes(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$4 || (_path29$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15H6.11A9 9 0 0110 8.86l1.79-1.2L10.69 6 8.9 7.2A11 11 0 004 16.35V23a2 2 0 002 2h6a2 2 0 002-2V17A2 2 0 0012 15zM26 15H20.11A9 9 0 0124 8.86l1.79-1.2L24.7 6 22.9 7.2A11 11 0 0018 16.35V23a2 2 0 002 2h6a2 2 0 002-2V17A2 2 0 0026 15z" })), children); }); { Quotes.propTypes = iconPropTypes; } var Radar = /*#__PURE__*/React__default["default"].forwardRef(function Radar(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$4 || (_path30$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,3.4141,28.5859,2,15.293,15.293a1,1,0,0,0,1.414,1.414l4.18-4.1792A5.9956,5.9956,0,1,1,16,10V8a8.011,8.011,0,1,0,6.3164,3.0977L25.1631,8.251A11.881,11.881,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a13.8572,13.8572,0,0,0-3.4224-9.1636Z" })), children); }); { Radar.propTypes = iconPropTypes; } var RadarEnhanced = /*#__PURE__*/React__default["default"].forwardRef(function RadarEnhanced(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$4 || (_path31$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541A4.9817,4.9817,0,0,1,18,19a5.0385,5.0385,0,0,1-.6074-.05,8.0432,8.0432,0,0,0-4.3421-4.3423A4.9,4.9,0,0,1,18,9V7a7.0078,7.0078,0,0,0-7,7c0,.0234.0056.0469.0059.07A8.0469,8.0469,0,0,0,10,14a7.95,7.95,0,0,0-1.9883.26C8.0095,14.1729,8,14.0879,8,14A10.0114,10.0114,0,0,1,18,4V2A12.0137,12.0137,0,0,0,6,14c0,.355.0171.7061.0471,1.0537A7.9943,7.9943,0,1,0,16.9465,25.9521c.35.03.7019.0479,1.0535.0479A11.9853,11.9853,0,0,0,27.1538,6.2607ZM15.91,21H13.9563a12.029,12.029,0,0,0-1.218-4.332A6.01,6.01,0,0,1,15.91,21ZM4.09,23H6.0435a12.0318,12.0318,0,0,0,1.2182,4.3325A6.01,6.01,0,0,1,4.09,23Zm1.9532-2H4.09a6.01,6.01,0,0,1,3.1714-4.332A12.0321,12.0321,0,0,0,6.0435,21ZM10,27.9858A10.0149,10.0149,0,0,1,8.0552,23h3.89A10.0149,10.0149,0,0,1,10,27.9858ZM8.0552,21A10.0118,10.0118,0,0,1,10,16.0151,10.01,10.01,0,0,1,11.9448,21Zm4.6831,6.3325A12.0318,12.0318,0,0,0,13.9565,23H15.91A6.01,6.01,0,0,1,12.7383,27.3325ZM28,14A10.0114,10.0114,0,0,1,18,24c-.0869,0-.1733-.01-.26-.0117a7.5527,7.5527,0,0,0,.19-2.9942c.0237,0,.0466.0059.07.0059A6.9991,6.9991,0,0,0,23.6055,9.8086l2.1313-2.1314A9.95,9.95,0,0,1,28,14Z" })), children); }); { RadarEnhanced.propTypes = iconPropTypes; } var RadarWeather = /*#__PURE__*/React__default["default"].forwardRef(function RadarWeather(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$4 || (_path32$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541a4.9646,4.9646,0,0,1-3.8811,7.7193,7.0485,7.0485,0,0,0-5.1438-3.8731A4.9431,4.9431,0,0,1,18,9V7a6.9551,6.9551,0,0,0-6.9087,8.0791,6.93,6.93,0,0,0-2.8525,1.06A9.97,9.97,0,0,1,18,4V2A11.9756,11.9756,0,0,0,6.573,17.6357a6.9293,6.9293,0,0,0-1.3674,2.7061A4.9948,4.9948,0,0,0,7,30H17a4.9921,4.9921,0,0,0,4.9678-4.68A12.0391,12.0391,0,0,0,30,14a11.8678,11.8678,0,0,0-2.8389-7.7466ZM17,28H7a2.9945,2.9945,0,0,1-.6963-5.9082l.6587-.1572.0986-.67a4.9923,4.9923,0,0,1,9.878,0l.0986.6695.6587.1572A2.9945,2.9945,0,0,1,17,28ZM28,14a10.0346,10.0346,0,0,1-6.3118,9.291,4.9577,4.9577,0,0,0-2.0207-2.5,6.9922,6.9922,0,0,0,3.938-10.9824l2.132-2.1318A9.8873,9.8873,0,0,1,28,14Z" })), children); }); { RadarWeather.propTypes = iconPropTypes; } var Radio$1 = /*#__PURE__*/React__default["default"].forwardRef(function Radio(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path33$4 || (_path33$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H24V2H22v8H13V8H11v2H8V8H6v2H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM4,28V12H28V28Z" })), _path34$4 || (_path34$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 26a4 4 0 114-4A4 4 0 0110 26zm0-6a2 2 0 102 2A2 2 0 0010 20zM7 14H13V16H7zM17 16H26V18H17zM17 20H26V22H17zM17 24H26V26H17z" })), children); }); { Radio$1.propTypes = iconPropTypes; } var RadioCombat = /*#__PURE__*/React__default["default"].forwardRef(function RadioCombat(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$4 || (_path35$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 26a4 4 0 114-4A4.0045 4.0045 0 0110 26zm0-6a2 2 0 102 2A2.0021 2.0021 0 0010 20zM17 20H26V22H17zM17 24H26V26H17z" })), _path36$4 || (_path36$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,12h8a2.0023,2.0023,0,0,0,2-2V6a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2V7H12a4.0045,4.0045,0,0,0-4,4v3H6V4H4V14a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V16a2.0023,2.0023,0,0,0-2-2H10V11a2.0023,2.0023,0,0,1,2-2h6v1A2.0023,2.0023,0,0,0,20,12Zm4-6h4v4H24ZM20,6h2v4H20Zm8,22H4V16H28Z" })), children); }); { RadioCombat.propTypes = iconPropTypes; } var RadioPushToTalk = /*#__PURE__*/React__default["default"].forwardRef(function RadioPushToTalk(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$4 || (_path37$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 11H19V13H13zM13 15H19V17H13z" })), _circle14$1 || (_circle14$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "23", r: "2" })), _path38$4 || (_path38$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,7H21V2H19V7H10A2.0023,2.0023,0,0,0,8,9v2H6v2H8v2H6v2H8V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,22,7ZM10,28V9H22V28Z" })), children); }); { RadioPushToTalk.propTypes = iconPropTypes; } var RadioButton = /*#__PURE__*/React__default["default"].forwardRef(function RadioButton(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$4 || (_path39$4 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { RadioButton.propTypes = iconPropTypes; } var RadioButtonChecked = /*#__PURE__*/React__default["default"].forwardRef(function RadioButtonChecked(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$4 || (_path40$4 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path41$4 || (_path41$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Z" })), children); }); { RadioButtonChecked.propTypes = iconPropTypes; } var Rain = /*#__PURE__*/React__default["default"].forwardRef(function Rain(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path42$4 || (_path42$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5 22H8.5A6.5 6.5 0 017.2 9.14a9 9 0 0117.6 0A6.5 6.5 0 0123.5 22zM16 4a7 7 0 00-6.94 6.14L9 11 8.14 11a4.5 4.5 0 00.36 9h15a4.5 4.5 0 00.36-9L23 11l-.1-.82A7 7 0 0016 4zM14 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 0114 30zM20 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 0120 30zM8 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 018 30z" })), children); }); { Rain.propTypes = iconPropTypes; } var RainDrizzle = /*#__PURE__*/React__default["default"].forwardRef(function RainDrizzle(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$4 || (_path43$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,30a1,1,0,0,1-.8944-1.4474l2-4a1,1,0,1,1,1.7887.8946l-2,4A.9979.9979,0,0,1,11,30Z" })), _path44$4 || (_path44$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4973,6.4973,0,0,0,8.5,22H19.3813L18.105,24.5527a1,1,0,0,0,1.789.8946L21.6177,22H23.5A6.4974,6.4974,0,0,0,24.8008,9.1362ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z" })), children); }); { RainDrizzle.propTypes = iconPropTypes; } var RainHeavy = /*#__PURE__*/React__default["default"].forwardRef(function RainHeavy(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$4 || (_path45$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 0117 30zM8 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 018 30z" })), _path46$4 || (_path46$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15.5a6.5323,6.5323,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0A6.4905,6.4905,0,0,0,5.7026,21.3584L4.106,24.5527a1,1,0,1,0,1.7885.8946L7.6174,22l6.7644,0L13.106,24.5527a1,1,0,1,0,1.7885.8946L16.6177,22h6.7641L22.106,24.5527a1,1,0,1,0,1.7885.8946l1.9444-3.89A6.5058,6.5058,0,0,0,30,15.5ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z" })), children); }); { RainHeavy.propTypes = iconPropTypes; } var RainScattered = /*#__PURE__*/React__default["default"].forwardRef(function RainScattered(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$4 || (_path47$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5084,32a1.0127,1.0127,0,0,1-.4485-.1054.9986.9986,0,0,1-.4486-1.3418l1.4934-3.0005a1.0025,1.0025,0,0,1,1.7943.8945l-1.4934,3A1.0013,1.0013,0,0,1,8.5084,32Z" })), _path48$4 || (_path48$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.232 15.733H29.232V18.733H27.232z", transform: "rotate(-45.009 28.232 17.233)" })), _path49$4 || (_path49$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 10H32V12H29z" })), _path50$4 || (_path50$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.732 3.768H29.732V5.768H26.732z", transform: "rotate(-45 28.232 4.768)" })), _path51$4 || (_path51$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 0H22V3H20z" })), _path52$4 || (_path52$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.768 3.268H14.768V6.268H12.768z", transform: "rotate(-45 13.768 4.768)" })), _path53$4 || (_path53$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11ZM19,23H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23Zm3.9268-8.5107a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z" })), children); }); { RainScattered.propTypes = iconPropTypes; } var RainScatteredNight = /*#__PURE__*/React__default["default"].forwardRef(function RainScatteredNight(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$4 || (_path54$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5084 32a1.0115 1.0115 0 01-.4485-.1055.9986.9986 0 01-.4486-1.3418l1.4934-3a1.0025 1.0025 0 011.7943.8945l-1.4934 3A1.0015 1.0015 0 018.5084 32zM29.8442 13.0347a1.5184 1.5184 0 00-1.2309-.8658 5.3587 5.3587 0 01-3.4094-1.7163 6.4648 6.4648 0 01-1.285-6.393 1.6031 1.6031 0 00-.3-1.5459 1.4535 1.4535 0 00-1.3594-.4922l-.0191.0029a7.8549 7.8549 0 00-6.1054 6.48A7.3725 7.3725 0 0013.5 8a7.5511 7.5511 0 00-7.1494 5.2441A5.9926 5.9926 0 008 25h7.3818L14.106 27.5527a1 1 0 101.7885.8946L17.6177 25H19a5.9549 5.9549 0 005.88-7.1455 7.5 7.5 0 004.8672-3.3A1.5381 1.5381 0 0029.8442 13.0347zM19 23H8a3.9926 3.9926 0 01-.6733-7.9292l.663-.1128.1456-.6562a5.496 5.496 0 0110.7294 0l.1456.6562.6626.1128A3.9925 3.9925 0 0119 23zm5.1509-7.0479a5.9639 5.9639 0 00-3.5015-2.708A7.5076 7.5076 0 0018.0286 9.55a6.01 6.01 0 013.77-5.334 8.4581 8.4581 0 001.9395 7.5972A7.4007 7.4007 0 0027.64 14.041 5.4392 5.4392 0 0124.1509 15.9521z" })), children); }); { RainScatteredNight.propTypes = iconPropTypes; } var RainDrop = /*#__PURE__*/React__default["default"].forwardRef(function RainDrop(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$4 || (_path55$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24V22a3.2965,3.2965,0,0,0,3-3h2A5.2668,5.2668,0,0,1,16,24Z" })), _path56$4 || (_path56$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28a9.0114,9.0114,0,0,1-9-9,9.9843,9.9843,0,0,1,1.4941-4.9554L15.1528,3.4367a1.04,1.04,0,0,1,1.6944,0l6.6289,10.5564A10.0633,10.0633,0,0,1,25,19,9.0114,9.0114,0,0,1,16,28ZM16,5.8483l-5.7817,9.2079A7.9771,7.9771,0,0,0,9,19a7,7,0,0,0,14,0,8.0615,8.0615,0,0,0-1.248-3.9953Z" })), children); }); { RainDrop.propTypes = iconPropTypes; } var Raw = /*#__PURE__*/React__default["default"].forwardRef(function Raw(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$4 || (_path57$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.2 9L28.86 17 28.6 21.54 28.19 18 27.51 12.54 25.49 12.54 24.81 18 24.4 21.54 24.14 17 23.8 9 22 9 23 23 25.27 23 26.03 18.07 26.49 14 26.5 13.97 26.51 14 26.97 18.07 27.73 23 30 23 31 9 29.2 9zM18 9H14a2 2 0 00-2 2V23h2V18h4v5h2V11A2 2 0 0018 9zm-4 7V11h4v5zM10 15V11A2 2 0 008 9H2V23H4V17H5.48l2.34 6H10L7.63 17H8A2 2 0 0010 15zM4 11H8v4H4z" })), children); }); { Raw.propTypes = iconPropTypes; } var Receipt = /*#__PURE__*/React__default["default"].forwardRef(function Receipt(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$4 || (_path58$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 16H23V18H21zM9 16H17V18H9zM21 12H23V14H21zM9 12H17V14H9zM9 8H23V10H9z" })), _path59$4 || (_path59$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,2H7A2.002,2.002,0,0,0,5,4V29a1,1,0,0,0,1,1H7a.9987.9987,0,0,0,.8-.4L10,26.667,12.2,29.6a1.0353,1.0353,0,0,0,1.6,0L16,26.667,18.2,29.6a1.0353,1.0353,0,0,0,1.6,0L22,26.667,24.2,29.6a.9993.9993,0,0,0,.8.4h1a1,1,0,0,0,1-1V4A2.0023,2.0023,0,0,0,25,2Zm0,25.333L22.8,24.4a1.0353,1.0353,0,0,0-1.6,0L19,27.333,16.8,24.4a1.0353,1.0353,0,0,0-1.6,0L13,27.333,10.8,24.4a1.0353,1.0353,0,0,0-1.6,0L7,27.333V4H25Z" })), children); }); { Receipt.propTypes = iconPropTypes; } var RecentlyViewed = /*#__PURE__*/React__default["default"].forwardRef(function RecentlyViewed(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$4 || (_path60$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.59 22L15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z" })), _path61$4 || (_path61$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.94,13.94,0,0,0,6,6.23V2H4v8h8V8H7.08A12,12,0,1,1,4,16H2A14,14,0,1,0,16,2Z" })), children); }); { RecentlyViewed.propTypes = iconPropTypes; } var Recommend = /*#__PURE__*/React__default["default"].forwardRef(function Recommend(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$4 || (_path62$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2a9,9,0,0,0-6,15.69V30l6-4,6,4V17.69A9,9,0,0,0,16,2Zm4,24.26-2.89-1.92L16,23.6l-1.11.74L12,26.26V19.05a8.88,8.88,0,0,0,8,0ZM20.89,16A7,7,0,1,1,23,11,7,7,0,0,1,20.89,16Z" })), children); }); { Recommend.propTypes = iconPropTypes; } var Recording = /*#__PURE__*/React__default["default"].forwardRef(function Recording(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63$4 || (_path63$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), _path64$4 || (_path64$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,12a4,4,0,1,1-4,4,4,4,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z" })), children); }); { Recording.propTypes = iconPropTypes; } var RecordingFilled = /*#__PURE__*/React__default["default"].forwardRef(function RecordingFilled(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle15$1 || (_circle15$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "4" })), _path65$4 || (_path65$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6 S19.3,22,16,22z" })), children); }); { RecordingFilled.propTypes = iconPropTypes; } var RecordingFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function RecordingFilledAlt(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$4 || (_path66$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S19.3,22,16,22 z" })), _path67$4 || (_path67$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S19.3,10,16,10z", "data-icon-path": "inner-path", opacity: "0" })), children); }); { RecordingFilledAlt.propTypes = iconPropTypes; } var Redo = /*#__PURE__*/React__default["default"].forwardRef(function Redo(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$4); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path68$4 || (_path68$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,8c-1.2,0-2,0.8-2,2c0,1.2,0.8,2,2,2h3v1H4c-1.7,0-3-1.2-3-3c0-1.7,1.3-3,3-3l9.1,0l-2-2l0.7-0.7 L15,7.5l-3.2,3.2L11.1,10l2-2L4,8z" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path69$4 || (_path69$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5,9.3c-1.5,0-2.8,1.3-2.8,2.7c0,1.5,1.3,2.7,2.8,2.7h4V16H5c-2.3,0-4-1.7-4-4c0-2.2,1.8-4,4-4h11.6 l-2.5-2.5L15,4.6l4,4l-4,4l-0.9-0.9l2.5-2.5H5z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path70$4 || (_path70$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.8,11.2c-1.8,0-3.2,1.7-3.2,3.3c0,1.5,1.5,3.2,3.2,3.2H10v1.5H6.8C4.6,19.2,2,17,2,14.5s2-4.8,4.8-4.8 h12.4l-3-3l1.1-1.1l4.8,4.8l-4.8,4.8l-1.1-1.1l3-3H6.8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71$4 || (_path71$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,10H24.1851L20.5977,6.4141,22,5,28,11,22,17l-1.4023-1.4146L24.1821,12H12a6,6,0,0,0,0,12h8v2H12a8,8,0,0,1,0-16Z" })), children); }); { Redo.propTypes = iconPropTypes; } var RefEvapotranspiration = /*#__PURE__*/React__default["default"].forwardRef(function RefEvapotranspiration(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$4 || (_path72$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 12a3.8978 3.8978 0 01-4-3.777 3.9017 3.9017 0 01.6533-2.0639L13.17 2.4141a1.0381 1.0381 0 011.6592 0L17.3154 6.11A3.9693 3.9693 0 0118 8.223 3.8978 3.8978 0 0114 12zm.0005-7.2368L12.3438 7.2257A1.89 1.89 0 0012 8.223 1.9 1.9 0 0014 10a1.9 1.9 0 002-1.777 1.98 1.98 0 00-.375-1.0466zM7.5 26A5.385 5.385 0 012 20.751 5.3837 5.3837 0 012.874 17.92L6.49 12.5383a1.2168 1.2168 0 012.02-.0006l3.55 5.2777A5.4923 5.4923 0 0113 20.751 5.385 5.385 0 017.5 26zm0-11.38L4.5649 18.9868A3.3586 3.3586 0 004 20.751 3.3855 3.3855 0 007.5 24 3.3855 3.3855 0 0011 20.751a3.4354 3.4354 0 00-.63-1.867zM25 2L20 7l1.4141 1.4141L24 5.8281V16a4.0045 4.0045 0 01-4 4H16v2h4a6.0066 6.0066 0 006-6V5.8281l2.5859 2.586L30 7zM2 28H30V30H2z" })), children); }); { RefEvapotranspiration.propTypes = iconPropTypes; } var ReflectHorizontal = /*#__PURE__*/React__default["default"].forwardRef(function ReflectHorizontal(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path73$4 || (_path73$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.386,15.2105l9-7A1,1,0,0,1,30,9V23a1,1,0,0,1-1.614.79l-9-7a1,1,0,0,1,0-1.5791Z" })), _path74$4 || (_path74$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V30H15z", transform: "rotate(-180 16 16)" })), _path75$4 || (_path75$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,16a1.001,1.001,0,0,1-.386.79l-9,7A1,1,0,0,1,2,23V9a1,1,0,0,1,1.614-.79l9,7A1.001,1.001,0,0,1,13,16ZM4,20.9556,10.3711,16,4,11.0444Z" })), children); }); { ReflectHorizontal.propTypes = iconPropTypes; } var ReflectVertical = /*#__PURE__*/React__default["default"].forwardRef(function ReflectVertical(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$4 || (_path76$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.79,19.386l7,9A1,1,0,0,1,23,30H9a1,1,0,0,1-.79-1.614l7-9a1,1,0,0,1,1.5791,0Z" })), _path77$4 || (_path77$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V30H15z", transform: "rotate(-90 16 16)" })), _path78$4 || (_path78$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,13a1.001,1.001,0,0,1-.79-.386l-7-9A1,1,0,0,1,9,2H23a1,1,0,0,1,.79,1.614l-7,9A1.001,1.001,0,0,1,16,13ZM11.0444,4,16,10.3711,20.9556,4Z" })), children); }); { ReflectVertical.propTypes = iconPropTypes; } var WatsonHealthRegionAnalysisArea = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthRegionAnalysisArea(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$4 || (_path79$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z" })), _path80$4 || (_path80$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30A14,14,0,1,1,30,16H28A12,12,0,1,0,16,28Z" })), children); }); { WatsonHealthRegionAnalysisArea.propTypes = iconPropTypes; } var WatsonHealthRegionAnalysisVolume = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthRegionAnalysisVolume(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path81$4 || (_path81$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z" })), _path82$4 || (_path82$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.8305,20.3555A24.9534,24.9534,0,0,0,15,22.9644v-2A22.9014,22.9014,0,0,1,4.1335,17.6919,11.979,11.979,0,0,1,4,16a11.9847,11.9847,0,0,1,.1332-1.69,22.9282,22.9282,0,0,1,23.7336,0A11.9847,11.9847,0,0,1,28,16h2A14,14,0,1,0,16,30V28A12.01,12.01,0,0,1,4.8305,20.3555ZM16,4a12.01,12.01,0,0,1,11.17,7.6465,24.8982,24.8982,0,0,0-22.3406,0A12.01,12.01,0,0,1,16,4Z" })), children); }); { WatsonHealthRegionAnalysisVolume.propTypes = iconPropTypes; } var WatsonHealthRegistration = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthRegistration(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$4 || (_path83$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 25H20a2.0027 2.0027 0 01-2-2V20h2v3h8V9H20v3H18V9a2.0023 2.0023 0 012-2h8a2.0023 2.0023 0 012 2V23A2.0027 2.0027 0 0128 25zM8 15H12V17H8z" })), _path84$4 || (_path84$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 15H24V17H20zM14 15H18V17H14zM12 25H4a2.0023 2.0023 0 01-2-2V9A2.002 2.002 0 014 7h8a2.002 2.002 0 012 2v3H12V9H4V23h8V20h2v3A2.0023 2.0023 0 0112 25z" })), children); }); { WatsonHealthRegistration.propTypes = iconPropTypes; } var Reminder = /*#__PURE__*/React__default["default"].forwardRef(function Reminder(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$4 || (_path85$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,23.3818l-2-1V20a6.0046,6.0046,0,0,0-5-5.91V12H21v2.09A6.0046,6.0046,0,0,0,16,20v2.3818l-2,1V28h6v2h4V28h6ZM28,26H16V24.6182l2-1V20a4,4,0,0,1,8,0v3.6182l2,1Z" })), _path86$4 || (_path86$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z" })), children); }); { Reminder.propTypes = iconPropTypes; } var ReminderMedical = /*#__PURE__*/React__default["default"].forwardRef(function ReminderMedical(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$4 || (_path87$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,12v2h1v4a3,3,0,0,1-6,0V14h1V12H20v6a5.0083,5.0083,0,0,0,4,4.8989V24a4,4,0,0,1-8,0V21.8157a3,3,0,1,0-2,0V24a6,6,0,0,0,12,0V22.8989A5.0083,5.0083,0,0,0,30,18V12ZM15,18a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,15,18Z" })), _path88$4 || (_path88$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2l4,0V26L6,26V6h4V8h2V6h8V8h2V6h4v4h2V6A2,2,0,0,0,26,4Z" })), children); }); { ReminderMedical.propTypes = iconPropTypes; } var Renew = /*#__PURE__*/React__default["default"].forwardRef(function Renew(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$4 || (_path89$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 10H6.78A11 11 0 0127 16h2A13 13 0 006 7.68V4H4v8h8zM20 22h5.22A11 11 0 015 16H3a13 13 0 0023 8.32V28h2V20H20z" })), children); }); { Renew.propTypes = iconPropTypes; } var Repeat = /*#__PURE__*/React__default["default"].forwardRef(function Repeat(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$4 || (_path90$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H26.1719l-3.586-3.5859L24 1l6 6-6 6-1.4141-1.4141L26.1719 8H6v7H4V8A2.0024 2.0024 0 016 6zM9.4141 20.4141L5.8281 24H26V17h2v7a2.0024 2.0024 0 01-2 2H5.8281L9.414 29.5859 8 31 2 25l6-6z" })), children); }); { Repeat.propTypes = iconPropTypes; } var RepeatOne = /*#__PURE__*/React__default["default"].forwardRef(function RepeatOne(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$4 || (_path91$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H26.1719l-3.586-3.5859L24 1l6 6-6 6-1.4141-1.4141L26.1719 8H6v7H4V8A2.0024 2.0024 0 016 6zM9.4141 20.4141L5.8281 24H26V17h2v7a2.0024 2.0024 0 01-2 2H5.8281L9.414 29.5859 8 31 2 25l6-6z" })), _path92$4 || (_path92$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 19L17 11 15 11 15 12 13 12 13 14 15 14 15 19 13 19 13 21 19 21 19 19 17 19z" })), children); }); { RepeatOne.propTypes = iconPropTypes; } var Replicate = /*#__PURE__*/React__default["default"].forwardRef(function Replicate(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$4 || (_path93$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 8h2V4a2.0021 2.0021 0 00-2-2H24V4h4zM17 2H21V4H17zM28 11H30V15H28zM28 18v4H24V10a2.0023 2.0023 0 00-2-2H10V4h4V2H10A2.0023 2.0023 0 008 4V8H4a2.0023 2.0023 0 00-2 2V28a2.0023 2.0023 0 002 2H22a2.0023 2.0023 0 002-2V24h4a2.0023 2.0023 0 002-2V18zM22 28H4V10H22z" })), children); }); { Replicate.propTypes = iconPropTypes; } var Reply = /*#__PURE__*/React__default["default"].forwardRef(function Reply(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$4 || (_path94$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.88,30a1,1,0,0,1-.88-.5A15.19,15.19,0,0,0,15,22v6a1,1,0,0,1-.62.92,1,1,0,0,1-1.09-.21l-12-12a1,1,0,0,1,0-1.42l12-12a1,1,0,0,1,1.09-.21A1,1,0,0,1,15,4v6.11a17.19,17.19,0,0,1,15,17,16.34,16.34,0,0,1-.13,2,1,1,0,0,1-.79.86ZM14.5,20A17.62,17.62,0,0,1,28,26,15.31,15.31,0,0,0,13.91,12,1,1,0,0,1,13,11V6.41L3.41,16,13,25.59V21a1,1,0,0,1,1-1h.54Z" })), children); }); { Reply.propTypes = iconPropTypes; } var ReplyAll = /*#__PURE__*/React__default["default"].forwardRef(function ReplyAll(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$4 || (_path95$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,29a.9989.9989,0,0,1-.768-.36l-10-12a1,1,0,0,1,0-1.28l10-12A1,1,0,0,1,20,4v7.0325c7.0074.4629,11,5.86,11,14.9677a1,1,0,0,1-1.8.6c-2.8218-3.7623-5.3912-5.3463-9.2-5.5716V28a1,1,0,0,1-1,1ZM10.3016,16,18,25.238V20a1,1,0,0,1,1-1,12.7127,12.7127,0,0,1,9.8414,4.0909C28.0864,16.5553,24.6587,13,19,13a1,1,0,0,1-1-1V6.7618Z" })), _path96$4 || (_path96$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.4639,28.9182,1.2318,16.64a1,1,0,0,1,0-1.28L11.4638,3.0792,13,4.36,3.3016,16,13,27.638Z" })), children); }); { ReplyAll.propTypes = iconPropTypes; } var RepoArtifact = /*#__PURE__*/React__default["default"].forwardRef(function RepoArtifact(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$4 || (_path97$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,24v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V16h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H16v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V30h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H30z M23,26 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S24.7,26,23,26z" })), _path98$4 || (_path98$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h10v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v5h2v-5 C30,8.9,29.1,8,28,8z" })), children); }); { RepoArtifact.propTypes = iconPropTypes; } var RepoSourceCode = /*#__PURE__*/React__default["default"].forwardRef(function RepoSourceCode(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$4 || (_path99$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.6 21.4L27.2 25 27.2 25 23.6 28.6 25 30 30 25 25 20zM20.4 21.4L16.8 25 16.8 25 20.4 28.6 19 30 14 25 19 20z" })), _path100$4 || (_path100$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h7v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z" })), children); }); { RepoSourceCode.propTypes = iconPropTypes; } var Report = /*#__PURE__*/React__default["default"].forwardRef(function Report(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$4 || (_path101$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 18H18V20H10zM10 13H22V15H10zM10 23H15V25H10z" })), _path102$4 || (_path102$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" })), children); }); { Report.propTypes = iconPropTypes; } var ReportData = /*#__PURE__*/React__default["default"].forwardRef(function ReportData(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path103$4 || (_path103$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 20H17V24H15zM20 18H22V24H20zM10 14H12V24H10z" })), _path104$4 || (_path104$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" })), children); }); { ReportData.propTypes = iconPropTypes; } var RequestQuote = /*#__PURE__*/React__default["default"].forwardRef(function RequestQuote(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$4 || (_path105$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,22v6H6V4H16V2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V22Z" })), _path106$4 || (_path106$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.54,5.76l-3.3-3.3a1.6,1.6,0,0,0-2.24,0l-14,14V22h5.53l14-14a1.6,1.6,0,0,0,0-2.24ZM14.7,20H12V17.3l9.44-9.45,2.71,2.71ZM25.56,9.15,22.85,6.44l2.27-2.27,2.71,2.71Z" })), children); }); { RequestQuote.propTypes = iconPropTypes; } var Reset$1 = /*#__PURE__*/React__default["default"].forwardRef(function Reset(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path107$4 || (_path107$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28A12,12,0,1,0,6,16v6.2L2.4,18.6,1,20l6,6,6-6-1.4-1.4L8,22.2V16H8A10,10,0,1,1,18,26Z" })), children); }); { Reset$1.propTypes = iconPropTypes; } var ResetAlt = /*#__PURE__*/React__default["default"].forwardRef(function ResetAlt(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$4 || (_path108$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,8H6.83l3.58-3.59L9,3,3,9l6,6,1.41-1.41L6.83,10H27V26H7V19H5v7a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V10A2,2,0,0,0,27,8Z" })), children); }); { ResetAlt.propTypes = iconPropTypes; } var Restart = /*#__PURE__*/React__default["default"].forwardRef(function Restart(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$4); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path109$4 || (_path109$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,9c0,2.8-2.2,5-5,5s-5-2.2-5-5s2.2-5,5-5h3.1L9.3,5.8L10,6.5l3-3l-3-3L9.3,1.2L11.1,3H8C4.7,3,2,5.7,2,9s2.7,6,6,6 s6-2.7,6-6H13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path110$4 || (_path110$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18A10,10,0,1,1,16,8h6.1821l-3.5844,3.5854L20,13l6-6L20,1,18.5977,2.414,22.1851,6H16A12,12,0,1,0,28,18Z" })), children); }); { Restart.propTypes = iconPropTypes; } var Restaurant = /*#__PURE__*/React__default["default"].forwardRef(function Restaurant(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$4 || (_path111$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 2H11V12H9z" })), _path112$4 || (_path112$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 11a4 4 0 01-8 0V2H4v9a6 6 0 005 5.91V30h2V16.91A6 6 0 0016 11V2H14zM22 2H21V30h2V20h3a2 2 0 002-2V8A5.78 5.78 0 0022 2zm4 16H23V4.09c2.88.56 3 3.54 3 3.91z" })), children); }); { Restaurant.propTypes = iconPropTypes; } var RestaurantFine = /*#__PURE__*/React__default["default"].forwardRef(function RestaurantFine(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$4 || (_path113$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 11.0005v-8a1 1 0 00-1-1H19a1 1 0 00-1 1v8A6.0039 6.0039 0 0023 16.91V28H19v2H29V28H25V16.91A6.0039 6.0039 0 0030 11.0005zm-10 0V4h8v7.0005a4 4 0 11-8 0zM12 2v9.02a3.9644 3.9644 0 01-3.96 3.96A4.0052 4.0052 0 014 11.02V2H2v9.02a5.9888 5.9888 0 005 5.8652V30H9V16.8953A5.9646 5.9646 0 0014 11.02V2z" })), _path114$4 || (_path114$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 2H9V11.98H7z" })), children); }); { RestaurantFine.propTypes = iconPropTypes; } var Result = /*#__PURE__*/React__default["default"].forwardRef(function Result(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$4 || (_path115$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 23H22V25H14zM10 23H12V25H10zM14 18H22V20H14zM10 18H12V20H10zM14 13H22V15H14zM10 13H12V15H10z" })), _path116$4 || (_path116$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" })), children); }); { Result.propTypes = iconPropTypes; } var ResultNew = /*#__PURE__*/React__default["default"].forwardRef(function ResultNew(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle16$1 || (_circle16$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "26", r: "4" })), _path117$4 || (_path117$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 13H12V15H10zM10 18H12V20H10zM10 23H12V25H10zM14 13H22V15H14zM14 18H22V20H14zM14 23H18V25H14z" })), _path118$4 || (_path118$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,28V7h3v3H22V7h3V18h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H18V28ZM12,4h8V8H12Z" })), children); }); { ResultNew.propTypes = iconPropTypes; } var ResultOld = /*#__PURE__*/React__default["default"].forwardRef(function ResultOld(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$4 || (_path119$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 13H12V15H10zM14 13H22V15H14zM10 18H12V20H10zM10 23H12V25H10z" })), _path120$4 || (_path120$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,28V7h3v3H22V7h3v8h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h9V28ZM12,4h8V8H12Z" })), _path121$4 || (_path121$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,19v2.4131A6.996,6.996,0,1,1,24,32V30a5,5,0,1,0-4.5762-7H22v2H16V19Z" })), children); }); { ResultOld.propTypes = iconPropTypes; } var RetryFailed = /*#__PURE__*/React__default["default"].forwardRef(function RetryFailed(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$4 || (_path122$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.41 25L30 21.41 28.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 25zM18 2A12.0351 12.0351 0 006 14v6.2L2.4 16.6 1 18l6 6 6-6-1.4-1.4L8 20.2V14a10 10 0 0120 0v3h2V14A12.0351 12.0351 0 0018 2z" })), children); }); { RetryFailed.propTypes = iconPropTypes; } var Review = /*#__PURE__*/React__default["default"].forwardRef(function Review(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$4 || (_path123$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 8L17.912 11.703 22 12.297 19 15 20 19 16 16.75 12 19 13 15 10 12.297 14.2 11.703 16 8z" })), _path124$4 || (_path124$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" })), children); }); { Review.propTypes = iconPropTypes; } var Rewind_10 = /*#__PURE__*/React__default["default"].forwardRef(function Rewind_10(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$4 || (_path125$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), _path126$4 || (_path126$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.63 22.13a2.84 2.84 0 01-1.28-.27 2.44 2.44 0 01-.89-.77 3.57 3.57 0 01-.52-1.25 7.69 7.69 0 01-.17-1.68 7.83 7.83 0 01.17-1.68 3.65 3.65 0 01.52-1.25 2.44 2.44 0 01.89-.77 2.84 2.84 0 011.28-.27 2.44 2.44 0 012.16 1 5.23 5.23 0 01.7 2.93 5.23 5.23 0 01-.7 2.93A2.44 2.44 0 0119.63 22.13zm0-1.22a1.07 1.07 0 001-.55A3.38 3.38 0 0021 18.85V17.47a3.31 3.31 0 00-.29-1.5 1.23 1.23 0 00-2.06 0 3.31 3.31 0 00-.29 1.5v1.38a3.38 3.38 0 00.29 1.51A1.06 1.06 0 0019.63 20.91zM10.63 22V20.82h2V15.63l-1.86 1-.55-1.06 2.32-1.3H14v6.5h1.78V22z" })), children); }); { Rewind_10.propTypes = iconPropTypes; } var Rewind_30 = /*#__PURE__*/React__default["default"].forwardRef(function Rewind_30(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$4 || (_path127$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), _path128$4 || (_path128$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.64 22.13a2.81 2.81 0 01-1.28-.27 2.36 2.36 0 01-.89-.77A3.39 3.39 0 0117 19.84a7.12 7.12 0 01-.17-1.68A7.24 7.24 0 0117 16.48a3.46 3.46 0 01.52-1.25 2.36 2.36 0 01.89-.77 2.81 2.81 0 011.28-.27 2.44 2.44 0 012.16 1 5.31 5.31 0 01.7 2.93 5.31 5.31 0 01-.7 2.93A2.44 2.44 0 0119.64 22.13zm0-1.22a1 1 0 001-.55 3.24 3.24 0 00.3-1.51V17.47a3.17 3.17 0 00-.3-1.5 1.22 1.22 0 00-2.05 0 3.18 3.18 0 00-.29 1.5v1.38a3.25 3.25 0 00.29 1.51A1 1 0 0019.64 20.91zM12.62 17.42a1.46 1.46 0 001-.27.84.84 0 00.31-.68v-.08a.94.94 0 00-.3-.74 1.2 1.2 0 00-.83-.27 1.65 1.65 0 00-.89.24 2.1 2.1 0 00-.68.68l-.93-.83a5.37 5.37 0 01.44-.51 2.7 2.7 0 01.54-.4 2.55 2.55 0 01.7-.27 3.25 3.25 0 01.87-.1 3.94 3.94 0 011.06.14 2.33 2.33 0 01.82.4 1.91 1.91 0 01.54.63 1.87 1.87 0 01.18.83 2 2 0 01-.11.67 1.82 1.82 0 01-.32.52 1.79 1.79 0 01-.47.36 2.27 2.27 0 01-.57.2V18a2.34 2.34 0 01.63.21 1.7 1.7 0 01.51.38 1.89 1.89 0 01.34.55 2.07 2.07 0 01.12.73 2 2 0 01-.2.92 2 2 0 01-.58.72 2.66 2.66 0 01-.89.45 3.76 3.76 0 01-1.15.16 4.1 4.1 0 01-1-.11A3.1 3.1 0 0111 21.7a2.76 2.76 0 01-.56-.45A4.22 4.22 0 0110 20.7l1.07-.81a3.07 3.07 0 00.28.42 1.94 1.94 0 00.36.34 1.57 1.57 0 00.45.22 2 2 0 00.57.07 1.45 1.45 0 001-.3 1.12 1.12 0 00.34-.85v-.08a1 1 0 00-.37-.8 1.78 1.78 0 00-1.06-.28h-.76V17.42z" })), children); }); { Rewind_30.propTypes = iconPropTypes; } var Rewind_5 = /*#__PURE__*/React__default["default"].forwardRef(function Rewind_5(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$4 || (_path129$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z" })), _path130$4 || (_path130$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z" })), children); }); { Rewind_5.propTypes = iconPropTypes; } var Road = /*#__PURE__*/React__default["default"].forwardRef(function Road(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$4 || (_path131$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 13H19V15H13z" })), _path132$4 || (_path132$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.4409 8L24.1687 3.45A2.009 2.009 0 0022.2456 2H9.7544A2.0089 2.0089 0 007.8313 3.4507L6.5315 8H4v2H6v7a2.0025 2.0025 0 002 2v3h2V19H22v3h2V19a2.0025 2.0025 0 002-2V10h2V8zM9.7544 4H22.2458l1.4285 5H8.3257zM24 13H22v2h2v2H8V15h2V13H8V11H24zM2 16H4V30H2zM28 16H30V30H28z" })), _path133$4 || (_path133$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 21H17V24H15zM15 26H17V30H15z" })), children); }); { Road.propTypes = iconPropTypes; } var RoadWeather = /*#__PURE__*/React__default["default"].forwardRef(function RoadWeather(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$4 || (_path134$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 31H14v-.228a3.0135 3.0135 0 00-1.9468-2.8091L8.5215 26.6384A3.9034 3.9034 0 016 23H8a1.8946 1.8946 0 001.2236 1.7659L12.7554 26.09A5.0226 5.0226 0 0116 30.772zM30 31H28v-.228a3.0135 3.0135 0 00-1.9468-2.8091l-3.5317-1.3245A3.9034 3.9034 0 0120 23h2a1.8946 1.8946 0 001.2236 1.7659L26.7554 26.09A5.0226 5.0226 0 0130 30.772zM11 13H17V15H11z" })), _path135$4 || (_path135$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z" })), children); }); { RoadWeather.propTypes = iconPropTypes; } var Roadmap = /*#__PURE__*/React__default["default"].forwardRef(function Roadmap(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$4 || (_path136$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 30H4a2.0023 2.0023 0 01-2-2V24a2.0023 2.0023 0 012-2h8a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0112 30zM4 24v4h8V24zM28 20H12a2.0023 2.0023 0 01-2-2V14a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0128 20zM12 14v4H28V14zM16 10H4A2.0023 2.0023 0 012 8V4A2.0023 2.0023 0 014 2H16a2.0023 2.0023 0 012 2V8A2.0023 2.0023 0 0116 10zM4 4V8H16V4z" })), children); }); { Roadmap.propTypes = iconPropTypes; } var Rocket$1 = /*#__PURE__*/React__default["default"].forwardRef(function Rocket(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path137$4 || (_path137$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.34 19H17.65V21H6.34z", transform: "rotate(-45 11.995 20.002)" })), _path138$4 || (_path138$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z" })), children); }); { Rocket$1.propTypes = iconPropTypes; } var Rotate = /*#__PURE__*/React__default["default"].forwardRef(function Rotate(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$4 || (_path139$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.91 26.82l.35 2a12.9 12.9 0 004.24-1.54l-1-1.73A10.88 10.88 0 0117.91 26.82zM24.42 23.07L26 24.35a13 13 0 002.24-3.91l-1.87-.68A11 11 0 0124.42 23.07zM9.5 27.25a12.9 12.9 0 004.24 1.54l.35-2a10.88 10.88 0 01-3.59-1.3zM5.67 19.76l-1.87.68A13 13 0 006 24.35l.32-.26 1.22-1h0a11 11 0 01-1.91-3.31zM29 16a12.85 12.85 0 00-.8-4.44l-1.87.68A11.18 11.18 0 0127 16zM26 7.65a13 13 0 00-20 0V4H4v8h8V10H6.81A11 11 0 0124.42 8.93z" })), children); }); { Rotate.propTypes = iconPropTypes; } var WatsonHealthRotate_180 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthRotate_180(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$4 || (_path140$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.0913 26.8235l-.3467 1.968a12.8956 12.8956 0 01-4.24-1.5418l1-1.7307A10.9086 10.9086 0 0014.0913 26.8235zM7.5767 23.0682L6.0449 24.3533a12.9811 12.9811 0 01-2.25-3.9112l1.8775-.6834A10.9808 10.9808 0 007.5767 23.0682zM22.4951 27.25a12.8956 12.8956 0 01-4.24 1.5418l-.3467-1.968a10.9086 10.9086 0 003.5869-1.3045zM26.3271 19.7587l1.8775.6834a12.9811 12.9811 0 01-2.2495 3.9112l-.3115-.2614-1.22-1.0237h0a10.9822 10.9822 0 001.9038-3.3093zM13.6616 5.2559c-.1592.0346-.3144.08-.4712.1215-.2131.0562-.4258.1138-.6335.1822-.1643.0547-.325.1167-.4859.1782-.1926.0742-.3835.1509-.57.2349-.1611.0727-.3193.15-.4763.23q-.2677.1363-.5262.2867c-.153.0893-.3046.18-.4531.2758-.1679.1089-.3308.2242-.4922.3413-.1406.1026-.2817.2037-.417.3125-.1616.1294-.3156.2676-.47.4063-.1225.11-.2478.2168-.3652.332-.1668.1636-.3223.3379-.4785.5117A10.9438 10.9438 0 005 16H3A12.9363 12.9363 0 016.05 7.65l-.0047-.0039c.0918-.1094.197-.2061.2925-.3125.1841-.2051.3672-.41.5635-.603.1382-.1358.2856-.2613.43-.3907.1831-.1645.3657-.3286.5581-.4824.1592-.1279.3244-.2466.4895-.3667.1921-.14.3855-.2768.5854-.4062.1743-.1128.3523-.2188.5322-.3238q.3081-.1786.6253-.3408c.1846-.0942.37-.1846.56-.27.2224-.1.449-.1914.678-.2793.1894-.0723.3777-.1455.5713-.209.2463-.0815.498-.1494.7507-.2163.1848-.0493.3674-.1025.5554-.1431.29-.0634.5865-.1074.8833-.1508.159-.023.3145-.0552.4754-.0728A12.9331 12.9331 0 0126 7.7031V4h2v8H20V10h5.1885A10.961 10.961 0 0016 5a11.1114 11.1114 0 00-1.189.0669c-.1362.0146-.268.042-.4026.0615C14.1575 5.165 13.907 5.2026 13.6616 5.2559z" })), children); }); { WatsonHealthRotate_180.propTypes = iconPropTypes; } var WatsonHealthRotate_360 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthRotate_360(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$4 || (_path141$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.95,7.65l.0047-.0039c-.0918-.1094-.197-.2061-.2925-.3125-.1841-.2051-.3672-.41-.5635-.603-.1382-.1358-.2856-.2613-.43-.3907-.1831-.1645-.3657-.3286-.5581-.4824-.1592-.1279-.3244-.2466-.4895-.3667-.1921-.14-.3855-.2768-.5854-.4062-.1743-.1128-.3523-.2188-.5322-.3238q-.3081-.1786-.6253-.3408c-.1846-.0942-.37-.1846-.56-.27-.2224-.1-.449-.1914-.678-.2793-.1894-.0723-.3777-.1455-.5713-.209-.2463-.0815-.498-.1494-.7507-.2163-.1848-.0493-.3674-.1025-.5554-.1431-.29-.0634-.5865-.1074-.8833-.1508-.159-.023-.3145-.0552-.4754-.0728A12.9331,12.9331,0,0,0,6,7.7031V4H4v8h8V10H6.8115A10.961,10.961,0,0,1,16,5a11.1114,11.1114,0,0,1,1.189.0669c.1362.0146.268.042.4026.0615.2509.0366.5014.0742.7468.1275.1592.0346.3144.08.4712.1215.2131.0562.4258.1138.6335.1822.1643.0547.325.1167.4859.1782.1926.0742.3835.1509.5705.2349.1611.0727.3193.15.4763.23q.2677.1363.5262.2867c.153.0893.3046.18.4531.2758.1679.1089.3308.2242.4922.3413.1406.1026.2817.2037.417.3125.1616.1294.3156.2676.47.4063.1225.11.2478.2168.3652.332.1668.1636.3223.3379.4785.5117A10.9928,10.9928,0,1,1,5,16H3A13,13,0,1,0,25.95,7.65Z" })), children); }); { WatsonHealthRotate_360.propTypes = iconPropTypes; } var RotateClockwise = /*#__PURE__*/React__default["default"].forwardRef(function RotateClockwise(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$4 || (_path142$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H16a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM16 16V28H28.0012L28 16zM15 2L13.59 3.41 16.17 6H11a7.0078 7.0078 0 00-7 7v5H6V13a5.0057 5.0057 0 015-5h5.17l-2.58 2.59L15 12l5-5z" })), children); }); { RotateClockwise.propTypes = iconPropTypes; } var RotateClockwiseAlt = /*#__PURE__*/React__default["default"].forwardRef(function RotateClockwiseAlt(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$4 || (_path143$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM4 16V28H16.0012L16 16zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z" })), children); }); { RotateClockwiseAlt.propTypes = iconPropTypes; } var RotateClockwiseAltFilled = /*#__PURE__*/React__default["default"].forwardRef(function RotateClockwiseAltFilled(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$4 || (_path144$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z" })), children); }); { RotateClockwiseAltFilled.propTypes = iconPropTypes; } var RotateClockwiseFilled = /*#__PURE__*/React__default["default"].forwardRef(function RotateClockwiseFilled(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$4 || (_path145$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 30H16a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM15 2L13.59 3.41 16.17 6H11a7.0078 7.0078 0 00-7 7v5H6V13a5.0057 5.0057 0 015-5h5.17l-2.58 2.59L15 12l5-5z" })), children); }); { RotateClockwiseFilled.propTypes = iconPropTypes; } var RotateCounterclockwise = /*#__PURE__*/React__default["default"].forwardRef(function RotateCounterclockwise(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146$4 || (_path146$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H4A2.0023 2.0023 0 012 28zM4 16L3.9988 28H16V16zM17 2l1.41 1.41L15.83 6H21a7.0078 7.0078 0 017 7v5H26V13a5.0057 5.0057 0 00-5-5H15.83l2.58 2.59L17 12 12 7z" })), children); }); { RotateCounterclockwise.propTypes = iconPropTypes; } var RotateCounterclockwiseAlt = /*#__PURE__*/React__default["default"].forwardRef(function RotateCounterclockwiseAlt(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$4 || (_path147$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 28V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H16A2.0023 2.0023 0 0114 28zm2-12l-.0012 12H28V16zM2 15l1.41-1.41L6 16.17V11a7.0078 7.0078 0 017-7h5V6H13a5.0057 5.0057 0 00-5 5v5.17l2.59-2.58L12 15 7 20z" })), children); }); { RotateCounterclockwiseAlt.propTypes = iconPropTypes; } var RotateCounterclockwiseAltFilled = /*#__PURE__*/React__default["default"].forwardRef(function RotateCounterclockwiseAltFilled(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$4 || (_path148$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 28V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H16A2.0023 2.0023 0 0114 28zM2 15l1.41-1.41L6 16.17V11a7.0078 7.0078 0 017-7h5V6H13a5.0057 5.0057 0 00-5 5v5.17l2.59-2.58L12 15 7 20z" })), children); }); { RotateCounterclockwiseAltFilled.propTypes = iconPropTypes; } var RotateCounterclockwiseFilled = /*#__PURE__*/React__default["default"].forwardRef(function RotateCounterclockwiseFilled(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$4 || (_path149$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H4A2.0023 2.0023 0 012 28zM17 2l1.41 1.41L15.83 6H21a7.0078 7.0078 0 017 7v5H26V13a5.0057 5.0057 0 00-5-5H15.83l2.58 2.59L17 12 12 7z" })), children); }); { RotateCounterclockwiseFilled.propTypes = iconPropTypes; } var Router = /*#__PURE__*/React__default["default"].forwardRef(function Router(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path150$4 || (_path150$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 7L16 2 11 7 12.409 8.419 15 5.847 15 13 17 13 17 5.794 19.591 8.419 21 7zM21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z" })), children); }); { Router.propTypes = iconPropTypes; } var RouterVoice = /*#__PURE__*/React__default["default"].forwardRef(function RouterVoice(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$4 || (_path151$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11zM12.4289 5.8227v1.63a1.1269 1.1269 0 01-.6767 1.026l-1.39.5967A1.1218 1.1218 0 019.14 8.8424L7.3208 7.0233a1.1165 1.1165 0 01.0125-1.579l.0348-.0328c7.393-6.527 14.6913-2.0374 17.2127-.0473a1.1166 1.1166 0 01.1746 1.5693 1.1011 1.1011 0 01-.0873.0971L22.9108 8.7878a1.1114 1.1114 0 01-1.2225.2329l-1.39-.5967a1.1112 1.1112 0 01-.68-1.0223v-1.63S15.9726 3.0648 12.4289 5.8227z" })), children); }); { RouterVoice.propTypes = iconPropTypes; } var RouterWifi = /*#__PURE__*/React__default["default"].forwardRef(function RouterWifi(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle17$1 || (_circle17$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "13.5", r: "1.5" })), _path152$4 || (_path152$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.5356,10.4648a5,5,0,0,0-7.0717,0L11.05,9.0508a6.9992,6.9992,0,0,1,9.9,0Z" })), _path153$4 || (_path153$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.0713 6.929a10 10 0 00-14.1426 0L7.5146 5.5144a12.0011 12.0011 0 0116.9708 0zM21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z" })), children); }); { RouterWifi.propTypes = iconPropTypes; } var Row = /*#__PURE__*/React__default["default"].forwardRef(function Row(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$4 || (_path154$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 24H28V26H4zM26 18H6V14H26v4m2 0V14a2 2 0 00-2-2H6a2 2 0 00-2 2v4a2 2 0 002 2H26a2 2 0 002-2zM4 6H28V8H4z" })), children); }); { Row.propTypes = iconPropTypes; } var RowCollapse = /*#__PURE__*/React__default["default"].forwardRef(function RowCollapse(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$4 || (_path155$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 20H6a2 2 0 00-2 2v4a2 2 0 002 2H26a2 2 0 002-2V22A2 2 0 0026 20zm0 6H6V22H26zM17 7.828L19.586 10.414 21 9 16 4 11 9 12.414 10.414 15 7.828 15 14 4 14 4 16 28 16 28 14 17 14 17 7.828z" })), children); }); { RowCollapse.propTypes = iconPropTypes; } var RowDelete = /*#__PURE__*/React__default["default"].forwardRef(function RowDelete(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$4 || (_path156$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30H4a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0124 30zM4 22H3.9985L4 28H24V22zM30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z" })), _path157$4 || (_path157$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,14V8H18V6H4A2.0023,2.0023,0,0,0,2,8v6a2.0023,2.0023,0,0,0,2,2H26V14Z" })), children); }); { RowDelete.propTypes = iconPropTypes; } var RowExpand = /*#__PURE__*/React__default["default"].forwardRef(function RowExpand(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$4 || (_path158$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 18L15 18 15 24.172 12.414 21.586 11 23 16 28 21 23 19.586 21.586 17 24.172 17 18 28 18 28 16 4 16 4 18zM26 4H6A2 2 0 004 6v4a2 2 0 002 2H26a2 2 0 002-2V6A2 2 0 0026 4zm0 6H6V6H26z" })), children); }); { RowExpand.propTypes = iconPropTypes; } var RowInsert = /*#__PURE__*/React__default["default"].forwardRef(function RowInsert(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159$4 || (_path159$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 12H10a2.0021 2.0021 0 01-2-2V4a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 12zM10 4v6H28V4zM28 30H10a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 30zM10 22v6H28V22zM9 16L3.414 10.414 2 11.828 6.172 16 2 20.172 3.414 21.586 9 16z" })), children); }); { RowInsert.propTypes = iconPropTypes; } var Rss = /*#__PURE__*/React__default["default"].forwardRef(function Rss(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path160$4 || (_path160$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 18c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6C14 20.7 11.3 18 8 18zM8 28c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4C12 26.2 10.2 28 8 28zM30 24h-2C28 13 19 4 8 4V2C20.1 2 30 11.9 30 24z" })), _path161$4 || (_path161$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,24h-2c0-6.6-5.4-12-12-12v-2C15.7,10,22,16.3,22,24z" })), children); }); { Rss.propTypes = iconPropTypes; } var Rule = /*#__PURE__*/React__default["default"].forwardRef(function Rule(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162$4 || (_path162$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 16H22V18H10zM10 10H22V12H10z" })), _path163$4 || (_path163$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,9.8242,26.7071A10.9815,10.9815,0,0,1,4,17V4A2.0022,2.0022,0,0,1,6,2H26a2.0022,2.0022,0,0,1,2,2V17a10.9815,10.9815,0,0,1-5.8242,9.7069ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z" })), children); }); { Rule.propTypes = iconPropTypes; } var RuleCancelled = /*#__PURE__*/React__default["default"].forwardRef(function RuleCancelled(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$4 || (_path164$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 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 24zM8 16H18V18H8zM8 10H20V12H8z" })), _path165$4 || (_path165$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24l0,11h2L26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z" })), children); }); { RuleCancelled.propTypes = iconPropTypes; } var RuleDataQuality = /*#__PURE__*/React__default["default"].forwardRef(function RuleDataQuality(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch$1 || (_switch$1 = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 28.6l-2.8-2.8C27.7 25 28 24 28 23c0-2.8-2.2-5-5-5s-5 2.2-5 5 2.2 5 5 5c1 0 2-.3 2.8-.8l2.8 2.8L30 28.6zM20 23c0-1.7 1.3-3 3-3s3 1.3 3 3-1.3 3-3 3S20 24.7 20 23zM8 16H18V18H8zM8 10H20V12H8z" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,27.7l-5.2-2.8C5.8,23.4,4,20.3,4,17V4h20v11h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7L14,30 V27.7z" })))), children); }); { RuleDataQuality.propTypes = iconPropTypes; } var RuleDraft = /*#__PURE__*/React__default["default"].forwardRef(function RuleDraft(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$4 || (_path166$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM8 16H18V18H8zM8 10H20V12H8z" })), _path167$4 || (_path167$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z" })), children); }); { RuleDraft.propTypes = iconPropTypes; } var RuleFilled = /*#__PURE__*/React__default["default"].forwardRef(function RuleFilled(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$4 || (_path168$4 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M9 16H23V18H9z", "data-icon-path": "inner-path" })), _path169$4 || (_path169$4 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M9 10H23V12H9z" })), _path170$4 || (_path170$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2H6A2.0023,2.0023,0,0,0,4,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L16,30l6.1758-3.293A10.9814,10.9814,0,0,0,28,17V4A2.0023,2.0023,0,0,0,26,2ZM23,18H9V16H23Zm0-6H9V10H23Z" })), children); }); { RuleFilled.propTypes = iconPropTypes; } var RuleTest = /*#__PURE__*/React__default["default"].forwardRef(function RuleTest(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$4 || (_path171$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,30a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,23,30Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,23,18Z" })), _path172$4 || (_path172$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 24.586L24 22.586 24 20 22 20 22 23.414 24.586 26 26 24.586zM8 16H14V18H8zM8 10H20V12H8z" })), _path173$4 || (_path173$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z" })), children); }); { RuleTest.propTypes = iconPropTypes; } var Ruler = /*#__PURE__*/React__default["default"].forwardRef(function Ruler(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$4 || (_path174$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,10H3a1,1,0,0,0-1,1V21a1,1,0,0,0,1,1H29a1,1,0,0,0,1-1V11A1,1,0,0,0,29,10ZM28,20H4V12H8v4h2V12h5v4h2V12h5v4h2V12h4Z" })), children); }); { Ruler.propTypes = iconPropTypes; } var RulerAlt = /*#__PURE__*/React__default["default"].forwardRef(function RulerAlt(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$4 || (_path175$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.41,21.67,10.34,2.58a2,2,0,0,0-2.83,0L2.59,7.51a2,2,0,0,0,0,2.82L21.66,29.42a2,2,0,0,0,1.42.58,2,2,0,0,0,1.41-.58l4.92-4.93A2,2,0,0,0,29.41,21.67ZM23.08,28,4,8.92,8.92,4l3.79,3.79L10.46,10l1.41,1.41L14.12,9.2l4.13,4.13L16,15.58,17.42,17l2.25-2.25,4.13,4.13-2.25,2.25L23,22.54l2.25-2.25L28,23.08Z" })), children); }); { RulerAlt.propTypes = iconPropTypes; } var Run = /*#__PURE__*/React__default["default"].forwardRef(function Run(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$4 || (_path176$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,16a6,6,0,1,1-6,6,6,6,0,0,1,6-6m0-2a8,8,0,1,0,8,8,8,8,0,0,0-8-8Z" })), _path177$4 || (_path177$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V12H28V6A2,2,0,0,0,26,4ZM6,10V6H26v4Z" })), _path178$4 || (_path178$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 19L19 25 24 22 19 19z" })), children); }); { Run.propTypes = iconPropTypes; } var QS = /*#__PURE__*/React__default["default"].forwardRef(function QS(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$4 || (_path179$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,23H12V21h6V17H14a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H14v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,23Z" })), children); }); { QS.propTypes = iconPropTypes; } var QSAlt = /*#__PURE__*/React__default["default"].forwardRef(function QSAlt(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$4 || (_path180$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 9L22 9 22 7 20 7 20 9 18 9 18 11 20 11 20 17 22 17 22 11 24 11 24 9zM14 23H8V21h6V17H10a2 2 0 01-2-2V11a2 2 0 012-2h6v2H10v4h4a2 2 0 012 2v4A2 2 0 0114 23z" })), children); }); { QSAlt.propTypes = iconPropTypes; } var SailboatCoastal = /*#__PURE__*/React__default["default"].forwardRef(function SailboatCoastal(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$4 || (_path181$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.7808,26,25.97,21.2422A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422L7.2192,26H2v2H30V26ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15ZM22.7192,26H9.2808l-1-4H23.7192Z" })), children); }); { SailboatCoastal.propTypes = iconPropTypes; } var SailboatOffshore = /*#__PURE__*/React__default["default"].forwardRef(function SailboatOffshore(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$4 || (_path182$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.9692,25H9.0308l-.75-3H23.7192l-.75,3h2.0616l.9394-3.7578A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15Z" })), _path183$4 || (_path183$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.9058,25.751A2.998,2.998,0,0,1,24,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,20,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,16,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,12,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,8,28a2.998,2.998,0,0,1-2.9058-2.249l-1.9365.498A4.9965,4.9965,0,0,0,8,30a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,24,30a4.9965,4.9965,0,0,0,4.8423-3.751Z" })), children); }); { SailboatOffshore.propTypes = iconPropTypes; } var SankeyDiagram = /*#__PURE__*/React__default["default"].forwardRef(function SankeyDiagram(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$4 || (_path184$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2V8.0439c-1.9634.1968-6.3162,1.2325-10.5637,6.2764-.198-.2768-.3982-.5464-.5882-.8506C11.9736,5.6714,6.3191,4.2759,4,4.042V2H2V30H4V26.0464a14.8661,14.8661,0,0,0,9.9185-3.96C18.47,27.46,25.2363,28.0381,27.9341,28.0381c.0244,0,.0422-.001.0659-.001V30h2V2Zm0,8.0552v9.99a12.8834,12.8834,0,0,1-9.2756-4.1328C22.5032,11.2666,26.2915,10.26,28,10.0552ZM15.1519,14.53c.3242.5185.663.9907,1.0078,1.4409-.3384.4741-.6753.9707-1.0078,1.5029a16.1346,16.1346,0,0,1-1.0313,1.4531c-.0825-.1372-.1675-.27-.2466-.4126C9.3279,10.3315,5.7871,8.4438,4,8.0684V6.0508C5.9932,6.2905,10.8228,7.6035,15.1519,14.53ZM4,24.0488V10.1406c1.3254.4644,4.2034,2.2847,8.126,9.3448.1894.3413.396.6523.6.9667A12.8784,12.8784,0,0,1,4,24.0488Zm11.3179-3.4209a18.0563,18.0563,0,0,0,1.53-2.0937c.2212-.354.4454-.67.6687-.9951A14.8686,14.8686,0,0,0,28,22.0425v3.9863C25.67,26.019,19.374,25.5088,15.3179,20.6279Z" })), children); }); { SankeyDiagram.propTypes = iconPropTypes; } var SankeyDiagramAlt = /*#__PURE__*/React__default["default"].forwardRef(function SankeyDiagramAlt(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$4 || (_path185$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,2H2V16H8.1113a7.0359,7.0359,0,0,1,3.13.7393L15.7637,19l-4.522,2.2607A7.0359,7.0359,0,0,1,8.1113,22H2v8H9.2231a9.0446,9.0446,0,0,0,4.0249-.95L21.87,24.7393A7.0359,7.0359,0,0,1,25,24h5V14H25a7.0359,7.0359,0,0,1-3.13-.7393L15.3481,10H30ZM8,4H24V8H8ZM4,4H6V14H4ZM4,24H6v4H4Zm16.9751-1.05-8.6216,4.3105A7.0359,7.0359,0,0,1,9.2231,28H8V24h.1113a9.0446,9.0446,0,0,0,4.0249-.95L18,20.1182l1.8638.9316a9.0446,9.0446,0,0,0,4.0249.95H24v.0586A9.0515,9.0515,0,0,0,20.9751,22.95ZM28,22H26V16h2ZM12.3535,10.7393l8.6216,4.31A9.0515,9.0515,0,0,0,24,15.9414V20h-.1113a7.0359,7.0359,0,0,1-3.13-.7393l-8.6221-4.31A9.0446,9.0446,0,0,0,8.1113,14H8V10H9.2231A7.0359,7.0359,0,0,1,12.3535,10.7393ZM28,8H26V4h2Z" })), children); }); { SankeyDiagramAlt.propTypes = iconPropTypes; } var Satellite = /*#__PURE__*/React__default["default"].forwardRef(function Satellite(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$4 || (_path186$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.9141,16.5l2.7929-2.793a.9994.9994,0,0,0,0-1.414L23.4141,10,25.5,7.9141,28.5859,11,30,9.5859,22.4141,2,21,3.4141,24.0859,6.5,22,8.5859,19.707,6.293a.9994.9994,0,0,0-1.414,0L15.5,9.0859,8.707,2.293a.9994.9994,0,0,0-1.414,0l-5,5a.9994.9994,0,0,0,0,1.414L9.0859,15.5,6.293,18.293a.9994.9994,0,0,0,0,1.414L8.5859,22,6.5,24.0859,3.4141,21,2,22.4141,9.5859,30,11,28.5859,7.9141,25.5,10,23.4141l2.293,2.2929a.9995.9995,0,0,0,1.414,0L16.5,22.9141l6.793,6.7929a.9995.9995,0,0,0,1.414,0l5-5a.9994.9994,0,0,0,0-1.414ZM4.4141,8,8,4.4141,10.0859,6.5,6.5,10.0859Zm3.5,3.5L11.5,7.9141,14.0859,10.5,10.5,14.0859ZM13,23.5859,8.4141,19,19,8.4141,23.5859,13ZM17.9141,21.5,21.5,17.9141,24.0859,20.5,20.5,24.0859ZM24,27.5859,21.9141,25.5,25.5,21.9141,27.5859,24Z" })), children); }); { Satellite.propTypes = iconPropTypes; } var SatelliteRadar = /*#__PURE__*/React__default["default"].forwardRef(function SatelliteRadar(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$4 || (_path187$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14H28A10.0113,10.0113,0,0,0,18,4V2A12.0137,12.0137,0,0,1,30,14Z" })), _path188$4 || (_path188$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 14H24a6.0067 6.0067 0 00-6-6V6A8.0092 8.0092 0 0126 14zM16 28V24.96a9.9124 9.9124 0 007.3179-2.208 1.8482 1.8482 0 00.6777-1.3344 1.8 1.8 0 00-.5239-1.36L18.4141 15 21 12.4141 19.5859 11 17 13.5859 11.9419 8.5273a1.8145 1.8145 0 00-1.36-.5229 1.845 1.845 0 00-1.3339.6782 9.9566 9.9566 0 00-.5127 11.95L6.2793 28H2v2H30V28zM10.68 10.0938L21.9058 21.32A8.0011 8.0011 0 0110.68 10.0938zM14 28H8.3875l1.8757-5.627A9.9894 9.9894 0 0014 24.5435z" })), children); }); { SatelliteRadar.propTypes = iconPropTypes; } var SatelliteWeather = /*#__PURE__*/React__default["default"].forwardRef(function SatelliteWeather(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$4 || (_path189$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5 12H19a4 4 0 010-8h.0835A4.7864 4.7864 0 0123 2a4.9816 4.9816 0 014.6543 3.2034A3.4667 3.4667 0 0130 8.5 3.5041 3.5041 0 0126.5 12zM19 6a2 2 0 000 4h7.5A1.5017 1.5017 0 0028 8.5a1.4855 1.4855 0 00-1.2778-1.4739L26.061 6.927l-.1616-.6487a2.9568 2.9568 0 00-5.4873-.7121L20.1143 6zM13 28V24.8882a7.9363 7.9363 0 004.707-2.2818.9995.9995 0 000-1.414L13.4644 16.95 16 14.4141 14.5859 13 12.05 15.5356 7.8076 11.293a.9994.9994 0 00-1.414 0 7.9993 7.9993 0 000 11.3134c.1621.1622.3327.3125.5058.459L4.4321 28H2v2H30V28zm-2 0H6.6685L8.59 24.1567A7.8927 7.8927 0 0011 24.873zM7.8076 21.1924a6.0036 6.0036 0 01-.6489-7.72l8.3686 8.3681a6.0026 6.0026 0 01-7.72-.6484z" })), children); }); { SatelliteWeather.propTypes = iconPropTypes; } var Save = /*#__PURE__*/React__default["default"].forwardRef(function Save(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$4); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path190$4 || (_path190$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.9,4.6l-2.5-2.5C11.3,2.1,11.1,2,11,2H3C2.4,2,2,2.4,2,3v10c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V5 C14,4.9,13.9,4.7,13.9,4.6z M6,3h4v2H6V3z M10,13H6V9h4V13z M11,13V9c0-0.6-0.4-1-1-1H6C5.4,8,5,8.4,5,9v4H3V3h2v2c0,0.6,0.4,1,1,1 h4c0.6,0,1-0.4,1-1V3.2l2,2V13H11z" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path191$4 || (_path191$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.8,5.5l-3.3-3.3C14.3,2.1,14.2,2,14,2H3.3C2.6,2,2,2.6,2,3.3v13.3C2,17.4,2.6,18,3.3,18h13.3c0.7,0,1.4-0.5,1.4-1.2V6.1 C18,5.7,17.9,5.7,17.8,5.5z M7.3,3.3h5.3v3.3H7.3V3.3z M12.7,16.7H7.3v-5.3h5.3L12.7,16.7L12.7,16.7z M14,16.7v-5.3 c0-0.7-0.6-1.3-1.3-1.3H7.3C6.6,10,6,10.6,6,11.3v5.3H3.3V3.3H6v3.3C6,7.4,6.6,8,7.3,8h5.3C13.4,8,14,7.4,14,6.7v-3l2.7,2.7v10.4 L14,16.7L14,16.7z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path192$4 || (_path192$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.8,7L17,3.2C16.9,3.1,16.7,3,16.5,3h-12C3.7,3,3,3.7,3,4.5v15C3,20.3,3.7,21,4.5,21h15c0.8,0,1.5-0.7,1.5-1.5v-12 C21,7.3,20.9,7.1,20.8,7z M9,4.5h6v3H9V4.5z M15,19.5H9v-6h6V19.5z M16.5,19.5v-6c0-0.8-0.7-1.5-1.5-1.5H9c-0.8,0-1.5,0.7-1.5,1.5v6 h-3v-15h3v3C7.5,8.3,8.2,9,9,9h6c0.8,0,1.5-0.7,1.5-1.5V4.8l3,3v11.7H16.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$4 || (_path193$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.71,9.29l-5-5A1,1,0,0,0,22,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V10A1,1,0,0,0,27.71,9.29ZM12,6h8v4H12Zm8,20H12V18h8Zm2,0V18a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v8H6V6h4v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V6.41l4,4V26Z" })), children); }); { Save.propTypes = iconPropTypes; } var WatsonHealthSaveAnnotation = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSaveAnnotation(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$4 || (_path194$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" })), _path195$4 || (_path195$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20H25V18h3V4H8V7H6V4A2,2,0,0,1,8,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20Z" })), _path196$4 || (_path196$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 6H26V8H20zM22 10H26V12H22z" })), children); }); { WatsonHealthSaveAnnotation.propTypes = iconPropTypes; } var WatsonHealthSaveImage = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSaveImage(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$4 || (_path197$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" })), _path198$4 || (_path198$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,20H25V18h3V4H14V7H12V4a2,2,0,0,1,2-2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20Z" })), children); }); { WatsonHealthSaveImage.propTypes = iconPropTypes; } var SaveModel = /*#__PURE__*/React__default["default"].forwardRef(function SaveModel(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$4 || (_path199$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,20l1.4272,1.9028L23,26.9629l-4.4272-5.06L20,20h6m1-2H19l-3,4,7,8,7-8-3-4Z" })), _path200$4 || (_path200$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,26H12V18h2V16H12a2,2,0,0,0-2,2v8H6V6h4v4a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V6.41l4,4V16h2V10a1,1,0,0,0-.29-.71l-5-5A.9989.9989,0,0,0,22,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16ZM12,6h8v4H12Z" })), children); }); { SaveModel.propTypes = iconPropTypes; } var WatsonHealthSaveSeries = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSaveSeries(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$4 || (_path201$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.56,15.1l-3.48-4.35A2,2,0,0,0,16.52,10H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16.35A2,2,0,0,0,21.56,15.1ZM9,12h6v3H9Zm6,16H9V22h6Zm2,0V22a2,2,0,0,0-2-2H9a2,2,0,0,0-2,2v6H4V12H7v3a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12.6l3,3.75V28Z" })), _path202$4 || (_path202$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,21H25V7H11V5H25a2,2,0,0,1,2,2Z" })), _path203$4 || (_path203$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32,14H30V2H18V0H30a2,2,0,0,1,2,2Z" })), children); }); { WatsonHealthSaveSeries.propTypes = iconPropTypes; } var Scale = /*#__PURE__*/React__default["default"].forwardRef(function Scale(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$4 || (_path204$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,17H7a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V19A2,2,0,0,0,13,17ZM7,25V19h6v6Z" })), _path205$4 || (_path205$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,21v2h6a2,2,0,0,0,2-2V7a2,2,0,0,0-2-2H11A2,2,0,0,0,9,7v6h2V7H25V21" })), children); }); { Scale.propTypes = iconPropTypes; } var Scales = /*#__PURE__*/React__default["default"].forwardRef(function Scales(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path206$4 || (_path206$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,16a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L25.896,7.5562a.8913.8913,0,0,0-.0454-.0816A1,1,0,0,0,25,7H18.8218A3.0155,3.0155,0,0,0,17,5.1841V2H15V5.1841A3.0155,3.0155,0,0,0,13.1782,7H7a1,1,0,0,0-.8945.5527l-4,8A1,1,0,0,0,2,16a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L8.6182,9h4.56A3.0147,3.0147,0,0,0,15,10.8154V28H6v2H26V28H17V10.8159A3.0155,3.0155,0,0,0,18.8218,9h4.56l-3.2763,6.5527A1,1,0,0,0,20,16ZM7,19a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,7,19Zm2.3821-4H4.6179L7,10.2363ZM16,9a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,9Zm9,10a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,25,19Zm0-8.7637L27.3821,15H22.6179Z" })), children); }); { Scales.propTypes = iconPropTypes; } var ScalesTipped = /*#__PURE__*/React__default["default"].forwardRef(function ScalesTipped(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$4 || (_path207$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,13a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473l-4-8a1,1,0,0,0-1.2109-.5014l-6.3308,2.11A3.0322,3.0322,0,0,0,17,5.1841V2H15V5.1841a2.9949,2.9949,0,0,0-1.9956,2.76l-6.3208,2.107a1,1,0,0,0-.5781.5014l-4,8A1,1,0,0,0,2,19a5,5,0,0,0,10,0,1,1,0,0,0-.1055-.4473L8.41,11.584l5.237-1.7456A3.0285,3.0285,0,0,0,15,10.8154V28H6v2H26V28H17V10.8159a2.9951,2.9951,0,0,0,1.9956-2.76l4.03-1.3438-2.92,5.8408A1,1,0,0,0,20,13ZM7,22a2.9956,2.9956,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,7,22Zm2.3821-4H4.6179L7,13.2363ZM16,9a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,9Zm9,7a2.9958,2.9958,0,0,1-2.8152-2h5.63A2.9956,2.9956,0,0,1,25,16Zm0-8.7637L27.3821,12H22.6179Z" })), children); }); { ScalesTipped.propTypes = iconPropTypes; } var Scalpel = /*#__PURE__*/React__default["default"].forwardRef(function Scalpel(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path208$4 || (_path208$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.83,5.17a4.1,4.1,0,0,0-5.66,0L.34,28H9.59a5,5,0,0,0,3.53-1.46L28.83,10.83a4,4,0,0,0,0-5.66ZM12.29,18.88l2.09-2.09,2.83,2.83-2.09,2.09Zm-.58,6.24A3,3,0,0,1,9.59,26H5.17l5.71-5.71,2.83,2.83ZM27.41,9.41l-8.79,8.8-2.83-2.83,8.8-8.79a2,2,0,0,1,2.82,0,2,2,0,0,1,0,2.82Z" })), children); }); { Scalpel.propTypes = iconPropTypes; } var WatsonHealthScalpelCursor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthScalpelCursor(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$4 || (_path209$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281 7.1338a4.0941 4.0941 0 00-5.6562 0L.3433 29.9619H9.5889a4.9682 4.9682 0 003.5356-1.4648L28.8281 12.79a3.9984 3.9984 0 000-5.6562zM12.2928 20.8406l2.086-2.0858 2.8293 2.8293L15.1224 23.67zM11.71 27.083a2.9824 2.9824 0 01-2.1215.8789H5.1714l5.7073-5.7072 2.83 2.83zM27.4141 11.376L18.6221 20.17l-2.8293-2.8292 8.7931-8.7928a2.0471 2.0471 0 012.8282 0 1.9993 1.9993 0 010 2.8281zM13 4L4 4 4 13 6 13 6 6 13 6 13 4z" })), children); }); { WatsonHealthScalpelCursor.propTypes = iconPropTypes; } var WatsonHealthScalpelLasso = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthScalpelLasso(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path210$4 || (_path210$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281 7.1338a4.0941 4.0941 0 00-5.6562 0L.3433 29.9619H9.5889a4.9682 4.9682 0 003.5356-1.4648L28.8281 12.79a3.9984 3.9984 0 000-5.6562zM12.2928 20.8406l2.086-2.0858 2.8293 2.8293L15.1224 23.67zM11.71 27.083a2.9824 2.9824 0 01-2.1215.8789H5.1714l5.7073-5.7072 2.83 2.83zM27.4141 11.376L18.6221 20.17l-2.8293-2.8292 8.7931-8.7928a2.0471 2.0471 0 012.8282 0 1.9993 1.9993 0 010 2.8281zM11 2H7a4.9843 4.9843 0 00-3.8633 8.1528A2.9586 2.9586 0 003 11a2.9945 2.9945 0 002 2.8154V14a2.0025 2.0025 0 01-2 2H2v2H3a4.0045 4.0045 0 004-4v-.1841A2.9959 2.9959 0 008.8157 12H11A5 5 0 0011 2zM6 12a1 1 0 111-1A1.0009 1.0009 0 016 12zm5-2H8.8157A2.974 2.974 0 004.394 8.4746 2.9908 2.9908 0 017 4h4a3 3 0 010 6z" })), children); }); { WatsonHealthScalpelLasso.propTypes = iconPropTypes; } var WatsonHealthScalpelSelect = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthScalpelSelect(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$4 || (_path211$4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.8281 7.1719a4.0941 4.0941 0 00-5.6562 0L.3433 30H9.5889a4.9682 4.9682 0 003.5356-1.4648L28.8281 12.8281a3.9984 3.9984 0 000-5.6562zM12.2928 20.8787l2.086-2.0859 2.8293 2.8294-2.0857 2.0862zM11.71 27.1211A2.9824 2.9824 0 019.5889 28H5.1714l5.7073-5.7072 2.83 2.83zm15.7037-15.707l-8.792 8.7939-2.8293-2.8292 8.7931-8.7929a2.0473 2.0473 0 012.8282 0 1.9995 1.9995 0 010 2.8282zM15 2a2.9948 2.9948 0 00-2.8157 2H7.8156A2.9925 2.9925 0 104 7.8154v4.3687a3 3 0 102 0V7.8159A2.9959 2.9959 0 007.8156 6h4.3686A2.9947 2.9947 0 1015 2zM5 16a1 1 0 111-1A1.0008 1.0008 0 015 16zM5 6A1 1 0 116 5 1.0008 1.0008 0 015 6zM15 6a1 1 0 111-1A1.0008 1.0008 0 0115 6z" })), children); }); { WatsonHealthScalpelSelect.propTypes = iconPropTypes; } var Scan = /*#__PURE__*/React__default["default"].forwardRef(function Scan(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212$3 || (_path212$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,29H5a2,2,0,0,1-2-2V5A2,2,0,0,1,5,3H21V5H5V27H21Z" })), _path213$3 || (_path213$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 9H17V23H15zM27 9H29V23H27zM21 9H23V23H21z" })), children); }); { Scan.propTypes = iconPropTypes; } var ScanAlt = /*#__PURE__*/React__default["default"].forwardRef(function ScanAlt(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path214$3 || (_path214$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 24H10a2 2 0 01-2-2V19h2v3H22V19h2v3A2 2 0 0122 24zM2 15H30V17H2zM24 13H22V10H10v3H8V10a2 2 0 012-2H22a2 2 0 012 2zM30 10L28 10 28 4 22 4 22 2 30 2 30 10zM4 10L2 10 2 2 10 2 10 4 4 4 4 10zM10 30L2 30 2 22 4 22 4 28 10 28 10 30zM30 30L22 30 22 28 28 28 28 22 30 22 30 30z" })), children); }); { ScanAlt.propTypes = iconPropTypes; } var ScanDisabled = /*#__PURE__*/React__default["default"].forwardRef(function ScanDisabled(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215$2 || (_path215$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3826 2.0762a.9993.9993 0 00-1.09.2168l-26 26A1 1 0 003 30h8V28H5.4143l4-4H22a2.0021 2.0021 0 002-2V9.4146l4-4V11h2V3A1 1 0 0029.3826 2.0762zM22 22H11.4143L22 11.4146zM10 17.7554V10h7.7554l2-2H10a2.0025 2.0025 0 00-2 2v9.7554zM11 2L2 2 2 11 4 11 4 4 11 4 11 2zM21 30L30 30 30 21 28 21 28 28 21 28 21 30zM4 23.755L4 21 2 21 2 25.754 4 23.755zM25.755 2L21 2 21 4 23.755 4 25.755 2z" })), children); }); { ScanDisabled.propTypes = iconPropTypes; } var ScatterMatrix = /*#__PURE__*/React__default["default"].forwardRef(function ScatterMatrix(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle18$1 || (_circle18$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9.5", cy: "9.5", r: "2.5" })), _circle19$1 || (_circle19$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9.5", cy: "22.5", r: "2.5" })), _circle20$1 || (_circle20$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22.5", cy: "22.5", r: "2.5" })), _path216$2 || (_path216$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,2H4A2.0023,2.0023,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,13H17V4H28ZM15,4V15H4V4ZM4,17H15V28H4ZM17,28V17H28V28Z" })), children); }); { ScatterMatrix.propTypes = iconPropTypes; } var Schematics = /*#__PURE__*/React__default["default"].forwardRef(function Schematics(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path217$2 || (_path217$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,19.001A4.0056,4.0056,0,0,0,22.9991,15H9.0011A2.0031,2.0031,0,0,1,7,12.9991V9.858A3.9949,3.9949,0,0,0,9.8581,7h12.284a4,4,0,1,0,0-2H9.8581A3.9916,3.9916,0,1,0,5,9.858v3.1411A4.0057,4.0057,0,0,0,9.0011,17h13.998A2.003,2.003,0,0,1,25,19.001V22H22v3H9.8581a4,4,0,1,0,0,2H22v3h8V22H27ZM26,4a2,2,0,1,1-2,2A2.0019,2.0019,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.0019,2.0019,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.002,2.002,0,0,1,6,28Zm22-4v4H24V24Z" })), children); }); { Schematics.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$3, _path2$3, _path3$3, _path4$3, _path5$3, _path6$3, _path7$3, _path8$3, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$3, _path15$3, _path16$3, _path17$3, _path18$3, _path19$3, _path20$3, _path21$3, _path22$3, _path23$3, _path24$3, _path25$3, _path26$3, _path27$3, _path28$3, _path29$3, _path30$3, _path31$3, _circle$3, _path32$3, _circle2$3, _path33$3, _path34$3, _circle3$3, _path35$3, _path36$3, _path37$3, _path38$3, _path39$3, _path40$3, _path41$3, _path42$3, _path43$3, _path44$3, _path45$3, _path46$3, _path47$3, _path48$3, _path49$3, _path50$3, _path51$3, _circle4$2, _path52$3, _path53$3, _path54$3, _path55$3, _path56$3, _path57$3, _path58$3, _path59$3, _path60$3, _path61$3, _path62$3, _circle5$2, _circle6$2, _path63$3, _circle7$2, _circle8$2, _path64$3, _path65$3, _circle9$2, _circle10$2, _path66$3, _path67$3, _circle11$2, _circle12$1, _path68$3, _path69$3, _circle13$1, _circle14, _path70$3, _path71$3, _circle15, _circle16, _path72$3, _path73$3, _circle17, _circle18, _path74$3, _path75$3, _path76$3, _path77$3, _path78$3, _path79$3, _path80$3, _rect$1, _path81$3, _path82$3, _path83$3, _path84$3, _path85$3, _path86$3, _path87$3, _path88$3, _path89$3, _path90$3, _path91$3, _path92$3, _path93$3, _path94$3, _path95$3, _path96$3, _path97$3, _path98$3, _path99$3, _path100$3, _path101$3, _path102$3, _path103$3, _path104$3, _path105$3, _path106$3, _path107$3, _path108$3, _path109$3, _path110$3, _path111$3, _path112$3, _path113$3, _path114$3, _path115$3, _path116$3, _path117$3, _path118$3, _path119$3, _path120$3, _path121$3, _path122$3, _path123$3, _path124$3, _path125$3, _path126$3, _path127$3, _circle19, _path128$3, _path129$3, _path130$3, _path131$3, _circle20, _path132$3, _circle21, _path133$3, _path134$3, _path135$3, _path136$3, _path137$3, _path138$3, _path139$3, _path140$3, _path141$3, _path142$3, _path143$3, _path144$3, _path145$3, _path146$3, _path147$3, _path148$3, _path149$3, _path150$3, _path151$3, _circle22, _path152$3, _path153$3, _path154$3, _path155$3, _path156$3, _path157$3, _path158$3, _path159$3, _path160$3, _path161$3, _path162$3, _path163$3, _path164$3, _circle23, _circle24, _circle25, _circle26, _circle27, _circle28, _circle29, _circle30, _path165$3, _path166$3, _path167$3, _path168$3, _path169$3, _circle31, _circle32, _circle33, _circle34, _circle35, _circle36, _circle37, _path170$3, _path171$3, _path172$3, _path173$3, _path174$3, _path175$3, _path176$3, _path177$3, _path178$3, _path179$3, _path180$3, _path181$3, _path182$3, _path183$3, _path184$3, _path185$3, _path186$3, _path187$3, _path188$3, _path189$3, _path190$3, _path191$3, _path192$3, _path193$3, _path194$3, _path195$3, _path196$3, _path197$3, _path198$3, _path199$3, _path200$3, _path201$3, _path202$3, _path203$3, _path204$3, _path205$3, _path206$3, _path207$3, _path208$3, _path209$3, _path210$3, _path211$3; var _excluded$8 = ["children", "size"], _excluded2$3 = ["children", "size"], _excluded3$3 = ["children", "size"], _excluded4$3 = ["children", "size"], _excluded5$3 = ["children", "size"], _excluded6$3 = ["children", "size"], _excluded7$3 = ["children", "size"], _excluded8$3 = ["children", "size"], _excluded9$3 = ["children", "size"], _excluded10$3 = ["children", "size"], _excluded11$3 = ["children", "size"], _excluded12$3 = ["children", "size"], _excluded13$3 = ["children", "size"], _excluded14$3 = ["children", "size"], _excluded15$3 = ["children", "size"], _excluded16$3 = ["children", "size"], _excluded17$3 = ["children", "size"], _excluded18$3 = ["children", "size"], _excluded19$3 = ["children", "size"], _excluded20$3 = ["children", "size"], _excluded21$3 = ["children", "size"], _excluded22$3 = ["children", "size"], _excluded23$3 = ["children", "size"], _excluded24$3 = ["children", "size"], _excluded25$3 = ["children", "size"], _excluded26$3 = ["children", "size"], _excluded27$3 = ["children", "size"], _excluded28$3 = ["children", "size"], _excluded29$3 = ["children", "size"], _excluded30$3 = ["children", "size"], _excluded31$3 = ["children", "size"], _excluded32$3 = ["children", "size"], _excluded33$3 = ["children", "size"], _excluded34$3 = ["children", "size"], _excluded35$3 = ["children", "size"], _excluded36$3 = ["children", "size"], _excluded37$3 = ["children", "size"], _excluded38$3 = ["children", "size"], _excluded39$3 = ["children", "size"], _excluded40$3 = ["children", "size"], _excluded41$3 = ["children", "size"], _excluded42$3 = ["children", "size"], _excluded43$3 = ["children", "size"], _excluded44$3 = ["children", "size"], _excluded45$3 = ["children", "size"], _excluded46$3 = ["children", "size"], _excluded47$3 = ["children", "size"], _excluded48$3 = ["children", "size"], _excluded49$3 = ["children", "size"], _excluded50$3 = ["children", "size"], _excluded51$3 = ["children", "size"], _excluded52$3 = ["children", "size"], _excluded53$3 = ["children", "size"], _excluded54$3 = ["children", "size"], _excluded55$3 = ["children", "size"], _excluded56$3 = ["children", "size"], _excluded57$3 = ["children", "size"], _excluded58$3 = ["children", "size"], _excluded59$3 = ["children", "size"], _excluded60$3 = ["children", "size"], _excluded61$3 = ["children", "size"], _excluded62$3 = ["children", "size"], _excluded63$3 = ["children", "size"], _excluded64$3 = ["children", "size"], _excluded65$3 = ["children", "size"], _excluded66$3 = ["children", "size"], _excluded67$3 = ["children", "size"], _excluded68$3 = ["children", "size"], _excluded69$3 = ["children", "size"], _excluded70$3 = ["children", "size"], _excluded71$3 = ["children", "size"], _excluded72$3 = ["children", "size"], _excluded73$3 = ["children", "size"], _excluded74$3 = ["children", "size"], _excluded75$3 = ["children", "size"], _excluded76$3 = ["children", "size"], _excluded77$3 = ["children", "size"], _excluded78$3 = ["children", "size"], _excluded79$3 = ["children", "size"], _excluded80$3 = ["children", "size"], _excluded81$3 = ["children", "size"], _excluded82$3 = ["children", "size"], _excluded83$3 = ["children", "size"], _excluded84$3 = ["children", "size"], _excluded85$3 = ["children", "size"], _excluded86$3 = ["children", "size"], _excluded87$3 = ["children", "size"], _excluded88$3 = ["children", "size"], _excluded89$3 = ["children", "size"], _excluded90$3 = ["children", "size"], _excluded91$3 = ["children", "size"], _excluded92$3 = ["children", "size"], _excluded93$3 = ["children", "size"], _excluded94$3 = ["children", "size"], _excluded95$3 = ["children", "size"], _excluded96$3 = ["children", "size"], _excluded97$3 = ["children", "size"], _excluded98$3 = ["children", "size"], _excluded99$3 = ["children", "size"], _excluded100$3 = ["children", "size"], _excluded101$3 = ["children", "size"], _excluded102$3 = ["children", "size"], _excluded103$3 = ["children", "size"], _excluded104$3 = ["children", "size"], _excluded105$3 = ["children", "size"], _excluded106$3 = ["children", "size"], _excluded107$3 = ["children", "size"], _excluded108$3 = ["children", "size"], _excluded109$3 = ["children", "size"], _excluded110$3 = ["children", "size"], _excluded111$3 = ["children", "size"], _excluded112$3 = ["children", "size"], _excluded113$3 = ["children", "size"], _excluded114$3 = ["children", "size"], _excluded115$3 = ["children", "size"], _excluded116$3 = ["children", "size"], _excluded117$3 = ["children", "size"], _excluded118$3 = ["children", "size"], _excluded119$3 = ["children", "size"], _excluded120$3 = ["children", "size"], _excluded121$3 = ["children", "size"], _excluded122$3 = ["children", "size"], _excluded123$3 = ["children", "size"], _excluded124$2 = ["children", "size"], _excluded125$2 = ["children", "size"]; var ScisControlTower = /*#__PURE__*/React__default["default"].forwardRef(function ScisControlTower(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$3 || (_path$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,19c-0.3,0-0.7,0.1-1,0.2L20.4,12c1-1.1,1.6-2.5,1.6-4c0-3.3-2.7-6-6-6s-6,2.7-6,6c0,1.6,0.6,3,1.6,4L6,19.2 C5.7,19.1,5.3,19,5,19c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3c0-0.6-0.2-1.1-0.5-1.6l5.6-7.1c0.6,0.3,1.2,0.5,1.9,0.6v10.3 c-1.2,0.4-2,1.5-2,2.8c0,1.7,1.3,3,3,3s3-1.3,3-3c0-1.3-0.8-2.4-2-2.8V13.9c0.7-0.1,1.3-0.3,1.9-0.6l5.6,7.1c-0.3,0.5-0.5,1-0.5,1.6 c0,1.7,1.3,3,3,3s3-1.3,3-3S28.7,19,27,19z M16,4c2.2,0,4,1.8,4,4s-1.8,4-4,4s-4-1.8-4-4S13.8,4,16,4z M5,23c-0.6,0-1-0.4-1-1 s0.4-1,1-1s1,0.4,1,1S5.6,23,5,23z M16,28c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S16.6,28,16,28z M27,23c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S27.6,23,27,23z" })), children); }); { ScisControlTower.propTypes = iconPropTypes; } var ScisTransparentSupply = /*#__PURE__*/React__default["default"].forwardRef(function ScisTransparentSupply(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$3 || (_path2$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,23v3H8.5a4.5,4.5,0,0,1,0-9H9V15H8.5a6.5,6.5,0,0,0,0,13H23v3h8V23Zm6,6H25V25h4Z" })), _path3$3 || (_path3$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 22H19V19H13v3H11V19a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2zM16 16a3 3 0 113-3A3.0033 3.0033 0 0116 16zm0-4a1 1 0 101 1A1.0013 1.0013 0 0016 12z" })), _path4$3 || (_path4$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,4H9V1H1V9H9V6H23.5a4.5,4.5,0,0,1,0,9H23v2h.5a6.5,6.5,0,0,0,0-13ZM7,7H3V3H7Z" })), children); }); { ScisTransparentSupply.propTypes = iconPropTypes; } var Scooter = /*#__PURE__*/React__default["default"].forwardRef(function Scooter(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path5$3 || (_path5$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 28a4 4 0 114-4A4.0045 4.0045 0 0126 28zm0-6a2 2 0 102 2A2.0023 2.0023 0 0026 22zM24 8H18v2h6a1 1 0 010 2H21a1 1 0 00-.98 1.1963l.9241 4.6211L18.4338 22h-2.69l-2.5723-8.5752A1.988 1.988 0 0011.2559 12H6v2h5.2561l.6 2H7a5.0057 5.0057 0 00-5 5v2a1 1 0 001 1H4a4 4 0 008 0h7a1 1 0 00.8574-.4854l3-5a1 1 0 00.1231-.7109L22.22 14H24a3 3 0 000-6zM8 26a2.0025 2.0025 0 01-2-2h4A2.0025 2.0025 0 018 26zM4 22V21a3.0033 3.0033 0 013-3h5.4561l1.2 4z" })), children); }); { Scooter.propTypes = iconPropTypes; } var ScooterFront = /*#__PURE__*/React__default["default"].forwardRef(function ScooterFront(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$3 || (_path6$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 19H17V28H15z" })), _path7$3 || (_path7$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,10V8H20a2.0025,2.0025,0,0,0-2-2H14a2.0025,2.0025,0,0,0-2,2H9v2h3v4.1841A2.9957,2.9957,0,0,0,10,17v7h2V17a1.0008,1.0008,0,0,1,1-1h6a1.0008,1.0008,0,0,1,1,1v7h2V17a2.9957,2.9957,0,0,0-2-2.8159V10ZM18,8v6H14V8Z" })), children); }); { ScooterFront.propTypes = iconPropTypes; } var Screen = /*#__PURE__*/React__default["default"].forwardRef(function Screen(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$3 || (_path8$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4ZM18,28H14V24h4Zm10-6H4V6H28Z" })), children); }); { Screen.propTypes = iconPropTypes; } var ScreenOff = /*#__PURE__*/React__default["default"].forwardRef(function ScreenOff(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path9$3 || (_path9$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,22H11.41L30,3.41,28.59,2l-2,2H4A2,2,0,0,0,2,6V22H4V6H24.59L2,28.59,3.41,30l6-6H12v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V9H28ZM18,28H14V24h4Z" })), children); }); { ScreenOff.propTypes = iconPropTypes; } var Script = /*#__PURE__*/React__default["default"].forwardRef(function Script(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$3 || (_path10$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.83 26L21.41 23.42 20 22 16 26 20 30 21.42 28.59 18.83 26zM27.17 26L24.59 28.58 26 30 30 26 26 22 24.58 23.41 27.17 26z" })), _path11$3 || (_path11$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v6h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h6ZM18,4.4,23.6,10H18Z" })), children); }); { Script.propTypes = iconPropTypes; } var ScriptReference = /*#__PURE__*/React__default["default"].forwardRef(function ScriptReference(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$3 || (_path12$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM27.17 26L24.59 28.58 26 30 30 26 26 22 24.58 23.41 27.17 26zM18.83 26L21.41 23.42 20 22 16 26 20 30 21.42 28.59 18.83 26zM25.7 9.3l-7-7A.9087.9087 0 0018 2H8A2.0058 2.0058 0 006 4V16H8V4h8v6a2.0058 2.0058 0 002 2h6v6h2V10A.9092.9092 0 0025.7 9.3zM18 10V4.4L23.6 10z" })), children); }); { ScriptReference.propTypes = iconPropTypes; } var Sdk = /*#__PURE__*/React__default["default"].forwardRef(function Sdk(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$3 || (_path13$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 9L27.9 9 24 15.6 24 9 22 9 22 23 24 23 24 18.7 24.9 17.2 27.9 23 30 23 26.1 15.4 30 9zM16 23H12V9h4a4.0118 4.0118 0 014 4v6A4.0118 4.0118 0 0116 23zm-2-2h2a2.0059 2.0059 0 002-2V13a2.0059 2.0059 0 00-2-2H14zM8 23H2V21H8V17H4a2.0059 2.0059 0 01-2-2V11A2.0059 2.0059 0 014 9h6v2H4v4H8a2.0059 2.0059 0 012 2v4A2.0059 2.0059 0 018 23z" })), children); }); { Sdk.propTypes = iconPropTypes; } var Search = /*#__PURE__*/React__default["default"].forwardRef(function Search(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$3); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path14$3 || (_path14$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,14.3L10.7,10c1.9-2.3,1.6-5.8-0.7-7.7S4.2,0.7,2.3,3S0.7,8.8,3,10.7c2,1.7,5,1.7,7,0l4.3,4.3L15,14.3z M2,6.5 C2,4,4,2,6.5,2S11,4,11,6.5S9,11,6.5,11S2,9,2,6.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$3 || (_path15$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z" })), children); }); { Search.propTypes = iconPropTypes; } var SearchAdvanced = /*#__PURE__*/React__default["default"].forwardRef(function SearchAdvanced(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$3 || (_path16$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 6L26 6 26 2 24 2 24 6 20 6 20 8 24 8 24 12 26 12 26 8 30 8 30 6zM24 28.5859l-5.9751-5.9751a9.0234 9.0234 0 10-1.4141 1.4141L22.5859 30zM4 17a7 7 0 117 7A7.0078 7.0078 0 014 17z" })), children); }); { SearchAdvanced.propTypes = iconPropTypes; } var SearchLocate = /*#__PURE__*/React__default["default"].forwardRef(function SearchLocate(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$3 || (_path17$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 28.5859l-4.6885-4.6884a8.028 8.028 0 10-1.414 1.414L28.5859 30zM19 25a6 6 0 116-6A6.0066 6.0066 0 0119 25zM2 12H10V14H2zM2 2H18V4H2zM2 7H18V9H2z" })), children); }); { SearchLocate.propTypes = iconPropTypes; } var Security = /*#__PURE__*/React__default["default"].forwardRef(function Security(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$3 || (_path18$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 16.59L11.41 14 10 15.41 14 19.41 22 11.41 20.59 10 14 16.59z" })), _path19$3 || (_path19$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30,9.8242,26.7071A10.9818,10.9818,0,0,1,4,17V4A2.0021,2.0021,0,0,1,6,2H26a2.0021,2.0021,0,0,1,2,2V17a10.9818,10.9818,0,0,1-5.8242,9.7071ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z" })), children); }); { Security.propTypes = iconPropTypes; } var SecurityServices = /*#__PURE__*/React__default["default"].forwardRef(function SecurityServices(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path20$3 || (_path20$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" })), _path21$3 || (_path21$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,26.667l-3.2344-1.7246A8.9858,8.9858,0,0,1,6,17V4H26V14h2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,28.9336Z" })), children); }); { SecurityServices.propTypes = iconPropTypes; } var Select_01 = /*#__PURE__*/React__default["default"].forwardRef(function Select_01(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$3 || (_path22$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6L8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6zM16 6H20V8H16zM24 6V8h4v4h2V8a2 2 0 00-2-2zM6 16H8V20H6zM8 28V24H6v4a2 2 0 002 2h4V28zM28 16H30V20H28zM16 28H20V30H16zM28 24v4H24v2h4a2 2 0 002-2V24z" })), children); }); { Select_01.propTypes = iconPropTypes; } var Select_02 = /*#__PURE__*/React__default["default"].forwardRef(function Select_02(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$3 || (_path23$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6L8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6zM30 10V4H24V6H16V8h8v2h2V24H24v2H10V24H8V16H6v8H4v6h6V28H24v2h6V24H28V10zM8 28H6V26H8zm20 0H26V26h2zM26 6h2V8H26z" })), children); }); { Select_02.propTypes = iconPropTypes; } var SelectWindow = /*#__PURE__*/React__default["default"].forwardRef(function SelectWindow(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path24$3 || (_path24$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 26H4a2.0021 2.0021 0 01-2-2V20H4v4H8zM2 12H4V16H2zM26 8H24V4H20V2h4a2.0021 2.0021 0 012 2zM12 2H16V4H12zM4 8H2V4A2.0021 2.0021 0 014 2H8V4H4zM27 32a.9967.9967 0 01-.707-.293l-6.1377-6.1377L16.832 30.5547a1 1 0 01-1.79-.2676l-6-20A1 1 0 0110.2871 9.042l20 6a1 1 0 01.2676 1.79l-4.9854 3.3233L31.707 26.293a.9994.9994 0 010 1.414l-4 4A.9967.9967 0 0127 32zm0-2.4141L29.5859 27 22.431 19.845l5.2458-3.4978L11.4917 11.4917l4.8555 16.1851L19.845 22.431z" })), children); }); { SelectWindow.propTypes = iconPropTypes; } var Send = /*#__PURE__*/React__default["default"].forwardRef(function Send(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$3 || (_path25$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.45,15.11l-22-11a1,1,0,0,0-1.08.12,1,1,0,0,0-.33,1L7,16,4,26.74A1,1,0,0,0,5,28a1,1,0,0,0,.45-.11l22-11a1,1,0,0,0,0-1.78Zm-20.9,10L8.76,17H18V15H8.76L6.55,6.89,24.76,16Z" })), children); }); { Send.propTypes = iconPropTypes; } var SendAlt = /*#__PURE__*/React__default["default"].forwardRef(function SendAlt(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$3 || (_path26$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.71,4.29a1,1,0,0,0-1.05-.23l-22,8a1,1,0,0,0,0,1.87l9.6,3.84,3.84,9.6A1,1,0,0,0,19,28h0a1,1,0,0,0,.92-.66l8-22A1,1,0,0,0,27.71,4.29ZM19,24.2l-2.79-7L21,12.41,19.59,11l-4.83,4.83L7.8,13,25.33,6.67Z" })), children); }); { SendAlt.propTypes = iconPropTypes; } var SendAltFilled = /*#__PURE__*/React__default["default"].forwardRef(function SendAltFilled(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$3 || (_path27$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.71,4.29a1,1,0,0,0-1.05-.23l-22,8a1,1,0,0,0,0,1.87l8.59,3.43L19.59,11,21,12.41l-6.37,6.37,3.44,8.59A1,1,0,0,0,19,28h0a1,1,0,0,0,.92-.66l8-22A1,1,0,0,0,27.71,4.29Z" })), children); }); { SendAltFilled.propTypes = iconPropTypes; } var SendFilled = /*#__PURE__*/React__default["default"].forwardRef(function SendFilled(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path28$3 || (_path28$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.45,15.11l-22-11a1,1,0,0,0-1.08.12,1,1,0,0,0-.33,1L6.69,15H18v2H6.69L4,26.74A1,1,0,0,0,5,28a1,1,0,0,0,.45-.11l22-11a1,1,0,0,0,0-1.78Z" })), children); }); { SendFilled.propTypes = iconPropTypes; } var SendBackward = /*#__PURE__*/React__default["default"].forwardRef(function SendBackward(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$3 || (_path29$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 7H2V4A2.0023 2.0023 0 014 2H7V4H4zM7 22H4a2.0023 2.0023 0 01-2-2V17H4v3H7zM2 10H4V14H2zM22 7H20V4H17V2h3a2.0023 2.0023 0 012 2zM10 2H14V4H10zM28 30H12a2.0023 2.0023 0 01-2-2V12a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM12 12V28H28V12z" })), children); }); { SendBackward.propTypes = iconPropTypes; } var SendToBack = /*#__PURE__*/React__default["default"].forwardRef(function SendToBack(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$3 || (_path30$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6v6a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V12A2.0023,2.0023,0,0,0,28,10ZM12,28V12H28l.0015,16Z" })), children); }); { SendToBack.propTypes = iconPropTypes; } var ServerDns = /*#__PURE__*/React__default["default"].forwardRef(function ServerDns(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$3 || (_path31$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 2a8 8 0 108 8A8.0092 8.0092 0 0016 2zm5.91 7H19.4724a15.2457 15.2457 0 00-.7917-4.36A6.0088 6.0088 0 0121.91 9zM16.022 15.999h-.0076c-.3813-.1206-1.3091-1.8213-1.479-4.999h2.9292C17.2952 14.1763 16.3711 15.877 16.022 15.999zM14.5354 9c.1694-3.1763 1.0935-4.877 1.4426-4.999h.0076c.3813.1206 1.3091 1.8213 1.479 4.999zM13.3193 4.64A15.2457 15.2457 0 0012.5276 9H10.09A6.0088 6.0088 0 0113.3193 4.64zM10.09 11h2.4373a15.2457 15.2457 0 00.7917 4.36A6.0088 6.0088 0 0110.09 11zm8.59 4.36A15.2457 15.2457 0 0019.4724 11H21.91A6.0088 6.0088 0 0118.6807 15.36zM28 30H4a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 30zM4 22v6H28V22z" })), _circle$3 || (_circle$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), children); }); { ServerDns.propTypes = iconPropTypes; } var ServerProxy = /*#__PURE__*/React__default["default"].forwardRef(function ServerProxy(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$3 || (_path32$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v6A2,2,0,0,0,6,30Zm0-8H26v6H6Z" })), _circle2$3 || (_circle2$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "25", r: "1" })), _path33$3 || (_path33$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2,24.59,3.41,27.17,6H22.315A6.9835,6.9835,0,0,0,9.08,10H4.83L7.41,7.41,6,6,1,11l5,5,1.41-1.41L4.83,12H9.685A6.9835,6.9835,0,0,0,22.92,8h4.25l-2.58,2.59L26,12l5-5ZM21,9a4.983,4.983,0,0,1-8.9745,3H16V10H11.1011a4.9852,4.9852,0,0,1,8.8734-4H16V8h4.8989A5.0019,5.0019,0,0,1,21,9Z" })), children); }); { ServerProxy.propTypes = iconPropTypes; } var ServerTime = /*#__PURE__*/React__default["default"].forwardRef(function ServerTime(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$3 || (_path34$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30ZM4,22v6H28V22Z" })), _circle3$3 || (_circle3$3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path35$3 || (_path35$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 11.586L17 9.586 17 6 15 6 15 10.414 17.586 13 19 11.586z" })), _path36$3 || (_path36$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,16,18ZM16,4a6,6,0,1,0,6,6A6.0067,6.0067,0,0,0,16,4Z" })), children); }); { ServerTime.propTypes = iconPropTypes; } var ServiceDesk = /*#__PURE__*/React__default["default"].forwardRef(function ServiceDesk(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$3 || (_path37$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,24V22A12.01,12.01,0,0,0,17,10.0507V8h3V6H12V8h3v2.0507A12.01,12.01,0,0,0,4,22v2H2v2H30V24ZM16,12a10.0167,10.0167,0,0,1,9.7984,8H6.2015A10.0165,10.0165,0,0,1,16,12ZM6,22H26v2H6Z", transform: "translate(0 .005)" })), children); }); { ServiceDesk.propTypes = iconPropTypes; } var ServiceId = /*#__PURE__*/React__default["default"].forwardRef(function ServiceId(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$3 || (_path38$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 24v-2h-2.101c-.13-.637-.384-1.229-.732-1.753l1.49-1.49-1.414-1.414-1.49 1.49c-.524-.348-1.116-.602-1.753-.732V16h-2v2.101c-.637.13-1.229.384-1.753.732l-1.49-1.49-1.414 1.414 1.49 1.49c-.348.524-.602 1.116-.732 1.753H16v2h2.101c.13.637.384 1.229.732 1.753l-1.49 1.49 1.414 1.414 1.49-1.49c.524.348 1.116.602 1.753.732V30h2v-2.101c.637-.13 1.229-.384 1.753-.732l1.49 1.49 1.414-1.414-1.49-1.49c.348-.524.602-1.116.732-1.753H30zM23 26c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3S24.654 26 23 26zM12 6H16V8H12z" })), _path39$3 || (_path39$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,28V4h16v9h2V4c0-1.103-0.897-2-2-2H6C4.897,2,4,2.897,4,4v24c0,1.103,0.897,2,2,2h8v-2H6z" })), children); }); { ServiceId.propTypes = iconPropTypes; } var SessionBorderControl = /*#__PURE__*/React__default["default"].forwardRef(function SessionBorderControl(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path40$3 || (_path40$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,8,24.59,9.41,27.17,12H16a5.967,5.967,0,0,0-4,1.54V6.83l2.59,2.58L16,8,11,3,6,8,7.41,9.41,10,6.83V18a5.969,5.969,0,0,0,1.54,4H4.83l2.58-2.59L6,18,1,23l5,5,1.41-1.41L4.83,24H16A5.99,5.99,0,0,0,20.46,14h6.71l-2.58,2.59L26,18l5-5ZM20,18a4,4,0,1,1-4-4A4.0045,4.0045,0,0,1,20,18Z" })), children); }); { SessionBorderControl.propTypes = iconPropTypes; } var Settings = /*#__PURE__*/React__default["default"].forwardRef(function Settings(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$3); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path41$3 || (_path41$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.5,8.4c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.4l1-0.8c0.4-0.3,0.4-0.9,0.2-1.3l-1.2-2C13.3,3.2,13,3,12.6,3 c-0.1,0-0.2,0-0.3,0.1l-1.2,0.4c-0.2-0.1-0.4-0.3-0.7-0.4l-0.3-1.3C10.1,1.3,9.7,1,9.2,1H6.8c-0.5,0-0.9,0.3-1,0.8L5.6,3.1 C5.3,3.2,5.1,3.3,4.9,3.4L3.7,3C3.6,3,3.5,3,3.4,3C3,3,2.7,3.2,2.5,3.5l-1.2,2C1.1,5.9,1.2,6.4,1.6,6.8l0.9,0.9c0,0.1,0,0.3,0,0.4 c0,0.1,0,0.3,0,0.4L1.6,9.2c-0.4,0.3-0.5,0.9-0.2,1.3l1.2,2C2.7,12.8,3,13,3.4,13c0.1,0,0.2,0,0.3-0.1l1.2-0.4 c0.2,0.1,0.4,0.3,0.7,0.4l0.3,1.3c0.1,0.5,0.5,0.8,1,0.8h2.4c0.5,0,0.9-0.3,1-0.8l0.3-1.3c0.2-0.1,0.4-0.2,0.7-0.4l1.2,0.4 c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.7-0.2,0.9-0.5l1.1-2c0.2-0.4,0.2-0.9-0.2-1.3L13.5,8.4z M12.6,12l-1.7-0.6c-0.4,0.3-0.9,0.6-1.4,0.8 L9.2,14H6.8l-0.4-1.8c-0.5-0.2-0.9-0.5-1.4-0.8L3.4,12l-1.2-2l1.4-1.2c-0.1-0.5-0.1-1.1,0-1.6L2.2,6l1.2-2l1.7,0.6 C5.5,4.2,6,4,6.5,3.8L6.8,2h2.4l0.4,1.8c0.5,0.2,0.9,0.5,1.4,0.8L12.6,4l1.2,2l-1.4,1.2c0.1,0.5,0.1,1.1,0,1.6l1.4,1.2L12.6,12z" })), _path42$3 || (_path42$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,11c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3C11,9.6,9.7,11,8,11C8,11,8,11,8,11z M8,6C6.9,6,6,6.8,6,7.9C6,7.9,6,8,6,8 c0,1.1,0.8,2,1.9,2c0,0,0.1,0,0.1,0c1.1,0,2-0.8,2-1.9c0,0,0-0.1,0-0.1C10,6.9,9.2,6,8,6C8.1,6,8,6,8,6z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$3 || (_path43$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,16.76c0-.25,0-.5,0-.76s0-.51,0-.77l1.92-1.68A2,2,0,0,0,29.3,11L26.94,7a2,2,0,0,0-1.73-1,2,2,0,0,0-.64.1l-2.43.82a11.35,11.35,0,0,0-1.31-.75l-.51-2.52a2,2,0,0,0-2-1.61H13.64a2,2,0,0,0-2,1.61l-.51,2.52a11.48,11.48,0,0,0-1.32.75L7.43,6.06A2,2,0,0,0,6.79,6,2,2,0,0,0,5.06,7L2.7,11a2,2,0,0,0,.41,2.51L5,15.24c0,.25,0,.5,0,.76s0,.51,0,.77L3.11,18.45A2,2,0,0,0,2.7,21L5.06,25a2,2,0,0,0,1.73,1,2,2,0,0,0,.64-.1l2.43-.82a11.35,11.35,0,0,0,1.31.75l.51,2.52a2,2,0,0,0,2,1.61h4.72a2,2,0,0,0,2-1.61l.51-2.52a11.48,11.48,0,0,0,1.32-.75l2.42.82a2,2,0,0,0,.64.1,2,2,0,0,0,1.73-1L29.3,21a2,2,0,0,0-.41-2.51ZM25.21,24l-3.43-1.16a8.86,8.86,0,0,1-2.71,1.57L18.36,28H13.64l-.71-3.55a9.36,9.36,0,0,1-2.7-1.57L6.79,24,4.43,20l2.72-2.4a8.9,8.9,0,0,1,0-3.13L4.43,12,6.79,8l3.43,1.16a8.86,8.86,0,0,1,2.71-1.57L13.64,4h4.72l.71,3.55a9.36,9.36,0,0,1,2.7,1.57L25.21,8,27.57,12l-2.72,2.4a8.9,8.9,0,0,1,0,3.13L27.57,20Z" })), _path44$3 || (_path44$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,1,6-6A5.94,5.94,0,0,1,16,22Zm0-10a3.91,3.91,0,0,0-4,4,3.91,3.91,0,0,0,4,4,3.91,3.91,0,0,0,4-4A3.91,3.91,0,0,0,16,12Z" })), children); }); { Settings.propTypes = iconPropTypes; } var SettingsAdjust = /*#__PURE__*/React__default["default"].forwardRef(function SettingsAdjust(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45$3 || (_path45$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30V8zM21 12c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S22.7 12 21 12zM2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2V24zM11 20c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3S9.3 20 11 20z" })), children); }); { SettingsAdjust.propTypes = iconPropTypes; } var SettingsCheck = /*#__PURE__*/React__default["default"].forwardRef(function SettingsCheck(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$3 || (_path46$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,1,6-6A5.9364,5.9364,0,0,1,16,22Zm0-10a3.9123,3.9123,0,0,0-4,4,3.9123,3.9123,0,0,0,4,4,3.9123,3.9123,0,0,0,4-4A3.9123,3.9123,0,0,0,16,12Z" })), _path47$3 || (_path47$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3047,11.044,26.9441,6.9562a1.9977,1.9977,0,0,0-2.3728-.8946l-2.4341.8233a11.0419,11.0419,0,0,0-1.312-.7583L20.3215,3.608A2,2,0,0,0,18.36,2H13.64A2,2,0,0,0,11.6785,3.608l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0616a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.044a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4947,5,15.7447,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025L5.0559,25.044a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H18V28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713L6.7878,24.044l-2.36-4.0878,2.7253-2.3951a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.044,6.7886,7.9562l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H18.36l.71,3.5508a9.0978,9.0978,0,0,1,2.6948,1.5713l3.4468-1.166,2.36,4.0878-2.7978,2.4522L26.0923,16l2.8-2.4536A2.0006,2.0006,0,0,0,29.3047,11.044Z" })), _path48$3 || (_path48$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 26.18L20.41 23.59 19 25 23 29 30 22 28.59 20.59 23 26.18z" })), children); }); { SettingsCheck.propTypes = iconPropTypes; } var SettingsServices = /*#__PURE__*/React__default["default"].forwardRef(function SettingsServices(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$3 || (_path49$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,25H27V23h1V19H24v1H22V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v6A1,1,0,0,1,29,25Z" })), _path50$3 || (_path50$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30H18a1 1 0 01-1-1V23a1 1 0 011-1h6a1 1 0 011 1v6A1 1 0 0124 30zm-5-2h4V24H19zM15 19.8579A3.9934 3.9934 0 1120 16h2a6 6 0 10-7 5.91z" })), _path51$3 || (_path51$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.89,13.55l-2.31,2.03-1.42-1.42,2.41-2.12L25.21,7.96,21.77,9.12a9.3684,9.3684,0,0,0-2.7-1.57L18.36,4H13.64l-.71,3.55a8.8609,8.8609,0,0,0-2.71,1.57L6.79,7.96,4.43,12.04l2.72,2.39a8.8948,8.8948,0,0,0,0,3.13l-2.72,2.4,2.36,4.08,3.44-1.16a9.3684,9.3684,0,0,0,2.7,1.57L13.64,28H15v2H13.64a2.0007,2.0007,0,0,1-1.96-1.61l-.51-2.52a11.412,11.412,0,0,1-1.31-.75l-2.43.82a2.038,2.038,0,0,1-.64.1,1.973,1.973,0,0,1-1.73-1L2.7,20.96a2,2,0,0,1,.41-2.51l1.92-1.68C5.01,16.51,5,16.26,5,16s.02-.51.04-.76L3.11,13.55a2,2,0,0,1-.41-2.51L5.06,6.96a1.973,1.973,0,0,1,1.73-1,2.038,2.038,0,0,1,.64.1l2.42.82a11.5416,11.5416,0,0,1,1.32-.75l.51-2.52A2.0007,2.0007,0,0,1,13.64,2h4.72a2.0007,2.0007,0,0,1,1.96,1.61l.51,2.52a11.412,11.412,0,0,1,1.31.75l2.43-.82a2.038,2.038,0,0,1,.64-.1,1.973,1.973,0,0,1,1.73,1l2.36,4.08A2,2,0,0,1,28.89,13.55Z" })), children); }); { SettingsServices.propTypes = iconPropTypes; } var SettingsView = /*#__PURE__*/React__default["default"].forwardRef(function SettingsView(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle4$2 || (_circle4$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "24", r: "2" })), _path52$3 || (_path52$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.7769 23.4785A8.64 8.64 0 0023 18a8.64 8.64 0 00-7.7769 5.4785L15 24l.2231.5215A8.64 8.64 0 0023 30a8.64 8.64 0 007.7769-5.4785L31 24zM23 28a4 4 0 114-4A4.0045 4.0045 0 0123 28zM12.3989 20.8A6 6 0 1122 16H20a4 4 0 10-6.4 3.2z" })), _path53$3 || (_path53$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3047,11.0439,26.9441,6.9561a1.9977,1.9977,0,0,0-2.3728-.8946l-2.4341.8233a11.0419,11.0419,0,0,0-1.312-.7583l-.5037-2.5186A2,2,0,0,0,18.36,2H13.64a2,2,0,0,0-1.9611,1.6079l-.5037,2.5186A10.9666,10.9666,0,0,0,9.8481,6.88L7.4287,6.0615a1.9977,1.9977,0,0,0-2.3728.8946L2.6953,11.0439a2.0006,2.0006,0,0,0,.4119,2.5025l1.9309,1.6968C5.021,15.4946,5,15.7446,5,16c0,.2578.01.5127.0278.7656l-1.9206,1.688a2.0006,2.0006,0,0,0-.4119,2.5025l2.3606,4.0878a1.9977,1.9977,0,0,0,2.3728.8946l2.4341-.8233a10.9736,10.9736,0,0,0,1.312.7583l.5037,2.5186A2,2,0,0,0,13.64,30H15V28H13.64l-.71-3.5508a9.0953,9.0953,0,0,1-2.6948-1.5713l-3.4468,1.166-2.36-4.0878L7.1528,17.561a8.9263,8.9263,0,0,1-.007-3.1279L4.4275,12.0439,6.7886,7.9561l3.4267,1.1591a9.0305,9.0305,0,0,1,2.7141-1.5644L13.64,4H18.36l.71,3.5508a9.0978,9.0978,0,0,1,2.6948,1.5713l3.4468-1.166,2.36,4.0878-2.7978,2.4522L26.0923,16l2.8-2.4536A2.0006,2.0006,0,0,0,29.3047,11.0439Z" })), children); }); { SettingsView.propTypes = iconPropTypes; } var ShapeExcept = /*#__PURE__*/React__default["default"].forwardRef(function ShapeExcept(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$3 || (_path54$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,20V12h8v8ZM3.9988,4H20v6H12a2.0023,2.0023,0,0,0-2,2v8H4Z" })), children); }); { ShapeExcept.propTypes = iconPropTypes; } var ShapeExclude = /*#__PURE__*/React__default["default"].forwardRef(function ShapeExclude(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$3 || (_path55$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6V12A2,2,0,0,1,12,10Z" })), _path56$3 || (_path56$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V20a2,2,0,0,1-2,2H10v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10Z" })), children); }); { ShapeExclude.propTypes = iconPropTypes; } var ShapeIntersect = /*#__PURE__*/React__default["default"].forwardRef(function ShapeIntersect(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$3 || (_path57$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,28,10ZM4,20V4H20v6H12a2.0025,2.0025,0,0,0-2,2v8Zm8,8V22h8a2.0025,2.0025,0,0,0,2-2V12h6V28Z" })), children); }); { ShapeIntersect.propTypes = iconPropTypes; } var ShapeJoin = /*#__PURE__*/React__default["default"].forwardRef(function ShapeJoin(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$3 || (_path58$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V20a2.0025,2.0025,0,0,0,2,2h6v6a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,28,10ZM4,20V4h6V20Zm18,8V12h6V28Z" })), children); }); { ShapeJoin.propTypes = iconPropTypes; } var ShapeUnite = /*#__PURE__*/React__default["default"].forwardRef(function ShapeUnite(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$3 || (_path59$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,10H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2h6v6a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10Z" })), children); }); { ShapeUnite.propTypes = iconPropTypes; } var Share = /*#__PURE__*/React__default["default"].forwardRef(function Share(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$3 || (_path60$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,20a5,5,0,0,0-3.89,1.89L11.8,17.32a4.46,4.46,0,0,0,0-2.64l7.31-4.57A5,5,0,1,0,18,7a4.79,4.79,0,0,0,.2,1.32l-7.31,4.57a5,5,0,1,0,0,6.22l7.31,4.57A4.79,4.79,0,0,0,18,25a5,5,0,1,0,5-5ZM23,4a3,3,0,1,1-3,3A3,3,0,0,1,23,4ZM7,19a3,3,0,1,1,3-3A3,3,0,0,1,7,19Zm16,9a3,3,0,1,1,3-3A3,3,0,0,1,23,28Z" })), children); }); { Share.propTypes = iconPropTypes; } var ShareKnowledge = /*#__PURE__*/React__default["default"].forwardRef(function ShareKnowledge(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$3 || (_path61$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM20 20a4 4 0 104-4A4 4 0 0020 20zm6 0a2 2 0 11-2-2A2 2 0 0126 20zM6 21V20H4v1a7 7 0 007 7h3V26H11A5 5 0 016 21zM19 10H26V12H19zM19 6H29V8H19zM19 2H29V4H19zM11 11H5a3 3 0 00-3 3v2H4V14a1 1 0 011-1h6a1 1 0 011 1v2h2V14A3 3 0 0011 11zM8 10A4 4 0 104 6 4 4 0 008 10zM8 4A2 2 0 116 6 2 2 0 018 4z" })), children); }); { ShareKnowledge.propTypes = iconPropTypes; } var ShoppingBag = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingBag(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62$3 || (_path62$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.76,11.35A1,1,0,0,0,28,11H22V7a3,3,0,0,0-3-3H13a3,3,0,0,0-3,3v4H4a1,1,0,0,0-1,1.15L4.88,24.3a2,2,0,0,0,2,1.7H25.14a2,2,0,0,0,2-1.7L29,12.15A1,1,0,0,0,28.76,11.35ZM12,7a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v4H12ZM25.14,24H6.86L5.17,13H26.83Z" })), children); }); { ShoppingBag.propTypes = iconPropTypes; } var ShoppingCart = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCart(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle5$2 || (_circle5$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle6$2 || (_circle6$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path63$3 || (_path63$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,7H5.82L5,2.8A1,1,0,0,0,4,2H0V4H3.18L7,23.2A1,1,0,0,0,8,24H26V22H8.82L8,18H26a1,1,0,0,0,1-.78l2-9A1,1,0,0,0,28,7Zm-2.8,9H7.62L6.22,9H26.75Z" })), children); }); { ShoppingCart.propTypes = iconPropTypes; } var ShoppingCartArrowDown = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartArrowDown(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle7$2 || (_circle7$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle8$2 || (_circle8$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path64$3 || (_path64$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path65$3 || (_path65$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.586 6.586L18 10.172 18 2 16 2 16 10.172 12.414 6.586 11 8 17 14 23 8 21.586 6.586z" })), children); }); { ShoppingCartArrowDown.propTypes = iconPropTypes; } var ShoppingCartArrowUp = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartArrowUp(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle9$2 || (_circle9$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle10$2 || (_circle10$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path66$3 || (_path66$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path67$3 || (_path67$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.586 9.414L18 5.828 18 14 16 14 16 5.828 12.414 9.414 11 8 17 2 23 8 21.586 9.414z" })), children); }); { ShoppingCartArrowUp.propTypes = iconPropTypes; } var ShoppingCartClear = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartClear(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle11$2 || (_circle11$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle12$1 || (_circle12$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path68$3 || (_path68$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path69$3 || (_path69$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.41 8L22 4.41 20.59 3 17 6.59 13.41 3 12 4.41 15.59 8 12 11.59 13.41 13 17 9.41 20.59 13 22 11.59 18.41 8z" })), children); }); { ShoppingCartClear.propTypes = iconPropTypes; } var ShoppingCartError = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartError(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle13$1 || (_circle13$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle14 || (_circle14 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path70$3 || (_path70$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path71$3 || (_path71$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,2a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,17,2Zm0,2a3.9521,3.9521,0,0,1,2.019.5669L13.5669,10.019A3.9529,3.9529,0,0,1,13,8,4.0045,4.0045,0,0,1,17,4Zm0,8a3.9521,3.9521,0,0,1-2.019-.5669L20.4331,5.981A3.9529,3.9529,0,0,1,21,8,4.0045,4.0045,0,0,1,17,12Z" })), children); }); { ShoppingCartError.propTypes = iconPropTypes; } var ShoppingCartMinus = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartMinus(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle15 || (_circle15 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle16 || (_circle16 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path72$3 || (_path72$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path73$3 || (_path73$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6L12 8 22 8 22 6 12 6z" })), children); }); { ShoppingCartMinus.propTypes = iconPropTypes; } var ShoppingCartPlus = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCartPlus(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle17 || (_circle17 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "28", r: "2" })), _circle18 || (_circle18 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "28", r: "2" })), _path74$3 || (_path74$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9806,2.8039A1,1,0,0,0,4,2H0V4H3.18L7.0194,23.1961A1,1,0,0,0,8,24H26V22H8.82l-.8-4H26a1,1,0,0,0,.9762-.783L29.2445,7H27.1971l-1.9989,9H7.62Z" })), _path75$3 || (_path75$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 6L18 2 16 2 16 6 12 6 12 8 16 8 16 12 18 12 18 8 22 8 22 6 18 6z" })), children); }); { ShoppingCartPlus.propTypes = iconPropTypes; } var ShoppingCatalog = /*#__PURE__*/React__default["default"].forwardRef(function ShoppingCatalog(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76$3 || (_path76$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 24H21V28H17zM24 24H28V28H24zM17 17H21V21H17zM24 17H28V21H24z" })), _path77$3 || (_path77$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,11h-6V7c0-1.7-1.3-3-3-3h-6c-1.7,0-3,1.3-3,3v4H4c-0.6,0-1,0.4-1,1c0,0.1,0,0.1,0,0.2l1.9,12.1c0.1,1,1,1.7,2,1.7H15v-2 H6.9L5.2,13H28V11z M12,7c0-0.6,0.4-1,1-1h6c0.6,0,1,0.4,1,1v4h-8V7z" })), children); }); { ShoppingCatalog.propTypes = iconPropTypes; } var ShowDataCards = /*#__PURE__*/React__default["default"].forwardRef(function ShowDataCards(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$3 || (_path78$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 10H4A2.0022 2.0022 0 012 8V4A2.0021 2.0021 0 014 2H28a2.0021 2.0021 0 012 2V8A2.0022 2.0022 0 0128 10zM4 4V8H28V4zM28 30H4a2.0022 2.0022 0 01-2-2V24a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v4A2.0022 2.0022 0 0128 30zM4 24v4H28V24zM28 20H4a2.0022 2.0022 0 01-2-2V14a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v4A2.0022 2.0022 0 0128 20zM4 14v4H28V14z" })), children); }); { ShowDataCards.propTypes = iconPropTypes; } var ShrinkScreen = /*#__PURE__*/React__default["default"].forwardRef(function ShrinkScreen(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79$3 || (_path79$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 28H17a2.0023 2.0023 0 01-2-2V20a2.0023 2.0023 0 012-2H28a2.0027 2.0027 0 012 2v6A2.0027 2.0027 0 0128 28zM17 20v6H28.002L28 20zM12 10L12 13.586 7.707 9.293 6.293 10.707 10.586 15 7 15 7 17 14 17 14 10 12 10z" })), _path80$3 || (_path80$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,22H4a2.0023,2.0023,0,0,1-2-2V7A2.002,2.002,0,0,1,4,5H26a2.0023,2.0023,0,0,1,2,2v9H26V7H4V20h9Z" })), children); }); { ShrinkScreen.propTypes = iconPropTypes; } var ShrinkScreenFilled = /*#__PURE__*/React__default["default"].forwardRef(function ShrinkScreenFilled(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _rect$1 || (_rect$1 = /*#__PURE__*/React__default["default"].createElement("rect", { width: "15", height: "10", x: "15", y: "18", rx: "2" })), _path81$3 || (_path81$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 10L12 13.586 7.707 9.293 6.293 10.707 10.586 15 7 15 7 17 14 17 14 10 12 10z" })), _path82$3 || (_path82$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,22H4a2.0023,2.0023,0,0,1-2-2V7A2.002,2.002,0,0,1,4,5H26a2.0023,2.0023,0,0,1,2,2v9H26V7H4V20h9Z" })), children); }); { ShrinkScreenFilled.propTypes = iconPropTypes; } var Shuffle = /*#__PURE__*/React__default["default"].forwardRef(function Shuffle(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$3 || (_path83$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.59,19.41,26.17,23H19.55l-4.37-7,4.37-7h6.62l-3.58,3.59L24,14l6-6L24,2,22.59,3.41,26.17,7H19.55a2,2,0,0,0-1.69.94L14,14.11,10.14,7.94A2,2,0,0,0,8.45,7H2V9H8.45l4.37,7L8.45,23H2v2H8.45a2,2,0,0,0,1.69-.94L14,17.89l3.86,6.17a2,2,0,0,0,1.69.94h6.62l-3.58,3.59L24,30l6-6-6-6Z" })), children); }); { Shuffle.propTypes = iconPropTypes; } var Shuttle = /*#__PURE__*/React__default["default"].forwardRef(function Shuttle(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$3 || (_path84$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.81,16l-7-9.56A1,1,0,0,0,22,6H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V16.56A1,1,0,0,0,29.81,16ZM20,8h1.49l5.13,7H20ZM4,8H18v7H4ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V17H28Z" })), children); }); { Shuttle.propTypes = iconPropTypes; } var SidePanelClose = /*#__PURE__*/React__default["default"].forwardRef(function SidePanelClose(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$3 || (_path85$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,15H17.8 l3.6-3.6L20,10l-6,6l6,6l1.4-1.4L17.8,17H28v9H12V6h16V15z" })), children); }); { SidePanelClose.propTypes = iconPropTypes; } var SidePanelCloseFilled = /*#__PURE__*/React__default["default"].forwardRef(function SidePanelCloseFilled(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$3 || (_path86$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M28,15H17.8l3.6-3.6L20,10l-6,6l6,6 l1.4-1.4L17.8,17H28v9H12V6h16V15z" })), children); }); { SidePanelCloseFilled.propTypes = iconPropTypes; } var SidePanelOpen = /*#__PURE__*/React__default["default"].forwardRef(function SidePanelOpen(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$3 || (_path87$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,26H12v-9h10.2 l-3.6,3.6L20,22l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z" })), children); }); { SidePanelOpen.propTypes = iconPropTypes; } var SidePanelOpenFilled = /*#__PURE__*/React__default["default"].forwardRef(function SidePanelOpenFilled(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$3 || (_path88$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M28,26H12v-9h10.2l-3.6,3.6L20,22 l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z" })), children); }); { SidePanelOpenFilled.propTypes = iconPropTypes; } var Sight = /*#__PURE__*/React__default["default"].forwardRef(function Sight(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$3 || (_path89$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 12H12V14H10zM6 12H8V14H6zM2 12H4V14H2zM26 30H24V27H20a5.0055 5.0055 0 01-5-5V20.7207l-2.3162-.772a1 1 0 01-.5412-1.4631L15 13.7229V11a9.01 9.01 0 019-9h5V4H24a7.0078 7.0078 0 00-7 7v3a.9991.9991 0 01-.1426.5144l-2.3586 3.9312 1.8174.6057A1 1 0 0117 20v2a3.0033 3.0033 0 003 3h5a1 1 0 011 1z" })), _path90$3 || (_path90$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 12H23V14H19z" })), children); }); { Sight.propTypes = iconPropTypes; } var Sigma = /*#__PURE__*/React__default["default"].forwardRef(function Sigma(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$3 || (_path91$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 5L7 5 7 7.414 15.586 16 7 24.586 7 27 24 27 24 25 9.414 25 18.414 16 9.414 7 24 7 24 5z" })), children); }); { Sigma.propTypes = iconPropTypes; } var SignalStrength = /*#__PURE__*/React__default["default"].forwardRef(function SignalStrength(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$3 || (_path92$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 6H28V26H26zM18 11H20V26H18zM11 16H13V26H11zM4 20H6V26H4z" })), children); }); { SignalStrength.propTypes = iconPropTypes; } var SimCard = /*#__PURE__*/React__default["default"].forwardRef(function SimCard(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$3 || (_path93$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,9H8a2.0023,2.0023,0,0,0-2,2V21a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V11A2.0023,2.0023,0,0,0,21,9Zm0,4H18V11h3Zm-3,2h3v2H18Zm-2-4V21H13V14a1,1,0,0,0-1-1H8V11Zm-5,6H8V15h3ZM8,19h3v2H8Zm10,2V19h3v2Z" })), _path94$3 || (_path94$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5317,27H4a2.0021,2.0021,0,0,1-2-2V7A2.0021,2.0021,0,0,1,4,5H28a2.0021,2.0021,0,0,1,2,2V19.6379a2.0044,2.0044,0,0,1-.4639,1.2808L25.0679,26.28A1.9944,1.9944,0,0,1,23.5317,27ZM4,7V25H23.5317L28,19.6379V7Z" })), children); }); { SimCard.propTypes = iconPropTypes; } var SkillLevel = /*#__PURE__*/React__default["default"].forwardRef(function SkillLevel(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$3 || (_path95$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V4h8zm-6-2h4V6H24zM20 30H12V12h8zm-6-2h4V14H14zM10 30H2V18h8zM4 28H8V20H4z" })), children); }); { SkillLevel.propTypes = iconPropTypes; } var SkillLevelAdvanced = /*#__PURE__*/React__default["default"].forwardRef(function SkillLevelAdvanced(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$3 || (_path96$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V4h8zM20 30H12V12h8zM10 30H2V18h8z" })), children); }); { SkillLevelAdvanced.propTypes = iconPropTypes; } var SkillLevelBasic = /*#__PURE__*/React__default["default"].forwardRef(function SkillLevelBasic(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path97$3 || (_path97$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V4h8zm-6-2h4V6H24zM20 30H12V12h8zm-6-2h4V14H14zM10 30H2V18h8z" })), children); }); { SkillLevelBasic.propTypes = iconPropTypes; } var SkillLevelIntermediate = /*#__PURE__*/React__default["default"].forwardRef(function SkillLevelIntermediate(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$3 || (_path98$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H22V4h8zm-6-2h4V6H24zM20 30H12V12h8zM10 30H2V18h8z" })), children); }); { SkillLevelIntermediate.propTypes = iconPropTypes; } var SkipBack = /*#__PURE__*/React__default["default"].forwardRef(function SkipBack(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$3 || (_path99$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 28a1 1 0 01-.5-.13l-19-11a1 1 0 010-1.74l19-11a1 1 0 011 0A1 1 0 0128 5V27a1 1 0 01-1 1zM10 16l16 9.27V6.73zM2 4H4V28H2z" })), children); }); { SkipBack.propTypes = iconPropTypes; } var SkipBackFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipBackFilled(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$3 || (_path100$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 28a.9975.9975 0 01-.501-.1348l-19-11a1 1 0 010-1.73l19-11A1 1 0 0128 5V27a1 1 0 01-1 1zM2 4H4V28H2z" })), children); }); { SkipBackFilled.propTypes = iconPropTypes; } var SkipBackOutline = /*#__PURE__*/React__default["default"].forwardRef(function SkipBackOutline(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$3 || (_path101$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7485l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Zm-6.9409-6L22,19.3006V12.7Z" })), _path102$3 || (_path102$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 10H11V22H9z", transform: "rotate(-180 10 16)" })), _path103$3 || (_path103$3 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { SkipBackOutline.propTypes = iconPropTypes; } var SkipBackOutlineFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipBackOutlineFilled(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$3 || (_path104$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM10,22H8V10h2Zm14-1a1,1,0,0,1-1.4858.874l-9-5a1,1,0,0,1,0-1.748l9-5A1,1,0,0,1,24,11Z" })), _path105$3 || (_path105$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 19.301L22 12.699 16.059 16 22 19.301z" })), _path106$3 || (_path106$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7486l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Zm-6.9409-6L22,19.3005V12.7Z" })), _path107$3 || (_path107$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8 10H10V22H8z", transform: "rotate(-180 9 16)" })), children); }); { SkipBackOutlineFilled.propTypes = iconPropTypes; } var SkipBackOutlineSolid = /*#__PURE__*/React__default["default"].forwardRef(function SkipBackOutlineSolid(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$3 || (_path108$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7485l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Z" })), _path109$3 || (_path109$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 10H11V22H9z", transform: "rotate(-180 10 16)" })), _path110$3 || (_path110$3 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { SkipBackOutlineSolid.propTypes = iconPropTypes; } var SkipBackSolidFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipBackSolidFilled(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111$3 || (_path111$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM10,22H8V10h2Zm14-1a1,1,0,0,1-1.4858.874l-9-5a1,1,0,0,1,0-1.748l9-5A1,1,0,0,1,24,11Z" })), _path112$3 || (_path112$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23,22a1.0037,1.0037,0,0,1-.4858-.1257l-9-5a1,1,0,0,1,0-1.7486l9-5A1,1,0,0,1,24,11V21a1,1,0,0,1-1,1Z" })), _path113$3 || (_path113$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8 10H10V22H8z", transform: "rotate(-180 9 16)" })), children); }); { SkipBackSolidFilled.propTypes = iconPropTypes; } var SkipForward = /*#__PURE__*/React__default["default"].forwardRef(function SkipForward(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$3 || (_path114$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 28a1 1 0 01-1-1V5a1 1 0 01.5-.87 1 1 0 011 0l19 11a1 1 0 010 1.74l-19 11A1 1 0 015 28zM6 6.73V25.27L22 16zM28 4H30V28H28z" })), children); }); { SkipForward.propTypes = iconPropTypes; } var SkipForwardFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipForwardFilled(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$3 || (_path115$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 4H30V28H28zM5 28a1 1 0 01-1-1V5a1 1 0 011.501-.8652l19 11a1 1 0 010 1.73l-19 11A.9975.9975 0 015 28z" })), children); }); { SkipForwardFilled.propTypes = iconPropTypes; } var SkipForwardOutline = /*#__PURE__*/React__default["default"].forwardRef(function SkipForwardOutline(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$3 || (_path116$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 10H23V22H21zM8.4927 21.8618A1 1 0 018 21V11a1 1 0 011.4858-.8742l9 5a1 1 0 010 1.7485l-9 5a1.0009 1.0009 0 01-.9931-.0125zM10 12.7v6.6011L15.9409 16z" })), _path117$3 || (_path117$3 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { SkipForwardOutline.propTypes = iconPropTypes; } var SkipForwardOutlineFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipForwardOutlineFilled(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$3 || (_path118$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 19.301L15.941 16 10 12.699 10 19.301z" })), _path119$3 || (_path119$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm2.4858,14.874-9,5A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.874l9,5a1,1,0,0,1,0,1.748ZM24,22H22V10h2Z" })), _path120$3 || (_path120$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22 10H24V22H22zM8.4927 21.8618A1 1 0 018 21V11a1 1 0 011.4858-.8743l9 5a1 1 0 010 1.7486l-9 5a1.0009 1.0009 0 01-.9931-.0125zM10 12.7v6.601L15.9409 16z" })), children); }); { SkipForwardOutlineFilled.propTypes = iconPropTypes; } var SkipForwardOutlineSolid = /*#__PURE__*/React__default["default"].forwardRef(function SkipForwardOutlineSolid(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$3 || (_path121$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 10H23V22H21zM8.4927 21.8618A1 1 0 018 21V11a1 1 0 011.4858-.8742l9 5a1 1 0 010 1.7485l-9 5a1.0009 1.0009 0 01-.9931-.0125z" })), _path122$3 || (_path122$3 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { SkipForwardOutlineSolid.propTypes = iconPropTypes; } var SkipForwardSolidFilled = /*#__PURE__*/React__default["default"].forwardRef(function SkipForwardSolidFilled(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$3 || (_path123$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm2.4858,14.874-9,5A1,1,0,0,1,8,21V11a1,1,0,0,1,1.4858-.874l9,5a1,1,0,0,1,0,1.748ZM24,22H22V10h2Z" })), _path124$3 || (_path124$3 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22 10H24V22H22zM8.4927 21.8618A1 1 0 018 21V11a1 1 0 011.4858-.8743l9 5a1 1 0 010 1.7486l-9 5a1.0009 1.0009 0 01-.9931-.0125z" })), children); }); { SkipForwardSolidFilled.propTypes = iconPropTypes; } var Sleet = /*#__PURE__*/React__default["default"].forwardRef(function Sleet(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$3 || (_path125$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 24H8V26H6zM8 26H10V28H8zM10 28H12V30H10zM10 24H12V26H10zM6 28H8V30H6z" })), _path126$3 || (_path126$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 0121 30zM24.8008 9.1362a8.9943 8.9943 0 00-17.6006 0A6.4973 6.4973 0 008.5 22h8.8818L16.106 24.5527a1 1 0 101.7885.8946L19.6177 22H23.5A6.4974 6.4974 0 0024.8008 9.1362zM23.5 20H8.5a4.4975 4.4975 0 01-.356-8.981l.8155-.0639.0991-.812a6.9938 6.9938 0 0113.8838 0l.0986.812.8154.0639A4.4975 4.4975 0 0123.5 20z" })), children); }); { Sleet.propTypes = iconPropTypes; } var Slisor = /*#__PURE__*/React__default["default"].forwardRef(function Slisor(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$3 || (_path127$3 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _circle19 || (_circle19 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "25", r: "1" })), _path128$3 || (_path128$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a1.0005,1.0005,0,0,1-.4473-.1055l-10-5,.8946-1.789L16,19.8821l9.5527-4.7766.8946,1.789-10,5A1.0005,1.0005,0,0,1,16,22Z" })), _path129$3 || (_path129$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,16a1.0005,1.0005,0,0,1-.4473-.1055l-10-5a1,1,0,0,1,0-1.789l10-5a1.0008,1.0008,0,0,1,.8946,0l10,5a1,1,0,0,1,0,1.789l-10,5A1.0005,1.0005,0,0,1,16,16ZM8.2358,10,16,13.8821,23.7642,10,16,6.1179Z" })), children); }); { Slisor.propTypes = iconPropTypes; } var Smell = /*#__PURE__*/React__default["default"].forwardRef(function Smell(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$3 || (_path130$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,15V10H20v7h2a3,3,0,0,1,0,6H21V21H19v2a3,3,0,0,1-6,0V21H11v2H10a3,3,0,0,1,0-6h2V9a3,3,0,0,1,3-3h1V4H15a5,5,0,0,0-5,5v6a5,5,0,0,0,0,10h1.42a5,5,0,0,0,9.16,0H22a5,5,0,0,0,0-10Z" })), children); }); { Smell.propTypes = iconPropTypes; } var Smoke = /*#__PURE__*/React__default["default"].forwardRef(function Smoke(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131$3 || (_path131$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.001 28a.998.998 0 01-.8008-.4l-.8145-1.086a8.9976 8.9976 0 01-1.6005-7.2856l1.4736-6.8762a6.9956 6.9956 0 00-1.2446-5.6668L23.2 5.6a1 1 0 111.6-1.2l.8145 1.0857a8.9976 8.9976 0 011.6005 7.2856l-1.4736 6.8762a6.9956 6.9956 0 001.2446 5.6668L27.8 26.4A1 1 0 0127.001 28zM22.001 28a.998.998 0 01-.8008-.4l-.8145-1.086a8.9976 8.9976 0 01-1.6005-7.2856l1.4736-6.8762a6.9956 6.9956 0 00-1.2446-5.6668L18.2 5.6a1 1 0 111.6-1.2l.8145 1.0857a8.9976 8.9976 0 011.6005 7.2856l-1.4736 6.8762a6.9956 6.9956 0 001.2446 5.6668L22.8 26.4A1 1 0 0122.001 28zM17.001 28a.998.998 0 01-.8008-.4l-.8145-1.086a8.9976 8.9976 0 01-1.6005-7.2856l1.4736-6.8762a6.9956 6.9956 0 00-1.2446-5.6668L13.2 5.6a1 1 0 111.6-1.2l.8145 1.0857a8.9976 8.9976 0 011.6005 7.2856l-1.4736 6.8762a6.9956 6.9956 0 001.2446 5.6668L17.8 26.4A1 1 0 0117.001 28zM12.001 28a.998.998 0 01-.8008-.4l-.8145-1.086a8.9976 8.9976 0 01-1.6005-7.2856l1.4736-6.8762A6.9956 6.9956 0 009.0142 6.6855L8.2 5.6A1 1 0 119.8 4.4l.8145 1.0857a8.9976 8.9976 0 011.6005 7.2856l-1.4736 6.8762a6.9956 6.9956 0 001.2446 5.6668L12.8 26.4A1 1 0 0112.001 28zM7.001 28A.998.998 0 016.2 27.6l-.8145-1.086a8.9976 8.9976 0 01-1.6-7.2856l1.4736-6.8762A6.9956 6.9956 0 004.0142 6.6855L3.2 5.6A1 1 0 114.8 4.4l.8145 1.0857a8.9976 8.9976 0 011.6005 7.2856L5.7412 19.6474a6.9956 6.9956 0 001.2446 5.6668L7.8 26.4A1 1 0 017.001 28z" })), children); }); { Smoke.propTypes = iconPropTypes; } var WatsonHealthSmoothing = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSmoothing(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle20 || (_circle20 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "5" })), _path132$3 || (_path132$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.7 4.7a14.7029 14.7029 0 00-3 3.1L6.3 9A13.2634 13.2634 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.5111 12.5111 0 002 16H4A11.4756 11.4756 0 014.6 12.3zM2.7 20.4a14.4029 14.4029 0 002 3.9l1.6-1.2a12.8867 12.8867 0 01-1.7-3.3zM7.8 27.3a14.4029 14.4029 0 003.9 2l.6-1.9A12.8867 12.8867 0 019 25.7zM11.7 2.7l.6 1.9A11.4756 11.4756 0 0116 4V2A12.5111 12.5111 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.526 11.526 0 0123 25.7zM27.4 19.7l1.9.6A15.4747 15.4747 0 0030 16H28A11.4756 11.4756 0 0127.4 19.7zM29.2 11.6a14.4029 14.4029 0 00-2-3.9L25.6 8.9a12.8867 12.8867 0 011.7 3.3zM24.1 4.6a14.4029 14.4029 0 00-3.9-2l-.6 1.9a12.8867 12.8867 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.4756 11.4756 0 0116 28v2A21.4206 21.4206 0 0020.3 29.3z" })), children); }); { WatsonHealthSmoothing.propTypes = iconPropTypes; } var WatsonHealthSmoothingCursor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSmoothingCursor(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle21 || (_circle21 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "18", r: "4" })), _path133$3 || (_path133$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 30a11.8932 11.8932 0 01-4.1035-.72L14.58 27.4A9.9725 9.9725 0 0018 28zM22.1484 29.2637l-.6914-1.877a9.9556 9.9556 0 002.9973-1.748l1.2916 1.5268A11.9525 11.9525 0 0122.1484 29.2637zM10.2893 27.1951A12.0141 12.0141 0 017.61 24.0078l1.73-1.0029a10.0236 10.0236 0 002.2347 2.6584zM28.4133 23.967l-1.7343-.9956a9.9159 9.9159 0 001.176-3.2641l1.9712.3388A11.8956 11.8956 0 0128.4133 23.967zM6.1821 20.0925A12.1282 12.1282 0 016.1777 15.93l1.9707.3423a10.1214 10.1214 0 00.0035 3.4738zM27.8447 16.2339a9.9019 9.9019 0 00-1.1953-3.2564l1.7285-1.0063a11.9029 11.9029 0 011.4361 3.9121zM9.3313 13.0107l-1.7324-.999a12.01 12.01 0 012.6738-3.1931l1.2886 1.53A10.01 10.01 0 009.3313 13.0107zM24.4094 10.3237a9.96 9.96 0 00-3.0088-1.7309l.68-1.8809a11.9491 11.9491 0 013.6118 2.0772zM14.562 8.6064l-.6875-1.8779A12.1031 12.1031 0 0118 6V8A10.0875 10.0875 0 0014.562 8.6064zM11 2L2 2 2 11 4 11 4 4 11 4 11 2z" })), children); }); { WatsonHealthSmoothingCursor.propTypes = iconPropTypes; } var Snooze = /*#__PURE__*/React__default["default"].forwardRef(function Snooze(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$3 || (_path134$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 14L20 12 12 12 12 14 17.5 14 12 20 12 22 20 22 20 20 14.507 20 20 14z" })), _path135$3 || (_path135$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 3.965H26.499V9.036999999999999H24.5z", transform: "rotate(-44.945 25.5 6.5)" })), _path136$3 || (_path136$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28A11,11,0,1,1,27,17,11.0125,11.0125,0,0,1,16,28ZM16,8a9,9,0,1,0,9,9A9.01,9.01,0,0,0,16,8Z" })), _path137$3 || (_path137$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3.965 5.501H9.036999999999999V7.5H3.965z", transform: "rotate(-45.055 6.5 6.5)" })), children); }); { Snooze.propTypes = iconPropTypes; } var Snow = /*#__PURE__*/React__default["default"].forwardRef(function Snow(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path138$3 || (_path138$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5 22H8.5A6.5 6.5 0 017.2 9.14a9 9 0 0117.6 0A6.5 6.5 0 0123.5 22zM16 4a7 7 0 00-6.94 6.14L9 11 8.14 11a4.5 4.5 0 00.36 9h15a4.5 4.5 0 00.36-9L23 11l-.1-.82A7 7 0 0016 4zM12 25.05L10.95 24 9.5 25.45 8.05 24 7 25.05 8.45 26.5 7 27.95 8.05 29 9.5 27.55 10.95 29 12 27.95 10.55 26.5 12 25.05zM26 25.05L24.95 24 23.5 25.45 22.05 24 21 25.05 22.45 26.5 21 27.95 22.05 29 23.5 27.55 24.95 29 26 27.95 24.55 26.5 26 25.05zM19 27.05L17.95 26 16.5 27.45 15.05 26 14 27.05 15.45 28.5 14 29.95 15.05 31 16.5 29.55 17.95 31 19 29.95 17.55 28.5 19 27.05z" })), children); }); { Snow.propTypes = iconPropTypes; } var SnowBlizzard = /*#__PURE__*/React__default["default"].forwardRef(function SnowBlizzard(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$3 || (_path139$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 10H15V12H13zM15 12H17V14H15zM17 14H19V16H17zM17 10H19V12H17zM13 14H15V16H13zM3 26H5V28H3zM5 28H7V30H5zM7 30H9V32H7zM7 26H9V28H7zM3 30H5V32H3zM23 26H25V28H23zM25 28H27V30H25zM27 30H29V32H27zM27 26H29V28H27zM23 30H25V32H23zM8 18H10V20H8zM10 20H12V22H10zM12 22H14V24H12zM12 18H14V20H12zM8 22H10V24H8zM18 18H20V20H18zM20 20H22V22H20zM22 22H24V24H22zM22 18H24V20H22zM18 22H20V24H18zM13 26H15V28H13zM15 28H17V30H15zM17 30H19V32H17zM17 26H19V28H17zM13 30H15V32H13z" })), _path140$3 || (_path140$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4957,6.4957,0,0,0,6,21.4985v-2.26A4.4943,4.4943,0,0,1,8.144,11.019l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4944,4.4944,0,0,1,26,19.2383v2.26A6.4958,6.4958,0,0,0,24.8008,9.1362Z" })), children); }); { SnowBlizzard.propTypes = iconPropTypes; } var SnowHeavy = /*#__PURE__*/React__default["default"].forwardRef(function SnowHeavy(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$3 || (_path141$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H6V28H4zM6 28H8V30H6zM8 30H10V32H8zM8 26H10V28H8zM4 30H6V32H4zM8 18H10V20H8zM10 20H12V22H10zM12 22H14V24H12zM12 18H14V20H12zM8 22H10V24H8zM18 18H20V20H18zM20 20H22V22H20zM22 22H24V24H22zM22 18H24V20H22zM18 22H20V24H18zM14 26H16V28H14zM16 28H18V30H16zM18 30H20V32H18zM18 26H20V28H18zM14 30H16V32H14z" })), _path142$3 || (_path142$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4957,6.4957,0,0,0,6,21.4985v-2.26A4.4943,4.4943,0,0,1,8.144,11.019l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4944,4.4944,0,0,1,26,19.2383v2.26A6.4958,6.4958,0,0,0,24.8008,9.1362Z" })), children); }); { SnowHeavy.propTypes = iconPropTypes; } var SnowScattered = /*#__PURE__*/React__default["default"].forwardRef(function SnowScattered(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$3 || (_path143$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 26H4V28H2zM4 28H6V30H4zM6 30H8V32H6zM6 26H8V28H6zM2 30H4V32H2zM20 26H22V28H20zM22 28H24V30H22zM24 30H26V32H24zM24 26H26V28H24zM20 30H22V32H20zM11 26H13V28H11zM13 28H15V30H13zM15 30H17V32H15zM15 26H17V28H15zM11 30H13V32H11zM20 0H22V3H20zM29 10.001H32V12.001H29z" })), _path144$3 || (_path144$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.732 3.768H29.732V5.768H26.732z", transform: "rotate(-45 28.232 4.768)" })), _path145$3 || (_path145$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.732 16.233H29.732V18.233H26.732z", transform: "rotate(-135 28.232 17.233)" })), _path146$3 || (_path146$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.268 3.768H15.268V5.768H12.268z", transform: "rotate(-135 13.768 4.768)" })), _path147$3 || (_path147$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,11A5.9852,5.9852,0,0,0,16.1431,7.5083,7.3737,7.3737,0,0,0,13.5,7a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,24H19a5.9672,5.9672,0,0,0,5.5667-8.2A5.9722,5.9722,0,0,0,27,11ZM19,22H8a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,22Zm4.5222-7.9131a5.9592,5.9592,0,0,0-2.8728-1.8428,7.5212,7.5212,0,0,0-2.7224-3.78,3.9869,3.9869,0,1,1,5.5952,5.6225Z" })), children); }); { SnowScattered.propTypes = iconPropTypes; } var SnowScatteredNight = /*#__PURE__*/React__default["default"].forwardRef(function SnowScatteredNight(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$3 || (_path148$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 26H4V28H2zM4 28H6V30H4zM6 30H8V32H6zM6 26H8V28H6zM2 30H4V32H2zM20 26H22V28H20zM22 28H24V30H22zM24 30H26V32H24zM24 26H26V28H24zM20 30H22V32H20zM11 26H13V28H11zM13 28H15V30H13zM15 30H17V32H15zM15 26H17V28H15zM11 30H13V32H11zM29.8439 13.0347a1.517 1.517 0 00-1.23-.8658 5.3552 5.3552 0 01-3.4095-1.7158 6.4655 6.4655 0 01-1.286-6.3926 1.6025 1.6025 0 00-.2989-1.5459 1.4543 1.4543 0 00-1.36-.4931l-.0191.0039a7.7685 7.7685 0 00-5.8847 5.5737A7.3706 7.3706 0 0013.5 7a7.5511 7.5511 0 00-7.1494 5.2441A5.9926 5.9926 0 008 24H19a6.0066 6.0066 0 006-6c0-.0571-.0123-.1113-.0139-.1685a7.5076 7.5076 0 004.7611-3.2768A1.5369 1.5369 0 0029.8439 13.0347zM19 22H8a3.9926 3.9926 0 01-.6733-7.9292l.663-.1128.1456-.6562a5.496 5.496 0 0110.7294 0l.1456.6562.6626.1128A3.9925 3.9925 0 0119 22zm5.5974-6.1289a5.9661 5.9661 0 00-3.948-3.627 7.49 7.49 0 00-2.489-3.58 5.9018 5.9018 0 013.6381-4.4473 8.4577 8.4577 0 001.94 7.5967A7.4007 7.4007 0 0027.64 14.041 5.4487 5.4487 0 0124.5974 15.8711z" })), children); }); { SnowScatteredNight.propTypes = iconPropTypes; } var SnowDensity = /*#__PURE__*/React__default["default"].forwardRef(function SnowDensity(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path149$3 || (_path149$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28a9.0114,9.0114,0,0,1-9-9,9.9843,9.9843,0,0,1,1.4941-4.9554L15.1528,3.4367a1.04,1.04,0,0,1,1.6944,0l6.6289,10.5564A10.0633,10.0633,0,0,1,25,19,9.0114,9.0114,0,0,1,16,28ZM16,5.8483l-5.7817,9.2079A7.9771,7.9771,0,0,0,9,19a7,7,0,0,0,14,0,8.0615,8.0615,0,0,0-1.248-3.9953Z" })), _path150$3 || (_path150$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.6 16.8L19.4 15.2 17 17 17 14 15 14 15 17 12.6 15.2 11.4 16.8 14.333 19 11.4 21.2 12.6 22.8 15 21 15 24 17 24 17 21 19.4 22.8 20.6 21.2 17.667 19 20.6 16.8z" })), children); }); { SnowDensity.propTypes = iconPropTypes; } var Snowflake = /*#__PURE__*/React__default["default"].forwardRef(function Snowflake(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$3 || (_path151$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4148,12H28V10H23.4148l4.5857-4.5854L26.5864,4,22,8.5869V4H20v6.5869L18.5867,12H17V8H15v4H13.4133L12,10.5869V4H10V8.5869L5.4136,4,4,5.4146,8.5852,10H4v2h6.5852L12,13.415V15H8v2h4v1.5869L10.5867,20H4v2H8.5867L4,26.5864l1.4141,1.4141L10,23.415V28h2V21.415L13.4148,20H15v4h2V20h1.5852L20,21.415V28h2V23.415l4.5854,4.5855L28,26.5864,23.4133,22H28V20H21.4133L20,18.5869V17h4V15H20V13.415ZM18,18H14V14h4Z" })), children); }); { Snowflake.propTypes = iconPropTypes; } var Soccer = /*#__PURE__*/React__default["default"].forwardRef(function Soccer(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle22 || (_circle22 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17", cy: "28", r: "2" })), _path152$3 || (_path152$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.55 17.5H15.45V19.5H7.55z", transform: "rotate(-45 11.5 18.5)" })), _path153$3 || (_path153$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 16.584L19.4143 8H6v2H18.5857l3 3L6 28.5859 7.4141 30 23 14.415 26.584 18 23 21.5859 24.4141 23 28 19.416A2.0044 2.0044 0 0028 16.584zM24.5 9A3.5 3.5 0 1128 5.5 3.504 3.504 0 0124.5 9zm0-5A1.5 1.5 0 1026 5.5 1.5017 1.5017 0 0024.5 4z" })), children); }); { Soccer.propTypes = iconPropTypes; } var SoftwareResource = /*#__PURE__*/React__default["default"].forwardRef(function SoftwareResource(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$3 || (_path154$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" })), children); }); { SoftwareResource.propTypes = iconPropTypes; } var SoftwareResourceCluster = /*#__PURE__*/React__default["default"].forwardRef(function SoftwareResourceCluster(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155$3 || (_path155$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 21c-.5 0-1-.2-1.4-.6l-3-3C19.2 17 19 16.5 19 16s.2-1 .6-1.4l3-3C23 11.2 23.5 11 24 11c.5 0 1 .2 1.4.6l3 3C28.8 15 29 15.5 29 16c0 .5-.2 1-.6 1.4l-3 3C25 20.8 24.5 21 24 21zM24 13l-3 3 3 3 3-3L24 13zM16 13c-.5 0-1-.2-1.4-.6l-3-3C11.2 9 11 8.5 11 8s.2-1 .6-1.4l3-3C15 3.2 15.5 3 16 3c.5 0 1 .2 1.4.6l3 3C20.8 7 21 7.5 21 8c0 .5-.2 1-.6 1.4l-3 3C17 12.8 16.5 13 16 13zM16 5l-3 3 3 3 3-3L16 5zM16 29c-.5 0-1-.2-1.4-.6l-3-3C11.2 25 11 24.5 11 24s.2-1 .6-1.4l3-3C15 19.2 15.5 19 16 19c.5 0 1 .2 1.4.6l3 3C20.8 23 21 23.5 21 24c0 .5-.2 1-.6 1.4l-3 3C17 28.8 16.5 29 16 29zM16 21l-3 3 3 3 3-3L16 21zM8 21c-.5 0-1-.2-1.4-.6l-3-3C3.2 17 3 16.5 3 16s.2-1 .6-1.4l3-3C7 11.2 7.5 11 8 11c.5 0 1 .2 1.4.6l3 3C12.8 15 13 15.5 13 16c0 .5-.2 1-.6 1.4l-3 3C9 20.8 8.5 21 8 21zM8 13l-3 3 3 3 3-3L8 13z" })), children); }); { SoftwareResourceCluster.propTypes = iconPropTypes; } var SoftwareResourceResource = /*#__PURE__*/React__default["default"].forwardRef(function SoftwareResourceResource(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$3 || (_path156$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.9 8.3H11.7V10.3H6.9z", transform: "rotate(-45.001 9.293 9.293)" })), _path157$3 || (_path157$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.9,19.7l-2.3-2.3C2.2,17,2,16.5,2,16s0.2-1,0.6-1.4l2.3-2.3l1.4,1.4L4,16l2.3,2.3L4.9,19.7z" })), _path158$3 || (_path158$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.3 20.3H10.3V25.1H8.3z", transform: "rotate(-45.001 9.293 22.707)" })), _path159$3 || (_path159$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30c-0.5,0-1-0.2-1.4-0.6l-2.3-2.3l1.4-1.4L16,28l2.3-2.3l1.4,1.4l-2.3,2.3C17,29.8,16.5,30,16,30z" })), _path160$3 || (_path160$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.3 21.7H25.1V23.7H20.3z", transform: "rotate(-45.001 22.707 22.707)" })), _path161$3 || (_path161$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.1,19.7l-1.4-1.4L28,16l-2.3-2.3l1.4-1.4l2.3,2.3C29.8,15,30,15.5,30,16s-0.2,1-0.6,1.4L27.1,19.7z" })), _path162$3 || (_path162$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.7 6.9H23.7V11.7H21.7z", transform: "rotate(-45.001 22.707 9.293)" })), _path163$3 || (_path163$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2c-0.5,0-1,0.2-1.4,0.6l-2.3,2.3l1.4,1.4L16,4l2.3,2.3l1.4-1.4l-2.3-2.3C17,2.2,16.5,2,16,2z" })), children); }); { SoftwareResourceResource.propTypes = iconPropTypes; } var SoilMoisture = /*#__PURE__*/React__default["default"].forwardRef(function SoilMoisture(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$3 || (_path164$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5,28A5.385,5.385,0,0,1,19,22.751a5.3837,5.3837,0,0,1,.874-2.8308L23.49,14.5383a1.217,1.217,0,0,1,2.02,0L29.06,19.8154A5.4923,5.4923,0,0,1,30,22.751,5.385,5.385,0,0,1,24.5,28Zm0-11.38-2.9356,4.3672A3.3586,3.3586,0,0,0,21,22.751a3.51,3.51,0,0,0,7,0,3.4356,3.4356,0,0,0-.63-1.867Z" })), _circle23 || (_circle23 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "5", cy: "13", r: "1" })), _circle24 || (_circle24 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "19", r: "1" })), _circle25 || (_circle25 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "25", r: "1" })), _circle26 || (_circle26 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17", cy: "15", r: "1" })), _circle27 || (_circle27 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "11", r: "1" })), _circle28 || (_circle28 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "27", cy: "11", r: "1" })), _circle29 || (_circle29 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _circle30 || (_circle30 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "21", r: "1" })), _path165$3 || (_path165$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 6H30V8H2z" })), children); }); { SoilMoisture.propTypes = iconPropTypes; } var SoilMoistureField = /*#__PURE__*/React__default["default"].forwardRef(function SoilMoistureField(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$3 || (_path166$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.5 30a5.202 5.202 0 01-4.626-8.08L23.49 16.5382a1.217 1.217 0 012.02 0L29.06 21.8154A5.4921 5.4921 0 0130 24.751 5.385 5.385 0 0124.5 30zm0-11.38l-2.9356 4.3672A3.2079 3.2079 0 0024.5 28 3.3855 3.3855 0 0028 24.751a3.4354 3.4354 0 00-.63-1.867zM11 16V11h1a4.0045 4.0045 0 004-4V4H13a3.9779 3.9779 0 00-2.7468 1.1067A6.0034 6.0034 0 005 2H2V5a6.0066 6.0066 0 006 6H9v5H2v2H16V16zM13 6h1V7a2.002 2.002 0 01-2 2H11V8A2.002 2.002 0 0113 6zM8 9A4.0045 4.0045 0 014 5V4H5A4.0045 4.0045 0 019 8V9zM2 21H16V23H2zM2 26H16V28H2z" })), children); }); { SoilMoistureField.propTypes = iconPropTypes; } var SoilMoistureGlobal = /*#__PURE__*/React__default["default"].forwardRef(function SoilMoistureGlobal(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$3 || (_path167$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 30a4.7347 4.7347 0 01-4.2075-7.35l3.3687-5.1942a1 1 0 011.6779 0l3.3152 5.11A4.9753 4.9753 0 0130 25.2231 4.8979 4.8979 0 0125 30zm0-10.1629l-2.5078 3.8662A2.9264 2.9264 0 1028 25.2231a2.96 2.96 0 00-.5444-1.6028zM11 24H9A17.0192 17.0192 0 0126 7h4V9H26A15.017 15.017 0 0011 24z" })), _path168$3 || (_path168$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,24H14A12.0137,12.0137,0,0,1,26,12h4v2H26A10.0113,10.0113,0,0,0,16,24Z" })), _path169$3 || (_path169$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2A21.8625,21.8625,0,0,0,13.9993,5.5757,21.856,21.856,0,0,0,2,2V4A19.8735,19.8735,0,0,1,12.2622,6.835,22.1514,22.1514,0,0,0,9.9475,8.979,17.001,17.001,0,0,0,2,7V9a15.0142,15.0142,0,0,1,6.6191,1.5366,22.0768,22.0768,0,0,0-1.7016,2.5371A12.0319,12.0319,0,0,0,2,12v2a9.8838,9.8838,0,0,1,4.0007.8506A21.861,21.861,0,0,0,4,24H6A20.0226,20.0226,0,0,1,26,4h4V2Z" })), children); }); { SoilMoistureGlobal.propTypes = iconPropTypes; } var SoilTemperature = /*#__PURE__*/React__default["default"].forwardRef(function SoilTemperature(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle31 || (_circle31 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "5", cy: "13", r: "1" })), _circle32 || (_circle32 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "11", cy: "19", r: "1" })), _circle33 || (_circle33 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "15", cy: "25", r: "1" })), _circle34 || (_circle34 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "17", cy: "15", r: "1" })), _circle35 || (_circle35 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "13", cy: "11", r: "1" })), _circle36 || (_circle36 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "27", r: "1" })), _circle37 || (_circle37 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "3", cy: "21", r: "1" })), _path170$3 || (_path170$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 30a4.9863 4.9863 0 01-3-8.98V15a3 3 0 016 0v6.02A4.9863 4.9863 0 0125 30zm0-16a1.0011 1.0011 0 00-1 1v7.13l-.4971.2893A2.9676 2.9676 0 0022 25a3 3 0 006 0 2.9676 2.9676 0 00-1.5029-2.5811L26 22.13V15A1.0011 1.0011 0 0025 14zM2 6H30V8H2z" })), children); }); { SoilTemperature.propTypes = iconPropTypes; } var SoilTemperatureField = /*#__PURE__*/React__default["default"].forwardRef(function SoilTemperatureField(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$3 || (_path171$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 16V11h1a4.0045 4.0045 0 004-4V4H13a3.9779 3.9779 0 00-2.7468 1.1067A6.0034 6.0034 0 005 2H2V5a6.0066 6.0066 0 006 6H9v5H2v2H16V16zM13 6h1V7a2.002 2.002 0 01-2 2H11V8A2.002 2.002 0 0113 6zM8 9A4.0045 4.0045 0 014 5V4H5A4.0045 4.0045 0 019 8V9zM2 21H16V23H2zM2 26H16V28H2zM25 30a4.9863 4.9863 0 01-3-8.98V15a3 3 0 016 0v6.02A4.9863 4.9863 0 0125 30zm0-16a1.0011 1.0011 0 00-1 1v7.13l-.4971.2893A2.9676 2.9676 0 0022 25a3 3 0 006 0 2.9676 2.9676 0 00-1.5029-2.5811L26 22.13V15A1.0011 1.0011 0 0025 14z" })), children); }); { SoilTemperatureField.propTypes = iconPropTypes; } var SoilTemperatureGlobal = /*#__PURE__*/React__default["default"].forwardRef(function SoilTemperatureGlobal(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path172$3 || (_path172$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 30a4.9863 4.9863 0 01-3-8.98V15a3 3 0 016 0v6.02A4.9863 4.9863 0 0125 30zm0-16a1.0011 1.0011 0 00-1 1v7.13l-.4971.2893A2.9676 2.9676 0 0022 25a3 3 0 006 0 2.9676 2.9676 0 00-1.5029-2.5811L26 22.13V15A1.0011 1.0011 0 0025 14zM16 24H14a11.89 11.89 0 013.7642-8.7271l1.373 1.4542A9.909 9.909 0 0016 24z" })), _path173$3 || (_path173$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,24H9A17.0192,17.0192,0,0,1,26,7h4V9H26A15.017,15.017,0,0,0,11,24Z" })), _path174$3 || (_path174$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2A21.8625,21.8625,0,0,0,13.9993,5.5757,21.856,21.856,0,0,0,2,2V4A19.8735,19.8735,0,0,1,12.2622,6.835,22.1514,22.1514,0,0,0,9.9475,8.979,17.001,17.001,0,0,0,2,7V9a15.0142,15.0142,0,0,1,6.6191,1.5366,22.0768,22.0768,0,0,0-1.7016,2.5371A12.0319,12.0319,0,0,0,2,12v2a9.8838,9.8838,0,0,1,4.0007.8506A21.861,21.861,0,0,0,4,24H6A20.0226,20.0226,0,0,1,26,4h4V2Z" })), children); }); { SoilTemperatureGlobal.propTypes = iconPropTypes; } var SolarPanel = /*#__PURE__*/React__default["default"].forwardRef(function SolarPanel(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$3 || (_path175$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 26V14H13V26h5v2H2v2H30V28H25V26zm-5-2V21h3v3zm-2-3v3H20V21zm-3-2V16h3v3zm8 0H25V16h3zM18 16v3H15V16zm-3 8V21h3v3zm8 4H20V26h3zM9.3328 14.981A4 4 0 1116 12H14a2 2 0 10-3.3333 1.4907zM11 2H13V6H11zM2 11H6V13H2z" })), _path176$3 || (_path176$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.343 4.343H7.343V8.343H5.343z", transform: "rotate(-45 6.343 6.343)" })), _path177$3 || (_path177$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.657 4.343H18.657V8.343H16.657z", transform: "rotate(-135 17.657 6.343)" })), children); }); { SolarPanel.propTypes = iconPropTypes; } var SortAscending = /*#__PURE__*/React__default["default"].forwardRef(function SortAscending(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path178$3 || (_path178$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 22L19.414 20.586 23 24.172 23 4 25 4 25 24.172 28.586 20.586 30 22 24 28 18 22zM2 18H16V20H2zM6 12H16V14H6zM10 6H16V8H10z" })), children); }); { SortAscending.propTypes = iconPropTypes; } var SortDescending = /*#__PURE__*/React__default["default"].forwardRef(function SortDescending(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$3 || (_path179$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 22L19.414 20.586 23 24.172 23 4 25 4 25 24.172 28.586 20.586 30 22 24 28 18 22zM2 6H16V8H2zM6 12H16V14H6zM10 18H16V20H10z" })), children); }); { SortDescending.propTypes = iconPropTypes; } var SortRemove = /*#__PURE__*/React__default["default"].forwardRef(function SortRemove(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$3 || (_path180$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 19.415L28.586 18 25 21.587 21.414 18 20 19.415 23.586 23 20 26.586 21.414 28 25 24.414 28.586 28 30 26.586 26.414 23 30 19.415zM10 18H16V20H10zM2 6H16V8H2zM6 12H16V14H6z" })), children); }); { SortRemove.propTypes = iconPropTypes; } var SpellCheck = /*#__PURE__*/React__default["default"].forwardRef(function SpellCheck(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$3 || (_path181$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,22h2L17,10H15L10,22h2l1.24-3h5.53Zm-5.93-5,1.82-4.42h.25L18,17Z" })), _path182$3 || (_path182$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 28H6a2 2 0 01-2-2V6A2 2 0 016 4H26a2 2 0 012 2V17H26V6H6V26h6zM23 27.18L20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z" })), children); }); { SpellCheck.propTypes = iconPropTypes; } var WatsonHealthSpineLabel = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSpineLabel(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$3 || (_path183$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 11L3 13 8.59 13 2.29 19.29 3.71 20.71 10 14.41 10 20 12 20 12 11 3 11zM26 13H23V12H21v1H18a2 2 0 00-2 2v2a2 2 0 002 2h3v1h2V19h3a2 2 0 002-2V15A2 2 0 0026 13zm-8 4V15h8v2zM26 23H23V22H21v1H18a2 2 0 00-2 2v2a2 2 0 002 2h3v1h2V29h3a2 2 0 002-2V25A2 2 0 0026 23zm-8 4V25h8v2zM26 3H23V2H21V3H18a2 2 0 00-2 2V7a2 2 0 002 2h3v1h2V9h3a2 2 0 002-2V5A2 2 0 0026 3zM18 7V5h8V7z" })), children); }); { WatsonHealthSpineLabel.propTypes = iconPropTypes; } var Split = /*#__PURE__*/React__default["default"].forwardRef(function Split(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$3 || (_path184$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 20H17V24H15zM15 14H17V18H15zM15 8H17V12H15z" })), _path185$3 || (_path185$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16A12.01,12.01,0,0,0,17,4.0508V2H15V4.0508a11.99,11.99,0,0,0,0,23.8984V30h2V27.9492A12.01,12.01,0,0,0,28,16ZM16,26A10,10,0,1,1,26,16,10.0114,10.0114,0,0,1,16,26Z" })), children); }); { Split.propTypes = iconPropTypes; } var WatsonHealthSplitDiscard = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSplitDiscard(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$3 || (_path186$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,16A12.01,12.01,0,0,0,17,4.0508V2H15V4.0508a11.99,11.99,0,0,0,0,23.8984V30h2V27.9492A12.01,12.01,0,0,0,28,16ZM16,26V6a10,10,0,0,1,0,20Z" })), children); }); { WatsonHealthSplitDiscard.propTypes = iconPropTypes; } var SplitScreen = /*#__PURE__*/React__default["default"].forwardRef(function SplitScreen(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$3 || (_path187$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 4H17V28H15zM10 7V25H4V7h6m0-2H4A2 2 0 002 7V25a2 2 0 002 2h6a2 2 0 002-2V7a2 2 0 00-2-2zM28 7V25H22V7h6m0-2H22a2 2 0 00-2 2V25a2 2 0 002 2h6a2 2 0 002-2V7a2 2 0 00-2-2z" })), children); }); { SplitScreen.propTypes = iconPropTypes; } var SprayPaint = /*#__PURE__*/React__default["default"].forwardRef(function SprayPaint(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$3 || (_path188$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,23A4.5,4.5,0,1,1,27,18.5,4.505,4.505,0,0,1,22.5,23Zm0-7A2.5,2.5,0,1,0,25,18.5,2.5026,2.5026,0,0,0,22.5,16Z" })), _path189$3 || (_path189$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 8H26V3H19V8H17a2.002 2.002 0 00-2 2V28a2.0023 2.0023 0 002 2H28a2.0027 2.0027 0 002-2V10A2.0023 2.0023 0 0028 8zM21 5h3V8H21zM17 28V10H28l.002 18zM2 14H5V17H2zM7 9H10V12H7zM2 9H5V12H2zM12 4H15V7H12zM7 4H10V7H7zM2 4H5V7H2z" })), children); }); { SprayPaint.propTypes = iconPropTypes; } var Sprout = /*#__PURE__*/React__default["default"].forwardRef(function Sprout(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$3 || (_path190$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,2A11.01,11.01,0,0,0,14.7549,9.0244,6.9939,6.9939,0,0,0,9,6H6V9a7.0078,7.0078,0,0,0,7,7h1v9.0493a9.9229,9.9229,0,0,0-6.071,2.8794l1.414,1.4141a8,8,0,0,1,12.3086,1.2134l1.6616-1.1128A9.98,9.98,0,0,0,16,25.062V16h1A11.0125,11.0125,0,0,0,28,5V2ZM13,14A5.0057,5.0057,0,0,1,8,9V8H9a5.0054,5.0054,0,0,1,5,5v1ZM26,5a9.01,9.01,0,0,1-9,9H16V13a9.01,9.01,0,0,1,9-9h1Z" })), children); }); { Sprout.propTypes = iconPropTypes; } var Sql = /*#__PURE__*/React__default["default"].forwardRef(function Sql(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$3 || (_path191$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 21L24 9 22 9 22 23 30 23 30 21 24 21zM18 9H14a2 2 0 00-2 2V21a2 2 0 002 2h1v2a2 2 0 002 2h2V25H17V23h1a2 2 0 002-2V11A2 2 0 0018 9zM14 21V11h4V21zM8 23H2V21H8V17H4a2 2 0 01-2-2V11A2 2 0 014 9h6v2H4v4H8a2 2 0 012 2v4A2 2 0 018 23z" })), children); }); { Sql.propTypes = iconPropTypes; } var SquareFill = /*#__PURE__*/React__default["default"].forwardRef(function SquareFill(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$3); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path192$3 || (_path192$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H13V13H3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path193$3 || (_path193$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 3H13V13H3z" })), children); }); { SquareFill.propTypes = iconPropTypes; } var StackLimitation = /*#__PURE__*/React__default["default"].forwardRef(function StackLimitation(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$3 || (_path194$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 22H16V30H8zM24 12H20v2h4v2H21v2h3v2H20v2h4a2.0027 2.0027 0 002-2V14A2.0023 2.0023 0 0024 12zM16 20H8V12h8zm-6-2h4V14H10zM16 3.41L14.59 2 12 4.59 9.41 2 8 3.41 10.59 6 8 8.59 9.41 10 12 7.41 14.59 10 16 8.59 13.41 6 16 3.41z" })), children); }); { StackLimitation.propTypes = iconPropTypes; } var WatsonHealthStackedMove = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStackedMove(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$3 || (_path195$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,28H4a2,2,0,0,1-2-2V11A2,2,0,0,1,4,9H15a2,2,0,0,1,2,2V26A2,2,0,0,1,15,28ZM4,11V26H15V11Z" })), _path196$3 || (_path196$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,6,24.59,7.41,27,10H22V6a2,2,0,0,0-2-2H10V6H20V20h2V12h5l-2.41,2.59L26,16l5-5Z" })), children); }); { WatsonHealthStackedMove.propTypes = iconPropTypes; } var WatsonHealthStackedScrolling_1 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStackedScrolling_1(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$3 || (_path197$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,30H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H18a2,2,0,0,1,2,2V28A2,2,0,0,1,18,30ZM4,14V28H18V14Z" })), _path198$3 || (_path198$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,23H23V9H9V7H23a2,2,0,0,1,2,2Z" })), _path199$3 || (_path199$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16H28V4H16V2H28a2,2,0,0,1,2,2Z" })), children); }); { WatsonHealthStackedScrolling_1.propTypes = iconPropTypes; } var WatsonHealthStackedScrolling_2 = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStackedScrolling_2(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$3 || (_path200$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30H2a2 2 0 01-2-2V14a2 2 0 012-2H8a2 2 0 012 2V28A2 2 0 018 30zM2 14V28H8V14zM20 30H14a2 2 0 01-2-2V14a2 2 0 012-2h6a2 2 0 012 2V28A2 2 0 0120 30zM14 14V28h6V14z" })), _path201$3 || (_path201$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,21H25V9H17V7h8a2,2,0,0,1,2,2Z" })), _path202$3 || (_path202$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32,16H30V4H22V2h8a2,2,0,0,1,2,2Z" })), children); }); { WatsonHealthStackedScrolling_2.propTypes = iconPropTypes; } var Stamp = /*#__PURE__*/React__default["default"].forwardRef(function Stamp(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$3 || (_path203$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,18H20V14.8982a7.4938,7.4938,0,0,1,1.1587-3.8542,5.9751,5.9751,0,0,0-1.3735-7.7006,5.9968,5.9968,0,0,0-9.6829,3.54,5.91,5.91,0,0,0,.7478,4.175A7.2573,7.2573,0,0,1,12,14.7942V18H6a2.002,2.002,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2v2a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V26a2.0025,2.0025,0,0,0,2-2V20A2.002,2.002,0,0,0,26,18ZM12.07,7.244a3.9994,3.9994,0,1,1,7.3728,2.7731A9.76,9.76,0,0,0,18.0664,14H13.94a9.5433,9.5433,0,0,0-1.376-3.9736A3.9366,3.9366,0,0,1,12.07,7.244ZM18,16v2H14V16Zm6,12H8V26H24ZM6,24V20H26v4Z" })), children); }); { Stamp.propTypes = iconPropTypes; } var Star = /*#__PURE__*/React__default["default"].forwardRef(function Star(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$3); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path204$3 || (_path204$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,3.3l1.4,2.8l0.2,0.5l0.5,0.1l3.1,0.4L11,9.2l-0.4,0.4l0.1,0.5l0.5,3.1l-2.8-1.4L8,11.5l-0.5,0.2l-2.8,1.4l0.5-3.1 l0.1-0.5L5,9.2L2.8,7l3.1-0.4l0.5-0.1L6.6,6L8,3.3 M8,1L5.7,5.6L0.6,6.3l3.7,3.6L3.5,15L8,12.6l4.6,2.4l-0.9-5.1l3.7-3.6l-5.1-0.7 L8,1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path205$3 || (_path205$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,6.52l2.76,5.58.46,1,1,.15,6.16.89L22,18.44l-.75.73.18,1,1.05,6.13-5.51-2.89L16,23l-.93.49L9.56,26.34l1-6.13.18-1L10,18.44,5.58,14.09l6.16-.89,1-.15.46-1L16,6.52M16,2l-4.55,9.22L1.28,12.69l7.36,7.18L6.9,30,16,25.22,25.1,30,23.36,19.87l7.36-7.17L20.55,11.22Z" })), children); }); { Star.propTypes = iconPropTypes; } var StarFilled = /*#__PURE__*/React__default["default"].forwardRef(function StarFilled(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$3); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path206$3 || (_path206$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1L5.7,5.6L0.6,6.3l3.7,3.6L3.5,15L8,12.6l4.6,2.4l-0.9-5.1l3.7-3.6l-5.1-0.7L8,1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$3 || (_path207$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2l-4.55,9.22L1.28,12.69l7.36,7.18L6.9,30,16,25.22,25.1,30,23.36,19.87l7.36-7.17L20.55,11.22Z" })), children); }); { StarFilled.propTypes = iconPropTypes; } var StarHalf = /*#__PURE__*/React__default["default"].forwardRef(function StarHalf(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$2); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path208$3 || (_path208$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.7 5.6L0.6 6.3 4.3 9.9 3.5 15 8 12.6 8 1z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$3 || (_path209$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.45 11.22L1.28 12.7 8.64 19.87 6.9 30 16 25.22 16 2 11.45 11.22z" })), children); }); { StarHalf.propTypes = iconPropTypes; } var StarReview = /*#__PURE__*/React__default["default"].forwardRef(function StarReview(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path210$3 || (_path210$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 26H26V28H18zM18 22H30V24H18zM18 18H30V20H18z" })), _path211$3 || (_path211$3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.549 11.217L16 2 11.451 11.217 1.28 12.695 8.64 19.87 6.902 30 14 26.269 14 24.009 9.559 26.344 10.611 20.208 10.789 19.171 10.036 18.438 5.578 14.091 11.739 13.196 12.779 13.045 13.245 12.102 16 6.519 18.755 12.102 19.221 13.045 20.261 13.196 27.715 14.281 28 12.3 20.549 11.217z" })), children); }); { StarReview.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$2, _path2$2, _path3$2, _path4$2, _path5$2, _path6$2, _path7$2, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$2, _path15$2, _path16$2, _path17$2, _path18$2, _path19$2, _path20$2, _path21$2, _path22$2, _path23$2, _path24$2, _path25$2, _path26$2, _path27$2, _path28$2, _path29$2, _circle$2, _circle2$2, _path30$2, _path31$2, _path32$2, _path33$2, _path34$2, _path35$2, _path36$2, _path37$2, _path38$2, _path39$2, _path40$2, _path41$2, _path42$2, _path43$2, _path44$2, _path45$2, _path46$2, _path47$2, _path48$2, _path49$2, _path50$2, _path51$2, _path52$2, _path53$2, _path54$2, _path55$2, _path56$2, _path57$2, _path58$2, _path59$2, _path60$2, _path61$2, _path62$2, _path63$2, _path64$2, _path65$2, _path66$2, _path67$2, _path68$2, _path69$2, _path70$2, _path71$2, _path72$2, _path73$2, _path74$2, _path75$2, _path76$2, _path77$2, _path78$2, _path79$2, _path80$2, _path81$2, _path82$2, _path83$2, _path84$2, _path85$2, _path86$2, _path87$2, _circle3$2, _path88$2, _path89$2, _path90$2, _path91$2, _path92$2, _path93$2, _path94$2, _path95$2, _path96$2, _path97$2, _path98$2, _path99$2, _path100$2, _path101$2, _path102$2, _path103$2, _path104$2, _path105$2, _path106$2, _path107$2, _path108$2, _path109$2, _circle4$1, _path110$2, _path111$2, _path112$2, _path113$2, _path114$2, _path115$2, _path116$2, _path117$2, _path118$2, _path119$2, _path120$2, _path121$2, _path122$2, _path123$2, _path124$2, _path125$2, _path126$2, _path127$2, _circle5$1, _path128$2, _path129$2, _path130$2, _path131$2, _path132$2, _path133$2, _path134$2, _path135$2, _path136$2, _path137$2, _circle6$1, _path138$2, _path139$2, _path140$2, _path141$2, _path142$2, _path143$2, _path144$2, _circle7$1, _path145$2, _path146$2, _path147$2, _path148$2, _circle8$1, _path149$2, _path150$2, _path151$2, _path152$2, _path153$2, _path154$2, _path155$2, _path156$2, _path157$2, _path158$2, _path159$2, _path160$2, _path161$2, _path162$2, _path163$2, _path164$2, _path165$2, _path166$2, _path167$2, _rect, _path168$2, _path169$2, _path170$2, _path171$2, _circle9$1, _circle10$1, _circle11$1, _path172$2, _path173$2, _path174$2, _path175$2, _path176$2, _path177$2, _path178$2, _path179$2, _path180$2, _path181$2, _path182$2, _path183$2, _path184$2, _path185$2, _path186$2, _path187$2, _path188$2, _path189$2, _path190$2, _path191$2, _path192$2, _path193$2, _path194$2, _path195$2, _path196$2, _path197$2, _path198$2, _path199$2, _path200$2, _path201$2, _path202$2, _path203$2, _path204$2, _path205$2, _path206$2, _path207$2, _path208$2, _path209$2, _path210$2, _path211$2, _path212$2, _path213$2, _path214$2; var _excluded$7 = ["children", "size"], _excluded2$2 = ["children", "size"], _excluded3$2 = ["children", "size"], _excluded4$2 = ["children", "size"], _excluded5$2 = ["children", "size"], _excluded6$2 = ["children", "size"], _excluded7$2 = ["children", "size"], _excluded8$2 = ["children", "size"], _excluded9$2 = ["children", "size"], _excluded10$2 = ["children", "size"], _excluded11$2 = ["children", "size"], _excluded12$2 = ["children", "size"], _excluded13$2 = ["children", "size"], _excluded14$2 = ["children", "size"], _excluded15$2 = ["children", "size"], _excluded16$2 = ["children", "size"], _excluded17$2 = ["children", "size"], _excluded18$2 = ["children", "size"], _excluded19$2 = ["children", "size"], _excluded20$2 = ["children", "size"], _excluded21$2 = ["children", "size"], _excluded22$2 = ["children", "size"], _excluded23$2 = ["children", "size"], _excluded24$2 = ["children", "size"], _excluded25$2 = ["children", "size"], _excluded26$2 = ["children", "size"], _excluded27$2 = ["children", "size"], _excluded28$2 = ["children", "size"], _excluded29$2 = ["children", "size"], _excluded30$2 = ["children", "size"], _excluded31$2 = ["children", "size"], _excluded32$2 = ["children", "size"], _excluded33$2 = ["children", "size"], _excluded34$2 = ["children", "size"], _excluded35$2 = ["children", "size"], _excluded36$2 = ["children", "size"], _excluded37$2 = ["children", "size"], _excluded38$2 = ["children", "size"], _excluded39$2 = ["children", "size"], _excluded40$2 = ["children", "size"], _excluded41$2 = ["children", "size"], _excluded42$2 = ["children", "size"], _excluded43$2 = ["children", "size"], _excluded44$2 = ["children", "size"], _excluded45$2 = ["children", "size"], _excluded46$2 = ["children", "size"], _excluded47$2 = ["children", "size"], _excluded48$2 = ["children", "size"], _excluded49$2 = ["children", "size"], _excluded50$2 = ["children", "size"], _excluded51$2 = ["children", "size"], _excluded52$2 = ["children", "size"], _excluded53$2 = ["children", "size"], _excluded54$2 = ["children", "size"], _excluded55$2 = ["children", "size"], _excluded56$2 = ["children", "size"], _excluded57$2 = ["children", "size"], _excluded58$2 = ["children", "size"], _excluded59$2 = ["children", "size"], _excluded60$2 = ["children", "size"], _excluded61$2 = ["children", "size"], _excluded62$2 = ["children", "size"], _excluded63$2 = ["children", "size"], _excluded64$2 = ["children", "size"], _excluded65$2 = ["children", "size"], _excluded66$2 = ["children", "size"], _excluded67$2 = ["children", "size"], _excluded68$2 = ["children", "size"], _excluded69$2 = ["children", "size"], _excluded70$2 = ["children", "size"], _excluded71$2 = ["children", "size"], _excluded72$2 = ["children", "size"], _excluded73$2 = ["children", "size"], _excluded74$2 = ["children", "size"], _excluded75$2 = ["children", "size"], _excluded76$2 = ["children", "size"], _excluded77$2 = ["children", "size"], _excluded78$2 = ["children", "size"], _excluded79$2 = ["children", "size"], _excluded80$2 = ["children", "size"], _excluded81$2 = ["children", "size"], _excluded82$2 = ["children", "size"], _excluded83$2 = ["children", "size"], _excluded84$2 = ["children", "size"], _excluded85$2 = ["children", "size"], _excluded86$2 = ["children", "size"], _excluded87$2 = ["children", "size"], _excluded88$2 = ["children", "size"], _excluded89$2 = ["children", "size"], _excluded90$2 = ["children", "size"], _excluded91$2 = ["children", "size"], _excluded92$2 = ["children", "size"], _excluded93$2 = ["children", "size"], _excluded94$2 = ["children", "size"], _excluded95$2 = ["children", "size"], _excluded96$2 = ["children", "size"], _excluded97$2 = ["children", "size"], _excluded98$2 = ["children", "size"], _excluded99$2 = ["children", "size"], _excluded100$2 = ["children", "size"], _excluded101$2 = ["children", "size"], _excluded102$2 = ["children", "size"], _excluded103$2 = ["children", "size"], _excluded104$2 = ["children", "size"], _excluded105$2 = ["children", "size"], _excluded106$2 = ["children", "size"], _excluded107$2 = ["children", "size"], _excluded108$2 = ["children", "size"], _excluded109$2 = ["children", "size"], _excluded110$2 = ["children", "size"], _excluded111$2 = ["children", "size"], _excluded112$2 = ["children", "size"], _excluded113$2 = ["children", "size"], _excluded114$2 = ["children", "size"], _excluded115$2 = ["children", "size"], _excluded116$2 = ["children", "size"], _excluded117$2 = ["children", "size"], _excluded118$2 = ["children", "size"], _excluded119$2 = ["children", "size"], _excluded120$2 = ["children", "size"], _excluded121$2 = ["children", "size"], _excluded122$2 = ["children", "size"], _excluded123$2 = ["children", "size"], _excluded124$1 = ["children", "size"], _excluded125$1 = ["children", "size"]; var WatsonHealthStatusAcknowledge = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStatusAcknowledge(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$2 || (_path$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30a6 6 0 116-6A6.0067 6.0067 0 0124 30zm0-10a4 4 0 104 4A4.0045 4.0045 0 0024 20zM12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" })), _path2$2 || (_path2$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" })), children); }); { WatsonHealthStatusAcknowledge.propTypes = iconPropTypes; } var WatsonHealthStatusChange = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStatusChange(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3$2 || (_path3$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 30a5 5 0 115-5A5.0057 5.0057 0 017 30zm0-8a3 3 0 103 3A3.0033 3.0033 0 007 22zM23 30a5 5 0 115-5A5.0057 5.0057 0 0123 30zm0-8a3 3 0 103 3A3.0033 3.0033 0 0023 22zM24 7v7l3.5859-3.4141L29 12l-6 6-6-6 1.4141-1.4141L22 14V7a1.0009 1.0009 0 00-1-1H9A1.0006 1.0006 0 008 7V18H6V7A3.0033 3.0033 0 019 4H21A3.0033 3.0033 0 0124 7z" })), children); }); { WatsonHealthStatusChange.propTypes = iconPropTypes; } var WatsonHealthStatusPartialFail = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStatusPartialFail(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$2 || (_path4$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.1407 23.7642l1.5315 1.2851a13.976 13.976 0 002.4408-4.1821l-1.8776-.6836A11.9729 11.9729 0 0125.1407 23.7642zM18 27.81l.4128 1.9677A13.8888 13.8888 0 0022.9543 28.14L22 26.4087A12.52 12.52 0 0118 27.81zM10 26.4087L9 28.14a14.14 14.14 0 004.5872 1.6382l.3469-1.9677A12.1519 12.1519 0 0110 26.4087zM4.7646 20.1836l-1.8776.6836a13.976 13.976 0 002.4408 4.1821l1.5315-1.2851A11.9729 11.9729 0 014.7646 20.1836zM16 22a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 22zM15 8H17V19H15z" })), _path5$2 || (_path5$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16H28A12,12,0,0,0,4,16H2a14,14,0,0,1,28,0Z" })), children); }); { WatsonHealthStatusPartialFail.propTypes = iconPropTypes; } var WatsonHealthStatusResolved = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStatusResolved(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$2 || (_path6$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 28.414L16 23.413 17.413 22 21 25.586 28.585 18 30 19.415 21 28.414zM12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" })), _path7$2 || (_path7$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.8193,25.8022a11.992,11.992,0,1,1,13.9829-9.6215l-1.9668-.3614A10.001,10.001,0,1,0,12.1807,23.835Z" })), children); }); { WatsonHealthStatusResolved.propTypes = iconPropTypes; } var StayInside = /*#__PURE__*/React__default["default"].forwardRef(function StayInside(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$2 || (_path8$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 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 11z" })), _path9$2 || (_path9$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,30H28V14.4639L16,4.31,4,14.4639V30H2V14a1,1,0,0,1,.354-.7634l13-11a1,1,0,0,1,1.292,0l13,11A1,1,0,0,1,30,14Z" })), children); }); { StayInside.propTypes = iconPropTypes; } var StemLeafPlot = /*#__PURE__*/React__default["default"].forwardRef(function StemLeafPlot(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$2 || (_path10$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 10a3 3 0 113-3A3.0033 3.0033 0 0119 10zm0-4a1 1 0 101 1A1.0011 1.0011 0 0019 6zM19 19a3 3 0 113-3A3.0033 3.0033 0 0119 19zm0-4a1 1 0 101 1A1.0011 1.0011 0 0019 15zM27 19a3 3 0 113-3A3.0033 3.0033 0 0127 19zm0-4a1 1 0 101 1A1.0011 1.0011 0 0027 15zM19 28a3 3 0 113-3A3.0033 3.0033 0 0119 28zm0-4a1 1 0 101 1A1.0011 1.0011 0 0019 24zM12 2H14V30H12zM7 28a3 3 0 113-3A3.0033 3.0033 0 017 28zm0-4a1 1 0 101 1A1.0011 1.0011 0 007 24zM7 19a3 3 0 113-3A3.0033 3.0033 0 017 19zm0-4a1 1 0 101 1A1.0011 1.0011 0 007 15zM7 10a3 3 0 113-3A3.0033 3.0033 0 017 10zM7 6A1 1 0 108 7 1.0011 1.0011 0 007 6z" })), children); }); { StemLeafPlot.propTypes = iconPropTypes; } var Stethoscope = /*#__PURE__*/React__default["default"].forwardRef(function Stethoscope(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11$2 || (_path11$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,2V4h2v6a4,4,0,0,1-8,0V4h2V2H16v8a6.0051,6.0051,0,0,0,5,5.91V22A6,6,0,0,1,9,22V15.8579a4,4,0,1,0-2,0V22a8,8,0,0,0,16,0V15.91A6.0051,6.0051,0,0,0,28,10V2ZM6,12a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,6,12Z" })), children); }); { Stethoscope.propTypes = iconPropTypes; } var Stop = /*#__PURE__*/React__default["default"].forwardRef(function Stop(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$2); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path12$2 || (_path12$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,4v8H4V4H12 M12,3H4C3.4,3,3,3.4,3,4v8c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1V4C13,3.4,12.6,3,12,3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13$2 || (_path13$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,8V24H8V8H24m0-2H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z" })), children); }); { Stop.propTypes = iconPropTypes; } var StopFilled = /*#__PURE__*/React__default["default"].forwardRef(function StopFilled(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$2); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path14$2 || (_path14$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11,10c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1V6c0-0.6,0.4-1,1-1h4 c0.6,0,1,0.4,1,1V10z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$2 || (_path15$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm6,18a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V12a2,2,0,0,1,2-2h8a2,2,0,0,1,2,2Z" })), children); }); { StopFilled.propTypes = iconPropTypes; } var StopFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function StopFilledAlt(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path16$2 || (_path16$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,6H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z" })), children); }); { StopFilledAlt.propTypes = iconPropTypes; } var StopOutline = /*#__PURE__*/React__default["default"].forwardRef(function StopOutline(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$2); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path17$2 || (_path17$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z" })), _path18$2 || (_path18$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,6v4H6V6H10 M10,5H6C5.4,5,5,5.4,5,6v4c0,0.6,0.4,1,1,1h4c0.6,0,1-0.4,1-1V6C11,5.4,10.6,5,10,5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$2 || (_path19$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z" })), _path20$2 || (_path20$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,12v8H12V12h8m0-2H12a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2h8a2,2,0,0,0,2-2V12a2,2,0,0,0-2-2Z" })), children); }); { StopOutline.propTypes = iconPropTypes; } var StopOutlineFilled = /*#__PURE__*/React__default["default"].forwardRef(function StopOutlineFilled(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$2); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path21$2 || (_path21$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11,10c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1V6c0-0.6,0.4-1,1-1h4 c0.6,0,1,0.4,1,1V10z" })), _path22$2 || (_path22$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H10V10H6z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$2 || (_path23$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm6,18a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V12a2,2,0,0,1,2-2h8a2,2,0,0,1,2,2Z" })), _path24$2 || (_path24$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 12H20V20H12z" })), children); }); { StopOutlineFilled.propTypes = iconPropTypes; } var StopSign = /*#__PURE__*/React__default["default"].forwardRef(function StopSign(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$2 || (_path25$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.5857,29H11.4143A1.9865,1.9865,0,0,1,10,28.4141L3.5859,22A1.9865,1.9865,0,0,1,3,20.5857V11.4143A1.9865,1.9865,0,0,1,3.5859,10L10,3.5859A1.9865,1.9865,0,0,1,11.4143,3h9.1714A1.9865,1.9865,0,0,1,22,3.5859L28.4141,10A1.9865,1.9865,0,0,1,29,11.4143v9.1714A1.9865,1.9865,0,0,1,28.4141,22L22,28.4141A1.9865,1.9865,0,0,1,20.5857,29ZM11.4141,5,5,11.4141v9.1716L11.4141,27h9.1716L27,20.5859V11.4143L20.5859,5H11.4141Z" })), children); }); { StopSign.propTypes = iconPropTypes; } var StopSignFilled = /*#__PURE__*/React__default["default"].forwardRef(function StopSignFilled(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26$2 || (_path26$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.5857,29H11.4143A1.9865,1.9865,0,0,1,10,28.4141L3.5859,22A1.9865,1.9865,0,0,1,3,20.5857V11.4143A1.9865,1.9865,0,0,1,3.5859,10L10,3.5859A1.9865,1.9865,0,0,1,11.4143,3h9.1714A1.9865,1.9865,0,0,1,22,3.5859L28.4141,10A1.9865,1.9865,0,0,1,29,11.4143v9.1714A1.9865,1.9865,0,0,1,28.4141,22L22,28.4141A1.9865,1.9865,0,0,1,20.5857,29Z" })), children); }); { StopSignFilled.propTypes = iconPropTypes; } var StoragePool = /*#__PURE__*/React__default["default"].forwardRef(function StoragePool(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$2 || (_path27$2 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path28$2 || (_path28$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.5 13A3.5 3.5 0 1121 9.5 3.5041 3.5041 0 0117.5 13zm0-5A1.5 1.5 0 1019 9.5 1.5017 1.5017 0 0017.5 8zM14.5 26A3.5 3.5 0 1118 22.5 3.5041 3.5041 0 0114.5 26zm0-5A1.5 1.5 0 1016 22.5 1.5017 1.5017 0 0014.5 21zM9.5 18A3.5 3.5 0 1113 14.5 3.5041 3.5041 0 019.5 18zm0-5A1.5 1.5 0 1011 14.5 1.5017 1.5017 0 009.5 13zM22.5 21A3.5 3.5 0 1126 17.5 3.5041 3.5041 0 0122.5 21zm0-5A1.5 1.5 0 1024 17.5 1.5017 1.5017 0 0022.5 16z" })), children); }); { StoragePool.propTypes = iconPropTypes; } var StorageRequest = /*#__PURE__*/React__default["default"].forwardRef(function StorageRequest(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29$2 || (_path29$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 21H2v3a2.0059 2.0059 0 002 2H7V24H4zM4 8H7V6H4A2.0059 2.0059 0 002 8v3H4zM17 6H23V8H17zM9 6H15V8H9zM17 24H23V26H17zM28 15L4 15 4 13 2 13 2 19 4 19 4 17 28 17 28 19 30 19 30 13 28 13 28 15zM28 24H25v2h3a2.0059 2.0059 0 002-2V21H28zM28 6H25V8h3v3h2V8A2.0059 2.0059 0 0028 6zM9 24H15V26H9z" })), _circle$2 || (_circle$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "12", r: "1" })), _circle2$2 || (_circle2$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "7", cy: "20", r: "1" })), children); }); { StorageRequest.propTypes = iconPropTypes; } var Store = /*#__PURE__*/React__default["default"].forwardRef(function Store(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path30$2 || (_path30$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,10.68l-2-6A1,1,0,0,0,27,4H5a1,1,0,0,0-1,.68l-2,6A1.19,1.19,0,0,0,2,11v6a1,1,0,0,0,1,1H4V28H6V18h6V28H28V18h1a1,1,0,0,0,1-1V11A1.19,1.19,0,0,0,30,10.68ZM26,26H14V18H26Zm2-10H24V12H22v4H17V12H15v4H10V12H8v4H4V11.16L5.72,6H26.28L28,11.16Z" })), children); }); { Store.propTypes = iconPropTypes; } var StormTracker = /*#__PURE__*/React__default["default"].forwardRef(function StormTracker(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31$2 || (_path31$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2a1,1,0,0,0-.9736.771l-1.7229,7.3223a10.0653,10.0653,0,1,0,8.6032,8.603l7.3223-1.7227A1,1,0,0,0,30,16,14.0158,14.0158,0,0,0,16,2ZM11.293,20.707A1,1,0,0,0,12,21a1.013,1.013,0,0,0,.229-.0264l3.7622-.8852a3.996,3.996,0,1,1-4.08-4.08l-.8852,3.7622A1,1,0,0,0,11.293,20.707Zm2.05-2.0508,2.271-9.65a7.5018,7.5018,0,0,1,7.38,7.38ZM20,20a8,8,0,1,1-8-8,8.1017,8.1017,0,0,1,.8438.0469L12.38,14.019C12.2532,14.0107,12.127,14,12,14a6,6,0,1,0,6,6c0-.127-.011-.2534-.019-.38l1.9721-.4643A8.1048,8.1048,0,0,1,20,20Zm4.9707-4.0791a9.4981,9.4981,0,0,0-8.8914-8.8916l.7068-3.0039A12.0193,12.0193,0,0,1,27.9746,15.2139Z" })), children); }); { StormTracker.propTypes = iconPropTypes; } var Strawberry = /*#__PURE__*/React__default["default"].forwardRef(function Strawberry(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32$2 || (_path32$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 10H11V12H9zM9 14H11V16H9zM13 12H15V14H13z" })), _path33$2 || (_path33$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 28a5.169 5.169 0 01-.7441-.054A5.0935 5.0935 0 014 22.8669V11.1985a7.1615 7.1615 0 016.31-7.1653 6.9607 6.9607 0 014.4643 1.0706l7.9688 4.9807a6.98 6.98 0 01-.6885 12.19l-10.88 5.2285A4.9765 4.9765 0 019 28zM11.002 6q-.2484 0-.5005.0241A5.1463 5.1463 0 006 11.1985V22.8669a3.0839 3.0839 0 002.5435 3.1 3.0266 3.0266 0 001.7622-.2649l10.8828-5.23a4.9807 4.9807 0 00.4887-8.6958L13.7046 6.7935A4.9687 4.9687 0 0011.002 6zM26 7H22a4.0045 4.0045 0 01-4-4V2h2V3a2.0021 2.0021 0 002 2h4z" })), children); }); { Strawberry.propTypes = iconPropTypes; } var WatsonHealthStressBreathEditor = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStressBreathEditor(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$2 || (_path34$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 4a5 5 0 11-5 5 5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0020 2zM30 30H28V25a5 5 0 00-5-5H17a5 5 0 00-5 5v5H10V25a7 7 0 017-7h6a7 7 0 017 7zM11 8H5A3 3 0 012 5V3H4V5A1 1 0 005 6h6zM4 15H2V13a3 3 0 013-3h6v2H5a1 1 0 00-1 1z" })), children); }); { WatsonHealthStressBreathEditor.propTypes = iconPropTypes; } var StringInteger = /*#__PURE__*/React__default["default"].forwardRef(function StringInteger(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path35$2 || (_path35$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 12H22v2h4v2H23v2h3v2H22v2h4a2.0027 2.0027 0 002-2V14A2.0023 2.0023 0 0026 12zM19 22H13V18a2.002 2.002 0 012-2h2V14H13V12h4a2.0023 2.0023 0 012 2v2a2.0023 2.0023 0 01-2 2H15v2h4zM8 20L8 12 6 12 6 13 4 13 4 15 6 15 6 20 4 20 4 22 10 22 10 20 8 20z" })), children); }); { StringInteger.propTypes = iconPropTypes; } var StringText = /*#__PURE__*/React__default["default"].forwardRef(function StringText(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$2 || (_path36$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 22H24a2.0027 2.0027 0 01-2-2V14a2.0023 2.0023 0 012-2h5v2H24v6h5zM18 12H14V8H12V22h6a2.0027 2.0027 0 002-2V14A2.0023 2.0023 0 0018 12zm-4 8V14h4v6zM8 12H3v2H8v2H4a2 2 0 00-2 2v2a2 2 0 002 2h6V14A2.0023 2.0023 0 008 12zm0 8H4V18H8z" })), children); }); { StringText.propTypes = iconPropTypes; } var WatsonHealthStudyNext = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyNext(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path37$2 || (_path37$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.93 21L30 15 23.93 9 22.5 10.41 27.14 15 22.5 19.59 23.93 21zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2zM22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7z" })), children); }); { WatsonHealthStudyNext.propTypes = iconPropTypes; } var WatsonHealthStudyPrevious = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyPrevious(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path38$2 || (_path38$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.07 21L2 15 8.07 9 9.5 10.41 4.86 15 9.5 19.59 8.07 21zM20 4a5 5 0 11-5 5 5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0020 2zM30 30H28V25a5 5 0 00-5-5H17a5 5 0 00-5 5v5H10V25a7 7 0 017-7h6a7 7 0 017 7z" })), children); }); { WatsonHealthStudyPrevious.propTypes = iconPropTypes; } var WatsonHealthStudyRead = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyRead(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$2 || (_path39$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 29.414L16 24.413 17.413 23 21 26.586 28.585 19 30 20.415 21 29.414zM20 14L20 12 15 12 15 10 18 10 18 8 15 8 15 6 13 6 13 8 10 8 10 10 13 10 13 12 8 12 8 14 13 14 13 16 8 16 8 18 13 18 13 20 10 20 10 22 15 22 15 18 18 18 18 16 15 16 15 14 20 14z" })), _path40$2 || (_path40$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,24H4V4H24V16h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2h9Z" })), children); }); { WatsonHealthStudyRead.propTypes = iconPropTypes; } var WatsonHealthStudySkip = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudySkip(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41$2 || (_path41$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,9h5.2A11,11,0,0,0,7,15H5A13,13,0,0,1,28,6.7V3h2v8H22Z" })), _path42$2 || (_path42$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 12a3 3 0 11-3 3 2.95 2.95 0 013-3m0-2a5 5 0 105 5A5 5 0 0016 10zM23 30H21V27a3 3 0 00-3-3H14a3 3 0 00-3 3v3H9V27a5 5 0 015-5h4a5 5 0 015 5z" })), children); }); { WatsonHealthStudySkip.propTypes = iconPropTypes; } var WatsonHealthStudyTransfer = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyTransfer(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$2 || (_path43$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.586 19.414L13.165 24 8.586 28.586 10 30 16 24 10 18 8.586 19.414z" })), _path44$2 || (_path44$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.586 19.414L7.165 24 2.586 28.586 4 30 10 24 4 18 2.586 19.414zM12 14L12 12 17 12 17 10 14 10 14 8 17 8 17 6 19 6 19 8 22 8 22 10 19 10 19 12 24 12 24 14 19 14 19 16 24 16 24 18 19 18 19 20 22 20 22 22 17 22 17 18 14 18 14 16 17 16 17 14 12 14z" })), _path45$2 || (_path45$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,24h9V4H8V16H6V4A2,2,0,0,1,8,2H28a2,2,0,0,1,2,2V24a2,2,0,0,1-2,2H19Z" })), children); }); { WatsonHealthStudyTransfer.propTypes = iconPropTypes; } var WatsonHealthStudyUnread = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyUnread(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path46$2 || (_path46$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 30a6 6 0 116-6A6.0067 6.0067 0 0124 30zm0-10a4 4 0 104 4A4.0045 4.0045 0 0024 20zM20 14L20 12 15 12 15 10 18 10 18 8 15 8 15 6 13 6 13 8 10 8 10 10 13 10 13 12 8 12 8 14 13 14 13 16 8 16 8 18 13 18 13 20 10 20 10 22 17 22 17 20 15 20 15 18 18 18 18 16 15 16 15 14 20 14z" })), _path47$2 || (_path47$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,24H4V4H24V15h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H15Z" })), children); }); { WatsonHealthStudyUnread.propTypes = iconPropTypes; } var WatsonHealthStudyView = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthStudyView(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48$2 || (_path48$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 20H25V18h3V4H14V7H12V4a2.002 2.002 0 012-2H28a2.0023 2.0023 0 012 2V18A2.0027 2.0027 0 0128 20zM17 22L17 20 13 20 13 18 16 18 16 16 13 16 13 14 11 14 11 16 8 16 8 18 11 18 11 20 7 20 7 22 11 22 11 24 8 24 8 26 16 26 16 24 13 24 13 22 17 22z" })), _path49$2 || (_path49$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,30H4a2.0021,2.0021,0,0,1-2-2V12a2.0021,2.0021,0,0,1,2-2H20a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,20,30ZM4,12V28H20V12Z" })), children); }); { WatsonHealthStudyView.propTypes = iconPropTypes; } var WatsonHealthSubVolume = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthSubVolume(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path50$2 || (_path50$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4741,19.12,23.6807,16l5.7934-3.12a1,1,0,0,0,0-1.7607l-13-7a.9982.9982,0,0,0-.9482,0l-13,7a1,1,0,0,0,0,1.7607L8.3193,16,2.5259,19.12a1,1,0,0,0,0,1.7607l13,7a.9995.9995,0,0,0,.9482,0l13-7a1,1,0,0,0,0-1.7607ZM16,6.1359,26.8906,12,16,17.8643,5.1094,12Zm0,19.7284L5.1094,20l5.3193-2.8642L15.5259,19.88a.9995.9995,0,0,0,.9482,0l5.0972-2.7446L26.8906,20Z" })), children); }); { WatsonHealthSubVolume.propTypes = iconPropTypes; } var Subflow = /*#__PURE__*/React__default["default"].forwardRef(function Subflow(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path51$2 || (_path51$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12.0025,12.0025,0,0,0,22.4609,26.1143l1.0782,1.684A13.9511,13.9511,0,0,1,16,30Z" })), _path52$2 || (_path52$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,17l-1.4141,1.4141L26.1719,20H15.8157a2.9874,2.9874,0,0,0-.2742-.5762l4.481-5.601A2.9676,2.9676,0,0,0,21,14a3,3,0,1,0-2.8157-4H13.8157a2.982,2.982,0,0,0-5.6314,0H2v2H8.1843a2.982,2.982,0,0,0,5.6314,0h4.3686a2.9874,2.9874,0,0,0,.2742.5762l-4.481,5.601A2.9676,2.9676,0,0,0,13,18a3,3,0,1,0,2.8157,4H26.1719l-1.586,1.5859L26,25l4-4Zm-5-7a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,10ZM11,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,12Zm2,10a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,13,22Z" })), _path53$2 || (_path53$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16H28A12.0025,12.0025,0,0,0,9.5391,5.8857L8.4609,4.2017A14.0019,14.0019,0,0,1,30,16Z" })), children); }); { Subflow.propTypes = iconPropTypes; } var SubflowLocal = /*#__PURE__*/React__default["default"].forwardRef(function SubflowLocal(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$2 || (_path54$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.3472 29.9851a13.9282 13.9282 0 01-4.2051-.8516l.6943-1.8754a11.929 11.929 0 003.6026.729zm4.2651-.4558l-.5146-1.9326a11.915 11.915 0 003.3632-1.4827l1.0782 1.6846A13.915 13.915 0 0119.6123 29.5293zM7.395 27.0439a14.0632 14.0632 0 01-2.94-3.1218l1.6484-1.1333a12.0521 12.0521 0 002.522 2.6785zM2.5967 20.0544A14.0512 14.0512 0 012.0005 16H4a12.0412 12.0412 0 00.5117 3.4763zM26 17l-1.4141 1.4141L26.1719 20H15.8157a2.9874 2.9874 0 00-.2742-.5762l4.481-5.601A2.9676 2.9676 0 0021 14a3 3 0 10-2.8157-4H13.8157a2.982 2.982 0 00-5.6314 0H2v2H8.1843a2.982 2.982 0 005.6314 0h4.3686a2.9874 2.9874 0 00.2742.5762l-4.481 5.601A2.9676 2.9676 0 0013 18a3 3 0 102.8157 4H26.1719l-1.586 1.5859L26 25l4-4zm-5-7a1 1 0 11-1 1A1.0009 1.0009 0 0121 10zM11 12a1 1 0 111-1A1.0009 1.0009 0 0111 12zm2 10a1 1 0 111-1A1.0009 1.0009 0 0113 22zM28 16a12.0412 12.0412 0 00-.5117-3.4763l1.915-.5781A14.0551 14.0551 0 0130 16zM25.8965 9.2112a12.0521 12.0521 0 00-2.522-2.6785l1.23-1.5766a14.0632 14.0632 0 012.94 3.1218zM9.5391 5.886L8.4609 4.2014a13.915 13.915 0 013.9268-1.7307l.5146 1.9326A11.915 11.915 0 009.5391 5.886zM20.1636 4.7419a11.929 11.929 0 00-3.6026-.729l.0918-1.998a13.9282 13.9282 0 014.2051.8516z" })), children); }); { SubflowLocal.propTypes = iconPropTypes; } var SubnetAclRules = /*#__PURE__*/React__default["default"].forwardRef(function SubnetAclRules(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$2 || (_path55$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 14H30V16H18zM18 19H26V21H18zM18 9H30V11H18z" })), _path56$2 || (_path56$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,24v4H6V16h8V14H10V8a4.0008,4.0008,0,0,1,7.6675-1.6L19.5005,5.6A6.001,6.001,0,0,0,8,8v6H6a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V24Z" })), children); }); { SubnetAclRules.propTypes = iconPropTypes; } var Subtract = /*#__PURE__*/React__default["default"].forwardRef(function Subtract(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57$2 || (_path57$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 15H24V17H8z" })), children); }); { Subtract.propTypes = iconPropTypes; } var SubtractAlt = /*#__PURE__*/React__default["default"].forwardRef(function SubtractAlt(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$2 || (_path58$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,4c6.6,0,12,5.4,12,12s-5.4,12-12,12S4,22.6,4,16S9.4,4,16,4 M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14 S23.7,2,16,2z" })), _path59$2 || (_path59$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 15H24V17H8z" })), children); }); { SubtractAlt.propTypes = iconPropTypes; } var SummaryKpi = /*#__PURE__*/React__default["default"].forwardRef(function SummaryKpi(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$2 || (_path60$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.6667 27.5027L2 22.4484l1.3311-1.4927 5.6411 5.0316 7.6906-7.4449a1.9282 1.9282 0 012.6736-.0084L22.96 21.9983l5.5791-5.9735L30 17.3905l-5.5812 5.9758a1.996 1.996 0 01-2.8379.08l-3.5765-3.4191-7.666 7.4206A1.9629 1.9629 0 017.6667 27.5027zM30 11L26 11 28 8 30 11zM22 4H18V6h4V8H19v2h3v2H18v2h4a2.0027 2.0027 0 002-2V6A2.0023 2.0023 0 0022 4zM16 14H10V10a2.002 2.002 0 012-2h2V6H10V4h4a2.0023 2.0023 0 012 2V8a2.0023 2.0023 0 01-2 2H12v2h4zM6 12L6 4 4 4 4 5 2 5 2 7 4 7 4 12 2 12 2 14 8 14 8 12 6 12z" })), children); }); { SummaryKpi.propTypes = iconPropTypes; } var Sun = /*#__PURE__*/React__default["default"].forwardRef(function Sun(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$2 || (_path61$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z", transform: "translate(0 .005)" })), _path62$2 || (_path62$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 5.375H8.854V10.333H6.854z", transform: "rotate(-45 7.86 7.856)" })), _path63$2 || (_path63$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 15.005H7V17.005000000000003H2z" })), _path64$2 || (_path64$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.375 23.147H10.333V25.147H5.375z", transform: "rotate(-45 7.86 24.149)" })), _path65$2 || (_path65$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 25.005H17V30.005H15z" })), _path66$2 || (_path66$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.147 21.668H25.147V26.625999999999998H23.147z", transform: "rotate(-45 24.152 24.149)" })), _path67$2 || (_path67$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 15.005H30V17.005000000000003H25z" })), _path68$2 || (_path68$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 6.854H26.625999999999998V8.854H21.668z", transform: "rotate(-45 24.152 7.856)" })), _path69$2 || (_path69$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2.005H17V7.005H15z" })), children); }); { Sun.propTypes = iconPropTypes; } var Sunrise = /*#__PURE__*/React__default["default"].forwardRef(function Sunrise(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$2 || (_path70$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 27H29.998V29H2zM16 20a4.0045 4.0045 0 014 4h2a6 6 0 00-12 0h2A4.0045 4.0045 0 0116 20zM25 22H30V24H25z" })), _path71$2 || (_path71$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 14.854H26.625999999999998V16.854H21.668z", transform: "rotate(-45 24.146 15.854)" })), _path72$2 || (_path72$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 4L11 9 12.41 10.41 15 7.83 15 8 15 15 17 15 17 8 17 7.83 19.59 10.41 21 9 16 4z" })), _path73$2 || (_path73$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 13.374H8.854V18.332H6.854z", transform: "rotate(-45 7.854 15.854)" })), _path74$2 || (_path74$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 22H7V24H2z" })), children); }); { Sunrise.propTypes = iconPropTypes; } var Sunset = /*#__PURE__*/React__default["default"].forwardRef(function Sunset(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$2 || (_path75$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 27.005H29.998V29.005H2z" })), _path76$2 || (_path76$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,20a4.0045,4.0045,0,0,1,4,4h2a6,6,0,0,0-12,0h2A4.0045,4.0045,0,0,1,16,20Z", transform: "translate(0 .005)" })), _path77$2 || (_path77$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 22.005H30V24.005H25z" })), _path78$2 || (_path78$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 14.854H26.625999999999998V16.854H21.668z", transform: "rotate(-45 24.152 15.856)" })), _path79$2 || (_path79$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.59 9.595L17 12.175 17 4.005 15 4.005 15 12.175 12.41 9.595 11 11.005 16 16.005 21 11.005 19.59 9.595z" })), _path80$2 || (_path80$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 13.374H8.854V18.332H6.854z", transform: "rotate(-45 7.86 15.856)" })), _path81$2 || (_path81$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 22.005H7V24.005H2z" })), children); }); { Sunset.propTypes = iconPropTypes; } var Svg$1 = /*#__PURE__*/React__default["default"].forwardRef(function Svg(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$2 || (_path82$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 23H24a2 2 0 01-2-2V11a2 2 0 012-2h6v2H24V21h4V17H26V15h4zM18 9L16 22 14 9 12 9 14.52 23 17.48 23 20 9 18 9zM8 23H2V21H8V17H4a2 2 0 01-2-2V11A2 2 0 014 9h6v2H4v4H8a2 2 0 012 2v4A2 2 0 018 23z" })), children); }); { Svg$1.propTypes = iconPropTypes; } var Swim = /*#__PURE__*/React__default["default"].forwardRef(function Swim(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$2 || (_path83$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 26H28a4.9316 4.9316 0 01-4-1.9873 5.0192 5.0192 0 01-8 0 5.0192 5.0192 0 01-8 0A4.9316 4.9316 0 014 26H2V24H4a3.44 3.44 0 003.0532-2.3215A.9712.9712 0 018 21a1.0069 1.0069 0 01.9487.6838A3.4381 3.4381 0 0012 24a3.44 3.44 0 003.0532-2.3215A.99.99 0 0116 21a1.0069 1.0069 0 01.9487.6838A3.4381 3.4381 0 0020 24a3.44 3.44 0 003.0532-2.3215 1 1 0 011.8955.0053A3.4381 3.4381 0 0028 24h2zM23 17.5859l-8.707-8.707A2.9791 2.9791 0 0012.1714 8H4v2h8.1714a.9933.9933 0 01.7075.293L15.5859 13 10 18.5859 11.4141 20 17 14.4141 21.5859 19zM20 10a4 4 0 114 4A4.0042 4.0042 0 0120 10zm2 0a2 2 0 102-2A2.0023 2.0023 0 0022 10z" })), children); }); { Swim.propTypes = iconPropTypes; } var SwitchLayer_2 = /*#__PURE__*/React__default["default"].forwardRef(function SwitchLayer_2(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$2 || (_path84$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 26L16 24 5.83 24 8.41 21.41 7 20 2 25 7 30 8.41 28.59 5.83 26 16 26zM16 14L16 12 5.83 12 8.41 9.41 7 8 2 13 7 18 8.41 16.59 5.83 14 16 14zM16 6L16 8 26.17 8 23.59 10.59 25 12 30 7 25 2 23.59 3.41 26.17 6 16 6zM16 18L16 20 26.17 20 23.59 22.59 25 24 30 19 25 14 23.59 15.41 26.17 18 16 18z" })), children); }); { SwitchLayer_2.propTypes = iconPropTypes; } var SwitchLayer_3 = /*#__PURE__*/React__default["default"].forwardRef(function SwitchLayer_3(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path85$2 || (_path85$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 4L22 6 24.586 6 19.586 11 21 12.414 26 7.414 26 10 28 10 28 4 22 4zM10 4L10 6 7.414 6 12.414 11 11 12.414 6 7.414 6 10 4 10 4 4 10 4zM20 5L16 1 12 5 13.414 6.414 15 4.829 15 11 17 11 17 4.829 18.586 6.414 20 5zM22 28L22 26 24.586 26 19.586 21 21 19.586 26 24.586 26 22 28 22 28 28 22 28zM10 28L10 26 7.414 26 12.414 21 11 19.586 6 24.586 6 22 4 22 4 28 10 28zM20 27L16 31 12 27 13.414 25.586 15 27.171 15 21 17 21 17 27.171 18.586 25.586 20 27zM5 12L1 16 5 20 6.414 18.586 4.829 17 11 17 11 15 4.829 15 6.414 13.414 5 12zM27 12L31 16 27 20 25.586 18.586 27.171 17 21 17 21 15 27.171 15 25.586 13.414 27 12z" })), children); }); { SwitchLayer_3.propTypes = iconPropTypes; } var Switcher = /*#__PURE__*/React__default["default"].forwardRef(function Switcher(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path86$2 || (_path86$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 4H18V8H14zM4 4H8V8H4zM24 4H28V8H24zM14 14H18V18H14zM4 14H8V18H4zM24 14H28V18H24zM14 24H18V28H14zM4 24H8V28H4zM24 24H28V28H24z" })), children); }); { Switcher.propTypes = iconPropTypes; } var SysProvision = /*#__PURE__*/React__default["default"].forwardRef(function SysProvision(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$2 || (_path87$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 20L21 30 30 25 21 20z" })), _circle3$2 || (_circle3$2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "14", cy: "14", r: "2" })), _path88$2 || (_path88$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,20a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,14,20Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,14,10Z" })), _path89$2 || (_path89$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.9512,12.91l-.0064,0A12.05,12.05,0,1,0,17,25.605V23.5386a9.9813,9.9813,0,1,1,6.6235-6.81l1.9248.544A12.0341,12.0341,0,0,0,26,14Q26,13.4492,25.9512,12.91Z" })), children); }); { SysProvision.propTypes = iconPropTypes; } var QT = /*#__PURE__*/React__default["default"].forwardRef(function QT(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$2 || (_path90$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 11L15 11 15 23 17 23 17 11 20 11 20 9 12 9 12 11z" })), children); }); { QT.propTypes = iconPropTypes; } var QTAlt = /*#__PURE__*/React__default["default"].forwardRef(function QTAlt(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$2 || (_path91$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 11L11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11zM24 9L22 9 22 7 20 7 20 9 18 9 18 11 20 11 20 17 21 18 22 17 22 11 24 11 24 9z" })), children); }); { QTAlt.propTypes = iconPropTypes; } var Table$2 = /*#__PURE__*/React__default["default"].forwardRef(function Table(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92$2 || (_path92$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2ZM27,5V9H5V5Zm0,22H5V23H27Zm0-6H5V17H27Zm0-6H5V11H27Z" })), children); }); { Table$2.propTypes = iconPropTypes; } var TableAlias = /*#__PURE__*/React__default["default"].forwardRef(function TableAlias(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$2 || (_path93$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,29H5a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h7a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,12,29ZM5,20v7h7V20Z" })), _path94$2 || (_path94$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" })), children); }); { TableAlias.propTypes = iconPropTypes; } var TableBuilt = /*#__PURE__*/React__default["default"].forwardRef(function TableBuilt(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path95$2 || (_path95$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H24V4a2.0025,2.0025,0,0,0-2-2H4A2.0025,2.0025,0,0,0,2,4V22a2.0025,2.0025,0,0,0,2,2H8v4a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V10A2.0025,2.0025,0,0,0,28,8ZM22,22H14V17h8Zm0-7H14V10h8ZM12,15H4V10h8ZM22,4V8H4V4ZM4,22V17h8v5Zm24,6H10V24H22a2.0025,2.0025,0,0,0,2-2V10h4Z" })), children); }); { TableBuilt.propTypes = iconPropTypes; } var TableShortcut = /*#__PURE__*/React__default["default"].forwardRef(function TableShortcut(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$2 || (_path96$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 18L5 20 10.586 20 3 27.586 4.414 29 12 21.414 12 27 14 27 14 18 5 18z" })), _path97$2 || (_path97$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2,2,0,0,0,3,5V15H5V11H15v4h2V11H27v7H17v2H27v7H17v2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,6H5V5H27Z" })), children); }); { TableShortcut.propTypes = iconPropTypes; } var TableSplit = /*#__PURE__*/React__default["default"].forwardRef(function TableSplit(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path98$2 || (_path98$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3Zm0,2V9H5V5ZM17,11H27v7H17Zm-2,7H5V11H15ZM5,20H15v7H5Zm12,7V20H27v7Z" })), children); }); { TableSplit.propTypes = iconPropTypes; } var TableOfContents = /*#__PURE__*/React__default["default"].forwardRef(function TableOfContents(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$2 || (_path99$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6H22V8H4zM4 12H22V14H4zM4 18H22V20H4zM4 24H22V26H4zM26 6H28V8H26zM26 12H28V14H26zM26 18H28V20H26zM26 24H28V26H26z" })), children); }); { TableOfContents.propTypes = iconPropTypes; } var Tablet = /*#__PURE__*/React__default["default"].forwardRef(function Tablet(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$2 || (_path100$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 22H17V28H15z", transform: "rotate(90 16 25)" })), _path101$2 || (_path101$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,30H7a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,7,2H25a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,25,30ZM7,4V28H25V4Z" })), children); }); { Tablet.propTypes = iconPropTypes; } var TabletLandscape = /*#__PURE__*/React__default["default"].forwardRef(function TabletLandscape(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$2 || (_path102$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 13H26V19H24z" })), _path103$2 || (_path103$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,7V25a2.0023,2.0023,0,0,1-2,2H4a2.002,2.002,0,0,1-2-2V7A2.0023,2.0023,0,0,1,4,5H28A2.0027,2.0027,0,0,1,30,7ZM4,25H28V7H4Z" })), children); }); { TabletLandscape.propTypes = iconPropTypes; } var Tag = /*#__PURE__*/React__default["default"].forwardRef(function Tag(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$2 || (_path104$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,14a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,14Zm0-6a2,2,0,1,0,1.998,2.0044A2.002,2.002,0,0,0,10,8Z" })), _path105$2 || (_path105$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.6436,29.4145,2.5858,15.3555A2,2,0,0,1,2,13.9414V4A2,2,0,0,1,4,2h9.9413a2,2,0,0,1,1.4142.5858L29.4144,16.6436a2.0005,2.0005,0,0,1,0,2.8285l-9.9424,9.9425a2.0008,2.0008,0,0,1-2.8285,0ZM4,4v9.9417L18.0578,28,28,18.0579,13.9416,4Z" })), children); }); { Tag.propTypes = iconPropTypes; } var TagEdit = /*#__PURE__*/React__default["default"].forwardRef(function TagEdit(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path106$2 || (_path106$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.707 7.293l-3-3a.9994.9994 0 00-1.414 0L16 13.5859V18h4.4141L29.707 8.707A.9994.9994 0 0029.707 7.293zM19.5859 16H18V14.4141l5-5L24.5859 11zM26 9.5859L24.4141 8 26 6.4141 27.5859 8zM10 14a4 4 0 114-4A4.0045 4.0045 0 0110 14zm0-6a2 2 0 101.998 2.0044A2.002 2.002 0 0010 8z" })), _path107$2 || (_path107$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.0059,14.2354l-1.4141,1.414L28,18.0576,18.0579,28,4,13.9414V4h9.9417l4.4067,4.4067,1.4141-1.4145-4.407-4.4063A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l9.9424-9.9424a2.001,2.001,0,0,0,0-2.8286Z" })), children); }); { TagEdit.propTypes = iconPropTypes; } var TagExport = /*#__PURE__*/React__default["default"].forwardRef(function TagExport(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path108$2 || (_path108$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 18L25 12 23.586 13.414 27.172 17 17 17 17 19 27.172 19 23.586 22.586 25 24 31 18zM10 14a4 4 0 114-4A4.0045 4.0045 0 0110 14zm0-6a2 2 0 101.998 2.0044A2.002 2.002 0 0010 8z" })), _path109$2 || (_path109$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.0593,25l-3.0014,3L4,13.9414V4h9.9417l7,7,1.4143-1.414-7.001-7A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l3.0014-3Z" })), children); }); { TagExport.propTypes = iconPropTypes; } var TagGroup = /*#__PURE__*/React__default["default"].forwardRef(function TagGroup(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle4$1 || (_circle4$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10", cy: "14", r: "2" })), _path110$2 || (_path110$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30a1,1,0,0,1-.71-.29L4.59,19A2,2,0,0,1,4,17.59V10A2,2,0,0,1,6,8h7.59A2,2,0,0,1,15,8.59l10.71,10.7a1,1,0,0,1,0,1.42l-9,9A1,1,0,0,1,16,30ZM6,10v7.59l10,10L23.59,20l-10-10Z" })), _path111$2 || (_path111$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.71,13.29,17,2.59A2,2,0,0,0,15.59,2H8A2,2,0,0,0,6,4V6H8V4h7.59l10,10-1.3,1.29,1.42,1.42,2-2A1,1,0,0,0,27.71,13.29Z" })), children); }); { TagGroup.propTypes = iconPropTypes; } var TagImport = /*#__PURE__*/React__default["default"].forwardRef(function TagImport(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$2 || (_path112$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 18L22 12 23.414 13.414 19.828 17 30 17 30 19 19.828 19 23.414 22.586 22 24 16 18zM10 14a4 4 0 114-4A4.0045 4.0045 0 0110 14zm0-6a2 2 0 101.998 2.0044A2.002 2.002 0 0010 8z" })), _path113$2 || (_path113$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.0586,26l-2.0007,2L4,13.9414V4h9.9417l6,6,1.4143-1.414-6.001-6A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141L16.6436,29.4146a2.001,2.001,0,0,0,2.8286,0l2.0006-2.0007Z" })), children); }); { TagImport.propTypes = iconPropTypes; } var TagNone = /*#__PURE__*/React__default["default"].forwardRef(function TagNone(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$2 || (_path114$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.092 10.3218L30 3.4141 28.5859 2 2 28.5859 3.4141 30l6.9077-6.9077 6.3218 6.3223a2.001 2.001 0 002.8286 0l9.9424-9.9424a2.001 2.001 0 000-2.8286zM18.0579 28l-6.3218-6.3223 9.9419-9.9419L28 18.0576zM10 14a4 4 0 114-4A4.0045 4.0045 0 0110 14zm0-6a2 2 0 101.998 2.0044A2.002 2.002 0 0010 8z" })), _path115$2 || (_path115$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.4927,20.2627l1.414-1.4141L4,13.9414V4h9.9417l4.9069,4.9067,1.4141-1.414L15.3555,2.5859A2,2,0,0,0,13.9414,2H4A2,2,0,0,0,2,4v9.9414a2,2,0,0,0,.5857,1.4141Z" })), children); }); { TagNone.propTypes = iconPropTypes; } var Tank = /*#__PURE__*/React__default["default"].forwardRef(function Tank(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$2 || (_path116$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,13V11H18.6182l-.7237-1.4473A1,1,0,0,0,17,9H9a1,1,0,0,0-1,1v5H4v2H22.6379l3.6,3H3a1,1,0,0,0-1,1v2a5.0057,5.0057,0,0,0,5,5H25a5.0057,5.0057,0,0,0,5-5V21a1.0011,1.0011,0,0,0-.36-.7686l-6-5A1.0015,1.0015,0,0,0,23,15H20.6182l-1-2ZM28,23a3.0033,3.0033,0,0,1-3,3H7a3.0033,3.0033,0,0,1-3-3V22H28ZM10,15V11h6.3821l2,4Z" })), children); }); { Tank.propTypes = iconPropTypes; } var Task = /*#__PURE__*/React__default["default"].forwardRef(function Task(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117$2 || (_path117$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 20.18L10.41 16.59 9 18 14 23 23 14 21.59 12.58 14 20.18z" })), _path118$2 || (_path118$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z" })), children); }); { Task.propTypes = iconPropTypes; } var TaskAdd = /*#__PURE__*/React__default["default"].forwardRef(function TaskAdd(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path119$2 || (_path119$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 24L27 24 27 20 25 20 25 24 21 24 21 26 25 26 25 30 27 30 27 26 31 26 31 24z" })), _path120$2 || (_path120$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2H17V28H7V7h3v3H22V7h3v9h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskAdd.propTypes = iconPropTypes; } var TaskApproved = /*#__PURE__*/React__default["default"].forwardRef(function TaskApproved(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121$2 || (_path121$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,20A6,6,0,1,0,20,24.46V32l4-1.8936L28,32V24.46A5.98,5.98,0,0,0,30,20Zm-4,8.84-2-.9467L22,28.84V25.65a5.8877,5.8877,0,0,0,4,0ZM24,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z" })), _path122$2 || (_path122$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskApproved.propTypes = iconPropTypes; } var TaskAssetView = /*#__PURE__*/React__default["default"].forwardRef(function TaskAssetView(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123$2 || (_path123$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,26A3.5,3.5,0,1,1,26,22.5,3.5041,3.5041,0,0,1,22.5,26Zm0-5A1.5,1.5,0,1,0,24,22.5,1.5017,1.5017,0,0,0,22.5,21Z" })), _path124$2 || (_path124$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.5,31A8.5,8.5,0,1,1,31,22.5,8.51,8.51,0,0,1,22.5,31Zm0-15A6.5,6.5,0,1,0,29,22.5,6.5074,6.5074,0,0,0,22.5,16Z" })), _path125$2 || (_path125$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h5V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskAssetView.propTypes = iconPropTypes; } var TaskComplete = /*#__PURE__*/React__default["default"].forwardRef(function TaskComplete(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$2 || (_path126$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 27.18L19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z" })), _path127$2 || (_path127$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V18h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskComplete.propTypes = iconPropTypes; } var TaskLocation = /*#__PURE__*/React__default["default"].forwardRef(function TaskLocation(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle5$1 || (_circle5$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "21", r: "2" })), _path128$2 || (_path128$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,31l-4.7788-6.4019A5.9354,5.9354,0,0,1,18,21a6,6,0,0,1,12,0,5.9407,5.9407,0,0,1-1.2246,3.6028Zm0-14a4.0045,4.0045,0,0,0-4,4,3.9572,3.9572,0,0,0,.82,2.3972L24,27.6567l3.1763-4.2548A3.9627,3.9627,0,0,0,28,21,4.0045,4.0045,0,0,0,24,17Z" })), _path129$2 || (_path129$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskLocation.propTypes = iconPropTypes; } var TaskRemove = /*#__PURE__*/React__default["default"].forwardRef(function TaskRemove(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path130$2 || (_path130$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.41 25L30 21.41 28.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 25z" })), _path131$2 || (_path131$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V17h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskRemove.propTypes = iconPropTypes; } var TaskSettings = /*#__PURE__*/React__default["default"].forwardRef(function TaskSettings(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$2 || (_path132$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z" })), _path133$2 || (_path133$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v6h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskSettings.propTypes = iconPropTypes; } var TaskStar = /*#__PURE__*/React__default["default"].forwardRef(function TaskStar(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$2 || (_path134$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 17L25.23 21.32 30 22 26.5 25.167 28 30 23 27.208 18 30 19.5 25.167 16 22 20.9 21.32 23 17z" })), _path135$2 || (_path135$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v7h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskStar.propTypes = iconPropTypes; } var TaskTools = /*#__PURE__*/React__default["default"].forwardRef(function TaskTools(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$2 || (_path136$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5,32a3.4762,3.4762,0,0,1-2.4751-1.0254L21.897,26.8469a6.496,6.496,0,0,1-7.3482-8.9563l.5879-1.34L19.293,20.707a1.0234,1.0234,0,0,0,1.4135,0,.999.999,0,0,0,.0005-1.4141l-4.1562-4.1565,1.34-.5881a6.4965,6.4965,0,0,1,8.9566,7.3486l4.1274,4.1282A3.5,3.5,0,0,1,28.5,32Zm-6.03-7.4087,4.9693,4.9692a1.5352,1.5352,0,0,0,2.1211,0,1.4985,1.4985,0,0,0,0-2.1208v0l-4.9692-4.97.188-.5823A4.496,4.496,0,0,0,20.5,16q-.126,0-.25.0068l1.8716,1.8721a2.9992,2.9992,0,0,1,0,4.2424,3.0722,3.0722,0,0,1-4.2427-.0005l-1.8716-1.8715Q16,20.3741,16,20.5A4.4968,4.4968,0,0,0,21.8877,24.78Z" })), _path137$2 || (_path137$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z" })), children); }); { TaskTools.propTypes = iconPropTypes; } var TaskView = /*#__PURE__*/React__default["default"].forwardRef(function TaskView(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle6$1 || (_circle6$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "22", cy: "24", r: "2" })), _path138$2 || (_path138$2 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z" })), _path139$2 || (_path139$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z" })), _path140$2 || (_path140$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,28H7V7h3v3H22V7h3v9h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h5ZM12,4h8V8H12Z" })), children); }); { TaskView.propTypes = iconPropTypes; } var Taste = /*#__PURE__*/React__default["default"].forwardRef(function Taste(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$2 || (_path141$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 4V6H8v8a8 8 0 0016 0V6h4V4zM22 14a6 6 0 01-12 0V6h5v8h2V6h5zM11 26H13V28H11zM7 24H9V26H7zM15 24H17V26H15zM19 26H21V28H19zM23 24H25V26H23z" })), children); }); { Taste.propTypes = iconPropTypes; } var Taxi = /*#__PURE__*/React__default["default"].forwardRef(function Taxi(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$2 || (_path142$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.39,16.08,22.7,13.21,20.16,8.87l-.08-.12A2,2,0,0,0,18.52,8h-8a2,2,0,0,0-1.67.89L5.46,14H3a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.39,16.08ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V16H6a1,1,0,0,0,.83-.45L10.54,10h8l2.63,4.5a1,1,0,0,0,.47.42L28,17.66Z" })), children); }); { Taxi.propTypes = iconPropTypes; } var Temperature = /*#__PURE__*/React__default["default"].forwardRef(function Temperature(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143$2 || (_path143$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 17.26V6A4 4 0 005 6V17.26a7 7 0 108 0zM9 4a2 2 0 012 2v7H7V6A2 2 0 019 4zM9 28a5 5 0 01-2.5-9.33l.5-.28V15h4v3.39l.5.28A5 5 0 019 28zM20 4H30V6H20zM20 10H27V12H20zM20 16H30V18H20zM20 22H27V24H20z" })), children); }); { Temperature.propTypes = iconPropTypes; } var TemperatureCelsius = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureCelsius(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path144$2 || (_path144$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,18H24a2.0023,2.0023,0,0,1-2-2V6a2.002,2.002,0,0,1,2-2h6V6H24V16h6Z" })), _circle7$1 || (_circle7$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "4", r: "2" })), _path145$2 || (_path145$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" })), _path146$2 || (_path146$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" })), children); }); { TemperatureCelsius.propTypes = iconPropTypes; } var TemperatureCelsiusAlt = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureCelsiusAlt(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$2 || (_path147$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 27H17a2.0023 2.0023 0 01-2-2V11a2.002 2.002 0 012-2h9v2H17V25h9zM8 13a4 4 0 114-4h0A4.0118 4.0118 0 018 13zM8 7a2 2 0 102 2h0A2.0059 2.0059 0 008 7z" })), children); }); { TemperatureCelsiusAlt.propTypes = iconPropTypes; } var TemperatureFahrenheit = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureFahrenheit(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148$2 || (_path148$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 6L30 4 22 4 22 18 24 18 24 12 29 12 29 10 24 10 24 6 30 6z" })), _circle8$1 || (_circle8$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "4", r: "2" })), _path149$2 || (_path149$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z" })), _path150$2 || (_path150$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" })), children); }); { TemperatureFahrenheit.propTypes = iconPropTypes; } var TemperatureFahrenheitAlt = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureFahrenheitAlt(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151$2 || (_path151$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 11L26 9 15 9 15 27 17 27 17 19 25 19 25 17 17 17 17 11 26 11zM8 13a4 4 0 114-4h0A4.0118 4.0118 0 018 13zM8 7a2 2 0 102 2h0A2.0059 2.0059 0 008 7z" })), children); }); { TemperatureFahrenheitAlt.propTypes = iconPropTypes; } var TemperatureFeelsLike = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureFeelsLike(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$2 || (_path152$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 30H22a2.0059 2.0059 0 01-2-2V21a2.0059 2.0059 0 01-2-2V13a2.9465 2.9465 0 013-3h6a2.9465 2.9465 0 013 3v6a2.0059 2.0059 0 01-2 2v7A2.0059 2.0059 0 0126 30zM21 12a.9448.9448 0 00-1 1v6h2v9h4V19h2V13a.9448.9448 0 00-1-1zM24 9a4 4 0 114-4h0A4.0118 4.0118 0 0124 9zm0-6a2 2 0 102 2h0a2.0059 2.0059 0 00-2-2zM10 20.1839V12H8v8.1839a3 3 0 102 0z" })), _path153$2 || (_path153$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" })), children); }); { TemperatureFeelsLike.propTypes = iconPropTypes; } var TemperatureFrigid = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureFrigid(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154$2 || (_path154$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.167 16.89L21.72 13 27.167 9.109 29.684 9.948 30.316 8.051 28 7.279 28 5 26 5 26 7.485 21 11.057 21 5.367 23.555 3.664 22.445 2 20 3.63 17.555 2 16.445 3.664 19 5.367 19 11.057 16 8.914 16 11.372 18.28 13 16 14.628 16 17.086 19 14.943 19 21.703 22.445 24 23.555 22.336 21 20.633 21 14.943 26 18.515 26 21 28 21 28 18.721 30.316 17.948 29.684 16.051 27.167 16.89zM12 23a3 3 0 01-6 0z" })), _path155$2 || (_path155$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" })), children); }); { TemperatureFrigid.propTypes = iconPropTypes; } var TemperatureHot = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureHot(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$2 || (_path156$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 13H30V15H26z" })), _path157$2 || (_path157$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.121 5.879H27.121V7.879H23.121z", transform: "rotate(-45 25.121 6.879)" })), _path158$2 || (_path158$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.121 19.121H26.121V23.121H24.121z", transform: "rotate(-45 25.121 21.121)" })), _path159$2 || (_path159$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 2H19V6H17zM18 8a6.0365 6.0365 0 00-1 .09v2.0518A3.9567 3.9567 0 0118 10a4 4 0 010 8v2A6 6 0 0018 8zM10 20.1839V7H8V20.1839a3 3 0 102 0z" })), _path160$2 || (_path160$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z" })), children); }); { TemperatureHot.propTypes = iconPropTypes; } var TemperatureInversion = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureInversion(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path161$2 || (_path161$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 8H24v6h2V11.541A5.939 5.939 0 0128 16a6.0039 6.0039 0 01-5.0945 5.9243A7.0273 7.0273 0 0020 17.2617V6a4 4 0 00-8 0V17.2617a6.996 6.996 0 1010.9292 6.68A7.9794 7.9794 0 0027.2651 10H30zM14 6a2 2 0 014 0v7H14zm2 22a4.9965 4.9965 0 01-2.499-9.3252L14 18.3857V15h4v3.3857l.499.2891A4.9965 4.9965 0 0116 28zM2 10a8.04 8.04 0 002.7349 6H2v2H8V12H6v2.4592A5.94 5.94 0 014 10a6.0066 6.0066 0 016-6V2A8.0092 8.0092 0 002 10z" })), children); }); { TemperatureInversion.propTypes = iconPropTypes; } var TemperatureMax = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureMax(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162$2 || (_path162$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 10H27V12H20zM20 16H30V18H20zM20 22H27V24H20zM10 20.1839V7H8V20.1839a3 3 0 102 0z" })), _path163$2 || (_path163$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,4H12.9744A4.9829,4.9829,0,0,0,4,7V18.1108a7,7,0,1,0,10,0V7a5.0019,5.0019,0,0,0-.1011-1H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" })), children); }); { TemperatureMax.propTypes = iconPropTypes; } var TemperatureMin = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureMin(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path164$2 || (_path164$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 4H27V6H20zM20 10H30V12H20zM20 16H27V18H20zM12 23a3 3 0 01-6 0z" })), _path165$2 || (_path165$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,22H15.9192A7.0107,7.0107,0,0,0,14,18.1108V7A5,5,0,0,0,4,7V18.1108A6.9946,6.9946,0,1,0,15.92,24H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z" })), children); }); { TemperatureMin.propTypes = iconPropTypes; } var TemperatureWater = /*#__PURE__*/React__default["default"].forwardRef(function TemperatureWater(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$2 || (_path166$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,9a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,9V7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,4a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,4a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,7H13V6A4,4,0,0,0,5,6V17.2617A7.0126,7.0126,0,1,0,13.8735,18H14a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,18V16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,13a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,13a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,16H13V9ZM7,6a2,2,0,0,1,4,0v6H7ZM9,28a4.9965,4.9965,0,0,1-2.499-9.3252L7,18.3857V14h4v4.3857l.499.2891A4.9965,4.9965,0,0,1,9,28Z" })), children); }); { TemperatureWater.propTypes = iconPropTypes; } var Template = /*#__PURE__*/React__default["default"].forwardRef(function Template(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path167$2 || (_path167$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 6v4H6V6H26m0-2H6A2 2 0 004 6v4a2 2 0 002 2H26a2 2 0 002-2V6a2 2 0 00-2-2zM10 16V26H6V16h4m0-2H6a2 2 0 00-2 2V26a2 2 0 002 2h4a2 2 0 002-2V16a2 2 0 00-2-2zM26 16V26H16V16H26m0-2H16a2 2 0 00-2 2V26a2 2 0 002 2H26a2 2 0 002-2V16a2 2 0 00-2-2z" })), children); }); { Template.propTypes = iconPropTypes; } var Tennis = /*#__PURE__*/React__default["default"].forwardRef(function Tennis(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _rect || (_rect = /*#__PURE__*/React__default["default"].createElement("rect", { width: "4", height: "4", x: "20", y: "2", rx: "2" })), _path168$2 || (_path168$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,16a1,1,0,0,1-.707-1.707l7-7a1,1,0,1,1,1.414,1.414l-7,7A.9962.9962,0,0,1,11,16Z" })), _path169$2 || (_path169$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.707,24.293a8.3948,8.3948,0,0,0-4.72-2.209c.1992-.1641.3931-.3364.5777-.521a9.2447,9.2447,0,0,0,1.7334-9.9141l-1.8768.6973c1.11,2.9805.6346,5.8975-1.2722,7.8022a6.6964,6.6964,0,0,1-5.561,1.8047,9.7746,9.7746,0,0,1-5.771-2.7856c-2.9727-2.97-4.0759-8.2276-.9805-11.32,1.9068-1.9053,4.8267-2.38,7.8094-1.271l.6987-1.875C10.6616,3.333,6.8591,3.9961,4.4207,6.4331c-3.9427,3.9385-2.6761,10.4956.98,14.1489a11.8136,11.8136,0,0,0,6.9766,3.36c.21.022.4153.0234.6223.0332V24h4.9968a6.8463,6.8463,0,0,1,4.2962,1.707L26.5859,30,28,28.5859Z" })), children); }); { Tennis.propTypes = iconPropTypes; } var TennisBall = /*#__PURE__*/React__default["default"].forwardRef(function TennisBall(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$2 || (_path170$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19,4a8.9812,8.9812,0,0,0-8.1687,12.7549L2,25.5859,3.4141,27l8.4873-8.4873a9.0408,9.0408,0,0,0,1.5859,1.5859L10,23.5859,11.4141,25l3.8313-3.8311A8.9959,8.9959,0,1,0,19,4Zm6.9058,7.9058a7.005,7.005,0,0,1-5.8116-5.8116A7.005,7.005,0,0,1,25.9058,11.9058ZM12.0942,14.0942a7.005,7.005,0,0,1,5.8116,5.8116A7.005,7.005,0,0,1,12.0942,14.0942ZM19.93,19.9307a9.01,9.01,0,0,0-7.8611-7.8614,7.004,7.004,0,0,1,6-6,9.01,9.01,0,0,0,7.8611,7.8614A7.004,7.004,0,0,1,19.93,19.9307Z" })), children); }); { TennisBall.propTypes = iconPropTypes; } var Term = /*#__PURE__*/React__default["default"].forwardRef(function Term(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$2 || (_path171$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,26H25V24h3V8H25V6h3a2.0023,2.0023,0,0,1,2,2V24A2.0027,2.0027,0,0,1,28,26Z" })), _circle9$1 || (_circle9$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "16", r: "2" })), _circle10$1 || (_circle10$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "2" })), _circle11$1 || (_circle11$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "16", r: "2" })), _path172$2 || (_path172$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7,26H4a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,4,6H7V8H4V24H7Z" })), children); }); { Term.propTypes = iconPropTypes; } var Terminal = /*#__PURE__*/React__default["default"].forwardRef(function Terminal(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path173$2 || (_path173$2 = /*#__PURE__*/React__default["default"].createElement("path", { 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,2v4H6V6ZM6,26V12H26V26Z", transform: "translate(0 .01)" })), _path174$2 || (_path174$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.76 16.18L13.58 19.01 10.76 21.84 12.17 23.25 16.41 19.01 12.17 14.77 10.76 16.18z" })), children); }); { Terminal.propTypes = iconPropTypes; } var Terminal_3270 = /*#__PURE__*/React__default["default"].forwardRef(function Terminal_3270(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$2 || (_path175$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 21H16V23H10z" })), _path176$2 || (_path176$2 = /*#__PURE__*/React__default["default"].createElement("path", { 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,2v4H6V6ZM6,26V12H26V26Z" })), children); }); { Terminal_3270.propTypes = iconPropTypes; } var TestTool = /*#__PURE__*/React__default["default"].forwardRef(function TestTool(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$2 || (_path177$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 9.2L20.4 6.6 19 8 23 12 30 5 28.6 3.6zM12 5.4L10.6 4 8 6.6 5.4 4 4 5.4 6.6 8 4 10.6 5.4 12 8 9.4 10.6 12 12 10.6 9.4 8zM12 21.4L10.6 20 8 22.6 5.4 20 4 21.4 6.6 24 4 26.6 5.4 28 8 25.4 10.6 28 12 26.6 9.4 24z" })), _path178$2 || (_path178$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 15L17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" })), children); }); { TestTool.propTypes = iconPropTypes; } var TextAlignCenter = /*#__PURE__*/React__default["default"].forwardRef(function TextAlignCenter(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path179$2 || (_path179$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H26V8H6zM10 12H22V14H10zM6 18H26V20H6zM10 24H22V26H10z" })), children); }); { TextAlignCenter.propTypes = iconPropTypes; } var TextAlignJustify = /*#__PURE__*/React__default["default"].forwardRef(function TextAlignJustify(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$2 || (_path180$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H26V8H6zM6 12H26V14H6zM6 18H26V20H6zM6 24H26V26H6z" })), children); }); { TextAlignJustify.propTypes = iconPropTypes; } var TextAlignLeft = /*#__PURE__*/React__default["default"].forwardRef(function TextAlignLeft(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path181$2 || (_path181$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 6H26V8H12zM12 12H22V14H12zM12 18H26V20H12zM12 24H22V26H12zM6 4H8V28H6z" })), children); }); { TextAlignLeft.propTypes = iconPropTypes; } var TextAlignMixed = /*#__PURE__*/React__default["default"].forwardRef(function TextAlignMixed(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$2 || (_path182$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 4H9V6h5V8H10a2 2 0 00-2 2v2a2 2 0 002 2h6V6A2.0023 2.0023 0 0014 4zm0 8H10V10h4zM22 26L22 18 20 18 20 19 18 19 18 21 20 21 20 26 18 26 18 28 24 28 24 26 22 26zM2 2H4V16H2zM28 16H30V30H28z" })), children); }); { TextAlignMixed.propTypes = iconPropTypes; } var TextAlignRight = /*#__PURE__*/React__default["default"].forwardRef(function TextAlignRight(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path183$2 || (_path183$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 6H20V8H6zM10 12H20V14H10zM6 18H20V20H6zM10 24H20V26H10zM24 4H26V28H24z" })), children); }); { TextAlignRight.propTypes = iconPropTypes; } var TextAllCaps = /*#__PURE__*/React__default["default"].forwardRef(function TextAllCaps(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$2 || (_path184$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M1 8L1 10 7 10 7 24 9 24 9 10 15 10 15 8 1 8zM17 8L17 10 23 10 23 24 25 24 25 10 31 10 31 8 17 8z" })), children); }); { TextAllCaps.propTypes = iconPropTypes; } var TextBold = /*#__PURE__*/React__default["default"].forwardRef(function TextBold(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path185$2 || (_path185$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.25,25H9V7h8.5a5.25,5.25,0,0,1,4,8.65A5.25,5.25,0,0,1,18.25,25ZM12,22h6.23a2.25,2.25,0,1,0,0-4.5H12Zm0-7.5h5.5a2.25,2.25,0,1,0,0-4.5H12Z" })), children); }); { TextBold.propTypes = iconPropTypes; } var TextClearFormat = /*#__PURE__*/React__default["default"].forwardRef(function TextClearFormat(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$2 || (_path186$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4384,16.5715l-7.985-7.9856a2.0014,2.0014,0,0,0-2.8291,0l-5.3584,5.3584L9,2H7L2,16H4l.999-3h6l.8035,2.4077L4.5858,22.6244a2,2,0,0,0,0,2.8282L9.1316,30h9.5908l10.716-10.717A1.9173,1.9173,0,0,0,29.4384,16.5715ZM5.6653,11l2.331-7,2.3355,7Zm12.229,17H9.96L6,24.0381l6.3123-6.3115L20.24,25.6538Zm3.76-3.76-7.9275-7.9272L20.0393,10l7.9268,7.9272Z" })), children); }); { TextClearFormat.propTypes = iconPropTypes; } var TextColor = /*#__PURE__*/React__default["default"].forwardRef(function TextColor(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$2 || (_path187$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 21h2L17 4H15L8 21h2l1.61-4h8.74zm-9.57-6l3.44-8.37h.26L19.54 15zM6 24H26V28H6z" })), children); }); { TextColor.propTypes = iconPropTypes; } var TextCreation = /*#__PURE__*/React__default["default"].forwardRef(function TextCreation(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$2 || (_path188$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,22.14V9.86A4,4,0,1,0,22.14,5H9.86A4,4,0,1,0,5,9.86V22.14A4,4,0,1,0,9.86,27H22.14A4,4,0,1,0,27,22.14ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm16.14-3H9.86A4,4,0,0,0,7,22.14V9.86A4,4,0,0,0,9.86,7H22.14A4,4,0,0,0,25,9.86V22.14A4,4,0,0,0,22.14,25ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z" })), _path189$2 || (_path189$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 11L11 11 11 13 15 13 15 22 17 22 17 13 21 13 21 11z" })), children); }); { TextCreation.propTypes = iconPropTypes; } var TextFill = /*#__PURE__*/React__default["default"].forwardRef(function TextFill(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$2 || (_path190$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H28V30H4z" })), _path191$2 || (_path191$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,14.54a1,1,0,0,0-.25-.69L17.17,4.33A1.09,1.09,0,0,0,17,4.2V2H15V5L4.32,14.74a1,1,0,0,0-.06,1.41l8.57,9.52a1,1,0,0,0,.69.33h.05a1,1,0,0,0,.68-.26L24,16.8V21a1,1,0,0,0,2,0V14.57S26,14.55,26,14.54Zm-12.35,9-7.23-8L15,7.67V12h2V7.13l6.59,7.33Z" })), children); }); { TextFill.propTypes = iconPropTypes; } var TextFont = /*#__PURE__*/React__default["default"].forwardRef(function TextFont(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$2 || (_path192$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 12H20v2h5a1.0008 1.0008 0 011 1v2H22a3.0033 3.0033 0 00-3 3v1a3.0033 3.0033 0 003 3h6V15A3.0033 3.0033 0 0025 12zM22 22a1.0008 1.0008 0 01-1-1V20a1.0008 1.0008 0 011-1h4v3zM16 24h2L12 7H10L4 24H6l1.6936-5h6.6135zM8.3711 17l2.4966-7.3711.2668.0005L13.63 17z" })), children); }); { TextFont.propTypes = iconPropTypes; } var TextFootnote = /*#__PURE__*/React__default["default"].forwardRef(function TextFootnote(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$2 || (_path193$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 7L2 9 9 9 9 25 11 25 11 9 18 9 18 7 2 7zM30 11.076L29.256 9.219 26 10.522 26 7 24 7 24 10.523 20.744 9.22 20 11.077 23.417 12.444 20.9 15.8 22.5 17 25 13.667 27.5 17 29.1 15.8 26.583 12.443 30 11.076z" })), children); }); { TextFootnote.propTypes = iconPropTypes; } var TextHighlight = /*#__PURE__*/React__default["default"].forwardRef(function TextHighlight(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194$2 || (_path194$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15H5a3 3 0 01-3-3V10A3 3 0 015 7h5V5A1 1 0 009 4H3V2H9a3 3 0 013 3zM5 9a1 1 0 00-1 1v2a1 1 0 001 1h5V9zM20 23v2a1 1 0 001 1h5V22H21A1 1 0 0020 23z" })), _path195$2 || (_path195$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2,30H30V2Zm26-2H21a3,3,0,0,1-3-3V23a3,3,0,0,1,3-3h5V18a1,1,0,0,0-1-1H19V15h6a3,3,0,0,1,3,3Z" })), children); }); { TextHighlight.propTypes = iconPropTypes; } var TextIndent = /*#__PURE__*/React__default["default"].forwardRef(function TextIndent(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path196$2 || (_path196$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 6H28V8H14zM14 12H28V14H14zM7 18H28V20H7zM7 24H28V26H7zM4 13.59L7.29 10 4 6.41 5.42 5 10.04 10 5.42 15 4 13.59z" })), children); }); { TextIndent.propTypes = iconPropTypes; } var TextIndentLess = /*#__PURE__*/React__default["default"].forwardRef(function TextIndentLess(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197$2 || (_path197$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 6H12V8H2zM5 12H12V14H5zM2 18H12V20H2zM5 24H12V26H5zM16 4H18V28H16zM28.15 23.5L29.56 22.12 23.27 16 29.56 9.88 28.15 8.5 20.44 16 28.15 23.5z" })), children); }); { TextIndentLess.propTypes = iconPropTypes; } var TextIndentMore = /*#__PURE__*/React__default["default"].forwardRef(function TextIndentMore(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$2 || (_path198$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 6H30V8H20zM20 12H27V14H20zM20 18H30V20H20zM20 24H27V26H20zM14 4H16V28H14zM3.85 22.5L2.44 21.12 8.73 15 2.44 8.88 3.85 7.5 11.56 15 3.85 22.5z" })), children); }); { TextIndentMore.propTypes = iconPropTypes; } var TextItalic = /*#__PURE__*/React__default["default"].forwardRef(function TextItalic(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199$2 || (_path199$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 9L25 7 12 7 12 9 17.14 9 12.77 23 7 23 7 25 20 25 20 23 14.86 23 19.23 9 25 9z" })), children); }); { TextItalic.propTypes = iconPropTypes; } var TextKerning = /*#__PURE__*/React__default["default"].forwardRef(function TextKerning(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$2 || (_path200$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 24L18.83 24 21.12 21.71 19.71 20.29 15 25 19.71 29.71 21.12 28.29 18.83 26 30 26 30 24zM14 21L20 4 18 4 12 21 14 21zM13 4L9 16 5 4 3 4 8 18 10 18 15 4 13 4zM28 18h2L25 4H23L18 18h2l1-3h6zm-6.33-5L24 6l2.33 7z" })), children); }); { TextKerning.propTypes = iconPropTypes; } var TextLeading = /*#__PURE__*/React__default["default"].forwardRef(function TextLeading(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$2 || (_path201$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 13H30V15H14zM15 28H30V30H15zM25.85 27H28L23.64 17H21.36L17 27h2.15l.8-2h5.1zm-5.1-4l1.75-4.37L24.25 23zM25.85 12H28L23.64 2H21.36L17 12h2.15l.8-2h5.1zm-5.1-4L22.5 3.63 24.25 8zM6 15.83L8.58 18.41 10 17 6 13 2 17 3.41 18.42 6 15.83zM6 27.17L3.42 24.59 2 26 6 30 10 26 8.59 24.58 6 27.17z" })), children); }); { TextLeading.propTypes = iconPropTypes; } var TextLineSpacing = /*#__PURE__*/React__default["default"].forwardRef(function TextLineSpacing(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$2 || (_path202$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 6H30V8H17zM17 12H27V14H17zM17 18H30V20H17zM17 24H27V26H17zM11.59 13.41L8 9.83 8 9.83 4.41 13.42 3 12 8 7 13 12 11.59 13.41zM11.59 18.59L8 22.17 8 22.17 4.41 18.58 3 20 8 25 13 20 11.59 18.59z" })), children); }); { TextLineSpacing.propTypes = iconPropTypes; } var TextNewLine = /*#__PURE__*/React__default["default"].forwardRef(function TextNewLine(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$2 || (_path203$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.5859,14.4141,24.1719,18H6V8H4V18a2.0024,2.0024,0,0,0,2,2H24.1719L20.586,23.5859,22,25l6-6-6-6Z" })), children); }); { TextNewLine.propTypes = iconPropTypes; } var TextScale = /*#__PURE__*/React__default["default"].forwardRef(function TextScale(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$2 || (_path204$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 5L30 8 22 8 22 26 19 26 19 8 11 8 11 5 30 5z" })), _path205$2 || (_path205$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 26L7 14 2 14 2 12 14 12 14 14 9 14 9 26 7 26z" })), children); }); { TextScale.propTypes = iconPropTypes; } var TextSelection$1 = /*#__PURE__*/React__default["default"].forwardRef(function TextSelection(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path206$2 || (_path206$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 27H21a3 3 0 01-3-3V22a3 3 0 013-3h5V17a1 1 0 00-1-1H19V14h6a3 3 0 013 3zm-7-6a1 1 0 00-1 1v2a1 1 0 001 1h5V21zM13 7h3V5H13a4 4 0 00-3 1.38A4 4 0 007 5H4V7H7A2 2 0 019 9v5H5v2H9v7a2 2 0 01-2 2H4v2H7a4 4 0 003-1.38A4 4 0 0013 27h3V25H13a2 2 0 01-2-2V16h4V14H11V9A2 2 0 0113 7z" })), children); }); { TextSelection$1.propTypes = iconPropTypes; } var TextSmallCaps = /*#__PURE__*/React__default["default"].forwardRef(function TextSmallCaps(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207$2 || (_path207$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 27L23 15 18 15 18 13 30 13 30 15 25 15 25 27 23 27z" })), _path208$2 || (_path208$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 27L11 8 2 8 2 6 22 6 22 8 13 8 13 27 11 27z" })), children); }); { TextSmallCaps.propTypes = iconPropTypes; } var TextStrikethrough = /*#__PURE__*/React__default["default"].forwardRef(function TextStrikethrough(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path209$2 || (_path209$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,15H17.9563c-.4522-.1237-.9037-.2324-1.3381-.3352-2.8077-.6641-4.396-1.1506-4.396-3.4231a2.8684,2.8684,0,0,1,.7866-2.145,4.7888,4.7888,0,0,1,3.0137-1.09c2.8291-.07,4.1347.8894,5.2011,2.35l1.6153-1.1792a7.4727,7.4727,0,0,0-6.83-3.1706,6.7726,6.7726,0,0,0-4.4,1.6611,4.8274,4.8274,0,0,0-1.3862,3.5735A4.3723,4.3723,0,0,0,11.9573,15H4v2H17.6519c1.9668.57,3.1432,1.3123,3.1733,3.3579a3.119,3.119,0,0,1-.8623,2.3931A5.8241,5.8241,0,0,1,16.2432,24a6.6344,6.6344,0,0,1-5.1451-2.6912L9.5649,22.593A8.5262,8.5262,0,0,0,16.2119,26c.0088-.0012.042,0,.1,0A7.67,7.67,0,0,0,21.36,24.1812a5.0779,5.0779,0,0,0,1.4648-3.8531A4.952,4.952,0,0,0,21.6753,17H28Z" })), children); }); { TextStrikethrough.propTypes = iconPropTypes; } var TextSubscript = /*#__PURE__*/React__default["default"].forwardRef(function TextSubscript(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path210$2 || (_path210$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 25L20 25 20 19 24 19 24 17 20 17 20 15 26 15 26 21 22 21 22 23 26 23 26 25zM5 7L5 9 12 9 12 25 14 25 14 9 21 9 21 7 5 7z" })), children); }); { TextSubscript.propTypes = iconPropTypes; } var TextSuperscript = /*#__PURE__*/React__default["default"].forwardRef(function TextSuperscript(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$2 || (_path211$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 17L23 17 23 11 27 11 27 9 23 9 23 7 29 7 29 13 25 13 25 15 29 15 29 17zM4 7L4 9 11 9 11 25 13 25 13 9 20 9 20 7 4 7z" })), children); }); { TextSuperscript.propTypes = iconPropTypes; } var TextTracking = /*#__PURE__*/React__default["default"].forwardRef(function TextTracking(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212$2 || (_path212$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.29 19.29L23.88 20.71 26.17 23 5.83 23 8.12 20.71 6.71 19.29 2 24 6.71 28.71 8.12 27.29 5.83 25 26.17 25 23.88 27.29 25.29 28.71 30 24 25.29 19.29zM26 17h2L23 3H21L16 17h2l1-3h6zm-6.33-5L22 5l2.33 7zM14 3L10 15 6 3 4 3 9 17 11 17 16 3 14 3z" })), children); }); { TextTracking.propTypes = iconPropTypes; } var TextUnderline = /*#__PURE__*/React__default["default"].forwardRef(function TextUnderline(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path213$2 || (_path213$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H28V28H4zM16 23a7 7 0 01-7-7V5h2V16a5 5 0 0010 0V5h2V16A7 7 0 0116 23z" })), children); }); { TextUnderline.propTypes = iconPropTypes; } var TextVerticalAlignment = /*#__PURE__*/React__default["default"].forwardRef(function TextVerticalAlignment(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path214$2 || (_path214$2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 28H30V30H16zM16 23H30V25H16zM10.8458 30H13L8.64 20H6.36L2 30H4.1542l.8-2h5.0916zM5.7541 26L7.5 21.6347 9.2459 26zM2 15H30V17H2zM16 7H30V9H16zM16 2H30V4H16zM10.8458 12H13L8.64 2H6.36L2 12H4.1542l.8-2h5.0916zM5.7541 8L7.5 3.6347 9.2459 8z" })), children); }); { TextVerticalAlignment.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _path$1, _path2$1, _path3$1, _path4$1, _path5$1, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14$1, _path15$1, _path16$1, _path17$1, _path18$1, _path19$1, _path20$1, _path21$1, _path22$1, _path23$1, _path24$1, _path25$1, _path26$1, _path27$1, _path28$1, _path29$1, _path30$1, _path31$1, _path32$1, _path33$1, _path34$1, _path35$1, _path36$1, _path37$1, _path38$1, _path39$1, _path40$1, _path41$1, _path42$1, _path43$1, _path44$1, _path45$1, _path46$1, _path47$1, _path48$1, _path49$1, _path50$1, _path51$1, _path52$1, _path53$1, _path54$1, _path55$1, _path56$1, _path57$1, _path58$1, _path59$1, _path60$1, _path61$1, _path62$1, _path63$1, _path64$1, _path65$1, _path66$1, _path67$1, _path68$1, _path69$1, _path70$1, _path71$1, _path72$1, _path73$1, _path74$1, _path75$1, _path76$1, _path77$1, _path78$1, _path79$1, _path80$1, _path81$1, _path82$1, _path83$1, _path84$1, _path85$1, _path86$1, _path87$1, _path88$1, _path89$1, _path90$1, _path91$1, _path92$1, _path93$1, _path94$1, _path95$1, _path96$1, _path97$1, _path98$1, _path99$1, _path100$1, _path101$1, _path102$1, _path103$1, _path104$1, _path105$1, _path106$1, _path107$1, _path108$1, _path109$1, _path110$1, _path111$1, _path112$1, _path113$1, _path114$1, _path115$1, _path116$1, _path117$1, _path118$1, _path119$1, _path120$1, _path121$1, _path122$1, _path123$1, _path124$1, _path125$1, _path126$1, _path127$1, _path128$1, _path129$1, _path130$1, _path131$1, _path132$1, _path133$1, _path134$1, _path135$1, _path136$1, _path137$1, _path138$1, _path139$1, _path140$1, _path141$1, _path142$1, _path143$1, _path144$1, _path145$1, _path146$1, _path147$1, _path148$1, _path149$1, _path150$1, _path151$1, _path152$1, _path153$1, _circle$1, _path154$1, _path155$1, _path156$1, _path157$1, _path158$1, _path159$1, _path160$1, _path161$1, _path162$1, _path163$1, _path164$1, _path165$1, _path166$1, _path167$1, _path168$1, _path169$1, _path170$1, _path171$1, _path172$1, _path173$1, _path174$1, _path175$1, _path176$1, _path177$1, _path178$1, _path179$1, _path180$1, _path181$1, _path182$1, _path183$1, _path184$1, _path185$1, _path186$1, _path187$1, _path188$1, _path189$1, _path190$1, _path191$1, _path192$1, _path193$1, _circle2$1, _path194$1, _path195$1, _path196$1, _path197$1, _path198$1, _circle3$1, _path199$1, _path200$1, _path201$1, _path202$1, _path203$1, _path204$1, _path205$1, _path206$1, _path207$1, _path208$1, _path209$1, _path210$1, _path211$1, _path212$1, _path213$1, _path214$1, _path215$1, _path216$1, _path217$1, _path218$1, _path219$1, _path220$1, _path221$1, _path222$1, _path223$1, _path224$1; var _excluded$6 = ["children", "size"], _excluded2$1 = ["children", "size"], _excluded3$1 = ["children", "size"], _excluded4$1 = ["children", "size"], _excluded5$1 = ["children", "size"], _excluded6$1 = ["children", "size"], _excluded7$1 = ["children", "size"], _excluded8$1 = ["children", "size"], _excluded9$1 = ["children", "size"], _excluded10$1 = ["children", "size"], _excluded11$1 = ["children", "size"], _excluded12$1 = ["children", "size"], _excluded13$1 = ["children", "size"], _excluded14$1 = ["children", "size"], _excluded15$1 = ["children", "size"], _excluded16$1 = ["children", "size"], _excluded17$1 = ["children", "size"], _excluded18$1 = ["children", "size"], _excluded19$1 = ["children", "size"], _excluded20$1 = ["children", "size"], _excluded21$1 = ["children", "size"], _excluded22$1 = ["children", "size"], _excluded23$1 = ["children", "size"], _excluded24$1 = ["children", "size"], _excluded25$1 = ["children", "size"], _excluded26$1 = ["children", "size"], _excluded27$1 = ["children", "size"], _excluded28$1 = ["children", "size"], _excluded29$1 = ["children", "size"], _excluded30$1 = ["children", "size"], _excluded31$1 = ["children", "size"], _excluded32$1 = ["children", "size"], _excluded33$1 = ["children", "size"], _excluded34$1 = ["children", "size"], _excluded35$1 = ["children", "size"], _excluded36$1 = ["children", "size"], _excluded37$1 = ["children", "size"], _excluded38$1 = ["children", "size"], _excluded39$1 = ["children", "size"], _excluded40$1 = ["children", "size"], _excluded41$1 = ["children", "size"], _excluded42$1 = ["children", "size"], _excluded43$1 = ["children", "size"], _excluded44$1 = ["children", "size"], _excluded45$1 = ["children", "size"], _excluded46$1 = ["children", "size"], _excluded47$1 = ["children", "size"], _excluded48$1 = ["children", "size"], _excluded49$1 = ["children", "size"], _excluded50$1 = ["children", "size"], _excluded51$1 = ["children", "size"], _excluded52$1 = ["children", "size"], _excluded53$1 = ["children", "size"], _excluded54$1 = ["children", "size"], _excluded55$1 = ["children", "size"], _excluded56$1 = ["children", "size"], _excluded57$1 = ["children", "size"], _excluded58$1 = ["children", "size"], _excluded59$1 = ["children", "size"], _excluded60$1 = ["children", "size"], _excluded61$1 = ["children", "size"], _excluded62$1 = ["children", "size"], _excluded63$1 = ["children", "size"], _excluded64$1 = ["children", "size"], _excluded65$1 = ["children", "size"], _excluded66$1 = ["children", "size"], _excluded67$1 = ["children", "size"], _excluded68$1 = ["children", "size"], _excluded69$1 = ["children", "size"], _excluded70$1 = ["children", "size"], _excluded71$1 = ["children", "size"], _excluded72$1 = ["children", "size"], _excluded73$1 = ["children", "size"], _excluded74$1 = ["children", "size"], _excluded75$1 = ["children", "size"], _excluded76$1 = ["children", "size"], _excluded77$1 = ["children", "size"], _excluded78$1 = ["children", "size"], _excluded79$1 = ["children", "size"], _excluded80$1 = ["children", "size"], _excluded81$1 = ["children", "size"], _excluded82$1 = ["children", "size"], _excluded83$1 = ["children", "size"], _excluded84$1 = ["children", "size"], _excluded85$1 = ["children", "size"], _excluded86$1 = ["children", "size"], _excluded87$1 = ["children", "size"], _excluded88$1 = ["children", "size"], _excluded89$1 = ["children", "size"], _excluded90$1 = ["children", "size"], _excluded91$1 = ["children", "size"], _excluded92$1 = ["children", "size"], _excluded93$1 = ["children", "size"], _excluded94$1 = ["children", "size"], _excluded95$1 = ["children", "size"], _excluded96$1 = ["children", "size"], _excluded97$1 = ["children", "size"], _excluded98$1 = ["children", "size"], _excluded99$1 = ["children", "size"], _excluded100$1 = ["children", "size"], _excluded101$1 = ["children", "size"], _excluded102$1 = ["children", "size"], _excluded103$1 = ["children", "size"], _excluded104$1 = ["children", "size"], _excluded105$1 = ["children", "size"], _excluded106$1 = ["children", "size"], _excluded107$1 = ["children", "size"], _excluded108$1 = ["children", "size"], _excluded109$1 = ["children", "size"], _excluded110$1 = ["children", "size"], _excluded111$1 = ["children", "size"], _excluded112$1 = ["children", "size"], _excluded113$1 = ["children", "size"], _excluded114$1 = ["children", "size"], _excluded115$1 = ["children", "size"], _excluded116$1 = ["children", "size"], _excluded117$1 = ["children", "size"], _excluded118$1 = ["children", "size"], _excluded119$1 = ["children", "size"], _excluded120$1 = ["children", "size"], _excluded121$1 = ["children", "size"], _excluded122$1 = ["children", "size"], _excluded123$1 = ["children", "size"], _excluded124 = ["children", "size"], _excluded125 = ["children", "size"]; var TextWrap = /*#__PURE__*/React__default["default"].forwardRef(function TextWrap(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path$1 || (_path$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 23H12V25H4zM24.5232 14H4v2H24.5a3.5 3.5 0 010 7H18.8281l2.586-2.5859L20 19l-5 5 5 5 1.4141-1.4141L18.8281 25H24.533a5.5 5.5 0 00-.01-11zM4 5H28V7H4z" })), children); }); { TextWrap.propTypes = iconPropTypes; } var WatsonHealthTextAnnotationToggle = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthTextAnnotationToggle(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path2$1 || (_path2$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.537 13.76L26.24 10.463a1.5862 1.5862 0 00-2.24 0L10 24.4674V30h5.5326L29.537 16a1.5862 1.5862 0 000-2.24zM14.7042 28H12V25.2958l9.4409-9.4409 2.7042 2.7042zM25.5591 17.145L22.855 14.4409l2.2672-2.2672 2.7042 2.7042zM11 17L13 17 13 10 16 10 16 8 8 8 8 10 11 10 11 17z" })), _path3$1 || (_path3$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,20H4V4H20V8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H8Z" })), children); }); { WatsonHealthTextAnnotationToggle.propTypes = iconPropTypes; } var TextLink = /*#__PURE__*/React__default["default"].forwardRef(function TextLink(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4$1 || (_path4$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.7061,27.585a5.2615,5.2615,0,0,1-3.7227-8.9834l1.415,1.414a3.2638,3.2638,0,1,0,4.6153,4.6162l6.03-6.03a3.264,3.264,0,0,0-4.6162-4.6158l-1.414-1.414a5.2637,5.2637,0,0,1,7.4443,7.4438l-6.03,6.03A5.2461,5.2461,0,0,1,18.7061,27.585Z" })), _path5$1 || (_path5$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.2642 29.9971A5.2619 5.2619 0 016.542 21.0137l6.03-6.03a5.2636 5.2636 0 117.4438 7.4438l-1.414-1.414a3.2639 3.2639 0 10-4.6158-4.6158l-6.03 6.03a3.264 3.264 0 004.6157 4.6162l1.414 1.4141A5.2452 5.2452 0 0110.2642 29.9971zM2 10H10V12H2zM2 6H14V8H2zM2 2H14V4H2z" })), children); }); { TextLink.propTypes = iconPropTypes; } var TextLinkAnalysis = /*#__PURE__*/React__default["default"].forwardRef(function TextLinkAnalysis(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6$1 || (_path6$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z" })), _path7$1 || (_path7$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z" })), children); }); { TextLinkAnalysis.propTypes = iconPropTypes; } var TextMining = /*#__PURE__*/React__default["default"].forwardRef(function TextMining(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8$1 || (_path8$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 28H26V30H18zM18 24H30V26H18zM18 20H30V22H18z" })), _path9$1 || (_path9$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.001 26.473L16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" })), children); }); { TextMining.propTypes = iconPropTypes; } var TextMiningApplier = /*#__PURE__*/React__default["default"].forwardRef(function TextMiningApplier(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path10$1 || (_path10$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.001 26.473L16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z" })), _path11$1 || (_path11$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 19L27 24 20 29 20 19z" })), children); }); { TextMiningApplier.propTypes = iconPropTypes; } var Theater = /*#__PURE__*/React__default["default"].forwardRef(function Theater(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12$1 || (_path12$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 25a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0120 25zM24 14a2 2 0 102 2A1.9806 1.9806 0 0024 14zM16 14a2 2 0 102 2A1.9806 1.9806 0 0016 14z" })), _path13$1 || (_path13$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V14a10.01,10.01,0,0,0,8.8027,9.9214A9.9989,9.9989,0,0,0,30,20V10A2.0023,2.0023,0,0,0,28,8ZM4,14V4H20V8H12a2.0023,2.0023,0,0,0-2,2V20a9.9628,9.9628,0,0,0,.168,1.78A8.0081,8.0081,0,0,1,4,14Zm24,6a8,8,0,0,1-16,0V10H28Z" })), children); }); { Theater.propTypes = iconPropTypes; } var ThisSideUp = /*#__PURE__*/React__default["default"].forwardRef(function ThisSideUp(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path14$1 || (_path14$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2zM7 5.828L7 24 9 24 9 5.828 12.586 9.414 14 8 8 2 2 8 3.414 9.414 7 5.828zM23 5.828L23 24 25 24 25 5.828 28.586 9.414 30 8 24 2 18 8 19.414 9.414 23 5.828z" })), children); }); { ThisSideUp.propTypes = iconPropTypes; } var WatsonHealthThreshold = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthThreshold(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15$1 || (_path15$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM6,6H26V16H24v2h2v2H24v2h2v2H24v2H22V24H20v2H18V24H16v2H14V24H12v2H10V24H8v2H6Z" })), _path16$1 || (_path16$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 20H10V22H8zM12 20H14V22H12zM16 20H18V22H16zM20 20H22V22H20zM8 16H10V18H8zM16 16H18V18H16zM20 16H22V18H20zM20 12H22V14H20zM20 8H22V10H20z" })), children); }); { WatsonHealthThreshold.propTypes = iconPropTypes; } var Thumbnail_1 = /*#__PURE__*/React__default["default"].forwardRef(function Thumbnail_1(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17$1 || (_path17$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30H4a2 2 0 01-2-2V24a2 2 0 012-2H8a2 2 0 012 2v4A2 2 0 018 30zM4 24v4H8V24zM18 30H14a2 2 0 01-2-2V24a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0118 30zm-4-6v4h4V24zM28 30H24a2 2 0 01-2-2V24a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0128 30zm-4-6v4h4V24zM28 20H4a2 2 0 01-2-2V4A2 2 0 014 2H28a2 2 0 012 2V18A2 2 0 0128 20zM4 4V18H28V4z" })), children); }); { Thumbnail_1.propTypes = iconPropTypes; } var Thumbnail_2 = /*#__PURE__*/React__default["default"].forwardRef(function Thumbnail_2(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18$1 || (_path18$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 30H4a2 2 0 01-2-2V24a2 2 0 012-2H8a2 2 0 012 2v4A2 2 0 018 30zM4 24v4H8V24zM18 30H14a2 2 0 01-2-2V24a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0118 30zm-4-6v4h4V24zM28 30H24a2 2 0 01-2-2V24a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0128 30zm-4-6v4h4V24zM8 20H4a2 2 0 01-2-2V14a2 2 0 012-2H8a2 2 0 012 2v4A2 2 0 018 20zM4 14v4H8V14zM18 20H14a2 2 0 01-2-2V14a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0118 20zm-4-6v4h4V14zM28 20H24a2 2 0 01-2-2V14a2 2 0 012-2h4a2 2 0 012 2v4A2 2 0 0128 20zm-4-6v4h4V14zM8 10H4A2 2 0 012 8V4A2 2 0 014 2H8a2 2 0 012 2V8A2 2 0 018 10zM4 4V8H8V4zM18 10H14a2 2 0 01-2-2V4a2 2 0 012-2h4a2 2 0 012 2V8A2 2 0 0118 10zM14 4V8h4V4zM28 10H24a2 2 0 01-2-2V4a2 2 0 012-2h4a2 2 0 012 2V8A2 2 0 0128 10zM24 4V8h4V4z" })), children); }); { Thumbnail_2.propTypes = iconPropTypes; } var WatsonHealthThumbnailPreview = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthThumbnailPreview(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19$1 || (_path19$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H4a2.0023,2.0023,0,0,0-2,2V28a2.002,2.002,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V14A2.0027,2.0027,0,0,0,28,12ZM20,28H12V27a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Zm8,0H22V27a3.0033,3.0033,0,0,0-3-3H13a3.0033,3.0033,0,0,0-3,3v1H4V14H28.002Z" })), _path20$1 || (_path20$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 23a4 4 0 114-4A4.0042 4.0042 0 0116 23zm0-6a2 2 0 102 2A2.0023 2.0023 0 0016 17zM30 4V8a2.0027 2.0027 0 01-2 2H24a2.0027 2.0027 0 01-2-2V4a2.0027 2.0027 0 012-2h4A2.0027 2.0027 0 0130 4zM28 8l.002-4H24V8zM20 4V8a2.0027 2.0027 0 01-2 2H14a2.0023 2.0023 0 01-2-2V4a2.0023 2.0023 0 012-2h4A2.0027 2.0027 0 0120 4zM18 8l.002-4H14V8zM10 4V8a2.0023 2.0023 0 01-2 2H4A2.0023 2.0023 0 012 8V4A2.0023 2.0023 0 014 2H8A2.0023 2.0023 0 0110 4zM8 8l.0015-4H4V8z" })), children); }); { WatsonHealthThumbnailPreview.propTypes = iconPropTypes; } var ThumbsDown = /*#__PURE__*/React__default["default"].forwardRef(function ThumbsDown(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path21$1 || (_path21$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,16V9a7.0078,7.0078,0,0,0-7-7H2V16H8.4648l3.5774,5.3662.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H17a3.0033,3.0033,0,0,0,3-3V20h6A4.0045,4.0045,0,0,0,30,16ZM8,14H4V4H8Zm20,2a2.0025,2.0025,0,0,1-2,2H18v8a1.0008,1.0008,0,0,1-1,1H14.8672l-.9094-6.3662L10,14.6973V4H23a5.0057,5.0057,0,0,1,5,5Z" })), children); }); { ThumbsDown.propTypes = iconPropTypes; } var ThumbsDownFilled = /*#__PURE__*/React__default["default"].forwardRef(function ThumbsDownFilled(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22$1 || (_path22$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 2H7V16H2zM23 2H9V16.8027l3.0422 4.5635.8453 5.9165A2.0094 2.0094 0 0014.8672 29H15a3.0033 3.0033 0 003-3V20h8a4.0045 4.0045 0 004-4V9A7.0078 7.0078 0 0023 2z" })), children); }); { ThumbsDownFilled.propTypes = iconPropTypes; } var ThumbsUp = /*#__PURE__*/React__default["default"].forwardRef(function ThumbsUp(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path23$1 || (_path23$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,12H20V6a3.0033,3.0033,0,0,0-3-3H14.8672a2.0094,2.0094,0,0,0-1.98,1.7173l-.8453,5.9165L8.4648,16H2V30H23a7.0078,7.0078,0,0,0,7-7V16A4.0045,4.0045,0,0,0,26,12ZM8,28H4V18H8Zm20-5a5.0057,5.0057,0,0,1-5,5H10V17.3027l3.9578-5.9365L14.8672,5H17a1.0008,1.0008,0,0,1,1,1v8h8a2.0025,2.0025,0,0,1,2,2Z" })), children); }); { ThumbsUp.propTypes = iconPropTypes; } var ThumbsUpFilled = /*#__PURE__*/React__default["default"].forwardRef(function ThumbsUpFilled(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path24$1 || (_path24$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 16H7V30H2zM23 30H9V15.1973l3.0422-4.5635.8453-5.9165A2.0094 2.0094 0 0114.8672 3H15a3.0033 3.0033 0 013 3v6h8a4.0045 4.0045 0 014 4v7A7.0078 7.0078 0 0123 30z" })), children); }); { ThumbsUpFilled.propTypes = iconPropTypes; } var Thunderstorm = /*#__PURE__*/React__default["default"].forwardRef(function Thunderstorm(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25$1 || (_path25$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" })), _path26$1 || (_path26$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.87 30.5L14.13 29.5 17.28 24 11.28 24 16.13 15.5 17.87 16.5 14.72 22 20.72 22 15.87 30.5z" })), children); }); { Thunderstorm.propTypes = iconPropTypes; } var ThunderstormScattered = /*#__PURE__*/React__default["default"].forwardRef(function ThunderstormScattered(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path27$1 || (_path27$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.338 30L11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" })), _path28$1 || (_path28$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11Zm-4.0732,3.4893a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z" })), _path29$1 || (_path29$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.732 16.233H29.732V18.233H26.732z", transform: "rotate(-135 28.232 17.233)" })), _path30$1 || (_path30$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 10H32V12H29z" })), _path31$1 || (_path31$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.732 3.768H29.732V5.768H26.732z", transform: "rotate(-45 28.232 4.768)" })), _path32$1 || (_path32$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 0H22V3H20z" })), _path33$1 || (_path33$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.268 3.768H15.268V5.768H12.268z", transform: "rotate(-135 13.768 4.768)" })), children); }); { ThunderstormScattered.propTypes = iconPropTypes; } var ThunderstormScatteredNight = /*#__PURE__*/React__default["default"].forwardRef(function ThunderstormScatteredNight(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34$1 || (_path34$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13.338 30L11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z" })), _path35$1 || (_path35$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.844,13.0347a1.52,1.52,0,0,0-1.231-.8658,5.3562,5.3562,0,0,1-3.4094-1.7158A6.4652,6.4652,0,0,1,23.9187,4.06a1.6039,1.6039,0,0,0-.3-1.5459,1.4547,1.4547,0,0,0-1.3591-.4922l-.0191.0039a7.8544,7.8544,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9549,5.9549,0,0,0,5.88-7.1455,7.502,7.502,0,0,0,4.8669-3.3A1.537,1.537,0,0,0,29.844,13.0347Zm-5.6926,2.9179a5.9658,5.9658,0,0,0-3.502-2.7085A7.5084,7.5084,0,0,0,18.0288,9.55a6.0085,6.0085,0,0,1,3.77-5.3335,8.4582,8.4582,0,0,0,1.9392,7.5967A7.4037,7.4037,0,0,0,27.64,14.041,5.4419,5.4419,0,0,1,24.1514,15.9526Z" })), children); }); { ThunderstormScatteredNight.propTypes = iconPropTypes; } var ThunderstormSevere = /*#__PURE__*/React__default["default"].forwardRef(function ThunderstormSevere(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path36$1 || (_path36$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7887.8947l-2 4A.9981.9981 0 0121 30zM9 32a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7887.8947l-2 4A.9981.9981 0 019 32zM15.901 30.496L14.165 29.504 17.309 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496zM27.9516 15A4.399 4.399 0 0128 15.5 4.5049 4.5049 0 0123.5 20H23v2h.5A6.5075 6.5075 0 0030 15.5c0-.17-.0312-.333-.0444-.5z" })), _path37$1 || (_path37$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M25.75,8h-1.5V4h1.5ZM25,9a1,1,0,1,0,1,1A1,1,0,0,0,25,9Z" })), _path38$1 || (_path38$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.9115 11.9355L25.6283.3706a.7181.7181 0 00-1.2568 0L18.0883 11.9355A.72.72 0 0018.72 13H31.28A.72.72 0 0031.9115 11.9355zM24.25 4h1.5V8h-1.5zM25 11a1 1 0 111-1A1 1 0 0125 11zM8.144 11.019l.8154-.0639.0991-.812a6.9863 6.9863 0 019.97-5.45L20 2.9468A8.9777 8.9777 0 007.2 9.1362 6.4929 6.4929 0 007.43 21.9043L6.1059 24.5527a1 1 0 101.7885.8946l2-4a1 1 0 00-.4471-1.3418A.9786.9786 0 009 20.01V20H8.5a4.4975 4.4975 0 01-.3559-8.981z" })), children); }); { ThunderstormSevere.propTypes = iconPropTypes; } var ThunderstormStrong = /*#__PURE__*/React__default["default"].forwardRef(function ThunderstormStrong(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39$1 || (_path39$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 0121 30zM9 32a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 019 32zM15.901 30.496L14.165 29.504 17.31 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z" })), _path40$1 || (_path40$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4929,6.4929,0,0,0,.23,12.7681L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20H23v2h.5A6.4974,6.4974,0,0,0,24.8008,9.1362Z" })), children); }); { ThunderstormStrong.propTypes = iconPropTypes; } var Ticket = /*#__PURE__*/React__default["default"].forwardRef(function Ticket(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41$1 || (_path41$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,14a1,1,0,0,0,1-1V8a2,2,0,0,0-2-2H4A2,2,0,0,0,2,8v5a1,1,0,0,0,1,1,2,2,0,0,1,0,4,1,1,0,0,0-1,1v5a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19a1,1,0,0,0-1-1,2,2,0,0,1,0-4Zm-1,5.87V24H21V21H19v3H4V19.87a4,4,0,0,0,0-7.74V8H19v3h2V8h7v4.13a4,4,0,0,0,0,7.74Z" })), _path42$1 || (_path42$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 13H21V19H19z" })), children); }); { Ticket.propTypes = iconPropTypes; } var Tides = /*#__PURE__*/React__default["default"].forwardRef(function Tides(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43$1 || (_path43$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 7L9 2 4 7 5.413 8.416 8 5.833 8 14 10 14 10 5.833 12.586 8.414 14 7zM26.586 7.586L24 10.167 24 2 22 2 22 10.167 19.413 7.584 18 9 23 14 28 9 26.586 7.586zM20 20a3.4376 3.4376 0 01-3.0513-2.3164A1.007 1.007 0 0016 17a.9894.9894 0 00-.9468.6787A3.44 3.44 0 0112 20a3.4376 3.4376 0 01-3.0513-2.3164A1.007 1.007 0 008 17a.971.971 0 00-.9468.6787A3.44 3.44 0 014 20H2v2H4a4.9316 4.9316 0 004-1.9873 5.0192 5.0192 0 008 0A4.9316 4.9316 0 0020 22H30V20zM28 28a3.4376 3.4376 0 01-3.0513-2.3164A1.007 1.007 0 0024 25a.9894.9894 0 00-.9468.6787A3.44 3.44 0 0120 28a3.4376 3.4376 0 01-3.0513-2.3164A1.007 1.007 0 0016 25a.971.971 0 00-.9468.6787A3.44 3.44 0 0112 28H2v2H12a4.9316 4.9316 0 004-1.9873 5.0192 5.0192 0 008 0A4.9316 4.9316 0 0028 30h2V28z" })), children); }); { Tides.propTypes = iconPropTypes; } var Tif = /*#__PURE__*/React__default["default"].forwardRef(function Tif(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path44$1 || (_path44$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 11L30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11zM12 11L15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11zM2 11L5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z" })), children); }); { Tif.propTypes = iconPropTypes; } var Time = /*#__PURE__*/React__default["default"].forwardRef(function Time(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25$1); if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path45$1 || (_path45$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,19c-5,0-9-4-9-9s4-9,9-9s9,4,9,9S15,19,10,19z M10,2.3c-4.3,0-7.7,3.5-7.7,7.7s3.5,7.7,7.7,7.7s7.7-3.5,7.7-7.7 S14.3,2.3,10,2.3z" })), _path46$1 || (_path46$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 13.9L9.4 10.3 9.4 4 10.6 4 10.6 9.7 13.9 13z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path47$1 || (_path47$1 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path48$1 || (_path48$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.59 22L15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z" })), children); }); { Time.propTypes = iconPropTypes; } var TimePlot = /*#__PURE__*/React__default["default"].forwardRef(function TimePlot(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49$1 || (_path49$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.586 13L21 10.414 21 6 23 6 23 9.586 25 11.586 23.586 13z" })), _path50$1 || (_path50$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,22,18ZM22,4a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,22,4Z" })), _path51$1 || (_path51$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.63,18l7,6H30V22H16.37l-7-6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V18Z" })), children); }); { TimePlot.propTypes = iconPropTypes; } var Timer = /*#__PURE__*/React__default["default"].forwardRef(function Timer(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path52$1 || (_path52$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 11H17V20H15zM13 2H19V4H13z" })), _path53$1 || (_path53$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,9,26.58,7.59,24.33,9.84a10.94,10.94,0,1,0,1.18,1.65ZM16,26a9,9,0,1,1,9-9A9,9,0,0,1,16,26Z" })), children); }); { Timer.propTypes = iconPropTypes; } var ToolBox = /*#__PURE__*/React__default["default"].forwardRef(function ToolBox(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path54$1 || (_path54$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,9H24V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6V9H5a3,3,0,0,0-3,3V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A3,3,0,0,0,27,9ZM10,6H22V9H10ZM28,26H4V17h8v5h8V17h8ZM14,17h4v3H14ZM4,15V12a1,1,0,0,1,1-1H27a1,1,0,0,1,1,1v3Z" })), children); }); { ToolBox.propTypes = iconPropTypes; } var ToolKit = /*#__PURE__*/React__default["default"].forwardRef(function ToolKit(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path55$1 || (_path55$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.9141,24.5l4.257-4.2568-1.414-1.4141L7.5,23.0859l-.793-.7929a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l3,3a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414ZM5,28.5859,3.4141,27,6,24.4141,7.5859,26Z" })), _path56$1 || (_path56$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30a6.0067,6.0067,0,0,1-6-6,5.84,5.84,0,0,1,.2109-1.5469l-8.664-8.6638A5.8483,5.8483,0,0,1,8,14,5.9757,5.9757,0,0,1,2.4228,5.8164l.5577-1.4219L6.293,7.707a1.0233,1.0233,0,0,0,1.4135,0,.999.999,0,0,0,0-1.4141L4.3936,2.979l1.4233-.5571A5.9772,5.9772,0,0,1,14,8a5.84,5.84,0,0,1-.2109,1.5469l8.664,8.6635A5.8548,5.8548,0,0,1,24,18a5.9755,5.9755,0,0,1,5.5771,8.1836L29.02,27.6055,25.707,24.293a1.0233,1.0233,0,0,0-1.4135,0,.999.999,0,0,0-.0005,1.4141L27.6055,29.02l-1.4219.5579A5.96,5.96,0,0,1,24,30ZM10.0625,11.4763,20.5234,21.9375l-.2392.6094A3.9754,3.9754,0,0,0,23.75,27.9922l-.8711-.8711a2.9992,2.9992,0,0,1,0-4.2424,3.0721,3.0721,0,0,1,4.2427.0005l.8706.8708a3.9759,3.9759,0,0,0-5.4458-3.4658l-.6094.2385-10.46-10.46.2392-.6094A3.9755,3.9755,0,0,0,8.2505,4.0078l.8706.8711a2.9992,2.9992,0,0,1,0,4.2424,3.0721,3.0721,0,0,1-4.2427-.0005L4.0078,8.25a3.975,3.975,0,0,0,5.4453,3.4656Z" })), _path57$1 || (_path57$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.1226,2.85a3.0716,3.0716,0,0,0-4.2422,0L17.4,10.33l1.4141,1.414,7.48-7.48a1.0244,1.0244,0,0,1,1.4141,0,1.002,1.002,0,0,1,0,1.4145l-7.48,7.48,1.414,1.4141,7.48-7.4795A3.0031,3.0031,0,0,0,29.1226,2.85Z" })), children); }); { ToolKit.propTypes = iconPropTypes; } var Tools = /*#__PURE__*/React__default["default"].forwardRef(function Tools(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path58$1 || (_path58$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.1,2A9.8,9.8,0,0,0,6.7,3.6L13.1,10a2.1,2.1,0,0,1,.2,3,2.1,2.1,0,0,1-3-.2L3.7,6.4A9.84,9.84,0,0,0,2,12.1,10.14,10.14,0,0,0,12.1,22.2a10.9,10.9,0,0,0,2.6-.3l6.7,6.7a5,5,0,0,0,7.1-7.1l-6.7-6.7a10.9,10.9,0,0,0,.3-2.6A10,10,0,0,0,12.1,2Zm8,10.1a7.61,7.61,0,0,1-.3,2.1l-.3,1.1.8.8L27,22.8a2.88,2.88,0,0,1,.9,2.1A2.72,2.72,0,0,1,27,27a2.9,2.9,0,0,1-4.2,0l-6.7-6.7-.8-.8-1.1.3a7.61,7.61,0,0,1-2.1.3,8.27,8.27,0,0,1-5.7-2.3A7.63,7.63,0,0,1,4,12.1a8.33,8.33,0,0,1,.3-2.2l4.4,4.4a4.14,4.14,0,0,0,5.9.2,4.14,4.14,0,0,0-.2-5.9L10,4.2a6.45,6.45,0,0,1,2-.3,8.27,8.27,0,0,1,5.7,2.3A8.49,8.49,0,0,1,20.1,12.1Z" })), children); }); { Tools.propTypes = iconPropTypes; } var ToolsAlt = /*#__PURE__*/React__default["default"].forwardRef(function ToolsAlt(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59$1 || (_path59$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.1,16l6.3-6.3c0.8-0.8,0.8-2,0-2.8l-4.2-4.2c-0.8-0.8-2-0.8-2.8,0L16,8.9L9.7,2.6c-0.8-0.8-2-0.8-2.8,0L2.6,6.8 c-0.8,0.8-0.8,2,0,2.8L8.9,16L2,22.9V30h7.1l6.9-6.9l6.3,6.3c0.8,0.8,2,0.8,2.8,0l4.2-4.2c0.8-0.8,0.8-2,0-2.8L23.1,16z M23.8,4 L28,8.2l-6.3,6.3l-4.2-4.2L23.8,4z M8.2,28H4v-4.2l6.3-6.3l4.2,4.2L8.2,28z M23.8,28L4,8.2L8.2,4l3.5,3.5L9.6,9.6l1.4,1.4l2.1-2.1 l4.2,4.2l-2.1,2.1l1.4,1.4l2.1-2.1l4.2,4.2L21,20.9l1.4,1.4l2.1-2.1l3.5,3.5L23.8,28z" })), children); }); { ToolsAlt.propTypes = iconPropTypes; } var Tornado = /*#__PURE__*/React__default["default"].forwardRef(function Tornado(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60$1 || (_path60$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 26H20V28H16zM12 22H18V24H12zM8 18H18V20H8zM8 14H20V16H8zM10 10H24V12H10zM8 6H26V8H8z" })), children); }); { Tornado.propTypes = iconPropTypes; } var TornadoWarning = /*#__PURE__*/React__default["default"].forwardRef(function TornadoWarning(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61$1 || (_path61$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 4H18V6H2zM4 8H16V10H4zM2 12H14V14H2zM2 16H12V18H2zM4 20H12V22H4zM8 24H14V26H8zM12 28H16V30H12z" })), _path62$1 || (_path62$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z" })), _path63$1 || (_path63$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" })), children); }); { TornadoWarning.propTypes = iconPropTypes; } var Touch_1 = /*#__PURE__*/React__default["default"].forwardRef(function Touch_1(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path64$1 || (_path64$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,8H18A5,5,0,0,0,8,8H6A7,7,0,0,1,20,8Z" })), _path65$1 || (_path65$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,15a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,21,14a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,16,13.18V8h0a3,3,0,0,0-6,0V19.1L7.77,17.58h0A2.93,2.93,0,0,0,6,17a3,3,0,0,0-2.12,5.13l8,7.3A6.16,6.16,0,0,0,16,31h5a7,7,0,0,0,7-7V18A3,3,0,0,0,25,15Zm1,9a5,5,0,0,1-5,5H16a4.17,4.17,0,0,1-2.76-1L5.29,20.7A1,1,0,0,1,5,20a1,1,0,0,1,1.6-.8L12,22.9V8a1,1,0,0,1,2,0h0V19h2V16a1,1,0,0,1,2,0v3h2V17a1,1,0,0,1,2,0v2h2V18a1,1,0,0,1,2,0Z" })), children); }); { Touch_1.propTypes = iconPropTypes; } var Touch_1Filled = /*#__PURE__*/React__default["default"].forwardRef(function Touch_1Filled(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66$1 || (_path66$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,2A6.0067,6.0067,0,0,0,7,8H9a4,4,0,0,1,8,0h2A6.0067,6.0067,0,0,0,13,2Z" })), _path67$1 || (_path67$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,30H16.5606a4,4,0,0,1-2.7088-1.0566L4.6513,20.4771A2.0018,2.0018,0,0,1,4.77,17.4219a2.0743,2.0743,0,0,1,2.6578.1728L11,20.8569V8a2,2,0,0,1,4,0v7a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v7A6,6,0,0,1,21,30Z" })), children); }); { Touch_1Filled.propTypes = iconPropTypes; } var Touch_1Down = /*#__PURE__*/React__default["default"].forwardRef(function Touch_1Down(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path68$1 || (_path68$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,24H18A5,5,0,0,1,8,24H6a7,7,0,0,0,14,0Z" })), _path69$1 || (_path69$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,14V8a7.0085,7.0085,0,0,0-7-7H16a6.1457,6.1457,0,0,0-4.1055,1.5664L3.8833,9.874a2.9986,2.9986,0,0,0,3.881,4.55l.0008.0012L10,12.8955V24a3,3,0,0,0,6,0h0l0-5.1843a2.939,2.939,0,0,0,3.5294-1.2171A2.963,2.963,0,0,0,21,18a2.9936,2.9936,0,0,0,2.5292-1.4014A2.963,2.963,0,0,0,25,17,3.0033,3.0033,0,0,0,28,14Zm-2,0a1,1,0,0,1-2,0V13H22v2a1,1,0,0,1-2,0V13H18v3a1,1,0,0,1-2,0V13H14V24h.0005A1,1,0,0,1,12,24V9.1045L6.6,12.8008a.9993.9993,0,0,1-1.3081-1.5044l7.9507-7.2515A4.1483,4.1483,0,0,1,16,3h5a5.0059,5.0059,0,0,1,5,5Z" })), children); }); { Touch_1Down.propTypes = iconPropTypes; } var Touch_1DownFilled = /*#__PURE__*/React__default["default"].forwardRef(function Touch_1DownFilled(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path70$1 || (_path70$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,30a6.0067,6.0067,0,0,1-6-6H9a4,4,0,0,0,8,0h2A6.0067,6.0067,0,0,1,13,30Z" })), _path71$1 || (_path71$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,2H16.5606a4,4,0,0,0-2.7088,1.0566L4.6513,11.5229A2.0018,2.0018,0,0,0,4.77,14.5781a2.0743,2.0743,0,0,0,2.6578-.1728L11,11.1431V24a2,2,0,0,0,4,0V17a2,2,0,0,0,4,0V16a2,2,0,0,0,4,0V15a2,2,0,0,0,4,0V8A6,6,0,0,0,21,2Z" })), children); }); { Touch_1DownFilled.propTypes = iconPropTypes; } var Touch_2 = /*#__PURE__*/React__default["default"].forwardRef(function Touch_2(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72$1 || (_path72$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z" })), _path73$1 || (_path73$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,28H23V15A7,7,0,1,0,9,15V28H7V15a9,9,0,0,1,18,0Z" })), _path74$1 || (_path74$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,20H11V15a5,5,0,0,1,10,0Zm-8-2h6V15a3,3,0,0,0-6,0Z" })), children); }); { Touch_2.propTypes = iconPropTypes; } var Touch_2Filled = /*#__PURE__*/React__default["default"].forwardRef(function Touch_2Filled(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75$1 || (_path75$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,12a3.0033,3.0033,0,0,0-3,3v3h6V15A3.0033,3.0033,0,0,0,16,12Z" })), _path76$1 || (_path76$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,6a9.0092,9.0092,0,0,0-9,9V28H25V15A9.01,9.01,0,0,0,16,6Zm5,14H11V15a5,5,0,0,1,10,0Z" })), _path77$1 || (_path77$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z" })), children); }); { Touch_2Filled.propTypes = iconPropTypes; } var TouchInteraction = /*#__PURE__*/React__default["default"].forwardRef(function TouchInteraction(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path78$1 || (_path78$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,21V20a1,1,0,0,1,2,0V30h2V20a3.0033,3.0033,0,0,0-3-3,2.964,2.964,0,0,0-1.4708.4014,2.9541,2.9541,0,0,0-4-1A2.9934,2.9934,0,0,0,19,15a2.96,2.96,0,0,0-1,.1846L18,10h0a3,3,0,0,0-6,0V21.1045L9.7651,19.5752l-.0008.001a2.999,2.999,0,0,0-3.881,4.55L12.3223,30l1.3479-1.478L7.2915,22.7036A.9908.9908,0,0,1,7,22a1.0005,1.0005,0,0,1,1.6-.8008L14,24.8955V10a1,1,0,0,1,2,0h0V21h2V18a1,1,0,0,1,2,0v3h2V19a1,1,0,0,1,2,0v2Z" })), _path79$1 || (_path79$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,12H22V10h6V4H4v6H8v2H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12Z" })), children); }); { TouchInteraction.propTypes = iconPropTypes; } var TrafficEvent = /*#__PURE__*/React__default["default"].forwardRef(function TrafficEvent(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path80$1 || (_path80$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 21H17V23H11z" })), _path81$1 || (_path81$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.2456,8,25.96,14H30V12H27.4688l-1.3-4.5488A2.0077,2.0077,0,0,0,24.2456,6H22.8972l-.7287-2.5488A2.0077,2.0077,0,0,0,20.2456,2H7.7544A2.0078,2.0078,0,0,0,5.8315,3.4507L4.5312,8H2v2H6.04L7.7544,4H20.2456l.5715,2H11.7544A2.008,2.008,0,0,0,9.8315,7.45L8.8171,11H7.7144a1.9981,1.9981,0,0,0-1.8916,1.3516L4.5715,16H2v2H4v7a2.0025,2.0025,0,0,0,2,2v3H8V27H20v3h2V27a2.0025,2.0025,0,0,0,2-2V18h2V16H23.4287l-1.251-3.6475A1.9988,1.9988,0,0,0,20.2856,11H10.897l.8574-3ZM22,19v2H20v2h2v2H6V23H8V21H6V19Zm-.3429-2H6.3428l1.3716-4H20.2856Z" })), children); }); { TrafficEvent.propTypes = iconPropTypes; } var TrafficFlow = /*#__PURE__*/React__default["default"].forwardRef(function TrafficFlow(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path82$1 || (_path82$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 8L22 4 18 8 19.41 9.42 21 7.83 21 18 23 18 23 7.83 24.58 9.41 26 8zM12.59 22.58L11 24.17 11 14 9 14 9 24.17 7.42 22.59 6 24 10 28 14 24 12.59 22.58zM2 2H4V30H2zM28 2H30V30H28zM15 2H17V6H15zM15 10H17V14H15zM15 18H17V22H15zM15 26H17V30H15z" })), children); }); { TrafficFlow.propTypes = iconPropTypes; } var TrafficFlowIncident = /*#__PURE__*/React__default["default"].forwardRef(function TrafficFlowIncident(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83$1 || (_path83$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 9.42L24.59 8 22.005 10.585 22 10.58 21.995 10.585 19.42 8.01 18 9.42 20.58 12 18 14.58 19.41 16 21.995 13.415 22 13.42 22.005 13.415 24.58 15.99 26 14.58 23.42 12 26 9.42zM14 17.42L12.59 16 10.005 18.585 10 18.58 9.995 18.585 7.42 16.01 6 17.42 8.58 20 6 22.58 7.41 24 9.995 21.415 10 21.42 10.005 21.415 12.58 23.99 14 22.58 11.42 20 14 17.42zM2 2H4V30H2zM28 2H30V30H28zM15 2H17V6H15zM15 10H17V14H15zM15 18H17V22H15zM15 26H17V30H15z" })), children); }); { TrafficFlowIncident.propTypes = iconPropTypes; } var TrafficIncident = /*#__PURE__*/React__default["default"].forwardRef(function TrafficIncident(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path84$1 || (_path84$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 28H30V30H2z" })), _path85$1 || (_path85$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.314 11.514H17.314V13.514H11.314z", transform: "rotate(-45 14.314 12.514)" })), _path86$1 || (_path86$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.0815,23.4329l4.1168,2.3176a2.009,2.009,0,0,0,2.3853-.3344l8.8326-8.8326a2.0088,2.0088,0,0,0,.334-2.3856l-2.2977-4.136,1.79-1.79L25.8283,6.8577,24.4141,8.2719l-4.95-4.95a2.0026,2.0026,0,0,0-2.8285,0L14.5146,1.2008,13.1,2.615l2.1213,2.1214L6.7364,13.2216,4.6151,11.1,3.2009,12.5145l2.1213,2.1213a2.0025,2.0025,0,0,0,0,2.8285l4.95,4.95L8.8577,23.8282l1.4143,1.4142Zm13.92-8.2636-8.8328,8.8328-4.5456-2.5255L23.4767,10.6235ZM9.5649,18.8785l1.4142-1.4142L9.5649,16.05,8.1506,17.4643,6.7364,16.05,18.05,4.7364l1.4143,1.4142L18.05,7.5648,19.4644,8.979l1.4142-1.4142L22.2928,8.979,10.9791,20.2927Z" })), children); }); { TrafficIncident.propTypes = iconPropTypes; } var TrafficWeatherIncident = /*#__PURE__*/React__default["default"].forwardRef(function TrafficWeatherIncident(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87$1 || (_path87$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 24H4V30H2zM28 2H30V30H28zM15 2H17V6H15zM15 10H17V14H15zM15 18H17V22H15zM15 26H17V30H15zM6 12A3.8978 3.8978 0 012 8.223a3.9017 3.9017 0 01.6533-2.0639L5.17 2.4141a1.0381 1.0381 0 011.6592 0L9.3154 6.11A3.9693 3.9693 0 0110 8.223 3.8978 3.8978 0 016 12zm0-7.2368L4.3438 7.2257A1.89 1.89 0 004 8.223a1.9007 1.9007 0 002 1.7775A1.9007 1.9007 0 008 8.223a1.98 1.98 0 00-.375-1.0466zM11 11.7627L9.3438 14.2253A1.89 1.89 0 009 15.2226 1.9007 1.9007 0 0011 17a1.9007 1.9007 0 002-1.7774 1.98 1.98 0 00-.375-1.0467zM6 15.7627L4.3438 18.2253A1.89 1.89 0 004 19.2226 1.9007 1.9007 0 006 21a1.9007 1.9007 0 002-1.7774 1.98 1.98 0 00-.375-1.0467z" })), children); }); { TrafficWeatherIncident.propTypes = iconPropTypes; } var TrafficCone = /*#__PURE__*/React__default["default"].forwardRef(function TrafficCone(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path88$1 || (_path88$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.7957,28,18.9746,2.7754A1,1,0,0,0,18,2H14a1,1,0,0,0-.9746.7754L7.2043,28H4v2H28V28ZM19.9736,16H12.0264l.9229-4h6.1014Zm.4616,2,.923,4H10.6418l.923-4Zm-5.64-14h2.4092l1.3845,6H13.4109ZM10.18,24H21.82l.923,4H9.2573Z" })), children); }); { TrafficCone.propTypes = iconPropTypes; } var Train = /*#__PURE__*/React__default["default"].forwardRef(function Train(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89$1 || (_path89$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,3H11A5.0057,5.0057,0,0,0,6,8V20a4.99,4.99,0,0,0,3.582,4.77L7.7693,29H9.9451l1.7143-4h8.6812l1.7143,4h2.1758L22.418,24.77A4.99,4.99,0,0,0,26,20V8A5.0057,5.0057,0,0,0,21,3ZM11,5H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,5ZM24,19H21v2h2.8157A2.9948,2.9948,0,0,1,21,23H11a2.9948,2.9948,0,0,1-2.8157-2H11V19H8V17H24Zm0-4H8V9H24Z" })), children); }); { Train.propTypes = iconPropTypes; } var TrainHeart = /*#__PURE__*/React__default["default"].forwardRef(function TrainHeart(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path90$1 || (_path90$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.303 2a2.6613 2.6613 0 00-1.9079.8059l-.3932.4053-.397-.4053a2.6612 2.6612 0 00-3.8157 0 2.7991 2.7991 0 000 3.8963L25.0019 11l4.2089-4.2978a2.7991 2.7991 0 000-3.8963A2.6613 2.6613 0 0027.303 2zM22 13v3H6V10h9V8H6.1843A2.9948 2.9948 0 019 6h6V4H9A5.0057 5.0057 0 004 9V21a4.99 4.99 0 003.582 4.77L5.7693 30H7.9451l1.7143-4h8.6812l1.7143 4h2.1758L20.418 25.77A4.99 4.99 0 0024 21V13zm0 7H19v2h2.8157A2.9948 2.9948 0 0119 24H9a2.9948 2.9948 0 01-2.8157-2H9V20H6V18H22z" })), children); }); { TrainHeart.propTypes = iconPropTypes; } var TrainProfile = /*#__PURE__*/React__default["default"].forwardRef(function TrainProfile(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path91$1 || (_path91$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 25L2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25zM8 16H2V14H8V12H2V10H8a2.0021 2.0021 0 012 2v2A2.0021 2.0021 0 018 16z" })), _path92$1 || (_path92$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.55,14.2305,19.97,6.3657A8.9775,8.9775,0,0,0,13.8882,4H2V6H12v4a2.0023,2.0023,0,0,0,2,2h9.1565l4.0417,3.7051A2.4723,2.4723,0,0,1,25.5273,20H2v2H25.5273a4.4726,4.4726,0,0,0,3.0225-7.77ZM14,10V6.0054A6.9774,6.9774,0,0,1,18.6182,7.84L20.9746,10Z" })), children); }); { TrainProfile.propTypes = iconPropTypes; } var TrainSpeed = /*#__PURE__*/React__default["default"].forwardRef(function TrainSpeed(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path93$1 || (_path93$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 25L2 25 2 27 4 27 4 29 6 29 6 27 11 27 11 29 13 29 13 27 18 27 18 29 20 29 20 27 25 27 25 29 27 29 27 27 30 27 30 25zM29.7144 16.59L18.1494 8.64A14.9327 14.9327 0 009.6519 6H2V8H9.6519a12.9459 12.9459 0 017.3647 2.2871L18.0532 11H9v2H20.9624l7.6187 5.2378A.966.966 0 0128.0342 20H2v2H28.0342a2.9661 2.9661 0 001.68-5.41z" })), children); }); { TrainSpeed.propTypes = iconPropTypes; } var TrainTicket = /*#__PURE__*/React__default["default"].forwardRef(function TrainTicket(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94$1 || (_path94$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.1257,7.125a1.125,1.125,0,1,1,0-2.25h.875V2h-12V4.875h.875a1.125,1.125,0,0,1,0,2.25h-.875V10h12V7.125Z" })), _path95$1 || (_path95$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.0007,13v3h-16V10h9V8H6.185A2.9948,2.9948,0,0,1,9.0007,6h6V4h-6a5.0057,5.0057,0,0,0-5,5V21a4.99,4.99,0,0,0,3.582,4.77L5.77,30H7.9458L9.66,26h8.6812l1.7143,4h2.1758l-1.8127-4.23A4.99,4.99,0,0,0,24.0007,21V13Zm0,7h-3v2h2.8157a2.9948,2.9948,0,0,1-2.8157,2h-10A2.9948,2.9948,0,0,1,6.185,22H9.0007V20h-3V18h16Z" })), children); }); { TrainTicket.propTypes = iconPropTypes; } var TrainTime = /*#__PURE__*/React__default["default"].forwardRef(function TrainTime(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path96$1 || (_path96$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M25.496 10.088L22.874 7.466 22.874 3 25.124 3 25.124 6.534 27.088 8.498 25.496 10.088z" })), _path97$1 || (_path97$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,1a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,24,1Zm1.4971,9.0884L22.875,7.4658V3h2.25V6.5342l1.9639,1.9634Z" })), _path98$1 || (_path98$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,16V10h9V8H6.1843A2.9948,2.9948,0,0,1,9,6h6V4H9A5.0057,5.0057,0,0,0,4,9V21a4.99,4.99,0,0,0,3.582,4.77L5.7693,30H7.9451l1.7143-4h8.6812l1.7143,4h2.1758L20.418,25.77A4.99,4.99,0,0,0,24,21V16Zm16,4H19v2h2.8157A2.9948,2.9948,0,0,1,19,24H9a2.9948,2.9948,0,0,1-2.8157-2H9V20H6V18H22Z" })), children); }); { TrainTime.propTypes = iconPropTypes; } var Tram = /*#__PURE__*/React__default["default"].forwardRef(function Tram(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path99$1 || (_path99$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,6H17V4h6V2H9V4h6V6H11a5.0057,5.0057,0,0,0-5,5V22a4.99,4.99,0,0,0,3.582,4.77L8.1978,30h2.1757l1.2859-3h8.6812l1.2859,3h2.1757L22.418,26.77A4.99,4.99,0,0,0,26,22V11A5.0057,5.0057,0,0,0,21,6ZM11,8H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,8ZM24,21H21v2h2.8157A2.9948,2.9948,0,0,1,21,25H11a2.9948,2.9948,0,0,1-2.8157-2H11V21H8V19H24Zm0-4H8V12H24Z" })), children); }); { Tram.propTypes = iconPropTypes; } var Transgender = /*#__PURE__*/React__default["default"].forwardRef(function Transgender(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path100$1 || (_path100$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,2V4h4.5859l-6.4016,6.4014a6.9474,6.9474,0,0,0-8.3686,0L10.4143,9,13,6.4141,11.5857,5,9,7.5859,5.4141,4H10V2H2v8H4V5.4141L7.5859,9,5,11.5854,6.4143,13,9,10.4141l1.4014,1.4013A6.9785,6.9785,0,0,0,15,22.92V25H11v2h4v3h2V27h4V25H17V22.92a6.9785,6.9785,0,0,0,4.5984-11.1045L28,5.4141V10h2V2ZM16,21a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,16,21Z" })), children); }); { Transgender.propTypes = iconPropTypes; } var Translate = /*#__PURE__*/React__default["default"].forwardRef(function Translate(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path101$1 || (_path101$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.85 29H30L24 14H21.65l-6 15H17.8l1.6-4h6.85zM20.2 23l2.62-6.56L25.45 23zM18 7V5H11V2H9V5H2V7H12.74a14.71 14.71 0 01-3.19 6.18A13.5 13.5 0 017.26 9H5.16a16.47 16.47 0 003 5.58A16.84 16.84 0 013 18l.75 1.86A18.47 18.47 0 009.53 16a16.92 16.92 0 005.76 3.84L16 18a14.48 14.48 0 01-5.12-3.37A17.64 17.64 0 0014.8 7z" })), children); }); { Translate.propTypes = iconPropTypes; } var TransmissionLte = /*#__PURE__*/React__default["default"].forwardRef(function TransmissionLte(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path102$1 || (_path102$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.57 30l.9333-2h8.9928l.9333 2h2.2072L17 15.7778V11H15v4.7778L8.3631 30zM16 18.3647L17.6965 22h-3.393zM13.37 24h5.26l.9333 2H12.4369zM10.7832 9.3325a7.0007 7.0007 0 0110.4341 0l-1.49 1.334a5 5 0 00-7.4537 0z" })), _path103$1 || (_path103$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.1992,6.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,7.6a9.0009,9.0009,0,0,0-14.4014,0Z" })), children); }); { TransmissionLte.propTypes = iconPropTypes; } var Transpose = /*#__PURE__*/React__default["default"].forwardRef(function Transpose(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path104$1 || (_path104$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 26H14V24h5a5.0055 5.0055 0 005-5V14h2v5A7.0078 7.0078 0 0119 26zM8 30H4a2.0023 2.0023 0 01-2-2V14a2.0023 2.0023 0 012-2H8a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 018 30zM4 14V28H8V14zM28 10H14a2.0023 2.0023 0 01-2-2V4a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V8A2.0023 2.0023 0 0128 10zM14 4V8H28V4z" })), children); }); { Transpose.propTypes = iconPropTypes; } var TrashCan = /*#__PURE__*/React__default["default"].forwardRef(function TrashCan(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105$1 || (_path105$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 12H14V24H12zM18 12H20V24H18z" })), _path106$1 || (_path106$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6V8H6V28a2 2 0 002 2H24a2 2 0 002-2V8h2V6zM8 28V8H24V28zM12 2H20V4H12z" })), children); }); { TrashCan.propTypes = iconPropTypes; } var Tree = /*#__PURE__*/React__default["default"].forwardRef(function Tree(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path107$1 || (_path107$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,30H9V28h3V15.5664L8.4854,13.4575l1.0292-1.7148,3.5147,2.1084A2.0115,2.0115,0,0,1,14,15.5664V28A2.0023,2.0023,0,0,1,12,30Z" })), _path108$1 || (_path108$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,30H19a2.0024,2.0024,0,0,1-2-2V17h6a4.0008,4.0008,0,0,0,3.981-4.396A4.1489,4.1489,0,0,0,22.7853,9H21.2016L21.025,8.221C20.452,5.6961,18.0308,4,15,4A6.02,6.02,0,0,0,9.5585,7.4859L9.25,8.1531l-.863-.1143A2.771,2.771,0,0,0,8,8a4,4,0,1,0,0,8v2A6,6,0,1,1,8,6c.0264,0,.0525,0,.0786.001A8.0271,8.0271,0,0,1,15,2c3.6788,0,6.6923,1.9776,7.7516,5h.0337a6.1641,6.1641,0,0,1,6.1872,5.4141A6.0011,6.0011,0,0,1,23,19l-4,0v9h3Z" })), children); }); { Tree.propTypes = iconPropTypes; } var TreeFallRisk = /*#__PURE__*/React__default["default"].forwardRef(function TreeFallRisk(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109$1 || (_path109$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z", "data-icon-path": "inner-path" })), _path110$1 || (_path110$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9115 13.9355L23.6284 2.3706a.7181.7181 0 00-1.2568 0L16.0885 13.9355A.72.72 0 0016.72 15H29.28A.72.72 0 0029.9115 13.9355zM22.25 6h1.5v4h-1.5zM23 13a1 1 0 111-1A1 1 0 0123 13zM26 19V17H17V28a2.0027 2.0027 0 002 2h3V28H19V19zM12 30H9V28h3V15.5664L8.4854 13.4575l1.0292-1.7148 3.5147 2.1084A2.0115 2.0115 0 0114 15.5664V28A2.0024 2.0024 0 0112 30z" })), _path111$1 || (_path111$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.6638,5.0059l.96-1.7671A8.9324,8.9324,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4,6.8916,6.8916,0,0,1,18.6638,5.0059Z" })), children); }); { TreeFallRisk.propTypes = iconPropTypes; } var TreeView = /*#__PURE__*/React__default["default"].forwardRef(function TreeView(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path112$1 || (_path112$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,20V12H22v3H17V7a2,2,0,0,0-2-2H10V2H2v8h8V7h5V25a2,2,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3ZM8,8H4V4H8ZM24,24h4v4H24Zm0-10h4v4H24Z" })), children); }); { TreeView.propTypes = iconPropTypes; } var TreeViewAlt = /*#__PURE__*/React__default["default"].forwardRef(function TreeViewAlt(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113$1 || (_path113$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,9h6a2,2,0,0,0,2-2V3a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2V4H11V3A2,2,0,0,0,9,1H3A2,2,0,0,0,1,3V7A2,2,0,0,0,3,9H9a2,2,0,0,0,2-2V6h4V26a2.0023,2.0023,0,0,0,2,2h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V25a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V17h4v1a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V14a2,2,0,0,0-2-2H23a2,2,0,0,0-2,2v1H17V6h4V7A2,2,0,0,0,23,9Zm0-6h6V7H23ZM9,7H3V3H9ZM23,25h6v4H23Zm0-11h6v4H23Z", transform: "translate(0 .005)" })), children); }); { TreeViewAlt.propTypes = iconPropTypes; } var Trophy = /*#__PURE__*/React__default["default"].forwardRef(function Trophy(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path114$1 || (_path114$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm14,0a6,6,0,0,1-6.1855,5.9971A6.1991,6.1991,0,0,1,10,13.7065V6H22Zm4-2a2.0023,2.0023,0,0,1-2,2V9h2Z" })), children); }); { Trophy.propTypes = iconPropTypes; } var TrophyFilled = /*#__PURE__*/React__default["default"].forwardRef(function TrophyFilled(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115$1 || (_path115$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,7H24V6a2.0023,2.0023,0,0,0-2-2H10A2.0023,2.0023,0,0,0,8,6V7H6A2.0023,2.0023,0,0,0,4,9v3a4.0045,4.0045,0,0,0,4,4h.322A8.1689,8.1689,0,0,0,15,21.9341V26H10v2H22V26H17V21.9311A7.9661,7.9661,0,0,0,23.74,16H24a4.0045,4.0045,0,0,0,4-4V9A2.0023,2.0023,0,0,0,26,7ZM8,14a2.0023,2.0023,0,0,1-2-2V9H8Zm18-2a2.0023,2.0023,0,0,1-2,2V9h2Z" })), children); }); { TrophyFilled.propTypes = iconPropTypes; } var TropicalStorm = /*#__PURE__*/React__default["default"].forwardRef(function TropicalStorm(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116$1 || (_path116$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" })), _path117$1 || (_path117$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z" })), children); }); { TropicalStorm.propTypes = iconPropTypes; } var TropicalStormModelTracks = /*#__PURE__*/React__default["default"].forwardRef(function TropicalStormModelTracks(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118$1 || (_path118$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,17a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,17Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,10,11Z" })), _path119$1 || (_path119$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.8188 6.65c.1163-.1211 1.8643-1.919 2.8882-2.9434A1 1 0 0017 2C11.812 2 2 4.2988 2 13a7.8938 7.8938 0 003.1812 6.35c-.1612.1675-1.9507 2.0054-2.8882 2.9429A1 1 0 003 24c5.188 0 15-2.2988 15-11A7.8927 7.8927 0 0014.8188 6.65zM9.7065 20.793a20.94 20.94 0 01-4.0932.9853c.1621-.166 2.7685-2.9053 2.7685-2.9053l-1.1743-.6074A5.9064 5.9064 0 014 13c0-3.667 2.1177-6.2886 6.2935-7.793a20.94 20.94 0 014.0932-.9853c-.227.2324-2.769 2.9057-2.769 2.9057l1.1748.607A5.9075 5.9075 0 0116 13C16 16.667 13.8823 19.2886 9.7065 20.793zM30 17l-5-5-5 5 1.4126 1.4155L24 15.8325V19a9.01 9.01 0 01-9 9H12v2h3A11.0125 11.0125 0 0026 19V15.8325l2.5859 2.5816z" })), children); }); { TropicalStormModelTracks.propTypes = iconPropTypes; } var TropicalStormTracks = /*#__PURE__*/React__default["default"].forwardRef(function TropicalStormTracks(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path120$1 || (_path120$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,13Z" })), _path121$1 || (_path121$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.86,12.4805h0a12.9277,12.9277,0,0,0-4.8575-4.9991q.2044-.213.4424-.4589h0c.82-.8482,1.93-1.9825,3.2622-3.3155A1,1,0,0,0,25,2c-.354,0-8.7363.0488-14.269,4.3018h0A12.15,12.15,0,0,0,7.481,9.998c-.1416-.1367-.295-.2841-.4585-.4423C6.1743,8.7349,5.04,7.6255,3.707,6.293A1,1,0,0,0,2,7c0,.3594.05,8.874,4.4058,14.4023a12.1023,12.1023,0,0,0,3.5918,3.1163c-.21.2177-.4346.4516-.6563.68h0c-.7954.8208-1.8286,1.8745-3.0483,3.0943A1,1,0,0,0,7,30c.2856,0,7.061-.0352,12.459-3.1055a12.9618,12.9618,0,0,0,5.06-4.8925q.3062.2937.68.6567c.82.7954,1.8745,1.8286,3.0943,3.0483A1,1,0,0,0,30,25C30,24.7119,29.9644,17.8877,26.86,12.4805Zm-3.03,6.1074-.5469,1.3672A10.5415,10.5415,0,0,1,18.47,25.1562,24.3514,24.3514,0,0,1,9.584,27.8135c.4409-.4492,3.8281-3.9824,3.8281-3.9824l-1.3682-.5474a9.8021,9.8021,0,0,1-4.0668-3.1191c-2.5406-3.2242-3.4585-7.7623-3.79-10.58.5435.5337,3.9815,3.8266,3.9815,3.8266l.5468-1.3672A9.8569,9.8569,0,0,1,11.95,7.8877h0C15.1665,5.415,19.6309,4.5146,22.4155,4.187c-.5332.5435-3.8276,3.9819-3.8276,3.9819l1.3677.5469a10.52,10.52,0,0,1,5.17,4.7608v0a24.29,24.29,0,0,1,2.688,8.94C27.3643,21.9751,23.83,18.5879,23.83,18.5879Z" })), children); }); { TropicalStormTracks.propTypes = iconPropTypes; } var TropicalWarning = /*#__PURE__*/React__default["default"].forwardRef(function TropicalWarning(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path122$1 || (_path122$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.9487,25.6836a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,23,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,15,28h-.4336C13.9241,26.7939,12,22.312,12,12v-.1313l1.1169.7446A6.46,6.46,0,0,1,14.4346,13.79l1.0007-1.8418a8.4469,8.4469,0,0,0-1.209-.9986L12.8025,10h1.5308a6.9861,6.9861,0,0,1,1.9934.3071l.9755-1.7954A9.0059,9.0059,0,0,0,14.3333,8H13.1169A7.0329,7.0329,0,0,1,18,6h.6669l1.0867-2H18a9.0361,9.0361,0,0,0-7,3.3638A9.0362,9.0362,0,0,0,4,4H2V6H4A7.0308,7.0308,0,0,1,8.8828,8H7.6665a9.06,9.06,0,0,0-5.4,1.8L.4,11.2l1.2,1.6L3.4668,11.4a7.04,7.04,0,0,1,4.2-1.4H9.1973l-1.4239.9492A8.457,8.457,0,0,0,4,18H6a6.46,6.46,0,0,1,2.8828-5.3867L10,11.8687V12c0,8.9365,1.3994,13.7539,2.355,16H2v2H15a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,4.9955,4.9955,0,0,0,3,1.8833V27.8125A3.7616,3.7616,0,0,1,27.9487,25.6836Z" })), _path123$1 || (_path123$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z" })), _path124$1 || (_path124$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" })), children); }); { TropicalWarning.propTypes = iconPropTypes; } var Tsunami = /*#__PURE__*/React__default["default"].forwardRef(function Tsunami(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125$1 || (_path125$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,26H24A10.0349,10.0349,0,0,1,17.0732,8.7378,11.9629,11.9629,0,0,0,12.9937,8a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,14.4348,4,19.34,4,26H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,6h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,24h6Z" })), children); }); { Tsunami.propTypes = iconPropTypes; } var Tsv = /*#__PURE__*/React__default["default"].forwardRef(function Tsv(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126$1 || (_path126$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9L26 22 24 9 22 9 24.516 23 27.484 23 30 9 28 9zM18 23H12V21h6V17H14a2.002 2.002 0 01-2-2V11a2.002 2.002 0 012-2h6v2H14v4h4a2.002 2.002 0 012 2v4A2.002 2.002 0 0118 23zM2 11L5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z" })), children); }); { Tsv.propTypes = iconPropTypes; } var TwoFactorAuthentication = /*#__PURE__*/React__default["default"].forwardRef(function TwoFactorAuthentication(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127$1 || (_path127$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 23.18L9 21.179 7.589 22.589 11 26 17 20 15.59 18.59 11 23.18zM28 30H24V28h4V16H24V8a4.0045 4.0045 0 00-4-4V2a6.0067 6.0067 0 016 6v6h2a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30z" })), _path128$1 || (_path128$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,14H18V8A6,6,0,0,0,6,8v6H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V16A2,2,0,0,0,20,14ZM8,8a4,4,0,0,1,8,0v6H8ZM20,28H4V16H20Z" })), children); }); { TwoFactorAuthentication.propTypes = iconPropTypes; } var TwoPersonLift = /*#__PURE__*/React__default["default"].forwardRef(function TwoPersonLift(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path129$1 || (_path129$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.96 30l-1.9215-6.7253a1.0008 1.0008 0 01.3369-1.0554L29.874 18.62 28.52 13.2014l-2.7382 3.4234A1.0026 1.0026 0 0125 17H20V15h4.52l3.6993-4.6248a1 1 0 011.7509.3824l2 8a.9989.9989 0 01-.3447 1.0232l-4.48 3.5845 1.7389 6.0854zM23 5.5A3.5 3.5 0 1126.5 9 3.5042 3.5042 0 0123 5.5zm2 0A1.5 1.5 0 1026.5 4 1.5017 1.5017 0 0025 5.5z" })), _path130$1 || (_path130$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.0039,19A2.0039,2.0039,0,0,1,18,16.9961V15.0039A2.0039,2.0039,0,0,1,20.0039,13H22V10H10v3h1.9961A2.0039,2.0039,0,0,1,14,15.0039v1.9922A2.0039,2.0039,0,0,1,11.9961,19H10v3H22V19Z" })), _path131$1 || (_path131$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.04 30l1.9215-6.7253a1.0013 1.0013 0 00-.3369-1.0555L2.126 18.62l1.3545-5.4185 2.7382 3.4234A1.0026 1.0026 0 007 17h5V15H7.4805L3.7812 10.3752a1 1 0 00-1.7509.3824l-2 8A.9989.9989 0 00.375 19.7808l4.4805 3.5844-1.739 6.0855zM5.5 9A3.5 3.5 0 119 5.5 3.5042 3.5042 0 015.5 9zm0-5A1.5 1.5 0 107 5.5 1.5017 1.5017 0 005.5 4z" })), children); }); { TwoPersonLift.propTypes = iconPropTypes; } var Txt = /*#__PURE__*/React__default["default"].forwardRef(function Txt(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path132$1 || (_path132$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 11L24 11 24 23 26 23 26 11 29 11 29 9 21 9 21 11zM20 9L18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9zM3 11L6 11 6 23 8 23 8 11 11 11 11 9 3 9 3 11z" })), children); }); { Txt.propTypes = iconPropTypes; } var TxtReference = /*#__PURE__*/React__default["default"].forwardRef(function TxtReference(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path133$1 || (_path133$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM21 4L24 4 24 16 26 16 26 4 29 4 29 2 21 2 21 4zM20 2L18 2 16 8 14 2 12 2 14.752 9 12 16 14 16 16 10 18 16 20 16 17.245 9 20 2zM3 4L6 4 6 16 8 16 8 4 11 4 11 2 3 2 3 4z" })), children); }); { TxtReference.propTypes = iconPropTypes; } var TypePattern = /*#__PURE__*/React__default["default"].forwardRef(function TypePattern(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path134$1 || (_path134$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 15L17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z" })), _path135$1 || (_path135$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.586 20L27 21.414 23.414 25 27 28.586 25.586 30 20.586 25 25.586 20zM11 30H3a1 1 0 01-.8945-1.4473l4-8a1.0412 1.0412 0 011.789 0l4 8A1 1 0 0111 30zM4.6182 28H9.3818L7 23.2363zM28 12H22a2.0023 2.0023 0 01-2-2V4a2.0023 2.0023 0 012-2h6a2.0023 2.0023 0 012 2v6A2.0023 2.0023 0 0128 12zM22 4v6h6.001L28 4zM7 12a5 5 0 115-5A5.0059 5.0059 0 017 12zM7 4a3 3 0 103 3A3.0033 3.0033 0 007 4z" })), children); }); { TypePattern.propTypes = iconPropTypes; } var Types = /*#__PURE__*/React__default["default"].forwardRef(function Types(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136$1 || (_path136$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 16L22 24 20.586 22.586 27.172 16 20.586 9.414 22 8 30 16z" })), _path137$1 || (_path137$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a.9967.9967,0,0,1-.707-.293l-5-5a.9994.9994,0,0,1,0-1.414l5-5a.9994.9994,0,0,1,1.414,0l5,5a.9994.9994,0,0,1,0,1.414l-5,5A.9967.9967,0,0,1,16,22Zm-3.5859-6L16,19.5859,19.5859,16,16,12.4141Z" })), _path138$1 || (_path138$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 16L10 8 11.414 9.414 4.828 16 11.414 22.586 10 24 2 16z" })), children); }); { Types.propTypes = iconPropTypes; } var QU1 = /*#__PURE__*/React__default["default"].forwardRef(function QU1(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path139$1 || (_path139$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23zM22 21L22 9 17 9 17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21z" })), children); }); { QU1.propTypes = iconPropTypes; } var QU2 = /*#__PURE__*/React__default["default"].forwardRef(function QU2(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140$1 || (_path140$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23zM25 23H17V17a2 2 0 012-2h4V11H17V9h6a2 2 0 012 2v4a2 2 0 01-2 2H19v4h6z" })), children); }); { QU2.propTypes = iconPropTypes; } var QU3 = /*#__PURE__*/React__default["default"].forwardRef(function QU3(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path141$1 || (_path141$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23zM23 9H17v2h6v4H18v2h5v4H17v2h6a2 2 0 002-2V11A2 2 0 0023 9z" })), children); }); { QU3.propTypes = iconPropTypes; } var Umbrella = /*#__PURE__*/React__default["default"].forwardRef(function Umbrella(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path142$1 || (_path142$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9854,15.83A14.3808,14.3808,0,0,0,17,4.0464V2H15V4.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.03ZM6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4411,12.4411,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333,6.5439,6.5439,0,0,0,6,14Zm10,0a6.5528,6.5528,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0563-9.1763,3.4308,2.6768,4.0091,6.9487,4.0525,9.1728A6.553,6.553,0,0,0,16,14Zm10,0a6.5439,6.5439,0,0,0-3.939,1.333,14.5164,14.5164,0,0,0-3.0456-8.9341,12.4411,12.4411,0,0,1,8.488,7.8145A5.4079,5.4079,0,0,0,26,14Z" })), children); }); { Umbrella.propTypes = iconPropTypes; } var Undefined = /*#__PURE__*/React__default["default"].forwardRef(function Undefined(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81$1); if (size === "glyph" || size === "glyph" || size === "glyphpx") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path143$1 || (_path143$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142M8,1,1,8l7,7,7-7L8,1Z" })), _path144$1 || (_path144$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path145$1 || (_path145$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 14H21V18H11z" })), _path146$1 || (_path146$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" })), children); }); { Undefined.propTypes = iconPropTypes; } var UndefinedFilled = /*#__PURE__*/React__default["default"].forwardRef(function UndefinedFilled(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path147$1 || (_path147$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M21,18H11v-4h10V18z" })), _path148$1 || (_path148$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M11 14H21V18H11z", "data-icon-path": "inner-path" })), children); }); { UndefinedFilled.propTypes = iconPropTypes; } var Undo = /*#__PURE__*/React__default["default"].forwardRef(function Undo(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83$1); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path149$1 || (_path149$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,8c1.2,0,2,0.8,2,2c0,1.2-0.8,2-2,2H9v1h3c1.7,0,3-1.2,3-3c0-1.7-1.3-3-3-3L2.9,7l2-2L4.2,4.3L1,7.5 l3.2,3.2L4.9,10l-2-2L12,8z" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path150$1 || (_path150$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15,9.3c1.5,0,2.8,1.3,2.8,2.7c0,1.5-1.3,2.7-2.8,2.7h-4V16h4c2.3,0,4-1.7,4-4c0-2.2-1.8-4-4-4H3.4 l2.5-2.5L5,4.6l-4,4l4,4l0.9-0.9L3.4,9.3H15z" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path151$1 || (_path151$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.2,11.2c1.8,0,3.2,1.7,3.2,3.3c0,1.5-1.5,3.2-3.2,3.2H14v1.5h3.2c2.2,0,4.8-2.3,4.8-4.8s-2-4.8-4.8-4.8 H4.8l3-3L6.8,5.7L2,10.5l4.8,4.8l1.1-1.1l-3-3H17.2z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path152$1 || (_path152$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,10H7.8149l3.5874-3.5859L10,5,4,11,10,17l1.4023-1.4146L7.8179,12H20a6,6,0,0,1,0,12H12v2h8a8,8,0,0,0,0-16Z" })), children); }); { Undo.propTypes = iconPropTypes; } var UngroupObjects = /*#__PURE__*/React__default["default"].forwardRef(function UngroupObjects(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path153$1 || (_path153$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,14V10H26v2H20V6h2V2H18V4H6V2H2V6H4V18H2v4H6V20h6v6H10v4h4V28H26v2h4V26H28V14ZM6,6H18V18H6ZM26,26H14V20h4v2h4V18H20V14h6Z" })), children); }); { UngroupObjects.propTypes = iconPropTypes; } var Unknown = /*#__PURE__*/React__default["default"].forwardRef(function Unknown(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle$1 || (_circle$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "22.5", r: "1.5" })), _path154$1 || (_path154$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,19h-2v-4h2c1.103,0,2-0.897,2-2s-0.897-2-2-2h-2c-1.103,0-2,0.897-2,2v0.5h-2V13c0-2.206,1.794-4,4-4h2 c2.206,0,4,1.794,4,4s-1.794,4-4,4V19z" })), _path155$1 || (_path155$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2c-0.533,0-1.067,0.203-1.473,0.609L2.609,14.527 C2.203,14.933,2,15.466,2,16s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30c0.533,0,1.067-0.203,1.473-0.609 l11.917-11.917C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,28.036L3.965,16L16,3.964L28.036,16L16,28.036z" })), children); }); { Unknown.propTypes = iconPropTypes; } var UnknownFilled = /*#__PURE__*/React__default["default"].forwardRef(function UnknownFilled(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path156$1 || (_path156$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.391,14.527L17.473,2.609C17.067,2.203,16.533,2,16,2s-1.067,0.203-1.473,0.609L2.609,14.527C2.203,14.933,2,15.466,2,16 s0.203,1.067,0.609,1.473l11.917,11.917C14.933,29.797,15.467,30,16,30s1.067-0.203,1.473-0.609l11.917-11.917 C29.797,17.067,30,16.534,30,16S29.797,14.933,29.391,14.527z M16,24c-0.828,0-1.5-0.671-1.5-1.5S15.172,21,16,21s1.5,0.671,1.5,1.5 S16.828,24,16,24z M17.125,17.248v1.877h-2.25V15H17c1.034,0,1.875-0.841,1.875-1.875S18.034,11.25,17,11.25h-2 c-1.034,0-1.875,0.841-1.875,1.875v0.5h-2.25v-0.5C10.875,10.851,12.726,9,15,9h2c2.274,0,4.125,1.851,4.125,4.125 C21.125,15.358,19.342,17.182,17.125,17.248z" })), _path157$1 || (_path157$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,21c0.828,0,1.5,0.672,1.5,1.5S16.828,24,16,24c-0.828,0-1.5-0.672-1.5-1.5S15.172,21,16,21 z M17.125,17.248c2.217-0.066,4-1.89,4-4.123C21.125,10.851,19.274,9,17,9h-2c-2.274,0-4.125,1.851-4.125,4.125v0.5h2.25v-0.5 c0-1.034,0.841-1.875,1.875-1.875h2c1.034,0,1.875,0.841,1.875,1.875S18.034,15,17,15h-2.125v4.125h2.25V17.248z", "data-icon-path": "inner-path" })), children); }); { UnknownFilled.propTypes = iconPropTypes; } var Unlink = /*#__PURE__*/React__default["default"].forwardRef(function Unlink(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158$1 || (_path158$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5 3.59H7V8.42H5z", transform: "rotate(-45.01 5.996 6.005)" })), _path159$1 || (_path159$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23.58H27V28.409999999999997H25z", transform: "rotate(-44.99 25.995 25.999)" })), _path160$1 || (_path160$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 2H13V6H11zM2 11H6V13H2zM26 19H30V21H26zM19 26H21V30H19zM16.58 21.07l-3.71 3.72a4 4 0 11-5.66-5.66l3.72-3.72L9.51 14 5.8 17.72a6 6 0 00-.06 8.54A6 6 0 0010 28a6.07 6.07 0 004.32-1.8L18 22.49zM15.41 10.93l3.72-3.72a4 4 0 115.66 5.66l-3.72 3.72L22.49 18l3.71-3.72a6 6 0 00.06-8.54A6 6 0 0022 4a6.07 6.07 0 00-4.32 1.8L14 9.51z" })), children); }); { Unlink.propTypes = iconPropTypes; } var Unlocked = /*#__PURE__*/React__default["default"].forwardRef(function Unlocked(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88$1); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path161$1 || (_path161$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,7H6V4c0-1.1,0.9-2,2-2s2,0.9,2,2h1c0-1.7-1.3-3-3-3S5,2.3,5,4v3H4C3.4,7,3,7.4,3,8v6c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1 V8C13,7.4,12.6,7,12,7z M12,14H4V8h8V14z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162$1 || (_path162$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,14H12V8a4,4,0,0,1,8,0h2A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14Zm0,14H8V16H24Z" })), children); }); { Unlocked.propTypes = iconPropTypes; } var Unsaved = /*#__PURE__*/React__default["default"].forwardRef(function Unsaved(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path163$1 || (_path163$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 19.4L28.6 18 25 21.6 21.4 18 20 19.4 23.6 23 20 26.6 21.4 28 25 24.4 28.6 28 30 26.6 26.4 23z" })), _path164$1 || (_path164$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,26l-4,0v-8l4,0v-2l-4,0c-1.1,0-2,0.9-2,2v8H6V6h4v4c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V6.4l4,4l0,5.6h2l0-6 c0-0.3-0.1-0.5-0.3-0.7l-5-5C22.5,4.1,22.3,4,22,4H6C4.9,4,4,4.9,4,6v20c0,1.1,0.9,2,2,2l10,0V26z M12,6h8v4h-8V6z" })), children); }); { Unsaved.propTypes = iconPropTypes; } var UpToTop = /*#__PURE__*/React__default["default"].forwardRef(function UpToTop(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path165$1 || (_path165$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 14L6 24 7.4 25.4 16 16.8 24.6 25.4 26 24zM4 8H28V10H4z" })), children); }); { UpToTop.propTypes = iconPropTypes; } var UpdateNow = /*#__PURE__*/React__default["default"].forwardRef(function UpdateNow(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path166$1 || (_path166$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 25.586L25 23.586 25 21 23 21 23 24.414 25.586 27 27 25.586z" })), _path167$1 || (_path167$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 31a7 7 0 117-7A7.0078 7.0078 0 0124 31zm0-12a5 5 0 105 5A5.0055 5.0055 0 0024 19zM16 28A12.0134 12.0134 0 014 16H2A14.0158 14.0158 0 0016 30zM12 8H7.0784A11.9843 11.9843 0 0128 16h2A13.9778 13.9778 0 006 6.2344V2H4v8h8z" })), children); }); { UpdateNow.propTypes = iconPropTypes; } var Upgrade = /*#__PURE__*/React__default["default"].forwardRef(function Upgrade(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168$1 || (_path168$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 24H11a2 2 0 00-2 2v2a2 2 0 002 2H21a2 2 0 002-2V26A2 2 0 0021 24zm0 4H11V26H21zM28.707 14.293l-12-12a.9994.9994 0 00-1.414 0l-12 12A1 1 0 004 16H9v4a2.0023 2.0023 0 002 2H21a2.0027 2.0027 0 002-2V16h5a1 1 0 00.707-1.707zM21 14v6H11V14H6.4141L16 4.4141 25.5859 14z" })), children); }); { Upgrade.propTypes = iconPropTypes; } var Upload = /*#__PURE__*/React__default["default"].forwardRef(function Upload(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93$1); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path169$1 || (_path169$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M3 9L3.7 9.7 7.5 5.9 7.5 15 8.5 15 8.5 5.9 12.3 9.7 13 9 8 4zM3 4V2h10v2h1V2c0-.6-.4-1-1-1H3C2.4 1 2 1.4 2 2v2H3z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path170$1 || (_path170$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 18L7.41 19.41 15 11.83 15 30 17 30 17 11.83 24.59 19.41 26 18 16 8 6 18zM6 8V4H26V8h2V4a2 2 0 00-2-2H6A2 2 0 004 4V8z" })), children); }); { Upload.propTypes = iconPropTypes; } var Usb = /*#__PURE__*/React__default["default"].forwardRef(function Usb(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path171$1 || (_path171$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,15V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6v9a2,2,0,0,0-2,2V28H8V17H24V28h2V17A2,2,0,0,0,24,15ZM10,6H22v9H10Z" })), _path172$1 || (_path172$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 10H15V12H12zM17 10H20V12H17z" })), children); }); { Usb.propTypes = iconPropTypes; } var User = /*#__PURE__*/React__default["default"].forwardRef(function User(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95$1); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path173$1 || (_path173$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 2c1.4 0 2.5 1.1 2.5 2.5S9.4 7 8 7 5.5 5.9 5.5 4.5 6.6 2 8 2M8 1C6.1 1 4.5 2.6 4.5 4.5S6.1 8 8 8s3.5-1.6 3.5-3.5S9.9 1 8 1zM13 15h-1v-2.5c0-1.4-1.1-2.5-2.5-2.5h-3C5.1 10 4 11.1 4 12.5V15H3v-2.5C3 10.6 4.6 9 6.5 9h3c1.9 0 3.5 1.6 3.5 3.5V15z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174$1 || (_path174$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 4a5 5 0 11-5 5 5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0016 2zM26 30H24V25a5 5 0 00-5-5H13a5 5 0 00-5 5v5H6V25a7 7 0 017-7h6a7 7 0 017 7z" })), children); }); { User.propTypes = iconPropTypes; } var UserAccess = /*#__PURE__*/React__default["default"].forwardRef(function UserAccess(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path175$1 || (_path175$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8zM30 12a1.9922 1.9922 0 00-.5117.0742L28.4331 11.019a3.8788 3.8788 0 000-4.038l1.0552-1.0552a2.0339 2.0339 0 10-1.4141-1.4141L27.019 5.5669a3.8788 3.8788 0 00-4.038 0L21.9258 4.5117a2.0339 2.0339 0 10-1.4141 1.4141L21.5669 6.981a3.8788 3.8788 0 000 4.038l-1.0552 1.0552a2.0339 2.0339 0 101.4141 1.4141l1.0552-1.0552a3.8788 3.8788 0 004.038 0l1.0552 1.0552A1.9957 1.9957 0 1030 12zM23 9a2 2 0 112 2A2.0025 2.0025 0 0123 9z" })), children); }); { UserAccess.propTypes = iconPropTypes; } var UserActivity = /*#__PURE__*/React__default["default"].forwardRef(function UserActivity(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path176$1 || (_path176$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 23h-.0215a1.0016 1.0016 0 01-.94-.7256L20.8711 11.19l-1.9346 5.1607A1.0005 1.0005 0 0118 17H14V15h3.3066l2.7569-7.3511a1.0005 1.0005 0 011.8984.0762l3.1113 10.8921 1.9786-5.9336A.9988.9988 0 0128 12h4v2H28.7207l-2.7725 8.3164A.9984.9984 0 0125 23zM15 30H13V23a3.0033 3.0033 0 00-3-3H6a3.0033 3.0033 0 00-3 3v7H1V23a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM8 8a3 3 0 11-3 3A3 3 0 018 8M8 6a5 5 0 105 5A5 5 0 008 6z" })), children); }); { UserActivity.propTypes = iconPropTypes; } var UserAdmin = /*#__PURE__*/React__default["default"].forwardRef(function UserAdmin(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path177$1 || (_path177$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2zM22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7zM25 16.18L22.41 13.59 21 15 25 19 32 12 30.59 10.59 25 16.18z" })), children); }); { UserAdmin.propTypes = iconPropTypes; } var UserAvatar = /*#__PURE__*/React__default["default"].forwardRef(function UserAvatar(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99$1); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path178$1 || (_path178$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M5,13.2v-1.5c0-0.9,0.6-1.6,1.5-1.7h3c0.9,0.1,1.5,0.8,1.5,1.7v1.5 C9.1,14.3,6.9,14.3,5,13.2L5,13.2z M12,12l0-0.8c0-0.9-1.1-2.1-2.5-2.2h-3C5.1,9.1,4,10.3,4,11.7l0,0.5v0.3c-2.5-2.2-2.7-6-0.5-8.5 s6-2.7,8.5-0.5s2.7,6,0.5,8.5c-0.1,0.2-0.3,0.3-0.5,0.5V12z" })), _path179$1 || (_path179$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,3C6.6,3,5.5,4.1,5.5,5.5S6.6,8,8,8s2.5-1.1,2.5-2.5S9.4,3,8,3z M8,7C7.2,7,6.5,6.3,6.5,5.5S7.2,4,8,4s1.5,0.7,1.5,1.5 S8.8,7,8,7z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180$1 || (_path180$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Zm0,8a3,3,0,1,1,3-3A3.0034,3.0034,0,0,1,16,16Z" })), _path181$1 || (_path181$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM10,26.3765V25a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3v1.3765a11.8989,11.8989,0,0,1-12,0Zm13.9925-1.4507A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" })), children); }); { UserAvatar.propTypes = iconPropTypes; } var UserAvatarFilled = /*#__PURE__*/React__default["default"].forwardRef(function UserAvatarFilled(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path182$1 || (_path182$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M8.0071,24.93A4.9958,4.9958,0,0,1,13,20h6a4.9959,4.9959,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0ZM20.5,12.5A4.5,4.5,0,1,1,16,8,4.5,4.5,0,0,1,20.5,12.5Z" })), _path183$1 || (_path183$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.7489,24.93A13.9893,13.9893,0,1,0,2,16a13.899,13.899,0,0,0,3.2511,8.93l-.02.0166c.07.0845.15.1567.2222.2392.09.1036.1864.2.28.3008.28.3033.5674.5952.87.87.0915.0831.1864.1612.28.2417.32.2759.6484.5372.99.7813.0441.0312.0832.0693.1276.1006v-.0127a13.9011,13.9011,0,0,0,16,0V27.48c.0444-.0313.0835-.0694.1276-.1006.3412-.2441.67-.5054.99-.7813.0936-.08.1885-.1586.28-.2417.3025-.2749.59-.5668.87-.87.0933-.1006.1894-.1972.28-.3008.0719-.0825.1522-.1547.2222-.2392ZM16,8a4.5,4.5,0,1,1-4.5,4.5A4.5,4.5,0,0,1,16,8ZM8.0071,24.93A4.9957,4.9957,0,0,1,13,20h6a4.9958,4.9958,0,0,1,4.9929,4.93,11.94,11.94,0,0,1-15.9858,0Z" })), children); }); { UserAvatarFilled.propTypes = iconPropTypes; } var UserAvatarFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function UserAvatarFilledAlt(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path184$1 || (_path184$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,8a5,5,0,1,0,5,5A5,5,0,0,0,16,8Z" })), _path185$1 || (_path185$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2Zm7.9925,22.9258A5.0016,5.0016,0,0,0,19,20H13a5.0016,5.0016,0,0,0-4.9925,4.9258,12,12,0,1,1,15.985,0Z" })), children); }); { UserAvatarFilledAlt.propTypes = iconPropTypes; } var UserCertification = /*#__PURE__*/React__default["default"].forwardRef(function UserCertification(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186$1 || (_path186$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 10L26.593 13 30 13.414 27.5 15.667 28 19 25 17.125 22 19 22.5 15.667 20 13.414 23.5 13 25 10zM22 30H20V25a5.0059 5.0059 0 00-5-5H9a5.0059 5.0059 0 00-5 5v5H2V25a7.0082 7.0082 0 017-7h6a7.0082 7.0082 0 017 7zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2z" })), children); }); { UserCertification.propTypes = iconPropTypes; } var UserData = /*#__PURE__*/React__default["default"].forwardRef(function UserData(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path187$1 || (_path187$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 8H30V16H28zM23 5H25V16H23zM18 10H20V16H18zM16 30H14V24a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v6H2V24a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 9a3 3 0 11-3 3A3 3 0 019 9M9 7a5 5 0 105 5A5 5 0 009 7z" })), children); }); { UserData.propTypes = iconPropTypes; } var UserFavorite = /*#__PURE__*/React__default["default"].forwardRef(function UserFavorite(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path188$1 || (_path188$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.303 12a2.6616 2.6616 0 00-1.9079.8058l-.3932.4054-.397-.4054a2.6615 2.6615 0 00-3.8157 0 2.7992 2.7992 0 000 3.8964L25.0019 21l4.2089-4.2978a2.7992 2.7992 0 000-3.8964A2.6616 2.6616 0 0027.303 12zM2 30H4V25a5.0059 5.0059 0 015-5h6a5.0059 5.0059 0 015 5v5h2V25a7.0082 7.0082 0 00-7-7H9a7.0082 7.0082 0 00-7 7zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2z" })), children); }); { UserFavorite.propTypes = iconPropTypes; } var UserFavoriteAlt = /*#__PURE__*/React__default["default"].forwardRef(function UserFavoriteAlt(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path189$1 || (_path189$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.7663 4.2558A4.2121 4.2121 0 0023 4.0321a4.2121 4.2121 0 00-5.7663.2237 4.319 4.319 0 000 6.0447L22.998 16.14 23 16.1376l.002.0019 5.7643-5.839A4.319 4.319 0 0028.7663 4.2558zM27.342 8.8948l-4.34 4.3973L23 13.29l-.002.002-4.34-4.3973a2.3085 2.3085 0 010-3.2338 2.2639 2.2639 0 013.1561 0l1.181 1.2074L23 6.8634l.0049.005 1.181-1.2074a2.2639 2.2639 0 013.1561 0A2.3085 2.3085 0 0127.342 8.8948zM16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8z" })), children); }); { UserFavoriteAlt.propTypes = iconPropTypes; } var UserFavoriteAltFilled = /*#__PURE__*/React__default["default"].forwardRef(function UserFavoriteAltFilled(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path190$1 || (_path190$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.4938 3a3.4735 3.4735 0 00-2.48 1.0393l-.5111.5228-.5161-.5228a3.4792 3.4792 0 00-4.96 0 3.59 3.59 0 000 5.0251l5.4766 5.5427 5.4716-5.5427a3.59 3.59 0 000-5.0251A3.4738 3.4738 0 0026.4938 3zM16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8z" })), children); }); { UserFavoriteAltFilled.propTypes = iconPropTypes; } var UserFilled = /*#__PURE__*/React__default["default"].forwardRef(function UserFilled(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path191$1 || (_path191$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 30H26V25a7.0082 7.0082 0 00-7-7H13a7.0082 7.0082 0 00-7 7zM9 9a7 7 0 107-7A7 7 0 009 9z" })), children); }); { UserFilled.propTypes = iconPropTypes; } var UserFollow = /*#__PURE__*/React__default["default"].forwardRef(function UserFollow(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path192$1 || (_path192$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32 14L28 14 28 10 26 10 26 14 22 14 22 16 26 16 26 20 28 20 28 16 32 16 32 14zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2zM22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7z" })), children); }); { UserFollow.propTypes = iconPropTypes; } var UserIdentification = /*#__PURE__*/React__default["default"].forwardRef(function UserIdentification(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193$1 || (_path193$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,11h4a1,1,0,0,1,1,1v2a0,0,0,0,1,0,0H21a0,0,0,0,1,0,0V12A1,1,0,0,1,22,11Z" })), _circle2$1 || (_circle2$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "8", r: "2" })), _path194$1 || (_path194$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 18H18a2.0023 2.0023 0 01-2-2V4a2.002 2.002 0 012-2H30a2.0023 2.0023 0 012 2V16A2.0027 2.0027 0 0130 18zM18 4V16H30.001L30 4zM15 30H13V26a2.9465 2.9465 0 00-3-3H6a2.9465 2.9465 0 00-3 3v4H1V26a4.9514 4.9514 0 015-5h4a4.9514 4.9514 0 015 5zM8 11a3 3 0 010 6 3 3 0 010-6M8 9A5 5 0 008 19 5 5 0 008 9z" })), children); }); { UserIdentification.propTypes = iconPropTypes; } var UserMilitary = /*#__PURE__*/React__default["default"].forwardRef(function UserMilitary(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195$1 || (_path195$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 13L23.407 16 20 16.414 22.5 18.667 22 22 25 20.125 28 22 27.5 18.667 30 16.414 26.5 16 25 13z" })), _path196$1 || (_path196$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.414 13.414L25 9.834 25 9.834 28.587 13.416 30 12 25 7 20 12 21.414 13.414z" })), _path197$1 || (_path197$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.414 8.414L25 4.834 25 4.834 28.587 8.416 30 7 25 2 20 7 21.414 8.414zM16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8z" })), children); }); { UserMilitary.propTypes = iconPropTypes; } var UserMultiple = /*#__PURE__*/React__default["default"].forwardRef(function UserMultiple(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path198$1 || (_path198$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 30H28V25a5.0057 5.0057 0 00-5-5V18a7.0078 7.0078 0 017 7zM22 30H20V25a5.0059 5.0059 0 00-5-5H9a5.0059 5.0059 0 00-5 5v5H2V25a7.0082 7.0082 0 017-7h6a7.0082 7.0082 0 017 7zM20 2V4a5 5 0 010 10v2A7 7 0 0020 2zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2z" })), children); }); { UserMultiple.propTypes = iconPropTypes; } var UserOnline = /*#__PURE__*/React__default["default"].forwardRef(function UserOnline(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3$1 || (_circle3$1 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "26", cy: "16", r: "4" })), _path199$1 || (_path199$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2z" })), children); }); { UserOnline.propTypes = iconPropTypes; } var UserProfile = /*#__PURE__*/React__default["default"].forwardRef(function UserProfile(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path200$1 || (_path200$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2zM22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7zM22 4H32V6H22zM22 9H32V11H22zM22 14H29V16H22z" })), children); }); { UserProfile.propTypes = iconPropTypes; } var UserRole = /*#__PURE__*/React__default["default"].forwardRef(function UserRole(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path201$1 || (_path201$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.07 21L22 15 28.07 9 29.5 10.41 24.86 15 29.5 19.59 28.07 21zM22 30H20V25a5 5 0 00-5-5H9a5 5 0 00-5 5v5H2V25a7 7 0 017-7h6a7 7 0 017 7zM12 4A5 5 0 117 9a5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0012 2z" })), children); }); { UserRole.propTypes = iconPropTypes; } var UserServiceDesk = /*#__PURE__*/React__default["default"].forwardRef(function UserServiceDesk(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202$1 || (_path202$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.334 11.95l1.2055-1.206a1.178 1.178 0 011.2593-.2584l1.4693.5868A1.1736 1.1736 0 0130 12.1489v2.692A1.1681 1.1681 0 0128.8229 16l-.05-.0015C18.4775 15.3578 16.4 6.6357 16.0073 3.2976a1.1681 1.1681 0 011.0315-1.29A1.1492 1.1492 0 0117.1751 2h2.5994a1.1626 1.1626 0 011.0764.7322l.5866 1.47a1.1635 1.1635 0 01-.2529 1.26L19.9791 6.668S20.6733 11.3682 25.334 11.95zM16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8z" })), children); }); { UserServiceDesk.propTypes = iconPropTypes; } var UserSettings = /*#__PURE__*/React__default["default"].forwardRef(function UserSettings(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path203$1 || (_path203$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 10V8H27.8989a4.9678 4.9678 0 00-.7319-1.7529l1.49-1.49-1.414-1.414-1.49 1.49A4.9678 4.9678 0 0024 4.1011V2H22V4.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 0018.1011 8H16v2h2.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 0022 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 0027.8989 10zm-7 2a3 3 0 113-3A3.0033 3.0033 0 0123 12zM16 30H14V25a3.0033 3.0033 0 00-3-3H7a3.0033 3.0033 0 00-3 3v5H2V25a5.0059 5.0059 0 015-5h4a5.0059 5.0059 0 015 5zM9 10a3 3 0 11-3 3 3 3 0 013-3M9 8a5 5 0 105 5A5 5 0 009 8z" })), children); }); { UserSettings.propTypes = iconPropTypes; } var UserSimulation = /*#__PURE__*/React__default["default"].forwardRef(function UserSimulation(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204$1 || (_path204$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.232 12.866H29.232V14.866H25.232z", transform: "rotate(30 27.232 13.866)" })), _path205$1 || (_path205$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 8H30V10H26z" })), _path206$1 || (_path206$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.768 12.866H6.768V14.866H2.768z", transform: "rotate(150 4.768 13.866)" })), _path207$1 || (_path207$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 30H24V25a5.0059 5.0059 0 00-5-5H13a5.0059 5.0059 0 00-5 5v5H6V25a7.0082 7.0082 0 017-7h6a7.0082 7.0082 0 017 7zM16 4a5 5 0 11-5 5 5 5 0 015-5m0-2a7 7 0 107 7A7 7 0 0016 2z" })), _path208$1 || (_path208$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.232 3.134H29.232V5.134H25.232z", transform: "rotate(-30 27.232 4.134)" })), _path209$1 || (_path209$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 8H6V10H2z" })), _path210$1 || (_path210$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.768 3.134H6.768V5.134H2.768z", transform: "rotate(-150 4.768 4.134)" })), children); }); { UserSimulation.propTypes = iconPropTypes; } var UserSpeaker = /*#__PURE__*/React__default["default"].forwardRef(function UserSpeaker(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211$1 || (_path211$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.4146,19,27.7,17.2852A2.97,2.97,0,0,0,28,16a3,3,0,1,0-3,3,2.97,2.97,0,0,0,1.2864-.3L28,20.4141V28H22V25a7.0078,7.0078,0,0,0-7-7H9a7.008,7.008,0,0,0-7,7v5H30V20.4141A1.988,1.988,0,0,0,29.4146,19ZM4,25a5.006,5.006,0,0,1,5-5h6a5.0059,5.0059,0,0,1,5,5v3H4Z" })), _path212$1 || (_path212$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,4A5,5,0,1,1,7,9a5,5,0,0,1,5-5m0-2a7,7,0,1,0,7,7A7,7,0,0,0,12,2Z" })), children); }); { UserSpeaker.propTypes = iconPropTypes; } var UserXRay = /*#__PURE__*/React__default["default"].forwardRef(function UserXRay(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path213$1 || (_path213$1 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M28 9L28 7 25 7 25 5 23 5 23 7 20 7 20 9 23 9 23 12 20 12 20 14 23 14 23 16 25 16 25 14 28 14 28 12 25 12 25 9 28 9z" })), _path214$1 || (_path214$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 3H17a1 1 0 00-1 1V17a1 1 0 001 1H31a1 1 0 001-1V4A1 1 0 0031 3zM28 9H25v3h3v2H25v2H23V14H20V12h3V9H20V7h3V5h2V7h3zM15 30H13V26a2.9465 2.9465 0 00-3-3H6a2.9465 2.9465 0 00-3 3v4H1V26a4.9514 4.9514 0 015-5h4a4.9514 4.9514 0 015 5zM8 11a3 3 0 010 6 3 3 0 010-6M8 9A5 5 0 008 19 5 5 0 008 9z" })), children); }); { UserXRay.propTypes = iconPropTypes; } var UserProfileAlt = /*#__PURE__*/React__default["default"].forwardRef(function UserProfileAlt(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215$1 || (_path215$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 13H26V15H19zM19 8H30V10H19zM19 3H30V5H19zM11 30H7a2.0059 2.0059 0 01-2-2V21a2.0059 2.0059 0 01-2-2V13a2.9465 2.9465 0 013-3h6a2.9465 2.9465 0 013 3v6a2.0059 2.0059 0 01-2 2v7A2.0059 2.0059 0 0111 30zM6 12a.9448.9448 0 00-1 1v6H7v9h4V19h2V13a.9448.9448 0 00-1-1zM9 9a4 4 0 114-4h0A4.0118 4.0118 0 019 9zM9 3a2 2 0 102 2h0A2.0059 2.0059 0 009 3z" })), children); }); { UserProfileAlt.propTypes = iconPropTypes; } var UvIndex = /*#__PURE__*/React__default["default"].forwardRef(function UvIndex(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216$1 || (_path216$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,5.9121l1.7444,2.9326.7822,1.315,1.4739-.4107,3.1206-.87L22.2512,12,21.84,13.4731l1.315.7823L26.0876,16l-2.9323,1.7441-1.315.7818L22.2512,20l.87,3.1211-3.1208-.87L18.5266,21.84l-.7822,1.315L16,26.0879l-1.7444-2.9326-.7822-1.315L12,22.251l-3.1208.87L9.7488,20l.4109-1.4741-1.315-.7818L5.9124,16l2.9323-1.7446,1.315-.7823L9.7488,12l-.87-3.1206L12,9.749l1.4739.4107.7822-1.315L16,5.9121M16,2,12.5366,7.8223,6,6l1.8223,6.5366L2,16l5.8223,3.4629L6,26l6.5366-1.8223L16,30l3.4634-5.8223L26,26l-1.8223-6.5371L30,16l-5.8223-3.4634L26,6,19.4634,7.8223,16,2Z" })), children); }); { UvIndex.propTypes = iconPropTypes; } var UvIndexAlt = /*#__PURE__*/React__default["default"].forwardRef(function UvIndexAlt(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path217$1 || (_path217$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13 30H9a2.0027 2.0027 0 01-2-2V20H9v8h4V20h2v8A2.0027 2.0027 0 0113 30zM25 20L23.25 20 21 29.031 18.792 20 17 20 19.5 30 22.5 30 25 20zM15 2H17V7H15z" })), _path218$1 || (_path218$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.668 6.854H26.625999999999998V8.854H21.668z", transform: "rotate(-45 24.147 7.853)" })), _path219$1 || (_path219$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 15H30V17H25zM2 15H7V17H2z" })), _path220$1 || (_path220$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.854 5.375H8.854V10.333H6.854z", transform: "rotate(-45 7.854 7.853)" })), _path221$1 || (_path221$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,17H20V16a4,4,0,0,0-8,0v1H10V16a6,6,0,0,1,12,0Z" })), children); }); { UvIndexAlt.propTypes = iconPropTypes; } var UvIndexFilled = /*#__PURE__*/React__default["default"].forwardRef(function UvIndexFilled(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123$1); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path222$1 || (_path222$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,30l-3.4634-5.8223L6,26l1.8223-6.5369L2,16l5.8223-3.4631L6,6l6.5366,1.8223L16,2l3.4634,5.8223L26,6l-1.8223,6.5369L30,16l-5.8223,3.4631L26,26l-6.5366-1.8223Z" })), children); }); { UvIndexFilled.propTypes = iconPropTypes; } var ValueVariable = /*#__PURE__*/React__default["default"].forwardRef(function ValueVariable(_ref124, ref) { var children = _ref124.children, _ref124$size = _ref124.size, size = _ref124$size === void 0 ? 16 : _ref124$size, rest = _objectWithoutProperties$1(_ref124, _excluded124); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223$1 || (_path223$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 28H22V26h4V6H22V4h4a2.0021 2.0021 0 012 2V26A2.0021 2.0021 0 0126 28zM20 11L18 11 16 14.897 14 11 12 11 14.905 16 12 21 14 21 16 17.201 18 21 20 21 17.098 16 20 11zM10 28H6a2.0021 2.0021 0 01-2-2V6A2.0021 2.0021 0 016 4h4V6H6V26h4z" })), children); }); { ValueVariable.propTypes = iconPropTypes; } var Van = /*#__PURE__*/React__default["default"].forwardRef(function Van(_ref125, ref) { var children = _ref125.children, _ref125$size = _ref125.size, size = _ref125$size === void 0 ? 16 : _ref125$size, rest = _objectWithoutProperties$1(_ref125, _excluded125); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path224$1 || (_path224$1 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.81,16l-7-9.56A1,1,0,0,0,22,6H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V16.56A1,1,0,0,0,29.81,16ZM20,8h1.49l5.13,7H20ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V8H18v9H28Z" })), children); }); { Van.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var _circle, _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _circle2, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _circle3, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _circle4, _path47, _path48, _path49, _circle5, _circle6, _path50, _circle7, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _path117, _path118, _path119, _circle8, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _circle9, _path134, _path135, _path136, _circle10, _path137, _path138, _path139, _path140, _circle11, _circle12, _path141, _path142, _path143, _path144, _circle13, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _switch, _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, _path237, _path238, _path239, _path240, _path241, _path242, _path243, _path244, _path245; var _excluded$5 = ["children", "size"], _excluded2 = ["children", "size"], _excluded3 = ["children", "size"], _excluded4 = ["children", "size"], _excluded5 = ["children", "size"], _excluded6 = ["children", "size"], _excluded7 = ["children", "size"], _excluded8 = ["children", "size"], _excluded9 = ["children", "size"], _excluded10 = ["children", "size"], _excluded11 = ["children", "size"], _excluded12 = ["children", "size"], _excluded13 = ["children", "size"], _excluded14 = ["children", "size"], _excluded15 = ["children", "size"], _excluded16 = ["children", "size"], _excluded17 = ["children", "size"], _excluded18 = ["children", "size"], _excluded19 = ["children", "size"], _excluded20 = ["children", "size"], _excluded21 = ["children", "size"], _excluded22 = ["children", "size"], _excluded23 = ["children", "size"], _excluded24 = ["children", "size"], _excluded25 = ["children", "size"], _excluded26 = ["children", "size"], _excluded27 = ["children", "size"], _excluded28 = ["children", "size"], _excluded29 = ["children", "size"], _excluded30 = ["children", "size"], _excluded31 = ["children", "size"], _excluded32 = ["children", "size"], _excluded33 = ["children", "size"], _excluded34 = ["children", "size"], _excluded35 = ["children", "size"], _excluded36 = ["children", "size"], _excluded37 = ["children", "size"], _excluded38 = ["children", "size"], _excluded39 = ["children", "size"], _excluded40 = ["children", "size"], _excluded41 = ["children", "size"], _excluded42 = ["children", "size"], _excluded43 = ["children", "size"], _excluded44 = ["children", "size"], _excluded45 = ["children", "size"], _excluded46 = ["children", "size"], _excluded47 = ["children", "size"], _excluded48 = ["children", "size"], _excluded49 = ["children", "size"], _excluded50 = ["children", "size"], _excluded51 = ["children", "size"], _excluded52 = ["children", "size"], _excluded53 = ["children", "size"], _excluded54 = ["children", "size"], _excluded55 = ["children", "size"], _excluded56 = ["children", "size"], _excluded57 = ["children", "size"], _excluded58 = ["children", "size"], _excluded59 = ["children", "size"], _excluded60 = ["children", "size"], _excluded61 = ["children", "size"], _excluded62 = ["children", "size"], _excluded63 = ["children", "size"], _excluded64 = ["children", "size"], _excluded65 = ["children", "size"], _excluded66 = ["children", "size"], _excluded67 = ["children", "size"], _excluded68 = ["children", "size"], _excluded69 = ["children", "size"], _excluded70 = ["children", "size"], _excluded71 = ["children", "size"], _excluded72 = ["children", "size"], _excluded73 = ["children", "size"], _excluded74 = ["children", "size"], _excluded75 = ["children", "size"], _excluded76 = ["children", "size"], _excluded77 = ["children", "size"], _excluded78 = ["children", "size"], _excluded79 = ["children", "size"], _excluded80 = ["children", "size"], _excluded81 = ["children", "size"], _excluded82 = ["children", "size"], _excluded83 = ["children", "size"], _excluded84 = ["children", "size"], _excluded85 = ["children", "size"], _excluded86 = ["children", "size"], _excluded87 = ["children", "size"], _excluded88 = ["children", "size"], _excluded89 = ["children", "size"], _excluded90 = ["children", "size"], _excluded91 = ["children", "size"], _excluded92 = ["children", "size"], _excluded93 = ["children", "size"], _excluded94 = ["children", "size"], _excluded95 = ["children", "size"], _excluded96 = ["children", "size"], _excluded97 = ["children", "size"], _excluded98 = ["children", "size"], _excluded99 = ["children", "size"], _excluded100 = ["children", "size"], _excluded101 = ["children", "size"], _excluded102 = ["children", "size"], _excluded103 = ["children", "size"], _excluded104 = ["children", "size"], _excluded105 = ["children", "size"], _excluded106 = ["children", "size"], _excluded107 = ["children", "size"], _excluded108 = ["children", "size"], _excluded109 = ["children", "size"], _excluded110 = ["children", "size"], _excluded111 = ["children", "size"], _excluded112 = ["children", "size"], _excluded113 = ["children", "size"], _excluded114 = ["children", "size"], _excluded115 = ["children", "size"], _excluded116 = ["children", "size"], _excluded117 = ["children", "size"], _excluded118 = ["children", "size"], _excluded119 = ["children", "size"], _excluded120 = ["children", "size"], _excluded121 = ["children", "size"], _excluded122 = ["children", "size"], _excluded123 = ["children", "size"]; var VegetationAsset = /*#__PURE__*/React__default["default"].forwardRef(function VegetationAsset(_ref, ref) { var children = _ref.children, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, rest = _objectWithoutProperties$1(_ref, _excluded$5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle || (_circle = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "21.5", cy: "10.5", r: "1.5" })), _path || (_path = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.5 1a2.4518 2.4518 0 00-1.2061.3105L18.9834 5.6084l.0027.0054a5.497 5.497 0 107.3257 7.5444l.0031.0015 4.4-8.5A2.5 2.5 0 0028.5 1zm-7 13A3.5 3.5 0 1125 10.5 3.5042 3.5042 0 0121.5 14zM28.9414 3.7354L26.5571 8.3408A5.5279 5.5279 0 0023.658 5.4424l4.5949-2.377A.5165.5165 0 0129 3.5.4985.4985 0 0128.9414 3.7354zM19 20h7V18H17V28a2.0027 2.0027 0 002 2h3V28H19zM12 30H9V28h3V15.5664L8.4854 13.4575l1.0292-1.7148 3.5147 2.1084A2.0115 2.0115 0 0114 15.5664V28A2.0024 2.0024 0 0112 30z" })), _path2 || (_path2 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.3079,2.2852A9.4882,9.4882,0,0,0,15,2,8.0275,8.0275,0,0,0,8.0786,6.001C8.0525,6,8.0264,6,8,6A6,6,0,0,0,8,18V16A4,4,0,0,1,8,8a2.7009,2.7009,0,0,1,.387.0391l.863.1142.3086-.6675A6.0192,6.0192,0,0,1,15,4a7.499,7.499,0,0,1,1.731.2148Z" })), children); }); { VegetationAsset.propTypes = iconPropTypes; } var VehicleApi = /*#__PURE__*/React__default["default"].forwardRef(function VehicleApi(_ref2, ref) { var children = _ref2.children, _ref2$size = _ref2.size, size = _ref2$size === void 0 ? 16 : _ref2$size, rest = _objectWithoutProperties$1(_ref2, _excluded2); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path3 || (_path3 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 11a1.9907 1.9907 0 00-.8247.1821L24.8337 9.51A3.45 3.45 0 0025 8.5a3.45 3.45 0 00-.1663-1.01l2.3416-1.6723A1.9975 1.9975 0 1026 4c0 .064.0129.124.0188.1865L23.7273 5.8232A3.4652 3.4652 0 0021.5 5a3.5 3.5 0 000 7 3.4652 3.4652 0 002.2273-.8232l2.2915 1.6367C26.0129 12.876 26 12.936 26 13a2 2 0 102-2zm-6.5-1A1.5 1.5 0 1123 8.5 1.5017 1.5017 0 0121.5 10zM29.3379 19.9336l-7.7324-2.7783L18.374 13.0967A2.99 2.99 0 0016.0537 12H8.0576a2.9982 2.9982 0 00-2.48 1.3115L2.8662 17.2949A4.9884 4.9884 0 002 20.1074V26a1 1 0 001 1H5.1421a3.9806 3.9806 0 007.7158 0h6.2842a3.9806 3.9806 0 007.7158 0H29a1 1 0 001-1V20.875A1 1 0 0029.3379 19.9336zM9 28a2 2 0 112-2A2.0027 2.0027 0 019 28zm14 0a2 2 0 112-2A2.0025 2.0025 0 0123 28zm5-3H26.8579a3.9806 3.9806 0 00-7.7158 0H12.8579a3.9806 3.9806 0 00-7.7158 0H4V20.1074A2.9977 2.9977 0 014.52 18.4189l2.711-3.9814A.9992.9992 0 018.0576 14h7.9961a.9928.9928 0 01.7647.3545l3.3994 4.2685a1.0007 1.0007 0 00.4443.3184L28 21.5781z" })), children); }); { VehicleApi.propTypes = iconPropTypes; } var VehicleConnected = /*#__PURE__*/React__default["default"].forwardRef(function VehicleConnected(_ref3, ref) { var children = _ref3.children, _ref3$size = _ref3.size, size = _ref3$size === void 0 ? 16 : _ref3$size, rest = _objectWithoutProperties$1(_ref3, _excluded3); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path4 || (_path4 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3379 17.9336l-7.7324-2.7783L18.374 11.0967A2.99 2.99 0 0016.0537 10H8.0576a2.9982 2.9982 0 00-2.48 1.3115L2.8662 15.2949A4.9884 4.9884 0 002 18.1074V26a1 1 0 001 1H5.1421a3.9806 3.9806 0 007.7158 0h6.2842a3.9806 3.9806 0 007.7158 0H29a1 1 0 001-1V18.875A1 1 0 0029.3379 17.9336zM9 28a2 2 0 112-2A2.0027 2.0027 0 019 28zm14 0a2 2 0 112-2A2.0025 2.0025 0 0123 28zm5-3H26.8579a3.9806 3.9806 0 00-7.7158 0H12.8579a3.9806 3.9806 0 00-7.7158 0H4V18.1074A2.9977 2.9977 0 014.52 16.4189l2.711-3.9814A.9992.9992 0 018.0576 12h7.9961a.9928.9928 0 01.7647.3545l3.3994 4.2685a1.0007 1.0007 0 00.4443.3184L28 19.5781zM25 11H23a2.0021 2.0021 0 00-2-2V7A4.0045 4.0045 0 0125 11z" })), _path5 || (_path5 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,11H27a6.0067,6.0067,0,0,0-6-6V3A8.0092,8.0092,0,0,1,29,11Z" })), children); }); { VehicleConnected.propTypes = iconPropTypes; } var VehicleInsights = /*#__PURE__*/React__default["default"].forwardRef(function VehicleInsights(_ref4, ref) { var children = _ref4.children, _ref4$size = _ref4.size, size = _ref4$size === void 0 ? 16 : _ref4$size, rest = _objectWithoutProperties$1(_ref4, _excluded4); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path6 || (_path6 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3379 17.9336l-7.7324-2.7783L18.374 11.0967A2.99 2.99 0 0016.0537 10H8.0576a2.9982 2.9982 0 00-2.48 1.3115L2.8662 15.2949A4.9884 4.9884 0 002 18.1074V26a1 1 0 001 1H5.1421a3.9806 3.9806 0 007.7158 0h6.2842a3.9806 3.9806 0 007.7158 0H29a1 1 0 001-1V18.875A1 1 0 0029.3379 17.9336zM9 28a2 2 0 112-2A2.0027 2.0027 0 019 28zm14 0a2 2 0 112-2A2.0025 2.0025 0 0123 28zm5-3H26.8579a3.9806 3.9806 0 00-7.7158 0H12.8579a3.9806 3.9806 0 00-7.7158 0H4V18.1074A2.9977 2.9977 0 014.52 16.4189l2.711-3.9814A.9992.9992 0 018.0576 12h7.9961a.9928.9928 0 01.7647.3545l3.3994 4.2685a1.0007 1.0007 0 00.4443.3184L28 19.5781zM28 2H30V9H28zM24 6H26V9H24zM20 4H22V9H20z" })), children); }); { VehicleInsights.propTypes = iconPropTypes; } var VehicleServices = /*#__PURE__*/React__default["default"].forwardRef(function VehicleServices(_ref5, ref) { var children = _ref5.children, _ref5$size = _ref5.size, size = _ref5$size === void 0 ? 16 : _ref5$size, rest = _objectWithoutProperties$1(_ref5, _excluded5); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path7 || (_path7 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3379 17.9336l-7.7324-2.7783L18.374 11.0967A2.99 2.99 0 0016.0537 10H8.0576a2.9982 2.9982 0 00-2.48 1.3115L2.8662 15.2949A4.9884 4.9884 0 002 18.1074V26a1 1 0 001 1H5.1421a3.9806 3.9806 0 007.7158 0h6.2842a3.9806 3.9806 0 007.7158 0H29a1 1 0 001-1V18.875A1 1 0 0029.3379 17.9336zM9 28a2 2 0 112-2A2.0027 2.0027 0 019 28zm14 0a2 2 0 112-2A2.0025 2.0025 0 0123 28zm5-3H26.8579a3.9806 3.9806 0 00-7.7158 0H12.8579a3.9806 3.9806 0 00-7.7158 0H4V18.1074A2.9977 2.9977 0 014.52 16.4189l2.711-3.9814A.9992.9992 0 018.0576 12h7.9961a.9928.9928 0 01.7647.3545l3.3994 4.2685a1.0007 1.0007 0 00.4443.3184L28 19.5781zM24.5547 6a2 2 0 012-2H30a3.9756 3.9756 0 00-7.304 1H16V7h6.696A3.9756 3.9756 0 0030 8H26.5547A2 2 0 0124.5547 6z" })), children); }); { VehicleServices.propTypes = iconPropTypes; } var Version = /*#__PURE__*/React__default["default"].forwardRef(function Version(_ref6, ref) { var children = _ref6.children, _ref6$size = _ref6.size, size = _ref6$size === void 0 ? 16 : _ref6$size, rest = _objectWithoutProperties$1(_ref6, _excluded6); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path8 || (_path8 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2V4H26V19h2V4a2.0023,2.0023,0,0,0-2-2Z" })), _path9 || (_path9 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11,7V9H21V24h2V9a2.0023,2.0023,0,0,0-2-2Z" })), _path10 || (_path10 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,12H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H6a2.0023,2.0023,0,0,1-2-2V14A2.0023,2.0023,0,0,1,6,12Zm10,2L6,13.9988V28H16Z" })), children); }); { Version.propTypes = iconPropTypes; } var VerticalView = /*#__PURE__*/React__default["default"].forwardRef(function VerticalView(_ref7, ref) { var children = _ref7.children, _ref7$size = _ref7.size, size = _ref7$size === void 0 ? 16 : _ref7$size, rest = _objectWithoutProperties$1(_ref7, _excluded7); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path11 || (_path11 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 30H4a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 014 2h8a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0112 30zM4 4V28h8V4zM28 30H20a2.0021 2.0021 0 01-2-2V4a2.0021 2.0021 0 012-2h8a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30zM20 4V28h8V4z" })), children); }); { VerticalView.propTypes = iconPropTypes; } var Video = /*#__PURE__*/React__default["default"].forwardRef(function Video(_ref8, ref) { var children = _ref8.children, _ref8$size = _ref8.size, size = _ref8$size === void 0 ? 16 : _ref8$size, rest = _objectWithoutProperties$1(_ref8, _excluded8); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path12 || (_path12 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26ZM4,8V24H21V18a1,1,0,0,1,1.58-.81L28,21.06V10.94l-5.42,3.87A1,1,0,0,1,21,14V8Z" })), children); }); { Video.propTypes = iconPropTypes; } var VideoAdd = /*#__PURE__*/React__default["default"].forwardRef(function VideoAdd(_ref9, ref) { var children = _ref9.children, _ref9$size = _ref9.size, size = _ref9$size === void 0 ? 16 : _ref9$size, rest = _objectWithoutProperties$1(_ref9, _excluded9); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path13 || (_path13 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 15L14 15 14 11 12 11 12 15 8 15 8 17 12 17 12 21 14 21 14 17 18 17 18 15z" })), _path14 || (_path14 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" })), children); }); { VideoAdd.propTypes = iconPropTypes; } var VideoChat = /*#__PURE__*/React__default["default"].forwardRef(function VideoChat(_ref10, ref) { var children = _ref10.children, _ref10$size = _ref10.size, size = _ref10$size === void 0 ? 16 : _ref10$size, rest = _objectWithoutProperties$1(_ref10, _excluded10); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path15 || (_path15 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 12H17V14H8zM8 17H13V19H8z" })), _path16 || (_path16 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,26H4a2.0023,2.0023,0,0,1-2-2V8A2.0023,2.0023,0,0,1,4,6H21a2.0023,2.0023,0,0,1,2,2v4.0566l5.4189-3.87A.9995.9995,0,0,1,30,9V23a.9995.9995,0,0,1-1.5811.8135L23,19.9434V24A2.0023,2.0023,0,0,1,21,26ZM4,8V24.001L21,24V18a.9995.9995,0,0,1,1.5811-.8135L28,21.0566V10.9434l-5.4189,3.87A.9995.9995,0,0,1,21,14V8Z" })), children); }); { VideoChat.propTypes = iconPropTypes; } var VideoFilled = /*#__PURE__*/React__default["default"].forwardRef(function VideoFilled(_ref11, ref) { var children = _ref11.children, _ref11$size = _ref11.size, size = _ref11$size === void 0 ? 16 : _ref11$size, rest = _objectWithoutProperties$1(_ref11, _excluded11); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path17 || (_path17 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H21a2,2,0,0,1,2,2v4.06l5.42-3.87A1,1,0,0,1,30,9V23a1,1,0,0,1-1.58.81L23,19.94V24A2,2,0,0,1,21,26Z" })), children); }); { VideoFilled.propTypes = iconPropTypes; } var VideoOff = /*#__PURE__*/React__default["default"].forwardRef(function VideoOff(_ref12, ref) { var children = _ref12.children, _ref12$size = _ref12.size, size = _ref12$size === void 0 ? 16 : _ref12$size, rest = _objectWithoutProperties$1(_ref12, _excluded12); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path18 || (_path18 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.46 8.11a1 1 0 00-1 .08L23 12.06V10.44l7-7L28.56 2 2 28.56 3.44 30l4-4H21a2 2 0 002-2V19.94l5.42 3.87A1 1 0 0030 23V9A1 1 0 0029.46 8.11zM28 21.06l-5.42-3.87A1 1 0 0021 18v6H9.44L21 12.44V14a1 1 0 001.58.81L28 10.94zM4 24V8H20V6H4A2 2 0 002 8V24z" })), children); }); { VideoOff.propTypes = iconPropTypes; } var VideoOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function VideoOffFilled(_ref13, ref) { var children = _ref13.children, _ref13$size = _ref13.size, size = _ref13$size === void 0 ? 16 : _ref13$size, rest = _objectWithoutProperties$1(_ref13, _excluded13); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path19 || (_path19 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.31 6H4A2 2 0 002 8V24a2.85 2.85 0 000 .29zM29.46 8.11a1 1 0 00-1 .08L23 12.06V10.44l7-7L28.56 2 2 28.56 3.44 30l4-4H21a2 2 0 002-2V19.94l5.42 3.87A1 1 0 0030 23V9A1 1 0 0029.46 8.11z" })), children); }); { VideoOffFilled.propTypes = iconPropTypes; } var View = /*#__PURE__*/React__default["default"].forwardRef(function View(_ref14, ref) { var children = _ref14.children, _ref14$size = _ref14.size, size = _ref14$size === void 0 ? 16 : _ref14$size, rest = _objectWithoutProperties$1(_ref14, _excluded14); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path20 || (_path20 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.5,7.8C14.3,4.7,11.3,2.6,8,2.5C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3c1.2,3.1,4.1,5.2,7.5,5.3 c3.3-0.1,6.3-2.2,7.5-5.3C15.5,8.1,15.5,7.9,15.5,7.8z M8,12.5c-2.7,0-5.4-2-6.5-4.5c1-2.5,3.8-4.5,6.5-4.5s5.4,2,6.5,4.5 C13.4,10.5,10.6,12.5,8,12.5z" })), _path21 || (_path21 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S9.1,10,8,10z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path22 || (_path22 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,25c-5.3,0-10.9-3.93-12.93-9C5.1,10.93,10.7,7,16,7s10.9,3.93,12.93,9C26.9,21.07,21.3,25,16,25Z" })), _path23 || (_path23 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" })), children); }); { View.propTypes = iconPropTypes; } var ViewFilled = /*#__PURE__*/React__default["default"].forwardRef(function ViewFilled(_ref15, ref) { var children = _ref15.children, _ref15$size = _ref15.size, size = _ref15$size === void 0 ? 16 : _ref15$size, rest = _objectWithoutProperties$1(_ref15, _excluded15); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle2 || (_circle2 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "16", r: "4" })), _path24 || (_path24 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.94,15.66A16.69,16.69,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16.69,16.69,0,0,0,16,27,16.69,16.69,0,0,0,30.94,16.34,1,1,0,0,0,30.94,15.66ZM16,22.5A6.5,6.5,0,1,1,22.5,16,6.51,6.51,0,0,1,16,22.5Z" })), children); }); { ViewFilled.propTypes = iconPropTypes; } var ViewMode_1 = /*#__PURE__*/React__default["default"].forwardRef(function ViewMode_1(_ref16, ref) { var children = _ref16.children, _ref16$size = _ref16.size, size = _ref16$size === void 0 ? 16 : _ref16$size, rest = _objectWithoutProperties$1(_ref16, _excluded16); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path25 || (_path25 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H28V28H4zM4 19H28V21H4zM26 6v6H6V6H26m0-2H6A2 2 0 004 6v6a2 2 0 002 2H26a2 2 0 002-2V6a2 2 0 00-2-2z" })), children); }); { ViewMode_1.propTypes = iconPropTypes; } var ViewMode_2 = /*#__PURE__*/React__default["default"].forwardRef(function ViewMode_2(_ref17, ref) { var children = _ref17.children, _ref17$size = _ref17.size, size = _ref17$size === void 0 ? 16 : _ref17$size, rest = _objectWithoutProperties$1(_ref17, _excluded17); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path26 || (_path26 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 26H28V28H4zM4 19H28V21H4zM12 6v6H6V6h6m0-2H6A2 2 0 004 6v6a2 2 0 002 2h6a2 2 0 002-2V6a2 2 0 00-2-2zM26 6v6H20V6h6m0-2H20a2 2 0 00-2 2v6a2 2 0 002 2h6a2 2 0 002-2V6a2 2 0 00-2-2z" })), children); }); { ViewMode_2.propTypes = iconPropTypes; } var ViewOff = /*#__PURE__*/React__default["default"].forwardRef(function ViewOff(_ref18, ref) { var children = _ref18.children, _ref18$size = _ref18.size, size = _ref18$size === void 0 ? 16 : _ref18$size, rest = _objectWithoutProperties$1(_ref18, _excluded18); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path27 || (_path27 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.6,11.3l0.7-0.7C2.6,9.8,1.9,9,1.5,8c1-2.5,3.8-4.5,6.5-4.5c0.7,0,1.4,0.1,2,0.4l0.8-0.8C9.9,2.7,9,2.5,8,2.5 C4.7,2.6,1.7,4.7,0.5,7.8c0,0.1,0,0.2,0,0.3C1,9.3,1.7,10.4,2.6,11.3z" })), _path28 || (_path28 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6 7.9c.1-1 .9-1.8 1.8-1.8l.9-.9C7.2 4.7 5.5 5.6 5.1 7.2 5 7.7 5 8.3 5.1 8.8L6 7.9zM15.5 7.8c-.6-1.5-1.6-2.8-2.9-3.7L15 1.7 14.3 1 1 14.3 1.7 15l2.6-2.6c1.1.7 2.4 1 3.7 1.1 3.3-.1 6.3-2.2 7.5-5.3C15.5 8.1 15.5 7.9 15.5 7.8zM10 8c0 1.1-.9 2-2 2-.3 0-.7-.1-1-.3L9.7 7C9.9 7.3 10 7.6 10 8zM8 12.5c-1 0-2.1-.3-3-.8l1.3-1.3c1.4.9 3.2.6 4.2-.8.7-1 .7-2.4 0-3.4l1.4-1.4c1.1.8 2 1.9 2.6 3.2C13.4 10.5 10.6 12.5 8 12.5z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path29 || (_path29 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.24,22.51l1.43-1.42A14.06,14.06,0,0,1,3.07,16C5.1,10.93,10.7,7,16,7a12.38,12.38,0,0,1,4,.72l1.55-1.56A14.72,14.72,0,0,0,16,5,16.69,16.69,0,0,0,1.06,15.66a1,1,0,0,0,0,.68A16,16,0,0,0,5.24,22.51Z" })), _path30 || (_path30 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12 15.73a4 4 0 013.7-3.7l1.81-1.82a6 6 0 00-7.33 7.33zM30.94 15.66A16.4 16.4 0 0025.2 8.22L30 3.41 28.59 2 2 28.59 3.41 30l5.1-5.1A15.29 15.29 0 0016 27 16.69 16.69 0 0030.94 16.34 1 1 0 0030.94 15.66zM20 16a4 4 0 01-6 3.44L19.44 14A4 4 0 0120 16zm-4 9a13.05 13.05 0 01-6-1.58l2.54-2.54a6 6 0 008.35-8.35l2.87-2.87A14.54 14.54 0 0128.93 16C26.9 21.07 21.3 25 16 25z" })), children); }); { ViewOff.propTypes = iconPropTypes; } var ViewOffFilled = /*#__PURE__*/React__default["default"].forwardRef(function ViewOffFilled(_ref19, ref) { var children = _ref19.children, _ref19$size = _ref19.size, size = _ref19$size === void 0 ? 16 : _ref19$size, rest = _objectWithoutProperties$1(_ref19, _excluded19); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path31 || (_path31 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.94 15.66a16.4 16.4 0 00-5.73-7.45L30 3.41 28.59 2 2 28.59 3.41 30l5.1-5.09A15.38 15.38 0 0016 27 16.69 16.69 0 0030.94 16.34 1 1 0 0030.94 15.66zM16 22.5a6.46 6.46 0 01-3.83-1.26L14 19.43A4 4 0 0019.43 14l1.81-1.81A6.49 6.49 0 0116 22.5zM4.53 21.81l5-5A6.84 6.84 0 019.5 16 6.51 6.51 0 0116 9.5a6.84 6.84 0 01.79.05l3.78-3.77A14.39 14.39 0 0016 5 16.69 16.69 0 001.06 15.66a1 1 0 000 .68A15.86 15.86 0 004.53 21.81z" })), children); }); { ViewOffFilled.propTypes = iconPropTypes; } var ViewNext = /*#__PURE__*/React__default["default"].forwardRef(function ViewNext(_ref20, ref) { var children = _ref20.children, _ref20$size = _ref20.size, size = _ref20$size === void 0 ? 16 : _ref20$size, rest = _objectWithoutProperties$1(_ref20, _excluded20); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path32 || (_path32 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20.587 22L15 16.41 15 7 16.998 7 16.998 15.582 22 20.587 20.587 22z" })), _path33 || (_path33 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z" })), children); }); { ViewNext.propTypes = iconPropTypes; } var VirtualColumn = /*#__PURE__*/React__default["default"].forwardRef(function VirtualColumn(_ref21, ref) { var children = _ref21.children, _ref21$size = _ref21.size, size = _ref21$size === void 0 ? 16 : _ref21$size, rest = _objectWithoutProperties$1(_ref21, _excluded21); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path34 || (_path34 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 11L26.414 12.414 23.828 15 30 15 30 17 23.828 17 26.414 19.586 25 21 20 16 25 11z" })), _path35 || (_path35 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 28H20a2.0023 2.0023 0 01-2-2V6a2.0023 2.0023 0 012-2H30V6H20V26H30zM12 28H2V26H12V6H2V4H12a2.0023 2.0023 0 012 2V26A2.0023 2.0023 0 0112 28z" })), _path36 || (_path36 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7 11L5.586 12.414 8.172 15 2 15 2 17 8.172 17 5.586 19.586 7 21 12 16 7 11z" })), children); }); { VirtualColumn.propTypes = iconPropTypes; } var VirtualColumnKey = /*#__PURE__*/React__default["default"].forwardRef(function VirtualColumnKey(_ref22, ref) { var children = _ref22.children, _ref22$size = _ref22.size, size = _ref22$size === void 0 ? 16 : _ref22$size, rest = _objectWithoutProperties$1(_ref22, _excluded22); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle3 || (_circle3 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24.5", cy: "9.5", r: "1.5" })), _path37 || (_path37 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.4143,22H12V16.5857l6.03-6.03A5.3518,5.3518,0,0,1,18,10a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM14,20h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,24,14a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L14,17.4143Z" })), _path38 || (_path38 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,18v8H10V6h4V4H4A2.0025,2.0025,0,0,0,2,6V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V18ZM4,6H8V26H4Z" })), children); }); { VirtualColumnKey.propTypes = iconPropTypes; } var VirtualDesktop = /*#__PURE__*/React__default["default"].forwardRef(function VirtualDesktop(_ref23, ref) { var children = _ref23.children, _ref23$size = _ref23.size, size = _ref23$size === void 0 ? 16 : _ref23$size, rest = _objectWithoutProperties$1(_ref23, _excluded23); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path39 || (_path39 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,16H11a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h4v2H12v2h8V28H17V26h4a2.0023,2.0023,0,0,0,2-2V18A2.0023,2.0023,0,0,0,21,16ZM11,24V18H21l.0015,6Z" })), _path40 || (_path40 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.8218,10.124a9.9992,9.9992,0,0,0-19.6436,0A7.4914,7.4914,0,0,0,7,24.9746v-2a5.4945,5.4945,0,0,1,.123-10.9541l.8365-.0566.09-.834a7.9979,7.9979,0,0,1,15.9014,0l.09.834.8365.0566A5.4945,5.4945,0,0,1,25,22.9746v2a7.4914,7.4914,0,0,0,.8218-14.8506Z" })), children); }); { VirtualDesktop.propTypes = iconPropTypes; } var VirtualMachine = /*#__PURE__*/React__default["default"].forwardRef(function VirtualMachine(_ref24, ref) { var children = _ref24.children, _ref24$size = _ref24.size, size = _ref24$size === void 0 ? 16 : _ref24$size, rest = _objectWithoutProperties$1(_ref24, _excluded24); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path41 || (_path41 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,13H12a2.0025,2.0025,0,0,0-2,2V28a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V15A2.0025,2.0025,0,0,0,20,13Zm0,2,0,3H12V15Zm0,5,0,3H12V20Zm-8,8V25h8v3Z" })), _path42 || (_path42 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.91,10.13a.121.121,0,0,1-.0967-.0952A10.0061,10.0061,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.1858,10.0347a.1212.1212,0,0,1-.0964.0957A7.5019,7.5019,0,0,0,7.4912,25H8V23H7.4954a5.5108,5.5108,0,0,1-5.4387-6.3,5.6992,5.6992,0,0,1,4.7138-4.6606l1.0166-.1836a.1306.1306,0,0,0,.1045-.1035l.18-.9351a8.28,8.28,0,0,1,6.8469-6.7427,7.957,7.957,0,0,1,2.8471.1245,8.22,8.22,0,0,1,6.1475,6.545l.1941,1.0083a.13.13,0,0,0,.1045.1035l1.0576.1914a5.7819,5.7819,0,0,1,3.1011,1.539A5.5052,5.5052,0,0,1,24.5076,23H24v2h.5076A7.5019,7.5019,0,0,0,25.91,10.13Z" })), children); }); { VirtualMachine.propTypes = iconPropTypes; } var VirtualPrivateCloud = /*#__PURE__*/React__default["default"].forwardRef(function VirtualPrivateCloud(_ref25, ref) { var children = _ref25.children, _ref25$size = _ref25.size, size = _ref25$size === void 0 ? 16 : _ref25$size, rest = _objectWithoutProperties$1(_ref25, _excluded25); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path43 || (_path43 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,20V17a4,4,0,0,0-8,0v3a2.0025,2.0025,0,0,0-2,2v6a2.0025,2.0025,0,0,0,2,2h8a2.0025,2.0025,0,0,0,2-2V22A2.0025,2.0025,0,0,0,20,20Zm-6-3a2,2,0,0,1,4,0v3H14ZM12,28V22h8l.0012,6Z" })), _path44 || (_path44 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.8288,10.1152A10.0067,10.0067,0,0,0,17.89,2.1816,10.0025,10.0025,0,0,0,6.17,10.1152,7.502,7.502,0,0,0,7.4912,25H8V23H7.4953a5.5019,5.5019,0,0,1-.9694-10.9165l1.3488-.2441.2591-1.3457a8.0109,8.0109,0,0,1,15.7312,0l.259,1.3457,1.3489.2441A5.5019,5.5019,0,0,1,24.5076,23H24v2h.5076a7.502,7.502,0,0,0,1.3212-14.8848Z" })), children); }); { VirtualPrivateCloud.propTypes = iconPropTypes; } var VirtualPrivateCloudAlt = /*#__PURE__*/React__default["default"].forwardRef(function VirtualPrivateCloudAlt(_ref26, ref) { var children = _ref26.children, _ref26$size = _ref26.size, size = _ref26$size === void 0 ? 16 : _ref26$size, rest = _objectWithoutProperties$1(_ref26, _excluded26); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path45 || (_path45 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.4141,22,10,8.5859V2H2v8H8.5859L22,23.4141V30h8V22ZM8,8H4V4H8ZM28,28H24V24h4Z" })), _path46 || (_path46 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 6a3.9915 3.9915 0 00-7.8579-1H13V7h9.1421A3.9945 3.9945 0 0025 9.8579V19h2V9.8579A3.9962 3.9962 0 0030 6zM26 8a2 2 0 112-2A2.0023 2.0023 0 0126 8zM19 25H9.8579A3.9945 3.9945 0 007 22.1421V13H5v9.1421A3.9915 3.9915 0 109.8579 27H19zM6 28a2 2 0 112-2A2.0023 2.0023 0 016 28z" })), children); }); { VirtualPrivateCloudAlt.propTypes = iconPropTypes; } var VisualRecognition = /*#__PURE__*/React__default["default"].forwardRef(function VisualRecognition(_ref27, ref) { var children = _ref27.children, _ref27$size = _ref27.size, size = _ref27$size === void 0 ? 16 : _ref27$size, rest = _objectWithoutProperties$1(_ref27, _excluded27); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle4 || (_circle4 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "23", cy: "12", r: "2" })), _path47 || (_path47 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,5H16.24A8,8,0,1,0,6,16.92V27a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V7A2,2,0,0,0,28,5ZM4,10A6,6,0,0,1,15.19,7H8V9h7.91A6.64,6.64,0,0,1,16,10a6.64,6.64,0,0,1-.09,1H10v2h5.19A6,6,0,0,1,4,10ZM28,27H8l5-5,1.59,1.59a2,2,0,0,0,2.82,0L23,18l5,5Zm0-6.83-3.59-3.59a2,2,0,0,0-2.82,0L16,22.17l-1.59-1.59a2,2,0,0,0-2.82,0L8,24.17V17.74A8.24,8.24,0,0,0,10,18a8,8,0,0,0,8-8,7.9,7.9,0,0,0-.59-3H28Z" })), children); }); { VisualRecognition.propTypes = iconPropTypes; } var Vlan = /*#__PURE__*/React__default["default"].forwardRef(function Vlan(_ref28, ref) { var children = _ref28.children, _ref28$size = _ref28.size, size = _ref28$size === void 0 ? 16 : _ref28$size, rest = _objectWithoutProperties$1(_ref28, _excluded28); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path48 || (_path48 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,17V15H17V11h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H13a2.0023,2.0023,0,0,0-2,2V9a2.0023,2.0023,0,0,0,2,2h2v4H2v2H8v4H6a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H10V17H22v4H20a2.0023,2.0023,0,0,0-2,2v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V23a2.0023,2.0023,0,0,0-2-2H24V17ZM13,4h6V9H13ZM12,28H6V23h6Zm14,0H20V23h6Z" })), children); }); { Vlan.propTypes = iconPropTypes; } var VlanIbm = /*#__PURE__*/React__default["default"].forwardRef(function VlanIbm(_ref29, ref) { var children = _ref29.children, _ref29$size = _ref29.size, size = _ref29$size === void 0 ? 16 : _ref29$size, rest = _objectWithoutProperties$1(_ref29, _excluded29); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path49 || (_path49 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 22a4 4 0 104 4A4.0045 4.0045 0 0016 22zm0 6a2 2 0 112-2A2.002 2.002 0 0116 28zM30 5a3 3 0 10-4 2.8154V15H17V9H15v6H6V7.8159a3.0007 3.0007 0 10-2 0V15a2.002 2.002 0 002 2h9v3h2V17h9a2.002 2.002 0 002-2V7.8159A2.9958 2.9958 0 0030 5zM5 4A1 1 0 114 5 1.0013 1.0013 0 015 4zM27 6a1 1 0 111-1A1.0013 1.0013 0 0127 6z" })), _circle5 || (_circle5 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "5", r: "2" })), children); }); { VlanIbm.propTypes = iconPropTypes; } var VmdkDisk = /*#__PURE__*/React__default["default"].forwardRef(function VmdkDisk(_ref30, ref) { var children = _ref30.children, _ref30$size = _ref30.size, size = _ref30$size === void 0 ? 16 : _ref30$size, rest = _objectWithoutProperties$1(_ref30, _excluded30); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle6 || (_circle6 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "10.5", cy: "24.5", r: "1.5" })), _path50 || (_path50 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.5 14.964H21.5V20.035H19.5z", transform: "rotate(-45 20.5 17.5)" })), _circle7 || (_circle7 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "13", r: "2" })), _path51 || (_path51 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,6a7,7,0,0,0,0,14V18a5,5,0,1,1,5-5h2A7,7,0,0,0,16,6Z" })), _path52 || (_path52 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4A2,2,0,0,0,26,2Zm0,26H6V4H26Z" })), children); }); { VmdkDisk.propTypes = iconPropTypes; } var VoiceActivate = /*#__PURE__*/React__default["default"].forwardRef(function VoiceActivate(_ref31, ref) { var children = _ref31.children, _ref31$size = _ref31.size, size = _ref31$size === void 0 ? 16 : _ref31$size, rest = _objectWithoutProperties$1(_ref31, _excluded31); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path53 || (_path53 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,30H24V27H20a5.0055,5.0055,0,0,1-5-5V20.7207l-2.3162-.772a1,1,0,0,1-.5412-1.4631L15,13.7229V11a9.01,9.01,0,0,1,9-9h5V4H24a7.0078,7.0078,0,0,0-7,7v3a.9991.9991,0,0,1-.1426.5144l-2.3586,3.9312,1.8174.6057A1,1,0,0,1,17,20v2a3.0033,3.0033,0,0,0,3,3h5a1,1,0,0,1,1,1Z" })), _path54 || (_path54 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M19 12H23V14H19zM9.3325 25.2168a7.0007 7.0007 0 010-10.4341l1.334 1.49a5 5 0 000 7.4537z" })), _path55 || (_path55 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.3994,28.8008a11.0019,11.0019,0,0,1,0-17.6006L7.6,12.8a9.0009,9.0009,0,0,0,0,14.4014Z" })), children); }); { VoiceActivate.propTypes = iconPropTypes; } var Voicemail = /*#__PURE__*/React__default["default"].forwardRef(function Voicemail(_ref32, ref) { var children = _ref32.children, _ref32$size = _ref32.size, size = _ref32$size === void 0 ? 16 : _ref32$size, rest = _objectWithoutProperties$1(_ref32, _excluded32); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path56 || (_path56 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,10a6,6,0,0,0-4.46,10H12.46A6,6,0,1,0,8,22H24a6,6,0,0,0,0-12ZM4,16a4,4,0,1,1,4,4A4,4,0,0,1,4,16Zm20,4a4,4,0,1,1,4-4A4,4,0,0,1,24,20Z" })), children); }); { Voicemail.propTypes = iconPropTypes; } var VolumeBlockStorage = /*#__PURE__*/React__default["default"].forwardRef(function VolumeBlockStorage(_ref33, ref) { var children = _ref33.children, _ref33$size = _ref33.size, size = _ref33$size === void 0 ? 16 : _ref33$size, rest = _objectWithoutProperties$1(_ref33, _excluded33); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path57 || (_path57 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17 21H10V14h7zm-5-2h3V16H12zM17 30H10V23h7zm-5-2h3V25H12zM26 21H19V14h7zm-5-2h3V16H21zM26 30H19V23h7zm-5-2h3V25H21z" })), _path58 || (_path58 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" })), children); }); { VolumeBlockStorage.propTypes = iconPropTypes; } var VolumeDown = /*#__PURE__*/React__default["default"].forwardRef(function VolumeDown(_ref34, ref) { var children = _ref34.children, _ref34$size = _ref34.size, size = _ref34$size === void 0 ? 16 : _ref34$size, rest = _objectWithoutProperties$1(_ref34, _excluded34); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path59 || (_path59 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.1 10.66L23.58 12a6 6 0 01-.18 7.94l1.47 1.36a8 8 0 00.23-10.59zM20 30a1 1 0 01-.71-.3L11.67 22H5a1 1 0 01-1-1H4V11a1 1 0 011-1h6.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0121 3V29A1 1 0 0120 30zM6 20h6a1.17 1.17 0 01.79.3L19 26.57V5.43L12.79 11.7A1.17 1.17 0 0112 12H6z" })), children); }); { VolumeDown.propTypes = iconPropTypes; } var VolumeDownAlt = /*#__PURE__*/React__default["default"].forwardRef(function VolumeDownAlt(_ref35, ref) { var children = _ref35.children, _ref35$size = _ref35.size, size = _ref35$size === void 0 ? 16 : _ref35$size, rest = _objectWithoutProperties$1(_ref35, _excluded35); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path60 || (_path60 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 15H32V17H22zM18 30a.997.997 0 01-.7109-.2969L9.666 22H3a.9993.9993 0 01-1-.9988V11a.9993.9993 0 01.9988-1H9.666l7.623-7.7031A1 1 0 0119 3V29A1.0007 1.0007 0 0118 30zM4 20h6a1.2008 1.2008 0 01.7939.2969L17 26.5684V5.4316l-6.2061 6.2715A1.2013 1.2013 0 0110 12H4z" })), children); }); { VolumeDownAlt.propTypes = iconPropTypes; } var VolumeDownFilled = /*#__PURE__*/React__default["default"].forwardRef(function VolumeDownFilled(_ref36, ref) { var children = _ref36.children, _ref36$size = _ref36.size, size = _ref36$size === void 0 ? 16 : _ref36$size, rest = _objectWithoutProperties$1(_ref36, _excluded36); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path61 || (_path61 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.1 10.66L23.58 12a6 6 0 01-.18 7.94l1.47 1.36a8 8 0 00.23-10.59zM20 30a1 1 0 01-.71-.3L11.67 22H5a1 1 0 01-1-1H4V11a1 1 0 011-1h6.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0121 3V29A1 1 0 0120 30z" })), children); }); { VolumeDownFilled.propTypes = iconPropTypes; } var VolumeDownFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function VolumeDownFilledAlt(_ref37, ref) { var children = _ref37.children, _ref37$size = _ref37.size, size = _ref37$size === void 0 ? 16 : _ref37$size, rest = _objectWithoutProperties$1(_ref37, _excluded37); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path62 || (_path62 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 15H32V17H22zM18 30a.997.997 0 01-.7109-.2969L9.666 22H3a.9993.9993 0 01-1-.9988V11a.9993.9993 0 01.9988-1H9.666l7.623-7.7031A1 1 0 0119 3V29A1.0007 1.0007 0 0118 30z" })), children); }); { VolumeDownFilledAlt.propTypes = iconPropTypes; } var VolumeFileStorage = /*#__PURE__*/React__default["default"].forwardRef(function VolumeFileStorage(_ref38, ref) { var children = _ref38.children, _ref38$size = _ref38.size, size = _ref38$size === void 0 ? 16 : _ref38$size, rest = _objectWithoutProperties$1(_ref38, _excluded38); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path63 || (_path63 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25.707,17.293l-5-5A1,1,0,0,0,20,12H14a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V18A1,1,0,0,0,25.707,17.293ZM23.5857,18H20V14.4141ZM14,28V14h4v4a2,2,0,0,0,2,2h4v8Z" })), _path64 || (_path64 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,27H4a2.0023,2.0023,0,0,1-2-2V5A2.0023,2.0023,0,0,1,4,3h7.5857A1.9865,1.9865,0,0,1,13,3.5859L16.4143,7H28a2.0023,2.0023,0,0,1,2,2v8H28V9H15.5857l-4-4H4V25H8Z" })), children); }); { VolumeFileStorage.propTypes = iconPropTypes; } var VolumeMute = /*#__PURE__*/React__default["default"].forwardRef(function VolumeMute(_ref39, ref) { var children = _ref39.children, _ref39$size = _ref39.size, size = _ref39$size === void 0 ? 16 : _ref39$size, rest = _objectWithoutProperties$1(_ref39, _excluded39); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path65 || (_path65 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 12.41L29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41zM18 30a1 1 0 01-.71-.3L9.67 22H3a1 1 0 01-1-1H2V11a1 1 0 011-1H9.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0119 3V29A1 1 0 0118 30zM4 20h6a1.17 1.17 0 01.79.3L17 26.57V5.43L10.79 11.7A1.17 1.17 0 0110 12H4z" })), children); }); { VolumeMute.propTypes = iconPropTypes; } var VolumeMuteFilled = /*#__PURE__*/React__default["default"].forwardRef(function VolumeMuteFilled(_ref40, ref) { var children = _ref40.children, _ref40$size = _ref40.size, size = _ref40$size === void 0 ? 16 : _ref40$size, rest = _objectWithoutProperties$1(_ref40, _excluded40); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path66 || (_path66 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 12.41L29.59 11 26 14.59 22.41 11 21 12.41 24.59 16 21 19.59 22.41 21 26 17.41 29.59 21 31 19.59 27.41 16 31 12.41zM18 30a1 1 0 01-.71-.3L9.67 22H3a1 1 0 01-1-1H2V11a1 1 0 011-1H9.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0119 3V29A1 1 0 0118 30z" })), children); }); { VolumeMuteFilled.propTypes = iconPropTypes; } var VolumeObjectStorage = /*#__PURE__*/React__default["default"].forwardRef(function VolumeObjectStorage(_ref41, ref) { var children = _ref41.children, _ref41$size = _ref41.size, size = _ref41$size === void 0 ? 16 : _ref41$size, rest = _objectWithoutProperties$1(_ref41, _excluded41); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path67 || (_path67 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,24a2.98,2.98,0,0,0-2.0376.8115l-4.0037-2.4023a2.0478,2.0478,0,0,0,0-.8184l4.0037-2.4023a3.2463,3.2463,0,1,0-.9211-1.7793l-4.0037,2.4023a3,3,0,1,0,0,4.377l4.0037,2.4023A2.9729,2.9729,0,0,0,20,27a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0008,1.0008,0,0,1,23,16Zm-9,7a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,14,23Zm9,5a1,1,0,1,1,1-1A1.0008,1.0008,0,0,1,23,28Z" })), _path68 || (_path68 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,28H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h7.5857A1.9865,1.9865,0,0,1,13,4.5859L16.4143,8H28a2.0023,2.0023,0,0,1,2,2v8H28V10H15.5857l-4-4H4V26H8Z" })), children); }); { VolumeObjectStorage.propTypes = iconPropTypes; } var VolumeUp = /*#__PURE__*/React__default["default"].forwardRef(function VolumeUp(_ref42, ref) { var children = _ref42.children, _ref42$size = _ref42.size, size = _ref42$size === void 0 ? 16 : _ref42$size, rest = _objectWithoutProperties$1(_ref42, _excluded42); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path69 || (_path69 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" })), _path70 || (_path70 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.58 12a6 6 0 01-.18 7.94l1.47 1.36a8 8 0 00.23-10.59zM18 30a1 1 0 01-.71-.3L9.67 22H3a1 1 0 01-1-1H2V11a1 1 0 011-1H9.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0119 3V29A1 1 0 0118 30zM4 20h6.08a1 1 0 01.71.3L17 26.57V5.43L10.79 11.7a1 1 0 01-.71.3H4z" })), children); }); { VolumeUp.propTypes = iconPropTypes; } var VolumeUpAlt = /*#__PURE__*/React__default["default"].forwardRef(function VolumeUpAlt(_ref43, ref) { var children = _ref43.children, _ref43$size = _ref43.size, size = _ref43$size === void 0 ? 16 : _ref43$size, rest = _objectWithoutProperties$1(_ref43, _excluded43); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path71 || (_path71 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32 15L28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15zM18 30a.997.997 0 01-.7109-.2969L9.666 22H3a.9993.9993 0 01-1-.9988V11a.9993.9993 0 01.9988-1H9.666l7.623-7.7031A1 1 0 0119 3V29A1.0007 1.0007 0 0118 30zM4 20h6a1.2008 1.2008 0 01.7939.2969L17 26.5684V5.4316l-6.2061 6.2715A1.2013 1.2013 0 0110 12H4z" })), children); }); { VolumeUpAlt.propTypes = iconPropTypes; } var VolumeUpFilled = /*#__PURE__*/React__default["default"].forwardRef(function VolumeUpFilled(_ref44, ref) { var children = _ref44.children, _ref44$size = _ref44.size, size = _ref44$size === void 0 ? 16 : _ref44$size, rest = _objectWithoutProperties$1(_ref44, _excluded44); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path72 || (_path72 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.16,8.08,25.63,9.37a10,10,0,0,1-.29,13.23L26.81,24a12,12,0,0,0,.35-15.88Z" })), _path73 || (_path73 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.58 12a6 6 0 01-.18 7.94l1.47 1.36a8 8 0 00.23-10.59zM18 30a1 1 0 01-.71-.3L9.67 22H3a1 1 0 01-1-1H2V11a1 1 0 011-1H9.67l7.62-7.7a1 1 0 011.41 0A1 1 0 0119 3V29A1 1 0 0118 30z" })), children); }); { VolumeUpFilled.propTypes = iconPropTypes; } var VolumeUpFilledAlt = /*#__PURE__*/React__default["default"].forwardRef(function VolumeUpFilledAlt(_ref45, ref) { var children = _ref45.children, _ref45$size = _ref45.size, size = _ref45$size === void 0 ? 16 : _ref45$size, rest = _objectWithoutProperties$1(_ref45, _excluded45); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path74 || (_path74 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M32 15L28 15 28 11 26 11 26 15 22 15 22 17 26 17 26 21 28 21 28 17 32 17 32 15zM18 30a.997.997 0 01-.7109-.2969L9.666 22H3a.9993.9993 0 01-1-.9988V11a.9993.9993 0 01.9988-1H9.666l7.623-7.7031A1 1 0 0119 3V29A1.0007 1.0007 0 0118 30z" })), children); }); { VolumeUpFilledAlt.propTypes = iconPropTypes; } var Vpn = /*#__PURE__*/React__default["default"].forwardRef(function Vpn(_ref46, ref) { var children = _ref46.children, _ref46$size = _ref46.size, size = _ref46$size === void 0 ? 16 : _ref46$size, rest = _objectWithoutProperties$1(_ref46, _excluded46); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path75 || (_path75 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM28 19L24.32 9 22 9 22 23 24 23 24 13 27.68 23 30 23 30 9 28 9 28 19zM8 9L6 22 4 9 2 9 4.52 23 7.48 23 10 9 8 9z" })), children); }); { Vpn.propTypes = iconPropTypes; } var VpnConnection = /*#__PURE__*/React__default["default"].forwardRef(function VpnConnection(_ref47, ref) { var children = _ref47.children, _ref47$size = _ref47.size, size = _ref47$size === void 0 ? 16 : _ref47$size, rest = _objectWithoutProperties$1(_ref47, _excluded47); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path76 || (_path76 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,7a1.9919,1.9919,0,0,0-1.7227,1H22A6,6,0,0,0,10,8H5.7227a2,2,0,1,0,0,2H10v4H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2H22V10h4.2773A1.9966,1.9966,0,1,0,28,7ZM12,8a4,4,0,0,1,8,0v6H12V10h5V8Zm12,8V28H8V16Z" })), children); }); { VpnConnection.propTypes = iconPropTypes; } var VpnPolicy = /*#__PURE__*/React__default["default"].forwardRef(function VpnPolicy(_ref48, ref) { var children = _ref48.children, _ref48$size = _ref48.size, size = _ref48$size === void 0 ? 16 : _ref48$size, rest = _objectWithoutProperties$1(_ref48, _excluded48); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path77 || (_path77 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,15A6,6,0,1,0,20,19.46V29l4-1.8838L28,29V19.46A5.98,5.98,0,0,0,30,15ZM26,25.8477l-2-.9415-2,.9415V20.65a5.8877,5.8877,0,0,0,4,0ZM24,19a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,19Z" })), _path78 || (_path78 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,2A6.0066,6.0066,0,0,0,8,8v6H6a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H17V28H6V16h9V14H10V8a4,4,0,0,1,7.92-.8008l1.96-.3984A6.0167,6.0167,0,0,0,14,2Z" })), children); }); { VpnPolicy.propTypes = iconPropTypes; } var Wallet = /*#__PURE__*/React__default["default"].forwardRef(function Wallet(_ref49, ref) { var children = _ref49.children, _ref49$size = _ref49.size, size = _ref49$size === void 0 ? 16 : _ref49$size, rest = _objectWithoutProperties$1(_ref49, _excluded49); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path79 || (_path79 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 17H24V19H22z" })), _path80 || (_path80 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,8H4V5H26V3H4A2,2,0,0,0,2,5V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM4,26V10H28v3H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h8v3ZM28,15v6H20V15Z" })), children); }); { Wallet.propTypes = iconPropTypes; } var Warning = /*#__PURE__*/React__default["default"].forwardRef(function Warning(_ref50, ref) { var children = _ref50.children, _ref50$size = _ref50.size, size = _ref50$size === void 0 ? 16 : _ref50$size, rest = _objectWithoutProperties$1(_ref50, _excluded50); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path81 || (_path81 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path82 || (_path82 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 4H8.5V9H7.5zM8 10.2c-.4 0-.8.3-.8.8s.3.8.8.8c.4 0 .8-.3.8-.8S8.4 10.2 8 10.2z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path83 || (_path83 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), _path84 || (_path84 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 8H17V19H15zM16 22a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 22z" })), children); }); { Warning.propTypes = iconPropTypes; } var WarningAlt = /*#__PURE__*/React__default["default"].forwardRef(function WarningAlt(_ref51, ref) { var children = _ref51.children, _ref51$size = _ref51.size, size = _ref51$size === void 0 ? 16 : _ref51$size, rest = _objectWithoutProperties$1(_ref51, _excluded51); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path85 || (_path85 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14.5,14h-13c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.2-0.1-0.3,0-0.5l6.5-12C7.7,1,8,0.9,8.2,1.1c0.1,0,0.2,0.1,0.2,0.2l6.5,12 c0.1,0.2,0.1,0.3,0,0.5C14.9,13.9,14.7,14,14.5,14z M2.3,13h11.3L8,2.5L2.3,13z" })), _path86 || (_path86 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5 6H8.5V9.5H7.5zM8 10.8c-.4 0-.8.3-.8.8s.3.8.8.8c.4 0 .8-.3.8-.8S8.4 10.8 8 10.8z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path87 || (_path87 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 23a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 23zM15 12H17V21H15z" })), _path88 || (_path88 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" })), children); }); { WarningAlt.propTypes = iconPropTypes; } var WarningAltFilled = /*#__PURE__*/React__default["default"].forwardRef(function WarningAltFilled(_ref52, ref) { var children = _ref52.children, _ref52$size = _ref52.size, size = _ref52$size === void 0 ? 16 : _ref52$size, rest = _objectWithoutProperties$1(_ref52, _excluded52); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path89 || (_path89 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Zm-1.125-5h2.25V12h-2.25Z", "data-icon-path": "inner-path" })), _path90 || (_path90 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16.002,6.1714h-.004L4.6487,27.9966,4.6506,28H27.3494l.0019-.0034ZM14.875,12h2.25v9h-2.25ZM16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Z" })), _path91 || (_path91 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z" })), children); }); { WarningAltFilled.propTypes = iconPropTypes; } var WarningAltInverted = /*#__PURE__*/React__default["default"].forwardRef(function WarningAltInverted(_ref53, ref) { var children = _ref53.children, _ref53$size = _ref53.size, size = _ref53$size === void 0 ? 16 : _ref53$size, rest = _objectWithoutProperties$1(_ref53, _excluded53); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path92 || (_path92 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 17a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 17zM15 6H17V15H15z" })), _path93 || (_path93 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" })), children); }); { WarningAltInverted.propTypes = iconPropTypes; } var WarningAltInvertedFilled = /*#__PURE__*/React__default["default"].forwardRef(function WarningAltInvertedFilled(_ref54, ref) { var children = _ref54.children, _ref54$size = _ref54.size, size = _ref54$size === void 0 ? 16 : _ref54$size, rest = _objectWithoutProperties$1(_ref54, _excluded54); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path94 || (_path94 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Zm-1.125-5h2.25V6h-2.25Z", "data-icon-path": "inner-path" })), _path95 || (_path95 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.3494,4H4.6506l-.0019.0034L15.998,25.8286h.004L27.3513,4.0034ZM14.875,6h2.25v9h-2.25ZM16,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,20Z" })), _path96 || (_path96 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.855,2.481a1.001,1.001,0,0,1,.0322.98l-13,25a1,1,0,0,1-1.7744,0l-13-25A1,1,0,0,1,3,2H29A1.0007,1.0007,0,0,1,29.855,2.481ZM4.6487,4.0033,15.998,25.8286h.004L27.3513,4.0033,27.3493,4H4.6507Z" })), children); }); { WarningAltInvertedFilled.propTypes = iconPropTypes; } var WarningFilled = /*#__PURE__*/React__default["default"].forwardRef(function WarningFilled(_ref55, ref) { var children = _ref55.children, _ref55$size = _ref55.size, size = _ref55$size === void 0 ? 16 : _ref55$size, rest = _objectWithoutProperties$1(_ref55, _excluded55); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path97 || (_path97 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,1C4.2,1,1,4.2,1,8s3.2,7,7,7s7-3.1,7-7S11.9,1,8,1z M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2 c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z" })), _path98 || (_path98 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8 c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 20 || size === "20" || size === "20px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor" }, rest), _path99 || (_path99 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1 s1,0.4,1,1S10.6,16,10,16z" })), _path100 || (_path100 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.2,5h1.5v7H9.2V5z M10,16c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,16,10,16z", "data-icon-path": "inner-path", opacity: "0" })), children); } if (size === 24 || size === "24" || size === "24px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor" }, rest), _path101 || (_path101 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11C23,5.9,18.1,1,12,1z M11.1,6h1.8v8h-1.8V6z M12,19.2 c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S12.7,19.2,12,19.2z" })), _path102 || (_path102 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M13.2,18c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2S13.2,17.3,13.2,18z M12.9,6 h-1.8v8h1.8V6z", "data-icon-path": "inner-path", opacity: "0" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path103 || (_path103 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14C30,8.3,23.7,2,16,2z M14.9,8h2.2v11h-2.2V8z M16,25 c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22c0.8,0,1.5,0.7,1.5,1.5S16.8,25,16,25z" })), _path104 || (_path104 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M17.5,23.5c0,0.8-0.7,1.5-1.5,1.5c-0.8,0-1.5-0.7-1.5-1.5S15.2,22,16,22 C16.8,22,17.5,22.7,17.5,23.5z M17.1,8h-2.2v11h2.2V8z", "data-icon-path": "inner-path", opacity: "0" })), children); }); { WarningFilled.propTypes = iconPropTypes; } var WarningHex = /*#__PURE__*/React__default["default"].forwardRef(function WarningHex(_ref56, ref) { var children = _ref56.children, _ref56$size = _ref56.size, size = _ref56$size === void 0 ? 16 : _ref56$size, rest = _objectWithoutProperties$1(_ref56, _excluded56); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path105 || (_path105 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 21a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 21zM15 8H17V18H15z" })), _path106 || (_path106 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,29H9a1,1,0,0,1-.8638-.4961l-7-12a1,1,0,0,1,0-1.0078l7-12A1,1,0,0,1,9,3H23a1,1,0,0,1,.8638.4961l7,12a1,1,0,0,1,0,1.0078l-7,12A1,1,0,0,1,23,29ZM9.5742,27H22.4258l6.4165-11L22.4258,5H9.5742L3.1577,16Z" })), children); }); { WarningHex.propTypes = iconPropTypes; } var WarningHexFilled = /*#__PURE__*/React__default["default"].forwardRef(function WarningHexFilled(_ref57, ref) { var children = _ref57.children, _ref57$size = _ref57.size, size = _ref57$size === void 0 ? 16 : _ref57$size, rest = _objectWithoutProperties$1(_ref57, _excluded57); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path107 || (_path107 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z", "data-icon-path": "inner-path" })), _path108 || (_path108 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30.8508,15.4487,23.8867,3.5322A1.0687,1.0687,0,0,0,22.9643,3H9.0357a1.0687,1.0687,0,0,0-.9224.5322L1.1492,15.4487a1.0933,1.0933,0,0,0,0,1.1026L8.1133,28.4678A1.0687,1.0687,0,0,0,9.0357,29H22.9643a1.0687,1.0687,0,0,0,.9224-.5322l6.9641-11.9165A1.0933,1.0933,0,0,0,30.8508,15.4487ZM14.875,8h2.25V19h-2.25ZM16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Z" })), children); }); { WarningHexFilled.propTypes = iconPropTypes; } var WarningOther = /*#__PURE__*/React__default["default"].forwardRef(function WarningOther(_ref58, ref) { var children = _ref58.children, _ref58$size = _ref58.size, size = _ref58$size === void 0 ? 16 : _ref58$size, rest = _objectWithoutProperties$1(_ref58, _excluded58); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path109 || (_path109 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 20H30V22H18zM18 24H30V26H18zM18 28H30V30H18zM14 18a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0014 18zM13 7H15V16H13z" })), _path110 || (_path110 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M14,4A10.0111,10.0111,0,0,1,24,14h2A12,12,0,1,0,14,26V24A10,10,0,0,1,14,4Z" })), children); }); { WarningOther.propTypes = iconPropTypes; } var WarningSquare = /*#__PURE__*/React__default["default"].forwardRef(function WarningSquare(_ref59, ref) { var children = _ref59.children, _ref59$size = _ref59.size, size = _ref59$size === void 0 ? 16 : _ref59$size, rest = _objectWithoutProperties$1(_ref59, _excluded59); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path111 || (_path111 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 20a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 20zM15 9H17V18H15z" })), _path112 || (_path112 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WarningSquare.propTypes = iconPropTypes; } var WarningSquareFilled = /*#__PURE__*/React__default["default"].forwardRef(function WarningSquareFilled(_ref60, ref) { var children = _ref60.children, _ref60$size = _ref60.size, size = _ref60$size === void 0 ? 16 : _ref60$size, rest = _objectWithoutProperties$1(_ref60, _excluded60); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path113 || (_path113 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.0022,4H5.998A1.998,1.998,0,0,0,4,5.998V26.002A1.998,1.998,0,0,0,5.998,28H26.0022A1.9979,1.9979,0,0,0,28,26.002V5.998A1.9979,1.9979,0,0,0,26.0022,4ZM14.8752,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z" })), _path114 || (_path114 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M14.8751,8h2.25V18h-2.25ZM16,24a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,24Z", "data-icon-path": "inner-path" })), children); }); { WarningSquareFilled.propTypes = iconPropTypes; } var Watch = /*#__PURE__*/React__default["default"].forwardRef(function Watch(_ref61, ref) { var children = _ref61.children, _ref61$size = _ref61.size, size = _ref61$size === void 0 ? 16 : _ref61$size, rest = _objectWithoutProperties$1(_ref61, _excluded61); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path115 || (_path115 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 8H21V2H19V8H13V2H11V8H10a2 2 0 00-2 2V22a2 2 0 002 2h1v6h2V24h6v6h2V24h1a2 2 0 002-2V10A2 2 0 0022 8zM10 22V10H22V22zM25 14H27V18H25z" })), children); }); { Watch.propTypes = iconPropTypes; } var Watson = /*#__PURE__*/React__default["default"].forwardRef(function Watson(_ref62, ref) { var children = _ref62.children, _ref62$size = _ref62.size, size = _ref62$size === void 0 ? 16 : _ref62$size, rest = _objectWithoutProperties$1(_ref62, _excluded62); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path116 || (_path116 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.74 9.49h0A11.41 11.41 0 0016 8h0a.76.76 0 100 1.51 10.15 10.15 0 011.91.21c-2.26 1.08-4.76 3.58-6.73 7a22.48 22.48 0 00-2 4.44A9.58 9.58 0 017 17.22a3.43 3.43 0 01.28-2.66v0h0c.79-1.37 2.44-2.15 4.63-2.2a.76.76 0 00.74-.78.75.75 0 00-.78-.74C9.19 10.88 7.1 11.92 6 13.74H6v0s0 0 0 0a4.84 4.84 0 00-.44 3.79 12 12 0 003.2 5.22A11.36 11.36 0 008.52 26a10 10 0 01-2-3.48A.75.75 0 005.57 22a.76.76 0 00-.49 1 11.45 11.45 0 005.18 6.38h0A11.42 11.42 0 0016 30.92a11.74 11.74 0 003-.39 11.48 11.48 0 002.77-21zM18.58 29.06a9.9 9.9 0 01-7.56-1h0c-.86-.49-1.21-2-.94-4a18.85 18.85 0 002.48 1.72 13.92 13.92 0 006.93 2 11 11 0 002.42-.28A9.78 9.78 0 0118.58 29.06zm6.06-4.66c-2 2-6.66 2.74-11.32.05a17.36 17.36 0 01-2.89-2.12 21.08 21.08 0 012.08-4.91c2.94-5.08 6.83-7.57 8.47-6.62h0A10 10 0 0124.64 24.4zM4.16 11.72L1.14 10a.76.76 0 10-.76 1.31L3.4 13a.86.86 0 00.38.1.77.77 0 00.66-.38A.76.76 0 004.16 11.72zM8.29 7.59A.74.74 0 008.94 8a.75.75 0 00.38-.1.76.76 0 00.28-1l-1.74-3a.76.76 0 00-1-.27.75.75 0 00-.28 1zM16 6.08a.76.76 0 00.76-.76V1.83a.76.76 0 00-1.52 0V5.32A.76.76 0 0016 6.08zM22.68 7.87a.75.75 0 001-.28l1.75-3a.75.75 0 00-.28-1 .76.76 0 00-1 .27l-1.74 3A.76.76 0 0022.68 7.87zM31.9 10.25a.76.76 0 00-1-.27l-3 1.74a.76.76 0 00-.28 1 .77.77 0 00.66.38.86.86 0 00.38-.1l3-1.75A.76.76 0 0031.9 10.25z" })), children); }); { Watson.propTypes = iconPropTypes; } var WatsonMachineLearning = /*#__PURE__*/React__default["default"].forwardRef(function WatsonMachineLearning(_ref63, ref) { var children = _ref63.children, _ref63$size = _ref63.size, size = _ref63$size === void 0 ? 16 : _ref63$size, rest = _objectWithoutProperties$1(_ref63, _excluded63); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path117 || (_path117 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 26H20V17.76l-3.23 3.88a1 1 0 01-1.54 0L12 17.76V26H10V15a1 1 0 01.66-.94 1 1 0 011.11.3L16 19.44l4.23-5.08a1 1 0 011.11-.3A1 1 0 0122 15zM4.16 14.65l-3-1.75a.76.76 0 10-.76 1.32L3.4 16a.76.76 0 10.76-1.31zM8.29 10.52a.73.73 0 001 .27.75.75 0 00.28-1l-1.74-3a.76.76 0 10-1.32.76zM16 9a.76.76 0 00.76-.76V4.76a.76.76 0 10-1.52 0V8.25A.76.76 0 0016 9zM22.68 10.79a.75.75 0 00.37.11.76.76 0 00.66-.38l1.75-3a.76.76 0 00-1.32-.76l-1.74 3A.75.75 0 0022.68 10.79zM31.9 13.18a.76.76 0 00-1-.28l-3 1.75A.76.76 0 0028.6 16l3-1.74A.77.77 0 0031.9 13.18z" })), children); }); { WatsonMachineLearning.propTypes = iconPropTypes; } var WaveDirection = /*#__PURE__*/React__default["default"].forwardRef(function WaveDirection(_ref64, ref) { var children = _ref64.children, _ref64$size = _ref64.size, size = _ref64$size === void 0 ? 16 : _ref64$size, rest = _objectWithoutProperties$1(_ref64, _excluded64); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path118 || (_path118 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22,30H17a7.0078,7.0078,0,0,1-7-7,6.6832,6.6832,0,0,1,2.0244-4.6967A6.7126,6.7126,0,0,0,10.0093,18C5.0425,18.0466,4,24.5513,4,30H2C2,18.4907,6.3452,16.0342,9.9907,16a10.0962,10.0962,0,0,1,4.4785,1.117,1,1,0,0,1,.0616,1.73A4.8773,4.8773,0,0,0,17,28h5Z" })), _path119 || (_path119 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,24V22a8,8,0,1,0-8-8H8A10,10,0,1,1,18,24Z" })), _circle8 || (_circle8 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "18", cy: "8", r: "1" })), _path120 || (_path120 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,17.5859l-2.3-2.3007A2.9665,2.9665,0,0,0,21,14a3.0033,3.0033,0,0,0-3-3,2.9609,2.9609,0,0,0-1.2854.3008L14.4141,9,13,10.4141l2.3,2.3007A2.9665,2.9665,0,0,0,15,14a3.0033,3.0033,0,0,0,3,3,2.9609,2.9609,0,0,0,1.2854-.3008L21.5859,19ZM17,14a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,17,14Z" })), children); }); { WaveDirection.propTypes = iconPropTypes; } var WaveHeight = /*#__PURE__*/React__default["default"].forwardRef(function WaveHeight(_ref65, ref) { var children = _ref65.children, _ref65$size = _ref65.size, size = _ref65$size === void 0 ? 16 : _ref65$size, rest = _objectWithoutProperties$1(_ref65, _excluded65); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path121 || (_path121 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 2H30V4H24zM24 8H28V10H24zM24 14H30V16H24zM24 20H28V22H24z" })), _path122 || (_path122 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,28H24a10.0349,10.0349,0,0,1-6.9268-17.2622A11.9629,11.9629,0,0,0,12.9937,10a6.9027,6.9027,0,0,0-6.0308,3.42C4.9966,16.4348,4,21.34,4,28H2c0-7.0542,1.106-12.3274,3.2871-15.6726A8.906,8.906,0,0,1,12.9937,8h.0068a14.762,14.762,0,0,1,6.4619,1.592,1,1,0,0,1,.0869,1.7222A8.0249,8.0249,0,0,0,24,26h6Z" })), children); }); { WaveHeight.propTypes = iconPropTypes; } var WavePeriod = /*#__PURE__*/React__default["default"].forwardRef(function WavePeriod(_ref66, ref) { var children = _ref66.children, _ref66$size = _ref66.size, size = _ref66$size === void 0 ? 16 : _ref66$size, rest = _objectWithoutProperties$1(_ref66, _excluded66); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path123 || (_path123 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22 30H17a7.0078 7.0078 0 01-7-7 6.6832 6.6832 0 012.0244-4.6967A6.7935 6.7935 0 0010.0093 18C5.0425 18.0466 4 24.5513 4 30H2C2 18.4907 6.3452 16.0342 9.9907 16a10.0717 10.0717 0 014.4785 1.117 1 1 0 01.0616 1.73A4.8773 4.8773 0 0017 28h5zM17 8H19V16H17z" })), _path124 || (_path124 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28,5.4141,26.5859,4,24.3242,6.2617A9.95,9.95,0,0,0,19,4.0508V2H17V4.0508A10.0132,10.0132,0,0,0,8,14h2a8,8,0,1,1,8,8v2A9.9928,9.9928,0,0,0,25.7383,7.6758Z" })), children); }); { WavePeriod.propTypes = iconPropTypes; } var WeatherFrontCold = /*#__PURE__*/React__default["default"].forwardRef(function WeatherFrontCold(_ref67, ref) { var children = _ref67.children, _ref67$size = _ref67.size, size = _ref67$size === void 0 ? 16 : _ref67$size, rest = _objectWithoutProperties$1(_ref67, _excluded67); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path125 || (_path125 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.1655 2a13.0289 13.0289 0 00-12.542 9.5791l-1.1767 4.3154A11.0237 11.0237 0 013.8345 24H2v2H3.8345c.2975 0 .5918-.0171.8853-.0371l7.9291 2.9736A1 1 0 0014 28V21.0923a12.9311 12.9311 0 00.9121-1.313l6.3628-1.8179a1 1 0 00.5059-1.5864L17.7843 11.38a10.9268 10.9268 0 011.1516-2.3472l5.7477 1.916A1 1 0 0026 10V4.2251A10.8956 10.8956 0 0128.1655 4H30V2zM8.3354 25.1826A13.047 13.047 0 0012 23.0943v3.4624zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28 16.4512zM24 8.6123l-3.7411-1.247A11.0712 11.0712 0 0124 4.8306zM10 4L10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" })), children); }); { WeatherFrontCold.propTypes = iconPropTypes; } var WeatherFrontStationary = /*#__PURE__*/React__default["default"].forwardRef(function WeatherFrontStationary(_ref68, ref) { var children = _ref68.children, _ref68$size = _ref68.size, size = _ref68$size === void 0 ? 16 : _ref68$size, rest = _objectWithoutProperties$1(_ref68, _excluded68); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path126 || (_path126 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.1655 2a12.9848 12.9848 0 00-8.4074 3.1065A3.9947 3.9947 0 1015.583 11.728l-1.1362 4.1665c-.0725.2657-.1579.5254-.2489.7818a3.9864 3.9864 0 00-5.1547 6.0054A10.9541 10.9541 0 013.8345 24H2v2H3.8345c.2975 0 .5918-.0171.8853-.0371l7.9291 2.9736A1 1 0 0014 28V21.0923a12.9311 12.9311 0 00.9121-1.313l6.3628-1.8179a1 1 0 00.5059-1.5864L17.7843 11.38a10.9268 10.9268 0 011.1516-2.3472l5.7477 1.916A1 1 0 0026 10V4.2251A10.8956 10.8956 0 0128.1655 4H30V2zM17 6a1.98 1.98 0 011.3237.53A12.9413 12.9413 0 0016.24 9.8482 1.9988 1.9988 0 0117 6zM10 20a1.9879 1.9879 0 013.3374-1.4717 11.0157 11.0157 0 01-2.5959 3.0147A1.9975 1.9975 0 0110 20zM8.3354 25.1826A13.047 13.047 0 0012 23.0943v3.4624zm7.74-7.8154c.1107-.3105.2136-.625.3013-.9463l.732-2.6846L19.28 16.4512zM24 8.6123l-3.7411-1.247A11.0712 11.0712 0 0124 4.8306zM22 22L22 24 26.586 24 22 28.586 23.414 30 28 25.414 28 30 30 30 30 22 22 22zM2 2L2 4 6.586 4 2 8.586 3.414 10 8 5.414 8 10 10 10 10 2 2 2z" })), children); }); { WeatherFrontStationary.propTypes = iconPropTypes; } var WeatherFrontWarm = /*#__PURE__*/React__default["default"].forwardRef(function WeatherFrontWarm(_ref69, ref) { var children = _ref69.children, _ref69$size = _ref69.size, size = _ref69$size === void 0 ? 16 : _ref69$size, rest = _objectWithoutProperties$1(_ref69, _excluded69); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path127 || (_path127 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28.1655 2a13.0289 13.0289 0 00-12.542 9.5791l-1.1767 4.3154A11.0237 11.0237 0 013.8345 24H2v2H3.8345a12.9139 12.9139 0 003.4687-.4819 3.9979 3.9979 0 106.5818-4.2866 12.9671 12.9671 0 001.6209-2.5269 3.9944 3.9944 0 102.3772-7.5991 10.95 10.95 0 011.7253-3.01 3.9825 3.9825 0 006.9058-3.9648A10.9435 10.9435 0 0128.1655 4H30V2zM11 26a1.9983 1.9983 0 01-1.8118-1.1655 13.0811 13.0811 0 003.2969-2.1426A1.9773 1.9773 0 0111 26zm8-11a1.9926 1.9926 0 01-2.759 1.8467c.0442-.1426.0959-.2813.1355-.4258L17.301 13.03A1.9976 1.9976 0 0119 15zm6-9a1.9942 1.9942 0 01-3.9011.5894 11.0511 11.0511 0 013.3623-1.9385A1.995 1.995 0 0125 6zM10 4L10 8.586 3.414 2 2 3.414 8.586 10 4 10 4 12 12 12 12 4 10 4z" })), children); }); { WeatherFrontWarm.propTypes = iconPropTypes; } var WeatherStation = /*#__PURE__*/React__default["default"].forwardRef(function WeatherStation(_ref70, ref) { var children = _ref70.children, _ref70$size = _ref70.size, size = _ref70$size === void 0 ? 16 : _ref70$size, rest = _objectWithoutProperties$1(_ref70, _excluded70); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path128 || (_path128 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,28V17h1a2.0023,2.0023,0,0,0,2-2V11a2.0023,2.0023,0,0,0-2-2H14a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h1V28H2v2H30V28ZM14,11h4l.0015,4H14Z" })), _path129 || (_path129 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.3325 18.2168a7.0007 7.0007 0 010-10.4341l1.334 1.49a5 5 0 000 7.4537zM22.667 18.2168l-1.334-1.49a4.9995 4.9995 0 000-7.4537l1.334-1.49a7 7 0 010 10.4341z" })), _path130 || (_path130 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.3994 21.8008a11.0019 11.0019 0 010-17.6006L7.6 5.8a9.0009 9.0009 0 000 14.4014zM25.6006 21.8008l-1.2012-1.6a9.001 9.001 0 000-14.4019l1.2012-1.6a11.002 11.002 0 010 17.6011z" })), children); }); { WeatherStation.propTypes = iconPropTypes; } var Webhook = /*#__PURE__*/React__default["default"].forwardRef(function Webhook(_ref71, ref) { var children = _ref71.children, _ref71$size = _ref71.size, size = _ref71$size === void 0 ? 16 : _ref71$size, rest = _objectWithoutProperties$1(_ref71, _excluded71); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path131 || (_path131 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,26a3,3,0,1,0-2.8164-4H13v1a5,5,0,1,1-5-5V16a7,7,0,1,0,6.9287,8h6.2549A2.9914,2.9914,0,0,0,24,26Z" })), _path132 || (_path132 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,16a7.024,7.024,0,0,0-2.57.4873l-3.1656-5.5395a3.0469,3.0469,0,1,0-1.7326.9985l4.1189,7.2085.8686-.4976a5.0006,5.0006,0,1,1-1.851,6.8418L17.937,26.501A7.0005,7.0005,0,1,0,24,16Z" })), _path133 || (_path133 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.532,20.0537a3.03,3.03,0,1,0,1.7326.9985C11.74,18.47,13.86,14.7607,13.89,14.708l.4976-.8682-.8677-.497a5,5,0,1,1,6.812-1.8438l1.7315,1.002a7.0008,7.0008,0,1,0-10.3462,2.0356c-.457.7427-1.1021,1.8716-2.0737,3.5728Z" })), children); }); { Webhook.propTypes = iconPropTypes; } var Websheet = /*#__PURE__*/React__default["default"].forwardRef(function Websheet(_ref72, ref) { var children = _ref72.children, _ref72$size = _ref72.size, size = _ref72$size === void 0 ? 16 : _ref72$size, rest = _objectWithoutProperties$1(_ref72, _excluded72); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle9 || (_circle9 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "24", cy: "24", r: "2" })), _path134 || (_path134 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24,30a6,6,0,1,1,6-6A6.0069,6.0069,0,0,1,24,30Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,24,20Z" })), _path135 || (_path135 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,28H8V4h8v6a2.0058,2.0058,0,0,0,2,2h6v3h2V10a.9092.9092,0,0,0-.3-.7l-7-7A.9087.9087,0,0,0,18,2H8A2.0058,2.0058,0,0,0,6,4V28a2.0058,2.0058,0,0,0,2,2h8ZM18,4.4,23.6,10H18Z" })), children); }); { Websheet.propTypes = iconPropTypes; } var Wheat = /*#__PURE__*/React__default["default"].forwardRef(function Wheat(_ref73, ref) { var children = _ref73.children, _ref73$size = _ref73.size, size = _ref73$size === void 0 ? 16 : _ref73$size, rest = _objectWithoutProperties$1(_ref73, _excluded73); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path136 || (_path136 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,3V5.5857l-4,4V1H15V9.5857l-4-4V3H9V19a7.004,7.004,0,0,0,6,6.92V30h2V25.92A7.004,7.004,0,0,0,23,19V3ZM15,23.8987A5.008,5.008,0,0,1,11,19v-2.586l4,4Zm0-6.313-4-4V8.4138l4,4Zm2-5.1719,4-4v5.1719l-4,4Zm0,11.4849V20.4138l4-4V19A5.008,5.008,0,0,1,17,23.8987Z" })), children); }); { Wheat.propTypes = iconPropTypes; } var Wifi = /*#__PURE__*/React__default["default"].forwardRef(function Wifi(_ref74, ref) { var children = _ref74.children, _ref74$size = _ref74.size, size = _ref74$size === void 0 ? 16 : _ref74$size, rest = _objectWithoutProperties$1(_ref74, _excluded74); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle10 || (_circle10 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "25", r: "2" })), _path137 || (_path137 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.47,19.2334l1.4136,1.4131a5.9688,5.9688,0,0,1,8.2229-.0093L21.52,19.2236a7.9629,7.9629,0,0,0-11.05.01Z" })), _path138 || (_path138 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.229,14.9927l1.4136,1.4135a11.955,11.955,0,0,1,16.7041-.01L25.76,14.9829a13.9514,13.9514,0,0,0-19.5313.01Z" })), _path139 || (_path139 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30,10.7412a19.94,19.94,0,0,0-28,0v.0225L3.4043,12.168a17.9336,17.9336,0,0,1,25.1811-.01L30,10.7432Z" })), children); }); { Wifi.propTypes = iconPropTypes; } var WifiController = /*#__PURE__*/React__default["default"].forwardRef(function WifiController(_ref75, ref) { var children = _ref75.children, _ref75$size = _ref75.size, size = _ref75$size === void 0 ? 16 : _ref75$size, rest = _objectWithoutProperties$1(_ref75, _excluded75); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path140 || (_path140 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6,30H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v6A2,2,0,0,0,6,30Zm0-8H26v6H6Z" })), _circle11 || (_circle11 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "9", cy: "25", r: "1" })), _circle12 || (_circle12 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "14.5", r: "1.5" })), _path141 || (_path141 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.7832,10.3325a7.0007,7.0007,0,0,1,10.4341,0l-1.49,1.334a5,5,0,0,0-7.4537,0Z" })), _path142 || (_path142 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.1992,7.3994a11.0019,11.0019,0,0,1,17.6006,0L23.2,8.6a9.0009,9.0009,0,0,0-14.4014.0005Z" })), children); }); { WifiController.propTypes = iconPropTypes; } var WifiNotSecure = /*#__PURE__*/React__default["default"].forwardRef(function WifiNotSecure(_ref76, ref) { var children = _ref76.children, _ref76$size = _ref76.size, size = _ref76$size === void 0 ? 16 : _ref76$size, rest = _objectWithoutProperties$1(_ref76, _excluded76); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path143 || (_path143 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20H14V17a2 2 0 014 0h2a4 4 0 00-8 0v3a2.0025 2.0025 0 00-2 2v6a2.0025 2.0025 0 002 2h8a2.0025 2.0025 0 002-2V22A2.0025 2.0025 0 0020 20zm0 8H12V22h8zM16 8a8.9709 8.9709 0 00-6.3608 2.6392l1.4133 1.4135a6.9887 6.9887 0 019.895 0l1.4135-1.4135A8.9717 8.9717 0 0016 8z" })), _path144 || (_path144 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.105,7.105,7.5188,8.5186a11.9808,11.9808,0,0,1,16.9624,0L25.8949,7.105a13.9782,13.9782,0,0,0-19.79,0Z" })), children); }); { WifiNotSecure.propTypes = iconPropTypes; } var WifiOff = /*#__PURE__*/React__default["default"].forwardRef(function WifiOff(_ref77, ref) { var children = _ref77.children, _ref77$size = _ref77.size, size = _ref77$size === void 0 ? 16 : _ref77$size, rest = _objectWithoutProperties$1(_ref77, _excluded77); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _circle13 || (_circle13 = /*#__PURE__*/React__default["default"].createElement("circle", { cx: "16", cy: "25", r: "2" })), _path145 || (_path145 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M30 3.4141L28.5859 2 2 28.5859 3.4141 30 14.0962 19.3179a5.9359 5.9359 0 016.01 1.3193L21.52 19.2236a7.9669 7.9669 0 00-5.125-2.2041l3.3875-3.3877a11.9908 11.9908 0 014.5647 2.7647L25.76 14.9829A13.975 13.975 0 0021.334 12.08L24.3308 9.083a17.9364 17.9364 0 014.2546 3.0747L30 10.7432v-.002a20.02 20.02 0 00-4.1895-3.1377zM14.68 13.0776l2.0415-2.0415C16.481 11.0234 16.2437 11 16 11a13.9447 13.9447 0 00-9.771 3.9927l1.4136 1.4136A11.97 11.97 0 0114.68 13.0776zM16 7a17.87 17.87 0 014.2324.5254L21.875 5.8828A19.9537 19.9537 0 002 10.7412v.0225L3.4043 12.168A17.9193 17.9193 0 0116 7z" })), children); }); { WifiOff.propTypes = iconPropTypes; } var WifiSecure = /*#__PURE__*/React__default["default"].forwardRef(function WifiSecure(_ref78, ref) { var children = _ref78.children, _ref78$size = _ref78.size, size = _ref78$size === void 0 ? 16 : _ref78$size, rest = _objectWithoutProperties$1(_ref78, _excluded78); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path146 || (_path146 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 20V17a4 4 0 00-8 0v3a2.0025 2.0025 0 00-2 2v6a2.0025 2.0025 0 002 2h8a2.0025 2.0025 0 002-2V22A2.0025 2.0025 0 0020 20zm-6-3a2 2 0 014 0v3H14zM12 28V22h8v6zM6.105 7.105L7.5188 8.5186a11.9808 11.9808 0 0116.9624 0L25.8949 7.105a13.9782 13.9782 0 00-19.79 0z" })), _path147 || (_path147 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,8a8.9709,8.9709,0,0,0-6.3608,2.6392l1.4133,1.4135a6.9887,6.9887,0,0,1,9.895,0l1.4135-1.4135A8.9717,8.9717,0,0,0,16,8Z" })), children); }); { WifiSecure.propTypes = iconPropTypes; } var WifiBridge = /*#__PURE__*/React__default["default"].forwardRef(function WifiBridge(_ref79, ref) { var children = _ref79.children, _ref79$size = _ref79.size, size = _ref79$size === void 0 ? 16 : _ref79$size, rest = _objectWithoutProperties$1(_ref79, _excluded79); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path148 || (_path148 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.9492,20.95l-1.414-1.4141a5,5,0,0,0,0-7.0715L6.9492,11.05a7,7,0,0,1,0,9.9Z" })), _path149 || (_path149 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.4854 24.4854L9.0713 23.0713a10.0011 10.0011 0 000-14.1426l1.4141-1.4141a12.0006 12.0006 0 010 16.9708zM25.0508 20.95a7 7 0 010-9.9l1.414 1.4146a5 5 0 000 7.0715z" })), _path150 || (_path150 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.5146 24.4854a12.0006 12.0006 0 010-16.9708l1.4141 1.4141a10.0011 10.0011 0 000 14.1426zM3 15H2V4H0V28H2V17H3a1 1 0 000-2zM30 4V15H29a1 1 0 000 2h1V28h2V4z" })), children); }); { WifiBridge.propTypes = iconPropTypes; } var WifiBridgeAlt = /*#__PURE__*/React__default["default"].forwardRef(function WifiBridgeAlt(_ref80, ref) { var children = _ref80.children, _ref80$size = _ref80.size, size = _ref80$size === void 0 ? 16 : _ref80$size, rest = _objectWithoutProperties$1(_ref80, _excluded80); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path151 || (_path151 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,26H11a5.0057,5.0057,0,0,0-5-5V19A7.0078,7.0078,0,0,1,13,26Z" })), _path152 || (_path152 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 26H16A10.0113 10.0113 0 006 16V14A12.0137 12.0137 0 0118 26zM26 13a7.0078 7.0078 0 01-7-7h2a5.0057 5.0057 0 005 5z" })), _path153 || (_path153 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 18A12.0137 12.0137 0 0114 6h2A10.0113 10.0113 0 0026 16zM7.707 24.293a.9994.9994 0 00-1.414 0L2 28.5859 3.4143 30 7.707 25.707A.9994.9994 0 007.707 24.293zM28.5859 2L24.293 6.293a1 1 0 001.414 1.414L30 3.4141z" })), children); }); { WifiBridgeAlt.propTypes = iconPropTypes; } var Wikis = /*#__PURE__*/React__default["default"].forwardRef(function Wikis(_ref81, ref) { var children = _ref81.children, _ref81$size = _ref81.size, size = _ref81$size === void 0 ? 16 : _ref81$size, rest = _objectWithoutProperties$1(_ref81, _excluded81); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path154 || (_path154 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM28,15H22A24.26,24.26,0,0,0,19.21,4.45,12,12,0,0,1,28,15ZM16,28a5,5,0,0,1-.67,0A21.85,21.85,0,0,1,12,17H20a21.85,21.85,0,0,1-3.3,11A5,5,0,0,1,16,28ZM12,15a21.85,21.85,0,0,1,3.3-11,6,6,0,0,1,1.34,0A21.85,21.85,0,0,1,20,15Zm.76-10.55A24.26,24.26,0,0,0,10,15h-6A12,12,0,0,1,12.79,4.45ZM4.05,17h6a24.26,24.26,0,0,0,2.75,10.55A12,12,0,0,1,4.05,17ZM19.21,27.55A24.26,24.26,0,0,0,22,17h6A12,12,0,0,1,19.21,27.55Z" })), children); }); { Wikis.propTypes = iconPropTypes; } var WindGusts = /*#__PURE__*/React__default["default"].forwardRef(function WindGusts(_ref82, ref) { var children = _ref82.children, _ref82$size = _ref82.size, size = _ref82$size === void 0 ? 16 : _ref82$size, rest = _objectWithoutProperties$1(_ref82, _excluded82); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path155 || (_path155 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.3164,8.0513l-18-6A1,1,0,0,0,10.4,2.2L4,7V2H2V30H4V11l6.4,4.8a1,1,0,0,0,.9165.1489l18-6a1,1,0,0,0,0-1.8974ZM10,13,4.6665,9,10,5Zm4-.0542-2,.667V4.3872l2,.667Zm4-1.333-2,.6665V5.7207l2,.6665Zm2-.667V7.0542L25.8379,9Z" })), _path156 || (_path156 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20,22a4,4,0,0,0-8,0h2a2,2,0,1,1,2,2H8v2h8A4.0045,4.0045,0,0,0,20,22Z" })), _path157 || (_path157 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26,22a4.0045,4.0045,0,0,0-4,4h2a2,2,0,1,1,2,2H12v2H26a4,4,0,0,0,0-8Z" })), children); }); { WindGusts.propTypes = iconPropTypes; } var WindPower = /*#__PURE__*/React__default["default"].forwardRef(function WindPower(_ref83, ref) { var children = _ref83.children, _ref83$size = _ref83.size, size = _ref83$size === void 0 ? 16 : _ref83$size, rest = _objectWithoutProperties$1(_ref83, _excluded83); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path158 || (_path158 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,28V15.8159a3.0059,3.0059,0,0,0,1.47-1.1186L27.063,17l.5176-1.9321-8.6045-2.3052a2.985,2.985,0,0,0-2.63-2.7275L14.1938,2l-1.9316.5186,2.1318,7.956a2.9588,2.9588,0,0,0-1.093,3.8115L7,20.5859,8.415,22l6.3-6.3A2.8938,2.8938,0,0,0,15,15.8154V28H2v2H30V28Zm0-15a1,1,0,1,1-1-1A1.0008,1.0008,0,0,1,17,13Z" })), children); }); { WindPower.propTypes = iconPropTypes; } var WindStream = /*#__PURE__*/React__default["default"].forwardRef(function WindStream(_ref84, ref) { var children = _ref84.children, _ref84$size = _ref84.size, size = _ref84$size === void 0 ? 16 : _ref84$size, rest = _objectWithoutProperties$1(_ref84, _excluded84); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path159 || (_path159 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25,2,23.5859,3.4141,26.1719,6h-5.09a16.93,16.93,0,0,0-6.3139,1.2158L10.4893,8.9272A14.93,14.93,0,0,1,4.9185,10H2v2H4.9185a16.93,16.93,0,0,0,6.3139-1.2158l4.2783-1.7114A14.93,14.93,0,0,1,21.0815,8h5.09l-2.586,2.5859L25,12l5-5Z" })), _path160 || (_path160 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21,11l-1.4141,1.4141L22.1719,15H18.9014a16.9422,16.9422,0,0,0-5.9693,1.0825l-2.5664.9624A14.9456,14.9456,0,0,1,5.0986,18H2v2H5.0986a16.9422,16.9422,0,0,0,5.9693-1.0825l2.5664-.9624A14.9456,14.9456,0,0,1,18.9014,17h3.2705l-2.586,2.5859L21,21l5-5Z" })), _path161 || (_path161 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,20l-1.4141,1.4141L18.1719,24H16.5967a16.9879,16.9879,0,0,0-5.3765.8721l-1.0727.3584A14.9852,14.9852,0,0,1,5.4033,26H2v2H5.4033a16.9879,16.9879,0,0,0,5.3765-.8721l1.0727-.3584A14.9852,14.9852,0,0,1,16.5967,26h1.5752l-2.586,2.5859L17,30l5-5Z" })), children); }); { WindStream.propTypes = iconPropTypes; } var WatsonHealthWindowAuto = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthWindowAuto(_ref85, ref) { var children = _ref85.children, _ref85$size = _ref85.size, size = _ref85$size === void 0 ? 16 : _ref85$size, rest = _objectWithoutProperties$1(_ref85, _excluded85); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path162 || (_path162 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 4H17V7H15zM25 15H28V17H25zM15 25H17V28H15zM4 15H7V17H4z" })), _path163 || (_path163 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.55 7.04H9.55V10.04H7.55z", transform: "rotate(-45 8.55 8.548)" })), _path164 || (_path164 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.96 7.55H24.96V9.55H21.96z", transform: "rotate(-45 23.454 8.555)" })), _path165 || (_path165 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.45 21.95H24.45V24.95H22.45z", transform: "rotate(-45 23.452 23.446)" })), _path166 || (_path166 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.05 22.45H10.05V24.45H7.05z", transform: "rotate(-45 8.544 23.451)" })), _path167 || (_path167 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 30H28V32H4zM4 0H28V2H4zM16 10a6 6 0 106 6A6 6 0 0016 10zm-4 6a4 4 0 014-4v8A4 4 0 0112 16z" })), children); }); { WatsonHealthWindowAuto.propTypes = iconPropTypes; } var WatsonHealthWindowBase = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthWindowBase(_ref86, ref) { var children = _ref86.children, _ref86$size = _ref86.size, size = _ref86$size === void 0 ? 16 : _ref86$size, rest = _objectWithoutProperties$1(_ref86, _excluded86); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path168 || (_path168 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V5H15zM25 13H28V15H25zM15 23H17V26H15zM4 13H7V15H4z" })), _path169 || (_path169 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.55 5.03H9.55V8.030000000000001H7.55z", transform: "rotate(-45 8.56 6.544)" })), _path170 || (_path170 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.96 5.54H24.96V7.54H21.96z", transform: "rotate(-45 23.469 6.539)" })), _path171 || (_path171 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.46 19.94H24.46V22.94H22.46z", transform: "rotate(-45 23.462 21.442)" })), _path172 || (_path172 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.04 20.45H10.04V22.45H7.04z", transform: "rotate(-45 8.554 21.447)" })), _path173 || (_path173 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 28H28V30H4zM16 20a6 6 0 10-6-6A6 6 0 0016 20zm0-10v8a4 4 0 010-8z" })), children); }); { WatsonHealthWindowBase.propTypes = iconPropTypes; } var WatsonHealthWindowBlackSaturation = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthWindowBlackSaturation(_ref87, ref) { var children = _ref87.children, _ref87$size = _ref87.size, size = _ref87$size === void 0 ? 16 : _ref87$size, rest = _objectWithoutProperties$1(_ref87, _excluded87); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path174 || (_path174 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 2H17V5H15zM27 15H30V17H27zM15 27H17V30H15zM2 15H5V17H2z" })), _path175 || (_path175 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.225 5.729H8.228V8.732H6.225z", transform: "rotate(-45 7.227 7.23)" })), _path176 || (_path176 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.267 6.227H26.267V8.227H23.267z", transform: "rotate(-45 24.767 7.227)" })), _path177 || (_path177 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23.769 23.269H25.770999999999997V26.270999999999997H23.769z", transform: "rotate(-44.999 24.77 24.77)" })), _path178 || (_path178 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.47 25.126L7.591 23 9 24.419 6.884 26.54 5.47 25.126zM15 13H17V15H15zM19 13H21V15H19zM17 11H19V13H17zM17 15H19V17H17zM17 19H19V21H17zM15 17H17V19H15zM19 17H21V19H19z" })), _path179 || (_path179 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,7a9,9,0,1,0,9,9A9.01,9.01,0,0,0,16,7ZM9,16a7.004,7.004,0,0,1,6-6.92V11h2V9.08a6.9231,6.9231,0,0,1,2,.605V11h1.89c.0374.0366.074.0732.11.11V13h1.3149a6.931,6.931,0,0,1,.6053,2H21v2h1.92a6.931,6.931,0,0,1-.6053,2H21v1.89c-.0364.0372-.073.0738-.11.11H19v1.3149a6.9231,6.9231,0,0,1-2,.605V21H15v1.92A7.004,7.004,0,0,1,9,16Z" })), children); }); { WatsonHealthWindowBlackSaturation.propTypes = iconPropTypes; } var WatsonHealthWindowOverlay = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthWindowOverlay(_ref88, ref) { var children = _ref88.children, _ref88$size = _ref88.size, size = _ref88$size === void 0 ? 16 : _ref88$size, rest = _objectWithoutProperties$1(_ref88, _excluded88); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path180 || (_path180 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 6H17V9H15zM25 17H28V19H25zM15 27H17V30H15zM4 17H7V19H4z" })), _path181 || (_path181 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.55 9.03H9.55V12.03H7.55z", transform: "rotate(-45 8.558 10.545)" })), _path182 || (_path182 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.96 9.54H24.96V11.54H21.96z", transform: "rotate(-45 23.466 10.54)" })), _path183 || (_path183 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.46 23.94H24.46V26.94H22.46z", transform: "rotate(-45 23.459 25.443)" })), _path184 || (_path184 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.04 24.45H10.04V26.45H7.04z", transform: "rotate(-45 8.55 25.448)" })), _path185 || (_path185 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 2H28V4H4zM16 24a6 6 0 10-6-6A6 6 0 0016 24zm0-10v8a4 4 0 010-8z" })), children); }); { WatsonHealthWindowOverlay.propTypes = iconPropTypes; } var WatsonHealthWindowPreset = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthWindowPreset(_ref89, ref) { var children = _ref89.children, _ref89$size = _ref89.size, size = _ref89$size === void 0 ? 16 : _ref89$size, rest = _objectWithoutProperties$1(_ref89, _excluded89); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path186 || (_path186 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 6H17V8H15zM24 15H26V17H24zM15 24H17V26H15zM6 15H8V17H6z" })), _path187 || (_path187 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.586 8.586H10.586V10.586H8.586z", transform: "rotate(-45 9.586 9.586)" })), _path188 || (_path188 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.414 8.586H23.414V10.586H21.414z", transform: "rotate(-45 22.414 9.586)" })), _path189 || (_path189 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.414 21.414H23.414V23.414H21.414z", transform: "rotate(-45 22.414 22.414)" })), _path190 || (_path190 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.586 21.414H10.586V23.414H8.586z", transform: "rotate(-45 9.586 22.414)" })), _path191 || (_path191 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,22a6,6,0,1,0-6-6A6,6,0,0,0,16,22Zm0-10v8a4,4,0,0,1,0-8Z" })), _path192 || (_path192 = /*#__PURE__*/React__default["default"].createElement("path", { 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" })), children); }); { WatsonHealthWindowPreset.propTypes = iconPropTypes; } var Windy = /*#__PURE__*/React__default["default"].forwardRef(function Windy(_ref90, ref) { var children = _ref90.children, _ref90$size = _ref90.size, size = _ref90$size === void 0 ? 16 : _ref90$size, rest = _objectWithoutProperties$1(_ref90, _excluded90); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path193 || (_path193 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21 15H8V13H21a3 3 0 10-3-3H16a5 5 0 115 5zM23 28a5.0057 5.0057 0 01-5-5h2a3 3 0 103-3H4V18H23a5 5 0 010 10z" })), children); }); { Windy.propTypes = iconPropTypes; } var WindyDust = /*#__PURE__*/React__default["default"].forwardRef(function WindyDust(_ref91, ref) { var children = _ref91.children, _ref91$size = _ref91.size, size = _ref91$size === void 0 ? 16 : _ref91$size, rest = _objectWithoutProperties$1(_ref91, _excluded91); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path194 || (_path194 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23 28a5.0057 5.0057 0 01-5-5h2a3 3 0 103-3H22V18h1a5 5 0 010 10zM16 18H20V20H16zM10 18H14V20H10zM4 18H8V20H4zM21 15H20V13h1a3 3 0 10-3-3H16a5 5 0 115 5zM14 13H18V15H14zM8 13H12V15H8z" })), children); }); { WindyDust.propTypes = iconPropTypes; } var WindySnow = /*#__PURE__*/React__default["default"].forwardRef(function WindySnow(_ref92, ref) { var children = _ref92.children, _ref92$size = _ref92.size, size = _ref92$size === void 0 ? 16 : _ref92$size, rest = _objectWithoutProperties$1(_ref92, _excluded92); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path195 || (_path195 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 28a5.0057 5.0057 0 01-5-5h2a3 3 0 103-3H6V18H25a5 5 0 010 10zM23 15H10V13H23a3 3 0 10-3-3H18a5 5 0 115 5z" })), _path196 || (_path196 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M11 23H13V25H11zM13 25H15V27H13zM15 27H17V29H15zM15 23H17V25H15zM11 27H13V29H11zM6 4H8V6H6zM8 6H10V8H8zM10 8H12V10H10zM10 4H12V6H10zM6 8H8V10H6zM2 26H4V28H2zM4 28H6V30H4zM6 30H8V32H6zM6 26H8V28H6zM2 30H4V32H2z" })), children); }); { WindySnow.propTypes = iconPropTypes; } var WindyStrong = /*#__PURE__*/React__default["default"].forwardRef(function WindyStrong(_ref93, ref) { var children = _ref93.children, _ref93$size = _ref93.size, size = _ref93$size === void 0 ? 16 : _ref93$size, rest = _objectWithoutProperties$1(_ref93, _excluded93); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path197 || (_path197 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M13,30a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H4V20h9a5,5,0,0,1,0,10Z" })), _path198 || (_path198 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M25 25a5.0057 5.0057 0 01-5-5h2a3 3 0 103-3H2V15H25a5 5 0 010 10zM21 12H6V10H21a3 3 0 10-3-3H16a5 5 0 115 5z" })), children); }); { WindyStrong.propTypes = iconPropTypes; } var WinterWarning = /*#__PURE__*/React__default["default"].forwardRef(function WinterWarning(_ref94, ref) { var children = _ref94.children, _ref94$size = _ref94.size, size = _ref94$size === void 0 ? 16 : _ref94$size, rest = _objectWithoutProperties$1(_ref94, _excluded94); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path199 || (_path199 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.684 19.051L19.167 19.891 13 15.486 13 7.369 15.555 5.665 14.445 4.001 12 5.631 9.555 4.001 8.445 5.665 11 7.369 11 14.057 6 10.486 6 8 4 8 4 10.279 1.684 11.051 2.316 12.949 4.833 12.11 10.28 16.001 4.833 19.891 2.316 19.051 1.684 20.949 4 21.721 4 24 6 24 6 21.515 11 17.944 11 24.631 8.445 26.335 9.555 27.999 12 26.368 14.445 27.999 15.555 26.335 13 24.631 13 17.943 18 21.515 18 24 20 24 20 21.721 22.316 20.949 21.684 19.051z" })), _path200 || (_path200 = /*#__PURE__*/React__default["default"].createElement("path", { fill: "none", d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z" })), _path201 || (_path201 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" })), children); }); { WinterWarning.propTypes = iconPropTypes; } var WintryMix = /*#__PURE__*/React__default["default"].forwardRef(function WintryMix(_ref95, ref) { var children = _ref95.children, _ref95$size = _ref95.size, size = _ref95$size === void 0 ? 16 : _ref95$size, rest = _objectWithoutProperties$1(_ref95, _excluded95); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path202 || (_path202 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15 26H17V28H15zM17 28H19V30H17zM19 30H21V32H19zM19 26H21V28H19zM15 30H17V32H15zM13 16H15V18H13zM15 18H17V20H15zM17 20H19V22H17zM17 16H19V18H17zM13 20H15V22H13zM10 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 0110 30z" })), _path203 || (_path203 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.5321,6.5321,0,0,0,2,15.5V22l1,2,1-2V20.18a6.4891,6.4891,0,0,0,3.4294,1.7246L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418.977.977,0,0,0-.489-.0894V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20h-.542v.0083A.9955.9955,0,0,0,22,21v3l1,2,1-2V21.9746a6.4473,6.4473,0,0,0,2-.4761V26l1,2,1-2V20.18A6.4876,6.4876,0,0,0,24.8008,9.1362Z" })), children); }); { WintryMix.propTypes = iconPropTypes; } var WirelessCheckout = /*#__PURE__*/React__default["default"].forwardRef(function WirelessCheckout(_ref96, ref) { var children = _ref96.children, _ref96$size = _ref96.size, size = _ref96$size === void 0 ? 16 : _ref96$size, rest = _objectWithoutProperties$1(_ref96, _excluded96); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path204 || (_path204 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,28V26A10,10,0,0,0,28,16h2A12,12,0,0,1,18,28Z" })), _path205 || (_path205 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18,23V21a5,5,0,0,0,5-5h2A7,7,0,0,1,18,23Z" })), _path206 || (_path206 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,11H21V7a3,3,0,0,0-3-3H12A3,3,0,0,0,9,7v4H3a1,1,0,0,0-1,1.15L3.88,24.3a2,2,0,0,0,2,1.7H15V24H5.86L4.17,13H27ZM11,7a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v4H11Z" })), children); }); { WirelessCheckout.propTypes = iconPropTypes; } var Wmv = /*#__PURE__*/React__default["default"].forwardRef(function Wmv(_ref97, ref) { var children = _ref97.children, _ref97$size = _ref97.size, size = _ref97$size === void 0 ? 16 : _ref97$size, rest = _objectWithoutProperties$1(_ref97, _excluded97); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path207 || (_path207 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M29 9L27 22 25 9 23 9 25.52 23 28.48 23 31 9 29 9zM19 9L17.48 14 17 15.98 16.54 14 15 9 13 9 13 23 15 23 15 15 14.84 13 15.42 15 17 19.63 18.58 15 19.16 13 19 15 19 23 21 23 21 9 19 9zM9.2 9L8.86 17 8.6 21.54 8.19 18 7.51 12.54 5.49 12.54 4.81 18 4.4 21.54 4.14 17 3.8 9 2 9 3 23 5.27 23 6.03 18.07 6.49 14 6.5 13.97 6.51 14 6.97 18.07 7.73 23 10 23 11 9 9.2 9z" })), children); }); { Wmv.propTypes = iconPropTypes; } var WordCloud = /*#__PURE__*/React__default["default"].forwardRef(function WordCloud(_ref98, ref) { var children = _ref98.children, _ref98$size = _ref98.size, size = _ref98$size === void 0 ? 16 : _ref98$size, rest = _objectWithoutProperties$1(_ref98, _excluded98); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path208 || (_path208 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 16H22V18H10zM10 20H18V22H10z" })), _path209 || (_path209 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16,7h0a8.0233,8.0233,0,0,1,7.8649,6.4935l.2591,1.346,1.3488.244A5.5019,5.5019,0,0,1,24.5076,26H7.4954a5.5019,5.5019,0,0,1-.9695-10.9165l1.3488-.244.2591-1.346A8.0256,8.0256,0,0,1,16,7m0-2a10.0244,10.0244,0,0,0-9.83,8.1155A7.5019,7.5019,0,0,0,7.4911,28H24.5076a7.5019,7.5019,0,0,0,1.3213-14.8845A10.0229,10.0229,0,0,0,15.9883,5Z" })), children); }); { WordCloud.propTypes = iconPropTypes; } var WorkflowAutomation = /*#__PURE__*/React__default["default"].forwardRef(function WorkflowAutomation(_ref99, ref) { var children = _ref99.children, _ref99$size = _ref99.size, size = _ref99$size === void 0 ? 16 : _ref99$size, rest = _objectWithoutProperties$1(_ref99, _excluded99); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _switch || (_switch = /*#__PURE__*/React__default["default"].createElement("switch", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 27c-3.6 0-7.1-1.8-9.2-5H12v-2H4v8h2v-3.7c2.5 3 6.1 4.7 10 4.7V27zM31 23v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V15h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H17v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V29h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H31zM24 25c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S25.7 25 24 25zM20 10h5.2C21.9 4.9 15.1 3.5 10 6.8c-3.1 2-5 5.5-5 9.2H3C3 8.8 8.8 3 16 3c3.9 0 7.5 1.7 10 4.7V4h2v8h-8V10z" })))), children); }); { WorkflowAutomation.propTypes = iconPropTypes; } var Workspace = /*#__PURE__*/React__default["default"].forwardRef(function Workspace(_ref100, ref) { var children = _ref100.children, _ref100$size = _ref100.size, size = _ref100$size === void 0 ? 16 : _ref100$size, rest = _objectWithoutProperties$1(_ref100, _excluded100); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path210 || (_path210 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 17v8H6V17H16m0-2H6a2 2 0 00-2 2v8a2 2 0 002 2H16a2 2 0 002-2V17a2 2 0 00-2-2zM27 6v5H17V6H27m0-2H17a2 2 0 00-2 2v5a2 2 0 002 2H27a2 2 0 002-2V6a2 2 0 00-2-2zM27 17v5H22V17h5m0-2H22a2 2 0 00-2 2v5a2 2 0 002 2h5a2 2 0 002-2V17a2 2 0 00-2-2zM11 6v5H6V6h5m0-2H6A2 2 0 004 6v5a2 2 0 002 2h5a2 2 0 002-2V6a2 2 0 00-2-2z" })), children); }); { Workspace.propTypes = iconPropTypes; } var WorkspaceImport = /*#__PURE__*/React__default["default"].forwardRef(function WorkspaceImport(_ref101, ref) { var children = _ref101.children, _ref101$size = _ref101.size, size = _ref101$size === void 0 ? 16 : _ref101$size, rest = _objectWithoutProperties$1(_ref101, _excluded101); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path211 || (_path211 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27 6v5H17V6H27m0-2H17a2 2 0 00-2 2v5a2 2 0 002 2H27a2 2 0 002-2V6a2 2 0 00-2-2zM12 25H6V17h6V15H6a2 2 0 00-2 2v8a2 2 0 002 2h6zM30 20L16.828 20 19.414 17.414 18 16 13 21 18 26 19.414 24.586 16.828 22 30 22 30 20zM11 6v5H6V6h5m0-2H6A2 2 0 004 6v5a2 2 0 002 2h5a2 2 0 002-2V6a2 2 0 00-2-2z" })), children); }); { WorkspaceImport.propTypes = iconPropTypes; } var Worship = /*#__PURE__*/React__default["default"].forwardRef(function Worship(_ref102, ref) { var children = _ref102.children, _ref102$size = _ref102.size, size = _ref102$size === void 0 ? 16 : _ref102$size, rest = _objectWithoutProperties$1(_ref102, _excluded102); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path212 || (_path212 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5859,17,22,21.5859v0h0l-5-5a2.002,2.002,0,0,0-2.8286,0L9.585,21.1709A2.0031,2.0031,0,0,0,9.585,24l4.0009,4H6v2H16a1,1,0,0,0,.707-1.707L11,22.585,15.5852,18l5.7078,5.707a.9995.9995,0,0,0,1.414,0L28,18.4141Z" })), _path213 || (_path213 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.5,17A3.5,3.5,0,1,1,25,13.5,3.5042,3.5042,0,0,1,21.5,17Zm0-5A1.5,1.5,0,1,0,23,13.5,1.5017,1.5017,0,0,0,21.5,12Z" })), _path214 || (_path214 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4,10.5977l12-6.462,12.5264,6.7452.9472-1.7618-13-7a1.0045,1.0045,0,0,0-.9472,0l-13,7A1,1,0,0,0,2,10V30H4Z" })), children); }); { Worship.propTypes = iconPropTypes; } var WorshipChristian = /*#__PURE__*/React__default["default"].forwardRef(function WorshipChristian(_ref103, ref) { var children = _ref103.children, _ref103$size = _ref103.size, size = _ref103$size === void 0 ? 16 : _ref103$size, rest = _objectWithoutProperties$1(_ref103, _excluded103); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path215 || (_path215 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M17,30H15a2.0021,2.0021,0,0,1-2-2V14H8a2.0021,2.0021,0,0,1-2-2V10A2.0021,2.0021,0,0,1,8,8h5V4a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2V8h5a2.0021,2.0021,0,0,1,2,2v2a2.0021,2.0021,0,0,1-2,2H19V28A2.0021,2.0021,0,0,1,17,30ZM8,10v2h7V28h2V12h7V10H17V4H15v6Z" })), children); }); { WorshipChristian.propTypes = iconPropTypes; } var WorshipJewish = /*#__PURE__*/React__default["default"].forwardRef(function WorshipJewish(_ref104, ref) { var children = _ref104.children, _ref104$size = _ref104.size, size = _ref104$size === void 0 ? 16 : _ref104$size, rest = _objectWithoutProperties$1(_ref104, _excluded104); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path216 || (_path216 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24.291,16l3.585-6.5181A1,1,0,0,0,27,8H19.8911L16.876,2.5181a1,1,0,0,0-1.752,0L12.1089,8H5a1,1,0,0,0-.876,1.4819L7.709,16,4.124,22.5181A1,1,0,0,0,5,24h7.1089l3.0151,5.4819a1,1,0,0,0,1.752,0L19.8911,24H27a1,1,0,0,0,.876-1.4819Zm-5.5823,6L16,26.9248,13.2913,22h-6.6l3.3-6-3.3-6h6.6L16,5.0752,18.7087,10h6.6l-3.3,6,3.3,6Z" })), children); }); { WorshipJewish.propTypes = iconPropTypes; } var WorshipMuslim = /*#__PURE__*/React__default["default"].forwardRef(function WorshipMuslim(_ref105, ref) { var children = _ref105.children, _ref105$size = _ref105.size, size = _ref105$size === void 0 ? 16 : _ref105$size, rest = _objectWithoutProperties$1(_ref105, _excluded105); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path217 || (_path217 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27,18a.9986.9986,0,0,1-.5415-.1594L22,14.9688l-4.4585,2.8718a1,1,0,0,1-1.5088-1.095l1.35-5.1318L14.3105,8.69a1,1,0,0,1,.5508-1.7146l4.3745-.6128,1.8663-3.8032A1.0008,1.0008,0,0,1,21.9878,2a1.0171,1.0171,0,0,1,.8989.5378L24.88,6.3625l4.2622.6133A1,1,0,0,1,29.69,8.69l-3.0723,2.9239,1.35,5.1318A1,1,0,0,1,27,18Zm-5-5.2207a.999.999,0,0,1,.5415.1594l2.8369,1.8272-.8457-3.2149a1.0006,1.0006,0,0,1,.2778-.9787l2.0074-1.91-2.73-.3929a.9994.9994,0,0,1-.7441-.5275L22.0269,5.2151,20.7979,7.72a1.0008,1.0008,0,0,1-.7593.55L17.19,8.6687l2,1.9036a1.0006,1.0006,0,0,1,.2778.9787l-.8457,3.2149,2.8369-1.8272A.999.999,0,0,1,22,12.7793Z" })), _path218 || (_path218 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.8169,30A13.8137,13.8137,0,0,1,9.0752,4.1277a1,1,0,0,1,1.3613,1.3611A11.8091,11.8091,0,0,0,26.5107,21.5635a1,1,0,0,1,1.3619,1.3611A13.8411,13.8411,0,0,1,15.8169,30ZM7.3271,7.9727a11.81,11.81,0,0,0,16.7,16.7,13.8086,13.8086,0,0,1-16.7-16.7Z" })), children); }); { WorshipMuslim.propTypes = iconPropTypes; } var QX = /*#__PURE__*/React__default["default"].forwardRef(function QX(_ref106, ref) { var children = _ref106.children, _ref106$size = _ref106.size, size = _ref106$size === void 0 ? 16 : _ref106$size, rest = _objectWithoutProperties$1(_ref106, _excluded106); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path219 || (_path219 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9L18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9z" })), children); }); { QX.propTypes = iconPropTypes; } var XAxis = /*#__PURE__*/React__default["default"].forwardRef(function XAxis(_ref107, ref) { var children = _ref107.children, _ref107$size = _ref107.size, size = _ref107$size === void 0 ? 16 : _ref107$size, rest = _objectWithoutProperties$1(_ref107, _excluded107); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path220 || (_path220 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M23,20l-1.4141,1.4141L24.1719,24H6V4H4V24a2.0023,2.0023,0,0,0,2,2H24.1719l-2.586,2.5859L23,30l5-5Z" })), children); }); { XAxis.propTypes = iconPropTypes; } var Xls = /*#__PURE__*/React__default["default"].forwardRef(function Xls(_ref108, ref) { var children = _ref108.children, _ref108$size = _ref108.size, size = _ref108$size === void 0 ? 16 : _ref108$size, rest = _objectWithoutProperties$1(_ref108, _excluded108); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path221 || (_path221 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 23H22V21h6V17H24a2.002 2.002 0 01-2-2V11a2.002 2.002 0 012-2h6v2H24v4h4a2.002 2.002 0 012 2v4A2.0023 2.0023 0 0128 23zM14 21L14 9 12 9 12 23 20 23 20 21 14 21zM10 9L8 9 6 15 4 9 2 9 4.752 16 2 23 4 23 6 17 8 23 10 23 7.245 16 10 9z" })), children); }); { Xls.propTypes = iconPropTypes; } var Xml = /*#__PURE__*/React__default["default"].forwardRef(function Xml(_ref109, ref) { var children = _ref109.children, _ref109$size = _ref109.size, size = _ref109$size === void 0 ? 16 : _ref109$size, rest = _objectWithoutProperties$1(_ref109, _excluded109); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path222 || (_path222 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 21L24 9 22 9 22 23 30 23 30 21 24 21zM18 9L16.48 14 16 15.98 15.54 14 14 9 12 9 12 23 14 23 14 15 13.84 13 14.42 15 16 19.63 17.58 15 18.16 13 18 15 18 23 20 23 20 9 18 9zM10 9L8 9 6 15 4 9 2 9 4.75 16 2 23 4 23 6 17 8 23 10 23 7.25 16 10 9z" })), children); }); { Xml.propTypes = iconPropTypes; } var QY = /*#__PURE__*/React__default["default"].forwardRef(function QY(_ref110, ref) { var children = _ref110.children, _ref110$size = _ref110.size, size = _ref110$size === void 0 ? 16 : _ref110$size, rest = _objectWithoutProperties$1(_ref110, _excluded110); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path223 || (_path223 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9L18 9 16 16 14 9 12 9 15 18 15 23 17 23 17 18 20 9z" })), children); }); { QY.propTypes = iconPropTypes; } var YAxis = /*#__PURE__*/React__default["default"].forwardRef(function YAxis(_ref111, ref) { var children = _ref111.children, _ref111$size = _ref111.size, size = _ref111$size === void 0 ? 16 : _ref111$size, rest = _objectWithoutProperties$1(_ref111, _excluded111); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path224 || (_path224 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8,26V7.8281l2.5859,2.586L12,9,7,4,2,9l1.4141,1.4141L6,7.8281V26a2.0023,2.0023,0,0,0,2,2H28V26Z" })), children); }); { YAxis.propTypes = iconPropTypes; } var QZ = /*#__PURE__*/React__default["default"].forwardRef(function QZ(_ref112, ref) { var children = _ref112.children, _ref112$size = _ref112.size, size = _ref112$size === void 0 ? 16 : _ref112$size, rest = _objectWithoutProperties$1(_ref112, _excluded112); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path225 || (_path225 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M20 9L12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z" })), children); }); { QZ.propTypes = iconPropTypes; } var ZAxis = /*#__PURE__*/React__default["default"].forwardRef(function ZAxis(_ref113, ref) { var children = _ref113.children, _ref113$size = _ref113.size, size = _ref113$size === void 0 ? 16 : _ref113$size, rest = _objectWithoutProperties$1(_ref113, _excluded113); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path226 || (_path226 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M26 22L26 25.586 17 16.586 17 10 17 6 17 5.828 19.586 8.414 21 7 16 2 11 7 12.414 8.414 15 5.828 15 6 15 10 15 16.586 6 25.586 6 22 4 22 4 29 11 29 11 27 7.414 27 16 18.414 24.586 27 21 27 21 29 28 29 28 22 26 22z" })), children); }); { ZAxis.propTypes = iconPropTypes; } var Zip = /*#__PURE__*/React__default["default"].forwardRef(function Zip(_ref114, ref) { var children = _ref114.children, _ref114$size = _ref114.size, size = _ref114$size === void 0 ? 16 : _ref114$size, rest = _objectWithoutProperties$1(_ref114, _excluded114); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path227 || (_path227 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M28 9H22V23h2V18h4a2 2 0 002-2V11A2 2 0 0028 9zm0 7H24V11h4zM12 9L12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9zM10 9L2 9 2 11 8 11 2 21 2 23 10 23 10 21 4 21 10 11 10 9z" })), children); }); { Zip.propTypes = iconPropTypes; } var ZipReference = /*#__PURE__*/React__default["default"].forwardRef(function ZipReference(_ref115, ref) { var children = _ref115.children, _ref115$size = _ref115.size, size = _ref115$size === void 0 ? 16 : _ref115$size, rest = _objectWithoutProperties$1(_ref115, _excluded115); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path228 || (_path228 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM28 2H22V16h2V11h4a2 2 0 002-2V4A2 2 0 0028 2zm0 7H24V4h4zM12 4L15 4 15 14 12 14 12 16 20 16 20 14 17 14 17 4 20 4 20 2 12 2 12 4zM2 4L8 4 2 14 2 16 10 16 10 14 4 14 10 4 10 2 2 2 2 4z" })), children); }); { ZipReference.propTypes = iconPropTypes; } var ZoomArea = /*#__PURE__*/React__default["default"].forwardRef(function ZoomArea(_ref116, ref) { var children = _ref116.children, _ref116$size = _ref116.size, size = _ref116$size === void 0 ? 16 : _ref116$size, rest = _objectWithoutProperties$1(_ref116, _excluded116); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path229 || (_path229 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 29.5859l-4.6885-4.6884a8.028 8.028 0 10-1.414 1.414L29.5859 31zM20 26a6 6 0 116-6A6.0066 6.0066 0 0120 26zM8 26H4a2.0021 2.0021 0 01-2-2V20H4v4H8zM2 12H4V16H2zM26 8H24V4H20V2h4a2.0021 2.0021 0 012 2zM12 2H16V4H12zM4 8H2V4A2.0021 2.0021 0 014 2H8V4H4z" })), children); }); { ZoomArea.propTypes = iconPropTypes; } var ZoomFit = /*#__PURE__*/React__default["default"].forwardRef(function ZoomFit(_ref117, ref) { var children = _ref117.children, _ref117$size = _ref117.size, size = _ref117$size === void 0 ? 16 : _ref117$size, rest = _objectWithoutProperties$1(_ref117, _excluded117); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path230 || (_path230 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" })), _path231 || (_path231 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10 12H8V10a2.0023 2.0023 0 012-2h2v2H10zM18 12H16V10H14V8h2a2.0023 2.0023 0 012 2zM12 18H10a2.0023 2.0023 0 01-2-2V14h2v2h2zM16 18H14V16h2V14h2v2A2.0023 2.0023 0 0116 18z" })), children); }); { ZoomFit.propTypes = iconPropTypes; } var ZoomIn = /*#__PURE__*/React__default["default"].forwardRef(function ZoomIn(_ref118, ref) { var children = _ref118.children, _ref118$size = _ref118.size, size = _ref118$size === void 0 ? 16 : _ref118$size, rest = _objectWithoutProperties$1(_ref118, _excluded118); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path232 || (_path232 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M9 6L7 6 7 4 6 4 6 6 4 6 4 7 6 7 6 9 7 9 7 7 9 7z" })), _path233 || (_path233 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.7,10C11.5,9,12,7.8,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1.3,0,2.5-0.5,3.5-1.3l3.8,3.8l0.7-0.7 L10.7,10z M6.5,11C4,11,2,9,2,6.5S4,2,6.5,2S11,4,11,6.5S9,11,6.5,11L6.5,11z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path234 || (_path234 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M18 12L14 12 14 8 12 8 12 12 8 12 8 14 12 14 12 18 14 18 14 14 18 14 18 12z" })), _path235 || (_path235 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" })), children); }); { ZoomIn.propTypes = iconPropTypes; } var ZoomInArea = /*#__PURE__*/React__default["default"].forwardRef(function ZoomInArea(_ref119, ref) { var children = _ref119.children, _ref119$size = _ref119.size, size = _ref119$size === void 0 ? 16 : _ref119$size, rest = _objectWithoutProperties$1(_ref119, _excluded119); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path236 || (_path236 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M24 19L21 19 21 16 19 16 19 19 16 19 16 21 19 21 19 24 21 24 21 21 24 21 24 19z" })), _path237 || (_path237 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 29.5859l-4.6885-4.6884a8.028 8.028 0 10-1.414 1.414L29.5859 31zM20 26a6 6 0 116-6A6.0066 6.0066 0 0120 26zM4 8H2V4A2.0021 2.0021 0 014 2H8V4H4zM26 8H24V4H20V2h4a2.0021 2.0021 0 012 2zM12 2H16V4H12zM8 26H4a2.0021 2.0021 0 01-2-2V20H4v4H8zM2 12H4V16H2z" })), children); }); { ZoomInArea.propTypes = iconPropTypes; } var ZoomOut = /*#__PURE__*/React__default["default"].forwardRef(function ZoomOut(_ref120, ref) { var children = _ref120.children, _ref120$size = _ref120.size, size = _ref120$size === void 0 ? 16 : _ref120$size, rest = _objectWithoutProperties$1(_ref120, _excluded120); if (size === 16 || size === "16" || size === "16px") { return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", fill: "currentColor" }, rest), _path238 || (_path238 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M4 6H9V7H4z" })), _path239 || (_path239 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M10.7,10C11.5,9,12,7.8,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1.3,0,2.5-0.5,3.5-1.3l3.8,3.8l0.7-0.7 L10.7,10z M6.5,11C4,11,2,9,2,6.5S4,2,6.5,2S11,4,11,6.5S9,11,6.5,11L6.5,11z" })), children); } return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path240 || (_path240 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M8 12H18V14H8z" })), _path241 || (_path241 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" })), children); }); { ZoomOut.propTypes = iconPropTypes; } var ZoomOutArea = /*#__PURE__*/React__default["default"].forwardRef(function ZoomOutArea(_ref121, ref) { var children = _ref121.children, _ref121$size = _ref121.size, size = _ref121$size === void 0 ? 16 : _ref121$size, rest = _objectWithoutProperties$1(_ref121, _excluded121); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path242 || (_path242 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 19H24V21H16z" })), _path243 || (_path243 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M31 29.5859l-4.6885-4.6884a8.028 8.028 0 10-1.414 1.414L29.5859 31zM20 26a6 6 0 116-6A6.0066 6.0066 0 0120 26zM4 8H2V4A2.0021 2.0021 0 014 2H8V4H4zM26 8H24V4H20V2h4a2.0021 2.0021 0 012 2zM12 2H16V4H12zM8 26H4a2.0021 2.0021 0 01-2-2V20H4v4H8zM2 12H4V16H2z" })), children); }); { ZoomOutArea.propTypes = iconPropTypes; } var ZoomReset = /*#__PURE__*/React__default["default"].forwardRef(function ZoomReset(_ref122, ref) { var children = _ref122.children, _ref122$size = _ref122.size, size = _ref122$size === void 0 ? 16 : _ref122$size, rest = _objectWithoutProperties$1(_ref122, _excluded122); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path244 || (_path244 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M22.4478,21A10.855,10.855,0,0,0,25,14,10.99,10.99,0,0,0,6,6.4658V2H4v8h8V8H7.332a8.9768,8.9768,0,1,1-2.1,8H3.1912A11.0118,11.0118,0,0,0,14,25a10.855,10.855,0,0,0,7-2.5522L28.5859,30,30,28.5859Z" })), children); }); { ZoomReset.propTypes = iconPropTypes; } var WatsonHealthZoomPan = /*#__PURE__*/React__default["default"].forwardRef(function WatsonHealthZoomPan(_ref123, ref) { var children = _ref123.children, _ref123$size = _ref123.size, size = _ref123$size === void 0 ? 16 : _ref123$size, rest = _objectWithoutProperties$1(_ref123, _excluded123); return /*#__PURE__*/React__default["default"].createElement(Icon$2, _objectSpread2$1({ width: size, height: size, ref: ref, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", fill: "currentColor" }, rest), _path245 || (_path245 = /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.01 12L25.6 13.41 28.18 16 25.59 18.59 27.01 20 31.01 16 27.01 12zM6.41 13.42L5 12 1 16 5 20 6.42 18.59 3.83 16 6.41 13.42zM16 28.17L13.41 25.58 12 27 16 31 20 27 18.59 25.59 16 28.17zM16 3.83L18.58 6.41 20 5 16 1 12 5 13.41 6.42 16 3.83zM22 16a6 6 0 10-2.53 4.89l3.82 3.82 1.42-1.42-3.82-3.82A6 6 0 0022 16zm-6 4a4 4 0 114-4A4 4 0 0116 20z" })), children); }); { WatsonHealthZoomPan.propTypes = iconPropTypes; } /** * Copyright IBM Corp. 2016, 2021 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ var CarbonIcons = /*#__PURE__*/Object.freeze({ __proto__: null, Icon: Icon$2, Accessibility: Accessibility, AccessibilityAlt: AccessibilityAlt, AccessibilityColor: AccessibilityColor, AccessibilityColorFilled: AccessibilityColorFilled, Account: Account, AccumulationIce: AccumulationIce, AccumulationPrecipitation: AccumulationPrecipitation, AccumulationRain: AccumulationRain, AccumulationSnow: AccumulationSnow, Activity: Activity, Add: Add, AddAlt: AddAlt, AddComment: AddComment, AddFilled: AddFilled, AgricultureAnalytics: AgricultureAnalytics, AirlineDigitalGate: AirlineDigitalGate, AirlineManageGates: AirlineManageGates, AirlinePassengerCare: AirlinePassengerCare, AirlineRapidBoard: AirlineRapidBoard, Airplay: Airplay, AirplayFilled: AirplayFilled, AirportLocation: AirportLocation, Airport_01: Airport_01, Airport_02: Airport_02, Alarm: Alarm, AlarmAdd: AlarmAdd, AlarmSubtract: AlarmSubtract, AlignBoxBottomCenter: AlignBoxBottomCenter, AlignBoxBottomLeft: AlignBoxBottomLeft, AlignBoxBottomRight: AlignBoxBottomRight, AlignBoxMiddleCenter: AlignBoxMiddleCenter, AlignBoxMiddleLeft: AlignBoxMiddleLeft, AlignBoxMiddleRight: AlignBoxMiddleRight, AlignBoxTopCenter: AlignBoxTopCenter, AlignBoxTopLeft: AlignBoxTopLeft, AlignBoxTopRight: AlignBoxTopRight, AlignHorizontalCenter: AlignHorizontalCenter, AlignHorizontalLeft: AlignHorizontalLeft, AlignHorizontalRight: AlignHorizontalRight, AlignVerticalBottom: AlignVerticalBottom, AlignVerticalCenter: AlignVerticalCenter, AlignVerticalTop: AlignVerticalTop, Analytics: Analytics, AnalyticsCustom: AnalyticsCustom, AnalyticsReference: AnalyticsReference, Aperture: Aperture, Api: Api, Api_1: Api_1, App: App, AppConnectivity: AppConnectivity, Apple: Apple, Application: Application, ApplicationMobile: ApplicationMobile, ApplicationVirtual: ApplicationVirtual, ApplicationWeb: ApplicationWeb, Apps: Apps, Archive: Archive, Area: Area, AreaCustom: AreaCustom, Arrival: Arrival, ArrowDown: ArrowDown, ArrowDownLeft: ArrowDownLeft, ArrowDownRight: ArrowDownRight, ArrowLeft: ArrowLeft, ArrowRight: ArrowRight, ArrowShiftDown: ArrowShiftDown, ArrowUp: ArrowUp, ArrowUpLeft: ArrowUpLeft, ArrowUpRight: ArrowUpRight, ArrowsHorizontal: ArrowsHorizontal, ArrowsVertical: ArrowsVertical, Asleep: Asleep, AsleepFilled: AsleepFilled, Assembly: Assembly, AssemblyCluster: AssemblyCluster, AssemblyReference: AssemblyReference, Asset: Asset, AssetConfirm: AssetConfirm, AssetDigitalTwin: AssetDigitalTwin, AssetView: AssetView, Asterisk: Asterisk, At: At, Attachment: Attachment, AudioConsole: AudioConsole, AugmentedReality: AugmentedReality, Automatic: Automatic, Autoscaling: Autoscaling, Awake: Awake, Badge: Badge$1, BaggageClaim: BaggageClaim, Bar: Bar, Barcode: Barcode, BareMetalServer: BareMetalServer, BareMetalServer_01: BareMetalServer_01, BareMetalServer_02: BareMetalServer_02, Basketball: Basketball, QBarrier: QBarrier, WatsonHealth3DCursor: WatsonHealth3DCursor, WatsonHealth3DCursorAlt: WatsonHealth3DCursorAlt, WatsonHealth3DCurveAutoColon: WatsonHealth3DCurveAutoColon, WatsonHealth3DCurveAutoVessels: WatsonHealth3DCurveAutoVessels, WatsonHealth3DCurveManual: WatsonHealth3DCurveManual, WatsonHealth3DICa: WatsonHealth3DICa, WatsonHealth3DMprToggle: WatsonHealth3DMprToggle, WatsonHealth3DPrintMesh: WatsonHealth3DPrintMesh, WatsonHealth3DSoftware: WatsonHealth3DSoftware, WatsonHealth3rdPartyConnected: WatsonHealth3rdPartyConnected, WatsonHealthAiResults: WatsonHealthAiResults, WatsonHealthAiResultsHigh: WatsonHealthAiResultsHigh, WatsonHealthAiResultsLow: WatsonHealthAiResultsLow, WatsonHealthAiResultsMedium: WatsonHealthAiResultsMedium, WatsonHealthAiResultsUrgent: WatsonHealthAiResultsUrgent, WatsonHealthAiResultsVeryHigh: WatsonHealthAiResultsVeryHigh, WatsonHealthAiStatus: WatsonHealthAiStatus, WatsonHealthAiStatusComplete: WatsonHealthAiStatusComplete, WatsonHealthAiStatusFailed: WatsonHealthAiStatusFailed, WatsonHealthAiStatusInProgress: WatsonHealthAiStatusInProgress, WatsonHealthAiStatusQueued: WatsonHealthAiStatusQueued, WatsonHealthAiStatusRejected: WatsonHealthAiStatusRejected, WatsonHealthAngle: WatsonHealthAngle, WatsonHealthAnnotationVisibility: WatsonHealthAnnotationVisibility, WatsonHealthArrowAnnotation: WatsonHealthArrowAnnotation, WatsonHealthAutoScroll: WatsonHealthAutoScroll, _4K: _4K, _4KFilled: _4KFilled, BastionHost: BastionHost, Bat: Bat, BatteryCharging: BatteryCharging, BatteryEmpty: BatteryEmpty, BatteryFull: BatteryFull, BatteryHalf: BatteryHalf, BatteryLow: BatteryLow, BatteryQuarter: BatteryQuarter, Bee: Bee, BeeBat: BeeBat, Beta: Beta, Bicycle: Bicycle, Binoculars: Binoculars, BlockStorage: BlockStorage, BlockStorageAlt: BlockStorageAlt, Blockchain: Blockchain, Blog: Blog, Bluetooth: Bluetooth, BluetoothOff: BluetoothOff, Book: Book, Bookmark: Bookmark, BookmarkAdd: BookmarkAdd, BookmarkFilled: BookmarkFilled, Boolean: Boolean$1, Boot: Boot, BorderBottom: BorderBottom, BorderFull: BorderFull, BorderLeft: BorderLeft, BorderNone: BorderNone, BorderRight: BorderRight, BorderTop: BorderTop, Bot: Bot, Box: Box$1, BoxExtraLarge: BoxExtraLarge, BoxLarge: BoxLarge, BoxMedium: BoxMedium, BoxPlot: BoxPlot, BoxSmall: BoxSmall, Branch: Branch$1, BreakingChange: BreakingChange, BrightnessContrast: BrightnessContrast, BringForward: BringForward, BringToFront: BringToFront, BuildTool: BuildTool, Building: Building, BuildingInsights_1: BuildingInsights_1, BuildingInsights_2: BuildingInsights_2, BuildingInsights_3: BuildingInsights_3, Bullhorn: Bullhorn, Buoy: Buoy, Bus: Bus, ButtonCentered: ButtonCentered, ButtonFlushLeft: ButtonFlushLeft, CabinCare: CabinCare, CabinCareAlert: CabinCareAlert, CabinCareAlt: CabinCareAlt, Cad: Cad, Cafe: Cafe, Calculation: Calculation, CalculationAlt: CalculationAlt, Calculator: Calculator, CalculatorCheck: CalculatorCheck, Calendar: Calendar, CalendarAdd: CalendarAdd, CalendarAddAlt: CalendarAddAlt, CalendarHeatMap: CalendarHeatMap, CalendarSettings: CalendarSettings, CalendarTools: CalendarTools, Calibrate: Calibrate, Camera: Camera, CameraAction: CameraAction, Campsite: Campsite, Car: Car, CarFront: CarFront, Carbon: Carbon, CarbonAccounting: CarbonAccounting, CarbonForIbmDotcom: CarbonForIbmDotcom, CarbonForIbmProduct: CarbonForIbmProduct, CaretDown: CaretDown, CaretLeft: CaretLeft, CaretRight: CaretRight, CaretSort: CaretSort, CaretSortDown: CaretSortDown, CaretSortUp: CaretSortUp, CaretUp: CaretUp, CarouselHorizontal: CarouselHorizontal, CarouselVertical: CarouselVertical, Catalog: Catalog, CatalogPublish: CatalogPublish, Categories: Categories, Category: Category, CategoryAdd: CategoryAdd, CategoryAnd: CategoryAnd, CategoryNew: CategoryNew, CategoryNewEach: CategoryNewEach, Caution: Caution, CautionInverted: CautionInverted, Cda: Cda, CellTower: CellTower, CenterCircle: CenterCircle, CenterSquare: CenterSquare, CenterToFit: CenterToFit, Certificate: Certificate, CertificateCheck: CertificateCheck, ChangeCatalog: ChangeCatalog, CharacterDecimal: CharacterDecimal, CharacterFraction: CharacterFraction, CharacterInteger: CharacterInteger, CharacterLowerCase: CharacterLowerCase, CharacterNegativeNumber: CharacterNegativeNumber, CharacterPatterns: CharacterPatterns, CharacterSentenceCase: CharacterSentenceCase, CharacterUpperCase: CharacterUpperCase, CharacterWholeNumber: CharacterWholeNumber, ChargingStation: ChargingStation, ChargingStationFilled: ChargingStationFilled, ChartArea: ChartArea, Chart_3D: Chart_3D, QBlochSphere: QBlochSphere, QCcX: QCcX, WatsonHealthBrushFreehand: WatsonHealthBrushFreehand, WatsonHealthBrushPolygon: WatsonHealthBrushPolygon, WatsonHealthCdArchive: WatsonHealthCdArchive, WatsonHealthCdCreateArchive: WatsonHealthCdCreateArchive, WatsonHealthCdCreateExchange: WatsonHealthCdCreateExchange, ChartAreaSmooth: ChartAreaSmooth, ChartAreaStepper: ChartAreaStepper, ChartAverage: ChartAverage, ChartBar: ChartBar, ChartBarFloating: ChartBarFloating, ChartBarOverlay: ChartBarOverlay, ChartBarStacked: ChartBarStacked, ChartBarTarget: ChartBarTarget, ChartBubble: ChartBubble, ChartBubblePacked: ChartBubblePacked, ChartBullet: ChartBullet, ChartCandlestick: ChartCandlestick, ChartClusterBar: ChartClusterBar, ChartColumn: ChartColumn, ChartColumnFloating: ChartColumnFloating, ChartColumnTarget: ChartColumnTarget, ChartCombo: ChartCombo, ChartComboStacked: ChartComboStacked, ChartCustom: ChartCustom, ChartErrorBar: ChartErrorBar, ChartErrorBarAlt: ChartErrorBarAlt, ChartEvaluation: ChartEvaluation, ChartHighLow: ChartHighLow, ChartHistogram: ChartHistogram, ChartLine: ChartLine, ChartLineData: ChartLineData, ChartLineSmooth: ChartLineSmooth, ChartMarimekko: ChartMarimekko, ChartMaximum: ChartMaximum, ChartMedian: ChartMedian, ChartMinimum: ChartMinimum, ChartMultiLine: ChartMultiLine, ChartMultitype: ChartMultitype, ChartNetwork: ChartNetwork, ChartParallel: ChartParallel, ChartPie: ChartPie, ChartPoint: ChartPoint, ChartPopulation: ChartPopulation, ChartRadar: ChartRadar, ChartRadial: ChartRadial, ChartRelationship: ChartRelationship, ChartRing: ChartRing, ChartRiver: ChartRiver, ChartRose: ChartRose, ChartScatter: ChartScatter, ChartSpiral: ChartSpiral, ChartStacked: ChartStacked, ChartStepper: ChartStepper, ChartSunburst: ChartSunburst, ChartTSne: ChartTSne, ChartTreemap: ChartTreemap, ChartVennDiagram: ChartVennDiagram, ChartViolinPlot: ChartViolinPlot, ChartWaterfall: ChartWaterfall, ChartWinLoss: ChartWinLoss, Chat: Chat, ChatBot: ChatBot, ChatLaunch: ChatLaunch, ChatOff: ChatOff, ChatOperational: ChatOperational, Checkbox: Checkbox, CheckboxChecked: CheckboxChecked, CheckboxCheckedFilled: CheckboxCheckedFilled, CheckboxIndeterminate: CheckboxIndeterminate, CheckboxIndeterminateFilled: CheckboxIndeterminateFilled, Checkmark: Checkmark, CheckmarkFilled: CheckmarkFilled, CheckmarkFilledError: CheckmarkFilledError, CheckmarkFilledWarning: CheckmarkFilledWarning, CheckmarkOutline: CheckmarkOutline, CheckmarkOutlineError: CheckmarkOutlineError, CheckmarkOutlineWarning: CheckmarkOutlineWarning, Chemistry: Chemistry, ChemistryReference: ChemistryReference, ChevronDown: ChevronDown, ChevronLeft: ChevronLeft, ChevronMini: ChevronMini, ChevronRight: ChevronRight, ChevronSort: ChevronSort, ChevronSortDown: ChevronSortDown, ChevronSortUp: ChevronSortUp, ChevronUp: ChevronUp, Chip: Chip, Choices: Choices, ChooseItem: ChooseItem, ChoroplethMap: ChoroplethMap, CicsCmas: CicsCmas, CicsExplorer: CicsExplorer, CicsRegion: CicsRegion, CicsRegionRouting: CicsRegionRouting, CicsRegionTarget: CicsRegionTarget, CicsSystemGroup: CicsSystemGroup, CicsWuiRegion: CicsWuiRegion, Cicsplex: Cicsplex, CircleDash: CircleDash, CircleFill: CircleFill, CircleFilled: CircleFilled, CirclePacking: CirclePacking, CircleSolid: CircleSolid, CircleStroke: CircleStroke, Classification: Classification, ClassifierLanguage: ClassifierLanguage, Clean: Clean, Close: Close, CloseFilled: CloseFilled, CloseOutline: CloseOutline, ClosedCaption: ClosedCaption, ClosedCaptionAlt: ClosedCaptionAlt, ClosedCaptionFilled: ClosedCaptionFilled, Cloud: Cloud, CloudAlerting: CloudAlerting, CloudApp: CloudApp, CloudAuditing: CloudAuditing, CloudCeiling: CloudCeiling, CloudDataOps: CloudDataOps, CloudDownload: CloudDownload, CloudFoundry_1: CloudFoundry_1, CloudFoundry_2: CloudFoundry_2, CloudLogging: CloudLogging, CloudMonitoring: CloudMonitoring, CloudOffline: CloudOffline, CloudServiceManagement: CloudServiceManagement, CloudUpload: CloudUpload, QCircuitComposer: QCircuitComposer, WatsonHealthCircleMeasurement: WatsonHealthCircleMeasurement, CloudRegistry: CloudRegistry, CloudSatellite: CloudSatellite, CloudSatelliteConfig: CloudSatelliteConfig, CloudSatelliteLink: CloudSatelliteLink, CloudSatelliteServices: CloudSatelliteServices, CloudServices: CloudServices, Cloudy: Cloudy, Code: Code$1, CodeHide: CodeHide, CodeReference: CodeReference, CodeSigningService: CodeSigningService, Cognitive: Cognitive, Collaborate: Collaborate, CollapseAll: CollapseAll, CollapseCategories: CollapseCategories, ColorPalette: ColorPalette, ColorSwitch: ColorSwitch, Column: Column, ColumnDelete: ColumnDelete, ColumnDependency: ColumnDependency, ColumnInsert: ColumnInsert, Commit: Commit, CommunicationUnified: CommunicationUnified, Compare: Compare, Compass: Compass, Concept: Concept, ConditionPoint: ConditionPoint, ConditionWaitPoint: ConditionWaitPoint, Connect: Connect, ConnectRecursive: ConnectRecursive, ConnectSource: ConnectSource, ConnectTarget: ConnectTarget, ConnectionReceive: ConnectionReceive, ConnectionSend: ConnectionSend, ConnectionSignal: ConnectionSignal, ConnectionSignalOff: ConnectionSignalOff, ConnectionTwoWay: ConnectionTwoWay, Construction: Construction, ContainerRegistry: ContainerRegistry, ContainerServices: ContainerServices, ContainerSoftware: ContainerSoftware, ContentDeliveryNetwork: ContentDeliveryNetwork, ContentView: ContentView, Continue: Continue, ContinueFilled: ContinueFilled, ContinuousDeployment: ContinuousDeployment, ContinuousIntegration: ContinuousIntegration, Contrast: Contrast, ConvertToCloud: ConvertToCloud, Cookie: Cookie, Copy: Copy, CopyFile: CopyFile, CopyLink: CopyLink, Corn: Corn, Corner: Corner, Coronavirus: Coronavirus, Cost: Cost, CostTotal: CostTotal, Cough: Cough, Course: Course, Covariate: Covariate, Credentials: Credentials, Critical: Critical, CriticalSeverity: CriticalSeverity, Crop: Crop, CropGrowth: CropGrowth, CropHealth: CropHealth, CrossTab: CrossTab, Crossroads: Crossroads, CrowdReport: CrowdReport, CrowdReportFilled: CrowdReportFilled, Csv: Csv, Cube: Cube, CubeView: CubeView, Currency: Currency, CurrencyBaht: CurrencyBaht, CurrencyDollar: CurrencyDollar, CurrencyEuro: CurrencyEuro, CurrencyLira: CurrencyLira, CurrencyPound: CurrencyPound, CurrencyRuble: CurrencyRuble, CurrencyRupee: CurrencyRupee, CurrencyShekel: CurrencyShekel, CurrencyWon: CurrencyWon, CurrencyYen: CurrencyYen, Cursor_1: Cursor_1, Cursor_2: Cursor_2, Cut: Cut, CutOut: CutOut, Cyclist: Cyclist, Dashboard: Dashboard, DashboardReference: DashboardReference, DataAccessor: DataAccessor, DataBackup: DataBackup, DataBase: DataBase, DataBaseAlt: DataBaseAlt, DataBin: DataBin, DataBlob: DataBlob, DataCenter: DataCenter, DataCheck: DataCheck, DataClass: DataClass, DataCollection: DataCollection, DataConnected: DataConnected, DataDefinition: DataDefinition, DataError: DataError, DataFormat: DataFormat, DataReference: DataReference, DataSet: DataSet, DataStructured: DataStructured, DataUnstructured: DataUnstructured, DataView: DataView, DataViewAlt: DataViewAlt, Data_1: Data_1, Data_2: Data_2, QCU1: QCU1, QCU3: QCU3, QCY: QCY, QCZ: QCZ, QComposerEdit: QComposerEdit, WatsonHealthCobbAngle: WatsonHealthCobbAngle, WatsonHealthContourDraw: WatsonHealthContourDraw, WatsonHealthContourEdit: WatsonHealthContourEdit, WatsonHealthContourFinding: WatsonHealthContourFinding, WatsonHealthCrossReference: WatsonHealthCrossReference, WatsonHealthCutInHalf: WatsonHealthCutInHalf, DataDiode: DataDiode, DataEnrichment: DataEnrichment, DataEnrichmentAdd: DataEnrichmentAdd, DataPlayer: DataPlayer, DataQualityDefinition: DataQualityDefinition, DataRefinery: DataRefinery, DataRefineryReference: DataRefineryReference, DataShare: DataShare, DataTable: DataTable, DataTableReference: DataTableReference, DataVis_1: DataVis_1, DataVis_2: DataVis_2, DataVis_3: DataVis_3, DataVis_4: DataVis_4, DatabaseDatastax: DatabaseDatastax, DatabaseElastic: DatabaseElastic, DatabaseEnterpriseDb2: DatabaseEnterpriseDb2, DatabaseEtcd: DatabaseEtcd, DatabaseMongodb: DatabaseMongodb, DatabasePostgreSql: DatabasePostgreSql, DatabaseRabbit: DatabaseRabbit, DatabaseRedis: DatabaseRedis, Datastore: Datastore, Debug: Debug, DecisionTree: DecisionTree, Delivery: Delivery, DeliveryAdd: DeliveryAdd, DeliveryParcel: DeliveryParcel, DeliveryTruck: DeliveryTruck, Departure: Departure, Deploy: Deploy, DeployRules: DeployRules, DeploymentPattern: DeploymentPattern, DeploymentPolicy: DeploymentPolicy, DeploymentUnitData: DeploymentUnitData, DeploymentUnitExecution: DeploymentUnitExecution, DeploymentUnitInstallation: DeploymentUnitInstallation, DeploymentUnitPresentation: DeploymentUnitPresentation, DeploymentUnitTechnicalData: DeploymentUnitTechnicalData, DeploymentUnitTechnicalExecution: DeploymentUnitTechnicalExecution, DeploymentUnitTechnicalInstallation: DeploymentUnitTechnicalInstallation, DeploymentUnitTechnicalPresentation: DeploymentUnitTechnicalPresentation, DeskAdjustable: DeskAdjustable, Development: Development, Devices: Devices, DewPoint: DewPoint, DewPointFilled: DewPointFilled, Diagram: Diagram, DiagramReference: DiagramReference, DirectLink: DirectLink, DirectionBearRight_01: DirectionBearRight_01, DirectionBearRight_01Filled: DirectionBearRight_01Filled, DirectionBearRight_02: DirectionBearRight_02, DirectionBearRight_02Filled: DirectionBearRight_02Filled, DirectionCurve: DirectionCurve, DirectionCurveFilled: DirectionCurveFilled, DirectionFork: DirectionFork, DirectionForkFilled: DirectionForkFilled, DirectionLoopLeft: DirectionLoopLeft, DirectionLoopLeftFilled: DirectionLoopLeftFilled, DirectionLoopRight: DirectionLoopRight, DirectionLoopRightFilled: DirectionLoopRightFilled, DirectionMerge: DirectionMerge, DirectionMergeFilled: DirectionMergeFilled, DirectionRight_01: DirectionRight_01, DirectionRight_01Filled: DirectionRight_01Filled, DirectionRight_02: DirectionRight_02, DirectionRight_02Filled: DirectionRight_02Filled, DirectionRotaryFirstRight: DirectionRotaryFirstRight, DirectionRotaryFirstRightFilled: DirectionRotaryFirstRightFilled, DirectionRotaryRight: DirectionRotaryRight, DirectionRotaryRightFilled: DirectionRotaryRightFilled, DirectionRotaryStraight: DirectionRotaryStraight, DirectionRotaryStraightFilled: DirectionRotaryStraightFilled, DirectionSharpTurn: DirectionSharpTurn, DirectionSharpTurnFilled: DirectionSharpTurnFilled, DirectionStraight: DirectionStraight, DirectionStraightFilled: DirectionStraightFilled, DirectionStraightRight: DirectionStraightRight, DirectionStraightRightFilled: DirectionStraightRightFilled, DirectionUTurn: DirectionUTurn, DirectionUTurnFilled: DirectionUTurnFilled, DirectoryDomain: DirectoryDomain, DistributeHorizontalCenter: DistributeHorizontalCenter, DistributeHorizontalLeft: DistributeHorizontalLeft, DistributeHorizontalRight: DistributeHorizontalRight, DistributeVerticalBottom: DistributeVerticalBottom, DistributeVerticalCenter: DistributeVerticalCenter, DistributeVerticalTop: DistributeVerticalTop, DnsServices: DnsServices, Doc: Doc, Document: Document$1, DocumentAdd: DocumentAdd, DocumentAttachment: DocumentAttachment, DocumentAudio: DocumentAudio, DocumentBlank: DocumentBlank, DocumentDownload: DocumentDownload, DocumentEpdf: DocumentEpdf, DocumentExport: DocumentExport, DocumentHorizontal: DocumentHorizontal, DocumentImport: DocumentImport, DocumentPdf: DocumentPdf, DocumentPreliminary: DocumentPreliminary, DocumentProtected: DocumentProtected, DocumentSecurity: DocumentSecurity, DocumentSentiment: DocumentSentiment, DocumentSigned: DocumentSigned, DocumentSketch: DocumentSketch, DocumentSubtract: DocumentSubtract, DocumentTasks: DocumentTasks, DocumentUnknown: DocumentUnknown, DocumentUnprotected: DocumentUnprotected, DocumentVertical: DocumentVertical, DocumentVideo: DocumentVideo, DocumentView: DocumentView, DocumentWordProcessor: DocumentWordProcessor, DocumentWordProcessorReference: DocumentWordProcessorReference, DogWalker: DogWalker, DotMark: DotMark, DoubleInteger: DoubleInteger, DownToBottom: DownToBottom, WatsonHealthDenominate: WatsonHealthDenominate, WatsonHealthDicomOverlay: WatsonHealthDicomOverlay, WatsonHealthDicom_6000: WatsonHealthDicom_6000, WatsonHealthDna: WatsonHealthDna, Download: Download, DragHorizontal: DragHorizontal, DragVertical: DragVertical, Draggable: Draggable, Draw: Draw, DrillBack: DrillBack, DrillDown: DrillDown, DrillThrough: DrillThrough, DriverAnalysis: DriverAnalysis, Drone: Drone, DroneDelivery: DroneDelivery, DroneFront: DroneFront, DroneVideo: DroneVideo, DropPhoto: DropPhoto, DropPhotoFilled: DropPhotoFilled, Drought: Drought, Dvr: Dvr, Earth: Earth, EarthAmericas: EarthAmericas, EarthAmericasFilled: EarthAmericasFilled, EarthEuropeAfrica: EarthEuropeAfrica, EarthEuropeAfricaFilled: EarthEuropeAfricaFilled, EarthFilled: EarthFilled, EarthSoutheastAsia: EarthSoutheastAsia, EarthSoutheastAsiaFilled: EarthSoutheastAsiaFilled, Earthquake: Earthquake, EdgeCluster: EdgeCluster, EdgeDevice: EdgeDevice, EdgeNode: EdgeNode, EdgeNodeAlt: EdgeNodeAlt, EdgeService: EdgeService, Edit: Edit, EditOff: EditOff, EdtLoop: EdtLoop, Education: Education, Email: Email$1, EmailNew: EmailNew, Encryption: Encryption, EnergyRenewable: EnergyRenewable, Enterprise: Enterprise, Equalizer: Equalizer, Erase: Erase, Error: Error$1, ErrorFilled: ErrorFilled, ErrorOutline: ErrorOutline, Event: Event, EventSchedule: EventSchedule, Events: Events, EventsAlt: EventsAlt, ExamMode: ExamMode, Exit: Exit, ExpandAll: ExpandAll, ExpandCategories: ExpandCategories, Explore: Explore, Export: Export, Eyedropper: Eyedropper, FaceActivated: FaceActivated, FaceActivatedAdd: FaceActivatedAdd, FaceActivatedFilled: FaceActivatedFilled, FaceAdd: FaceAdd, FaceCool: FaceCool, FaceDissatisfied: FaceDissatisfied, FaceDissatisfiedFilled: FaceDissatisfiedFilled, FaceDizzy: FaceDizzy, FaceDizzyFilled: FaceDizzyFilled, FaceMask: FaceMask, FaceNeutral: FaceNeutral, FaceNeutralFilled: FaceNeutralFilled, FacePending: FacePending, FacePendingFilled: FacePendingFilled, FaceSatisfied: FaceSatisfied, FaceSatisfiedFilled: FaceSatisfiedFilled, FaceWink: FaceWink, FaceWinkFilled: FaceWinkFilled, Factor: Factor, Fade: Fade, Favorite: Favorite, FavoriteFilled: FavoriteFilled, FavoriteHalf: FavoriteHalf, FetchUpload: FetchUpload, FetchUploadCloud: FetchUploadCloud, FileStorage: FileStorage, Filter: Filter, FilterEdit: FilterEdit, FilterRemove: FilterRemove, FilterReset: FilterReset, Finance: Finance, FingerprintRecognition: FingerprintRecognition, Fire: Fire, Firewall: Firewall, FirewallClassic: FirewallClassic, Fish: Fish, FishMultiple: FishMultiple, FitToHeight: FitToHeight, FitToScreen: FitToScreen, FitToWidth: FitToWidth, Flag: Flag, FlagFilled: FlagFilled, FlaggingTaxi: FlaggingTaxi, Flash: Flash, FlashFilled: FlashFilled, FlashOff: FlashOff, FlashOffFilled: FlashOffFilled, FlightInternational: FlightInternational, FlightRoster: FlightRoster, FlightSchedule: FlightSchedule, FloatingIp: FloatingIp, Flood: Flood, FloodWarning: FloodWarning, Floorplan: Floorplan, Flow: Flow, FlowConnection: FlowConnection, FlowData: FlowData, FlowLogsVpc: FlowLogsVpc, FlowModeler: FlowModeler, FlowModelerReference: FlowModelerReference, FlowStream: FlowStream, FlowStreamReference: FlowStreamReference, Fog: Fog, WatsonHealthDownloadStudy: WatsonHealthDownloadStudy, WatsonHealthEdgeEnhancement: WatsonHealthEdgeEnhancement, WatsonHealthEdgeEnhancement_01: WatsonHealthEdgeEnhancement_01, WatsonHealthEdgeEnhancement_02: WatsonHealthEdgeEnhancement_02, WatsonHealthEdgeEnhancement_03: WatsonHealthEdgeEnhancement_03, WatsonHealthErase_3D: WatsonHealthErase_3D, Folder: Folder, FolderAdd: FolderAdd, FolderDetails: FolderDetails, FolderDetailsReference: FolderDetailsReference, FolderMoveTo: FolderMoveTo, FolderOff: FolderOff, FolderOpen: FolderOpen, FolderParent: FolderParent, FolderShared: FolderShared, Folders: Folders$1, ForecastHail: ForecastHail, ForecastHail_30: ForecastHail_30, ForecastLightning: ForecastLightning, ForecastLightning_30: ForecastLightning_30, Fork: Fork, Forum: Forum, Forward_10: Forward_10, Forward_30: Forward_30, Forward_5: Forward_5, Fragile: Fragile, Friendship: Friendship, FruitBowl: FruitBowl, Function: Function$1, FunctionMath: FunctionMath, GameConsole: GameConsole, GameWireless: GameWireless, Gamification: Gamification, GasStation: GasStation, GasStationFilled: GasStationFilled, Gateway: Gateway, GatewayApi: GatewayApi, GatewayMail: GatewayMail, GatewayPublic: GatewayPublic, GatewaySecurity: GatewaySecurity, GatewayUserAccess: GatewayUserAccess, GatewayVpn: GatewayVpn, GenderFemale: GenderFemale, GenderMale: GenderMale, GeneratePdf: GeneratePdf, Gif: Gif, Gift: Gift, Globe: Globe, Gradient: Gradient, GraphicalDataFlow: GraphicalDataFlow, Grid: Grid, Group: Group$1, GroupAccess: GroupAccess, GroupAccount: GroupAccount, GroupObjects: GroupObjects, GroupObjectsNew: GroupObjectsNew, GroupObjectsSave: GroupObjectsSave, GroupPresentation: GroupPresentation, GroupResource: GroupResource, GroupSecurity: GroupSecurity, Growth: Growth, Gui: Gui, GuiManagement: GuiManagement, Hail: Hail, Harbor: Harbor, HardwareSecurityModule: HardwareSecurityModule, Hashtag: Hashtag, Haze: Haze, HazeNight: HazeNight, Hd: Hd, HdFilled: HdFilled, Hdr: Hdr, Headphones: Headphones, Headset: Headset, HealthCross: HealthCross, Hearing: Hearing, HeatMap: HeatMap, HeatMapStocks: HeatMapStocks, HeatMap_02: HeatMap_02, HeatMap_03: HeatMap_03, Helicopter: Helicopter, Help: Help, HelpDesk: HelpDesk, HelpFilled: HelpFilled, Home: Home, HorizontalView: HorizontalView, Hospital: Hospital, HospitalBed: HospitalBed, Hotel: Hotel, Hourglass: Hourglass, Html: Html, HtmlReference: HtmlReference, Http: Http, Humidity: Humidity, HumidityAlt: HumidityAlt, Hurricane: Hurricane, HybridNetworking: HybridNetworking, HybridNetworkingAlt: HybridNetworkingAlt, IbmCloud: IbmCloud, IbmCloudCitrixDaas: IbmCloudCitrixDaas, IbmCloudDedicatedHost: IbmCloudDedicatedHost, IbmCloudDirectLink_1Connect: IbmCloudDirectLink_1Connect, IbmCloudDirectLink_1Dedicated: IbmCloudDirectLink_1Dedicated, IbmCloudDirectLink_1DedicatedHosting: IbmCloudDirectLink_1DedicatedHosting, IbmCloudDirectLink_1Exchange: IbmCloudDirectLink_1Exchange, IbmCloudDirectLink_2Connect: IbmCloudDirectLink_2Connect, IbmCloudDirectLink_2Dedicated: IbmCloudDirectLink_2Dedicated, IbmCloudDirectLink_2DedicatedHosting: IbmCloudDirectLink_2DedicatedHosting, IbmCloudEventNotification: IbmCloudEventNotification, IbmCloudEventStreams: IbmCloudEventStreams, IbmCloudHyperProtectCryptoServices: IbmCloudHyperProtectCryptoServices, IbmCloudHyperProtectDbaas: IbmCloudHyperProtectDbaas, IbmCloudHyperProtectVs: IbmCloudHyperProtectVs, IbmCloudInternetServices: IbmCloudInternetServices, IbmCloudKeyProtect: IbmCloudKeyProtect, IbmCloudKubernetesService: IbmCloudKubernetesService, IbmCloudLogging: IbmCloudLogging, IbmCloudMassDataMigration: IbmCloudMassDataMigration, IbmDataReplication: IbmDataReplication, IbmDatastage: IbmDatastage, IbmMatch_360: IbmMatch_360, IbmMq: IbmMq, IbmOpenEnterpriseLanguages: IbmOpenEnterpriseLanguages, IbmPowerVs: IbmPowerVs, QH: QH, QHintonPlot: QHintonPlot, WatsonHealthFusionBlender: WatsonHealthFusionBlender, WatsonHealthHangingProtocol: WatsonHealthHangingProtocol, WatsonHealthHl7Attributes: WatsonHealthHl7Attributes, WatsonHealthHoleFilling: WatsonHealthHoleFilling, WatsonHealthHoleFillingCursor: WatsonHealthHoleFillingCursor, IbmCloudPakApplications: IbmCloudPakApplications, IbmCloudPakBusinessAutomation: IbmCloudPakBusinessAutomation, IbmCloudPakData: IbmCloudPakData, IbmCloudPakIntegration: IbmCloudPakIntegration, IbmCloudPakMantaAutomatedDataLineage: IbmCloudPakMantaAutomatedDataLineage, IbmCloudPakMulticloudMgmt: IbmCloudPakMulticloudMgmt, IbmCloudPakNetezza: IbmCloudPakNetezza, IbmCloudPakNetworkAutomation: IbmCloudPakNetworkAutomation, IbmCloudPakSecurity: IbmCloudPakSecurity, IbmCloudPakSystem: IbmCloudPakSystem, IbmCloudPakWatsonAiops: IbmCloudPakWatsonAiops, IbmCloudPal: IbmCloudPal, IbmCloudSecretsManager: IbmCloudSecretsManager, IbmCloudSecurityComplianceCenter: IbmCloudSecurityComplianceCenter, IbmCloudSubnets: IbmCloudSubnets, IbmCloudSysdigSecure: IbmCloudSysdigSecure, IbmCloudTransitGateway: IbmCloudTransitGateway, IbmCloudVpcEndpoints: IbmCloudVpcEndpoints, IbmSecurity: IbmSecurity, IbmSecurityServices: IbmSecurityServices, IbmWatsonAssistant: IbmWatsonAssistant, IbmWatsonDiscovery: IbmWatsonDiscovery, IbmWatsonKnowledgeCatalog: IbmWatsonKnowledgeCatalog, IbmWatsonKnowledgeStudio: IbmWatsonKnowledgeStudio, IbmWatsonLanguageTranslator: IbmWatsonLanguageTranslator, IbmWatsonMachineLearning: IbmWatsonMachineLearning, IbmWatsonNaturalLanguageClassifier: IbmWatsonNaturalLanguageClassifier, IbmWatsonNaturalLanguageUnderstanding: IbmWatsonNaturalLanguageUnderstanding, IbmWatsonOpenscale: IbmWatsonOpenscale, IbmWatsonOrders: IbmWatsonOrders, IbmWatsonQuery: IbmWatsonQuery, IbmWatsonSpeechToText: IbmWatsonSpeechToText, IbmWatsonStudio: IbmWatsonStudio, IbmWatsonTextToSpeech: IbmWatsonTextToSpeech, IbmWatsonToneAnalyzer: IbmWatsonToneAnalyzer, IbmZCloudModStack: IbmZCloudModStack, IbmZCloudProvisioning: IbmZCloudProvisioning, IbmZOsPackageManager: IbmZOsPackageManager, IceAccretion: IceAccretion, IceVision: IceVision, IdManagement: IdManagement, Idea: Idea, Identification: Identification, Image: Image$1, ImageCopy: ImageCopy, ImageMedical: ImageMedical, ImageReference: ImageReference, ImageSearch: ImageSearch, ImageSearchAlt: ImageSearchAlt, ImageService: ImageService, ImportExport: ImportExport, ImproveRelevance: ImproveRelevance, InProgress: InProgress, InProgressError: InProgressError, InProgressWarning: InProgressWarning, Incomplete: Incomplete, IncompleteCancel: IncompleteCancel, IncompleteError: IncompleteError, IncompleteWarning: IncompleteWarning, IncreaseLevel: IncreaseLevel, Industry: Industry, Information: Information, InformationDisabled: InformationDisabled, InformationFilled: InformationFilled, InformationSquare: InformationSquare, InformationSquareFilled: InformationSquareFilled, InfrastructureClassic: InfrastructureClassic, Insert: Insert, InsertPage: InsertPage, InsertSyntax: InsertSyntax, Inspection: Inspection, InstanceBx: InstanceBx, InstanceClassic: InstanceClassic, InstanceCx: InstanceCx, InstanceMx: InstanceMx, InstanceVirtual: InstanceVirtual, Integration: Integration, IntentRequestActive: IntentRequestActive, IntentRequestCreate: IntentRequestCreate, IntentRequestHeal: IntentRequestHeal, IntentRequestInactive: IntentRequestInactive, IntentRequestScaleIn: IntentRequestScaleIn, IntentRequestScaleOut: IntentRequestScaleOut, IntentRequestUninstall: IntentRequestUninstall, IntentRequestUpgrade: IntentRequestUpgrade, Interactions: Interactions, Intersect: Intersect, IntrusionPrevention: IntrusionPrevention, InventoryManagement: InventoryManagement, IotConnect: IotConnect, IotPlatform: IotPlatform, Iso: Iso, IsoFilled: IsoFilled, IsoOutline: IsoOutline, JoinFull: JoinFull, JoinInner: JoinInner, JoinLeft: JoinLeft, JoinOuter: JoinOuter, JoinRight: JoinRight, Jpg: Jpg, Json: Json, JsonReference: JsonReference, JumpLink: JumpLink, KeepDry: KeepDry, Keyboard: Keyboard, KeyboardOff: KeyboardOff, Kubernetes: Kubernetes, Label: Label$1, Language: Language, Laptop: Laptop, Lasso: Lasso, LassoPolygon: LassoPolygon, Launch: Launch$1, Layers: Layers, Legend: Legend, LetterAa: LetterAa, LetterBb: LetterBb, LetterCc: LetterCc, LetterDd: LetterDd, QID: QID, WatsonHealthICa_2D: WatsonHealthICa_2D, WatsonHealthInteractiveSegmentationCursor: WatsonHealthInteractiveSegmentationCursor, WatsonHealthLaunchStudy_1: WatsonHealthLaunchStudy_1, WatsonHealthLaunchStudy_2: WatsonHealthLaunchStudy_2, WatsonHealthLaunchStudy_3: WatsonHealthLaunchStudy_3, LetterEe: LetterEe, LetterFf: LetterFf, LetterGg: LetterGg, LetterHh: LetterHh, LetterIi: LetterIi, LetterJj: LetterJj, LetterKk: LetterKk, LetterLl: LetterLl, LetterMm: LetterMm, LetterNn: LetterNn, LetterOo: LetterOo, LetterPp: LetterPp, LetterQq: LetterQq, LetterRr: LetterRr, LetterSs: LetterSs, LetterTt: LetterTt, LetterUu: LetterUu, LetterVv: LetterVv, LetterWw: LetterWw, LetterXx: LetterXx, LetterYy: LetterYy, LetterZz: LetterZz, License: License, LicenseDraft: LicenseDraft, LicenseGlobal: LicenseGlobal, LicenseMaintenance: LicenseMaintenance, LicenseMaintenanceDraft: LicenseMaintenanceDraft, LicenseThirdParty: LicenseThirdParty, LicenseThirdPartyDraft: LicenseThirdPartyDraft, Lifesaver: Lifesaver, Light: Light, LightFilled: LightFilled, Lightning: Lightning, Link: Link$2, Linux: Linux, LinuxAlt: LinuxAlt, List: List, ListBoxes: ListBoxes, ListBulleted: ListBulleted, ListChecked: ListChecked, ListDropdown: ListDropdown, ListNumbered: ListNumbered, LoadBalancerApplication: LoadBalancerApplication, LoadBalancerClassic: LoadBalancerClassic, LoadBalancerGlobal: LoadBalancerGlobal, LoadBalancerListener: LoadBalancerListener, LoadBalancerLocal: LoadBalancerLocal, LoadBalancerNetwork: LoadBalancerNetwork, LoadBalancerPool: LoadBalancerPool, LoadBalancerVpc: LoadBalancerVpc, Location: Location, LocationCompany: LocationCompany, LocationCompanyFilled: LocationCompanyFilled, LocationCurrent: LocationCurrent, LocationFilled: LocationFilled, LocationHazard: LocationHazard, LocationHazardFilled: LocationHazardFilled, LocationHeart: LocationHeart, LocationHeartFilled: LocationHeartFilled, LocationPerson: LocationPerson, LocationPersonFilled: LocationPersonFilled, LocationSave: LocationSave, LocationStar: LocationStar, LocationStarFilled: LocationStarFilled, Locked: Locked, LogicalPartition: LogicalPartition, Login: Login, LogoAngular: LogoAngular, LogoDigg: LogoDigg, LogoDiscord: LogoDiscord, LogoFacebook: LogoFacebook, LogoFigma: LogoFigma, LogoFlickr: LogoFlickr, LogoGithub: LogoGithub, LogoGlassdoor: LogoGlassdoor, LogoInstagram: LogoInstagram, LogoInvision: LogoInvision, LogoJupyter: LogoJupyter, LogoKeybase: LogoKeybase, LogoKubernetes: LogoKubernetes, LogoLinkedin: LogoLinkedin, LogoLivestream: LogoLivestream, LogoMedium: LogoMedium, LogoNpm: LogoNpm, LogoOpenshift: LogoOpenshift, LogoPinterest: LogoPinterest, LogoPython: LogoPython, LogoQuora: LogoQuora, LogoRScript: LogoRScript, LogoReact: LogoReact, LogoSketch: LogoSketch, LogoSkype: LogoSkype, LogoSlack: LogoSlack, LogoSnapchat: LogoSnapchat, LogoSvelte: LogoSvelte, LogoTumblr: LogoTumblr, LogoTwitter: LogoTwitter, LogoVmware: LogoVmware, LogoVue: LogoVue, LogoWechat: LogoWechat, LogoXing: LogoXing, LogoYelp: LogoYelp, LogoYoutube: LogoYoutube, Logout: Logout, Loop: Loop, LowSeverity: LowSeverity, MacCommand: MacCommand, MacOption: MacOption, MacShift: MacShift, MachineLearning: MachineLearning, MachineLearningModel: MachineLearningModel, MagicWand: MagicWand, MagicWandFilled: MagicWandFilled, MailAll: MailAll, MailReply: MailReply, ManageProtection: ManageProtection, ManagedSolutions: ManagedSolutions, Map: Map$1, MapBoundary: MapBoundary, MapBoundaryVegetation: MapBoundaryVegetation, MapCenter: MapCenter, MapIdentify: MapIdentify, MarineWarning: MarineWarning, WatsonHealthMagnify: WatsonHealthMagnify, WatsonHealthMammogram: WatsonHealthMammogram, MathCurve: MathCurve, Maximize: Maximize, MediaCast: MediaCast, MediaLibrary: MediaLibrary, MediaLibraryFilled: MediaLibraryFilled, Medication: Medication, MedicationAlert: MedicationAlert, MedicationReminder: MedicationReminder, Menu: Menu$1, MessageQueue: MessageQueue, Meter: Meter, MeterAlt: MeterAlt, Microphone: Microphone, MicrophoneFilled: MicrophoneFilled, MicrophoneOff: MicrophoneOff, MicrophoneOffFilled: MicrophoneOffFilled, Microscope: Microscope, Microservices_1: Microservices_1, Microservices_2: Microservices_2, Migrate: Migrate, MigrateAlt: MigrateAlt, Milestone: Milestone, MilitaryCamp: MilitaryCamp, Minimize: Minimize, Misuse: Misuse, MisuseOutline: MisuseOutline, MixedRainHail: MixedRainHail, Mobile: Mobile, MobileAdd: MobileAdd, MobileAudio: MobileAudio, MobileCheck: MobileCheck, MobileDownload: MobileDownload, MobileLandscape: MobileLandscape, MobilityServices: MobilityServices, Model: Model, ModelAlt: ModelAlt, ModelBuilder: ModelBuilder, ModelBuilderReference: ModelBuilderReference, ModelReference: ModelReference, Money: Money, Monster: Monster, Monument: Monument, Moon: Moon$1, Moonrise: Moonrise, Moonset: Moonset, MostlyCloudy: MostlyCloudy, MostlyCloudyNight: MostlyCloudyNight, Mountain: Mountain, Mov: Mov, Move: Move, Movement: Movement, Mp3: Mp3, Mp4: Mp4, Mpeg: Mpeg, Mpg2: Mpg2, Music: Music, MusicAdd: MusicAdd, MusicRemove: MusicRemove, NameSpace: NameSpace, NavaidCivil: NavaidCivil, NavaidDme: NavaidDme, NavaidHelipad: NavaidHelipad, NavaidMilitary: NavaidMilitary, NavaidMilitaryCivil: NavaidMilitaryCivil, NavaidNdb: NavaidNdb, NavaidNdbDme: NavaidNdbDme, NavaidPrivate: NavaidPrivate, NavaidSeaplane: NavaidSeaplane, NavaidTacan: NavaidTacan, NavaidVhfor: NavaidVhfor, NavaidVor: NavaidVor, NavaidVordme: NavaidVordme, NavaidVortac: NavaidVortac, Need: Need, NetworkAdminControl: NetworkAdminControl, NetworkEnterprise: NetworkEnterprise, NetworkOverlay: NetworkOverlay, NetworkPublic: NetworkPublic, Network_1: Network_1, Network_2: Network_2, Network_3: Network_3, Network_3Reference: Network_3Reference, Network_4: Network_4, Network_4Reference: Network_4Reference, NewTab: NewTab, NextFilled: NextFilled, NextOutline: NextOutline, NoImage: NoImage, NoTicket: NoTicket, Nominal: Nominal, NonCertified: NonCertified, NoodleBowl: NoodleBowl, NotAvailable: NotAvailable, NotSent: NotSent, NotSentFilled: NotSentFilled, Notebook: Notebook, NotebookReference: NotebookReference, Notification: Notification, NotificationFilled: NotificationFilled, NotificationNew: NotificationNew, NotificationOff: NotificationOff, NotificationOffFilled: NotificationOffFilled, NumberSmall_0: NumberSmall_0, NumberSmall_1: NumberSmall_1, NumberSmall_2: NumberSmall_2, NumberSmall_3: NumberSmall_3, NumberSmall_4: NumberSmall_4, NumberSmall_5: NumberSmall_5, NumberSmall_6: NumberSmall_6, NumberSmall_7: NumberSmall_7, NumberSmall_8: NumberSmall_8, NumberSmall_9: NumberSmall_9, Number_0: Number_0, Number_1: Number_1, Number_2: Number_2, Number_3: Number_3, Number_4: Number_4, Number_5: Number_5, Number_6: Number_6, Number_7: Number_7, Number_8: Number_8, Number_9: Number_9, ObjectStorage: ObjectStorage, QMatrix: QMatrix, WatsonHealthNominate: WatsonHealthNominate, ObjectStorageAlt: ObjectStorageAlt, ObservedHail: ObservedHail, ObservedLightning: ObservedLightning, Omega: Omega, Opacity: Opacity, OpenPanelBottom: OpenPanelBottom, OpenPanelFilledBottom: OpenPanelFilledBottom, OpenPanelFilledLeft: OpenPanelFilledLeft, OpenPanelFilledRight: OpenPanelFilledRight, OpenPanelFilledTop: OpenPanelFilledTop, OpenPanelLeft: OpenPanelLeft, OpenPanelRight: OpenPanelRight, OpenPanelTop: OpenPanelTop, OperationsField: OperationsField, OperationsRecord: OperationsRecord, OrderDetails: OrderDetails, Ordinal: Ordinal, Outage: Outage, OutlookSevere: OutlookSevere, OverflowMenuHorizontal: OverflowMenuHorizontal, OverflowMenuVertical: OverflowMenuVertical, Overlay: Overlay$1, Package: Package, PageBreak: PageBreak, PageFirst: PageFirst, PageLast: PageLast, PageNumber: PageNumber, PaintBrush: PaintBrush, PaintBrushAlt: PaintBrushAlt, PalmTree: PalmTree, PanHorizontal: PanHorizontal, PanVertical: PanVertical, PanelExpansion: PanelExpansion, Paragraph: Paragraph$1, Parameter: Parameter, ParentChild: ParentChild, PartlyCloudy: PartlyCloudy, PartlyCloudyNight: PartlyCloudyNight, Partnership: Partnership, PassengerDrinks: PassengerDrinks, PassengerPlus: PassengerPlus, Password: Password, Paste: Paste, Pause: Pause, PauseFilled: PauseFilled, PauseFuture: PauseFuture, PauseOutline: PauseOutline, PauseOutlineFilled: PauseOutlineFilled, PausePast: PausePast, PcnENode: PcnENode, PcnMilitary: PcnMilitary, PcnPNode: PcnPNode, PcnZNode: PcnZNode, Pdf: Pdf, PdfReference: PdfReference, Pedestrian: Pedestrian, PedestrianChild: PedestrianChild, PedestrianFamily: PedestrianFamily, Pen: Pen, PenFountain: PenFountain, Pending: Pending, PendingFilled: PendingFilled, Percentage: Percentage, PercentageFilled: PercentageFilled, Person: Person, PersonFavorite: PersonFavorite, Pest: Pest, Phone: Phone, PhoneApplication: PhoneApplication, PhoneBlock: PhoneBlock, PhoneBlockFilled: PhoneBlockFilled, PhoneFilled: PhoneFilled, PhoneIncoming: PhoneIncoming, PhoneIncomingFilled: PhoneIncomingFilled, PhoneIp: PhoneIp, PhoneOff: PhoneOff, PhoneOffFilled: PhoneOffFilled, PhoneOutgoing: PhoneOutgoing, PhoneOutgoingFilled: PhoneOutgoingFilled, PhoneSettings: PhoneSettings, PhoneVoice: PhoneVoice, PhoneVoiceFilled: PhoneVoiceFilled, PhraseSentiment: PhraseSentiment, PicnicArea: PicnicArea, PiggyBank: PiggyBank, PiggyBankSlot: PiggyBankSlot, Pills: Pills, PillsAdd: PillsAdd, PillsSubtract: PillsSubtract, Pin: Pin, PinFilled: PinFilled, Plane: Plane, PlanePrivate: PlanePrivate, PlaneSea: PlaneSea, Play: Play, PlayFilled: PlayFilled, PlayFilledAlt: PlayFilledAlt, PlayOutline: PlayOutline, PlayOutlineFilled: PlayOutlineFilled, Playlist: Playlist, Plug: Plug, PlugFilled: PlugFilled, Png: Png, PointOfPresence: PointOfPresence, Police: Police, Policy: Policy, Popup: Popup, Portfolio: Portfolio, Power: Power, Ppt: Ppt, PresentationFile: PresentationFile, Pressure: Pressure, PressureFilled: PressureFilled, PreviousFilled: PreviousFilled, PreviousOutline: PreviousOutline, Printer: Printer, Product: Product, ProgressBar: ProgressBar, QOperation: QOperation, QOperationGauge: QOperationGauge, QOperationIf: QOperationIf, WatsonHealthPageScroll: WatsonHealthPageScroll, WatsonHealthPetImageB: WatsonHealthPetImageB, WatsonHealthPetImageO: WatsonHealthPetImageO, WatsonHealthPointerText: WatsonHealthPointerText, ProgressBarRound: ProgressBarRound, Promote: Promote, PropertyRelationship: PropertyRelationship, Purchase: Purchase, QS: QS, QSAlt: QSAlt, QqPlot: QqPlot, QrCode: QrCode, QuadrantPlot: QuadrantPlot, Query: Query, QueryQueue: QueryQueue, Queued: Queued, Quotes: Quotes, Radar: Radar, RadarEnhanced: RadarEnhanced, RadarWeather: RadarWeather, Radio: Radio$1, RadioButton: RadioButton, RadioButtonChecked: RadioButtonChecked, RadioCombat: RadioCombat, RadioPushToTalk: RadioPushToTalk, Rain: Rain, RainDrizzle: RainDrizzle, RainDrop: RainDrop, RainHeavy: RainHeavy, RainScattered: RainScattered, RainScatteredNight: RainScatteredNight, Raw: Raw, Receipt: Receipt, RecentlyViewed: RecentlyViewed, Recommend: Recommend, Recording: Recording, RecordingFilled: RecordingFilled, RecordingFilledAlt: RecordingFilledAlt, Redo: Redo, RefEvapotranspiration: RefEvapotranspiration, ReflectHorizontal: ReflectHorizontal, ReflectVertical: ReflectVertical, Reminder: Reminder, ReminderMedical: ReminderMedical, Renew: Renew, Repeat: Repeat, RepeatOne: RepeatOne, Replicate: Replicate, Reply: Reply, ReplyAll: ReplyAll, RepoArtifact: RepoArtifact, RepoSourceCode: RepoSourceCode, Report: Report, ReportData: ReportData, RequestQuote: RequestQuote, Reset: Reset$1, ResetAlt: ResetAlt, Restart: Restart, Restaurant: Restaurant, RestaurantFine: RestaurantFine, Result: Result, ResultNew: ResultNew, ResultOld: ResultOld, RetryFailed: RetryFailed, Review: Review, Rewind_10: Rewind_10, Rewind_30: Rewind_30, Rewind_5: Rewind_5, Road: Road, RoadWeather: RoadWeather, Roadmap: Roadmap, Rocket: Rocket$1, Rotate: Rotate, RotateClockwise: RotateClockwise, RotateClockwiseAlt: RotateClockwiseAlt, RotateClockwiseAltFilled: RotateClockwiseAltFilled, RotateClockwiseFilled: RotateClockwiseFilled, RotateCounterclockwise: RotateCounterclockwise, RotateCounterclockwiseAlt: RotateCounterclockwiseAlt, RotateCounterclockwiseAltFilled: RotateCounterclockwiseAltFilled, RotateCounterclockwiseFilled: RotateCounterclockwiseFilled, Router: Router, RouterVoice: RouterVoice, RouterWifi: RouterWifi, Row: Row, RowCollapse: RowCollapse, RowDelete: RowDelete, RowExpand: RowExpand, RowInsert: RowInsert, Rss: Rss, Rule: Rule, RuleCancelled: RuleCancelled, RuleDataQuality: RuleDataQuality, RuleDraft: RuleDraft, RuleFilled: RuleFilled, RuleTest: RuleTest, Ruler: Ruler, RulerAlt: RulerAlt, Run: Run, SailboatCoastal: SailboatCoastal, SailboatOffshore: SailboatOffshore, SankeyDiagram: SankeyDiagram, SankeyDiagramAlt: SankeyDiagramAlt, Satellite: Satellite, SatelliteRadar: SatelliteRadar, SatelliteWeather: SatelliteWeather, Save: Save, SaveModel: SaveModel, Scale: Scale, Scales: Scales, ScalesTipped: ScalesTipped, Scalpel: Scalpel, Scan: Scan, ScanAlt: ScanAlt, ScanDisabled: ScanDisabled, ScatterMatrix: ScatterMatrix, Schematics: Schematics, WatsonHealthQcLaunch: WatsonHealthQcLaunch, WatsonHealthRegionAnalysisArea: WatsonHealthRegionAnalysisArea, WatsonHealthRegionAnalysisVolume: WatsonHealthRegionAnalysisVolume, WatsonHealthRegistration: WatsonHealthRegistration, WatsonHealthRotate_180: WatsonHealthRotate_180, WatsonHealthRotate_360: WatsonHealthRotate_360, WatsonHealthSaveAnnotation: WatsonHealthSaveAnnotation, WatsonHealthSaveImage: WatsonHealthSaveImage, WatsonHealthSaveSeries: WatsonHealthSaveSeries, WatsonHealthScalpelCursor: WatsonHealthScalpelCursor, WatsonHealthScalpelLasso: WatsonHealthScalpelLasso, WatsonHealthScalpelSelect: WatsonHealthScalpelSelect, ScisControlTower: ScisControlTower, ScisTransparentSupply: ScisTransparentSupply, Scooter: Scooter, ScooterFront: ScooterFront, Screen: Screen, ScreenOff: ScreenOff, Script: Script, ScriptReference: ScriptReference, Sdk: Sdk, Search: Search, SearchAdvanced: SearchAdvanced, SearchLocate: SearchLocate, Security: Security, SecurityServices: SecurityServices, SelectWindow: SelectWindow, Select_01: Select_01, Select_02: Select_02, Send: Send, SendAlt: SendAlt, SendAltFilled: SendAltFilled, SendBackward: SendBackward, SendFilled: SendFilled, SendToBack: SendToBack, ServerDns: ServerDns, ServerProxy: ServerProxy, ServerTime: ServerTime, ServiceDesk: ServiceDesk, ServiceId: ServiceId, SessionBorderControl: SessionBorderControl, Settings: Settings, SettingsAdjust: SettingsAdjust, SettingsCheck: SettingsCheck, SettingsServices: SettingsServices, SettingsView: SettingsView, ShapeExcept: ShapeExcept, ShapeExclude: ShapeExclude, ShapeIntersect: ShapeIntersect, ShapeJoin: ShapeJoin, ShapeUnite: ShapeUnite, Share: Share, ShareKnowledge: ShareKnowledge, ShoppingBag: ShoppingBag, ShoppingCart: ShoppingCart, ShoppingCartArrowDown: ShoppingCartArrowDown, ShoppingCartArrowUp: ShoppingCartArrowUp, ShoppingCartClear: ShoppingCartClear, ShoppingCartError: ShoppingCartError, ShoppingCartMinus: ShoppingCartMinus, ShoppingCartPlus: ShoppingCartPlus, ShoppingCatalog: ShoppingCatalog, ShowDataCards: ShowDataCards, ShrinkScreen: ShrinkScreen, ShrinkScreenFilled: ShrinkScreenFilled, Shuffle: Shuffle, Shuttle: Shuttle, SidePanelClose: SidePanelClose, SidePanelCloseFilled: SidePanelCloseFilled, SidePanelOpen: SidePanelOpen, SidePanelOpenFilled: SidePanelOpenFilled, Sight: Sight, Sigma: Sigma, SignalStrength: SignalStrength, SimCard: SimCard, SkillLevel: SkillLevel, SkillLevelAdvanced: SkillLevelAdvanced, SkillLevelBasic: SkillLevelBasic, SkillLevelIntermediate: SkillLevelIntermediate, SkipBack: SkipBack, SkipBackFilled: SkipBackFilled, SkipBackOutline: SkipBackOutline, SkipBackOutlineFilled: SkipBackOutlineFilled, SkipBackOutlineSolid: SkipBackOutlineSolid, SkipBackSolidFilled: SkipBackSolidFilled, SkipForward: SkipForward, SkipForwardFilled: SkipForwardFilled, SkipForwardOutline: SkipForwardOutline, SkipForwardOutlineFilled: SkipForwardOutlineFilled, SkipForwardOutlineSolid: SkipForwardOutlineSolid, SkipForwardSolidFilled: SkipForwardSolidFilled, Sleet: Sleet, Slisor: Slisor, Smell: Smell, Smoke: Smoke, Snooze: Snooze, Snow: Snow, SnowBlizzard: SnowBlizzard, SnowDensity: SnowDensity, SnowHeavy: SnowHeavy, SnowScattered: SnowScattered, SnowScatteredNight: SnowScatteredNight, Snowflake: Snowflake, Soccer: Soccer, SoftwareResource: SoftwareResource, SoftwareResourceCluster: SoftwareResourceCluster, SoftwareResourceResource: SoftwareResourceResource, SoilMoisture: SoilMoisture, SoilMoistureField: SoilMoistureField, SoilMoistureGlobal: SoilMoistureGlobal, SoilTemperature: SoilTemperature, SoilTemperatureField: SoilTemperatureField, SoilTemperatureGlobal: SoilTemperatureGlobal, SolarPanel: SolarPanel, SortAscending: SortAscending, SortDescending: SortDescending, SortRemove: SortRemove, SpellCheck: SpellCheck, Split: Split, SplitScreen: SplitScreen, SprayPaint: SprayPaint, Sprout: Sprout, Sql: Sql, SquareFill: SquareFill, StackLimitation: StackLimitation, Stamp: Stamp, Star: Star, StarFilled: StarFilled, StarHalf: StarHalf, StarReview: StarReview, WatsonHealthSmoothing: WatsonHealthSmoothing, WatsonHealthSmoothingCursor: WatsonHealthSmoothingCursor, WatsonHealthSpineLabel: WatsonHealthSpineLabel, WatsonHealthSplitDiscard: WatsonHealthSplitDiscard, WatsonHealthStackedMove: WatsonHealthStackedMove, WatsonHealthStackedScrolling_1: WatsonHealthStackedScrolling_1, WatsonHealthStackedScrolling_2: WatsonHealthStackedScrolling_2, QT: QT, QTAlt: QTAlt, StayInside: StayInside, StemLeafPlot: StemLeafPlot, Stethoscope: Stethoscope, Stop: Stop, StopFilled: StopFilled, StopFilledAlt: StopFilledAlt, StopOutline: StopOutline, StopOutlineFilled: StopOutlineFilled, StopSign: StopSign, StopSignFilled: StopSignFilled, StoragePool: StoragePool, StorageRequest: StorageRequest, Store: Store, StormTracker: StormTracker, Strawberry: Strawberry, StringInteger: StringInteger, StringText: StringText, Subflow: Subflow, SubflowLocal: SubflowLocal, SubnetAclRules: SubnetAclRules, Subtract: Subtract, SubtractAlt: SubtractAlt, SummaryKpi: SummaryKpi, Sun: Sun, Sunrise: Sunrise, Sunset: Sunset, Svg: Svg$1, Swim: Swim, SwitchLayer_2: SwitchLayer_2, SwitchLayer_3: SwitchLayer_3, Switcher: Switcher, SysProvision: SysProvision, Table: Table$2, TableAlias: TableAlias, TableBuilt: TableBuilt, TableOfContents: TableOfContents, TableShortcut: TableShortcut, TableSplit: TableSplit, Tablet: Tablet, TabletLandscape: TabletLandscape, Tag: Tag, TagEdit: TagEdit, TagExport: TagExport, TagGroup: TagGroup, TagImport: TagImport, TagNone: TagNone, Tank: Tank, Task: Task, TaskAdd: TaskAdd, TaskApproved: TaskApproved, TaskAssetView: TaskAssetView, TaskComplete: TaskComplete, TaskLocation: TaskLocation, TaskRemove: TaskRemove, TaskSettings: TaskSettings, TaskStar: TaskStar, TaskTools: TaskTools, TaskView: TaskView, Taste: Taste, Taxi: Taxi, Temperature: Temperature, TemperatureCelsius: TemperatureCelsius, TemperatureCelsiusAlt: TemperatureCelsiusAlt, TemperatureFahrenheit: TemperatureFahrenheit, TemperatureFahrenheitAlt: TemperatureFahrenheitAlt, TemperatureFeelsLike: TemperatureFeelsLike, TemperatureFrigid: TemperatureFrigid, TemperatureHot: TemperatureHot, TemperatureInversion: TemperatureInversion, TemperatureMax: TemperatureMax, TemperatureMin: TemperatureMin, TemperatureWater: TemperatureWater, Template: Template, Tennis: Tennis, TennisBall: TennisBall, Term: Term, Terminal: Terminal, Terminal_3270: Terminal_3270, TestTool: TestTool, TextAlignCenter: TextAlignCenter, TextAlignJustify: TextAlignJustify, TextAlignLeft: TextAlignLeft, TextAlignMixed: TextAlignMixed, TextAlignRight: TextAlignRight, TextAllCaps: TextAllCaps, TextBold: TextBold, TextClearFormat: TextClearFormat, TextColor: TextColor, TextCreation: TextCreation, TextFill: TextFill, TextFont: TextFont, TextFootnote: TextFootnote, TextHighlight: TextHighlight, TextIndent: TextIndent, TextIndentLess: TextIndentLess, TextIndentMore: TextIndentMore, TextItalic: TextItalic, TextKerning: TextKerning, TextLeading: TextLeading, TextLineSpacing: TextLineSpacing, TextNewLine: TextNewLine, TextScale: TextScale, TextSelection: TextSelection$1, TextSmallCaps: TextSmallCaps, TextStrikethrough: TextStrikethrough, TextSubscript: TextSubscript, TextSuperscript: TextSuperscript, TextTracking: TextTracking, TextUnderline: TextUnderline, TextVerticalAlignment: TextVerticalAlignment, WatsonHealthStatusAcknowledge: WatsonHealthStatusAcknowledge, WatsonHealthStatusChange: WatsonHealthStatusChange, WatsonHealthStatusPartialFail: WatsonHealthStatusPartialFail, WatsonHealthStatusResolved: WatsonHealthStatusResolved, WatsonHealthStressBreathEditor: WatsonHealthStressBreathEditor, WatsonHealthStudyNext: WatsonHealthStudyNext, WatsonHealthStudyPrevious: WatsonHealthStudyPrevious, WatsonHealthStudyRead: WatsonHealthStudyRead, WatsonHealthStudySkip: WatsonHealthStudySkip, WatsonHealthStudyTransfer: WatsonHealthStudyTransfer, WatsonHealthStudyUnread: WatsonHealthStudyUnread, WatsonHealthStudyView: WatsonHealthStudyView, WatsonHealthSubVolume: WatsonHealthSubVolume, QU1: QU1, QU2: QU2, QU3: QU3, TextLink: TextLink, TextLinkAnalysis: TextLinkAnalysis, TextMining: TextMining, TextMiningApplier: TextMiningApplier, TextWrap: TextWrap, Theater: Theater, ThisSideUp: ThisSideUp, Thumbnail_1: Thumbnail_1, Thumbnail_2: Thumbnail_2, ThumbsDown: ThumbsDown, ThumbsDownFilled: ThumbsDownFilled, ThumbsUp: ThumbsUp, ThumbsUpFilled: ThumbsUpFilled, Thunderstorm: Thunderstorm, ThunderstormScattered: ThunderstormScattered, ThunderstormScatteredNight: ThunderstormScatteredNight, ThunderstormSevere: ThunderstormSevere, ThunderstormStrong: ThunderstormStrong, Ticket: Ticket, Tides: Tides, Tif: Tif, Time: Time, TimePlot: TimePlot, Timer: Timer, ToolBox: ToolBox, ToolKit: ToolKit, Tools: Tools, ToolsAlt: ToolsAlt, Tornado: Tornado, TornadoWarning: TornadoWarning, TouchInteraction: TouchInteraction, Touch_1: Touch_1, Touch_1Down: Touch_1Down, Touch_1DownFilled: Touch_1DownFilled, Touch_1Filled: Touch_1Filled, Touch_2: Touch_2, Touch_2Filled: Touch_2Filled, TrafficCone: TrafficCone, TrafficEvent: TrafficEvent, TrafficFlow: TrafficFlow, TrafficFlowIncident: TrafficFlowIncident, TrafficIncident: TrafficIncident, TrafficWeatherIncident: TrafficWeatherIncident, Train: Train, TrainHeart: TrainHeart, TrainProfile: TrainProfile, TrainSpeed: TrainSpeed, TrainTicket: TrainTicket, TrainTime: TrainTime, Tram: Tram, Transgender: Transgender, Translate: Translate, TransmissionLte: TransmissionLte, Transpose: Transpose, TrashCan: TrashCan, Tree: Tree, TreeFallRisk: TreeFallRisk, TreeView: TreeView, TreeViewAlt: TreeViewAlt, Trophy: Trophy, TrophyFilled: TrophyFilled, TropicalStorm: TropicalStorm, TropicalStormModelTracks: TropicalStormModelTracks, TropicalStormTracks: TropicalStormTracks, TropicalWarning: TropicalWarning, Tsunami: Tsunami, Tsv: Tsv, TwoFactorAuthentication: TwoFactorAuthentication, TwoPersonLift: TwoPersonLift, Txt: Txt, TxtReference: TxtReference, TypePattern: TypePattern, Types: Types, Umbrella: Umbrella, Undefined: Undefined, UndefinedFilled: UndefinedFilled, Undo: Undo, UngroupObjects: UngroupObjects, Unknown: Unknown, UnknownFilled: UnknownFilled, Unlink: Unlink, Unlocked: Unlocked, Unsaved: Unsaved, UpToTop: UpToTop, UpdateNow: UpdateNow, Upgrade: Upgrade, Upload: Upload, Usb: Usb, User: User, UserAccess: UserAccess, UserActivity: UserActivity, UserAdmin: UserAdmin, UserAvatar: UserAvatar, UserAvatarFilled: UserAvatarFilled, UserAvatarFilledAlt: UserAvatarFilledAlt, UserCertification: UserCertification, UserData: UserData, UserFavorite: UserFavorite, UserFavoriteAlt: UserFavoriteAlt, UserFavoriteAltFilled: UserFavoriteAltFilled, UserFilled: UserFilled, UserFollow: UserFollow, UserIdentification: UserIdentification, UserMilitary: UserMilitary, UserMultiple: UserMultiple, UserOnline: UserOnline, UserProfile: UserProfile, UserProfileAlt: UserProfileAlt, UserRole: UserRole, UserServiceDesk: UserServiceDesk, UserSettings: UserSettings, UserSimulation: UserSimulation, UserSpeaker: UserSpeaker, UserXRay: UserXRay, UvIndex: UvIndex, UvIndexAlt: UvIndexAlt, UvIndexFilled: UvIndexFilled, ValueVariable: ValueVariable, Van: Van, WatsonHealthTextAnnotationToggle: WatsonHealthTextAnnotationToggle, WatsonHealthThreshold: WatsonHealthThreshold, WatsonHealthThumbnailPreview: WatsonHealthThumbnailPreview, QX: QX, QY: QY, QZ: QZ, VegetationAsset: VegetationAsset, VehicleApi: VehicleApi, VehicleConnected: VehicleConnected, VehicleInsights: VehicleInsights, VehicleServices: VehicleServices, Version: Version, VerticalView: VerticalView, Video: Video, VideoAdd: VideoAdd, VideoChat: VideoChat, VideoFilled: VideoFilled, VideoOff: VideoOff, VideoOffFilled: VideoOffFilled, View: View, ViewFilled: ViewFilled, ViewMode_1: ViewMode_1, ViewMode_2: ViewMode_2, ViewNext: ViewNext, ViewOff: ViewOff, ViewOffFilled: ViewOffFilled, VirtualColumn: VirtualColumn, VirtualColumnKey: VirtualColumnKey, VirtualDesktop: VirtualDesktop, VirtualMachine: VirtualMachine, VirtualPrivateCloud: VirtualPrivateCloud, VirtualPrivateCloudAlt: VirtualPrivateCloudAlt, VisualRecognition: VisualRecognition, Vlan: Vlan, VlanIbm: VlanIbm, VmdkDisk: VmdkDisk, VoiceActivate: VoiceActivate, Voicemail: Voicemail, VolumeBlockStorage: VolumeBlockStorage, VolumeDown: VolumeDown, VolumeDownAlt: VolumeDownAlt, VolumeDownFilled: VolumeDownFilled, VolumeDownFilledAlt: VolumeDownFilledAlt, VolumeFileStorage: VolumeFileStorage, VolumeMute: VolumeMute, VolumeMuteFilled: VolumeMuteFilled, VolumeObjectStorage: VolumeObjectStorage, VolumeUp: VolumeUp, VolumeUpAlt: VolumeUpAlt, VolumeUpFilled: VolumeUpFilled, VolumeUpFilledAlt: VolumeUpFilledAlt, Vpn: Vpn, VpnConnection: VpnConnection, VpnPolicy: VpnPolicy, Wallet: Wallet, Warning: Warning, WarningAlt: WarningAlt, WarningAltFilled: WarningAltFilled, WarningAltInverted: WarningAltInverted, WarningAltInvertedFilled: WarningAltInvertedFilled, WarningFilled: WarningFilled, WarningHex: WarningHex, WarningHexFilled: WarningHexFilled, WarningOther: WarningOther, WarningSquare: WarningSquare, WarningSquareFilled: WarningSquareFilled, Watch: Watch, Watson: Watson, WatsonHealthWindowAuto: WatsonHealthWindowAuto, WatsonHealthWindowBase: WatsonHealthWindowBase, WatsonHealthWindowBlackSaturation: WatsonHealthWindowBlackSaturation, WatsonHealthWindowOverlay: WatsonHealthWindowOverlay, WatsonHealthWindowPreset: WatsonHealthWindowPreset, WatsonHealthZoomPan: WatsonHealthZoomPan, WatsonMachineLearning: WatsonMachineLearning, WaveDirection: WaveDirection, WaveHeight: WaveHeight, WavePeriod: WavePeriod, WeatherFrontCold: WeatherFrontCold, WeatherFrontStationary: WeatherFrontStationary, WeatherFrontWarm: WeatherFrontWarm, WeatherStation: WeatherStation, Webhook: Webhook, Websheet: Websheet, Wheat: Wheat, Wifi: Wifi, WifiBridge: WifiBridge, WifiBridgeAlt: WifiBridgeAlt, WifiController: WifiController, WifiNotSecure: WifiNotSecure, WifiOff: WifiOff, WifiSecure: WifiSecure, Wikis: Wikis, WindGusts: WindGusts, WindPower: WindPower, WindStream: WindStream, Windy: Windy, WindyDust: WindyDust, WindySnow: WindySnow, WindyStrong: WindyStrong, WinterWarning: WinterWarning, WintryMix: WintryMix, WirelessCheckout: WirelessCheckout, Wmv: Wmv, WordCloud: WordCloud, WorkflowAutomation: WorkflowAutomation, Workspace: Workspace, WorkspaceImport: WorkspaceImport, Worship: Worship, WorshipChristian: WorshipChristian, WorshipJewish: WorshipJewish, WorshipMuslim: WorshipMuslim, XAxis: XAxis, Xls: Xls, Xml: Xml, YAxis: YAxis, ZAxis: ZAxis, Zip: Zip, ZipReference: ZipReference, ZoomArea: ZoomArea, ZoomFit: ZoomFit, ZoomIn: ZoomIn, ZoomInArea: ZoomInArea, ZoomOut: ZoomOut, ZoomOutArea: ZoomOutArea, ZoomReset: ZoomReset }); /* eslint-disable max-len */ /** * @interface Theme * @load ./theme.doc.md * @section design-system */ /** * Color palette. * * @memberof Theme * @alias colors * @property {string} primary100=#4268F6
* @property {string} primary80=#6483F8
* @property {string} primary60=#879FFA
* @property {string} primary40=#A9BAFA
* @property {string} primary20=#CBD5FD
* @property {string} accent=#38CAF1
* @property {string} love=#e6282b
* @property {string} grey100=#1C1C38
* @property {string} grey80=#454655
* @property {string} grey60=#898A9A
* @property {string} grey40=#C0C0CA
* @property {string} grey20=#F6F7FB
* @property {string} white=#fff
* @property {string} errorDark=#DE405D
* @property {string} error=#FF4567
* @property {string} errorLight=#FFA5B5
* @property {string} successDark=#32A887
* @property {string} success=#70C9B0
* @property {string} successLight=#DBF0F1
* @property {string} infoDark=#4268F6
* @property {string} info=#879FFA
* @property {string} infoLight=#CBD5FD
* @property {string} filterBg=#343F87
* @property {string} hoverBg=#535B8E
* @property {string} inputBorder=#898A9A
* @property {string} border=#DDE1E5,
* @property {string} separator=#C0C0CA
* @property {string} highlight=#F6F7FB
* @property {string} filterInputBorder=rgba(255,255,255,0.15)
* @property {string} filterDisabled=rgba(83,91,142,0.05)
* @property {string} bg=#F6F7FB
*/ const colors$1 = { // Primary primary100: '#4268F6', primary80: '#6483F8', primary60: '#879FFA', primary40: '#A9BAFA', primary20: '#CBD5FD', // accent accent: '#38CAF1', love: '#4D70EB', // Main AdminJS logo color // grey grey100: '#1C1C38', grey80: '#454655', grey60: '#898A9A', grey40: '#C0C0CA', grey20: '#F6F7FB', white: '#fff', // Alerts errorDark: '#DE405D', error: '#FF4567', errorLight: '#FFA5B5', successDark: '#32A887', success: '#70C9B0', successLight: '#DBF0F1', infoDark: '#4268F6', info: '#879FFA', infoLight: '#CBD5FD', // Backgrounds filterBg: '#343F87', hoverBg: '#535B8E', // global border: '#DDE1E5', // Elements inputBorder: '#C0C0CA', separator: '#C0C0CA', highlight: '#F6F7FB', filterInputBorder: 'rgba(255,255,255,0.15)', filterDisabled: 'rgba(83,91,142,0.05)', bg: '#F6F7FB' }; /** * Sizes can be used with paddings, margins etc. * * This is the example of using responsive margin with Box component * * ```javascript * some content * ``` * * This component will have 8px padding for lowest breakpoint and 24px above * this breakpoint. * * @memberof Theme * @alias space * @property {string} xs=2px 2px - * @property {string} sm=4px 4px - * @property {string} default=8px 8px - (alias md) * @property {string} lg=16px 16px - * @property {string} xl=24px 24px - * @property {string} xxl=32px 32px - * @property {string} x3=48px 48px - * @property {string} x4=64px 64px - * @property {string} x5=80px 80px - * @property {string} x6=128px 128px - */ const space$1 = { xs: '2px', sm: '4px', default: '8px', md: '8px', lg: '16px', xl: '24px', xxl: '32px', x3: '48px', x4: '64px', x5: '80px', x6: '128px' }; /** * @memberof Theme * @alias sizes * @property {string} navbarHeight=64px * @property {string} sidebarWidth=300px * @property {string} maxFormWidth=740px */ const sizes = { navbarHeight: '64px', sidebarWidth: '300px', maxFormWidth: '740px' }; /** * @memberof Theme * @alias fontSizes * @property {string} xs=10px
'xs' font size
* @property {string} sm=12px
'sm' font size
* @property {string} default=14px (alias md)
'default' font size
* @property {string} lg=16px
'lg' font size
* @property {string} xl=18px
'xl' font size
* @property {string} h4=24px
'h4' font size
* @property {string} h3=28px
'h3' font size
* @property {string} h2=32px
'h2' font size
* @property {string} h1=40px
'h1' font size
*/ const fontSizes = { xs: '10px', sm: '12px', default: '14px', md: '14px', lg: '16px', xl: '18px', h4: '24px', h3: '28px', h2: '32px', h1: '40px' }; /** * @memberof Theme * @alias fontWeights * @property {string} lighter=200 * @property {string} lighter=300 * @property {string} normal=400 * @property {string} normal=500 * @property {string} bolder=900 */ const fontWeights = { lighter: 200, light: 300, normal: 400, bold: 500, bolder: 900 }; /** * @memberof Theme * @alias lineHeights * @property {string} xs=10px * @property {string} sm=12px * @property {string} default=16px (alias md) * @property {string} lg=24px * @property {string} xl=32px * @property {string} xxl=40px */ const lineHeights = { xs: '10px', sm: '12px', default: '16px', md: '16px', lg: '24px', xl: '32px', xxl: '40px' }; /** * This dimension can be used with `testShadow` and `boxShadow` props provided * by {@link ShadowProps} * * ```javascript * Some content... * ``` * * @alias shadows * @memberof Theme * @property {string} login
* @property {string} cardHover
* @property {string} drawer
* @property {string} card
* @property {string} inputFocus
* @property {string} buttonFocus
*/ const shadows = { login: '0 15px 24px 0 rgba(137,138,154,0.15)', cardHover: '0 4px 12px 0 rgba(137,138,154,0.4)', drawer: '-2px 0 8px 0 rgba(137,138,154,0.2)', card: '0 1px 6px 0 rgba(137,138,154,0.4)', inputFocus: '0 2px 4px 0 rgba(135,159,250,0.4)', buttonFocus: '0 4px 6px 0 rgba(56,202,241,0.3)' }; /** * Responsive breakpoints * * How to use them - simply pass an array to given prop: * * ```javascript * // Showing box on mobile devices * ... * * // responsive width * ... * ``` * * @memberof Theme * @alias breakpoints * @property {string} 0=577px * @property {string} 1=769px * @property {string} 2=1024px * @property {string} 3=1324px */ const breakpoints = ['577px', '769px', '1024px', '1324px' // 1024 + sidebarWidth ]; const font = '\'Roboto\', sans-serif'; /** * Border styles * * @memberof Theme * @alias borders * @property {string} input * @property {string} filterInput * @property {string} bg * @property {string} default */ const borders = { input: '1px solid #C0C0CA', filterInput: ' 1px rgba(255,255,255,0. solid15)', bg: '1px solid #F6F7FB', default: '1px solid #DDE1E5' }; /** * Border widths set for an entire layout. If you like to have border radius in Button's and Box'es * Then set default property. * * @memberof Theme * @alias borderWidths * @property {string} default - default border with */ const borderWidths = { default: '0px' }; const VariantValues = ['primary', 'danger', 'success', 'info', 'secondary', 'default', 'light']; // TODO: add transitions /** * The color utility parses a component's color and bg props and converts them into CSS * declarations. By default the raw value of the prop is returned. But most often you * would use one of the color from the [color palette]{@link colors}. * * @typedef {object} ColorProps * @alias ColorProps * @memberof Theme * @property {string} [color] Text color. It could be either a #hash or * {@link colors} from css theme name like * `grey80` * @property {string} [backgroundColor, bg] Background color. Similar as above could be a * #hash or one of {@link colors}. */ /** * The space utility converts shorthand margin and padding props to margin and padding * CSS declarations. * * You can use as a value raw dimensions in "px" or one of the value from the * [space scale]{@link space}. * * @typedef {object} SpaceProps * @alias SpaceProps * @memberof Theme * @property {string} [margin, m] margin * @property {string} [marginTop, mt] margin-top * @property {string} [marginRight, mr] margin-right * @property {string} [marginBottom, mb] margin-bottom * @property {string} [marginLeft, ml] margin-left * @property {string} [marginX, mx] margin-left and margin-right * @property {string} [marginY, my] margin-top and margin-bottom * @property {string} [padding, p] padding * @property {string} [paddingTop, pt] padding-top * @property {string} [paddingRight, pr] padding-right * @property {string} [paddingBottom, pb] padding-bottom * @property {string} [paddingLeft, pl] padding-left * @property {string} [paddingX, px] padding-left and padding-right * @property {string} [paddingY, py] padding-top and padding-bottom * * Set of props related to {@link space}. You can put there either string with 'px' or * one of `space` properties like `sm`, `default`, `xl` etc. */ /** * Typography props include _fontFamily_, _fontSize_, _fontWeight_, _lineHeight_, _letterSpacing_, * _textAlign_, and _fontStyle_. * * @typedef {object} TypographyProps * @alias TypographyProps * @memberof Theme * @property {string} [fontSize] font-size. Could be either actual css value or key taken from * {@link fontSizes} * @property {string} [fontWeight] font-weight. Could be either actual css value or key taken from * {@link fontWeights} * @property {string} [lineHeight] line-height. Could be either actual css value or key taken from * {@link lineHeights} * @property {string} [textAlign] text-align * @property {string} [fontFamily] font-family * @property {string} [fontStyle] font-style * @property {string} [letterSpacing] letter-spacing */ /** * The layout utility includes style props for width, height, display, minWidth, * minHeight, maxWidth, maxHeight, size, verticalAlign, overflow, overflowX, and overflowY. * * The width prop is transformed based on the following: * * - Numbers from 0-1 are converted to percentage widths. * - Numbers greater than 1 are converted to pixel values. * - String values are passed as raw CSS values. * - And arrays are converted to responsive width styles. * - the width prop will attempt to pick up values from the {@link sizes} * * @example * // width `50%` * * * // width `256px` * * * // width `'2em'` * * * // width `100%` on all viewport and `50%` from the smallest breakpoint and up * * * // width from `sizes` * * * @typedef {object} LayoutProps * @alias LayoutProps * @memberof Theme * @property {string} [width] width * @property {string} [height] height * @property {string} [display] display * @property {string} [minWidth] min-width * @property {string} [minHeight] min-height * @property {string} [maxWidth] max-width * @property {string} [maxHeight] max-height * @property {string} [size] size * @property {string} [verticalAlign] vertical-align * @property {string} [overflow] overflow * @property {string} [overflowX] overflow-x * @property {string} [overflowY] overflow-y */ /** * The flexbox utility includes style props for alignItems, alignContent, justifyItems, * justifyContent, flexWrap, flexDirection, flex, flexGrow, flexShrink, flexBasis, * justifySelf, alignSelf, and order. * * The width prop is transformed based on the following: * * - Numbers from 0-1 are converted to percentage widths. * - Numbers greater than 1 are converted to pixel values. * - String values are passed as raw CSS values. * - And arrays are converted to responsive width styles. * - the width prop will attempt to pick up values from the {@link sizes} * * @example * // alignItems * * * // alignContent * * * // justifyContent * * * // flexWrap * * * // flexBasis * * * // flexDirection * * * // flex * * * // justifySelf * * * // alignSelf * * * // order * * * @typedef {object} FlexboxProps * @alias FlexboxProps * @memberof Theme * @property {string} [alignItems] align-items * @property {string} [alignContent] align-content * @property {string} [justifyItems] justify-items * @property {string} [justifyContent] justify-content * @property {string} [flexWrap] flex-wrap * @property {string} [flexDirection] flex-direction * @property {boolean} [flex] flex * @property {number|string} [flexGrow] flex-grow * @property {number} [flexShrink] flex-shrink * @property {string} [flexBasis] flex-basis * @property {string} [justifySelf] justify-self * @property {string} [alignSelf] align-self * @property {number|string} [order] order */ /** * Reused Variant Enum: `primary` | `danger` | `success` | `info` | `secondary` | `default` * * @typedef {Enum} VariantType * @alias VariantType * @memberof Theme */ /** * The border utility includes all style props related to border * * @typedef {object} BorderProps * @alias BorderProps * @memberof Theme * @property {string | number} [borderWidth] * @property {string} [borderStyle] * @property {string} [borderColor] It could be either a #hash or {@link colors} * @property {string | number} [borderRadius] * @property {string | number} [borderTop] * @property {string | number} [borderTopWidth] * @property {string} [borderTopStyle] * @property {string} [borderTopColor] It could be either a #hash or {@link colors} * @property {string | number} [borderTopLeftRadius] * @property {string | number} [borderTopRightRadius] * @property {string | number} [borderRight] * @property {string | number} [borderRightWidth] * @property {string} [borderRightStyle] * @property {string} [borderRightColor] It could be either a #hash or {@link colors} * @property {string | number} [borderBottom] * @property {string | number} [borderBottomWidth] * @property {string} [borderBottomStyle] * @property {string} [borderBottomColor] It could be either a #hash or {@link colors} * @property {string | number} [borderBottomLeftRadius] * @property {string | number} [borderBottomRightRadius] * @property {string | number} [borderLeft] * @property {string | number} [borderLeftWidth] * @property {string} [borderLeftStyle] * @property {string} [borderLeftColor] It could be either a #hash or {@link colors} * @property {string | number} [borderX] * @property {string | number} [borderY] */ /** * The position utility includes style props for position, zIndex, top, right, bottom, and left. * * @typedef {object} PositionProps * @alias PositionProps * @memberof Theme * property {string | number} [position] * property {string | number} [zIndex] * property {string | number} [top] * property {string | number} [right] * property {string | number} [bottom] * property {string | number} [left] */ /** * The shadow utility includes style props for textShadow and boxShadow. * * @typedef {object} ShadowProps * @alias ShadowProps * @memberof Theme * property {string} [boxShadow] * property {string} [textShadow] */ var theme = /*#__PURE__*/Object.freeze({ __proto__: null, VariantValues: VariantValues, colors: colors$1, lineHeights: lineHeights, fontWeights: fontWeights, fontSizes: fontSizes, sizes: sizes, space: space$1, font: font, shadows: shadows, borders: borders, breakpoints: breakpoints, borderWidths: borderWidths }); var merge$1 = function merge(a, b) { var result = objectAssign({}, a, b); for (var key in a) { var _assign; if (!a[key] || typeof b[key] !== 'object') continue; objectAssign(result, (_assign = {}, _assign[key] = objectAssign(a[key], b[key]), _assign)); } return result; }; // sort object-value responsive styles var sort = function sort(obj) { var next = {}; Object.keys(obj).sort(function (a, b) { return a.localeCompare(b, undefined, { numeric: true, sensitivity: 'base' }); }).forEach(function (key) { next[key] = obj[key]; }); return next; }; var defaults$5 = { breakpoints: [40, 52, 64].map(function (n) { return n + 'em'; }) }; var createMediaQuery = function createMediaQuery(n) { return "@media screen and (min-width: " + n + ")"; }; var getValue = function getValue(n, scale) { return get$1(scale, n, n); }; var get$1 = function get(obj, key, def, p, undef) { key = key && key.split ? key.split('.') : [key]; for (p = 0; p < key.length; p++) { obj = obj ? obj[key[p]] : undef; } return obj === undef ? def : obj; }; var createParser = function createParser(config) { var cache = {}; var parse = function parse(props) { var styles = {}; var shouldSort = false; var isCacheDisabled = props.theme && props.theme.disableStyledSystemCache; for (var key in props) { if (!config[key]) continue; var sx = config[key]; var raw = props[key]; var scale = get$1(props.theme, sx.scale, sx.defaults); if (typeof raw === 'object') { cache.breakpoints = !isCacheDisabled && cache.breakpoints || get$1(props.theme, 'breakpoints', defaults$5.breakpoints); if (Array.isArray(raw)) { cache.media = !isCacheDisabled && cache.media || [null].concat(cache.breakpoints.map(createMediaQuery)); styles = merge$1(styles, parseResponsiveStyle(cache.media, sx, scale, raw, props)); continue; } if (raw !== null) { styles = merge$1(styles, parseResponsiveObject(cache.breakpoints, sx, scale, raw, props)); shouldSort = true; } continue; } objectAssign(styles, sx(raw, scale, props)); } // sort object-based responsive styles if (shouldSort) { styles = sort(styles); } return styles; }; parse.config = config; parse.propNames = Object.keys(config); parse.cache = cache; var keys = Object.keys(config).filter(function (k) { return k !== 'config'; }); if (keys.length > 1) { keys.forEach(function (key) { var _createParser; parse[key] = createParser((_createParser = {}, _createParser[key] = config[key], _createParser)); }); } return parse; }; var parseResponsiveStyle = function parseResponsiveStyle(mediaQueries, sx, scale, raw, _props) { var styles = {}; raw.slice(0, mediaQueries.length).forEach(function (value, i) { var media = mediaQueries[i]; var style = sx(value, scale, _props); if (!media) { objectAssign(styles, style); } else { var _assign2; objectAssign(styles, (_assign2 = {}, _assign2[media] = objectAssign({}, styles[media], style), _assign2)); } }); return styles; }; var parseResponsiveObject = function parseResponsiveObject(breakpoints, sx, scale, raw, _props) { var styles = {}; for (var key in raw) { var breakpoint = breakpoints[key]; var value = raw[key]; var style = sx(value, scale, _props); if (!breakpoint) { objectAssign(styles, style); } else { var _assign3; var media = createMediaQuery(breakpoint); objectAssign(styles, (_assign3 = {}, _assign3[media] = objectAssign({}, styles[media], style), _assign3)); } } return styles; }; var createStyleFunction = function createStyleFunction(_ref) { var properties = _ref.properties, property = _ref.property, scale = _ref.scale, _ref$transform = _ref.transform, transform = _ref$transform === void 0 ? getValue : _ref$transform, defaultScale = _ref.defaultScale; properties = properties || [property]; var sx = function sx(value, scale, _props) { var result = {}; var n = transform(value, scale, _props); if (n === null) return; properties.forEach(function (prop) { result[prop] = n; }); return result; }; sx.scale = scale; sx.defaults = defaultScale; return sx; }; // new v5 API var system = function system(args) { if (args === void 0) { args = {}; } var config = {}; Object.keys(args).forEach(function (key) { var conf = args[key]; if (conf === true) { // shortcut definition config[key] = createStyleFunction({ property: key, scale: key }); return; } if (typeof conf === 'function') { config[key] = conf; return; } config[key] = createStyleFunction(conf); }); var parser = createParser(config); return parser; }; var compose = function compose() { var config = {}; for (var _len = arguments.length, parsers = new Array(_len), _key = 0; _key < _len; _key++) { parsers[_key] = arguments[_key]; } parsers.forEach(function (parser) { if (!parser || !parser.config) return; objectAssign(config, parser.config); }); var parser = createParser(config); return parser; }; var isNumber$3 = function isNumber(n) { return typeof n === 'number' && !isNaN(n); }; var getWidth = function getWidth(n, scale) { return get$1(scale, n, !isNumber$3(n) || n > 1 ? n : n * 100 + '%'); }; var config$7 = { width: { property: 'width', scale: 'sizes', transform: getWidth }, height: { property: 'height', scale: 'sizes' }, minWidth: { property: 'minWidth', scale: 'sizes' }, minHeight: { property: 'minHeight', scale: 'sizes' }, maxWidth: { property: 'maxWidth', scale: 'sizes' }, maxHeight: { property: 'maxHeight', scale: 'sizes' }, size: { properties: ['width', 'height'], scale: 'sizes' }, overflow: true, overflowX: true, overflowY: true, display: true, verticalAlign: true }; var layout = system(config$7); var config$6 = { color: { property: 'color', scale: 'colors' }, backgroundColor: { property: 'backgroundColor', scale: 'colors' }, opacity: true }; config$6.bg = config$6.backgroundColor; var color = system(config$6); var defaults$4 = { fontSizes: [12, 14, 16, 20, 24, 32, 48, 64, 72] }; var config$5 = { fontFamily: { property: 'fontFamily', scale: 'fonts' }, fontSize: { property: 'fontSize', scale: 'fontSizes', defaultScale: defaults$4.fontSizes }, fontWeight: { property: 'fontWeight', scale: 'fontWeights' }, lineHeight: { property: 'lineHeight', scale: 'lineHeights' }, letterSpacing: { property: 'letterSpacing', scale: 'letterSpacings' }, textAlign: true, fontStyle: true }; var typography = system(config$5); var config$4 = { alignItems: true, alignContent: true, justifyItems: true, justifyContent: true, flexWrap: true, flexDirection: true, // item flex: true, flexGrow: true, flexShrink: true, flexBasis: true, justifySelf: true, alignSelf: true, order: true }; var flexbox = system(config$4); var defaults$3 = { space: [0, 4, 8, 16, 32, 64, 128, 256, 512] }; var config$3 = { gridGap: { property: 'gridGap', scale: 'space', defaultScale: defaults$3.space }, gridColumnGap: { property: 'gridColumnGap', scale: 'space', defaultScale: defaults$3.space }, gridRowGap: { property: 'gridRowGap', scale: 'space', defaultScale: defaults$3.space }, gridColumn: true, gridRow: true, gridAutoFlow: true, gridAutoColumns: true, gridAutoRows: true, gridTemplateColumns: true, gridTemplateRows: true, gridTemplateAreas: true, gridArea: true }; var grid = system(config$3); var config$2 = { border: { property: 'border', scale: 'borders' }, borderWidth: { property: 'borderWidth', scale: 'borderWidths' }, borderStyle: { property: 'borderStyle', scale: 'borderStyles' }, borderColor: { property: 'borderColor', scale: 'colors' }, borderRadius: { property: 'borderRadius', scale: 'radii' }, borderTop: { property: 'borderTop', scale: 'borders' }, borderTopLeftRadius: { property: 'borderTopLeftRadius', scale: 'radii' }, borderTopRightRadius: { property: 'borderTopRightRadius', scale: 'radii' }, borderRight: { property: 'borderRight', scale: 'borders' }, borderBottom: { property: 'borderBottom', scale: 'borders' }, borderBottomLeftRadius: { property: 'borderBottomLeftRadius', scale: 'radii' }, borderBottomRightRadius: { property: 'borderBottomRightRadius', scale: 'radii' }, borderLeft: { property: 'borderLeft', scale: 'borders' }, borderX: { properties: ['borderLeft', 'borderRight'], scale: 'borders' }, borderY: { properties: ['borderTop', 'borderBottom'], scale: 'borders' } }; config$2.borderTopWidth = { property: 'borderTopWidth', scale: 'borderWidths' }; config$2.borderTopColor = { property: 'borderTopColor', scale: 'colors' }; config$2.borderTopStyle = { property: 'borderTopStyle', scale: 'borderStyles' }; config$2.borderTopLeftRadius = { property: 'borderTopLeftRadius', scale: 'radii' }; config$2.borderTopRightRadius = { property: 'borderTopRightRadius', scale: 'radii' }; config$2.borderBottomWidth = { property: 'borderBottomWidth', scale: 'borderWidths' }; config$2.borderBottomColor = { property: 'borderBottomColor', scale: 'colors' }; config$2.borderBottomStyle = { property: 'borderBottomStyle', scale: 'borderStyles' }; config$2.borderBottomLeftRadius = { property: 'borderBottomLeftRadius', scale: 'radii' }; config$2.borderBottomRightRadius = { property: 'borderBottomRightRadius', scale: 'radii' }; config$2.borderLeftWidth = { property: 'borderLeftWidth', scale: 'borderWidths' }; config$2.borderLeftColor = { property: 'borderLeftColor', scale: 'colors' }; config$2.borderLeftStyle = { property: 'borderLeftStyle', scale: 'borderStyles' }; config$2.borderRightWidth = { property: 'borderRightWidth', scale: 'borderWidths' }; config$2.borderRightColor = { property: 'borderRightColor', scale: 'colors' }; config$2.borderRightStyle = { property: 'borderRightStyle', scale: 'borderStyles' }; var border = system(config$2); var config$1 = { background: true, backgroundImage: true, backgroundSize: true, backgroundPosition: true, backgroundRepeat: true }; config$1.bgImage = config$1.backgroundImage; config$1.bgSize = config$1.backgroundSize; config$1.bgPosition = config$1.backgroundPosition; config$1.bgRepeat = config$1.backgroundRepeat; var background = system(config$1); var defaults$2 = { space: [0, 4, 8, 16, 32, 64, 128, 256, 512] }; var config = { position: true, zIndex: { property: 'zIndex', scale: 'zIndices' }, top: { property: 'top', scale: 'space', defaultScale: defaults$2.space }, right: { property: 'right', scale: 'space', defaultScale: defaults$2.space }, bottom: { property: 'bottom', scale: 'space', defaultScale: defaults$2.space }, left: { property: 'left', scale: 'space', defaultScale: defaults$2.space } }; var position = system(config); var defaults$1 = { space: [0, 4, 8, 16, 32, 64, 128, 256, 512] }; var isNumber$2 = function isNumber(n) { return typeof n === 'number' && !isNaN(n); }; var getMargin = function getMargin(n, scale) { if (!isNumber$2(n)) { return get$1(scale, n, n); } var isNegative = n < 0; var absolute = Math.abs(n); var value = get$1(scale, absolute, absolute); if (!isNumber$2(value)) { return isNegative ? '-' + value : value; } return value * (isNegative ? -1 : 1); }; var configs = {}; configs.margin = { margin: { property: 'margin', scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginTop: { property: 'marginTop', scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginRight: { property: 'marginRight', scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginBottom: { property: 'marginBottom', scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginLeft: { property: 'marginLeft', scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginX: { properties: ['marginLeft', 'marginRight'], scale: 'space', transform: getMargin, defaultScale: defaults$1.space }, marginY: { properties: ['marginTop', 'marginBottom'], scale: 'space', transform: getMargin, defaultScale: defaults$1.space } }; configs.margin.m = configs.margin.margin; configs.margin.mt = configs.margin.marginTop; configs.margin.mr = configs.margin.marginRight; configs.margin.mb = configs.margin.marginBottom; configs.margin.ml = configs.margin.marginLeft; configs.margin.mx = configs.margin.marginX; configs.margin.my = configs.margin.marginY; configs.padding = { padding: { property: 'padding', scale: 'space', defaultScale: defaults$1.space }, paddingTop: { property: 'paddingTop', scale: 'space', defaultScale: defaults$1.space }, paddingRight: { property: 'paddingRight', scale: 'space', defaultScale: defaults$1.space }, paddingBottom: { property: 'paddingBottom', scale: 'space', defaultScale: defaults$1.space }, paddingLeft: { property: 'paddingLeft', scale: 'space', defaultScale: defaults$1.space }, paddingX: { properties: ['paddingLeft', 'paddingRight'], scale: 'space', defaultScale: defaults$1.space }, paddingY: { properties: ['paddingTop', 'paddingBottom'], scale: 'space', defaultScale: defaults$1.space } }; configs.padding.p = configs.padding.padding; configs.padding.pt = configs.padding.paddingTop; configs.padding.pr = configs.padding.paddingRight; configs.padding.pb = configs.padding.paddingBottom; configs.padding.pl = configs.padding.paddingLeft; configs.padding.px = configs.padding.paddingX; configs.padding.py = configs.padding.paddingY; var margin = system(configs.margin); var padding = system(configs.padding); var space = compose(margin, padding); var shadow = system({ boxShadow: { property: 'boxShadow', scale: 'shadows' }, textShadow: { property: 'textShadow', scale: 'shadows' } }); function _extends$2() { _extends$2 = Object.assign || 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$2.apply(this, arguments); } // based on https://github.com/developit/dlv var get = function get(obj, key, def, p, undef) { key = key && key.split ? key.split('.') : [key]; for (p = 0; p < key.length; p++) { obj = obj ? obj[key[p]] : undef; } return obj === undef ? def : obj; }; var defaultBreakpoints = [40, 52, 64].map(function (n) { return n + 'em'; }); var defaultTheme$1 = { space: [0, 4, 8, 16, 32, 64, 128, 256, 512], fontSizes: [12, 14, 16, 20, 24, 32, 48, 64, 72] }; var aliases = { bg: 'backgroundColor', m: 'margin', mt: 'marginTop', mr: 'marginRight', mb: 'marginBottom', ml: 'marginLeft', mx: 'marginX', my: 'marginY', p: 'padding', pt: 'paddingTop', pr: 'paddingRight', pb: 'paddingBottom', pl: 'paddingLeft', px: 'paddingX', py: 'paddingY' }; var multiples = { marginX: ['marginLeft', 'marginRight'], marginY: ['marginTop', 'marginBottom'], paddingX: ['paddingLeft', 'paddingRight'], paddingY: ['paddingTop', 'paddingBottom'], size: ['width', 'height'] }; var scales = { color: 'colors', backgroundColor: 'colors', borderColor: 'colors', margin: 'space', marginTop: 'space', marginRight: 'space', marginBottom: 'space', marginLeft: 'space', marginX: 'space', marginY: 'space', padding: 'space', paddingTop: 'space', paddingRight: 'space', paddingBottom: 'space', paddingLeft: 'space', paddingX: 'space', paddingY: 'space', top: 'space', right: 'space', bottom: 'space', left: 'space', gridGap: 'space', gridColumnGap: 'space', gridRowGap: 'space', gap: 'space', columnGap: 'space', rowGap: 'space', fontFamily: 'fonts', fontSize: 'fontSizes', fontWeight: 'fontWeights', lineHeight: 'lineHeights', letterSpacing: 'letterSpacings', border: 'borders', borderTop: 'borders', borderRight: 'borders', borderBottom: 'borders', borderLeft: 'borders', borderWidth: 'borderWidths', borderStyle: 'borderStyles', borderRadius: 'radii', borderTopRightRadius: 'radii', borderTopLeftRadius: 'radii', borderBottomRightRadius: 'radii', borderBottomLeftRadius: 'radii', borderTopWidth: 'borderWidths', borderTopColor: 'colors', borderTopStyle: 'borderStyles', borderBottomWidth: 'borderWidths', borderBottomColor: 'colors', borderBottomStyle: 'borderStyles', borderLeftWidth: 'borderWidths', borderLeftColor: 'colors', borderLeftStyle: 'borderStyles', borderRightWidth: 'borderWidths', borderRightColor: 'colors', borderRightStyle: 'borderStyles', outlineColor: 'colors', boxShadow: 'shadows', textShadow: 'shadows', zIndex: 'zIndices', width: 'sizes', minWidth: 'sizes', maxWidth: 'sizes', height: 'sizes', minHeight: 'sizes', maxHeight: 'sizes', flexBasis: 'sizes', size: 'sizes', // svg fill: 'colors', stroke: 'colors' }; var positiveOrNegative = function positiveOrNegative(scale, value) { if (typeof value !== 'number' || value >= 0) { return get(scale, value, value); } var absolute = Math.abs(value); var n = get(scale, absolute, absolute); if (typeof n === 'string') return '-' + n; return n * -1; }; var transforms = ['margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'marginX', 'marginY', 'top', 'bottom', 'left', 'right'].reduce(function (acc, curr) { var _extends2; return _extends$2({}, acc, (_extends2 = {}, _extends2[curr] = positiveOrNegative, _extends2)); }, {}); var responsive = function responsive(styles) { return function (theme) { var next = {}; var breakpoints = get(theme, 'breakpoints', defaultBreakpoints); var mediaQueries = [null].concat(breakpoints.map(function (n) { return "@media screen and (min-width: " + n + ")"; })); for (var key in styles) { var value = typeof styles[key] === 'function' ? styles[key](theme) : styles[key]; if (value == null) continue; if (!Array.isArray(value)) { next[key] = value; continue; } for (var i = 0; i < value.slice(0, mediaQueries.length).length; i++) { var media = mediaQueries[i]; if (!media) { next[key] = value[i]; continue; } next[media] = next[media] || {}; if (value[i] == null) continue; next[media][key] = value[i]; } } return next; }; }; var css$3 = function css(args) { return function (props) { if (props === void 0) { props = {}; } var theme = _extends$2({}, defaultTheme$1, {}, props.theme || props); var result = {}; var obj = typeof args === 'function' ? args(theme) : args; var styles = responsive(obj)(theme); for (var key in styles) { var x = styles[key]; var val = typeof x === 'function' ? x(theme) : x; if (key === 'variant') { var variant = css(get(theme, val))(theme); result = _extends$2({}, result, {}, variant); continue; } if (val && typeof val === 'object') { result[key] = css(val)(theme); continue; } var prop = get(aliases, key, key); var scaleName = get(scales, prop); var scale = get(theme, scaleName, get(theme, prop, {})); var transform = get(transforms, prop, get); var value = transform(scale, val, val); if (multiples[prop]) { var dirs = multiples[prop]; for (var i = 0; i < dirs.length; i++) { result[dirs[i]] = value; } } else { result[prop] = value; } } return result; }; }; var css$4 = css$3; var variant = function variant(_ref) { var _config; var scale = _ref.scale, _ref$prop = _ref.prop, prop = _ref$prop === void 0 ? 'variant' : _ref$prop, _ref$variants = _ref.variants, variants = _ref$variants === void 0 ? {} : _ref$variants, key = _ref.key; var sx; if (Object.keys(variants).length) { sx = function sx(value, scale, props) { return css$4(get$1(scale, value, null))(props.theme); }; } else { sx = function sx(value, scale) { return get$1(scale, value, null); }; } sx.scale = scale || key; sx.defaults = variants; var config = (_config = {}, _config[prop] = sx, _config); var parser = createParser(config); return parser; }; variant({ key: 'buttons' }); variant({ key: 'textStyles', prop: 'textStyle' }); variant({ key: 'colorStyles', prop: 'colors' }); layout.width; layout.height; layout.minWidth; layout.minHeight; layout.maxWidth; layout.maxHeight; layout.size; layout.verticalAlign; layout.display; layout.overflow; layout.overflowX; layout.overflowY; color.opacity; typography.fontSize; typography.fontFamily; typography.fontWeight; typography.lineHeight; typography.textAlign; typography.fontStyle; typography.letterSpacing; flexbox.alignItems; flexbox.alignContent; flexbox.justifyItems; flexbox.justifyContent; flexbox.flexWrap; flexbox.flexDirection; flexbox.flex; flexbox.flexGrow; flexbox.flexShrink; flexbox.flexBasis; flexbox.justifySelf; flexbox.alignSelf; flexbox.order; grid.gridGap; grid.gridColumnGap; grid.gridRowGap; grid.gridColumn; grid.gridRow; grid.gridAutoFlow; grid.gridAutoColumns; grid.gridAutoRows; grid.gridTemplateColumns; grid.gridTemplateRows; grid.gridTemplateAreas; grid.gridArea; border.borderWidth; border.borderStyle; border.borderColor; border.borderTop; border.borderRight; border.borderBottom; border.borderLeft; border.borderRadius; background.backgroundImage; background.backgroundSize; background.backgroundPosition; background.backgroundRepeat; position.zIndex; position.top; position.right; position.bottom; position.left; // eslint-disable-next-line import/prefer-default-export /** * * Generates class name for given component. It is used by AdminJS core to append namespaced * classes. * * ### example * * ```javascript * import { cssClass } from '@adminjs/design-system' * * cssClass('Icon', 'my-regular-class-name') * // returns: 'adminjs_Icon my-regular-class-name' * ``` * * * @param {string | Array} className * @param {string} [regularClass] * @memberof module:@adminjs/design-system */ const cssClass = (className, regularClass) => { let names = []; if (className.join) { names = className; } else { names = [className]; } const parsed = names.map(name => `adminjs_${name}`); if (regularClass) { parsed.push(regularClass); } return parsed.join(' '); }; /** * @load ./badge-props.doc.md * @memberof Badge * @alias BadgeProps * @property {string} [...] Other props from {@link ColorProps}, {@link SpaceProps} * and {@link TypographyProps} */ const variantStyle$1 = (variantColor, props) => ({ bg: variantColor, borderColor: variantColor, color: props.outline ? variantColor : 'white' }); const colorVariant = props => variant({ variants: { primary: variantStyle$1('primary100', props), danger: variantStyle$1('error', props), success: variantStyle$1('success', props), info: variantStyle$1('info', props), secondary: variantStyle$1('accent', props), light: variantStyle$1('light', props), default: {} } }); const sizeVariants$4 = variant({ prop: 'size', variants: { sm: { py: 'xs' }, lg: { py: '11px', px: '14px' }, default: {} } }); /** * @load ./badge.doc.md * @see BadgeProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-badge--default StoryBook} * @component * @hideconstructor * @section design-system * @subcategory Atoms */ const Badge = styled__default["default"].span.withConfig({ displayName: "badge__Badge", componentId: "sc-1l2g67t-0" })(["border-radius:20px;border:1px solid ", ";color:", ";vertical-align:middle;font-family:", ";display:inline;white-space:nowrap;", ";", ";", ";", ";", ";", ""], ({ theme }) => theme.colors.grey40, ({ outline, theme }) => outline ? theme.colors.grey60 : theme.colors.white, ({ theme }) => theme.font, space, color, typography, props => colorVariant(props), sizeVariants$4, ({ outline }) => outline ? 'background: transparent;' : ''); Badge.defaultProps = { px: 'default', py: 'sm', fontSize: 'sm', bg: 'grey40', className: cssClass('Badge') }; const variants$5 = variant({ variants: { grey: { flexGrow: 1, bg: 'bg', py: 'xl', px: ['0', 'xl'], className: cssClass(['Box', 'Box_Grey']) }, white: { px: ['default', 'xxl'], py: 'xxl', bg: 'white', className: cssClass(['Box', 'Box_White']) }, card: { p: 'xxl', bg: 'white', className: cssClass(['Box', 'Box_Card']), boxShadow: 'card' } } }); /** * @load ./box.doc.md * @hideconstructor * @component * @subcategory Atoms * @section design-system * @see BoxProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-box--simple-white-gray-wrapper StoryBook} */ const Box = styled__default["default"].section.withConfig({ displayName: "box__Box", componentId: "sc-17sbq3p-0" })(["box-sizing:border-box;min-width:0;", " font-family:", ";line-height:", ";font-size:", ";font-weight:normal;", ";", ";", ";", ";", ";", ";", ";", ";", ";"], ({ flex }) => flex && typeof flex === 'boolean' ? 'display: flex;' : '', ({ theme }) => theme.font, ({ theme }) => theme.lineHeights.default, ({ theme }) => theme.fontSizes.default, ({ animate }) => animate ? 'transition: all 500ms;' : '', space, color, layout, flexbox, border, shadow, position, variants$5); Box.defaultProps = { className: cssClass('Box') }; var styles = styled.css([".react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{margin-left:-8px;position:absolute;}.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px;}.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{content:\"\";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae;}.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle{top:0;margin-top:-8px;}.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle::before{border-top:none;border-bottom-color:#f0f0f0;}.react-datepicker-popper[data-placement^=\"bottom\"] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#aeaeae;}.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{bottom:0;margin-bottom:-8px;}.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{border-bottom:none;border-top-color:#fff;}.react-datepicker-popper[data-placement^=\"top\"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{bottom:-1px;border-top-color:#aeaeae;}.react-datepicker-wrapper{display:inline-block;padding:0;border:0;}.react-datepicker{font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:0.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:0.3rem;display:inline-block;position:relative;}.react-datepicker--time-only .react-datepicker__triangle{left:35px;}.react-datepicker--time-only .react-datepicker__time-container{border-left:0;}.react-datepicker--time-only .react-datepicker__time{border-radius:0.3rem;}.react-datepicker--time-only .react-datepicker__time-box{border-radius:0.3rem;}.react-datepicker__triangle{position:absolute;left:50px;}.react-datepicker-popper{z-index:1;}.react-datepicker-popper[data-placement^=\"bottom\"]{margin-top:10px;}.react-datepicker-popper[data-placement=\"bottom-end\"] .react-datepicker__triangle,.react-datepicker-popper[data-placement=\"top-end\"] .react-datepicker__triangle{left:auto;right:50px;}.react-datepicker-popper[data-placement^=\"top\"]{margin-bottom:10px;}.react-datepicker-popper[data-placement^=\"right\"]{margin-left:8px;}.react-datepicker-popper[data-placement^=\"right\"] .react-datepicker__triangle{left:auto;right:42px;}.react-datepicker-popper[data-placement^=\"left\"]{margin-right:8px;}.react-datepicker-popper[data-placement^=\"left\"] .react-datepicker__triangle{left:42px;right:auto;}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:0.3rem;border-top-right-radius:0.3rem;padding-top:8px;position:relative;}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px;}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 2px;}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:bold;font-size:0.944rem;}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}.react-datepicker__navigation{background:none;line-height:1.7rem;text-align:center;cursor:pointer;position:absolute;top:10px;width:0;padding:0;border:0.45rem solid transparent;z-index:1;height:10px;width:10px;text-indent:-999em;overflow:hidden;}.react-datepicker__navigation--previous{left:10px;border-right-color:#ccc;}.react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3;}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default;}.react-datepicker__navigation--next{right:10px;border-left-color:#ccc;}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:80px;}.react-datepicker__navigation--next:hover{border-left-color:#b3b3b3;}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default;}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto;}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc;}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3;}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc;}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3;}.react-datepicker__month-container{float:left;}.react-datepicker__month{margin:0.4rem;text-align:center;}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px;}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left;}.react-datepicker__input-time-container .react-datepicker-time__caption{display:inline-block;}.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block;}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px;}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px;}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=\"time\"]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=\"time\"]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0;}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=\"time\"]{-moz-appearance:textfield;}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block;}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px;}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:0.3rem;position:absolute;right:-72px;top:0;}.react-datepicker__time-container .react-datepicker__time{position:relative;background:white;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + (1.7rem / 2));overflow-y:scroll;padding-right:0px;padding-left:0px;width:100%;box-sizing:content-box;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:white;font-weight:bold;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc;}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent;}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:0.166rem;}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer;}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:0.3rem;background-color:#f0f0f0;}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap;}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:0.166rem;}.react-datepicker__month--selected,.react-datepicker__month--in-selecting-range,.react-datepicker__month--in-range,.react-datepicker__quarter--selected,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--in-range{border-radius:0.3rem;background-color:#216ba5;color:#fff;}.react-datepicker__month--selected:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--in-range:hover,.react-datepicker__quarter--selected:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--in-range:hover{background-color:#1d5d90;}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none;}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{cursor:default;background-color:transparent;}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text{cursor:pointer;}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{border-radius:0.3rem;background-color:#f0f0f0;}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today{font-weight:bold;}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted{border-radius:0.3rem;background-color:#3dcc4a;color:#fff;}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover{background-color:#32be3f;}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1{color:magenta;}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2{color:green;}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range{border-radius:0.3rem;background-color:#216ba5;color:#fff;}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover{background-color:#1d5d90;}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected{border-radius:0.3rem;background-color:#2a87d0;color:#fff;}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover{background-color:#1d5d90;}.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range{background-color:rgba(33,107,165,0.5);}.react-datepicker__month--selecting-range .react-datepicker__day--in-range,.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range,.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range{background-color:#f0f0f0;color:#000;}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled{cursor:default;color:#ccc;}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover{background-color:transparent;}.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover{background-color:#216ba5;}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0;}.react-datepicker__input-container{position:relative;display:inline-block;width:100%;}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid transparent;border-radius:0.3rem;}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer;}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3;}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:0.45rem;}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:0.3rem;border:1px solid #aeaeae;}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer;}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll;}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto;}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:0.3rem;border-top-right-radius:0.3rem;}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom-left-radius:0.3rem;border-bottom-right-radius:0.3rem;}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc;}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3;}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3;}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px;}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0px 6px 0px 0px;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle;}.react-datepicker__close-icon::after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:\"00d7\";}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:bold;padding:5px 0;clear:left;}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,0.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647;}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem;}@media (max-width:400px),(max-height:550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem;}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem;}.react-datepicker__portal .react-datepicker__navigation{border:0.81rem solid transparent;}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc;}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3;}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default;}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc;}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3;}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default;}"]); function _extends$1() { _extends$1 = 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$1.apply(this, arguments); } function _assertThisInitialized$1(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } function _getPrototypeOf$1(o) { _getPrototypeOf$1 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$1(o); } function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; } function _isNativeReflectConstruct$1() { 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; } } function _construct(Parent, args, Class) { if (_isNativeReflectConstruct$1()) { _construct = Reflect.construct.bind(); } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); } function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf$1(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); } /** * Parse errors.md and turn it into a simple hash of code: message * @private */ var ERRORS = { "1": "Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }).\n\n", "2": "Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }).\n\n", "3": "Passed an incorrect argument to a color function, please pass a string representation of a color.\n\n", "4": "Couldn't generate valid rgb string from %s, it returned %s.\n\n", "5": "Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.\n\n", "6": "Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }).\n\n", "7": "Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }).\n\n", "8": "Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.\n\n", "9": "Please provide a number of steps to the modularScale helper.\n\n", "10": "Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n", "11": "Invalid value passed as base to modularScale, expected number or em string but got \"%s\"\n\n", "12": "Expected a string ending in \"px\" or a number passed as the first argument to %s(), got \"%s\" instead.\n\n", "13": "Expected a string ending in \"px\" or a number passed as the second argument to %s(), got \"%s\" instead.\n\n", "14": "Passed invalid pixel value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n", "15": "Passed invalid base value (\"%s\") to %s(), please pass a value like \"12px\" or 12.\n\n", "16": "You must provide a template to this method.\n\n", "17": "You passed an unsupported selector state to this method.\n\n", "18": "minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n", "19": "fromSize and toSize must be provided as stringified numbers with the same units.\n\n", "20": "expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n", "21": "expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n", "22": "expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n", "23": "fontFace expects a name of a font-family.\n\n", "24": "fontFace expects either the path to the font file(s) or a name of a local copy.\n\n", "25": "fontFace expects localFonts to be an array.\n\n", "26": "fontFace expects fileFormats to be an array.\n\n", "27": "radialGradient requries at least 2 color-stops to properly render.\n\n", "28": "Please supply a filename to retinaImage() as the first argument.\n\n", "29": "Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n", "30": "Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n", "31": "The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation\n\n", "32": "To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s')\n\n", "33": "The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation\n\n", "34": "borderRadius expects a radius value as a string or number as the second argument.\n\n", "35": "borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n", "36": "Property must be a string value.\n\n", "37": "Syntax Error at %s.\n\n", "38": "Formula contains a function that needs parentheses at %s.\n\n", "39": "Formula is missing closing parenthesis at %s.\n\n", "40": "Formula has too many closing parentheses at %s.\n\n", "41": "All values in a formula must have the same unit or be unitless.\n\n", "42": "Please provide a number of steps to the modularScale helper.\n\n", "43": "Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n", "44": "Invalid value passed as base to modularScale, expected number or em/rem string but got %s.\n\n", "45": "Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.\n\n", "46": "Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.\n\n", "47": "minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n", "48": "fromSize and toSize must be provided as stringified numbers with the same units.\n\n", "49": "Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n", "50": "Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.\n\n", "51": "Expects the first argument object to have the properties prop, fromSize, and toSize.\n\n", "52": "fontFace expects either the path to the font file(s) or a name of a local copy.\n\n", "53": "fontFace expects localFonts to be an array.\n\n", "54": "fontFace expects fileFormats to be an array.\n\n", "55": "fontFace expects a name of a font-family.\n\n", "56": "linearGradient requries at least 2 color-stops to properly render.\n\n", "57": "radialGradient requries at least 2 color-stops to properly render.\n\n", "58": "Please supply a filename to retinaImage() as the first argument.\n\n", "59": "Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n", "60": "Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n", "61": "Property must be a string value.\n\n", "62": "borderRadius expects a radius value as a string or number as the second argument.\n\n", "63": "borderRadius expects one of \"top\", \"bottom\", \"left\" or \"right\" as the first argument.\n\n", "64": "The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.\n\n", "65": "To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s').\n\n", "66": "The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.\n\n", "67": "You must provide a template to this method.\n\n", "68": "You passed an unsupported selector state to this method.\n\n", "69": "Expected a string ending in \"px\" or a number passed as the first argument to %s(), got %s instead.\n\n", "70": "Expected a string ending in \"px\" or a number passed as the second argument to %s(), got %s instead.\n\n", "71": "Passed invalid pixel value %s to %s(), please pass a value like \"12px\" or 12.\n\n", "72": "Passed invalid base value %s to %s(), please pass a value like \"12px\" or 12.\n\n", "73": "Please provide a valid CSS variable.\n\n", "74": "CSS variable not found.\n\n", "75": "fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.\n" }; /** * super basic version of sprintf * @private */ function format() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } var a = args[0]; var b = []; var c; for (c = 1; c < args.length; c += 1) { b.push(args[c]); } b.forEach(function (d) { a = a.replace(/%[a-z]/, d); }); return a; } /** * Create an error file out of errors.md for development and a simple web link to the full errors * in production mode. * @private */ var PolishedError = /*#__PURE__*/function (_Error) { _inheritsLoose(PolishedError, _Error); function PolishedError(code) { var _this; { for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { args[_key2 - 1] = arguments[_key2]; } _this = _Error.call(this, format.apply(void 0, [ERRORS[code]].concat(args))) || this; } return _assertThisInitialized$1(_this); } return PolishedError; }( /*#__PURE__*/_wrapNativeSuper(Error)); var cssRegex$1 = /^([+-]?(?:\d+|\d*\.\d+))([a-z]*|%)$/; /** * Returns a given CSS value and its unit as elements of an array. * * @example * // Styles as object usage * const styles = { * '--dimension': getValueAndUnit('100px')[0], * '--unit': getValueAndUnit('100px')[1], * } * * // styled-components usage * const div = styled.div` * --dimension: ${getValueAndUnit('100px')[0]}; * --unit: ${getValueAndUnit('100px')[1]}; * ` * * // CSS in JS Output * * element { * '--dimension': 100, * '--unit': 'px', * } */ function getValueAndUnit(value) { if (typeof value !== 'string') return [value, '']; var matchedValue = value.match(cssRegex$1); if (matchedValue) return [parseFloat(value), matchedValue[2]]; return [value, undefined]; } function colorToInt(color) { return Math.round(color * 255); } function convertToInt(red, green, blue) { return colorToInt(red) + "," + colorToInt(green) + "," + colorToInt(blue); } function hslToRgb(hue, saturation, lightness, convert) { if (convert === void 0) { convert = convertToInt; } if (saturation === 0) { // achromatic return convert(lightness, lightness, lightness); } // formulae from https://en.wikipedia.org/wiki/HSL_and_HSV var huePrime = (hue % 360 + 360) % 360 / 60; var chroma = (1 - Math.abs(2 * lightness - 1)) * saturation; var secondComponent = chroma * (1 - Math.abs(huePrime % 2 - 1)); var red = 0; var green = 0; var blue = 0; if (huePrime >= 0 && huePrime < 1) { red = chroma; green = secondComponent; } else if (huePrime >= 1 && huePrime < 2) { red = secondComponent; green = chroma; } else if (huePrime >= 2 && huePrime < 3) { green = chroma; blue = secondComponent; } else if (huePrime >= 3 && huePrime < 4) { green = secondComponent; blue = chroma; } else if (huePrime >= 4 && huePrime < 5) { red = secondComponent; blue = chroma; } else if (huePrime >= 5 && huePrime < 6) { red = chroma; blue = secondComponent; } var lightnessModification = lightness - chroma / 2; var finalRed = red + lightnessModification; var finalGreen = green + lightnessModification; var finalBlue = blue + lightnessModification; return convert(finalRed, finalGreen, finalBlue); } var namedColorMap = { aliceblue: 'f0f8ff', antiquewhite: 'faebd7', aqua: '00ffff', aquamarine: '7fffd4', azure: 'f0ffff', beige: 'f5f5dc', bisque: 'ffe4c4', black: '000', blanchedalmond: 'ffebcd', blue: '0000ff', blueviolet: '8a2be2', brown: 'a52a2a', burlywood: 'deb887', cadetblue: '5f9ea0', chartreuse: '7fff00', chocolate: 'd2691e', coral: 'ff7f50', cornflowerblue: '6495ed', cornsilk: 'fff8dc', crimson: 'dc143c', cyan: '00ffff', darkblue: '00008b', darkcyan: '008b8b', darkgoldenrod: 'b8860b', darkgray: 'a9a9a9', darkgreen: '006400', darkgrey: 'a9a9a9', darkkhaki: 'bdb76b', darkmagenta: '8b008b', darkolivegreen: '556b2f', darkorange: 'ff8c00', darkorchid: '9932cc', darkred: '8b0000', darksalmon: 'e9967a', darkseagreen: '8fbc8f', darkslateblue: '483d8b', darkslategray: '2f4f4f', darkslategrey: '2f4f4f', darkturquoise: '00ced1', darkviolet: '9400d3', deeppink: 'ff1493', deepskyblue: '00bfff', dimgray: '696969', dimgrey: '696969', dodgerblue: '1e90ff', firebrick: 'b22222', floralwhite: 'fffaf0', forestgreen: '228b22', fuchsia: 'ff00ff', gainsboro: 'dcdcdc', ghostwhite: 'f8f8ff', gold: 'ffd700', goldenrod: 'daa520', gray: '808080', green: '008000', greenyellow: 'adff2f', grey: '808080', honeydew: 'f0fff0', hotpink: 'ff69b4', indianred: 'cd5c5c', indigo: '4b0082', ivory: 'fffff0', khaki: 'f0e68c', lavender: 'e6e6fa', lavenderblush: 'fff0f5', lawngreen: '7cfc00', lemonchiffon: 'fffacd', lightblue: 'add8e6', lightcoral: 'f08080', lightcyan: 'e0ffff', lightgoldenrodyellow: 'fafad2', lightgray: 'd3d3d3', lightgreen: '90ee90', lightgrey: 'd3d3d3', lightpink: 'ffb6c1', lightsalmon: 'ffa07a', lightseagreen: '20b2aa', lightskyblue: '87cefa', lightslategray: '789', lightslategrey: '789', lightsteelblue: 'b0c4de', lightyellow: 'ffffe0', lime: '0f0', limegreen: '32cd32', linen: 'faf0e6', magenta: 'f0f', maroon: '800000', mediumaquamarine: '66cdaa', mediumblue: '0000cd', mediumorchid: 'ba55d3', mediumpurple: '9370db', mediumseagreen: '3cb371', mediumslateblue: '7b68ee', mediumspringgreen: '00fa9a', mediumturquoise: '48d1cc', mediumvioletred: 'c71585', midnightblue: '191970', mintcream: 'f5fffa', mistyrose: 'ffe4e1', moccasin: 'ffe4b5', navajowhite: 'ffdead', navy: '000080', oldlace: 'fdf5e6', olive: '808000', olivedrab: '6b8e23', orange: 'ffa500', orangered: 'ff4500', orchid: 'da70d6', palegoldenrod: 'eee8aa', palegreen: '98fb98', paleturquoise: 'afeeee', palevioletred: 'db7093', papayawhip: 'ffefd5', peachpuff: 'ffdab9', peru: 'cd853f', pink: 'ffc0cb', plum: 'dda0dd', powderblue: 'b0e0e6', purple: '800080', rebeccapurple: '639', red: 'f00', rosybrown: 'bc8f8f', royalblue: '4169e1', saddlebrown: '8b4513', salmon: 'fa8072', sandybrown: 'f4a460', seagreen: '2e8b57', seashell: 'fff5ee', sienna: 'a0522d', silver: 'c0c0c0', skyblue: '87ceeb', slateblue: '6a5acd', slategray: '708090', slategrey: '708090', snow: 'fffafa', springgreen: '00ff7f', steelblue: '4682b4', tan: 'd2b48c', teal: '008080', thistle: 'd8bfd8', tomato: 'ff6347', turquoise: '40e0d0', violet: 'ee82ee', wheat: 'f5deb3', white: 'fff', whitesmoke: 'f5f5f5', yellow: 'ff0', yellowgreen: '9acd32' }; /** * Checks if a string is a CSS named color and returns its equivalent hex value, otherwise returns the original color. * @private */ function nameToHex(color) { if (typeof color !== 'string') return color; var normalizedColorName = color.toLowerCase(); return namedColorMap[normalizedColorName] ? "#" + namedColorMap[normalizedColorName] : color; } var hexRegex = /^#[a-fA-F0-9]{6}$/; var hexRgbaRegex = /^#[a-fA-F0-9]{8}$/; var reducedHexRegex = /^#[a-fA-F0-9]{3}$/; var reducedRgbaHexRegex = /^#[a-fA-F0-9]{4}$/; var rgbRegex = /^rgb\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)$/i; var rgbaRegex = /^rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*([-+]?[0-9]*[.]?[0-9]+)\s*\)$/i; var hslRegex = /^hsl\(\s*(\d{0,3}[.]?[0-9]+)\s*,\s*(\d{1,3}[.]?[0-9]?)%\s*,\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i; var hslaRegex = /^hsla\(\s*(\d{0,3}[.]?[0-9]+)\s*,\s*(\d{1,3}[.]?[0-9]?)%\s*,\s*(\d{1,3}[.]?[0-9]?)%\s*,\s*([-+]?[0-9]*[.]?[0-9]+)\s*\)$/i; /** * Returns an RgbColor or RgbaColor object. This utility function is only useful * if want to extract a color component. With the color util `toColorString` you * can convert a RgbColor or RgbaColor object back to a string. * * @example * // Assigns `{ red: 255, green: 0, blue: 0 }` to color1 * const color1 = parseToRgb('rgb(255, 0, 0)'); * // Assigns `{ red: 92, green: 102, blue: 112, alpha: 0.75 }` to color2 * const color2 = parseToRgb('hsla(210, 10%, 40%, 0.75)'); */ function parseToRgb(color) { if (typeof color !== 'string') { throw new PolishedError(3); } var normalizedColor = nameToHex(color); if (normalizedColor.match(hexRegex)) { return { red: parseInt("" + normalizedColor[1] + normalizedColor[2], 16), green: parseInt("" + normalizedColor[3] + normalizedColor[4], 16), blue: parseInt("" + normalizedColor[5] + normalizedColor[6], 16) }; } if (normalizedColor.match(hexRgbaRegex)) { var alpha = parseFloat((parseInt("" + normalizedColor[7] + normalizedColor[8], 16) / 255).toFixed(2)); return { red: parseInt("" + normalizedColor[1] + normalizedColor[2], 16), green: parseInt("" + normalizedColor[3] + normalizedColor[4], 16), blue: parseInt("" + normalizedColor[5] + normalizedColor[6], 16), alpha: alpha }; } if (normalizedColor.match(reducedHexRegex)) { return { red: parseInt("" + normalizedColor[1] + normalizedColor[1], 16), green: parseInt("" + normalizedColor[2] + normalizedColor[2], 16), blue: parseInt("" + normalizedColor[3] + normalizedColor[3], 16) }; } if (normalizedColor.match(reducedRgbaHexRegex)) { var _alpha = parseFloat((parseInt("" + normalizedColor[4] + normalizedColor[4], 16) / 255).toFixed(2)); return { red: parseInt("" + normalizedColor[1] + normalizedColor[1], 16), green: parseInt("" + normalizedColor[2] + normalizedColor[2], 16), blue: parseInt("" + normalizedColor[3] + normalizedColor[3], 16), alpha: _alpha }; } var rgbMatched = rgbRegex.exec(normalizedColor); if (rgbMatched) { return { red: parseInt("" + rgbMatched[1], 10), green: parseInt("" + rgbMatched[2], 10), blue: parseInt("" + rgbMatched[3], 10) }; } var rgbaMatched = rgbaRegex.exec(normalizedColor.substring(0, 50)); if (rgbaMatched) { return { red: parseInt("" + rgbaMatched[1], 10), green: parseInt("" + rgbaMatched[2], 10), blue: parseInt("" + rgbaMatched[3], 10), alpha: parseFloat("" + rgbaMatched[4]) }; } var hslMatched = hslRegex.exec(normalizedColor); if (hslMatched) { var hue = parseInt("" + hslMatched[1], 10); var saturation = parseInt("" + hslMatched[2], 10) / 100; var lightness = parseInt("" + hslMatched[3], 10) / 100; var rgbColorString = "rgb(" + hslToRgb(hue, saturation, lightness) + ")"; var hslRgbMatched = rgbRegex.exec(rgbColorString); if (!hslRgbMatched) { throw new PolishedError(4, normalizedColor, rgbColorString); } return { red: parseInt("" + hslRgbMatched[1], 10), green: parseInt("" + hslRgbMatched[2], 10), blue: parseInt("" + hslRgbMatched[3], 10) }; } var hslaMatched = hslaRegex.exec(normalizedColor.substring(0, 50)); if (hslaMatched) { var _hue = parseInt("" + hslaMatched[1], 10); var _saturation = parseInt("" + hslaMatched[2], 10) / 100; var _lightness = parseInt("" + hslaMatched[3], 10) / 100; var _rgbColorString = "rgb(" + hslToRgb(_hue, _saturation, _lightness) + ")"; var _hslRgbMatched = rgbRegex.exec(_rgbColorString); if (!_hslRgbMatched) { throw new PolishedError(4, normalizedColor, _rgbColorString); } return { red: parseInt("" + _hslRgbMatched[1], 10), green: parseInt("" + _hslRgbMatched[2], 10), blue: parseInt("" + _hslRgbMatched[3], 10), alpha: parseFloat("" + hslaMatched[4]) }; } throw new PolishedError(5); } /** * Reduces hex values if possible e.g. #ff8866 to #f86 * @private */ var reduceHexValue = function reduceHexValue(value) { if (value.length === 7 && value[1] === value[2] && value[3] === value[4] && value[5] === value[6]) { return "#" + value[1] + value[3] + value[5]; } return value; }; function numberToHex(value) { var hex = value.toString(16); return hex.length === 1 ? "0" + hex : hex; } /** * Returns a string value for the color. The returned result is the smallest possible hex notation. * * @example * // Styles as object usage * const styles = { * background: rgb(255, 205, 100), * background: rgb({ red: 255, green: 205, blue: 100 }), * } * * // styled-components usage * const div = styled.div` * background: ${rgb(255, 205, 100)}; * background: ${rgb({ red: 255, green: 205, blue: 100 })}; * ` * * // CSS in JS Output * * element { * background: "#ffcd64"; * background: "#ffcd64"; * } */ function rgb(value, green, blue) { if (typeof value === 'number' && typeof green === 'number' && typeof blue === 'number') { return reduceHexValue("#" + numberToHex(value) + numberToHex(green) + numberToHex(blue)); } else if (typeof value === 'object' && green === undefined && blue === undefined) { return reduceHexValue("#" + numberToHex(value.red) + numberToHex(value.green) + numberToHex(value.blue)); } throw new PolishedError(6); } /** * Returns a string value for the color. The returned result is the smallest possible rgba or hex notation. * * Can also be used to fade a color by passing a hex value or named CSS color along with an alpha value. * * @example * // Styles as object usage * const styles = { * background: rgba(255, 205, 100, 0.7), * background: rgba({ red: 255, green: 205, blue: 100, alpha: 0.7 }), * background: rgba(255, 205, 100, 1), * background: rgba('#ffffff', 0.4), * background: rgba('black', 0.7), * } * * // styled-components usage * const div = styled.div` * background: ${rgba(255, 205, 100, 0.7)}; * background: ${rgba({ red: 255, green: 205, blue: 100, alpha: 0.7 })}; * background: ${rgba(255, 205, 100, 1)}; * background: ${rgba('#ffffff', 0.4)}; * background: ${rgba('black', 0.7)}; * ` * * // CSS in JS Output * * element { * background: "rgba(255,205,100,0.7)"; * background: "rgba(255,205,100,0.7)"; * background: "#ffcd64"; * background: "rgba(255,255,255,0.4)"; * background: "rgba(0,0,0,0.7)"; * } */ function rgba(firstValue, secondValue, thirdValue, fourthValue) { if (typeof firstValue === 'string' && typeof secondValue === 'number') { var rgbValue = parseToRgb(firstValue); return "rgba(" + rgbValue.red + "," + rgbValue.green + "," + rgbValue.blue + "," + secondValue + ")"; } else if (typeof firstValue === 'number' && typeof secondValue === 'number' && typeof thirdValue === 'number' && typeof fourthValue === 'number') { return fourthValue >= 1 ? rgb(firstValue, secondValue, thirdValue) : "rgba(" + firstValue + "," + secondValue + "," + thirdValue + "," + fourthValue + ")"; } else if (typeof firstValue === 'object' && secondValue === undefined && thirdValue === undefined && fourthValue === undefined) { return firstValue.alpha >= 1 ? rgb(firstValue.red, firstValue.green, firstValue.blue) : "rgba(" + firstValue.red + "," + firstValue.green + "," + firstValue.blue + "," + firstValue.alpha + ")"; } throw new PolishedError(7); } var focusShadowStyle = (theme => { const rgb = parseToRgb(theme.colors.accent); const color = `rgba(${rgb.red}, ${rgb.green}, ${rgb.blue}, .58)`; return `0 1px 4px 0 ${color};`; }); /** * adds leading 0 to the number when it is lower than 10 * @param {number} pad number - i.e 8 * @returns {sting} formatted number: i.e. "08" * @memberof module:@adminjs/design-system */ const pad = n => n < 10 ? `0${n.toString()}` : n.toString(); /** * Formats date to YYYY-MM-DD * * @param {Date} date * @return {string} * @memberof module:@adminjs/design-system */ const formatDate = date => `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}`; /** * Formats date to HH:mm * * @param {Date} date * @return {string} * @memberof module:@adminjs/design-system */ const formatTime = date => `${pad(date.getHours())}:${pad(date.getMinutes())}`; /** * Formats date to YYYY-MM-DD HH:mm * * @param {Date} date * @return {string} * @memberof module:@adminjs/design-system */ const formatDateTime = date => `${formatDate(date)} ${formatTime(date)}`; /** * Based on the property type formats date to either YYYY-MM-DD HH:mm or YYYY-MM-DD * * @param {Date} date * @param {PropertyType} propertyType * @return {string} * @memberof module:@adminjs/design-system */ const formatDateProperty = (date, propertyType) => { if (propertyType === 'date') { return formatDate(date); } return formatDateTime(date); }; /* Solution inspired by https://stackoverflow.com/a/20732091/2594227 answer */ const UNITS = ['B', 'KB', 'MB', 'GB', 'TB']; // eslint-disable-next-line import/prefer-default-export /** * Changes size in bytes to string. If unit is not provided - tries to find the best match. * * @param {number} size * @param {'B' | 'KB' | 'MB' | 'GB' | 'TB'} [unit] * @returns {string} * @memberof module:@adminjs/design-system */ const humanFileSize = (size, unit) => { let foundUnitIndex = null; if (unit) { foundUnitIndex = UNITS.findIndex(u => u === unit); } const unitIndex = foundUnitIndex || Math.min(Math.floor(Math.log(+size) / Math.log(1024)), UNITS.length); const calculatedSize = +size / 1024 ** unitIndex; const guessedUnit = ['B', 'kB', 'MB', 'GB', 'TB'][unitIndex]; return `${Math.round(calculatedSize)} ${guessedUnit}`; }; const selectStyles = theme => ({ control: (provided, state) => ({ ...provided, borderRadius: '0px', borderWidth: '1px', background: 'transparent', color: theme.colors.grey80, '&:hover': { borderColor: theme.colors.grey60 }, borderColor: state.isFocused ? theme.colors.primary100 : theme.colors.inputBorder, boxShadow: state.isFocused ? focusShadowStyle(theme) : 'none' }), menu: provided => ({ ...provided, borderRadius: '0px', borderColor: theme.colors.grey20, background: theme.colors.white }), input: provided => ({ ...provided, color: theme.colors.grey80, background: 'transparent', border: 'none' }), singleValue: provided => ({ ...provided, color: theme.colors.grey80 }), option: (provided, state) => { let color = state.isSelected ? theme.colors.grey80 : theme.colors.grey60; if (state.isFocused) { color = theme.colors.white; } return { ...provided, color, background: state.isFocused ? theme.colors.primary100 : 'transparent' }; } }); const filterStyles = theme => ({ control: (provided, state) => ({ ...provided, border: state.isFocused ? `1px solid ${theme.colors.primary100}` : `1px solid ${theme.colors.filterInputBorder}`, borderRadius: '0px', background: 'transparent', color: theme.colors.white, boxShadow: state.isFocused ? focusShadowStyle(theme) : 'none' }), input: () => ({ color: theme.colors.white, gridArea: '1/1/2/3', gridTemplateColumns: '0px min-content' }), singleValue: () => ({ color: theme.colors.white, gridArea: '1/1/2/3' }), option: (provided, state) => ({ ...provided, color: state.isSelected ? theme.colors.white : theme.colors.grey20, background: state.isFocused ? theme.colors.primary20 : 'transparent' }), menu: provided => ({ ...provided, borderRadius: '0px', borderColor: theme.colors.grey20, background: theme.colors.filterBg, zIndex: 5 }) }); const isObject = item => item && typeof item === 'object' && !Array.isArray(item); const mergeDeep$1 = (target, ...sources) => { if (!sources.length) return target; const source = sources.shift(); if (isObject(target) && isObject(source)) { // eslint-disable-next-line no-restricted-syntax for (const key in source) { if (isObject(source[key])) { if (!target[key]) Object.assign(target, { [key]: {} }); mergeDeep$1(target[key], source[key]); } else { Object.assign(target, { [key]: source[key] }); } } } return mergeDeep$1(target, ...sources); }; /** * Applies new styles to the default theme * * ### Example * * ```jsx * import { combineStyles } from '@adminjs/design-system` * * const myTheme = combineStyles({ * colors: { * primary100: '#000' * } * }) * ``` * * @param {Partial} newTheme * @memberof module:@adminjs/design-system * * @return {Theme} */ const combineStyles = newTheme => { const merged = mergeDeep$1(theme, newTheme); if (newTheme.font) { return { ...merged, font: newTheme.font }; } return merged; }; // eslint-disable-next-line import/prefer-default-export const generateId = key => { const accessKey = `UNIQUE_KEY_${key}`; window.AdminJS = window.AdminJS || {}; window.AdminJS[accessKey] = (Number.parseInt(window.AdminJS[accessKey], 10) || 0) + 1; return [accessKey, window.AdminJS[accessKey]].join('_'); }; /* eslint-disable arrow-body-style */ const PortalUtils = { appendElement: element => { window.document.body.appendChild(element); }, removeElement: id => { const domElement = window.document.getElementById(id); domElement?.remove(); }, createPortalForKey: function createPortalForKey(idKey, Component) { const Portal = props => { const [id] = React.useState(generateId(idKey)); const [portalElement] = React.useState(window.document.createElement('div')); React.useEffect(() => { portalElement.id = id; PortalUtils.appendElement(portalElement); return () => { PortalUtils.removeElement(id); }; }); return /*#__PURE__*/ReactDOM__default["default"].createPortal( /*#__PURE__*/React__default["default"].createElement(Component, props), portalElement); }; return Portal; } }; function themeGet(kind, value, offset) { return ({ theme }) => { const themeVal = value ? theme[kind][value] : theme[kind]; if (themeVal && offset) { let offsetValue; if (typeof offset === 'string') { [offsetValue] = getValueAndUnit(offset); } else { offsetValue = offset; } const [pxValue, unit] = getValueAndUnit(themeVal); return `${pxValue + offsetValue}${unit}`; } return themeVal; }; } /** * * Handy utility function which simplifies taking values from the {@link Theme}. * * ### Example * * ```javascript * import { Box, themeGet } from '@adminjs/design-system' * * const myComponent = styled(Box)` * padding: ${themeGet('space', 'xl')}; * font: ${themeGet('font')}; * margin-top: ${themeGet('space', 'xl', -2)}; * * margin-bottom: ${(props) => themeGet('space', props.disabled ? 'xl' : 'xxl')(props)}; * ` * * ``` * * @param {string} kind One of the keys in the {@link Theme} interface. For example: * `fontWeights` * @param {string} [value] Value for the key * @param {string | number} [offset] optional offset. When you want to take xxl + 2pixels * you can do this by passing +2 as the offset. * @return {ThemeFunction} function taking props as an argument * * @new in version 3.3 * @function themeGet * @memberof Theme */ /* cSpell:disable */ /** * Resets css styles which can be applied to element created by styled-component * * ### Example * * ```javascript * import { reset } from '@adminjs/design-system' * * const myContentComponent = styled` * ${reset}; * ` * ``` * @new in version 3.3 * @memberof module:@adminjs/design-system */ const reset$1 = styled.css(["html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}*[hidden]{display:none;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}"]); /* cSpell:enable */ /** * Resets css component which should be applied to the top of the html * * ### Example * * ```jsx * import { Reset } from '@adminjs/design-system' * * * * * { ... } * * * ``` * @new in version 3.3 * @memberof module:@adminjs/design-system */ const Reset = styled.createGlobalStyle(["", ""], reset$1); const variantShared = { color: 'white', 'border-color': 'transparent', [`& .${cssClass('Icon')} svg`]: { fill: 'white' }, '&:disabled': { bg: 'grey40' } }; const buttonVariants = variant({ variants: { primary: { bg: 'primary100', '&:hover': { bg: 'hoverBg' }, className: cssClass(['Button', 'Button_Primary']), ...variantShared }, danger: { bg: 'error', '&:hover': { bg: 'errorDark', borderColor: 'transparent' }, className: cssClass(['Button', 'Button_Danger']), ...variantShared }, success: { bg: 'success', '&:hover': { bg: 'successDark', borderColor: 'transparent' }, className: cssClass(['Button', 'Button_Success']), ...variantShared }, info: { bg: 'info', '&:hover': { bg: 'infoDark', borderColor: 'transparent' }, className: cssClass(['Button', 'Button_Info']), ...variantShared }, secondary: { bg: 'accent', className: cssClass(['Button', 'Button_Secondary']), ...variantShared }, light: { bg: 'white', className: cssClass(['Button', 'Button_Grey']), color: 'grey80', borderColor: 'grey40', [`& .${cssClass('Icon')} svg`]: { fill: 'grey80' }, '&:hover': { borderColor: 'grey60', bg: 'grey60' } }, text: { bg: 'transparent', borderColor: 'transparent', '&:disabled': { 'border-color': 'transparent' }, '&:hover': { background: 'transparent', color: 'hoverBg', borderColor: 'transparent', textDecoration: 'underline' }, '&:focus': { background: 'transparent', borderColor: 'transparent' }, '& svg': { fill: 'primary100' }, [`&:hover .${cssClass('Icon')} svg`]: { fill: 'hoverBg' }, className: cssClass(['Button', 'Button_Text']) } } }); const sizeVariants$3 = variant({ prop: 'size', variants: { sm: { fontSize: 'sm', py: 'xs', lineHeight: 'default', px: 'lg', [`& .${cssClass('Icon')}`]: { marginTop: '-1px', marginBottom: '-1px' } }, // md alias default md: {}, default: {}, lg: { py: 'default', px: 'x3', lineHeight: 'lg' }, icon: { py: 'default', px: 'default', lineHeight: 'sm', minWidth: '34px', height: '34px', [`& .${cssClass('Icon')} svg`]: { padding: 0, margin: 0 } } } }); const setPointer = props => { if (props.href || props.onClick) { return 'cursor: pointer'; } if (props.as === 'a' && !props.href && !props.onClick) { return 'cursor: auto'; } return ''; }; /** * Button CSS Styles which can be reused in another button-like component with styled-components * * Usage: * ``` * import { ButtonCSS } from '@adminjs/design-system' * import { Link } from 'react-router-dom' * * const MyStyledLink = styled(Link)` * ${ButtonCSS} * ` * ``` * @memberof Button * @alias ButtonCSS */ const ButtonCSS = styled.css(["-webkit-appearance:none;-moz-appearance:none;outline:0;display:inline-block;font-family:", ";line-height:", ";vertical-align:middle;border:1px solid ", ";color:", ";", ";text-decoration:none;padding:", " ", ";box-sizing:border-box;& > .", "{vertical-align:middle;}& > .", " svg{margin:0 ", " 0 0;}& .", " svg{fill:", ";}&:hover{color:", ";background:", ";border-color:", ";& .", " svg{fill:", ";}}&:focus{border-color:", ";", ";}&:disabled{color:", ";border-color:", ";background:", ";cursor:default;& .", " svg{fill:", ";}}", ";", ";", ";", ";", ";", ";"], ({ theme }) => theme.font, themeGet('lineHeights', 'lg'), themeGet('colors', 'primary100'), themeGet('colors', 'primary100'), props => setPointer(props), themeGet('space', 'sm'), themeGet('space', 'xxl'), cssClass('Icon'), cssClass('Icon'), themeGet('space', 'md'), cssClass('Icon'), themeGet('colors', 'primary100'), themeGet('colors', 'white'), themeGet('colors', 'hoverBg'), themeGet('colors', 'hoverBg'), cssClass('Icon'), themeGet('colors', 'white'), themeGet('colors', 'accent'), ({ theme }) => `box-shadow: ${focusShadowStyle(theme)}`, themeGet('colors', 'grey60'), themeGet('colors', 'grey80'), themeGet('colors', 'white'), cssClass('Icon'), themeGet('colors', 'grey60'), ({ rounded }) => rounded ? 'border-radius: 9999px' : '', color, space, typography, buttonVariants, sizeVariants$3); const addContent = styled.css(["&:before{content:\"", "\";}"], ({ label }) => label); /** * @load ./button.doc.md * @component * @see ButtonProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-button--default StoryBook} * @hideconstructor * @subcategory Atoms * @section design-system */ const Button = styled__default["default"].button.attrs(props => ({ className: cssClass('Button', props.className) })).withConfig({ displayName: "button__Button", componentId: "sc-1q77kr1-0" })(["font-size:", ";background-color:transparent;", ";", ";"], themeGet('fontSizes', 'default'), ButtonCSS, ({ label }) => label ? addContent : ''); 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); } const labelVariants = variant({ variants: { primary: { color: 'primary100', [`& .${cssClass('Icon')} svg`]: { fill: 'primary100' } }, danger: { color: 'error', [`& .${cssClass('Icon')} svg`]: { fill: 'error' } }, success: { color: 'success', [`& .${cssClass('Icon')} svg`]: { fill: 'success' } }, info: { color: 'info', [`& .${cssClass('Icon')} svg`]: { fill: 'info' } }, secondary: { color: 'accent', [`& .${cssClass('Icon')} svg`]: { fill: 'accent' } }, light: { color: 'grey60', mb: 'sm', fontWeight: 'light', [`& .${cssClass('Icon')} svg`]: { fill: 'grey60' } }, default: {} } }); /** * Prop Types of a Label component. * Apart from those explicitly specified below it extends all {@link ColorProps}, * {@link SpaceProps} and {@link TypographyProps} * * @memberof Label * @alias LabelProps * @property {string} [...] All props default to _label_ html component like `htmlFor`, * `id` etc. * @property {string} [...] Other props from {@link ColorProps}, {@link SpaceProps} * and {@link TypographyProps} */ const setDisabled = ({ disabled, theme }) => disabled ? styled.css(["color:", ";& .", " svg{fill:", ";}"], theme.colors.grey40, cssClass('Icon'), theme.colors.grey40) : styled.css([""]); /** * @classdesc * * * * Styled form of **label** element. * * ### Usage * * ```javascript * import { Label, LabelProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see LabelProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-label--default Storybook} * @hideconstructor * @example 2 Different versions * return ( * * * * * * * * * ) * @section design-system */ const Label = styled__default["default"].label.withConfig({ displayName: "label__Label", componentId: "sc-o90s7d-0" })(["display:", ";font-family:", ";font-size:", ";line-height:", ";margin-bottom:", ";&:before{content:\"", "\";color:", ";margin-right:", ";display:", ";}& > .", ":first-child{margin-right:", ";}", " ", ";", ";", ";", ";", ";"], ({ inline }) => inline ? 'inline-block' : 'block', themeGet('font'), props => themeGet('fontSizes', props.size === 'lg' ? 'md' : 'sm')(props), themeGet('lineHeights', 'default'), ({ theme, inline }) => inline ? '0' : theme.space.default, ({ required }) => required ? '*' : '', themeGet('colors', 'primary100'), themeGet('space', 'sm'), ({ required }) => required ? 'block-inline' : 'none', cssClass('Icon'), themeGet('space', 'md'), ({ uppercase }) => uppercase ? 'text-transform: uppercase;' : '', color, typography, space, labelVariants, props => setDisabled(props)); Label.defaultProps = { className: cssClass('Label') }; const Icon$1 = styled__default["default"].svg.withConfig({ displayName: "check-box__Icon", componentId: "sc-1n8j4do-0" })(["fill:none;stroke:white;stroke-width:2px;"]); const CheckboxRadioContainer = styled__default["default"].span.withConfig({ displayName: "check-box__CheckboxRadioContainer", componentId: "sc-1n8j4do-1" })(["position:relative;display:inline-block;vertical-align:middle;& + ", "{margin-left:", ";vertical-align:middle;margin-bottom:", ";}"], Label, ({ theme }) => theme.space.default, ({ theme }) => theme.space.sm); // Hide checkbox visually but remain accessible to screen readers. // Source: https://polished.js.org/docs/#hidevisually const HiddenCheckbox = styled__default["default"].input.attrs({ type: 'checkbox' }).withConfig({ displayName: "check-box__HiddenCheckbox", componentId: "sc-1n8j4do-2" })(["border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px;"]); const checkboxBackground = (theme, checked, disabled) => { if (checked) { return disabled ? theme.colors.grey40 : theme.colors.primary100; } return theme.colors.white; }; const StyledCheckbox = styled__default["default"].a.withConfig({ displayName: "check-box__StyledCheckbox", componentId: "sc-1n8j4do-3" })(["display:inline-block;width:16px;font-size:12px;cursor:pointer;border:1px solid ", ";height:16px;background:", ";transition:all 150ms;position:relative;", ":focus + &{", ";}", ":hover + &{border-color:", ";}", "{visibility:", ";}&:after{content:'';position:absolute;left:-5px;top:-5px;width:24px;height:24px;opacity:0;background:", ";}&:after:before{opacity:0.1;}"], ({ theme }) => theme.colors.grey40, ({ checked, theme, disabled }) => checkboxBackground(theme, checked, disabled), HiddenCheckbox, ({ theme }) => `box-shadow: ${focusShadowStyle(theme)};`, HiddenCheckbox, ({ theme }) => theme.colors.grey60, Icon$1, props => props.checked ? 'visible' : 'hidden', ({ theme }) => theme.colors.primary100); /** * @typedef {object} CheckBoxProps * @alias CheckBoxProps * @memberof module:@adminjs/design-system.CheckBox * @property {string} [...] All props default to _checkbox_ html input like `onChange`, * `checked` etc. */ /** * @classdesc * * * * HTML CheckBox * * ### Usage * * ```javascript * import { CheckBox, CheckBoxProps } from '@adminjs/design-system' * ``` * * @component * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-checkbox--default StoryBook} * @hideconstructor * @subcategory Atoms * @example * return ( * * * * * ) * @section design-system */ const CheckBox = props => { const { className, checked, onChange, disabled, ...restProps } = props; const [isChecked, setChecked] = React.useState(checked ?? false); const handleChange = event => { if (onChange) { onChange(event); } else { setChecked(!event.target.checked); } }; React.useEffect(() => { setChecked(checked ?? false); }, [checked]); return /*#__PURE__*/React__default["default"].createElement(CheckboxRadioContainer, { className: [className ?? '', 'adminjs_Checkbox'].join(' ') }, /*#__PURE__*/React__default["default"].createElement(HiddenCheckbox, _extends({ checked: isChecked, onChange: handleChange // eslint-disable-next-line @typescript-eslint/ban-types }, restProps, { disabled: disabled })), /*#__PURE__*/React__default["default"].createElement(StyledCheckbox, { checked: isChecked, disabled: disabled, onClick: event => handleChange && handleChange(event) }, /*#__PURE__*/React__default["default"].createElement(Icon$1, { viewBox: "0 0 24 24" }, /*#__PURE__*/React__default["default"].createElement("polyline", { points: "20 6 9 17 4 12" })))); }; /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ var __assign = function () { __assign = Object.assign || function __assign(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; function __rest(s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; } function __spreadArray(to, from, pack) { if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { if (ar || !(i in from)) { if (!ar) ar = Array.prototype.slice.call(from, 0, i); ar[i] = from[i]; } } return to.concat(ar || from); } /** * Escape regex char * * See: https://stackoverflow.com/questions/17885855/use-dynamic-variable-string-as-regex-pattern-in-javascript */ var escapeRegExp = function (stringToGoIntoTheRegex) { return stringToGoIntoTheRegex.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); }; var abbrMap = { k: 1000, m: 1000000, b: 1000000000 }; /** * Parse a value with abbreviation e.g 1k = 1000 */ var parseAbbrValue = function (value, decimalSeparator) { if (decimalSeparator === void 0) { decimalSeparator = '.'; } var reg = new RegExp("(\\d+(" + escapeRegExp(decimalSeparator) + "\\d*)?)([kmb])$", 'i'); var match = value.match(reg); if (match) { var digits = match[1], abbr = match[3]; var multiplier = abbrMap[abbr.toLowerCase()]; return Number(digits.replace(decimalSeparator, '.')) * multiplier; } return undefined; }; /** * Remove group separator from value eg. 1,000 > 1000 */ var removeSeparators = function (value, separator) { if (separator === void 0) { separator = ','; } var reg = new RegExp(escapeRegExp(separator), 'g'); return value.replace(reg, ''); }; /** * Remove invalid characters */ var removeInvalidChars = function (value, validChars) { var chars = escapeRegExp(validChars.join('')); var reg = new RegExp("[^\\d" + chars + "]", 'gi'); return value.replace(reg, ''); }; /** * Remove prefix, separators and extra decimals from value */ var cleanValue$1 = function (_a) { var value = _a.value, _b = _a.groupSeparator, groupSeparator = _b === void 0 ? ',' : _b, _c = _a.decimalSeparator, decimalSeparator = _c === void 0 ? '.' : _c, _d = _a.allowDecimals, allowDecimals = _d === void 0 ? true : _d, _e = _a.decimalsLimit, decimalsLimit = _e === void 0 ? 2 : _e, _f = _a.allowNegativeValue, allowNegativeValue = _f === void 0 ? true : _f, _g = _a.disableAbbreviations, disableAbbreviations = _g === void 0 ? false : _g, _h = _a.prefix, prefix = _h === void 0 ? '' : _h, _j = _a.transformRawValue, transformRawValue = _j === void 0 ? function (rawValue) { return rawValue; } : _j; var transformedValue = transformRawValue(value); if (transformedValue === '-') { return transformedValue; } var abbreviations = disableAbbreviations ? [] : ['k', 'm', 'b']; var reg = new RegExp("((^|\\D)-\\d)|(-" + escapeRegExp(prefix) + ")"); var isNegative = reg.test(transformedValue); // Is there a digit before the prefix? eg. 1$ var _k = RegExp("(\\d+)-?" + escapeRegExp(prefix)).exec(value) || [], prefixWithValue = _k[0], preValue = _k[1]; var withoutPrefix = prefix ? prefixWithValue ? transformedValue.replace(prefixWithValue, '').concat(preValue) : transformedValue.replace(prefix, '') : transformedValue; var withoutSeparators = removeSeparators(withoutPrefix, groupSeparator); var withoutInvalidChars = removeInvalidChars(withoutSeparators, __spreadArray([groupSeparator, decimalSeparator], abbreviations)); var valueOnly = withoutInvalidChars; if (!disableAbbreviations) { // disallow letter without number if (abbreviations.some(function (letter) { return letter === withoutInvalidChars.toLowerCase(); })) { return ''; } var parsed = parseAbbrValue(withoutInvalidChars, decimalSeparator); if (parsed) { valueOnly = String(parsed); } } var includeNegative = isNegative && allowNegativeValue ? '-' : ''; if (decimalSeparator && valueOnly.includes(decimalSeparator)) { var _l = withoutInvalidChars.split(decimalSeparator), int = _l[0], decimals = _l[1]; var trimmedDecimals = decimalsLimit && decimals ? decimals.slice(0, decimalsLimit) : decimals; var includeDecimals = allowDecimals ? "" + decimalSeparator + trimmedDecimals : ''; return "" + includeNegative + int + includeDecimals; } return "" + includeNegative + valueOnly; }; var fixedDecimalValue = function (value, decimalSeparator, fixedDecimalLength) { if (fixedDecimalLength && value.length > 1) { if (value.includes(decimalSeparator)) { var _a = value.split(decimalSeparator), int = _a[0], decimals = _a[1]; if (decimals.length > fixedDecimalLength) { return "" + int + decimalSeparator + decimals.slice(0, fixedDecimalLength); } } var reg = value.length > fixedDecimalLength ? new RegExp("(\\d+)(\\d{" + fixedDecimalLength + "})") : new RegExp("(\\d)(\\d+)"); var match = value.match(reg); if (match) { var int = match[1], decimals = match[2]; return "" + int + decimalSeparator + decimals; } } return value; }; var getSuffix = function (value, _a) { var _b = _a.groupSeparator, groupSeparator = _b === void 0 ? ',' : _b, _c = _a.decimalSeparator, decimalSeparator = _c === void 0 ? '.' : _c; var suffixReg = new RegExp("\\d([^" + escapeRegExp(groupSeparator) + escapeRegExp(decimalSeparator) + "0-9]+)"); var suffixMatch = value.match(suffixReg); return suffixMatch ? suffixMatch[1] : undefined; }; /** * Format value with decimal separator, group separator and prefix */ var formatValue = function (options) { var _value = options.value, decimalSeparator = options.decimalSeparator, intlConfig = options.intlConfig, decimalScale = options.decimalScale, _a = options.prefix, prefix = _a === void 0 ? '' : _a, _b = options.suffix, suffix = _b === void 0 ? '' : _b; if (_value === '' || _value === undefined) { return ''; } if (_value === '-') { return '-'; } var isNegative = new RegExp("^\\d?-" + (prefix ? escapeRegExp(prefix) + "?" : '') + "\\d").test(_value); var value = decimalSeparator !== '.' ? replaceDecimalSeparator(_value, decimalSeparator, isNegative) : _value; var numberFormatter = intlConfig ? new Intl.NumberFormat(intlConfig.locale, intlConfig.currency ? { style: 'currency', currency: intlConfig.currency, minimumFractionDigits: decimalScale || 0, maximumFractionDigits: 20 } : undefined) : new Intl.NumberFormat(undefined, { minimumFractionDigits: decimalScale || 0, maximumFractionDigits: 20 }); var parts = numberFormatter.formatToParts(Number(value)); var formatted = replaceParts(parts, options); // Does intl formatting add a suffix? var intlSuffix = getSuffix(formatted, __assign({}, options)); // Include decimal separator if user input ends with decimal separator var includeDecimalSeparator = _value.slice(-1) === decimalSeparator ? decimalSeparator : ''; var _c = value.match(RegExp('\\d+\\.(\\d+)')) || [], decimals = _c[1]; // Keep original decimal padding if no decimalScale if (decimalScale === undefined && decimals && decimalSeparator) { if (formatted.includes(decimalSeparator)) { formatted = formatted.replace(RegExp("(\\d+)(" + escapeRegExp(decimalSeparator) + ")(\\d+)", 'g'), "$1$2" + decimals); } else { if (intlSuffix && !suffix) { formatted = formatted.replace(intlSuffix, "" + decimalSeparator + decimals + intlSuffix); } else { formatted = "" + formatted + decimalSeparator + decimals; } } } if (suffix && includeDecimalSeparator) { return "" + formatted + includeDecimalSeparator + suffix; } if (intlSuffix && includeDecimalSeparator) { return formatted.replace(intlSuffix, "" + includeDecimalSeparator + intlSuffix); } if (intlSuffix && suffix) { return formatted.replace(intlSuffix, "" + includeDecimalSeparator + suffix); } return [formatted, includeDecimalSeparator, suffix].join(''); }; /** * Before converting to Number, decimal separator has to be . */ var replaceDecimalSeparator = function (value, decimalSeparator, isNegative) { var newValue = value; if (decimalSeparator && decimalSeparator !== '.') { newValue = newValue.replace(RegExp(escapeRegExp(decimalSeparator), 'g'), '.'); if (isNegative && decimalSeparator === '-') { newValue = "-" + newValue.slice(1); } } return newValue; }; var replaceParts = function (parts, _a) { var prefix = _a.prefix, groupSeparator = _a.groupSeparator, decimalSeparator = _a.decimalSeparator, decimalScale = _a.decimalScale, _b = _a.disableGroupSeparators, disableGroupSeparators = _b === void 0 ? false : _b; return parts.reduce(function (prev, _a, i) { var type = _a.type, value = _a.value; if (i === 0 && prefix) { if (type === 'minusSign') { return [value, prefix]; } if (type === 'currency') { return __spreadArray(__spreadArray([], prev), [prefix]); } return [prefix, value]; } if (type === 'currency') { return prefix ? prev : __spreadArray(__spreadArray([], prev), [value]); } if (type === 'group') { return !disableGroupSeparators ? __spreadArray(__spreadArray([], prev), [groupSeparator !== undefined ? groupSeparator : value]) : prev; } if (type === 'decimal') { if (decimalScale !== undefined && decimalScale === 0) { return prev; } return __spreadArray(__spreadArray([], prev), [decimalSeparator !== undefined ? decimalSeparator : value]); } if (type === 'fraction') { return __spreadArray(__spreadArray([], prev), [decimalScale !== undefined ? value.slice(0, decimalScale) : value]); } return __spreadArray(__spreadArray([], prev), [value]); }, ['']).join(''); }; var defaultConfig = { currencySymbol: '', groupSeparator: '', decimalSeparator: '', prefix: '', suffix: '' }; /** * Get locale config from input or default */ var getLocaleConfig = function (intlConfig) { var _a = intlConfig || {}, locale = _a.locale, currency = _a.currency; var numberFormatter = locale ? new Intl.NumberFormat(locale, currency ? { currency: currency, style: 'currency' } : undefined) : new Intl.NumberFormat(); return numberFormatter.formatToParts(1000.1).reduce(function (prev, curr, i) { if (curr.type === 'currency') { if (i === 0) { return __assign(__assign({}, prev), { currencySymbol: curr.value, prefix: curr.value }); } else { return __assign(__assign({}, prev), { currencySymbol: curr.value, suffix: curr.value }); } } if (curr.type === 'group') { return __assign(__assign({}, prev), { groupSeparator: curr.value }); } if (curr.type === 'decimal') { return __assign(__assign({}, prev), { decimalSeparator: curr.value }); } return prev; }, defaultConfig); }; var isNumber$1 = function (input) { return RegExp(/\d/, 'gi').test(input); }; var padTrimValue = function (value, decimalSeparator, decimalScale) { if (decimalSeparator === void 0) { decimalSeparator = '.'; } if (decimalScale === undefined || value === '' || value === undefined) { return value; } if (!value.match(/\d/g)) { return ''; } var _a = value.split(decimalSeparator), int = _a[0], decimals = _a[1]; if (decimalScale === 0) { return int; } var newValue = decimals || ''; if (newValue.length < decimalScale) { while (newValue.length < decimalScale) { newValue += '0'; } } else { newValue = newValue.slice(0, decimalScale); } return "" + int + decimalSeparator + newValue; }; /** * Based on the last key stroke and the cursor position, update the value * and reposition the cursor to the right place */ var repositionCursor = function (_a) { var selectionStart = _a.selectionStart, value = _a.value, lastKeyStroke = _a.lastKeyStroke, stateValue = _a.stateValue, groupSeparator = _a.groupSeparator; var cursorPosition = selectionStart; var modifiedValue = value; if (stateValue && cursorPosition) { var splitValue = value.split(''); // if cursor is to right of groupSeparator and backspace pressed, delete the character to the left of the separator and reposition the cursor if (lastKeyStroke === 'Backspace' && stateValue[cursorPosition] === groupSeparator) { splitValue.splice(cursorPosition - 1, 1); cursorPosition -= 1; } // if cursor is to left of groupSeparator and delete pressed, delete the character to the right of the separator and reposition the cursor if (lastKeyStroke === 'Delete' && stateValue[cursorPosition] === groupSeparator) { splitValue.splice(cursorPosition, 1); cursorPosition += 1; } modifiedValue = splitValue.join(''); return { modifiedValue: modifiedValue, cursorPosition: cursorPosition }; } return { modifiedValue: modifiedValue, cursorPosition: selectionStart }; }; var CurrencyInput$1 = /*#__PURE__*/React.forwardRef(function (_a, ref) { var _b = _a.allowDecimals, allowDecimals = _b === void 0 ? true : _b, _c = _a.allowNegativeValue, allowNegativeValue = _c === void 0 ? true : _c, id = _a.id, name = _a.name, className = _a.className, customInput = _a.customInput, decimalsLimit = _a.decimalsLimit, defaultValue = _a.defaultValue, _d = _a.disabled, disabled = _d === void 0 ? false : _d, userMaxLength = _a.maxLength, userValue = _a.value, onValueChange = _a.onValueChange, fixedDecimalLength = _a.fixedDecimalLength, placeholder = _a.placeholder, decimalScale = _a.decimalScale, prefix = _a.prefix, suffix = _a.suffix, intlConfig = _a.intlConfig, step = _a.step, min = _a.min, max = _a.max, _e = _a.disableGroupSeparators, disableGroupSeparators = _e === void 0 ? false : _e, _f = _a.disableAbbreviations, disableAbbreviations = _f === void 0 ? false : _f, _decimalSeparator = _a.decimalSeparator, _groupSeparator = _a.groupSeparator, onChange = _a.onChange, onFocus = _a.onFocus, onBlur = _a.onBlur, onKeyDown = _a.onKeyDown, onKeyUp = _a.onKeyUp, transformRawValue = _a.transformRawValue, props = __rest(_a, ["allowDecimals", "allowNegativeValue", "id", "name", "className", "customInput", "decimalsLimit", "defaultValue", "disabled", "maxLength", "value", "onValueChange", "fixedDecimalLength", "placeholder", "decimalScale", "prefix", "suffix", "intlConfig", "step", "min", "max", "disableGroupSeparators", "disableAbbreviations", "decimalSeparator", "groupSeparator", "onChange", "onFocus", "onBlur", "onKeyDown", "onKeyUp", "transformRawValue"]); if (_decimalSeparator && isNumber$1(_decimalSeparator)) { throw new Error('decimalSeparator cannot be a number'); } if (_groupSeparator && isNumber$1(_groupSeparator)) { throw new Error('groupSeparator cannot be a number'); } var localeConfig = React.useMemo(function () { return getLocaleConfig(intlConfig); }, [intlConfig]); var decimalSeparator = _decimalSeparator || localeConfig.decimalSeparator || ''; var groupSeparator = _groupSeparator || localeConfig.groupSeparator || ''; if (decimalSeparator && groupSeparator && decimalSeparator === groupSeparator && disableGroupSeparators === false) { throw new Error('decimalSeparator cannot be the same as groupSeparator'); } var formatValueOptions = { decimalSeparator: decimalSeparator, groupSeparator: groupSeparator, disableGroupSeparators: disableGroupSeparators, intlConfig: intlConfig, prefix: prefix || localeConfig.prefix, suffix: suffix }; var cleanValueOptions = { decimalSeparator: decimalSeparator, groupSeparator: groupSeparator, allowDecimals: allowDecimals, decimalsLimit: decimalsLimit || fixedDecimalLength || 2, allowNegativeValue: allowNegativeValue, disableAbbreviations: disableAbbreviations, prefix: prefix || localeConfig.prefix, transformRawValue: transformRawValue }; var formattedStateValue = defaultValue !== undefined && defaultValue !== null ? formatValue(__assign(__assign({}, formatValueOptions), { decimalScale: decimalScale, value: String(defaultValue) })) : userValue !== undefined && userValue !== null ? formatValue(__assign(__assign({}, formatValueOptions), { decimalScale: decimalScale, value: String(userValue) })) : ''; var _g = React.useState(formattedStateValue), stateValue = _g[0], setStateValue = _g[1]; var _h = React.useState(false), dirty = _h[0], setDirty = _h[1]; var _j = React.useState(0), cursor = _j[0], setCursor = _j[1]; var _k = React.useState(0), changeCount = _k[0], setChangeCount = _k[1]; var _l = React.useState(null), lastKeyStroke = _l[0], setLastKeyStroke = _l[1]; var inputRef = ref || React.useRef(null); /** * Process change in value */ var processChange = function (value, selectionStart) { setDirty(true); var _a = repositionCursor({ selectionStart: selectionStart, value: value, lastKeyStroke: lastKeyStroke, stateValue: stateValue, groupSeparator: groupSeparator }), modifiedValue = _a.modifiedValue, cursorPosition = _a.cursorPosition; var stringValue = cleanValue$1(__assign({ value: modifiedValue }, cleanValueOptions)); if (userMaxLength && stringValue.replace(/-/g, '').length > userMaxLength) { return; } if (stringValue === '' || stringValue === '-' || stringValue === decimalSeparator) { onValueChange && onValueChange(undefined, name, { float: null, formatted: '', value: '' }); setStateValue(stringValue); return; } var numberValue = parseFloat(stringValue.replace(decimalSeparator, '.')); var formattedValue = formatValue(__assign({ value: stringValue }, formatValueOptions)); if (cursorPosition !== undefined && cursorPosition !== null) { // Prevent cursor jumping var newCursor = cursorPosition + (formattedValue.length - value.length); newCursor = newCursor <= 0 ? prefix ? prefix.length : 0 : newCursor; setCursor(newCursor); setChangeCount(changeCount + 1); } setStateValue(formattedValue); if (onValueChange) { var values = { float: numberValue, formatted: formattedValue, value: stringValue }; onValueChange(stringValue, name, values); } }; /** * Handle change event */ var handleOnChange = function (event) { var _a = event.target, value = _a.value, selectionStart = _a.selectionStart; processChange(value, selectionStart); onChange && onChange(event); }; /** * Handle focus event */ var handleOnFocus = function (event) { onFocus && onFocus(event); return stateValue ? stateValue.length : 0; }; /** * Handle blur event * * Format value by padding/trimming decimals if required by */ var handleOnBlur = function (event) { var value = event.target.value; var valueOnly = cleanValue$1(__assign({ value: value }, cleanValueOptions)); if (valueOnly === '-' || !valueOnly) { setStateValue(''); onBlur && onBlur(event); return; } var fixedDecimals = fixedDecimalValue(valueOnly, decimalSeparator, fixedDecimalLength); var newValue = padTrimValue(fixedDecimals, decimalSeparator, decimalScale !== undefined ? decimalScale : fixedDecimalLength); var numberValue = parseFloat(newValue.replace(decimalSeparator, '.')); var formattedValue = formatValue(__assign(__assign({}, formatValueOptions), { value: newValue })); if (onValueChange) { onValueChange(newValue, name, { float: numberValue, formatted: formattedValue, value: newValue }); } setStateValue(formattedValue); onBlur && onBlur(event); }; /** * Handle key down event * * Increase or decrease value by step */ var handleOnKeyDown = function (event) { var key = event.key; setLastKeyStroke(key); if (step && (key === 'ArrowUp' || key === 'ArrowDown')) { event.preventDefault(); setCursor(stateValue.length); var currentValue = parseFloat(userValue !== undefined && userValue !== null ? String(userValue).replace(decimalSeparator, '.') : cleanValue$1(__assign({ value: stateValue }, cleanValueOptions))) || 0; var newValue = key === 'ArrowUp' ? currentValue + step : currentValue - step; if (min !== undefined && newValue < min) { return; } if (max !== undefined && newValue > max) { return; } var fixedLength = String(step).includes('.') ? Number(String(step).split('.')[1].length) : undefined; processChange(String(fixedLength ? newValue.toFixed(fixedLength) : newValue).replace('.', decimalSeparator)); } onKeyDown && onKeyDown(event); }; /** * Handle key up event * * Move cursor if there is a suffix to prevent user typing past suffix */ var handleOnKeyUp = function (event) { var key = event.key, selectionStart = event.currentTarget.selectionStart; if (key !== 'ArrowUp' && key !== 'ArrowDown' && stateValue !== '-') { var suffix_1 = getSuffix(stateValue, { groupSeparator: groupSeparator, decimalSeparator: decimalSeparator }); if (suffix_1 && selectionStart && selectionStart > stateValue.length - suffix_1.length) { /* istanbul ignore else */ if (inputRef && typeof inputRef === 'object' && inputRef.current) { var newCursor = stateValue.length - suffix_1.length; inputRef.current.setSelectionRange(newCursor, newCursor); } } } onKeyUp && onKeyUp(event); }; React.useEffect(function () { // prevent cursor jumping if editing value if (dirty && stateValue !== '-' && inputRef && typeof inputRef === 'object' && inputRef.current) { inputRef.current.setSelectionRange(cursor, cursor); } }, [stateValue, cursor, inputRef, dirty, changeCount]); /** * If user has only entered "-" or decimal separator, * keep the char to allow them to enter next value */ var getRenderValue = function () { if (userValue !== undefined && userValue !== null && stateValue !== '-' && (!decimalSeparator || stateValue !== decimalSeparator)) { return formatValue(__assign(__assign({}, formatValueOptions), { decimalScale: dirty ? undefined : decimalScale, value: String(userValue) })); } return stateValue; }; var inputProps = __assign({ type: 'text', inputMode: 'decimal', id: id, name: name, className: className, onChange: handleOnChange, onBlur: handleOnBlur, onFocus: handleOnFocus, onKeyDown: handleOnKeyDown, onKeyUp: handleOnKeyUp, placeholder: placeholder, disabled: disabled, value: getRenderValue(), ref: inputRef }, props); if (customInput) { var CustomInput = customInput; return /*#__PURE__*/React__default["default"].createElement(CustomInput, __assign({}, inputProps)); } return /*#__PURE__*/React__default["default"].createElement("input", __assign({}, inputProps)); }); CurrencyInput$1.displayName = 'CurrencyInput'; const borderlessCSS = styled.css(["padding:0;border-color:transparent;border-width:0 0 1px 0;color:", ";&:focus{box-shadow:none;border-bottom:1px solid ", ";}&:hover{cursor:pointer;}"], ({ theme }) => theme.colors.grey100, ({ theme }) => theme.colors.inputBorder); const sizeVariants$2 = variant({ prop: 'variant', variants: { default: { fontSize: 'default', lineHeight: 'lg' }, sm: { fontSize: 'sm', lineHeight: 'default' }, lg: { fontSize: 'lg', lineHeight: 'xl' }, xl: { fontSize: 'xl', lineHeight: 'xxl' }, xxl: { fontSize: 'h1', fontWeight: 'light', lineHeight: 'x4' } } }); /** * Input CSS Styles which can be reused in another input component with styled-components * * ### Usage: * * ``` * import { InputCSS } from '@adminjs/design-system' * * const MyStyledInput = styled.input` * ${InputCSS} * ` * ``` * @memberof Input * @alias InputCSS */ const InputCSS = styled.css(["box-sizing:border-box;color:", ";background:transparent;border:1px solid ", ";font-size:", ";line-height:", ";font-family:", ";outline:none;&:hover{border-color:", ";}&:focus{border-color:", ";", ";}&:disabled{color:", ";border-color:", ";}", ";", ";"], ({ theme }) => theme.colors.grey80, ({ theme }) => theme.colors.inputBorder, ({ theme }) => theme.fontSizes.default, ({ theme }) => theme.lineHeights.lg, ({ theme }) => theme.font, ({ theme }) => theme.colors.grey60, ({ theme }) => theme.colors.primary100, ({ theme }) => `box-shadow: ${focusShadowStyle(theme)}`, ({ theme }) => rgba(theme.colors.grey80, 0.5), ({ theme }) => rgba(theme.colors.inputBorder, 0.5), ({ borderless }) => borderless ? borderlessCSS : '', sizeVariants$2); /** * Prop Types of an Input component. * Apart from variant it extends all {@link LayoutProps} and {@link SpaceProps} * * @memberof Input * @alias InputProps * @property {string} [...] Other props from {@link LayoutProps}, {@link SpaceProps} */ /** * @classdesc * * * * Wrapped `input` html element. * * ### Usage * * ```javascript * import { Input, InputProps, InputCSS } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see InputProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-input--default Storybook} * @hideconstructor * @example * return ( * * * * * ) * @section design-system */ const Input$1 = styled__default["default"].input.withConfig({ displayName: "input__Input", componentId: "sc-y0u0lk-0" })(["", ";", ";", ";"], InputCSS, space, layout); Input$1.defaultProps = { px: 'default', py: 'sm', className: cssClass('Input') }; /** * Prop Types of a CurrencyInput component. * CurrencyInput is based on `react-currency-input-field` @see {@link https://github.com/cchanxzy/react-currency-input-field React Currency Input Field Component} * It extends all {@link SpaceProps}, {@link TypographyProps} and {@link LayoutProps} and {@link https://github.com/cchanxzy/react-currency-input-field#props React Currency Input Field Component Props} * @memberof CurrencyInput * @alias CurrencyInputProps * @property {string} [...] All props default to _currencyinput_ html component like `onChange`, * `value` etc. * @property {string} [...] Props from {@link SpaceProps}, {@link TypographyProps} * and {@link LayoutProps} + they extend {@link InputProps} */ /** * @classdesc * * * * Wrapped `currencyinput` html element. * * ### Usage * * ```ts * import { CurrencyInput, CurrencyInputProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-currencyinput--default Storybook} * @see CurrencyInputProps * @hideconstructor * @example * return ( * * * ; * * ) * @section design-system */ const CurrencyInput = styled__default["default"](CurrencyInput$1).withConfig({ displayName: "currency-input__CurrencyInput", componentId: "sc-1245atl-0" })(["", " ", ";", ";", ";width:100%;"], InputCSS, space, layout, typography); CurrencyInput.defaultProps = { px: 'default', py: 'sm', className: cssClass('CurrencyInput') }; const spinCss = styled.css(["@keyframes iconSpin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}animation-name:iconSpin;animation-duration:1000ms;animation-iteration-count:infinite;animation-timing-function:linear;"]); const Wrapper$1 = styled__default["default"].span.withConfig({ displayName: "icon__Wrapper", componentId: "sc-1q2pe0x-0" })(["vertical-align:middle;display:inline-block;line-height:", ";font-size:", ";& > svg{", ";", ";}", ";", ";", ";"], ({ theme }) => theme.lineHeights.sm, ({ theme }) => theme.fontSizes.sm, ({ theme, color: colorProp }) => colorProp ? `fill: ${theme.colors[colorProp]}` : '', ({ spin }) => spin ? spinCss : '', ({ rounded }) => rounded ? 'border-radius: 9999px;' : '', space, color); /** * @classdesc * * * * Component wrapping [@carbon/icons-react](https://www.npmjs.com/package/@carbon/icons-react). * List of all icons can be found here: https://www.carbondesignsystem.com/guidelines/icons/library/ * but keys are not always 1 to 1 in a relation to the `icons-react` library. * If you have problem verifying the key of given icon - you can always open the * Chrome Terminal (with AdminJS open) and write there: * * ``` * Object.keys(CarbonIcons) * ``` * * to see list of all possible icon keys. * * ### Usage * * ```javascript * import { Icon, IconProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see IconProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-icon--default Storybook} * @hideconstructor * @example Icons inside other elements * return ( * * * * * ) * @example Different sizes * const sizes = [16, 20, 24, 32] * return ( * * {sizes.map(size => ( * * ))} * * ) * * @example Big rounded icon with background * return ( * * * * ) * @section design-system */ const Icon = props => { const { icon, size, color: givenColor, ...other } = props; const iconSize = size || 16; if (!icon) return null; const CarbonIcon = CarbonIcons[icon] || ErrorOutline; if (CarbonIcon) { return /*#__PURE__*/React__default["default"].createElement(Wrapper$1, _extends({ className: cssClass('Icon'), color: givenColor || 'grey100' }, other), /*#__PURE__*/React__default["default"].createElement(CarbonIcon, { size: iconSize })); } return null; }; const Moon = props => { const { width, height } = props; const svgWidth = width || '260px'; const svgHeight = height || '260px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 260 260", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("circle", { id: "path-1", cx: "106", cy: "106", r: "106" }), /*#__PURE__*/React__default["default"].createElement("filter", { x: "-17.0%", y: "-17.0%", width: "134.0%", height: "134.0%", filterUnits: "objectBoundingBox", id: "filter-2" }, /*#__PURE__*/React__default["default"].createElement("feOffset", { dx: "0", dy: "0", in: "SourceAlpha", result: "shadowOffsetOuter1" }), /*#__PURE__*/React__default["default"].createElement("feGaussianBlur", { stdDeviation: "12", in: "shadowOffsetOuter1", result: "shadowBlurOuter1" }), /*#__PURE__*/React__default["default"].createElement("feColorMatrix", { values: "0 0 0 0 0.958112299 0 0 0 0 0.910577834 0 0 0 0 0.855913579 0 0 0 1 0", type: "matrix", in: "shadowBlurOuter1" })), /*#__PURE__*/React__default["default"].createElement("circle", { id: "path-3", cx: "106", cy: "106", r: "106" })), /*#__PURE__*/React__default["default"].createElement("g", { id: "Main-Templates", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-12", transform: "translate(24.000000, 24.000000)" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Oval" }, /*#__PURE__*/React__default["default"].createElement("use", { fill: "black", fillOpacity: "1", filter: "url(#filter-2)", href: "#path-1" }), /*#__PURE__*/React__default["default"].createElement("use", { fill: "#F4E8DB", fillRule: "evenodd", href: "#path-1" })), /*#__PURE__*/React__default["default"].createElement("g", { id: "Path-7" }, /*#__PURE__*/React__default["default"].createElement("mask", { id: "mask-4", fill: "white" }, /*#__PURE__*/React__default["default"].createElement("use", { href: "#path-3" })), /*#__PURE__*/React__default["default"].createElement("use", { id: "Mask", fill: "#F4E8DB", href: "#path-3" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M39.8069626,3.76747066 C45.3021184,115.593145 97.2894125,176.043124 195.768845,185.117407 C294.248278,194.191689 253.575457,215.872553 73.750384,250.16 L-33.92,160.780637 L-25.2907546,24.0909209 L26.5457822,-4.24 L39.8069626,3.76747066 Z", fill: "#C8BBB2", mask: "url(#mask-4)" })), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval", fill: "#C8BBB2", cx: "80.5", cy: "37.5", r: "22.5" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-3", fill: "#C8BBB2", cx: "158", cy: "66", r: "17" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-4", stroke: "#F4E8DB", strokeWidth: "3", fill: "#C8BBB2", cx: "124", cy: "166", r: "17" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-5", stroke: "#F4E8DB", strokeWidth: "1.6875", fill: "#C8BBB2", cx: "58.5", cy: "92.5", r: "9.5" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy", fill: "#C8BBB2", cx: "157.5", cy: "124.5", r: "8.5" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-6", fill: "#C8BBB2", cx: "190", cy: "96", r: "3" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-8", fill: "#C8BBB2", cx: "81", cy: "113", r: "3" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-7", fill: "#C8BBB2", cx: "126", cy: "29", r: "3" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-2", fill: "#C8BBB2", cx: "97.5", cy: "101.5", r: "8.5" })))); }; const Rocket = () => /*#__PURE__*/React__default["default"].createElement("svg", { width: "249px", height: "179px", viewBox: "0 0 249 179", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-1" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFAB86", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFB44E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-2" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFAB86", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFB44E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-3" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFF2B1", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFEA7E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-4" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFF2B1", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFCD7E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-5" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFAB86", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFB44E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-6" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFF2B1", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFEA7E", offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-7" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFF2B1", offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: "#FFCD7E", offset: "100%" }))), /*#__PURE__*/React__default["default"].createElement("g", { id: "Main-Templates", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Rocket-with-motion", transform: "translate(140.500000, 74.000000) rotate(17.000000) translate(-140.500000, -74.000000) translate(19.000000, -40.000000)" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Rocket", transform: "translate(137.662345, 112.855740) rotate(7.000000) translate(-137.662345, -112.855740) translate(44.162345, 11.355740)" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-15" }, /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-29", fill: "#F4E8DB", cx: "116.379625", cy: "57.5932962", rx: "2.01348833", ry: "2.01375162" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-31", fill: "#F4E8DB", cx: "34.2293016", cy: "155.058874", rx: "2.01348833", ry: "2.01375162" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-19", fill: "#F4E8DB", cx: "160.273671", cy: "140.157112", rx: "4.02697665", ry: "4.02750323" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-23", fill: "#F4E8DB", cx: "74.0963704", cy: "51.5520414", rx: "4.02697665", ry: "4.02750323" }), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-13", transform: "translate(7.404023, 136.898722)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M29.2933675,62.4051811 C35.8296538,62.4051811 41.1280139,56.981389 41.127586,50.2898688 C41.1271581,43.5983485 33.1286817,0.598536152 29.2894151,0.598536152 C25.4501486,0.598536152 17.4571716,43.5968348 17.4575995,50.2883551 C17.4580274,56.9798753 22.7570812,62.4051811 29.2933675,62.4051811 Z", id: "Oval-Copy-38", fill: "url(#linearGradient-2)", transform: "translate(29.292593, 31.501859) rotate(-141.000000) translate(-29.292593, -31.501859) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M31.7199672,52.9593428 C36.0774914,52.9593428 39.6097439,49.5375303 39.6094739,45.3158883 C39.609204,41.0942463 36.2259176,5.20641018 31.9585807,5.20641018 C27.6912437,5.20641018 23.829213,41.0932372 23.8294829,45.3148792 C23.8297529,49.5365212 27.362443,52.9593428 31.7199672,52.9593428 Z", id: "Oval-Copy-39", fill: "url(#linearGradient-3)", transform: "translate(31.719478, 29.082876) rotate(-141.000000) translate(-31.719478, -29.082876) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M34.9968773,41.9727682 C38.5555221,41.9727682 41.440206,39.3509657 41.4399991,36.1163003 C41.4397923,32.8816348 39.1523789,8.14353111 35.5937342,8.14353111 C32.0350894,8.14353111 28.5527996,32.8808107 28.5530065,36.1154762 C28.5532133,39.3501416 31.4382326,41.9727682 34.9968773,41.9727682 Z", id: "Oval-Copy-39", fill: "url(#linearGradient-4)", transform: "translate(34.996503, 25.058150) rotate(-141.000000) translate(-34.996503, -25.058150) " })), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-11", transform: "translate(102.175136, 89.252917) rotate(40.000000) translate(-102.175136, -89.252917) translate(59.675136, 8.752917)", fillRule: "nonzero", stroke: "#C9D1F6", strokeWidth: "1.97424893" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M67.7777024,49.7502517 L70.9362925,43.3067657 C71.4162191,42.3277211 72.598949,41.9231061 73.5779935,42.4030327 C73.9711105,42.5957382 74.289021,42.9136487 74.4817265,43.3067657 L77.6403166,49.7502517 C78.8999695,52.3199286 79.5548698,55.1437885 79.5548698,58.0055999 L79.5548698,151.358137 C79.5548698,151.903311 79.1129192,152.345261 78.5677454,152.345261 L66.8502737,152.345261 C66.3050999,152.345261 65.8631492,151.903311 65.8631492,151.358137 L65.8631492,58.0055999 C65.8631492,55.1437885 66.5180495,52.3199286 67.7777024,49.7502517 Z", id: "Rectangle", fill: "#FFFFFF", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.91445895,50.2479489 L11.0730491,43.8044629 C11.5529757,42.8254183 12.7357055,42.4208033 13.7147501,42.9007299 C14.107867,43.0934354 14.4257776,43.4113459 14.6184831,43.8044629 L17.7770732,50.2479489 C19.0367261,52.8176258 19.6916264,55.6414857 19.6916264,58.5032971 L19.6916264,151.855834 C19.6916264,152.401008 19.2496757,152.842959 18.7045019,152.842959 L6.98703021,152.842959 C6.44185643,152.842959 5.99990575,152.401008 5.99990575,151.855834 L5.99990575,58.5032971 C5.99990575,55.6414857 6.65480605,52.8176258 7.91445895,50.2479489 Z", id: "Rectangle-Copy-11", fill: "#FFFFFF", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M33.0906011,11.354303 L39.4002623,2.2723825 C40.6444904,0.481481126 43.104949,0.0383148853 44.8958504,1.282543 C45.2821175,1.55090196 45.6173309,1.88611536 45.8856899,2.2723825 L52.195351,11.354303 C57.249981,18.6297726 59.9589757,27.2769281 59.9589757,36.1359202 L59.9589757,116.427862 L59.9589757,116.427862 L25.3269765,116.427862 L25.3269765,36.1359202 C25.3269765,27.2769281 28.0359712,18.6297726 33.0906011,11.354303 Z", id: "Rectangle", fill: "#F0F1F9", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M51.0709343,145.945436 L52.4616111,78.430609 L57.2782797,97.1345431 C59.5841699,106.088702 64.1795587,114.289067 70.6130652,120.930158 L75.1292812,125.592095 C78.7263886,129.305267 81.1674641,133.983364 82.155819,139.057808 L83.2511862,144.681678 C83.2493456,145.075537 83.1550246,145.406318 82.9636792,145.638528 C82.7984747,145.839014 82.5607084,145.945436 82.2993925,145.945436 L51.0709343,145.945436 Z", id: "Path-3", fill: "#F0F1F9" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M1.47150229,145.425806 L2.86217912,77.9109797 L7.67884773,96.6149137 C9.98473789,105.569073 14.5801267,113.769438 21.0136332,120.410529 L25.5298492,125.072466 C29.1269566,128.785638 31.5680321,133.463734 32.556387,138.538179 L33.6517543,144.162049 C33.6499136,144.555907 33.5555926,144.886689 33.3642472,145.118899 C33.1990427,145.319385 32.9612764,145.425806 32.6999605,145.425806 L1.47150229,145.425806 Z", id: "Path-3-Copy", fill: "#F0F1F9", transform: "translate(17.779835, 108.554400) scale(-1, 1) translate(-17.779835, -108.554400) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M34.132116,58.9706471 L38.6749518,50.4371325 C39.9558754,48.0309746 42.9448456,47.1187919 45.3510036,48.3997155 C46.2176737,48.8610893 46.9270468,49.5704624 47.3884206,50.4371325 L51.9312564,58.9706471 C53.7557124,62.3978065 54.7099185,66.2208379 54.7099185,70.1033707 L54.7099185,151.938396 L54.7099185,151.938396 L31.3534539,151.938396 L31.3534539,70.1033707 C31.3534539,66.2208379 32.3076599,62.3978065 34.132116,58.9706471 Z", id: "Rectangle-2", fill: "#FFFFFF", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M59.4280489,155.429317 L25.9649033,155.429317 L25.9649033,146.347684 C25.9649033,143.83986 26.9813998,141.569451 28.6248522,139.925999 C30.2683047,138.282547 32.5387131,137.26605 35.0465369,137.26605 L50.3464153,137.26605 C52.8542392,137.26605 55.1246476,138.282547 56.7681,139.925999 C58.4115525,141.569451 59.4280489,143.83986 59.4280489,146.347684 L59.4280489,155.429317 Z", id: "Rectangle", fill: "#FFFFFF" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M42.9716921,126.282389 L42.9716921,160.264511", id: "Line-2", fill: "#F0F1F9", strokeLinecap: "round" })), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-14", transform: "translate(45.907534, 162.711131)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7186,38.6625878 C21.7220753,38.6625878 24.9673209,35.3405151 24.9670588,31.241959 C24.9667967,27.1434028 19.3527647,0.806017733 17.7161791,0.806017733 C16.0795936,0.806017733 10.46893,27.1424757 10.469192,31.2410318 C10.4694541,35.339588 13.7151246,38.6625878 17.7186,38.6625878 Z", id: "Oval", fill: "url(#linearGradient-5)", transform: "translate(17.718125, 19.734303) rotate(-141.000000) translate(-17.718125, -19.734303) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.8990176,30.9168623 C22.5680012,30.9168623 24.7315058,28.8210022 24.7313405,26.2352465 C24.7311751,23.6494907 23.015537,3.87414324 20.3465534,3.87414324 C17.6775699,3.87414324 15.0659306,23.6488726 15.066096,26.2346284 C15.0662613,28.8203841 17.2300341,30.9168623 19.8990176,30.9168623 Z", id: "Oval-Copy-35", fill: "url(#linearGradient-6)", transform: "translate(19.898718, 17.395503) rotate(-141.000000) translate(-19.898718, -17.395503) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.5173735,25.4314166 C23.5191112,25.4314166 25.1417404,23.8708065 25.1416173,21.9454104 C25.1414942,20.0200143 23.8547724,5.29496477 21.8530347,5.29496477 C19.851297,5.29496477 17.8925608,20.0195507 17.8926839,21.9449468 C17.8928071,23.8703429 19.5156359,25.4314166 21.5173735,25.4314166 Z", id: "Oval-Copy-40", fill: "url(#linearGradient-7)", transform: "translate(21.517151, 15.363191) rotate(-141.000000) translate(-21.517151, -15.363191) " })), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-14-Copy", transform: "translate(0.000000, 124.047100)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M17.7186,38.6625878 C21.7220753,38.6625878 24.9673209,35.3405151 24.9670588,31.241959 C24.9667967,27.1434028 19.3527647,0.806017733 17.7161791,0.806017733 C16.0795936,0.806017733 10.46893,27.1424757 10.469192,31.2410318 C10.4694541,35.339588 13.7151246,38.6625878 17.7186,38.6625878 Z", id: "Oval", fill: "url(#linearGradient-5)", transform: "translate(17.718125, 19.734303) rotate(-141.000000) translate(-17.718125, -19.734303) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M19.8990176,30.9168623 C22.5680012,30.9168623 24.7315058,28.8210022 24.7313405,26.2352465 C24.7311751,23.6494907 23.015537,3.87414324 20.3465534,3.87414324 C17.6775699,3.87414324 15.0659306,23.6488726 15.066096,26.2346284 C15.0662613,28.8203841 17.2300341,30.9168623 19.8990176,30.9168623 Z", id: "Oval-Copy-35", fill: "url(#linearGradient-6)", transform: "translate(19.898718, 17.395503) rotate(-141.000000) translate(-19.898718, -17.395503) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M21.5173735,25.4314166 C23.5191112,25.4314166 25.1417404,23.8708065 25.1416173,21.9454104 C25.1414942,20.0200143 23.8547724,5.29496477 21.8530347,5.29496477 C19.851297,5.29496477 17.8925608,20.0195507 17.8926839,21.9449468 C17.8928071,23.8703429 19.5156359,25.4314166 21.5173735,25.4314166 Z", id: "Oval-Copy-40", fill: "url(#linearGradient-7)", transform: "translate(21.517151, 15.363191) rotate(-141.000000) translate(-21.517151, -15.363191) " }))), /*#__PURE__*/React__default["default"].createElement("path", { d: "M80.0494403,116.335122 C88.8076699,101.144407 113.894541,71.6934295 155.310052,27.9821891 L155.310052,13.433931 L76.2854597,24.2179367 L9.01739077,110.071572 L67.1069868,158.925202 L90.4566162,178.55709 C74.7602694,152.266493 71.2912108,131.525837 80.0494403,116.335122 Z", id: "Path-8", fillOpacity: "0.16", fill: "#192035" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval", stroke: "#ACB3D7", strokeWidth: "0.987124464", fill: "#CBD5FD", cx: "134.150589", cy: "51.1969656", rx: "6.09273175", ry: "6.08892935" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-36", fill: "#ACB3D7", cx: "134.13899", cy: "51.1391751", rx: "3.80795734", ry: "3.80558084" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-37", fill: "#CBD4FF", cx: "131.474713", cy: "49.3326297", rx: "2.28477441", ry: "2.28334851" }), /*#__PURE__*/React__default["default"].createElement("ellipse", { id: "Oval-Copy-41", fill: "#CBD4FF", cx: "135.128283", cy: "51.6142094", rx: "1", ry: "1" })), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-31", fill: "#F4E8DB", cx: "38.1284868", cy: "108.303169", r: "1" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-22", fill: "#F4E8DB", cx: "4.32112887", cy: "163.723438", r: "3.94849785" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "153.739825", y1: "166.762478", x2: "133.010212", y2: "186.504967", id: "Path-9-Copy", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "71.0180476", y1: "196.046139", x2: "54.2369317", y2: "210.853006", id: "Path-9-Copy-2", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "39.4304561", y1: "139.905466", x2: "27.5849626", y2: "150.763835", id: "Path-9-Copy-5", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "27.0808447", y1: "220.357763", x2: "18.1967246", y2: "226.28051", id: "Path-9-Copy-6", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "42.5501636", y1: "169.913846", x2: "4.05230955", y2: "203.476077", id: "Path-9-Copy-3", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "143.094269", y1: "193.740995", x2: "104.596415", y2: "227.303226", id: "Path-9-Copy-4", stroke: "#F4E8DA", strokeWidth: "2.96137339", strokeLinecap: "round", strokeLinejoin: "round" })))); const Astronaut = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)", stroke: theme.colors.primary60, strokeWidth: "3" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,123.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path-Copy-2", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M104.072464,59.4347826 L107.42029,59.4347826 C110.501879,59.4347826 113,61.9329039 113,65.0144928 L113,72.826087 C113,75.9076758 110.501879,78.4057971 107.42029,78.4057971 L104.072464,78.4057971", id: "Path", fill: theme.colors.primary20 }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M36,59.4347826 L39.3478261,59.4347826 C42.4294149,59.4347826 44.9275362,61.9329039 44.9275362,65.0144928 L44.9275362,72.826087 C44.9275362,75.9076758 42.4294149,78.4057971 39.3478261,78.4057971 L36,78.4057971", id: "Path-Copy-8", fill: theme.colors.primary20, transform: "translate(40.463768, 68.920290) scale(-1, 1) translate(-40.463768, -68.920290) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M73.942029,36 L75.057971,36 C91.6985507,36 105.188406,49.4898551 105.188406,66.1304348 L105.188406,74.2608696 C105.188406,86.4111341 95.3386703,96.2608696 83.1884058,96.2608696 L65.8115942,96.2608696 C53.6613297,96.2608696 43.8115942,86.4111341 43.8115942,74.2608696 L43.8115942,66.1304348 C43.8115942,49.4898551 57.3014493,36 73.942029,36 Z", id: "Rectangle" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M61.6231884,54.9710145 L87.3768116,54.9710145 C92.8996591,54.9710145 97.3768116,59.448167 97.3768116,64.9710145 L97.3768116,71.1521739 C97.3768116,80.0887815 90.1322598,87.3333333 81.1956522,87.3333333 L67.8043478,87.3333333 C58.8677402,87.3333333 51.6231884,80.0887815 51.6231884,71.1521739 L51.6231884,64.9710145 C51.6231884,59.448167 56.1003409,54.9710145 61.6231884,54.9710145 Z", id: "Rectangle", fill: theme.colors.primary20 }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M98.1625549,96.4072839 C104.039008,97.3212203 108.536232,102.403535 108.536232,108.536232 L108.536232,118.134734 C108.536232,119.211784 107.767028,120.135188 106.707715,120.329844 C106.055061,120.449774 105.513749,120.546295 105.083779,120.619408 C95.9922338,122.165353 85.5737028,123.043478 74.5,123.043478", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M63.9958478,122.775649 C56.839568,122.406752 50.0823079,121.667204 43.9319499,120.622082 C43.4981804,120.548372 42.951644,120.450947 42.2923407,120.329807 C41.2329855,120.135184 40.4637681,119.211754 40.4637681,118.134669 L40.4637681,108.536232 C40.4637681,102.446055 44.8988464,97.391746 50.715414,96.426894", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M100.724638,87.6057924 C100.724638,97.4668767 92.7306494,105.188406 82.8695652,105.188406 L66.1304348,105.188406 C56.2693506,105.188406 48.2753623,97.4668767 48.2753623,87.6057924", id: "Path", strokeLinecap: "round" })))); }; const DocumentCheck = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)", stroke: theme.colors.primary60, strokeWidth: "3" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,126.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path-Copy-5", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M105,70.0296545 C105,87.5771932 105,100.077741 105,107.531297 L105,120.263384 C105,121.093743 105,122.339282 105,124 C105,125.104569 104.104569,126 103,126 L73.9676297,126", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M54,42.2162102 L54,54 C54,55.1045695 53.1045695,56 52,56 L40.1644979,56", id: "Path-Copy-9", fill: theme.colors.primary20 }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M58.7460443,126 L42,126 C40.8954305,126 40,125.104569 40,124 L40,55.6898628 L53.6898628,42 C63.9564524,42 71.6563946,42 76.7896894,42", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "58.5", y1: "89.5", x2: "86.8715634", y2: "89.5", id: "Line-4", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "58.5", y1: "104.5", x2: "86.8715634", y2: "104.5", id: "Line-4-Copy", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval", fill: theme.colors.primary20, cx: "92", cy: "55", r: "20" }), /*#__PURE__*/React__default["default"].createElement("polyline", { id: "Path", strokeLinecap: "round", strokeLinejoin: "round", points: "103.727922 49 91 61.7279221 83.8715634 54.5994855" })))); }; const DocumentSearch = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)", stroke: theme.colors.primary60, strokeWidth: "3" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,126.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path-Copy-4", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M106,120.263384 C106,121.093743 106,122.339282 106,124 C106,125.104569 105.104569,126 104,126 L74,126", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M55,42.2162102 L55,54 C55,55.1045695 54.1045695,56 53,56 L41.1644979,56", id: "Path", fill: theme.colors.primary20 }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M56.5220968,126 L43,126 C41.8954305,126 41,125.104569 41,124 L41,55.6898628 L54.6898628,42 L104,42 C105.104569,42 106,42.8954305 106,44 C106,75.6283541 106,96.8054529 106,107.531297", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval", fill: theme.colors.primary20, cx: "76", cy: "84", r: "18" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy-2", fill: theme.colors.white, cx: "76", cy: "84", r: "10" }), /*#__PURE__*/React__default["default"].createElement("rect", { id: "Rectangle", fill: theme.colors.primary20, transform: "translate(105.316743, 113.185977) rotate(-315.000000) translate(-105.316743, -113.185977) ", x: "91.8167434", y: "108.685977", width: "27", height: "9", rx: "2" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "88.5", y1: "96.5", x2: "95.4689509", y2: "103.468951", id: "Line-3" })))); }; const FileSearch = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-1" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary60, offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary100, offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "156.737419%", id: "linearGradient-2" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary60, offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary100, offset: "99.9727331%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.filterBg, offset: "100%" })), /*#__PURE__*/React__default["default"].createElement("linearGradient", { x1: "50%", y1: "0%", x2: "50%", y2: "100%", id: "linearGradient-3" }, /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary60, offset: "0%" }), /*#__PURE__*/React__default["default"].createElement("stop", { stopColor: theme.colors.primary100, offset: "100%" }))), /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", strokeLinecap: "round", strokeLinejoin: "round" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-10", transform: "translate(2.000000, 2.000000)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,124.741589 L74,161.762456 C74,163.553649 72.5479505,165.005699 70.7567568,165.005699 C70.191601,165.005699 69.6362551,164.858017 69.1457523,164.57729 L6.67495026,128.823589 L6.67495026,128.823589 C2.54398439,126.459328 0,122.095239 0,117.373019 L0,47.9293229 C0,43.2071024 2.54398439,38.843014 6.67495026,36.4787525 L67.3072083,1.77729956 C71.4477337,-0.592433188 76.5522663,-0.592433188 80.6927917,1.77729956 L141.32505,36.4787525 C145.456016,38.843014 148,43.2071024 148,47.9293229 L148,117.373019 C148,122.095239 145.456016,126.459328 141.32505,128.823589 L92.2812226,156.892675", id: "Path-Copy-5", stroke: "url(#linearGradient-1)", strokeWidth: "3" }), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(26.000000, 44.000000)", fill: "url(#linearGradient-2)", stroke: "url(#linearGradient-3)", strokeWidth: "0.5" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M27.9631397,3.55271368e-15 C33.4624013,3.55271368e-15 38.3808566,2.52087 41.6553672,6.48487465 L81.9472527,6.48596321 C84.0762362,6.48596321 85.8021183,8.23554166 85.8021183,10.3937561 L85.802,28.325 L88.2515308,28.3252823 L88.251,32.429 L93,32.4298161 L93,59.7472937 L85.8455246,67 L58.8980359,67 L58.898,62.186 L54.8490941,62.1863343 L54.849,59.703 L23.5644342,59.7032914 C21.4354508,59.7032914 19.7095687,57.9537129 19.7095687,55.7954985 L19.7093454,34.1452905 C18.6082798,33.562194 17.574686,32.8660733 16.6235455,32.0721158 L14.6182598,34.103252 L14.8620406,34.3506585 C15.8011053,35.3026166 15.8011053,36.8460456 14.8620406,37.7980037 L7.72142069,45.0366643 C6.78235595,45.9886224 5.25983119,45.9886224 4.32076645,45.0366643 L1.70429855,42.3842723 C0.765233815,41.4323142 0.765233815,39.8888852 1.70429855,38.9369271 L8.84491844,31.6982665 C9.78398317,30.7463084 11.3065079,30.7463084 12.2455727,31.6982665 L12.4882598,31.944252 L14.4672092,29.9403992 C11.7540916,26.766322 10.112393,22.6254316 10.112393,18.0958374 C10.112393,8.10178235 18.1044446,3.55271368e-15 27.9631397,3.55271368e-15 Z M91.688386,33.7594385 L60.2096499,33.7594385 L60.2096499,65.6703775 L84.84,65.67 L84.840268,58.7282349 L91.688,58.728 L91.688386,33.7594385 Z M91.538,59.348 L85.4523545,59.3487254 L85.452,65.518 L91.538,59.348 Z M87.6394442,28.9457728 L55.4611807,28.9457728 L55.4611807,61.5658438 L58.898,61.565 L58.8980359,32.4298161 L87.639,32.429 L87.6394442,28.9457728 Z M84.49,15.163 L45.5807319,15.1635935 C45.7341329,16.1179982 45.8138864,17.0974762 45.8138864,18.0958374 C45.8138864,28.0898924 37.8218349,36.1916747 27.9631397,36.1916747 C25.5007911,36.1916747 23.1548876,35.6862683 21.0208682,34.7722046 L21.0211827,55.7954985 C21.0211827,57.2193827 22.1598352,58.3736689 23.5644342,58.3736689 L54.849,58.373 L54.8490941,28.3252823 L84.49,28.325 L84.49,15.163 Z M78.4992495,48.4723056 C78.6682725,48.4723056 78.8052927,48.6112071 78.8052927,48.7825508 C78.8052927,48.9538945 78.6682725,49.0927961 78.4992495,49.0927961 L67.0125174,49.0927961 C66.8434944,49.0927961 66.7064742,48.9538945 66.7064742,48.7825508 C66.7064742,48.6112071 66.8434944,48.4723056 67.0125174,48.4723056 L78.4992495,48.4723056 Z M9.77236959,32.6384516 L2.63174971,39.8771121 C2.2049021,40.3098203 2.2049021,41.011379 2.63174971,41.4440872 L5.24821761,44.0964792 C5.67506522,44.5291874 6.36712193,44.5291874 6.79396954,44.0964792 L13.9345894,36.8578186 C14.361437,36.4251104 14.361437,35.7235518 13.9345894,35.2908435 L11.3181215,32.6384516 C10.8912739,32.2057433 10.1992172,32.2057433 9.77236959,32.6384516 Z M85.5477644,42.7970878 C85.7167874,42.7970878 85.8538076,42.9359893 85.8538076,43.107333 C85.8538076,43.2786767 85.7167874,43.4175783 85.5477644,43.4175783 L67.1689931,43.4175783 C66.9999701,43.4175783 66.8629499,43.2786767 66.8629499,43.107333 C66.8629499,42.9359893 66.9999701,42.7970878 67.1689931,42.7970878 L85.5477644,42.7970878 Z M27.9631397,1.32962246 C18.828829,1.32962246 11.424007,8.83611256 11.424007,18.0958374 C11.424007,27.3555622 18.828829,34.8620523 27.9631397,34.8620523 C37.0974505,34.8620523 44.5022724,27.3555622 44.5022724,18.0958374 C44.5022724,8.83611256 37.0974505,1.32962246 27.9631397,1.32962246 Z M14.8764421,30.4029656 L12.9212598,32.383252 L14.1852598,33.665252 L16.1555297,31.6676037 C15.7087055,31.2678064 15.281777,30.8456865 14.8764421,30.4029656 Z M27.9631397,4.408293 C35.4201767,4.408293 41.4652995,10.5364153 41.4652995,18.0958374 C41.4652995,25.6552594 35.4201767,31.7833817 27.9631397,31.7833817 C20.5061028,31.7833817 14.46098,25.6552594 14.46098,18.0958374 C14.46098,10.5364153 20.5061028,4.408293 27.9631397,4.408293 Z M27.9631397,5.02878348 C20.8441489,5.02878348 15.0730665,10.8791028 15.0730665,18.0958374 C15.0730665,25.312572 20.8441489,31.1628913 27.9631397,31.1628913 C35.0821306,31.1628913 40.853213,25.312572 40.853213,18.0958374 C40.853213,10.8791028 35.0821306,5.02878348 27.9631397,5.02878348 Z M27.9631397,8.46202001 C28.1321628,8.46202001 28.269183,8.60092153 28.269183,8.77226525 C28.269183,8.94360896 28.1321628,9.08251049 27.9631397,9.08251049 C23.0526379,9.08251049 19.0718897,13.1179144 19.0718897,18.0958374 C19.0718897,18.2671811 18.9348694,18.4060826 18.7658464,18.4060826 C18.5968234,18.4060826 18.4598031,18.2671811 18.4598031,18.0958374 C18.4598031,12.775227 22.7145919,8.46202001 27.9631397,8.46202001 Z M42.6549454,7.81468876 C44.0125608,9.8045911 44.9869199,12.0837237 45.4698482,14.5424266 L84.49,14.542 L84.4905043,10.3937561 C84.4905043,8.96987187 83.3518518,7.81558567 81.9472527,7.81558567 L42.6549454,7.81468876 Z", id: "Combined-Shape" }))))); }; const FlagInCog = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)", stroke: theme.colors.primary60, strokeWidth: "3" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,102.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path-Copy-3", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M51,49 L119,49 C120.104569,49 121,49.8954305 121,51 L121,92 C121,93.1045695 120.104569,94 119,94 L51,94 L51,94", id: "Path", fill: theme.colors.primary20 }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "50.5", y1: "117.664666", x2: "50.5", y2: "46", id: "Line-2", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M90.239435,81.7782712 C90.0631269,82.1676449 89.8758447,82.5512259 89.6779671,82.9286394 L82.2989672,82.9286393 L81.8937728,82.0669236 L78.1172716,83.9875645 L76.5591632,79.8394848 C76.3961623,79.1332341 76.5739129,78.396551 77.0393222,77.8413752 L79.8721037,74.4622162 C79.8249919,73.8746857 79.8009823,73.2808202 79.8009823,72.6814838 C79.8009823,67.7927344 81.3963573,63.2674855 84.107847,59.5756058 C84.5362871,59.0098353 84.997813,58.7370453 85.4095325,58.6086382 C86.0930507,58.3954624 86.7419904,58.5264664 87.2751427,58.9131117 C90.61381,63.2761567 92.1990177,67.7991512 92.1990177,72.6814838 C92.1990177,73.2808202 92.1750081,73.8746857 92.1278963,74.4622162 L94.9606778,77.8413752 C95.3806819,78.3423882 95.5664172,78.9912204 95.4788634,79.6321076 L94.9309945,83.6424664 L90.239435,81.7782712 Z", id: "Path", fill: theme.colors.white }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M18.4450668,124.33815 C20.3880749,122.496562 22.421736,120.749671 24.5386602,119.104867 L22.349674,115.734124 C21.7480823,114.807754 22.0113671,113.569097 22.9377371,112.967505 L31.3244427,107.521115 C32.2508127,106.919523 33.4894703,107.182808 34.0910619,108.109178 L36.2893205,111.494199 C43.9325843,107.429769 52.2997247,104.546693 61.1471982,103.088517", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M74.5,102 C86.2343886,102 97.389559,104.479928 107.469997,108.944271 L109.522759,105.388784 C110.075043,104.432199 111.298224,104.104449 112.254809,104.656733 L125.245191,112.156733 C126.201776,112.709018 126.529526,113.932199 125.977241,114.888784 L123.825459,118.615781 C126.097192,120.345426 128.275354,122.191655 130.351025,124.145546", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "82.5", y1: "19.5", x2: "82.5", y2: "32.5278784", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "82.5", y1: "19.5", x2: "82.5", y2: "32.5278784", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(82.500000, 26.000000) rotate(-270.000000) translate(-82.500000, -26.000000) " }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "30.5", y1: "40.3", x2: "30.5", y2: "48.1167271", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "30.4916365", y1: "40.2916365", x2: "30.4916365", y2: "48.1083635", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(30.491636, 44.200000) rotate(-270.000000) translate(-30.491636, -44.200000) " }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "17.5", y1: "78.4333333", x2: "17.5", y2: "89.7241613", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "17.4879193", y1: "78.4212527", x2: "17.4879193", y2: "89.7120807", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(17.487919, 84.066667) rotate(-270.000000) translate(-17.487919, -84.066667) " })))); }; const Folders = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,124.060611 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path-Copy-6", stroke: theme.colors.primary60, strokeWidth: "3", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M80,75.4190948 C80,70.9185608 80,64.1677599 80,55.166692 L89.166692,46 L122.184615,46 C122.924232,46 123.52381,46.5995776 123.52381,47.3391941 C123.52381,68.5174474 123.52381,82.6975707 123.52381,89.8795641 L123.52381,98.4049324 C123.52381,98.9609384 123.52381,99.7949476 123.52381,100.90696 C123.52381,101.646576 122.924232,102.246154 122.184615,102.246154 C119.775905,102.246154 117.969372,102.246154 116.765016,102.246154 L107.980724,68.9485742 L80,75.4190948 Z", id: "Path", fill: theme.colors.primary20, transform: "translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M80,75.4190948 C80,70.9185608 80,64.1677599 80,55.166692 L89.166692,46 L122.184615,46 C122.924232,46 123.52381,46.5995776 123.52381,47.3391941 C123.52381,68.5174474 123.52381,82.6975707 123.52381,89.8795641 L123.52381,98.4049324 L123.52381,98.4049324 C123.52381,98.9609384 123.52381,99.7949476 123.52381,100.90696 C123.52381,101.646576 122.924232,102.246154 122.184615,102.246154 C119.775905,102.246154 117.969372,102.246154 116.765016,102.246154", id: "Path-Copy-7", stroke: theme.colors.primary60, strokeWidth: "3", transform: "translate(101.761905, 74.123077) rotate(-345.000000) translate(-101.761905, -74.123077) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M96.001211,42.535856 L96.001211,50.4262472 C96.001211,51.1658637 95.4016334,51.7654413 94.6620169,51.7654413 L86.7369994,51.7654413", id: "Path-Copy-10", stroke: theme.colors.primary60, strokeWidth: "3", transform: "translate(91.369105, 47.150649) rotate(-345.000000) translate(-91.369105, -47.150649) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M48.907368,38.345876 L48.907368,46.2362671 C48.907368,46.9758836 48.3077904,47.5754613 47.5681739,47.5754613 L39.6431564,47.5754613", id: "Path-Copy-10", stroke: theme.colors.primary60, strokeWidth: "3", fill: theme.colors.primary20, transform: "translate(44.275262, 42.960669) rotate(-15.000000) translate(-44.275262, -42.960669) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M40.6569874,54.4287231 C40.6569874,51.8308869 40.6569874,47.9341327 40.6569874,42.7384605 L49.8236794,33.5717685 L82.8416028,33.5717685 C83.5812193,33.5717685 84.1807969,34.1713461 84.1807969,34.9109626 C84.1807969,43.0635825 84.1807969,50.179161 84.1807969,56.257698", id: "Path", stroke: theme.colors.primary60, strokeWidth: "3", transform: "translate(62.418892, 44.914733) rotate(-15.000000) translate(-62.418892, -44.914733) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M53.634268,124 L34,124 C32.8954305,124 32,123.104569 32,122 L32,62 C32,60.8954305 32.8954305,60 34,60 L53.5584816,60 C54.4193424,60 55.1836201,60.5508602 55.4558482,61.3675445 L58.3333333,70 L107,70 C108.104569,70 109,70.8954305 109,72 L109,122 C109,123.104569 108.104569,124 107,124 L74,124", id: "Path", stroke: theme.colors.primary60, strokeWidth: "3", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "32", y1: "80.4611735", x2: "96.5731", y2: "80.4611735", id: "Line-7", stroke: theme.colors.primary60, strokeWidth: "3", strokeLinecap: "round" })))); }; const Launch = props => { const { width, height, theme } = props; const svgWidth = width || '165px'; const svgHeight = height || '184px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 165 184", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 1.000000)", fillRule: "nonzero" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M80.5,163.67556 L80.5,177.071797 C80.5,179.280936 78.709139,181.071797 76.5,181.071797 C75.7978533,181.071797 75.1080768,180.886972 74.5,180.535898 L5.39265015,140.636751 L5.39265015,140.636751 C2.29863938,138.850423 0.39265015,135.549153 0.39265015,131.976497 L0.39265015,51.0235027 C0.39265015,47.4508468 2.29863938,44.1495766 5.39265015,42.3632487 L75.5,1.88675135 C78.5940108,0.100423396 82.4059892,0.100423396 85.5,1.88675135 L155.60735,42.3632487 C158.701361,44.1495766 160.60735,47.4508468 160.60735,51.0235027 L160.60735,131.976497 C160.60735,135.549153 158.701361,138.850423 155.60735,140.636751 L94.0407624,176.182237", id: "Path", stroke: theme.colors.primary60, strokeWidth: "3", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("g", { id: "Group-11", transform: "translate(47.000000, 21.000000)", stroke: theme.colors.primary60, strokeWidth: "2" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M53.9942579,39.5219471 L55.8288797,35.8527035 C56.3228582,34.8647465 57.5242043,34.4642978 58.5121613,34.9582763 C58.8992161,35.1518037 59.2130611,35.4656487 59.4065885,35.8527035 L61.2412103,39.5219471 C62.5603369,42.1602003 63.2470936,45.0693486 63.2470936,48.0190054 L63.2470936,122.095329 C63.2470936,122.647613 62.7993784,123.095329 62.2470936,123.095329 L52.9883746,123.095329 C52.4360898,123.095329 51.9883746,122.647613 51.9883746,122.095329 L51.9883746,48.0190054 C51.9883746,45.0693486 52.6751313,42.1602003 53.9942579,39.5219471 Z", id: "Rectangle", fill: theme.colors.white, strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M5.75878973,39.5219471 L7.59341152,35.8527035 C8.08739002,34.8647465 9.2887361,34.4642978 10.2766931,34.9582763 C10.6637479,35.1518037 10.9775929,35.4656487 11.1711203,35.8527035 L13.0057421,39.5219471 C14.3248687,42.1602003 15.0116254,45.0693486 15.0116254,48.0190054 L15.0116254,122.095329 C15.0116254,122.647613 14.5639102,123.095329 14.0116254,123.095329 L4.75290636,123.095329 C4.20062161,123.095329 3.75290636,122.647613 3.75290636,122.095329 L3.75290636,48.0190054 C3.75290636,45.0693486 4.43966311,42.1602003 5.75878973,39.5219471 Z", id: "Rectangle", fill: theme.colors.white, strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.5571232,7.82445311 L30.2061982,2.5285507 C31.4596375,0.709434189 33.9504362,0.250862247 35.7695527,1.5043016 C36.1704572,1.78053976 36.5175637,2.12764628 36.7938018,2.5285507 L40.4428768,7.82445311 C44.9645408,14.386744 47.3857535,22.1679451 47.3857535,30.1372052 L47.3857535,93.8226591 L47.3857535,93.8226591 L19.6142465,93.8226591 L19.6142465,30.1372052 C19.6142465,22.1679451 22.0354592,14.386744 26.5571232,7.82445311 Z", id: "Rectangle", fill: theme.colors.primary60, strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M40.5745738,117.355362 L41.6399673,64.4923457 L45.0007027,77.8303078 C46.8757338,85.2718617 50.6334929,92.105976 55.9127551,97.6757028 L59.211122,101.155546 C62.0658223,104.167311 63.9962059,107.93508 64.7730365,112.011424 L65.5485066,116.080629 C65.5463599,116.477108 65.4504565,116.810566 65.2566953,117.04474 C65.0889845,117.247429 64.8478844,117.355362 64.582866,117.355362 L40.5745738,117.355362 Z", id: "Path-3", fill: theme.colors.primary60 }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M1.02035692,117.355362 L2.08575042,64.4923457 L5.44648581,77.8303078 C7.32151692,85.2718617 11.079276,92.105976 16.3585383,97.6757028 L19.6569052,101.155546 C22.5116054,104.167311 24.441989,107.93508 25.2188196,112.011424 L25.9942897,116.080629 C25.992143,116.477108 25.8962396,116.810566 25.7024785,117.04474 C25.5347676,117.247429 25.2936675,117.355362 25.0286491,117.355362 L1.02035692,117.355362 Z", id: "Path-3-Copy", fill: theme.colors.primary60, transform: "translate(13.722892, 87.691223) scale(-1, 1) translate(-13.722892, -87.691223) " }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M26.9474568,46.6158047 L29.0688728,42.5574438 C30.348114,40.1101998 33.3690271,39.1633464 35.816271,40.4425876 C36.7204907,40.9152479 37.4584669,41.6532241 37.9311272,42.5574438 L40.0525432,46.6158047 C41.8462831,50.0473072 42.7831325,53.8618634 42.7831325,57.7339058 L42.7831325,122.875685 L42.7831325,122.875685 L24.2168675,122.875685 L24.2168675,57.7339058 C24.2168675,53.8618634 25.1537169,50.0473072 26.9474568,46.6158047 Z", id: "Rectangle", fill: theme.colors.white, strokeLinejoin: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M46.626506,125.104601 L20.373494,125.104601 L20.373494,118.032312 C20.373494,116.079353 21.1650869,114.311281 22.4449195,113.031448 C23.7247521,111.751616 25.4928244,110.960023 27.4457831,110.960023 L39.5542169,110.960023 C41.5071756,110.960023 43.2752479,111.751616 44.5550805,113.031448 C45.8349131,114.311281 46.626506,116.079353 46.626506,118.032312 L46.626506,125.104601 Z", id: "Rectangle", fill: theme.colors.white }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "33.5", y1: "101.484119", x2: "33.5", y2: "129.203332", id: "Line", fill: theme.colors.primary20, strokeLinecap: "round" }))))); }; const Planet = props => { const { width, height, theme } = props; const svgWidth = width || '152px'; const svgHeight = height || '169px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 152 169", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Group", transform: "translate(2.000000, 2.000000)", stroke: theme.colors.primary60, strokeWidth: "3" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M74,117.371134 L74,158.723567 C74,162.037275 71.3137085,164.723567 68,164.723567 C66.9452118,164.723567 65.9090627,164.445504 64.995996,163.917406 L6.67495026,130.185774 L6.67495026,130.185774 C2.54398439,127.796512 1.42108547e-14,123.386278 1.42108547e-14,118.614125 L1.42108547e-14,48.436129 C1.42108547e-14,43.6639756 2.54398439,39.2537412 6.67495026,36.8644799 L67.3072083,1.79609278 C71.4477337,-0.598697595 76.5522663,-0.598697595 80.6927917,1.79609278 L141.32505,36.8644799 C145.456016,39.2537412 148,43.6639756 148,48.436129 L148,118.614125 C148,123.386278 145.456016,127.796512 141.32505,130.185774 L92.2812226,158.551663", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M108.882866,90.7418658 C109.714261,87.6976379 110.158112,84.4934359 110.158112,81.185567 C110.158112,61.2008302 93.9572813,45 73.9725445,45 C53.9878077,45 37.7869775,61.2008302 37.7869775,81.185567 C37.7869775,97.3610095 48.4003337,111.05757 63.0430857,115.691287", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M73.9725445,117.371134 C77.5908988,117.371134 81.0852119,116.840051 84.3817866,115.851582 C89.8928309,114.19911 94.8512468,111.268362 98.9127122,107.40366", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("circle", { id: "Oval-Copy", fillOpacity: "0.196268575", fill: theme.colors.primary60, cx: "104.127184", cy: "99.2783505", r: "9.64948454" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M120.255984,85.4659665 C128.43855,89.8418956 133.002057,93.9015871 132.226834,96.7947568 C131.38817,99.9246931 124.455699,101.112837 113.853361,100.515516", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M94.0573111,98.0477535 C86.8513781,96.7649447 79.0016836,95.0204726 70.8507066,92.8364249 C38.6777508,84.2157074 13.9941115,72.0109683 15.718255,65.5763772 C16.4982546,62.6653791 22.5493576,61.4340187 31.9215354,61.7565326", id: "Path", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "96.5", y1: "22.5", x2: "96.5", y2: "35.5278784", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "96.5", y1: "22.5", x2: "96.5", y2: "35.5278784", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(96.500000, 29.000000) rotate(-270.000000) translate(-96.500000, -29.000000) " }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "38.5", y1: "38.3", x2: "38.5", y2: "46.1167271", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "38.4916365", y1: "38.2916365", x2: "38.4916365", y2: "46.1083635", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(38.491636, 42.200000) rotate(-270.000000) translate(-38.491636, -42.200000) " }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "98", y1: "122.266667", x2: "98", y2: "129.214868", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "97.9925658", y1: "122.259232", x2: "97.9925658", y2: "129.207434", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(97.992566, 125.733333) rotate(-270.000000) translate(-97.992566, -125.733333) " }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "40.5", y1: "122.433333", x2: "40.5", y2: "133.724161", id: "Line-6", strokeLinecap: "round" }), /*#__PURE__*/React__default["default"].createElement("line", { x1: "40.4879193", y1: "122.421253", x2: "40.4879193", y2: "133.712081", id: "Line-6-Copy", strokeLinecap: "round", transform: "translate(40.487919, 128.066667) rotate(-270.000000) translate(-40.487919, -128.066667) " })))); }; const AdminJSLogo = props => { const { width, height } = props; const svgWidth = width || '113px'; const svgHeight = height || '113px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 113 113", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink" }, /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("filter", { x: "-18.8%", y: "-13.4%", width: "137.6%", height: "137.6%", filterUnits: "objectBoundingBox", id: "a" }, /*#__PURE__*/React__default["default"].createElement("feOffset", { dy: "5", in: "SourceAlpha", result: "shadowOffsetOuter1" }), /*#__PURE__*/React__default["default"].createElement("feGaussianBlur", { stdDeviation: "5", in: "shadowOffsetOuter1", result: "shadowBlurOuter1" }), /*#__PURE__*/React__default["default"].createElement("feColorMatrix", { values: "0 0 0 0 0.301960784 0 0 0 0 0.439215686 0 0 0 0 0.921568627 0 0 0 0.402289117 0", in: "shadowBlurOuter1" })), /*#__PURE__*/React__default["default"].createElement("rect", { id: "b", x: "0", y: "0", width: "93", height: "93", rx: "20" })), /*#__PURE__*/React__default["default"].createElement("g", { fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { transform: "translate(10 5)" }, /*#__PURE__*/React__default["default"].createElement("use", { fill: "#000", filter: "url(#a)", xlinkHref: "#b" }), /*#__PURE__*/React__default["default"].createElement("use", { fill: "#4D70EB", xlinkHref: "#b" })), /*#__PURE__*/React__default["default"].createElement("path", { d: "M56.5 28 83 74H68.932l-3.282-5.698a5.632 5.632 0 0 0-4.63-2.815l-.25-.006h-8.54a5.632 5.632 0 0 0-4.88 2.82L44.066 74H30l26.5-46zm0 20.444c-3.114 0-5.638 2.543-5.638 5.68 0 3.136 2.524 5.678 5.638 5.678s5.638-2.542 5.638-5.679c0-3.136-2.524-5.679-5.638-5.679z", fill: "#FFF" }))); }; const GithubLogo = props => { const { width, height, theme } = props; const svgWidth = width || '72px'; const svgHeight = height || '71px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "0 0 72 71", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Symbols", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React__default["default"].createElement("g", { id: "Atoms/Logotype/Github", transform: "translate(0.000000, 1.000000)", fill: theme.colors.grey100, fillRule: "nonzero" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M67.1013759,17.4238423 C63.8854852,11.9137922 59.5233349,7.55147781 54.0137768,4.33591517 C48.5033986,1.12018851 42.4877084,-0.487264789 35.9624419,-0.487264789 C29.4379954,-0.487264789 23.4203371,1.12068054 17.9111071,4.33591517 C12.4010569,7.5513138 8.03907062,11.9137922 4.82317995,17.4238423 C1.60778132,22.9337284 -4.26325641e-14,28.9505666 -4.26325641e-14,35.4741931 C-4.26325641e-14,43.3105484 2.28628702,50.3571999 6.86000911,56.6159516 C11.4332392,62.8751953 17.3411754,67.206348 24.5833257,69.6099015 C25.4263326,69.7663662 26.0503872,69.6563161 26.4561458,69.2825393 C26.8620683,68.9082705 27.0647836,68.4395325 27.0647836,67.8782933 C27.0647836,67.7846441 27.0567472,66.9421293 27.0411663,65.3497648 C27.0250934,63.7574004 27.017549,62.3682432 27.017549,61.1829493 L25.9405011,61.3692637 C25.253795,61.4950587 24.3874989,61.5483616 23.3416128,61.5332728 C22.2962187,61.518676 21.2109704,61.4091179 20.087344,61.2054186 C18.9632255,61.0035234 17.9176674,60.5352774 16.9498497,59.8016646 C15.9825239,59.0680518 15.2958178,58.1077785 14.8898952,56.9223206 L14.4216492,55.8447808 C14.1095399,55.1274049 13.6181686,54.3304846 12.9468793,53.4569721 C12.27559,52.5826395 11.5967563,51.9899106 10.9100501,51.6778013 L10.5821959,51.4431042 C10.3637358,51.2871316 10.1610205,51.0990131 9.97355809,50.880717 C9.78625968,50.6624209 9.64603189,50.4439607 9.55238269,50.2251726 C9.45856948,50.0062204 9.53630979,49.8266304 9.78642369,49.6857466 C10.0365376,49.5448628 10.4885467,49.476471 11.1444191,49.476471 L12.0805831,49.6163707 C12.7049658,49.7415097 13.4772847,50.1152865 14.3985239,50.7399972 C15.3192711,51.3642158 16.0761731,52.1757329 16.6693941,53.1742204 C17.387754,54.4544755 18.2532301,55.4300017 19.2682825,56.101291 C20.2825148,56.7725803 21.3051116,57.1076509 22.3350888,57.1076509 C23.3650661,57.1076509 24.2546515,57.0295826 25.0041731,56.874266 C25.7528747,56.7181293 26.4553257,56.4834322 27.1111982,56.1714869 C27.3921458,54.0790587 28.1570843,52.4716054 29.4053576,51.3479789 C27.6261868,51.1610086 26.0266059,50.8794049 24.605795,50.5049721 C23.1858041,50.1300473 21.7184146,49.5215735 20.2046105,48.6779106 C18.6899863,47.8353958 17.4335125,46.7891817 16.434861,45.5410723 C15.4360456,44.292307 14.616328,42.6528719 13.9768565,40.6242432 C13.3370569,38.5947944 13.0170752,36.2537284 13.0170752,33.600389 C13.0170752,29.8224391 14.2504237,26.6075325 16.7166287,23.9538651 C15.5613485,21.1135553 15.6704146,17.9294824 17.0441549,14.4019744 C17.9494852,14.1206988 19.2920638,14.3317785 21.0712346,15.0339015 C22.8507335,15.7363525 24.1536219,16.338102 24.9812118,16.8370177 C25.8088018,17.3357694 26.4718907,17.7584209 26.9714624,18.1011999 C29.8752437,17.2898468 32.8718542,16.8840883 35.9621139,16.8840883 C39.0523736,16.8840883 42.0496401,17.2898468 44.9535854,18.1011999 L46.7329203,16.9779015 C47.9497039,16.2283799 49.3865877,15.5415097 51.0401276,14.917127 C52.6946515,14.2930723 53.9598178,14.1211908 54.8343144,14.4024664 C56.2385604,17.9301384 56.3636993,21.1140473 55.2080911,23.9543571 C57.6741321,26.6080245 58.9079727,29.8237512 58.9079727,33.600881 C58.9079727,36.2542204 58.5868428,38.6026669 57.9480273,40.6476965 C57.3083918,42.6930541 56.4816219,44.3308491 55.4673895,45.5645256 C54.4520091,46.7980382 53.1874989,47.8360518 51.6736948,48.6784026 C50.1595626,49.5214095 48.6916811,50.1298833 47.2716902,50.5048081 C45.8510433,50.8797329 44.2514624,51.1615006 42.4722916,51.348799 C44.0949977,52.753045 44.9065148,54.9696281 44.9065148,57.9975644 L44.9065148,67.8769812 C44.9065148,68.4382204 45.1016856,68.9067944 45.4923554,69.2812272 C45.882533,69.655004 46.4987153,69.7650541 47.3417221,69.6084254 C54.5848565,67.2051999 60.4927927,62.8738833 65.0658588,56.6146395 C69.6384328,50.3558878 71.9255399,43.3092364 71.9255399,35.472881 C71.9238998,28.9500746 70.3152984,22.9337284 67.1013759,17.4238423 Z", id: "Path" })))); }; const Slack = props => { const { width, height } = props; const svgWidth = width || '72px'; const svgHeight = height || '72px'; return /*#__PURE__*/React__default["default"].createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "70 70 140 140", version: "1.1", xmlns: "http://www.w3.org/2000/svg" }, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#E01E5A' }, d: "M99.4,151.2c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9h12.9V151.2z" }), /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#E01E5A' }, d: "M105.9,151.2c0-7.1,5.8-12.9,12.9-12.9s12.9,5.8,12.9,12.9v32.3c0,7.1-5.8,12.9-12.9,12.9s-12.9-5.8-12.9-12.9V151.2z" })), /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#36C5F0' }, d: "M118.8,99.4c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9s12.9,5.8,12.9,12.9v12.9H118.8z" }), /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#36C5F0' }, d: "M118.8,105.9c7.1,0,12.9,5.8,12.9,12.9s-5.8,12.9-12.9,12.9H86.5c-7.1,0-12.9-5.8-12.9-12.9s5.8-12.9,12.9-12.9H118.8z" })), /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#2EB67D' }, d: "M170.6,118.8c0-7.1,5.8-12.9,12.9-12.9c7.1,0,12.9,5.8,12.9,12.9s-5.8,12.9-12.9,12.9h-12.9V118.8z" }), /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#2EB67D' }, d: "M164.1,118.8c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9V86.5c0-7.1,5.8-12.9,12.9-12.9c7.1,0,12.9,5.8,12.9,12.9V118.8z" })), /*#__PURE__*/React__default["default"].createElement("g", null, /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#ECB22E' }, d: "M151.2,170.6c7.1,0,12.9,5.8,12.9,12.9c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9v-12.9H151.2z" }), /*#__PURE__*/React__default["default"].createElement("path", { style: { fill: '#ECB22E' }, d: "M151.2,164.1c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9h32.3c7.1,0,12.9,5.8,12.9,12.9c0,7.1-5.8,12.9-12.9,12.9H151.2z" })))); }; var Illustrations = /*#__PURE__*/Object.freeze({ __proto__: null, Moon: Moon, Rocket: Rocket, Astronaut: Astronaut, DocumentCheck: DocumentCheck, DocumentSearch: DocumentSearch, FileSearch: FileSearch, FlagInCog: FlagInCog, Folders: Folders, Launch: Launch, Planet: Planet, AdminJSLogo: AdminJSLogo, GithubLogo: GithubLogo, SlackLogo: Slack }); /** * @memberof Illustration * @alias IllustrationProps */ const RawIllustration = props => { const { variant, ...other } = props; const IllustrationComponent = Illustrations[variant]; return /*#__PURE__*/React__default["default"].createElement(IllustrationComponent, other); }; /** * @classdesc * * * * Awesome database with all the illustrations provided with AdminJS. * * The best thing about them is that they follow your {@link Theme} color palette. * * ### Usage * * ```javascript * import { Illustration, IllustrationProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see IllustrationProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-illustration--default Storybook} * @hideconstructor * * @example Folders * return ( * * ) * @example DocumentSearch * return ( * * ) * @example Rocket * return ( * * ) * @section design-system */ const Illustration = styled.withTheme(RawIllustration); const sizeVariants$1 = variant({ prop: 'size', variants: { sm: { fontSize: 'xs', py: 'sm' }, lg: { fontSize: 'default' } } }); const variants$4 = variant({ variants: { primary: { color: 'primary100', '&:hover': { color: 'hoverBg', '& svg': { fill: 'hoverBg' } }, '& svg': { fill: 'primary100' } }, danger: { color: 'error', '&:hover': { color: 'error' }, '& svg': { fill: 'error' } }, success: { color: 'success', '&:hover': { color: 'success' }, '& svg': { fill: 'success' } }, info: { color: 'primary60', '&:hover': { color: 'hoverBg' }, '& svg': { fill: 'primary60' } }, secondary: { color: 'accent', '&:hover': { color: 'hoverBg' }, '& svg': { fill: 'accent' } } } }); /** * Prop Types of a Link component. * Apart from those explicitly specified below it extends all {@link ColorProps}, * and {@link SpaceProps} * * @memberof Link * @alias LinkProps * @property {string} [...] All props default to _a_ html component like `href`, * `onClick` etc. * @property {string} [...] Other props from {@link ColorProps} and {@link SpaceProps} */ /** * @classdesc * * * * Styled form of Link element. * * ### Usage * * ```javascript * import { Link, LinkProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see LinkProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-link--default Storybook} * @hideconstructor * @example All color variants * const variants = ['primary', 'danger', 'success', 'info', 'secondary'] * return ( * * {variants.map(variant => ( * {variant} * ))} * * ) * @example With icons * return ( * * * * With an icon * * * ) * @section design-system */ const Link$1 = styled__default["default"].a.withConfig({ displayName: "link__Link", componentId: "sc-diawqz-0" })(["font-family:", ";vertical-align:middle;cursor:pointer;text-decoration:none;&:hover{text-decoration:underline;}& svg{padding-right:", ";vertical-align:text-top;}", " ", ";", ";", ";", ";"], ({ theme }) => theme.font, ({ theme }) => theme.space.default, ({ uppercase }) => uppercase ? 'text-transform: uppercase;' : '', color, space, sizeVariants$1, variants$4); Link$1.defaultProps = { color: 'grey60', className: cssClass('Link') }; /* eslint-disable import/prefer-default-export */ const Spinner = styled__default["default"].div.attrs({ className: 'lds-facebook' }).withConfig({ displayName: "loader__Spinner", componentId: "sc-1xkp23s-0" })(["&{display:inline-block;position:relative;width:64px;height:64px;}& div{display:inline-block;position:absolute;left:6px;width:13px;background:", ";animation:lds-facebook 1.2s cubic-bezier(0,0.5,0.5,1) infinite;}& div:nth-child(1){left:6px;animation-delay:-0.24s;}& div:nth-child(2){left:26px;animation-delay:-0.12s;}& div:nth-child(3){left:45px;animation-delay:0;}@keyframes lds-facebook{0%{top:6px;height:51px;}50%,100%{top:19px;height:26px;}}"], ({ theme }) => theme.colors.primary100); /** * @classdesc * * * * Simple loader * * ### Usage * * ```javascript * import { Loader } from '@adminjs/design-system' * ``` * * @component * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-loader--default Storybook} * @hideconstructor * @subcategory Atoms * @example * return ( * * ) * @section design-system */ const Loader = () => /*#__PURE__*/React__default["default"].createElement(Box, { p: "x3", style: { textAlign: 'center' }, "data-testid": "Loader", className: cssClass('Loader') }, /*#__PURE__*/React__default["default"].createElement(Spinner, null, /*#__PURE__*/React__default["default"].createElement("div", null), /*#__PURE__*/React__default["default"].createElement("div", null), /*#__PURE__*/React__default["default"].createElement("div", null))); const Overlay = styled__default["default"](Box).withConfig({ displayName: "overlay__Overlay", componentId: "sc-18t3cyp-0" })([""]); Overlay.defaultProps = { width: '100%', height: '100%', bg: 'grey100', opacity: 0.2, position: 'fixed', top: 0, left: 0, zIndex: 40, className: cssClass('Overlay') }; var lib = createCommonjsModule(function (module) { module.exports = function (e) { var t = {}; function r(n) { if (t[n]) return t[n].exports; var a = t[n] = { i: n, l: !1, exports: {} }; return e[n].call(a.exports, a, a.exports, r), a.l = !0, a.exports; } return r.m = e, r.c = t, r.d = function (e, t, n) { r.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: n }); }, r.r = function (e) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(e, "__esModule", { value: !0 }); }, r.t = function (e, t) { if (1 & t && (e = r(e)), 8 & t) return e; if (4 & t && "object" == typeof e && e && e.__esModule) return e; var n = Object.create(null); if (r.r(n), Object.defineProperty(n, "default", { enumerable: !0, value: e }), 2 & t && "string" != typeof e) for (var a in e) r.d(n, a, function (t) { return e[t]; }.bind(null, a)); return n; }, r.n = function (e) { var t = e && e.__esModule ? function () { return e.default; } : function () { return e; }; return r.d(t, "a", t), t; }, r.o = function (e, t) { return Object.prototype.hasOwnProperty.call(e, t); }, r.p = "", r(r.s = 9); }([function (e, t) { e.exports = React__default["default"]; }, function (e, t, r) { var n; /*! Copyright (c) 2017 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ !function () { var r = {}.hasOwnProperty; function a() { for (var e = [], t = 0; t < arguments.length; t++) { var n = arguments[t]; if (n) { var o = typeof n; if ("string" === o || "number" === o) e.push(n);else if (Array.isArray(n) && n.length) { var i = a.apply(null, n); i && e.push(i); } else if ("object" === o) for (var u in n) r.call(n, u) && n[u] && e.push(u); } } return e.join(" "); } e.exports ? (a.default = a, e.exports = a) : void 0 === (n = function () { return a; }.apply(t, [])) || (e.exports = n); }(); }, function (e, t, r) { (function (t) { var r = /^\s+|\s+$/g, n = /^[-+]0x[0-9a-f]+$/i, a = /^0b[01]+$/i, o = /^0o[0-7]+$/i, i = parseInt, u = "object" == typeof t && t && t.Object === Object && t, c = "object" == typeof self && self && self.Object === Object && self, s = u || c || Function("return this")(), l = Object.prototype.toString, f = s.Symbol, d = f ? f.prototype : void 0, p = d ? d.toString : void 0; function h(e) { if ("string" == typeof e) return e; if (y(e)) return p ? p.call(e) : ""; var t = e + ""; return "0" == t && 1 / e == -1 / 0 ? "-0" : t; } function m(e) { var t = typeof e; return !!e && ("object" == t || "function" == t); } function y(e) { return "symbol" == typeof e || function (e) { return !!e && "object" == typeof e; }(e) && "[object Symbol]" == l.call(e); } function b(e) { return e ? (e = function (e) { if ("number" == typeof e) return e; if (y(e)) return NaN; if (m(e)) { var t = "function" == typeof e.valueOf ? e.valueOf() : e; e = m(t) ? t + "" : t; } if ("string" != typeof e) return 0 === e ? e : +e; e = e.replace(r, ""); var u = a.test(e); return u || o.test(e) ? i(e.slice(2), u ? 2 : 8) : n.test(e) ? NaN : +e; }(e)) === 1 / 0 || e === -1 / 0 ? 17976931348623157e292 * (e < 0 ? -1 : 1) : e == e ? e : 0 : 0 === e ? e : 0; } e.exports = function (e, t, r) { var n, a, o, i; return e = null == (n = e) ? "" : h(n), a = function (e) { var t = b(e), r = t % 1; return t == t ? r ? t - r : t : 0; }(r), o = 0, i = e.length, a == a && (void 0 !== i && (a = a <= i ? a : i), void 0 !== o && (a = a >= o ? a : o)), r = a, t = h(t), e.slice(r, r + t.length) == t; }; }).call(this, r(3)); }, function (e, t) { var r; r = function () { return this; }(); try { r = r || new Function("return this")(); } catch (e) { "object" == typeof window && (r = window); } e.exports = r; }, function (e, t, r) { (function (t) { var r = /^\[object .+?Constructor\]$/, n = "object" == typeof t && t && t.Object === Object && t, a = "object" == typeof self && self && self.Object === Object && self, o = n || a || Function("return this")(); var i, u = Array.prototype, c = Function.prototype, s = Object.prototype, l = o["__core-js_shared__"], f = (i = /[^.]+$/.exec(l && l.keys && l.keys.IE_PROTO || "")) ? "Symbol(src)_1." + i : "", d = c.toString, p = s.hasOwnProperty, h = s.toString, m = RegExp("^" + d.call(p).replace(/[\\^$.*+?()[\]{}|]/g, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"), y = u.splice, b = x(o, "Map"), g = x(Object, "create"); function v(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function C(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function _(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function w(e, t) { for (var r, n, a = e.length; a--;) if ((r = e[a][0]) === (n = t) || r != r && n != n) return a; return -1; } function S(e) { return !(!O(e) || (t = e, f && f in t)) && (function (e) { var t = O(e) ? h.call(e) : ""; return "[object Function]" == t || "[object GeneratorFunction]" == t; }(e) || function (e) { var t = !1; if (null != e && "function" != typeof e.toString) try { t = !!(e + ""); } catch (e) {} return t; }(e) ? m : r).test(function (e) { if (null != e) { try { return d.call(e); } catch (e) {} try { return e + ""; } catch (e) {} } return ""; }(e)); var t; } function j(e, t) { var r, n, a = e.__data__; return ("string" == (n = typeof (r = t)) || "number" == n || "symbol" == n || "boolean" == n ? "__proto__" !== r : null === r) ? a["string" == typeof t ? "string" : "hash"] : a.map; } function x(e, t) { var r = function (e, t) { return null == e ? void 0 : e[t]; }(e, t); return S(r) ? r : void 0; } function N(e, t) { if ("function" != typeof e || t && "function" != typeof t) throw new TypeError("Expected a function"); var r = function () { var n = arguments, a = t ? t.apply(this, n) : n[0], o = r.cache; if (o.has(a)) return o.get(a); var i = e.apply(this, n); return r.cache = o.set(a, i), i; }; return r.cache = new (N.Cache || _)(), r; } function O(e) { var t = typeof e; return !!e && ("object" == t || "function" == t); } v.prototype.clear = function () { this.__data__ = g ? g(null) : {}; }, v.prototype.delete = function (e) { return this.has(e) && delete this.__data__[e]; }, v.prototype.get = function (e) { var t = this.__data__; if (g) { var r = t[e]; return "__lodash_hash_undefined__" === r ? void 0 : r; } return p.call(t, e) ? t[e] : void 0; }, v.prototype.has = function (e) { var t = this.__data__; return g ? void 0 !== t[e] : p.call(t, e); }, v.prototype.set = function (e, t) { return this.__data__[e] = g && void 0 === t ? "__lodash_hash_undefined__" : t, this; }, C.prototype.clear = function () { this.__data__ = []; }, C.prototype.delete = function (e) { var t = this.__data__, r = w(t, e); return !(r < 0) && (r == t.length - 1 ? t.pop() : y.call(t, r, 1), !0); }, C.prototype.get = function (e) { var t = this.__data__, r = w(t, e); return r < 0 ? void 0 : t[r][1]; }, C.prototype.has = function (e) { return w(this.__data__, e) > -1; }, C.prototype.set = function (e, t) { var r = this.__data__, n = w(r, e); return n < 0 ? r.push([e, t]) : r[n][1] = t, this; }, _.prototype.clear = function () { this.__data__ = { hash: new v(), map: new (b || C)(), string: new v() }; }, _.prototype.delete = function (e) { return j(this, e).delete(e); }, _.prototype.get = function (e) { return j(this, e).get(e); }, _.prototype.has = function (e) { return j(this, e).has(e); }, _.prototype.set = function (e, t) { return j(this, e).set(e, t), this; }, N.Cache = _, e.exports = N; }).call(this, r(3)); }, function (e, t, r) { (function (t) { var r = /^\s+|\s+$/g, n = /^[-+]0x[0-9a-f]+$/i, a = /^0b[01]+$/i, o = /^0o[0-7]+$/i, i = parseInt, u = "object" == typeof t && t && t.Object === Object && t, c = "object" == typeof self && self && self.Object === Object && self, s = u || c || Function("return this")(), l = Object.prototype.toString, f = Math.max, d = Math.min, p = function () { return s.Date.now(); }; function h(e) { var t = typeof e; return !!e && ("object" == t || "function" == t); } function m(e) { if ("number" == typeof e) return e; if (function (e) { return "symbol" == typeof e || function (e) { return !!e && "object" == typeof e; }(e) && "[object Symbol]" == l.call(e); }(e)) return NaN; if (h(e)) { var t = "function" == typeof e.valueOf ? e.valueOf() : e; e = h(t) ? t + "" : t; } if ("string" != typeof e) return 0 === e ? e : +e; e = e.replace(r, ""); var u = a.test(e); return u || o.test(e) ? i(e.slice(2), u ? 2 : 8) : n.test(e) ? NaN : +e; } e.exports = function (e, t, r) { var n, a, o, i, u, c, s = 0, l = !1, y = !1, b = !0; if ("function" != typeof e) throw new TypeError("Expected a function"); function g(t) { var r = n, o = a; return n = a = void 0, s = t, i = e.apply(o, r); } function v(e) { return s = e, u = setTimeout(_, t), l ? g(e) : i; } function C(e) { var r = e - c; return void 0 === c || r >= t || r < 0 || y && e - s >= o; } function _() { var e = p(); if (C(e)) return w(e); u = setTimeout(_, function (e) { var r = t - (e - c); return y ? d(r, o - (e - s)) : r; }(e)); } function w(e) { return u = void 0, b && n ? g(e) : (n = a = void 0, i); } function S() { var e = p(), r = C(e); if (n = arguments, a = this, c = e, r) { if (void 0 === u) return v(c); if (y) return u = setTimeout(_, t), g(c); } return void 0 === u && (u = setTimeout(_, t)), i; } return t = m(t) || 0, h(r) && (l = !!r.leading, o = (y = "maxWait" in r) ? f(m(r.maxWait) || 0, t) : o, b = "trailing" in r ? !!r.trailing : b), S.cancel = function () { void 0 !== u && clearTimeout(u), s = 0, n = c = a = u = void 0; }, S.flush = function () { return void 0 === u ? i : w(p()); }, S; }; }).call(this, r(3)); }, function (e, t, r) { (function (e, r) { var n = "[object Arguments]", a = "[object Map]", o = "[object Object]", i = "[object Set]", u = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, c = /^\w*$/, s = /^\./, l = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, f = /\\(\\)?/g, d = /^\[object .+?Constructor\]$/, p = /^(?:0|[1-9]\d*)$/, h = {}; h["[object Float32Array]"] = h["[object Float64Array]"] = h["[object Int8Array]"] = h["[object Int16Array]"] = h["[object Int32Array]"] = h["[object Uint8Array]"] = h["[object Uint8ClampedArray]"] = h["[object Uint16Array]"] = h["[object Uint32Array]"] = !0, h[n] = h["[object Array]"] = h["[object ArrayBuffer]"] = h["[object Boolean]"] = h["[object DataView]"] = h["[object Date]"] = h["[object Error]"] = h["[object Function]"] = h[a] = h["[object Number]"] = h[o] = h["[object RegExp]"] = h[i] = h["[object String]"] = h["[object WeakMap]"] = !1; var m = "object" == typeof e && e && e.Object === Object && e, y = "object" == typeof self && self && self.Object === Object && self, b = m || y || Function("return this")(), g = t && !t.nodeType && t, v = g && "object" == typeof r && r && !r.nodeType && r, C = v && v.exports === g && m.process, _ = function () { try { return C && C.binding("util"); } catch (e) {} }(), w = _ && _.isTypedArray; function S(e, t, r, n) { var a = -1, o = e ? e.length : 0; for (n && o && (r = e[++a]); ++a < o;) r = t(r, e[a], a, e); return r; } function j(e, t) { for (var r = -1, n = e ? e.length : 0; ++r < n;) if (t(e[r], r, e)) return !0; return !1; } function x(e, t, r, n, a) { return a(e, function (e, a, o) { r = n ? (n = !1, e) : t(r, e, a, o); }), r; } function N(e) { var t = !1; if (null != e && "function" != typeof e.toString) try { t = !!(e + ""); } catch (e) {} return t; } function O(e) { var t = -1, r = Array(e.size); return e.forEach(function (e, n) { r[++t] = [n, e]; }), r; } function k(e) { var t = -1, r = Array(e.size); return e.forEach(function (e) { r[++t] = e; }), r; } var E, T, I, A = Array.prototype, D = Function.prototype, P = Object.prototype, F = b["__core-js_shared__"], M = (E = /[^.]+$/.exec(F && F.keys && F.keys.IE_PROTO || "")) ? "Symbol(src)_1." + E : "", R = D.toString, L = P.hasOwnProperty, z = P.toString, B = RegExp("^" + R.call(L).replace(/[\\^$.*+?()[\]{}|]/g, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"), G = b.Symbol, $ = b.Uint8Array, V = P.propertyIsEnumerable, K = A.splice, U = (T = Object.keys, I = Object, function (e) { return T(I(e)); }), q = Ne(b, "DataView"), H = Ne(b, "Map"), W = Ne(b, "Promise"), J = Ne(b, "Set"), Z = Ne(b, "WeakMap"), Q = Ne(Object, "create"), Y = Pe(q), X = Pe(H), ee = Pe(W), te = Pe(J), re = Pe(Z), ne = G ? G.prototype : void 0, ae = ne ? ne.valueOf : void 0, oe = ne ? ne.toString : void 0; function ie(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function ue(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function ce(e) { var t = -1, r = e ? e.length : 0; for (this.clear(); ++t < r;) { var n = e[t]; this.set(n[0], n[1]); } } function se(e) { var t = -1, r = e ? e.length : 0; for (this.__data__ = new ce(); ++t < r;) this.add(e[t]); } function le(e) { this.__data__ = new ue(e); } function fe(e, t) { var r = Le(e) || Re(e) ? function (e, t) { for (var r = -1, n = Array(e); ++r < e;) n[r] = t(r); return n; }(e.length, String) : [], n = r.length, a = !!n; for (var o in e) !t && !L.call(e, o) || a && ("length" == o || ke(o, n)) || r.push(o); return r; } function de(e, t) { for (var r = e.length; r--;) if (Me(e[r][0], t)) return r; return -1; } ie.prototype.clear = function () { this.__data__ = Q ? Q(null) : {}; }, ie.prototype.delete = function (e) { return this.has(e) && delete this.__data__[e]; }, ie.prototype.get = function (e) { var t = this.__data__; if (Q) { var r = t[e]; return "__lodash_hash_undefined__" === r ? void 0 : r; } return L.call(t, e) ? t[e] : void 0; }, ie.prototype.has = function (e) { var t = this.__data__; return Q ? void 0 !== t[e] : L.call(t, e); }, ie.prototype.set = function (e, t) { return this.__data__[e] = Q && void 0 === t ? "__lodash_hash_undefined__" : t, this; }, ue.prototype.clear = function () { this.__data__ = []; }, ue.prototype.delete = function (e) { var t = this.__data__, r = de(t, e); return !(r < 0) && (r == t.length - 1 ? t.pop() : K.call(t, r, 1), !0); }, ue.prototype.get = function (e) { var t = this.__data__, r = de(t, e); return r < 0 ? void 0 : t[r][1]; }, ue.prototype.has = function (e) { return de(this.__data__, e) > -1; }, ue.prototype.set = function (e, t) { var r = this.__data__, n = de(r, e); return n < 0 ? r.push([e, t]) : r[n][1] = t, this; }, ce.prototype.clear = function () { this.__data__ = { hash: new ie(), map: new (H || ue)(), string: new ie() }; }, ce.prototype.delete = function (e) { return xe(this, e).delete(e); }, ce.prototype.get = function (e) { return xe(this, e).get(e); }, ce.prototype.has = function (e) { return xe(this, e).has(e); }, ce.prototype.set = function (e, t) { return xe(this, e).set(e, t), this; }, se.prototype.add = se.prototype.push = function (e) { return this.__data__.set(e, "__lodash_hash_undefined__"), this; }, se.prototype.has = function (e) { return this.__data__.has(e); }, le.prototype.clear = function () { this.__data__ = new ue(); }, le.prototype.delete = function (e) { return this.__data__.delete(e); }, le.prototype.get = function (e) { return this.__data__.get(e); }, le.prototype.has = function (e) { return this.__data__.has(e); }, le.prototype.set = function (e, t) { var r = this.__data__; if (r instanceof ue) { var n = r.__data__; if (!H || n.length < 199) return n.push([e, t]), this; r = this.__data__ = new ce(n); } return r.set(e, t), this; }; var pe, me = (pe = function (e, t) { return e && ye(e, t, qe); }, function (e, t) { if (null == e) return e; if (!ze(e)) return pe(e, t); for (var r = e.length, n = -1, a = Object(e); (++n < r) && !1 !== t(a[n], n, a);); return e; }), ye = function (e) { return function (t, r, n) { for (var a = -1, o = Object(t), i = n(t), u = i.length; u--;) { var c = i[e ? u : ++a]; if (!1 === r(o[c], c, o)) break; } return t; }; }(); function be(e, t) { for (var r = 0, n = (t = Ee(t, e) ? [t] : Se(t)).length; null != e && r < n;) e = e[De(t[r++])]; return r && r == n ? e : void 0; } function ge(e, t) { return null != e && t in Object(e); } function ve(e, t, r, u, c) { return e === t || (null == e || null == t || !$e(e) && !Ve(t) ? e != e && t != t : function (e, t, r, u, c, s) { var l = Le(e), f = Le(t), d = "[object Array]", p = "[object Array]"; l || (d = (d = Oe(e)) == n ? o : d); f || (p = (p = Oe(t)) == n ? o : p); var h = d == o && !N(e), m = p == o && !N(t), y = d == p; if (y && !h) return s || (s = new le()), l || Ue(e) ? je(e, t, r, u, c, s) : function (e, t, r, n, o, u, c) { switch (r) { case "[object DataView]": if (e.byteLength != t.byteLength || e.byteOffset != t.byteOffset) return !1; e = e.buffer, t = t.buffer; case "[object ArrayBuffer]": return !(e.byteLength != t.byteLength || !n(new $(e), new $(t))); case "[object Boolean]": case "[object Date]": case "[object Number]": return Me(+e, +t); case "[object Error]": return e.name == t.name && e.message == t.message; case "[object RegExp]": case "[object String]": return e == t + ""; case a: var s = O; case i: var l = 2 & u; if (s || (s = k), e.size != t.size && !l) return !1; var f = c.get(e); if (f) return f == t; u |= 1, c.set(e, t); var d = je(s(e), s(t), n, o, u, c); return c.delete(e), d; case "[object Symbol]": if (ae) return ae.call(e) == ae.call(t); } return !1; }(e, t, d, r, u, c, s); if (!(2 & c)) { var b = h && L.call(e, "__wrapped__"), g = m && L.call(t, "__wrapped__"); if (b || g) { var v = b ? e.value() : e, C = g ? t.value() : t; return s || (s = new le()), r(v, C, u, c, s); } } if (!y) return !1; return s || (s = new le()), function (e, t, r, n, a, o) { var i = 2 & a, u = qe(e), c = u.length, s = qe(t).length; if (c != s && !i) return !1; var l = c; for (; l--;) { var f = u[l]; if (!(i ? f in t : L.call(t, f))) return !1; } var d = o.get(e); if (d && o.get(t)) return d == t; var p = !0; o.set(e, t), o.set(t, e); var h = i; for (; ++l < c;) { f = u[l]; var m = e[f], y = t[f]; if (n) var b = i ? n(y, m, f, t, e, o) : n(m, y, f, e, t, o); if (!(void 0 === b ? m === y || r(m, y, n, a, o) : b)) { p = !1; break; } h || (h = "constructor" == f); } if (p && !h) { var g = e.constructor, v = t.constructor; g == v || !("constructor" in e) || !("constructor" in t) || "function" == typeof g && g instanceof g && "function" == typeof v && v instanceof v || (p = !1); } return o.delete(e), o.delete(t), p; }(e, t, r, u, c, s); }(e, t, ve, r, u, c)); } function Ce(e) { return !(!$e(e) || function (e) { return !!M && M in e; }(e)) && (Be(e) || N(e) ? B : d).test(Pe(e)); } function _e(e) { return "function" == typeof e ? e : null == e ? He : "object" == typeof e ? Le(e) ? function (e, t) { if (Ee(e) && Te(t)) return Ie(De(e), t); return function (r) { var n = function (e, t, r) { var n = null == e ? void 0 : be(e, t); return void 0 === n ? r : n; }(r, e); return void 0 === n && n === t ? function (e, t) { return null != e && function (e, t, r) { t = Ee(t, e) ? [t] : Se(t); var n, a = -1, o = t.length; for (; ++a < o;) { var i = De(t[a]); if (!(n = null != e && r(e, i))) break; e = e[i]; } if (n) return n; return !!(o = e ? e.length : 0) && Ge(o) && ke(i, o) && (Le(e) || Re(e)); }(e, t, ge); }(r, e) : ve(t, n, void 0, 3); }; }(e[0], e[1]) : function (e) { var t = function (e) { var t = qe(e), r = t.length; for (; r--;) { var n = t[r], a = e[n]; t[r] = [n, a, Te(a)]; } return t; }(e); if (1 == t.length && t[0][2]) return Ie(t[0][0], t[0][1]); return function (r) { return r === e || function (e, t, r, n) { var a = r.length, o = a, i = !n; if (null == e) return !o; for (e = Object(e); a--;) { var u = r[a]; if (i && u[2] ? u[1] !== e[u[0]] : !(u[0] in e)) return !1; } for (; ++a < o;) { var c = (u = r[a])[0], s = e[c], l = u[1]; if (i && u[2]) { if (void 0 === s && !(c in e)) return !1; } else { var f = new le(); if (n) var d = n(s, l, c, e, t, f); if (!(void 0 === d ? ve(l, s, n, 3, f) : d)) return !1; } } return !0; }(r, e, t); }; }(e) : Ee(t = e) ? (r = De(t), function (e) { return null == e ? void 0 : e[r]; }) : function (e) { return function (t) { return be(t, e); }; }(t); var t, r; } function we(e) { if (r = (t = e) && t.constructor, n = "function" == typeof r && r.prototype || P, t !== n) return U(e); var t, r, n, a = []; for (var o in Object(e)) L.call(e, o) && "constructor" != o && a.push(o); return a; } function Se(e) { return Le(e) ? e : Ae(e); } function je(e, t, r, n, a, o) { var i = 2 & a, u = e.length, c = t.length; if (u != c && !(i && c > u)) return !1; var s = o.get(e); if (s && o.get(t)) return s == t; var l = -1, f = !0, d = 1 & a ? new se() : void 0; for (o.set(e, t), o.set(t, e); ++l < u;) { var p = e[l], h = t[l]; if (n) var m = i ? n(h, p, l, t, e, o) : n(p, h, l, e, t, o); if (void 0 !== m) { if (m) continue; f = !1; break; } if (d) { if (!j(t, function (e, t) { if (!d.has(t) && (p === e || r(p, e, n, a, o))) return d.add(t); })) { f = !1; break; } } else if (p !== h && !r(p, h, n, a, o)) { f = !1; break; } } return o.delete(e), o.delete(t), f; } function xe(e, t) { var r, n, a = e.__data__; return ("string" == (n = typeof (r = t)) || "number" == n || "symbol" == n || "boolean" == n ? "__proto__" !== r : null === r) ? a["string" == typeof t ? "string" : "hash"] : a.map; } function Ne(e, t) { var r = function (e, t) { return null == e ? void 0 : e[t]; }(e, t); return Ce(r) ? r : void 0; } var Oe = function (e) { return z.call(e); }; function ke(e, t) { return !!(t = null == t ? 9007199254740991 : t) && ("number" == typeof e || p.test(e)) && e > -1 && e % 1 == 0 && e < t; } function Ee(e, t) { if (Le(e)) return !1; var r = typeof e; return !("number" != r && "symbol" != r && "boolean" != r && null != e && !Ke(e)) || c.test(e) || !u.test(e) || null != t && e in Object(t); } function Te(e) { return e == e && !$e(e); } function Ie(e, t) { return function (r) { return null != r && r[e] === t && (void 0 !== t || e in Object(r)); }; } (q && "[object DataView]" != Oe(new q(new ArrayBuffer(1))) || H && Oe(new H()) != a || W && "[object Promise]" != Oe(W.resolve()) || J && Oe(new J()) != i || Z && "[object WeakMap]" != Oe(new Z())) && (Oe = function (e) { var t = z.call(e), r = t == o ? e.constructor : void 0, n = r ? Pe(r) : void 0; if (n) switch (n) { case Y: return "[object DataView]"; case X: return a; case ee: return "[object Promise]"; case te: return i; case re: return "[object WeakMap]"; } return t; }); var Ae = Fe(function (e) { var t; e = null == (t = e) ? "" : function (e) { if ("string" == typeof e) return e; if (Ke(e)) return oe ? oe.call(e) : ""; var t = e + ""; return "0" == t && 1 / e == -1 / 0 ? "-0" : t; }(t); var r = []; return s.test(e) && r.push(""), e.replace(l, function (e, t, n, a) { r.push(n ? a.replace(f, "$1") : t || e); }), r; }); function De(e) { if ("string" == typeof e || Ke(e)) return e; var t = e + ""; return "0" == t && 1 / e == -1 / 0 ? "-0" : t; } function Pe(e) { if (null != e) { try { return R.call(e); } catch (e) {} try { return e + ""; } catch (e) {} } return ""; } function Fe(e, t) { if ("function" != typeof e || t && "function" != typeof t) throw new TypeError("Expected a function"); var r = function () { var n = arguments, a = t ? t.apply(this, n) : n[0], o = r.cache; if (o.has(a)) return o.get(a); var i = e.apply(this, n); return r.cache = o.set(a, i), i; }; return r.cache = new (Fe.Cache || ce)(), r; } function Me(e, t) { return e === t || e != e && t != t; } function Re(e) { return function (e) { return Ve(e) && ze(e); }(e) && L.call(e, "callee") && (!V.call(e, "callee") || z.call(e) == n); } Fe.Cache = ce; var Le = Array.isArray; function ze(e) { return null != e && Ge(e.length) && !Be(e); } function Be(e) { var t = $e(e) ? z.call(e) : ""; return "[object Function]" == t || "[object GeneratorFunction]" == t; } function Ge(e) { return "number" == typeof e && e > -1 && e % 1 == 0 && e <= 9007199254740991; } function $e(e) { var t = typeof e; return !!e && ("object" == t || "function" == t); } function Ve(e) { return !!e && "object" == typeof e; } function Ke(e) { return "symbol" == typeof e || Ve(e) && "[object Symbol]" == z.call(e); } var Ue = w ? function (e) { return function (t) { return e(t); }; }(w) : function (e) { return Ve(e) && Ge(e.length) && !!h[z.call(e)]; }; function qe(e) { return ze(e) ? fe(e) : we(e); } function He(e) { return e; } r.exports = function (e, t, r) { var n = Le(e) ? S : x, a = arguments.length < 3; return n(e, _e(t), r, a, me); }; }).call(this, r(3), r(7)(e)); }, function (e, t) { e.exports = function (e) { return e.webpackPolyfill || (e.deprecate = function () {}, e.paths = [], e.children || (e.children = []), Object.defineProperty(e, "loaded", { enumerable: !0, get: function () { return e.l; } }), Object.defineProperty(e, "id", { enumerable: !0, get: function () { return e.i; } }), e.webpackPolyfill = 1), e; }; }, function (e, t) { String.prototype.padEnd || (String.prototype.padEnd = function (e, t) { return e >>= 0, t = String(void 0 !== t ? t : " "), this.length > e ? String(this) : ((e -= this.length) > t.length && (t += t.repeat(e / t.length)), String(this) + t.slice(0, e)); }); }, function (e, t, r) { function n(e, t, r) { return t in e ? Object.defineProperty(e, t, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = r, e; } function a(e) { if (Symbol.iterator in Object(e) || "[object Arguments]" === Object.prototype.toString.call(e)) return Array.from(e); } function o(e) { return function (e) { if (Array.isArray(e)) { for (var t = 0, r = new Array(e.length); t < e.length; t++) r[t] = e[t]; return r; } }(e) || a(e) || function () { throw new TypeError("Invalid attempt to spread non-iterable instance"); }(); } function i(e) { if (Array.isArray(e)) return e; } function u() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } function c(e, t) { if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function"); } function s(e, t) { for (var r = 0; r < t.length; r++) { var n = t[r]; n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, n.key, n); } } function l(e) { return (l = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (e) { return typeof e; } : function (e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e; })(e); } function f(e) { return (f = "function" == typeof Symbol && "symbol" === l(Symbol.iterator) ? function (e) { return l(e); } : function (e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : l(e); })(e); } function d(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; } function p(e) { return (p = Object.setPrototypeOf ? Object.getPrototypeOf : function (e) { return e.__proto__ || Object.getPrototypeOf(e); })(e); } function h(e, t) { return (h = Object.setPrototypeOf || function (e, t) { return e.__proto__ = t, e; })(e, t); } r.r(t); var m = r(0), y = r.n(m), b = r(5), g = r.n(b), v = r(4), C = r.n(v), _ = r(6), w = r.n(_), S = r(2), j = r.n(S), x = r(1), N = r.n(x); r(8); function O(e, t) { return i(e) || function (e, t) { var r = [], n = !0, a = !1, o = void 0; try { for (var i, u = e[Symbol.iterator](); !(n = (i = u.next()).done) && (r.push(i.value), !t || r.length !== t); n = !0); } catch (e) { a = !0, o = e; } finally { try { n || null == u.return || u.return(); } finally { if (a) throw o; } } return r; }(e, t) || u(); } var k = [["Afghanistan", ["asia"], "af", "93"], ["Albania", ["europe"], "al", "355"], ["Algeria", ["africa", "north-africa"], "dz", "213"], ["Andorra", ["europe"], "ad", "376"], ["Angola", ["africa"], "ao", "244"], ["Antigua and Barbuda", ["america", "carribean"], "ag", "1268"], ["Argentina", ["america", "south-america"], "ar", "54", "(..) ........", 0, ["11", "221", "223", "261", "264", "2652", "280", "2905", "291", "2920", "2966", "299", "341", "342", "343", "351", "376", "379", "381", "3833", "385", "387", "388"]], ["Armenia", ["asia", "ex-ussr"], "am", "374", ".. ......"], ["Aruba", ["america", "carribean"], "aw", "297"], ["Australia", ["oceania"], "au", "61", "(..) .... ....", 0, ["2", "3", "4", "7", "8", "02", "03", "04", "07", "08"]], ["Austria", ["europe", "eu-union"], "at", "43"], ["Azerbaijan", ["asia", "ex-ussr"], "az", "994", "(..) ... .. .."], ["Bahamas", ["america", "carribean"], "bs", "1242"], ["Bahrain", ["middle-east"], "bh", "973"], ["Bangladesh", ["asia"], "bd", "880"], ["Barbados", ["america", "carribean"], "bb", "1246"], ["Belarus", ["europe", "ex-ussr"], "by", "375", "(..) ... .. .."], ["Belgium", ["europe", "eu-union"], "be", "32", "... .. .. .."], ["Belize", ["america", "central-america"], "bz", "501"], ["Benin", ["africa"], "bj", "229"], ["Bhutan", ["asia"], "bt", "975"], ["Bolivia", ["america", "south-america"], "bo", "591"], ["Bosnia and Herzegovina", ["europe", "ex-yugos"], "ba", "387"], ["Botswana", ["africa"], "bw", "267"], ["Brazil", ["america", "south-america"], "br", "55", "(..) ........."], ["British Indian Ocean Territory", ["asia"], "io", "246"], ["Brunei", ["asia"], "bn", "673"], ["Bulgaria", ["europe", "eu-union"], "bg", "359"], ["Burkina Faso", ["africa"], "bf", "226"], ["Burundi", ["africa"], "bi", "257"], ["Cambodia", ["asia"], "kh", "855"], ["Cameroon", ["africa"], "cm", "237"], ["Canada", ["america", "north-america"], "ca", "1", "(...) ...-....", 1, ["204", "226", "236", "249", "250", "289", "306", "343", "365", "387", "403", "416", "418", "431", "437", "438", "450", "506", "514", "519", "548", "579", "581", "587", "604", "613", "639", "647", "672", "705", "709", "742", "778", "780", "782", "807", "819", "825", "867", "873", "902", "905"]], ["Cape Verde", ["africa"], "cv", "238"], ["Caribbean Netherlands", ["america", "carribean"], "bq", "599", "", 1], ["Central African Republic", ["africa"], "cf", "236"], ["Chad", ["africa"], "td", "235"], ["Chile", ["america", "south-america"], "cl", "56"], ["China", ["asia"], "cn", "86", "..-........."], ["Colombia", ["america", "south-america"], "co", "57", "... ... ...."], ["Comoros", ["africa"], "km", "269"], ["Congo", ["africa"], "cd", "243"], ["Congo", ["africa"], "cg", "242"], ["Costa Rica", ["america", "central-america"], "cr", "506", "....-...."], ["Côte d’Ivoire", ["africa"], "ci", "225", ".. .. .. .."], ["Croatia", ["europe", "eu-union", "ex-yugos"], "hr", "385"], ["Cuba", ["america", "carribean"], "cu", "53"], ["Curaçao", ["america", "carribean"], "cw", "599", "", 0], ["Cyprus", ["europe", "eu-union"], "cy", "357", ".. ......"], ["Czech Republic", ["europe", "eu-union"], "cz", "420", "... ... ..."], ["Denmark", ["europe", "eu-union", "baltic"], "dk", "45", ".. .. .. .."], ["Djibouti", ["africa"], "dj", "253"], ["Dominica", ["america", "carribean"], "dm", "1767"], ["Dominican Republic", ["america", "carribean"], "do", "1", "", 2, ["809", "829", "849"]], ["Ecuador", ["america", "south-america"], "ec", "593"], ["Egypt", ["africa", "north-africa"], "eg", "20"], ["El Salvador", ["america", "central-america"], "sv", "503", "....-...."], ["Equatorial Guinea", ["africa"], "gq", "240"], ["Eritrea", ["africa"], "er", "291"], ["Estonia", ["europe", "eu-union", "ex-ussr", "baltic"], "ee", "372", ".... ......"], ["Ethiopia", ["africa"], "et", "251"], ["Fiji", ["oceania"], "fj", "679"], ["Finland", ["europe", "eu-union", "baltic"], "fi", "358", ".. ... .. .."], ["France", ["europe", "eu-union"], "fr", "33", ". .. .. .. .."], ["French Guiana", ["america", "south-america"], "gf", "594"], ["French Polynesia", ["oceania"], "pf", "689"], ["Gabon", ["africa"], "ga", "241"], ["Gambia", ["africa"], "gm", "220"], ["Georgia", ["asia", "ex-ussr"], "ge", "995"], ["Germany", ["europe", "eu-union", "baltic"], "de", "49", ".... ........"], ["Ghana", ["africa"], "gh", "233"], ["Greece", ["europe", "eu-union"], "gr", "30"], ["Grenada", ["america", "carribean"], "gd", "1473"], ["Guadeloupe", ["america", "carribean"], "gp", "590", "", 0], ["Guam", ["oceania"], "gu", "1671"], ["Guatemala", ["america", "central-america"], "gt", "502", "....-...."], ["Guinea", ["africa"], "gn", "224"], ["Guinea-Bissau", ["africa"], "gw", "245"], ["Guyana", ["america", "south-america"], "gy", "592"], ["Haiti", ["america", "carribean"], "ht", "509", "....-...."], ["Honduras", ["america", "central-america"], "hn", "504"], ["Hong Kong", ["asia"], "hk", "852", ".... ...."], ["Hungary", ["europe", "eu-union"], "hu", "36"], ["Iceland", ["europe"], "is", "354", "... ...."], ["India", ["asia"], "in", "91", ".....-....."], ["Indonesia", ["asia"], "id", "62"], ["Iran", ["middle-east"], "ir", "98", "... ... ...."], ["Iraq", ["middle-east"], "iq", "964"], ["Ireland", ["europe", "eu-union"], "ie", "353", ".. ......."], ["Israel", ["middle-east"], "il", "972", "... ... ...."], ["Italy", ["europe", "eu-union"], "it", "39", "... .......", 0], ["Jamaica", ["america", "carribean"], "jm", "1876"], ["Japan", ["asia"], "jp", "81", ".. .... ...."], ["Jordan", ["middle-east"], "jo", "962"], ["Kazakhstan", ["asia", "ex-ussr"], "kz", "7", "... ...-..-..", 1, ["310", "311", "312", "313", "315", "318", "321", "324", "325", "326", "327", "336", "7172", "73622"]], ["Kenya", ["africa"], "ke", "254"], ["Kiribati", ["oceania"], "ki", "686"], ["Kosovo", ["europe", "ex-yugos"], "xk", "383"], ["Kuwait", ["middle-east"], "kw", "965"], ["Kyrgyzstan", ["asia", "ex-ussr"], "kg", "996", "... ... ..."], ["Laos", ["asia"], "la", "856"], ["Latvia", ["europe", "eu-union", "ex-ussr", "baltic"], "lv", "371", ".. ... ..."], ["Lebanon", ["middle-east"], "lb", "961"], ["Lesotho", ["africa"], "ls", "266"], ["Liberia", ["africa"], "lr", "231"], ["Libya", ["africa", "north-africa"], "ly", "218"], ["Liechtenstein", ["europe"], "li", "423"], ["Lithuania", ["europe", "eu-union", "ex-ussr", "baltic"], "lt", "370"], ["Luxembourg", ["europe", "eu-union"], "lu", "352"], ["Macau", ["asia"], "mo", "853"], ["Macedonia", ["europe", "ex-yugos"], "mk", "389"], ["Madagascar", ["africa"], "mg", "261"], ["Malawi", ["africa"], "mw", "265"], ["Malaysia", ["asia"], "my", "60", "..-....-...."], ["Maldives", ["asia"], "mv", "960"], ["Mali", ["africa"], "ml", "223"], ["Malta", ["europe", "eu-union"], "mt", "356"], ["Marshall Islands", ["oceania"], "mh", "692"], ["Martinique", ["america", "carribean"], "mq", "596"], ["Mauritania", ["africa"], "mr", "222"], ["Mauritius", ["africa"], "mu", "230"], ["Mexico", ["america", "central-america"], "mx", "52", "... ... ....", 0, ["55", "81", "33", "656", "664", "998", "774", "229"]], ["Micronesia", ["oceania"], "fm", "691"], ["Moldova", ["europe"], "md", "373", "(..) ..-..-.."], ["Monaco", ["europe"], "mc", "377"], ["Mongolia", ["asia"], "mn", "976"], ["Montenegro", ["europe", "ex-yugos"], "me", "382"], ["Morocco", ["africa", "north-africa"], "ma", "212"], ["Mozambique", ["africa"], "mz", "258"], ["Myanmar", ["asia"], "mm", "95"], ["Namibia", ["africa"], "na", "264"], ["Nauru", ["africa"], "nr", "674"], ["Nepal", ["asia"], "np", "977"], ["Netherlands", ["europe", "eu-union"], "nl", "31", ".. ........"], ["New Caledonia", ["oceania"], "nc", "687"], ["New Zealand", ["oceania"], "nz", "64", "...-...-...."], ["Nicaragua", ["america", "central-america"], "ni", "505"], ["Niger", ["africa"], "ne", "227"], ["Nigeria", ["africa"], "ng", "234"], ["North Korea", ["asia"], "kp", "850"], ["Norway", ["europe", "baltic"], "no", "47", "... .. ..."], ["Oman", ["middle-east"], "om", "968"], ["Pakistan", ["asia"], "pk", "92", "...-......."], ["Palau", ["oceania"], "pw", "680"], ["Palestine", ["middle-east"], "ps", "970"], ["Panama", ["america", "central-america"], "pa", "507"], ["Papua New Guinea", ["oceania"], "pg", "675"], ["Paraguay", ["america", "south-america"], "py", "595"], ["Peru", ["america", "south-america"], "pe", "51"], ["Philippines", ["asia"], "ph", "63", ".... ......."], ["Poland", ["europe", "eu-union", "baltic"], "pl", "48", "...-...-..."], ["Portugal", ["europe", "eu-union"], "pt", "351"], ["Puerto Rico", ["america", "carribean"], "pr", "1", "", 3, ["787", "939"]], ["Qatar", ["middle-east"], "qa", "974"], ["Réunion", ["africa"], "re", "262"], ["Romania", ["europe", "eu-union"], "ro", "40"], ["Russia", ["europe", "asia", "ex-ussr", "baltic"], "ru", "7", "(...) ...-..-..", 0], ["Rwanda", ["africa"], "rw", "250"], ["Saint Kitts and Nevis", ["america", "carribean"], "kn", "1869"], ["Saint Lucia", ["america", "carribean"], "lc", "1758"], ["Saint Vincent and the Grenadines", ["america", "carribean"], "vc", "1784"], ["Samoa", ["oceania"], "ws", "685"], ["San Marino", ["europe"], "sm", "378"], ["São Tomé and Príncipe", ["africa"], "st", "239"], ["Saudi Arabia", ["middle-east"], "sa", "966"], ["Senegal", ["africa"], "sn", "221"], ["Serbia", ["europe", "ex-yugos"], "rs", "381"], ["Seychelles", ["africa"], "sc", "248"], ["Sierra Leone", ["africa"], "sl", "232"], ["Singapore", ["asia"], "sg", "65", "....-...."], ["Slovakia", ["europe", "eu-union"], "sk", "421"], ["Slovenia", ["europe", "eu-union", "ex-yugos"], "si", "386"], ["Solomon Islands", ["oceania"], "sb", "677"], ["Somalia", ["africa"], "so", "252"], ["South Africa", ["africa"], "za", "27"], ["South Korea", ["asia"], "kr", "82", "... .... ...."], ["South Sudan", ["africa", "north-africa"], "ss", "211"], ["Spain", ["europe", "eu-union"], "es", "34", "... ... ..."], ["Sri Lanka", ["asia"], "lk", "94"], ["Sudan", ["africa"], "sd", "249"], ["Suriname", ["america", "south-america"], "sr", "597"], ["Swaziland", ["africa"], "sz", "268"], ["Sweden", ["europe", "eu-union", "baltic"], "se", "46", "(...) ...-..."], ["Switzerland", ["europe"], "ch", "41", ".. ... .. .."], ["Syria", ["middle-east"], "sy", "963"], ["Taiwan", ["asia"], "tw", "886"], ["Tajikistan", ["asia", "ex-ussr"], "tj", "992"], ["Tanzania", ["africa"], "tz", "255"], ["Thailand", ["asia"], "th", "66"], ["Timor-Leste", ["asia"], "tl", "670"], ["Togo", ["africa"], "tg", "228"], ["Tonga", ["oceania"], "to", "676"], ["Trinidad and Tobago", ["america", "carribean"], "tt", "1868"], ["Tunisia", ["africa", "north-africa"], "tn", "216"], ["Turkey", ["europe"], "tr", "90", "... ... .. .."], ["Turkmenistan", ["asia", "ex-ussr"], "tm", "993"], ["Tuvalu", ["asia"], "tv", "688"], ["Uganda", ["africa"], "ug", "256"], ["Ukraine", ["europe", "ex-ussr"], "ua", "380", "(..) ... .. .."], ["United Arab Emirates", ["middle-east"], "ae", "971"], ["United Kingdom", ["europe", "eu-union"], "gb", "44", ".... ......"], ["United States", ["america", "north-america"], "us", "1", "(...) ...-....", 0, ["907", "205", "251", "256", "334", "479", "501", "870", "480", "520", "602", "623", "928", "209", "213", "310", "323", "408", "415", "510", "530", "559", "562", "619", "626", "650", "661", "707", "714", "760", "805", "818", "831", "858", "909", "916", "925", "949", "951", "303", "719", "970", "203", "860", "202", "302", "239", "305", "321", "352", "386", "407", "561", "727", "772", "813", "850", "863", "904", "941", "954", "229", "404", "478", "706", "770", "912", "808", "319", "515", "563", "641", "712", "208", "217", "309", "312", "618", "630", "708", "773", "815", "847", "219", "260", "317", "574", "765", "812", "316", "620", "785", "913", "270", "502", "606", "859", "225", "318", "337", "504", "985", "413", "508", "617", "781", "978", "301", "410", "207", "231", "248", "269", "313", "517", "586", "616", "734", "810", "906", "989", "218", "320", "507", "612", "651", "763", "952", "314", "417", "573", "636", "660", "816", "228", "601", "662", "406", "252", "336", "704", "828", "910", "919", "701", "308", "402", "603", "201", "609", "732", "856", "908", "973", "505", "575", "702", "775", "212", "315", "516", "518", "585", "607", "631", "716", "718", "845", "914", "216", "330", "419", "440", "513", "614", "740", "937", "405", "580", "918", "503", "541", "215", "412", "570", "610", "717", "724", "814", "401", "803", "843", "864", "605", "423", "615", "731", "865", "901", "931", "210", "214", "254", "281", "325", "361", "409", "432", "512", "713", "806", "817", "830", "903", "915", "936", "940", "956", "972", "979", "435", "801", "276", "434", "540", "703", "757", "804", "802", "206", "253", "360", "425", "509", "262", "414", "608", "715", "920", "304", "307"]], ["Uruguay", ["america", "south-america"], "uy", "598"], ["Uzbekistan", ["asia", "ex-ussr"], "uz", "998", ".. ... .. .."], ["Vanuatu", ["oceania"], "vu", "678"], ["Vatican City", ["europe"], "va", "39", ".. .... ....", 1], ["Venezuela", ["america", "south-america"], "ve", "58"], ["Vietnam", ["asia"], "vn", "84"], ["Yemen", ["middle-east"], "ye", "967"], ["Zambia", ["africa"], "zm", "260"], ["Zimbabwe", ["africa"], "zw", "263"]], E = [["American Samoa", ["oceania"], "as", "1684"], ["Anguilla", ["america", "carribean"], "ai", "1264"], ["Bermuda", ["america", "north-america"], "bm", "1441"], ["British Virgin Islands", ["america", "carribean"], "vg", "1284"], ["Cayman Islands", ["america", "carribean"], "ky", "1345"], ["Cook Islands", ["oceania"], "ck", "682"], ["Falkland Islands", ["america", "south-america"], "fk", "500"], ["Faroe Islands", ["europe"], "fo", "298"], ["Gibraltar", ["europe"], "gi", "350"], ["Greenland", ["america"], "gl", "299"], ["Jersey", ["europe", "eu-union"], "je", "44", ".... ......"], ["Montserrat", ["america", "carribean"], "ms", "1664"], ["Niue", ["asia"], "nu", "683"], ["Norfolk Island", ["oceania"], "nf", "672"], ["Northern Mariana Islands", ["oceania"], "mp", "1670"], ["Saint Barthélemy", ["america", "carribean"], "bl", "590", "", 1], ["Saint Helena", ["africa"], "sh", "290"], ["Saint Martin", ["america", "carribean"], "mf", "590", "", 2], ["Saint Pierre and Miquelon", ["america", "north-america"], "pm", "508"], ["Sint Maarten", ["america", "carribean"], "sx", "1721"], ["Tokelau", ["oceania"], "tk", "690"], ["Turks and Caicos Islands", ["america", "carribean"], "tc", "1649"], ["U.S. Virgin Islands", ["america", "carribean"], "vi", "1340"], ["Wallis and Futuna", ["oceania"], "wf", "681"]]; function T(e, t, r, n, a) { return !r || a ? e + "".padEnd(t.length, ".") + " " + n : e + "".padEnd(t.length, ".") + " " + r; } function I(e, t, r, a, i) { var u, c, s = []; return c = !0 === t, [(u = []).concat.apply(u, o(e.map(function (e) { var o = { name: e[0], regions: e[1], iso2: e[2], countryCode: e[3], dialCode: e[3], format: T(r, e[3], e[4], a, i), priority: e[5] || 0 }, u = []; return e[6] && e[6].map(function (t) { var r = function (e) { for (var t = 1; t < arguments.length; t++) { var r = null != arguments[t] ? arguments[t] : {}, a = Object.keys(r); "function" == typeof Object.getOwnPropertySymbols && (a = a.concat(Object.getOwnPropertySymbols(r).filter(function (e) { return Object.getOwnPropertyDescriptor(r, e).enumerable; }))), a.forEach(function (t) { n(e, t, r[t]); }); } return e; }({}, o); r.dialCode = e[3] + t, r.isAreaCode = !0, r.areaCodeLength = t.length, u.push(r); }), u.length > 0 ? (o.mainCode = !0, c || "Array" === t.constructor.name && t.includes(e[2]) ? (o.hasAreaCodes = !0, [o].concat(u)) : (s = s.concat(u), [o])) : [o]; }))), s]; } function A(e, t, r, n) { if (null !== r) { var a = Object.keys(r), o = Object.values(r); a.forEach(function (r, a) { if (n) return e.push([r, o[a]]); var i = e.findIndex(function (e) { return e[0] === r; }); if (-1 === i) { var u = [r]; u[t] = o[a], e.push(u); } else e[i][t] = o[a]; }); } } function D(e, t) { return 0 === t.length ? e : e.map(function (e) { var r = t.findIndex(function (t) { return t[0] === e[2]; }); if (-1 === r) return e; var n = t[r]; return n[1] && (e[4] = n[1]), n[3] && (e[5] = n[3]), n[2] && (e[6] = n[2]), e; }); } var P = function e(t, r, n, a, i, u, s, l, f, d, p, h, m, y) { c(this, e), this.filterRegions = function (e, t) { if ("string" == typeof e) { var r = e; return t.filter(function (e) { return e.regions.some(function (e) { return e === r; }); }); } return t.filter(function (t) { return e.map(function (e) { return t.regions.some(function (t) { return t === e; }); }).some(function (e) { return e; }); }); }, this.sortTerritories = function (e, t) { var r = [].concat(o(e), o(t)); return r.sort(function (e, t) { return e.name < t.name ? -1 : e.name > t.name ? 1 : 0; }), r; }, this.getFilteredCountryList = function (e, t, r) { return 0 === e.length ? t : r ? e.map(function (e) { var r = t.find(function (t) { return t.iso2 === e; }); if (r) return r; }).filter(function (e) { return e; }) : t.filter(function (t) { return e.some(function (e) { return e === t.iso2; }); }); }, this.localizeCountries = function (e, t, r) { for (var n = 0; n < e.length; n++) void 0 !== t[e[n].iso2] ? e[n].localName = t[e[n].iso2] : void 0 !== t[e[n].name] && (e[n].localName = t[e[n].name]); return r || e.sort(function (e, t) { return e.localName < t.localName ? -1 : e.localName > t.localName ? 1 : 0; }), e; }, this.getCustomAreas = function (e, t) { for (var r = [], n = 0; n < t.length; n++) { var a = JSON.parse(JSON.stringify(e)); a.dialCode += t[n], r.push(a); } return r; }, this.excludeCountries = function (e, t) { return 0 === t.length ? e : e.filter(function (e) { return !t.includes(e.iso2); }); }; var b = function (e, t, r) { var n = []; return A(n, 1, e, !0), A(n, 3, t), A(n, 2, r), n; }(l, f, d), g = D(JSON.parse(JSON.stringify(k)), b), v = D(JSON.parse(JSON.stringify(E)), b), C = O(I(g, t, h, m, y), 2), _ = C[0], w = C[1]; if (r) { var S = O(I(v, t, h, m, y), 2), j = S[0]; S[1]; _ = this.sortTerritories(j, _); } n && (_ = this.filterRegions(n, _)), this.onlyCountries = this.localizeCountries(this.excludeCountries(this.getFilteredCountryList(a, _, s.includes("onlyCountries")), u), p, s.includes("onlyCountries")), this.preferredCountries = 0 === i.length ? [] : this.localizeCountries(this.getFilteredCountryList(i, _, s.includes("preferredCountries")), p, s.includes("preferredCountries")), this.hiddenAreaCodes = this.excludeCountries(this.getFilteredCountryList(a, w), u); }, F = function (e) { function t(e) { var r; c(this, t), (r = function (e, t) { return !t || "object" !== f(t) && "function" != typeof t ? d(e) : t; }(this, p(t).call(this, e))).getProbableCandidate = C()(function (e) { return e && 0 !== e.length ? r.state.onlyCountries.filter(function (t) { return j()(t.name.toLowerCase(), e.toLowerCase()); }, d(d(r)))[0] : null; }), r.guessSelectedCountry = C()(function (e, t, n, a) { var o; if (!1 === r.props.enableAreaCodes && (a.some(function (t) { if (j()(e, t.dialCode)) return n.some(function (e) { if (t.iso2 === e.iso2 && e.mainCode) return o = e, !0; }), !0; }), o)) return o; var i = n.find(function (e) { return e.iso2 == t; }); if ("" === e.trim()) return i; var u = n.reduce(function (t, r) { if (j()(e, r.dialCode)) { if (r.dialCode.length > t.dialCode.length) return r; if (r.dialCode.length === t.dialCode.length && r.priority < t.priority) return r; } return t; }, { dialCode: "", priority: 10001 }, d(d(r))); return u.name ? u : i; }), r.updateCountry = function (e) { var t, n = r.state.onlyCountries; (t = e.indexOf(0) >= "0" && e.indexOf(0) <= "9" ? n.find(function (t) { return t.dialCode == +e; }) : n.find(function (t) { return t.iso2 == e; })) && t.dialCode && r.setState({ selectedCountry: t, formattedNumber: r.props.disableCountryCode ? "" : r.formatNumber(t.dialCode, t) }); }, r.scrollTo = function (e, t) { if (e) { var n = r.dropdownRef; if (n && document.body) { var a = n.offsetHeight, o = n.getBoundingClientRect().top + document.body.scrollTop, i = o + a, u = e, c = u.getBoundingClientRect(), s = u.offsetHeight, l = c.top + document.body.scrollTop, f = l + s, d = l - o + n.scrollTop, p = a / 2 - s / 2; if (r.props.enableSearch ? l < o + 32 : l < o) t && (d -= p), n.scrollTop = d;else if (f > i) { t && (d += p); var h = a - s; n.scrollTop = d - h; } } } }, r.scrollToTop = function () { var e = r.dropdownRef; e && document.body && (e.scrollTop = 0); }, r.formatNumber = function (e, t) { if (!t) return e; var n, o = t.format, c = r.props, s = c.disableCountryCode, l = c.enableAreaCodeStretch, f = c.enableLongNumbers, d = c.autoFormat; if (s ? ((n = o.split(" ")).shift(), n = n.join(" ")) : l && t.isAreaCode ? ((n = o.split(" "))[1] = n[1].replace(/\.+/, "".padEnd(t.areaCodeLength, ".")), n = n.join(" ")) : n = o, !e || 0 === e.length) return s ? "" : r.props.prefix; if (e && e.length < 2 || !n || !d) return s ? e : r.props.prefix + e; var p, h = w()(n, function (e, t) { if (0 === e.remainingText.length) return e; if ("." !== t) return { formattedText: e.formattedText + t, remainingText: e.remainingText }; var r, n = i(r = e.remainingText) || a(r) || u(), o = n[0], c = n.slice(1); return { formattedText: e.formattedText + o, remainingText: c }; }, { formattedText: "", remainingText: e.split("") }); return (p = f ? h.formattedText + h.remainingText.join("") : h.formattedText).includes("(") && !p.includes(")") && (p += ")"), p; }, r.cursorToEnd = function () { var e = r.numberInputRef; if (document.activeElement === e) { e.focus(); var t = e.value.length; ")" === e.value.charAt(t - 1) && (t -= 1), e.setSelectionRange(t, t); } }, r.getElement = function (e) { return r["flag_no_".concat(e)]; }, r.getCountryData = function () { return r.state.selectedCountry ? { name: r.state.selectedCountry.name || "", dialCode: r.state.selectedCountry.dialCode || "", countryCode: r.state.selectedCountry.iso2 || "", format: r.state.selectedCountry.format || "" } : {}; }, r.handleFlagDropdownClick = function (e) { if (e.preventDefault(), r.state.showDropdown || !r.props.disabled) { var t = r.state, n = t.preferredCountries, a = t.onlyCountries, o = t.selectedCountry, i = r.concatPreferredCountries(n, a).findIndex(function (e) { return e.dialCode === o.dialCode && e.iso2 === o.iso2; }); r.setState({ showDropdown: !r.state.showDropdown, highlightCountryIndex: i }, function () { r.state.showDropdown && r.scrollTo(r.getElement(r.state.highlightCountryIndex)); }); } }, r.handleInput = function (e) { var t = e.target.value, n = r.props, a = n.prefix, o = n.onChange, i = r.props.disableCountryCode ? "" : a, u = r.state.selectedCountry, c = r.state.freezeSelection; if (!r.props.countryCodeEditable) { var s = a + (u.hasAreaCodes ? r.state.onlyCountries.find(function (e) { return e.iso2 === u.iso2 && e.mainCode; }).dialCode : u.dialCode); if (t.slice(0, s.length) !== s) return; } if (t === a) return o && o("", r.getCountryData(), e, ""), r.setState({ formattedNumber: "" }); if (t.replace(/\D/g, "").length > 15) { if (!1 === r.props.enableLongNumbers) return; if ("number" == typeof r.props.enableLongNumbers && t.replace(/\D/g, "").length > r.props.enableLongNumbers) return; } if (t !== r.state.formattedNumber) { e.preventDefault ? e.preventDefault() : e.returnValue = !1; var l = r.props.country, f = r.state, d = f.onlyCountries, p = f.selectedCountry, h = f.hiddenAreaCodes; if (o && e.persist(), t.length > 0) { var m = t.replace(/\D/g, ""); (!r.state.freezeSelection || p && p.dialCode.length > m.length) && (u = r.props.disableCountryGuess ? p : r.guessSelectedCountry(m.substring(0, 6), l, d, h) || p, c = !1), i = r.formatNumber(m, u), u = u.dialCode ? u : p; } var y = e.target.selectionStart, b = e.target.selectionStart, g = r.state.formattedNumber, v = i.length - g.length; r.setState({ formattedNumber: i, freezeSelection: c, selectedCountry: u }, function () { v > 0 && (b -= v), ")" == i.charAt(i.length - 1) ? r.numberInputRef.setSelectionRange(i.length - 1, i.length - 1) : b > 0 && g.length >= i.length ? r.numberInputRef.setSelectionRange(b, b) : y < g.length && r.numberInputRef.setSelectionRange(y, y), o && o(i.replace(/[^0-9]+/g, ""), r.getCountryData(), e, i); }); } }, r.handleInputClick = function (e) { r.setState({ showDropdown: !1 }), r.props.onClick && r.props.onClick(e, r.getCountryData()); }, r.handleDoubleClick = function (e) { var t = e.target.value.length; e.target.setSelectionRange(0, t); }, r.handleFlagItemClick = function (e, t) { var n = r.state.selectedCountry, a = r.state.onlyCountries.find(function (t) { return t == e; }); if (a) { var o = r.state.formattedNumber.replace(" ", "").replace("(", "").replace(")", "").replace("-", ""), i = o.length > 1 ? o.replace(n.dialCode, a.dialCode) : a.dialCode, u = r.formatNumber(i.replace(/\D/g, ""), a); r.setState({ showDropdown: !1, selectedCountry: a, freezeSelection: !0, formattedNumber: u, searchValue: "" }, function () { r.cursorToEnd(), r.props.onChange && r.props.onChange(u.replace(/[^0-9]+/g, ""), r.getCountryData(), t, u); }); } }, r.handleInputFocus = function (e) { r.numberInputRef && r.numberInputRef.value === r.props.prefix && r.state.selectedCountry && !r.props.disableCountryCode && r.setState({ formattedNumber: r.props.prefix + r.state.selectedCountry.dialCode }, function () { r.props.jumpCursorToEnd && setTimeout(r.cursorToEnd, 0); }), r.setState({ placeholder: "" }), r.props.onFocus && r.props.onFocus(e, r.getCountryData()), r.props.jumpCursorToEnd && setTimeout(r.cursorToEnd, 0); }, r.handleInputBlur = function (e) { e.target.value || r.setState({ placeholder: r.props.placeholder }), r.props.onBlur && r.props.onBlur(e, r.getCountryData()); }, r.handleInputCopy = function (e) { if (r.props.copyNumbersOnly) { var t = window.getSelection().toString().replace(/[^0-9]+/g, ""); e.clipboardData.setData("text/plain", t), e.preventDefault(); } }, r.getHighlightCountryIndex = function (e) { var t = r.state.highlightCountryIndex + e; return t < 0 || t >= r.state.onlyCountries.length + r.state.preferredCountries.length ? t - e : r.props.enableSearch && t > r.getSearchFilteredCountries().length ? 0 : t; }, r.searchCountry = function () { var e = r.getProbableCandidate(r.state.queryString) || r.state.onlyCountries[0], t = r.state.onlyCountries.findIndex(function (t) { return t == e; }) + r.state.preferredCountries.length; r.scrollTo(r.getElement(t), !0), r.setState({ queryString: "", highlightCountryIndex: t }); }, r.handleKeydown = function (e) { var t = r.props.keys, n = e.target.className; if (n.includes("selected-flag") && e.which === t.ENTER && !r.state.showDropdown) return r.handleFlagDropdownClick(e); if (n.includes("form-control") && (e.which === t.ENTER || e.which === t.ESC)) return e.target.blur(); if (r.state.showDropdown && !r.props.disabled && (!n.includes("search-box") || e.which === t.UP || e.which === t.DOWN || e.which === t.ENTER || e.which === t.ESC && "" === e.target.value)) { e.preventDefault ? e.preventDefault() : e.returnValue = !1; var a = function (e) { r.setState({ highlightCountryIndex: r.getHighlightCountryIndex(e) }, function () { r.scrollTo(r.getElement(r.state.highlightCountryIndex), !0); }); }; switch (e.which) { case t.DOWN: a(1); break; case t.UP: a(-1); break; case t.ENTER: r.props.enableSearch ? r.handleFlagItemClick(r.getSearchFilteredCountries()[r.state.highlightCountryIndex] || r.getSearchFilteredCountries()[0], e) : r.handleFlagItemClick([].concat(o(r.state.preferredCountries), o(r.state.onlyCountries))[r.state.highlightCountryIndex], e); break; case t.ESC: case t.TAB: r.setState({ showDropdown: !1 }, r.cursorToEnd); break; default: (e.which >= t.A && e.which <= t.Z || e.which === t.SPACE) && r.setState({ queryString: r.state.queryString + String.fromCharCode(e.which) }, r.state.debouncedQueryStingSearcher); } } }, r.handleInputKeyDown = function (e) { var t = r.props, n = t.keys, a = t.onEnterKeyPress, o = t.onKeyDown; e.which === n.ENTER && a && a(e), o && o(e); }, r.handleClickOutside = function (e) { r.dropdownRef && !r.dropdownContainerRef.contains(e.target) && r.state.showDropdown && r.setState({ showDropdown: !1 }); }, r.handleSearchChange = function (e) { var t = e.currentTarget.value, n = r.state, a = n.preferredCountries, o = n.selectedCountry, i = 0; if ("" === t && o) { var u = r.state.onlyCountries; i = r.concatPreferredCountries(a, u).findIndex(function (e) { return e == o; }), setTimeout(function () { return r.scrollTo(r.getElement(i)); }, 100); } r.setState({ searchValue: t, highlightCountryIndex: i }); }, r.concatPreferredCountries = function (e, t) { return e.length > 0 ? o(new Set(e.concat(t))) : t; }, r.getDropdownCountryName = function (e) { return e.localName || e.name; }, r.getSearchFilteredCountries = function () { var e = r.state, t = e.preferredCountries, n = e.onlyCountries, a = e.searchValue, i = r.props.enableSearch, u = r.concatPreferredCountries(t, n), c = a.trim().toLowerCase().replace("+", ""); if (i && c) { if (/^\d+$/.test(c)) return u.filter(function (e) { var t = e.dialCode; return ["".concat(t)].some(function (e) { return e.toLowerCase().includes(c); }); }); var s = u.filter(function (e) { var t = e.iso2; return ["".concat(t)].some(function (e) { return e.toLowerCase().includes(c); }); }), l = u.filter(function (e) { var t = e.name, r = e.localName; e.iso2; return ["".concat(t), "".concat(r || "")].some(function (e) { return e.toLowerCase().includes(c); }); }); return r.scrollToTop(), o(new Set([].concat(s, l))); } return u; }, r.getCountryDropdownList = function () { var e = r.state, t = e.preferredCountries, a = e.highlightCountryIndex, o = e.showDropdown, i = e.searchValue, u = r.props, c = u.disableDropdown, s = u.prefix, l = r.props, f = l.enableSearch, d = l.searchNotFound, p = l.disableSearchIcon, h = l.searchClass, m = l.searchStyle, b = l.searchPlaceholder, g = l.autocompleteSearch, v = r.getSearchFilteredCountries().map(function (e, t) { var n = a === t, o = N()({ country: !0, preferred: "us" === e.iso2 || "gb" === e.iso2, active: "us" === e.iso2, highlight: n }), i = "flag ".concat(e.iso2); return y.a.createElement("li", Object.assign({ ref: function (e) { return r["flag_no_".concat(t)] = e; }, key: "flag_no_".concat(t), "data-flag-key": "flag_no_".concat(t), className: o, "data-dial-code": "1", tabIndex: c ? "-1" : "0", "data-country-code": e.iso2, onClick: function (t) { return r.handleFlagItemClick(e, t); }, role: "option" }, n ? { "aria-selected": !0 } : {}), y.a.createElement("div", { className: i }), y.a.createElement("span", { className: "country-name" }, r.getDropdownCountryName(e)), y.a.createElement("span", { className: "dial-code" }, e.format ? r.formatNumber(e.dialCode, e) : s + e.dialCode)); }), C = y.a.createElement("li", { key: "dashes", className: "divider" }); t.length > 0 && (!f || f && !i.trim()) && v.splice(t.length, 0, C); var _ = N()(n({ "country-list": !0, hide: !o }, r.props.dropdownClass, !0)); return y.a.createElement("ul", { ref: function (e) { return !f && e && e.focus(), r.dropdownRef = e; }, className: _, style: r.props.dropdownStyle, role: "listbox", tabIndex: "0" }, f && y.a.createElement("li", { className: N()(n({ search: !0 }, h, h)) }, !p && y.a.createElement("span", { className: N()(n({ "search-emoji": !0 }, "".concat(h, "-emoji"), h)), role: "img", "aria-label": "Magnifying glass" }, "🔎"), y.a.createElement("input", { className: N()(n({ "search-box": !0 }, "".concat(h, "-box"), h)), style: m, type: "search", placeholder: b, autoFocus: !0, autoComplete: g ? "on" : "off", value: i, onChange: r.handleSearchChange })), v.length > 0 ? v : y.a.createElement("li", { className: "no-entries-message" }, y.a.createElement("span", null, d))); }; var s, l = new P(e.enableAreaCodes, e.enableTerritories, e.regions, e.onlyCountries, e.preferredCountries, e.excludeCountries, e.preserveOrder, e.masks, e.priority, e.areaCodes, e.localization, e.prefix, e.defaultMask, e.alwaysDefaultMask), h = l.onlyCountries, m = l.preferredCountries, b = l.hiddenAreaCodes, v = e.value ? e.value.replace(/\D/g, "") : ""; s = e.disableInitialCountryGuess ? 0 : v.length > 1 ? r.guessSelectedCountry(v.substring(0, 6), e.country, h, b) || 0 : e.country && h.find(function (t) { return t.iso2 == e.country; }) || 0; var _, S = v.length < 2 && s && !j()(v, s.dialCode) ? s.dialCode : ""; _ = "" === v && 0 === s ? "" : r.formatNumber((e.disableCountryCode ? "" : S) + v, s.name ? s : void 0); var x = h.findIndex(function (e) { return e == s; }); return r.state = { showDropdown: e.showDropdown, formattedNumber: _, onlyCountries: h, preferredCountries: m, hiddenAreaCodes: b, selectedCountry: s, highlightCountryIndex: x, queryString: "", freezeSelection: !1, debouncedQueryStingSearcher: g()(r.searchCountry, 250), searchValue: "" }, r; } var r, l; return function (e, t) { if ("function" != typeof t && null !== t) throw new TypeError("Super expression must either be null or a function"); e.prototype = Object.create(t && t.prototype, { constructor: { value: e, writable: !0, configurable: !0 } }), t && h(e, t); }(t, e), r = t, (l = [{ key: "componentDidMount", value: function () { document.addEventListener && this.props.enableClickOutside && document.addEventListener("mousedown", this.handleClickOutside), this.props.onMount && this.props.onMount(this.state.formattedNumber.replace(/[^0-9]+/g, ""), this.getCountryData(), this.state.formattedNumber); } }, { key: "componentWillUnmount", value: function () { document.removeEventListener && this.props.enableClickOutside && document.removeEventListener("mousedown", this.handleClickOutside); } }, { key: "componentDidUpdate", value: function (e, t, r) { e.country !== this.props.country ? this.updateCountry(this.props.country) : e.value !== this.props.value && this.updateFormattedNumber(this.props.value); } }, { key: "updateFormattedNumber", value: function (e) { if (null === e) return this.setState({ selectedCountry: 0, formattedNumber: "" }); var t = this.state, r = t.onlyCountries, n = t.selectedCountry, a = t.hiddenAreaCodes, o = this.props, i = o.country, u = o.prefix; if ("" === e) return this.setState({ selectedCountry: n, formattedNumber: "" }); var c, s, l = e.replace(/\D/g, ""); if (n && j()(e, u + n.dialCode)) s = this.formatNumber(l, n), this.setState({ formattedNumber: s });else { var f = (c = this.props.disableCountryGuess ? n : this.guessSelectedCountry(l.substring(0, 6), i, r, a) || n) && j()(l, u + c.dialCode) ? c.dialCode : ""; s = this.formatNumber((this.props.disableCountryCode ? "" : f) + l, c || void 0), this.setState({ selectedCountry: c, formattedNumber: s }); } } }, { key: "render", value: function () { var e, t, r, a = this, o = this.state, i = o.onlyCountries, u = o.selectedCountry, c = o.showDropdown, s = o.formattedNumber, l = o.hiddenAreaCodes, f = this.props, d = f.disableDropdown, p = f.renderStringAsFlag, h = f.isValid, m = f.defaultErrorMessage, b = f.specialLabel; if ("boolean" == typeof h) t = h;else { var g = h(s.replace(/\D/g, ""), u, i, l); "boolean" == typeof g ? !1 === (t = g) && (r = m) : (t = !1, r = g); } var v = N()((n(e = {}, this.props.containerClass, !0), n(e, "react-tel-input", !0), e)), C = N()({ arrow: !0, up: c }), _ = N()(n({ "form-control": !0, "invalid-number": !t, open: c }, this.props.inputClass, !0)), w = N()({ "selected-flag": !0, open: c }), S = N()(n({ "flag-dropdown": !0, "invalid-number": !t, open: c }, this.props.buttonClass, !0)), j = "flag ".concat(u && u.iso2); return y.a.createElement("div", { className: "".concat(v, " ").concat(this.props.className), style: this.props.style || this.props.containerStyle, onKeyDown: this.handleKeydown }, b && y.a.createElement("div", { className: "special-label" }, b), r && y.a.createElement("div", { className: "invalid-number-message" }, r), y.a.createElement("input", Object.assign({ className: _, style: this.props.inputStyle, onChange: this.handleInput, onClick: this.handleInputClick, onDoubleClick: this.handleDoubleClick, onFocus: this.handleInputFocus, onBlur: this.handleInputBlur, onCopy: this.handleInputCopy, value: s, onKeyDown: this.handleInputKeyDown, placeholder: this.props.placeholder, disabled: this.props.disabled, type: "tel" }, this.props.inputProps, { ref: function (e) { a.numberInputRef = e, "function" == typeof a.props.inputProps.ref ? a.props.inputProps.ref(e) : "object" == typeof a.props.inputProps.ref && (a.props.inputProps.ref.current = e); } })), y.a.createElement("div", { className: S, style: this.props.buttonStyle, ref: function (e) { return a.dropdownContainerRef = e; } }, p ? y.a.createElement("div", { className: w }, p) : y.a.createElement("div", { onClick: d ? void 0 : this.handleFlagDropdownClick, className: w, title: u ? "".concat(u.localName || u.name, ": + ").concat(u.dialCode) : "", tabIndex: d ? "-1" : "0", role: "button", "aria-haspopup": "listbox", "aria-expanded": !!c || void 0 }, y.a.createElement("div", { className: j }, !d && y.a.createElement("div", { className: C }))), c && this.getCountryDropdownList())); } }]) && s(r.prototype, l), t; }(y.a.Component); F.defaultProps = { country: "", value: "", onlyCountries: [], preferredCountries: [], excludeCountries: [], placeholder: "1 (702) 123-4567", searchPlaceholder: "search", searchNotFound: "No entries to show", flagsImagePath: "./flags.png", disabled: !1, containerStyle: {}, inputStyle: {}, buttonStyle: {}, dropdownStyle: {}, searchStyle: {}, containerClass: "", inputClass: "", buttonClass: "", dropdownClass: "", searchClass: "", className: "", autoFormat: !0, enableAreaCodes: !1, enableTerritories: !1, disableCountryCode: !1, disableDropdown: !1, enableLongNumbers: !1, countryCodeEditable: !0, enableSearch: !1, disableSearchIcon: !1, disableInitialCountryGuess: !1, disableCountryGuess: !1, regions: "", inputProps: {}, localization: {}, masks: null, priority: null, areaCodes: null, preserveOrder: [], defaultMask: "... ... ... ... ..", alwaysDefaultMask: !1, prefix: "+", copyNumbersOnly: !0, renderStringAsFlag: "", autocompleteSearch: !1, jumpCursorToEnd: !0, enableAreaCodeStretch: !1, enableClickOutside: !0, showDropdown: !1, isValid: !0, defaultErrorMessage: "", specialLabel: "Phone", onEnterKeyPress: null, keys: { UP: 38, DOWN: 40, RIGHT: 39, LEFT: 37, ENTER: 13, ESC: 27, PLUS: 43, A: 65, Z: 90, SPACE: 32, TAB: 9 } }; t.default = F; }]); }); var ReactPhoneInput = unwrapExports(lib); var PhoneInputStyles = styled.css(["{font-family:'Roboto',sans-serif;font-size:15px;position:relative;width:100%}:disabled{cursor:not-allowed}.flag{width:16px;height:11px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACmCAMAAAACnqETAAADAFBMVEUAAAD30gQCKn0GJJ4MP4kMlD43WGf9/f329vcBAQHhAADx8vHvAwL8AQL7UlL4RUUzqDP2MjLp6un2Jyj0Ghn2PTr9fHvi5OJYuln7Xl75+UPpNzXUAQH29jH6cXC+AAIAJwBNtE/23Ff5aGdDr0TJAQHsZV3qR0IAOQB3x3fdRD/Z2NvuWFLkcG7fVlH4kI4AAlXO0M8BATsdS6MCagIBfQEASgPoKSc4VKL442q4xeQAigD46eetAABYd9jvf3nZMiwAAoD30zz55X5ng9tPbKZnwGXz8x77+lY7OTjzzikABGsenh72pKNPldEAWgHgGBgAACH88/Gqt95JR0OWAwP3uLd/qdr53kMBBJJ3d3XMPTpWer8NnAwABKPH1O1VVFIuLSz13NtZnlf2kEh9keLn7vfZ4vNkZGHzvwJIXZRfZLuDwfv4y8tvk79LlUblzsxorGcCBusFKuYCCcdmfq5jqvlxt/tzktEABLb8/HL2tlTAw8SLlMFpj/ZlpNhBZ81BYbQcGxuToN9SYdjXY2Lz7lD0dCQ6S9Dm0EUCYPdDlvWWvd2AnviXqc11eMZTqPc3cPMCRev16ZrRUE0Hf/tNT7HIJyTptDVTffSsTkvhtgQ0T4jigoFUx/g+hsX9/QUHzQY1dbJ7sHV02Pduvd0leiK1XmaTrfpCQPgELrrdsrY1NamgyPrh03iPxosvX92ysbCgoZzk5kP1YD7t6AILnu+45LykNS40qvXDdHnR6tBennz6u3TSxU1Or9Swz6wqzCsPZKzglJbIqEY8hDhyAgFzbJxuOC+Li4d9sJLFsnhwbvH2d1A3kzAqPZQITsN76nq2dzaZdKJf4F6RJkb078YFiM+tnWZGh2F+dDibykYoMcsnekdI1UhCAwWb25qVkEq43km9yBrclQMGwfyZ3/zZ2QK9gJxsJWCBUk32QwqOSYKRxh6Xdm3B4oMW22EPZzawnR72kgZltCqPxrdH1dkBkqDdWwwMwMO9O2sqKXHvipPGJkzlRVLhJjVIs9KrAAAAB3RSTlMA/v3+/Pn9Fk05qAAAUU9JREFUeNp0nAlYVNcVxzHazoroGBkXhAgCCjMsroDoKIgKdFABBwQUnSAoCqLRFBfcCBIM4kbqShO1hlSrCJqQQmNssVFqjBarsdjFJWlMTOLXJDZt8/X7+j/n3pk3vNq/bb8+3nbP79137/+dd954qTVt8uTJL73OMhqNer03ady4cWOhWbNmjV+0FfKGjMb36Y9/1fXUst9cb2y8/lpb797z5k2dOjXVD9Ljn59fcHBwQEDAgGch3l9on6feeeedn0r9kvT222+/sErRgvcDArwV8f5tN/rcvPnMZ22pqVFRSVGjR38k9Rsp9fLql/MXLj20VGjt2rVeak2Og/auI/kHBQ3We/tCo0ZNhwYNGj58/NaWlpbOyMhIX1//2/jTrICvckhXruQsWbJw4cL3tzhPORynSk5lZWVtglL9IkmdDQ05NqvVGhLwbKSUL+Tvb9yH/2sj+eN0IZZ3fvq3Hnp71ZtCOyofdnTYSzq9xX7UtsF9+/Y1FpeZT54sc2aUlq6Jy89YM/qj2oZaoeOkMR8dV/Tee++NWb04rrA5MRYKDAyc/NKCpwDIyKhE9LEzZ/r4DLQAAE6EyEeM6AcNH7m1pTMnB+fHX7tG9Bs0Xt+GwM/frqm5tz950aKDk6rsiA0xbUrbRAii/BDeV9bGhQsPRlyOCAuZ9GykZwT++n2RHPnVYQU+oaFDPQD8jEQAPiDdaLPaHGVXbn/O7YHQuIH9B/gYgzts1iqrtSopKWlNRkzS6I8arFaOFvTfew8AfiYil/rN6sWTKwtbArOzExISUl7+vwCuQNt8Bg71AQCcTwNpWeFbW3IIQEmJr08XgIzX2xDcvZrs7Jru5EWXwwKSwh2RkQ77w7Q0bXp6YRoDaKO+kZl8MCwsYpJ3pEf8liAAoPhDhqUMQ/wAkF+oqKiosJYA7HxotdnTtVe6Pr/S0h+AI90QffU3T9obGuwdD5PqkmJiMtbM+ajWI/60TX0COhoarAAE1dfXV80FgMmLi1oSKP7/B6ASAGyBV4YM7D/Bx8/bF7g5fgmgEwCCSiJtJQRgxEi9zZqVdYUu9pW0tLCIgOvxdR0dpxx5aWl7EzV7CYDV+tXnCzMzkzMvE4AFlTuhZaSf/OQny1L32RC+JcHikzJ06NAJoe+YNKRbsbG3xPlWZTxssNmdOP/J27ffudLJ60V7DAaT1lxRVvfwYe3Jlrq4uJiKjAwAcIWP+BkAhV/i7HA0uAG8BAIUf8qfzvwvgJcQf+XMK4GWi8OGTpgQ6uftzwC0LIM2WgcASwaXOBwlA7v6/YgAhFRt2pRGeu0/UyImbal77eHDo2kVAJAeKwE0fl6P63/5nSlTAKBCiR8AovbZEL9lf8I5AMD5booAE7OzY8X5fhGJi0/nTzTcMh+80iIBaF0APqvIu3EjqfRGcV3S4aSKYk8AaW4ADU4gOFlfn8sAXnoJBDpTCMDL87zU2kwATl+x1Nw+P2HChKHBBMDHFT8DwGjX11FSYu/f/aMf9XtOjwAacf2hmxRg7ywXDrr30kb7NVhDquo/z0y+nJs7ZUoYA5DxM4BFmcnJyV93PzjbvQhK3urqAYF7xflWVT5ssDaU4Ox7T9+6Ei4BaN0AUkvXJEExMTGHD9cdFgA2yfgZQAP1f0dJw0lrfS4BmIb4z5yZBgL/H8DibbehGROenQ0AQRhvZPwQAGDQ8wlqsFkmdP9ofr/n/OgK2ml1xxQECAAy/tdee++91wCA1mfWJy/KXUTr536T+O67764X2r9//T+3JkPdDx50f7qItDXfff+zeAxY1lYV0VCmPV1Ts5fGAGUYDbHpo0qT6vKTignAtWvXiuf0StwGZZPQybMPAYC8/xF/bj0AUPwvvzytKCdl6dMAvJxRuXjxkCHnL86YMXs2A8B4m4yWQTrdIp0uByMajcATJrwzXwCIiIjAFSrbJwGI+FlH00YH8/rQy5enQPsYgBK/BLCI1c0Afonhn/XjH8MNLP9o1Y4Pfg795N9hYQ23bt1q4fb07z+A/ITR2J8AFJnqOP7iuj7Fc35TK+9/bkPaM+NGiSnsB6wRIwGA4n/5T5Pzc5aeeAqAP1VCM4niWRqVgr1p1sEYlskNJQC4BQZbLJi0MAgCgBUKqYo3VEVEhIWFTZqXtYmVxiIAtB4QeDUAvMuSFBgAJCkwAKHlLAKw4wMIFG5URVgdLdwedEq6BuCgj1qzpi4uiVScYa6I0fWKJQVC2aRDY0eNWrlyECwMMIDDc2vZ6UF0F7z8tB5w4kTvtZ+ygklGkk4lvZ6sne45SDg8aJIQ2z+4Mmg0qcfauXPnfvPNN9XV/1S0VSWyf1Ls4FZ5aIHu/blGKb2UOM0ckq4PmsZ2b8yYMb2l4FbhX8ePHwmhuSPXkhaQ5q0tXzBvntdUUq9eSyFu9njXxpA74Leg198yktRWVI4OkAkymw2Q3WO90+nnN3u2H0QkHI6JpHHj2GvTYdsupd68GfVZ4yTJqJeUaNKhQ+rzCUvOMXEr//4vD3333XdLe+rRJx4iqumDnT2O5zW1HII1hPLy8pJGjz9GWgk9D61Al4fWkWay9VRbUa1GEVCYDRoonu0dr++n0ZQ0dMCNdDRYHVrtuImjWHQ80lvfl4WfhJetw1CFm6h+rkazd28iJHvyIe/IHt7ZOBY7o4GPH4smPqf7nRwz/sH6bmmi2HtvYiBUYPxEcZakt701PdsPAIhb3DBbYmIIAOK+F9HXJ6z7t799AwDI48+cOQRi66m2ogoAYVwIQEkQb8DrJza1azRWq9NpjUjXtg+aNXHU9EEQHW/YsGFD3toHMFZbgzUsDNPkPgAgpScG1vA4TgB8PZATAAoc6IasWPHhhwCQkyNCdwMIJCVqDabA8+cAAJFLYVD92dvpjvQe7ZcA7p0/350dEzNmy+iRAHBPrO9+AwB41Of4h2HoFdZYhsfL7ej7QmbSBdED/GkDXv+ju9Pv4i9mM+g09Rs1duKoQSQR/4whb7msbFhufHy8M2xup6AZ3sHzWOChaveIWQCtn00A7s/84MDuD4bd+fBDcYEukrVna5fwMQPAsqnQZOqqLtBzezysvHd6z/YLANndUELMGAmgXqzPfeON3+IE8PHbuL2YegYCAO+/fz/io2VMM+5HpR/BGXIPGCzix3oAaBo13aApK9Mahg8fNAo9ANsPGi7iB4BLZRUPH9advJGb6zx+3Jk7FwFtCNekNzQUabW3cAv0Ek9uUA0U+PGsY4NmzrxQVBS3e82wGQDA7bvI8SsAsgNP7y26HV4GALyeJzGaY5J18fZ4GT+3DwBK8/K2ZF/s7v46ZYwEsMJHrJ/gApBJ8QPAs9gh2BYBnT077OwUnvcBwB0/nCEAQPFBdADefv5dPEu3p2u18e39Bg2aPou2h9wNmP3wi7bGL9qsuVOcizoBgM/X0BBtamggK2wGABn+WSLw8awm9P4Du3ecys+aMWPGt6J9medF/EsBIBbxJxSFm4vM5moJAOGL+AHAO90jfglgy5bshO7uFAIQM2fkyhUr6sX6fW+MJQDYX1wvWI/+uOIc79mziJec4ESxDPGy6AF9RfzYHgBw02s7yswNhf1GDJ8+lvcfPgKrxfoAa0S9uP9HTV95LHdur8TzuF7W5OSqDdEGAFiaiIjk9U8hAMdw+1Ts3r37VPOMGR/K9l3k+CUA9P9b4c6y8LKC6upqAiDj3wpxD1Dix/m9Uku3KAD6xMx5DgC6xfrLYwnAEuw/jOJnAMHjpnvECwA8aK5YseK3EA2aogf0pQNIAIOaXI8S0/sBAPaHaLUEIOJHPmjUsWACACN7/qLVmoz2Zjabv3x8X+oBdP/DWeih94d9sHv3BzO+fOOND6l9C93xL00BgOy97dHo/ZHm6EcAwM8OHlZ+YLpFtF9eQAGA9+81pg8DQCzdU3D9Ef/YN3AC8OP4Z5D1DBg7XYmfAKitqYl7AA8AvDxxVLtGW1VVVhYRZjC0jhg/Tuzv3j6gCuEjfghGYd/cXrFk5BNqai4K633k938h/Zp15C8Tx68E7X7Dtm2b8QZEAH743j8gYQQwC8TGlp08Z7ZWC+k/4eFf6pc//Sje3+TZ/pFeqXkQ7hoIhhoAnve8ogRgCQZBMQsgTgBgXykpAoDKmpoIuJP/wMvzwaOKHkisVfUnDYZZ2J/k3n4ST/94UiHt2/d+Lx7yttFAXnP+60W6+X9ggQFzGDdeOJT791fQNAgAv/qHFFMAAJou7AWQBCAkKXzknW71bD96APnWQ4c+hthRsv1Ty2WNA4InwYYpzhJSW1MT+lmkxx9awyfNhQVmvf9+c9M4kVt1by8tsmuLub3I/in6er7URGkh1SZ1znfk/xR9o2oP7F8Pax1vbO8RgJcwhYp8BvpMcD1t+0GffPJ7xUo+CA54Yc+DPXv2vGA0vkBavfqIW+xeH3kr8iJ9QxJegQNpu/TMzZupnzXOkQ7+OkumeCCOU+Si2Sr7kR6RkQZ/iA0y62PWVKlUiLy8fsz1MSd6s+YhLz1vu0t7ILS4T1Rqn2cU9fF6YQdpMZIAG6dNmzZ5bX+7PZKGsXi0CM9xwZ+0DmuVnejxsHMDJu3Zu24vkrT+QTtYq4/8nvWHPzyeCa2HUySRbzMKAO9CGhZ15Pku67uGlaS7frzoeFat26uY2CpzijiIrbKfLdH2buy7eKLkR8oAaXWhQNLH8+qEKirKy0tLS6O8bXVZQpvg8dPmbV/O+jH0IvRClLY06hkPAcBGqLa19ckBzC0HVg+0R9rQFpqFtWER1oBPhr3+eutPocevPzIaBwTseTORAu/rQ7sd2AgA4g69T1PlfmGVsX9fn8ESALk4ER5Gsb/Mny2tbzGkPQwASH1s2iTDBwC2yhYeVdgq+yXODAwpCCzAozT7Dml12fqR8VGcOMtk9A0pkUvsI7YvR+DQrl2vQLtWpdbFPAVAq8lgMrcygKEEoKQsJKTMYQgLDQn4ZN3r60T43ngSrH5g1rBcWaINAoCMX1plXq8GoBUAXNYX4RcfPqzVXa8tqk3bpATAVtnCVpytsp8tsCBifcJVil8BoFhfu7OE5RCyGn0HWxweQLYvf/HF2tp1T568IgD0Gf2MJilKBSCrPf5Cc3h76e4zuwmAv8ZqQ5cLMwwNA4DWn+IfwoeqX3/8kQvAQC2rGQCU+NkqywuiAqAVACa6rO/hYsR/uBi3wKZd7wGA1gPAcEvfhAQAmEEA4DwLEgo4/tmzwyYdYqurWF+9zWKxhCKlTjnV2WEBxkhHX5/G8jSZEZoKALWJWbuyYgWBVRgA6vqk9hgDNh54YtI2t2jbn5wBgAl2m1XTYAmxhFoNU5DG/uRnHuG/d/yjEa0X7kID+99tgu6OxTytxK8A0KoAaCGexz+rWHPpUtKaG4e1hwnAhhNZlLtMhwyG+HhDGVvl0PXZ2fv7w3oMe8vPijuf4of2AQCyutDmzWdI1zcv0Psr8SOFF2As0Th8Qr84CiEzcjSKni09b4l5C+al4r9uAcCBA1nthuYKc3spA4i0hWgNdFazgbK8n3iEjzct380S1rd/f+mkAECJH87O21/2v76eALQM4MiRX0+MKqXsFXSYAei8/d3WXLHaoQNTUga4AYSGiesPTSEASvwEwCrin4D4GYAv4m9MS5M5yalGX1uixccntCDwKqf5n5FSboGNBw4caG03m1tbz5zZs3v1bAAAKvtJDAuzAeD1c0r4DEBY4f4DKH4C8AclfgYQxFl0etRWAAj+RwjA6DUyfuoC3xt02F6JnwDQ8UNpeQAB+DTY6op/HxJLU+au3jj5JYRPwvR5ZoFN3v12oVxjkE+oXbG+4o71WH5dJa9VALD7wBPMArvP7AEAfaTVgm3NZkzcszHoBCvhM4BvhTcfMOCB8OZH/sDxp0hrCwA8PvKjNqkaAPaL80sAyvU3fF+sU1tptspDaRkA3gKAEIoforwaAPhZ3f2de4RWeUvAARqDKH65ZDKE7/nxriexm17ZtO0JxvhXX1n1Q5UAYCMQTCsvn7ybEuYL9JE2q9jfZJoSBgADEP5xt757MJM0xMcHUUOfzr9Pywlua+vtThhJAOvdPYDc/LjRayC+CxiDTm2l2SpbeJmPHywzyhLDXH1ICI96wEAcAlIr4ABKSThuXt4c75ByyJ2Zj9qDWbD2SSJmAdaqBSp5CdPoB5frx9LDdEVDG6C5cKnB/xz1kdB3rAcP2Bb7+X0q9GtOXirWU7HGEgBSwI/CoehosrIT2f7pFKmtNFvlYF4W/jvAI6kMoX2y1kBIZKBHu1PDwfNI7A1ZbP+UIgPMAn08hFnAIOROal3P6pnlzSQlK8pHf4F2s+AwjSRNvDsCadl76bQif9tbqDBdNvzPfxcy8+nCw1OULDDrOukEi7PXnngo+IDLY8UZZMmGOmsMn09yPTI8VwjhWEUkXIY4mYVu2/7qq9tJXuqsLoxJj+XMZqEWUmdnskabf8olWOI9Rl9Ik07vqeh1id/EpqZRUGKOhksqxveuZGm0Idx3g//+BPrd734n793wXnuFEoUOXc+ClJcrC4wiI8rv0On4GNUbbh8TBRtwDOPVWerxv2P9SuiPukKcBwd0xRPusuLSH+/xUmd1r9dm5XsuZzZ35kBLxCt+ANBoihA5CY6YAODEmnS8KRpIr7cBgJp2uyDkahcmi+EAUE7SpvPQFRrw9yfcvk5nPHUyApDokQWPBQCOXN7DafPo+ABH1RN8fL0t6OrVq1X3eC7C8dVZ6vHu2P/4xz//WQDAQ44rnmhXFlrYYxeAW+mJ6bcSEyUAEFCyqJdPfkX6HLp8+fJXBEBTyAR2uAD0tWjSfbh9BGAUxX/1zi8HVXcpAHZq03m9BNBptXY4ET8DUOKXANJk/AxAFETYbO/ayJ3aACAwcH3gep/Qru4PUZ8w/nW8X9gWOMSdZR7bRG81jkOU1XjeDUArFOey4i++WFW1vr4NAMTLaFjLvekuAJvylYKIXIcvFcQItzLB9o5G44CzylcA+Pe1+GjS+fojwGDO4hbcOfuXX35bnZ0deIgB7Nyp1QqrygB+1Wb9lbOBAUQTAOV1XuwhdRZXI7Q3UVplfSKS45aEc0MH9p/yTveKkQCw7WrIXneWmYDMrD3++Mnx47x8Iqt8GiTs4+bJ8y6V3Xj4sOLkjV27qjA9AYCBvGJsQkLgXraKBAAEOsCdZPfLdbjjRwQAUOJvxy7t/BK+NKuPhqVYTX6PEHJ101+qq8MWLcrUqdf/ne5Pa+OvMLPRPB3dBw+ychaDSkers7gaFiAliv31sSHr14euv0o8n322XoeAHXhwOyuydsMYwJDax0+ePD5OywCA8NM4fAIwdWfdtIqKvKyMXbuKDPWFRS8wAG3r3lvtF0RBAveANuqv7K2Dc+3K9Z/g7gGtlKRja9sjPjSQF6/eqc7+9ttztKz3Z6uarl22BcqL+jvdo1URvyqzGbSUpOTX6XlkW0mvpaqzuBLA6dOxOD4DKMA7koRzaMyUf3+xczUCvlVgic+m+CWAIUNqjz95vEkBwJdfAniVhj6+/xuRjGyTAO42XRjVxJMfACjxE4CuveRlC2SO7d13NJD59yJFSQD0QRj+tPHu7flhpqv6y+pv/9lF7wn0QexZ4g1bBIBZBCAnIsJaEm+QAJT4f/Naqrmndd2wCFMPhuHTp3OWQDk6vS1hfcL+6v6I/iU8vgPAkAs1+5vPIn62zt6+56AsdNChjx49OqcvwsEQPx2OjwcAIv5d+YW5hfkSgNZ814wNGADHP0HEo58Q8PXe2Fjx/JkCxd7T8uXn+CUA3P4AILcPFu8NuqrDziF+lND4hfCjigAQsywKozQN0Esc8eJ89LTHLk8+7ZmV+LnBnJX2KNAA8KvVQ//9xWTYkDNnJq9VW2m5XF8vl2lSx/X3AMDhU35kee7yXS94mfh8St78RNZDOetAEwBAmaRjoS6t4a7M0TKFcWxNtfE+cvvgsWKCjs3U8jwFAGxd0w150DIAkHO0QSjaSPM3Pa6BI+RnVtojAPAErBRo6AeHtN1YDP8uRra1aiutXgYALTZ1H287pn+SxAAA0pFB0aQT7wuzKbOQwV93kfC/Qt13j/TI0k5kg2Yqox1YY0VBwlKdWXgx6VvLzKlRrPEjRU53Q7QQdpenE/bW7G7JBpZOpUmfLVi9arXQWkhtpdXLZP8WzFsQFx3Hh2vm/CjrBZaX9UbvmzenotZWWmpZ3AOJUgvCtkq/2u2Vy0lmbiOfZhxLqSWuyC/FpS5qbCyiW/6LUm/om2rv6mrvR9VGyCRkNErs6uOprS2bcpaZ91Bbd0CTmsTiPd/i8gtuzxGVPpoIebTY61qJ+aT9pJOytEnQ6NfiSBlxcbWsMTRG7LBtdFvJ8nxI9FAyKEhgkJRa4jqHpigjQxMZqamry/fV1Hk3eWRx198zmjTpmEZovSbe7tRGq4+ntraGnlY9nJfT47Wu5YAGVIKSZIEF7y8KOrg9R5C++r2iI6/W9myvF2p3/YNwyqQYcl/Fc14TkcNAk+r60AkPhBzg0wkA4GNi2fyDCMAg5VURKkfz4uwOzWJN0GBNuR0Qrnk3jTrrqlh68O1wvDlyNCBp6R+k0Tqq7ACgOp7K2koA6b7xSgFGeuTgvkElWBYAEDgidxVY8P5c0DGMrbLTgx908tVTPdo73uumw+4baW94WByTlp+fFuMCkJGhBqD1ACCeFP2pTg/WVzkgTpiXUV6GtCCeD4Li82N29vYGoDs1/Lrvy379ngcADaWtg0JwMAe8ufp46gIM+brdYnEKL4/lSF5fItqjFE6ms6/g/UVBB18Qb1xgeno4x7qqf/XUKdr81i2ZIfJaU1LR0YEsbUxMWmnFUQEgP5/sYFxceXlWn1XIGR6w0JzDWosGZ2SIBgeFwJvDeBBvtxWVz5Ior2Xle486i4KIO1fP3aEXkiv0QQ47pa9CQoTTnP304227d08ejwMsszRaylwAZIGDvwCw/RQ8ObRRaBUXcIiCDpwPAN6NvQoN5vgHngOA5XT7NDVJa+31WUXSjRsxa27EXEuLawGAo3HU/+OysnBjlpdmPeNnExkYV16+HO3NEKMQJjgrGizjl1a0MTLI4xL2vek9KrBg+IiuhBRUFhMAfrojiae74Kcf715m8j0+ngDgj/vBR9QOAyArUmj2njc5cJmkOLCKa5u5PTO4YMM7cR0REPELAMtxxA0bpDX3SsXYFwNdu5bWmZN0bc7RjNraOMSPHpBRCgCrKWcYKq//njNrp4kGmyCQCQlGg5X40WDZA3z6u3vAnUEjRtw5d+5LAJi/Qm9xcOstFht9JxHp9/TjDeteKJyd7AFhuVPKhFX39vcXXd4hssjbuQO4IGxkAD6iPZy1Rg9Yj/g5/IGPAGD58kJ42Q0bwnE8AUDG39mZl5eToyMAiL62Fok2AkD34O7QM26jlIcG14oui6sYEjymrpxeyuUJlaZuqViWnz5Y0x8AQpt7J6V6Hxs+4k4N2chD386f/6EeRseB9lso89oBY6I+3lhVAQYDSHfud5qEkUEWGftj574ii2xWUqJyPTqfKOjg/WlQ5P7v4wJwSguhoJEV7hW1huOHKO1xDQD45aJWWyoAUAPOhBEAgwtAbZ2YhC2haDA/bbkfNvKmxmRobJF5mgEDNL/Q2EPKU72nD7rPPhq5rwf9CIDdageAUK2hod4GAKrj/U8BRiQ/ju8/R/7UJ4Ssbl9HutbpL63uUws2RH/k5bKe1vrKq8td1nsflDsXAES5OXQY9da639SS6uQswAC0ByyTlR6QAQkbEgIBQNbicggY8qCpdRpb3M6dNAguS4rTWC4ZjwVCXIABCitgdZ2RGNBDMAs4bSUAoDre/xRgsCFYvx5hkbkVVjfIv6/L6j61YIMLOs7ysuvttdSRV+vcnqEecycAiFpbFtUbiEpbzpiy6NKsDlhL/pS1ZQuq6TZwkjCYJOtuSVNJpZ8nIQeaf/NmPlKyz9R+b4T++cj46JF+9iM9JK2un5+0uurjkX2T5Qsso5Df/7O6smCj5/a93oI+5eUjKu0JVpLMJK/r18PDZRaWq4i3k0ykcHbLKmcqaoVlCvcQtGjEjyZ6emF1Fre3CpDa6vKZhbHn8wdLueytnqU8n7CTFSllugeMik0WaJd6CrUZDTfmwep/cY3S5M/hmqjP73V9Mj0uKjnA7ZQtFebiRWiVt8x/yrHW6GE1SYf8Hraa2psUa2m0QWRlQ0QWd8FiUrkrL5XK+ytm13iiUog3mzZtQbANsrpL7CfpySCz+G8BXEChYRVAxj1vSsmCDVUBxTfFTq3zpDO+Li5/Q9OFlrg6tdX2MovZCn6MtXM7PS8LAPQ+HQA48IcPeardqFesJtf6HvL2bby97tat9unCCQIAz/ORkWKeBwB3PgafKWxOFVYXCYvjwuqe4NAlnpcIgIhcFkQAAAfOfwwNIwAALR4IkKEpMJp6ZrWj1QUUgx2Yde32G/hIB+VVx6LUVlsCcF2Dyt4MQBzvFQgAKP62pvA2CUBaTZmF/RjLEV+dn7nuVvuo4fQRFQBYoHRH31DKAgdX5EMSb0ZGXIy0uiU+JcLqEoBprvgZgBK/BKDEHxYBAIMEAG16NQDoJYAdO7QCQAKnL043N5+mbpB4qNEZ77CXlFRk5FMJfFOd/OyOxJ/deZ1A99+8Weue5gjALphFLL+yezcB2AhZmy5Y2Wnh9feSCGE1ET8DAM2D3WeHDKFuMGi80R/hl+CjqvgSBsBlc5V0vMpCqigRF4viN7AVXV252B3+S8jaKtdTZoH5q7IIaUUjJnEBhYHWxysA3ty4482Nb2r5+KyMuvw64fQqnBknT2aU7aQe0PX8MqoXaKUsaCvivWvQmiQA7qHQ5t7bkSt5RctWYzcD2MEAwsNDJICvFi7sewf6knRnIltPn8vdxGNYvGkcAPj42OPt9hJfTqpyAws1GRnaImRBXQAQf4mBG7i2snwnaxlp51R1FjnEYRfqgBo69nHO0YD1ngAKNxbiP7S9BFAXV1EhnN7D8KLw5riiirq4lXUHK47VIf6mC63tTU3trU3T78IJilJSpQcAwK5XeLlQAXCg6oMbVYife8DCep8RSqkpACD+e0hL70UPGD5S70/pLXQ6pyhY4BzfYi20uNDgBoD4Bxi4gQyQZnVZPK3OMquXOecIdgQA0vMGuPwbD+yg9RIA4o8T20+tAFvxlV59Te6y0Vh5wWQytLYaTOgBAFCp3KNiEPzxrldUADD8VV06/wUWfw4AZDUVqzoSy2GXHwyZiTGgHwGhLHGoj7Mk0jmUAVS4D54BxcVcr90E5fUfkJTGb36ox4gSDwg9hkthP4RQCDtu3Ic6dYEDF1CYPAHweowBwgqPbVoJyXJXfFCxrCgjDv8Jr4urO51bk1GBLDOUQ+IssxesKKlSqveeH7+iBnAAqo/YTTogsq49rOfB7m23brUOp2UGQNH4DJ1gEVnledP47pKvfLdEqd/9occo8TMAJX4CoFXilwBg+lQA5HoFAIcvviiZWsHXH4q5nVDzk9HqLLNXUaFLJlORqahuz4uQOCDPAkblUYvkx1bTw3oGt3Xi4ivLsoDBnVWeygNc3mYSsoQA4PnyFwDIMCglD8EjXc3/kAQAPbPE4Wx9PW6BF6RDkW1ci2+K+JsngQE9AB2QOwEudGNdRoU6y+zl/ohMmjWyf6uiyfduWEVSnJ0wZLw4UvkMTaebCCuqLOtVFQxKGasQdwSYZdcZPWweSykFFuKwlZxoOBdQXIiGmvUkVxJ5g5TaSivnHs3SqeQ1UZUl7Q1p9Bp3kQWvFicXNvvQfGX7cR8fmqs6oPozOp1KAqgClSyw1AKSnqVA/PbTXj3E7RWnn/81jrcb4loHme7+n/Pz5krWuu3GM5+hVnmOfAICAFVWtzdVE9g05VApHvNTPawnW8fLiYmPeXvofmCNztv2lRxRuG/p1AUXOl6rrDd6WFGyyqsXQ4oXnKe3sRIT2f5YAsY2PV4nNJPUS2nv/a9wQJ3yewPiW2OcP3wDN8LQvIHP3zO+7/kXJ8IvrYGuJBUDgEhqyruaAJSXa0I0eaSjRwGA1otw2DrqOs8HBt6hzb+tSbi4RAdn17jE/UI7UwJw+Po6xLOFjmsroj//fEMmr+eCCovl6lUfeqHu47d2scsG0WA5eSqMj1AovM/QiAB8JXZnnRvBul6u9k4/v9Ccmbzwn8ZIgROwwDPET6sxdeaEa5xOTfiSnHA+//OeWetce0cDVAzl5BwGgNb29lb570L73fZ+AFCqsWg4fgCIYuspLidbVxzwNgggzZOQ0o2AyNpG2JWHKQZgJ6sdycvR3CGdDbYyE6kFABD/+uyEgoFcUBHQEAHVV1XxZyNhcwUAy/r1FP+UiIBZo0zmY+2etcQc//3uzE5T54P1evSokvj4SB/w7I/jAUB4Z3N6ZF8f3/TmJRsYwMILraQLUOvwz8ocHR2ODlSo5V65sg8ANKx0B7IsJGGtLaraXXF+Nir0/r77fPb58wkXM1HAAACUpbZjvQJAfJY00EnLRt8gdPXPIyIuiwoRLqi4mlBQkFI9gQFQUWpDhNNZbwWAXADg+AMD9w8dOmVKaMAsg2FQ+3BYFs/2TL+/EIN4Z8qjgXqjf4kdpoP7kwCgMWkdMGNDI03hOD+11+xhrWWt8uHiwyfbGk+6AdjtjkhhPV3Fx2F0/tnyszixP9cCy8/UshP2y8/Q7Brg9sHeImvLX42JlLADy+E4HrxxZlhY8gSuEGGrjOrnagAg4wMA9RH4lCu+w5lLADpQ+mlxxm8LvFUytKTEcnCWofV5fOVzzAmVlDk7yAneP4/4M79GcSoBcJb4l8SHIH4+Hj8oNoeGLtv8kNojASjWGlnwS5eK16BMM6eidMlhFwBtpK/Bw3qGqqyn2J+SkASAPtM6fz7l62QG4O8RvwQQL95qOGnZDeCyLGaGVeYesL8ayxKANl6Lt125+/DV2CVTZZGzcrHZPDmvbPLm8O/RA4a39+uux+WQF2T6/ZZMxJ/yDbcHPcBGPYDjFwBM2lPL8jafyTCF4/zUXrOHlY7iStXDEDlUAPCNdzgdeHqz8z9Hwzx8SQoAR4/S6/yYo1FsPbUKADipewnZeMvxZcrS7q2LuNY3TMYPAQAUSfHbeDma/1xmtdIYYMYYQE5yYEFKyjdoLwMIC4sHAPzHSQAqKovi8L5w2uT8yrz8uPLiWStN7Su60COnkADg8fkWU2dmZkr/ZwWAoCCMAUEU/7M4np9BE57TrM3avLm8sHnhBkM0ffbX4S4mdoSNXiPiv3b7ypIlt2/rvNjaYnwXFQb99QRAO5QB4Fvio6PZeor4OAury7mYXfMtWeFvD/X6OpNqfbtkXpYLIkTBhX1w30gDA6D9Mfp2d/cTn6kZg7gQoLpaFlQsKH/J9Sj6p1/8Yktq76LFIDAtP39yXn5dXv4zs5DFqFB06Us8jYZn7v/GVRCBW4qrC4aKMQA9wJyzJFqbn2+IXrgkmgHkDqRV8nwE4DDU53DO7dt0C6gLCqZi+tdatHlyGhjN1lPL4vVbAwPvu2aVOyn7dd4h92ReVhREqAsuxk6XqyFplT0LMILXyklQUpiaVJlfWRkXt7g8P6M8I2Na1KyVpTt2vPjiRgjO/MAq3RKopsDd3lNFbuVDWTj/hmYTj3ctzQYCEIFRVzkfirUheRdcAwB1lpXsnyHAFOVyj2w9hdPk9UsPjVM+Oxv/9cdzx49VliF1wcVY1S84eBg9JavMLlyqeOrhw6mpl4qjooqfiSruM+sErLmHYP7++sijvduVYgfa7gX1+XV6Y48TzoF6WOFPDilfxZHUWWB1VlY+Fe12qTe0wCOIQKkE+SaAQcp6E1JvlZRSYaH+AyCPn1sTnxMqmq2SOsurXl5L6vUWnYFb4KXWJ3v39viFBXXWVFpT/EFY0wOiSjg//03Wmd5ZdRcSL9SJdyN4MRK4cuX69bHvtjWyLn4claHNqFCssfN/ACSSlF+MGKC8+fSFjHPbWOJ4Bw/+1VsldXvVy2sXQ+ug2Fgy108DwIHXPr4gfmHhs4fQDegL0g2dPhI20/2ISwA4B52fv5EeQncAwGk0/HReHj/u5qUGrny+oCBWNPhg48GuKK3GcMkKcR2DddI8IfQYIffvA8hfjEDBBklG4A8AHDj0DnTwr656mAApdZZXvcxWe+bM27e3bQujn/J6CoDH/FFkQs1dBnCiklL4izERbebSUmEMTE3HzOIzOQaw42+dnX/bCBGAFjS/heNXADQ27u+6eLHrIABkGOouKVmdsgyhiooMoU/58/ga1vnzNV/j9beUqB94v02JnwDopFxPzOqCCvUyAZi8rQa/d5f9fwAkcg/APXteApgGFWq0hZM9ANx9fkWTJ4CizOQiAWDBYnR8cf1BYHNq4PMAEAgACfsPgkBXVMWlS+gBso6lapJGqKVFI6T+BQpTz6ywuSzeKVVG6tCxtrZsdQPgeLu65C9W8LLyCxEAgFlm2+2IiHsAMOWpAKgHXKAe8AQE3j5BxMrp/NO4tJQBtFOKpp2sJAPYsTwuOTnuRQbwfcWNG5eEMLdc0kkABxMu7t+f0nWzK75nlrdMxpe8SAGgxA8fYVJlhf+nFpkVvUSn6RQAOCtd39WVi3gJQKS4f0R9bxAATAaAewUFADDlqQD+W9y1hkVRRmGyy+6ygrYleMVCM4sQoRvQKiFSBlG56CZiYYigEIgFlcJWhIJ0YUuUCLMbT1mhS4ClaRJPEQRElhbhpRD1qSyhInvq6f6e832zMzta/arebm4zOzvnnW9n3j3fOe9H8f/gev6HH57vpPZyMAbK0pESpAfz/YKA5YuWvb9skdnMBGCq6PO2lpbMz6l19pWhUZdg8h1ljvLHSOCiZUxASxyw/eM9F7Cbn1LHNGWugYHyv3pJgIcDhSRAla5B/zQCZNvdnj2y7U73/lAiYFVJ3/33980jJXkqAsDA84e+aaorq5MEYCaLlBjiVwgw73z//eadZgAEIAV3O6YB9qN4CASQ1t/KMkP82BEE4Mu/5+ieoyDA6pnVzd3G6Ni3r0P8aVqwNA94nJDcetfnWyRuB7Z80rqDvv8MPA+36y1M9W13escIEACVNW9eX9+8vyIghr0Fnq/r/IEdFnq/xP1fwbHjprFqZyYCvHDaYzRXGBkHJAoCArby5qtJa4KAGctAwIzqTR9/vP3j7Xu20whQ69gwAs7UgbPIfGyRRUYxs1LMCzy6tnWTGj8R8CkDnUfyDyc5WOiyxCtmQmTOGxcXd20cm7mdTIALI4DwvHBYGOopjceO9czaggDcA0TBA+4BIGCSsp1mr8YIAgKrqqs/BrbvOWr1lMa5egJ0WWQQAIhqXgAEqE9BQu+3OuilvL7W+FZKOAmHvYuBkwl4rV81WCB4CmNtgncag+XfKyr0bWyiq7kK2MDQdb2dPALUtzPWywznWolWoFcD/fv1Ul6pE1DKjVmkiloGPgMvPTh/qpGOWjsGoPeZUlF9+ypv//pVTspyLe5S3n/paR5YynvfweDt+qzzEAn5CWhkdySGR2NKMD4+1oH/c5WAsv9lO9qSqJZ5k5LbNgukKuerrxUmKrSXzyTQ2moSuJEgiiouIKBfAPBTpWO0IzJS9rAsWNAWPLR0ZQw9VyIisH1UQcnXnJVdSYjg/U/Twcdvl5/fewzejv0ZSlZ2SDmhsLs7t5w+I2yIozwjwwGxjFcZkflh+iz1L7VBtW+jzc3pzM8CwoyGUM7hBcjz5YIKqTSBaWrWWbTxcVZ6IHhgYNMAZ6Vv7ADEk4J9jgUBE1TpiConQzls5WJji2IHStN+8vErCEzzpSqlEVtnVG0dylnZEioQmMf7y7jnzXMTEDjBF/aHAG/n/YHD54us8xDE7WjurLVXuPDDlAjIiUzPyTcY8ImRKSBAZH0PHJAFF4+/jfDwd2wl5c5jw8xB9cSAzVeeL0tleZ8gpYik6yRlQp0KMSkrXb3uq2EXvpv8LmWluWNFEIAqBDcBqnSMTiQCEH7R/D2lu1ItkJZdBWm+aWkj0qq2YjtnZbkKawbvf4TQ39/d3d/Pf/TZFVjg+xID22l/jv6aiyYOP4DECBNQX9HgKMx3VRAB0Q5k9nNiiYCUICaA4p84ejTCp/25zQ21zCCgvHxmJUZAoYEJkOcLLzQMDE5fsRcaLDQ+BA5to8IwImCA4qcn7cePX6cSAG8zI0nj8WJ6fJQqHeMdiZH5dPk3IXyjOf/rkC5fhF9QUFp69jkoNOSsLBdIzOD9ScGcf+gio/GiQ+dfjxcYMV2SAN6O/YGJzcaJQuoSARXfFDkiwztiYjPzw8opNZcSaTBGRpYnwhwT+59/WEijfux/heI4URk+8+aamZWzzTKNPUyebxKZwRURwskLbSqatCj+nTsPCQJ8/Dyn35kAY27nV7VaAiZdDAjT03gUfdLl79rVbcxw5M+mvjykMEePSyutikPpKkvXEtkxzwQA2wzANv6jT0RBYJcggLfT/ofroKK2NSOi4ZOHOEBAaE650VEUkwkC+LGNf5SkJRFwzWiaGm08QbW+xxxZe/dWOvdmhs901EzP1BAgpO9UR74U4sBZbSYm4KNtOz8iIAlLSlGVSgoB/vUDQWb+bSAIGMnnTlL0ivgcXP62Tbu6zZE54bDW+toPI6CrNC6utPQcGgEsXRE/CGDlxe1Tt8Ay8NAtz9KffWBmtpXCv/NO1RFip9G80+hfh+MTAfmFFbGO0AUdMZnhsbPLUzLSMQjQ05kY5J8YGUv7L2scfaB/XOMLtH+8MysWU9tAT0tfX7gkwGgdIaWvvlZZEPAhj4DPQIDOoYIJ2GdsQFkiDDLcBJyvFjzE5+Dmtys7qDwW1ZIgAFJza0HaCIRf+v3XisMD1+IKAoRIsaRmp2/nP/pEzPAkgM3TcAecOFwc35Gf73C5CuubY9rDQQCMkVPgCms04kVkfvhs3v/9/nHj+hE/E1CE+LmYt69vtyQAOWSY1UkCZPyybQ7KkupCP9yG+ImAG2vUyXYyiLyCCfBvaPDXEGA8Xy14iM9v67Tj4u++dPduJiCgYF7p2WdXVZ177tenfT9CODzw58Wx9OQMlq/9ppvsvufSn/EVmAECKEGnOkIMP7TN/9A1fHwiIL+jor4+ph7FuUxAeUo+EwBvcBDA+7//Pp8PEyDiZ4AAPl8iQErfE4cPc8GSBNr4hDK/Wrb9ieOp8YGAffvEF078NmDpeI1a4DC1vjYxJ5YQDuArMCuwC4MItjaY7Kq6lmtz5VOApScr2DE3QcvjP4APPZ9fYpyyljdetMkWFnJ2lghIsVgc+UYjnoL+QeGz9ftP5cd/bCxYIJhk1tn6F7XC+qzzeP32K94ABAEXAyCApOONkwGRtT1rSLxaPQzAP4qwdKk34wvOEn/xKnDUmzBGB9477w4gj7frfX01hg8MvMbfYRZLmHAX4/35DfyOydjbo5pZJn1zvSXUUmEBVb4L6D+f/yMKQKYRvPKSBgeTUKp7gdT0c3XSNSlaZqzjo4upse0DAVFcDHytgmt3rwDqLNQXbekwAaLAwky1x3w8ofRVua/P4iImwwcGNQ198OBBLy2mMlQSnQGLF/vOnD5scyCjTPEpVnZhFjRtdkrbHX8U4JVUUVFfUeF4z2wjWHN9NtZ5SNFop8PBZXzF6dmjID0/ePjh4vLyYsXn4davd0mI/uKh8CWm2Wwz5uN2ki8xS1tRsMDHQy2ytnfzTn3tMLLQhocNAcETpOPEwaHeBz0IQLM5Q5ixzX4iIzVjZUZ2yr0ls8gQvEw6RNCdZm8+vmLjbXZjsGfbnTGdunBEgYa31/6KehdKS9dMkVlfH79JfdousCSnK7ANPviRlgBIz4TmDx7+xlUyq6T+vpkzUeM0EwSkKSil2l2y2AQBNTWoxiSLTZa2ggA+HipRAf65DxABOBN3HpMImGS42cClc+w4sXmoNfVlDwI4cDm7Ezt7UmpMQkRIRMLqEkYZHCJYOmeGH99xfDcISDWkTvHwPU7npplhskADBDhcaE5fY7EycimrmqvxCU5yBoIAZ0YqbEKH5W678VgFcsz7R4/u3MsIy7ZZFaQCtZMFAYsWGY3bXmACRgoCjGaWtg8h06Ma3N3+4Dlau/xRAd6CAJmCIQJsqanW0zUE5GjihxvdsOyYkEC/iLensB98SZl0iNiLG+bx3cczZ4832g1TZPxyBKRsYTM04XiBr0CM0+VyrrmYSwKmjB+6o2CS77qFC5WSl2hnW1tloiUE99yQoIuoDW3WrP19eAYMGwY16uuN2IDsXbtkSQwREGrYtuydDiLgHZNa22tmKawYQsRUiIIFs2cWOMgA3Ky+tuy2W63eY4d4jgCKX5qxPZFhD5oVaX9xeiPiBwGKQ0T4pszdxzcdnz0+WG2rpPoD5fMofiYgz4HLDygjYKhrfqDvsGTFwQEEVGbh8o84e5h950RuQ5vVtx8MjEP8RIA4YEJX6S7hQEG+xKGGmnfeWW5sJgLU2l4LZX0VApo3SkcIszZ+aeCw+D5gJq8Qcesv3t6bdyN9oBCwocKloKmpyTW4KmHx4mGLnVOyED9QdmxvZlvbk20gYNPu3cfDmQAZPxOwfosYfTTbRZ4kXhdQ/z6AEUfCYLz3QGDwsGS+/A8IAootCfh2+gUdIqlMI2B0H+KfQfFTZ6c6AjgLS77Eoc3L33lnUUcz+RKrtb0Wer86AmKE9jfrsrj06j5NQcMvYzdu5OsvQStKuGd3z8g0Bc7CzY/RyASobYAQckPCTdK3mJukqP6A70G4Aymf52W1EZRvsTWXtHM20hUSndEZVrQt4vKPFFJ58jdNfXPm9I07wZnJfaZt8maxU6D5PCKgbhkufkcz+RKTtJUE8PvlPeD55/kxcPfa0++RM/EA2d9ByRnuY8cV4RU2NSo1dcpULQHlhoxYEf4ZggAZ/jyE31g1NV+N/9iQ3aZp5Fs8nCDOn9sBRDl0SBSyxl5jgy/RZnWnQfunwdWcgPRG3NEgKviZkNs8XErJyW8coJo4jh+pWZNH29pVw88jX2I00eBGENRMvsQsRQUB/H4qxmasB2BuFp0jg+dmrefCxk4iAjhLTO5x08JgTD9pWpibAHiRWSIRvyDgSRDA8SN8ip8IcMdfXX0MBJBvscZHGN5iiJ8IyL5wTDYISLUB6n28FtpftrkxC0d98JCy+9e5peR57FEk8SkI0ElN8iVGaVxNjdFcCF9isV0QwNvXqklvgAjIkUOAAQImGW82KlVaIOACOKmOBwMqATnKUwA8yBEgKWACshQdn3kcbYDsW6w5v7UYeQSaqU6lEUBunLUCbxOGfr90A5qtjiqAYuqsu0yVkqjj9YBeatLmGmRlC4NCF7m3hwbR/zmPtq8FtPZm0bpaXsg/88sWNcuJ/81QGFCW01DA8k+iCsD+HrtwOhonqIh9pZgCYpghfIXF1RcNegLu1rVeb0+p2pDkmTcmWenO4QI2BXJIXRYVdUWS5h1508aqWXZAX2sszNDUz1uvgvXzKZf40MwX6R0puCXvVeC009T0uSZGL5aimlrgsbq2NdPARqFSAgp4++juYqdmsawwesRrpbPNs1Y4NcpiycbuLqcLv7OzKqfe8d6XG0UWF4Djg77WGFIaULPU6kQJpm0efXTtqZf4GFD8vkx6RwquRdYsEeI9aRSyppw2JYwHATiQphZ4rK5tDVnV6kt8gbQZcVuxHQEmInBgMyAIuIZqd6Ujg00bPhPgb8/KaiqrbGrLbNkNApAvp/dI5OprjSGllx9oKiiQWV8QgMB/+OabH14ngIBTLfGB0IXXGQjQOVLk0WSvcJTg/b1HjRmT3NWVfDWDCcDxNLXAcqkrV0y3UGKUVv4KS06k4a5IvsFGg82W4pTxny4IQPzI+E1sngil5yZABvhCtr2msrKsrL2sJbNpSWwYCHjpvQx1u77WGAQ0lXVtLaiSWV8i4BCmYcYJBtby8ckugn1ozf5iBHD8TIDekSKPJns1S4SMRU3pxStXagkAnZpaYNGuHjElLcIqCVhY2DCnetjWrajuRUbI2L1ypc3s3Mzxn75ZElDnP3L4yJ3NUHoKAcoVDsKZVFa2tcMvP65lScvUOx5JwdpRe1ezozwmS30CRslaY5WArtTcLrmEBxMw7hmgkVYgen2tCDg1JCRVU5w9wPEzAXpHCnah1SwRMgQP3ITkZDseusBz8V6cNVVrgQUBFYGrdwRWSHO0woVz6ue8m3z2OaVLUZxs6541q9uwsuH4McJxk5l+506sI9P+kcNJKofILyjPWI7CXB0IaI/tmUEE7G8JuyPSkIFs0XEpTVuJAG2tsSAgI7iKs54gAN/9ZwjjBAHpQnnWObOF9BZKEvFLAvSOFAoBSOLheIIAFDFnX6olQK4mp86vm8v37i2HYwET0DBnznx8P7efc24ptmMEVNhsIe4sKxFw/sSLzIdkgYM+CxtKBLS0NM3vw11uMBNfgUhaNkuugLYaI0CNX0rpAy1dUWVx4v0g4NFHrxUj4DUQcKcgIDUqCgSYFQIGZPyt75r0jhRUIHF/ibpECBEA45mNl3KPPAgQq8npCDBmwARItKlRre2cBvpl0Ps4B2zrtmVPkPFJApBTbTbX1TWPBAH6goWhWI+wMhMFUC0tRwaXbAYBuP4Z6nS5rtaYf0scaKqqKsX7FQLoHnBtx2uCAGVPbvNKZwKMRhl+77smvSPFipmo9OD4BQFGIDk7N5mPgQssaoU1tcB6H18QUN9O8QNzh3LACcPUggQmgB4AdTv9rxl+1clLbnh3pq3bvHl+S8sgsGTzbBCwyuJu6zHX6muNJ9MSH+/jAPx+IgC3vh8OH0b8TADf1QFaLg1marcyAQNMQG8rCNA7UqygUieO/1U+Ht+YduzINQv4i1phtRYYBEzx8PFFbW77EqXN7N2rva/tDtEvqWH+uyU3QMDqrErG5vDNRMBe7ZoarfpaY7HEh/r+9fT4B15nEAGA6LYGmACcungMAia9IwXXInMWex4fz6wWTwgChhJyGd6EC7QqDTB5ojVNV5BAVN+od3AANJP0c8NUeTo7r3U8jqsuqaGrNZZaW33/ep37WR5B02amb03TO1LQXis2cIGEPF8mxw0vo4TSO6lRngycm8f6c3mL895Tz2D7IGRuUvQR8i6Tvr46qXoGgAINLomYCgz19qw/GeMMv2l8uPNxxQhZ3/ZmtCkwQ1pbLM+6cQvDKODuHLuccBrjlFL6KkDbR6f3Fc5YzwVaAi7X3WshTRmyE9NUbFxsSHwPwJewweXaHw2dW78SSBPS9Ko6T6l6BrLHqATOEXg6zDvbZseyvAEy6zu2MiElISTFnuh0kt1g1lSeKFXPx6Jvw4MpitYW5Rb9+bO5GytfIX3VeISPsFqwIXyJ9b7C/kgZKVnrzrIyFwhwNyPj7rTMlFecQrGvATrLmpYhY5SV5YLUTGNpSgURNVqpCgJycvCDTVr0gQCbPcAOF6ULpZMUChsnTAAdYoa/CATgt4Z6PhabgWtm+bUgQLPuDlas0J0/CEBgmtXx1HiEj7BnBsq80+slt0cwrW35yB14g7L/fU1N5SBgUd225prmZvzT8QIIWJyBq4/w9zaVHXiBCWgX8Z+tFEQs12QYckHADcgv5CN+SUDqJVi2WcQPAi5IwHjxi9pRVNQCFE2FoUIGtxKuIkxPeiUxalSq36jixYziFZ9tOwQoo+DDZyUBLpdRIQAXViN9RTx3bdnyKKUh7lrrE8J1pAUFUqh54bHEEBO6L92xXsaP3ekNdxIBzc11zXUdy5mANcZVxmJx+V9A3osIcLnjv8SeS1ng5WrbSOhS/ZIYdlsCHtDSIv/C8UUJiVEbEzc6isKZgLAVM+1m+xrCQWBNdN4jAci8+zqJEJTu3qp+PTRSuK4C+dHl/BoE0Fp2Bw4I6QsCEM2WlIwMUPDoQyCACyZm4IRYamsJoCzFS3dgvh1QZpxLvkCWt3lnc0dH3aLlNcsQcF7kquJVuPxNB16QBLTL+M+eYIew4CzwIqVSDwREqPETAUNxBTTl9xfMjSzescNZviM8fMCR4ggHAZhtUOJ/GQQsDh6VGuI7cxURsMZNgHL8IL5gD3f+8ENPA7JMd93Jnz8aNSaHxep44oLiB3IK4gcBomAibdy4UsSvJ+AOEKAvOJisLqbGAa/A+HfSt5/iv4wIcHH8IwKy3W12y/3l+TEBFL+6GpzNMwucixHEX38QMLBsERGAG4wHAaHOmc7a6Rw/E6B9vyRgeWddTc+yh4gAWcDR3y+lr/ARvj09/faHeLuQ3jNQyS1Xm5u28WfCbwI/t+oLDkiaNjMKmwUBaxo6cfk5fiKggeIfRj/OcEtpvhxZ4EWaR23hkJynn0b80qP0uTAmQOMHEO1E/JVU4VS0bFlReNjcL38W+Jjwc+/4jW/nTg/FuuF8fuvmHpSOQwC7zrBP8H03d7bcdwNPtbEZm0b6Ch9h3Ai2KFNxbqXGaX0vvXRFAB7L0REBYt21ukV0xfPqcfkXyfiR9Y12pQ3zTbCiBubQRcOx/+XXLJqjdWgAAc/h+iN+JmC2TY2fgBGgVHjtxlK54WGn8AkOsEepr1es4tEB5AEHo0Wef0ts7O0iQM5Sq6vjgQB1KpK2mw3ysy2M0JPa5k7K8roNKd4hmOZ0lnVqV6ML2+Vn99/ZXDdyotj/suWeDg1UEIG7AB4CjNlmXe1wvJPL3ABRkPFPPsG3riIo3xEQIGcZRZhEgPoUoP312y93t/HJ1eZOMifTFRwAJi2ODr7g8frdd9+/6jLs7y5AMHmC5B+yzO4SB5Jz0gwil0ACkHPCEv/kE6zvslOFsgCXVyAHitU5dFJabscO2iy211kmT4zXFUioApyxoiF4UrCKKVfrs7TwRvFwJt7Rdvqxj4cc26Skvrm0gl0hNrAWlu+9SpGm+uONB7T11nkEFvj4B2jV7T958uPT5k4+7zvluumPZxZQzdSefEVncRHlKRXvhLXMI8WPKHeeFfWpU66+2I2bxuuztDeopjkPA2+dIWt9xSIwsWFsniYW1SA5PFYWSLg/T18wofcN5l+D5JPlqidtkGTq3OXx+ZM7MLkB++7QDp7BMZ3sU5zqB6td5TUIeH29RyelT9QkjfEuCPDw+gIBWEYZi2lLPL5dn6X9vkK7uvqun0St78bg2KL89vZYIgB5e9EoCCFABCRkB4waFSgelWVy9ThVCut9gykfkJ7TiQVPmnqK1tyfZJrfE9ilfj4I2LFxdce+jn3+b/ASG3x+2Zj/svtJn+JRtByesj8IwK+kyFSLgoU+fl1pJcDoRrqTNvanpKutuUBxvXVXdwgYUAjQL2xMxcvrqhcutNqruc3tmFzSIraoKbCqpWg2ETBTNEqyEPLB9Ugd5et2f6tkSyMH4AQc0eK5H1NREWHj43OOL316J9DUfpAIWNJXUqDWOk/uwFjZV7gv1PLGp5IAX7vdzzfAHjJB+BRnj4Kxsbrw8hkPbXvo0ewQBe9CKnaljR5dMoj4B68dfcTgqbUt9fVL2g3Z5yhfKzYsMDaT+dghiyQgrQWPgVBrbkvuu9W9+bLWt6ioottNADu9BUIOEwF2q93X94QEapI4feLOOhs5/u6KCmuMQkBDw/T0+9e0d7b3HLw/2tQQtHB/ybw0WTsMAlZvWr3vDf+gjn1MAElfu1+C1c8vdQJtlxdMXXj5jIefKXxw/c8+Er1QSl1bYex73eC4/bcNjpMEpNTUpIiChvr65x21BssxBXRArK6N+M+/iKRv647OzoUNDXMKl7TX7tmDEeBYwKvLhYe3NLWAAG7MdHG36BgmIISywr7utrloJ8evpt0pfuSpkaN2kfSFUnQ1dC5Ys6aop70FvxVMFqyEg4qVNFkLfB4TsG/fGxQ/pu9J+dl9rX7D7NZRtF1XOwwCHq149MEv8UoABPAIaBwcd+2rg9cyAXyNm2XBQkPnlztiUqBZBIbwCGCLjzp/MxPgKK+GCij0r9/elrO9N56qLlnptBw4MBg+m5e8cFH8IECt5j7BGH7iininev1PT9osa4PxiypGSGsQ0NlQ1g4CsEY6pDKPgMZ5aUoW+rw3Vg+sw7y1nL4XBASEWBP8Un1puz5r7XXWaw8+mNJtVbDQZ8LWNEUJv/pqY3+k+v0X94DumApHtLpiob5NjdvcPr7utsJaavOSBIQTAZktLWeFzz6dZmpcFH8ZF0EtjaCeYVmQgIWTk4o1M4+VWVPNuuODgPbOpibcAfct20cEzJ+zv0TMoigEVK/m+CUByDonJEwYAWfJS2i7LmsNAh5c/60GV/gEY4EkjVsc33SgvbDEHdTXqlvxFFgQPUSF3pzse9z+GVWEgp9AgIj/0ieBcNPp90xfsMDF/cJXEgEbIsoA8l0mxA3qzdN4Ieh3VOmNLG9WT1N7T0/PvmUvEwFL+maUqtIZBLy9eqMIXxKAeO2pVmvCKN6ul9pev6z/9lktAd471BwtcF6e6vIEHkBAyu54TfzxenMyOFMzygWGTOXHP0HU+t56j3ITdF0IoJbX8/N88MiWE0sEb/1C0LfiPJwNrsCypvY3yHHC1FMwSiOVQQAeg7J8AzD9g7TGCPiOcYWCabqCB9XxVqAt3mPR1l9MOkD+aZ2Jz9CW+tL205OAQV43mBPQemmql776haClFI6Pjxbo1e1vMs31qDn4J2ntpZeKVgzkB6y+7tetEr2M7b0vM2B6JrerWdbLTxzBB+qzynqCshT4BfAMvX7JjPjElKypUxMdiZI3xV3CIrPEdDlOkyDmXj1yhMsfFOxou/XYx0mQ3sBUQH98fbxeeql4jq1h/vwGm1153bpDwaZO16ae3pdp4QG4aSvb3W1uFzWW9KHAAQUNgFrQYFINHAmmLMMW+sv4ovimN5htFVjj62HCzcDp8UYkiOm2K+6Cs3k1OpRVKlnhvPe43oHTvlSQ8X7UykPyNWFpkpDexe4CjgqrrbvCUIG/u7u7K1z6eEWBREKC6sBgt7UvXDjfliBf66XpyzcXw4UX5dlyu2JudrgR1lq37R+k6WwOXRY0cIpN9SF+NWuLdCDBrDD8xqZYUHpbwfe8dEJkfEa6IyMyIzIofDM1SIAAIRttstY3773pq5TjkTna+4unf6M5/lLZZrfaXcBRERGD6CNKbLaIwLLGTindu7oUKcxS0Wq1qw4MCWBgznxriHgNy1as2vQmgMLNuI4hgoDp0y9Us8Bk7tXYuB/3wMHGfhCgncpae5pYKFlK3XlHs7YYHzM+Zn5sPY3LWeZCEFCyEi1jW7bwyh5vtX6ptAF+DFSblMXYbObuzs5uKwhYtQrF2qNJqpOP8WlEsOpzvEFI7417Kzcvwn0QBEBDlJQsdux9zzXuSFl3EMULFMxQpDCEiJ/Nb1jACOswxYEhwTZ/DjHAr/F+Q4qM/+mON0EA1ieFR+aFQkoyAbj8TXPQlHek8dAHTMBTMn5MZgqhk91gtIv9s7Y8Rlj/li8oP8dvndkaE2M1SpdReIzqsr6FICCCYMzo6Ww6UiEIOHzg8OETh6+l2uM8nqVIxwDiLHJSFknv4tq9mzfvq2letjnMaQx1BZY4sVNZo6sisZDPZ96M0aPj4s5mKQxlZLdhPCOppUhFMICCgCXWEHptaG7GIBDxPx3XEX36zewRugBnL9vi6PL34RnY19j45utrP3n4ecKbEpdCGAHGhiVGaoDfjnsALr/lQf8P+L6UXm+hiSCcvkShrna4cKkwWcFPIXNPj9koCDgwsbFxeP+1JJ3xGvEXrzlYnIEs2ZqkY85KVHdnEQF1ze+AgIxIgyHCFpy7uqy5OAMEsI0vjZcROH8mAPEGQCj5ZZ/rlooh1iW33bbEGoXXMRUx3Rkcf08cLWV98kLJB+jyX4fLX0fT16d5ZpVp/UASxsaL68XqcTwCHnzrg5eZQb/qG1J4+Ct4K10bv4YAY4WrtrY+NHSFGAEnTvQfuZZylnjN8R8EA5QjjHZL6X3LQMDs4sgUw7JAIqAx0uEPAvj8S5EWl1KYpKEd9Xw0Ia9KRTDwwAMLU6PO9jZ0d3P4lOmJewME6KTkVa6SPmigvsbDb74mCFDjJwIGXU3AEQX70Umi+qQGpba/fLNqsksE97KUdsO0IUa47GCuqbbWbAmlgFHwcWI4jk6lt71uvwdRshOfpfyU6Ozra9rMXWaNByqaWppccUGQ0uL8x20dgaSxJIDiDaH4tVIxxLrwgQfmpIZ466WpXkp+4VooLj8qWCQBavyvjtvwjOfrL/yy/ahVW3yDfAKqM/j+z4Crr6VQ5yvMBAQCZloMGgFQVrgEXYX9OBoRoD8fECB/SvUAggBzs6UszlVcaGYCeK0KavbD/kzAqaUixsB1ty1J9e5Vbsp7qvYgw3GStCQp3NdY8vzrDBCgPvUIG3y6BLYKeAepbFrS/f27XlZshm9gRF/h6SsMAuRTgN7DBOArII7feKqCjHihH+QwYAL487qRpmMC9FL4r6Virgmo7WVAYP7Ue0ppif+1/4sTH7izrm5jsA0C+v2nELhEpJrhr1teTilEUCCOcvRortxpxYqkJOXopyrI0LflWdxrTwicJIUf2GCaq5WGSTC4nzZtndvyIgzgo2G7B2SNw1VXjQw9R/N+/epzQZM1OWZgnhszGJfq8MckTbGtbdIfXv82TD0xAzs00jDJiaxncIIsY1s3Nyy/PMgRCTsouR0ODVF+qpPt2P66ukOWBPX9l9cp6CkoaEk7z2io+YaADlfCVaNHqEBKqErGHa4QkD3l92xeZZWqAX+fku31b8M0vy8QpbCKFGYCVq97e906tvYhAiLb2spRmy+2gwBEfoni4njJ2MGYi5ZftDNhgnw/CLhIunuPXJ6WVjMZN9FOrRSeN8LdIgkwAUVFOQtynAvuKSrCC4Ph1z9+tRm6ugw2/MFg8Pq3QVnVsq+q3VlSImAdCEhel2tMTU5uRYNCZnkbehPk9pBsuwLy6LzQ1BlxzfKROy3yfweDAMR/jSwrWT7ZuDLBMCBvgj/9tHU8CKDoq6q8CRczAU6MAAyBBQvwgi/879lRUfRvw39BgCuwqa9MWeh4jkkSkJycm1yLv0BAZmI59WZI6asvUKC8PFWLi6zGyCtAgDR3H3PObQ+keUfFzAqJql5XnZzMbnCt80Yg/LRzq6puSsPEEAgQGOjJFH8wEH4dExx8MS7/f0JA55KyOftlv8WGsj3JYi2L5GRj7eNvm0FAW2Ybxf+LlL46qUq+vX2B15xPFilw9Zl43uV1irm9IMAeMmuW3Sj5hRIUBFS99VZV2lg3AZkopJQMSJ/jm25KMPxHBPS0NO0vk+eHE5wWLK29UpPffhwjQC999W1uuIeU1cD1REwlnT8ZBMjhf+W5D4AAc8isAnM1H5L79ogA79KqHxdV/aQSgPjBQLgkgG8D+Ps/ImAJrv+c990LKU9bLU82udZci2puvfRtL9Sux19/namzERUFO/3FdGBklljiYqRKAHyWv8Is4k8//cQNGCDAG6iqajmGphVJQHgPCBhQRkAqf/v/s3vAEjV+QQDHT0DG7vFWvdTEkFduGDxiBiOoXWLxGqVgQV3i4qZzHzCVggBzzziNFJ43huMvrfqpCk07IICR2TMwHwNAfQoA/9VToM+15HzNQspz8fgHkiUNraeQvu48MGDqp6fgYnfFQrS6xMWFY667rdTbaK45wBBGF5fNGKN1uU0GAYz5bh1wCS484T/TAUdNk7ULKSuFvK0SJ0lfHS677MzyFZrV1NQlLi6Aj9dYb3+T55IXM9CxogAcV/3vSvC/Bj1utPD6n/EnnaQbrf6BCX0AAAAASUVORK5CYII=)}.ad{background-position:-16px 0}.ae{background-position:-32px 0}.af{background-position:-48px 0}.ag{background-position:-64px 0}.ai{background-position:-80px 0}.al{background-position:-96px 0}.am{background-position:-112px 0}.ao{background-position:-128px 0}.ar{background-position:-144px 0}.as{background-position:-160px 0}.at{background-position:-176px 0}.au{background-position:-192px 0}.aw{background-position:-208px 0}.az{background-position:-224px 0}.ba{background-position:-240px 0}.bb{background-position:0 -11px}.bd{background-position:-16px -11px}.be{background-position:-32px -11px}.bf{background-position:-48px -11px}.bg{background-position:-64px -11px}.bh{background-position:-80px -11px}.bi{background-position:-96px -11px}.bj{background-position:-112px -11px}.bm{background-position:-128px -11px}.bn{background-position:-144px -11px}.bo{background-position:-160px -11px}.br{background-position:-176px -11px}.bs{background-position:-192px -11px}.bt{background-position:-208px -11px}.bw{background-position:-224px -11px}.by{background-position:-240px -11px}.bz{background-position:0 -22px}.ca{background-position:-16px -22px}.cd{background-position:-32px -22px}.cf{background-position:-48px -22px}.cg{background-position:-64px -22px}.ch{background-position:-80px -22px}.ci{background-position:-96px -22px}.ck{background-position:-112px -22px}.cl{background-position:-128px -22px}.cm{background-position:-144px -22px}.cn{background-position:-160px -22px}.co{background-position:-176px -22px}.cr{background-position:-192px -22px}.cu{background-position:-208px -22px}.cv{background-position:-224px -22px}.cw{background-position:-240px -22px}.cy{background-position:0 -33px}.cz{background-position:-16px -33px}.de{background-position:-32px -33px}.dj{background-position:-48px -33px}.dk{background-position:-64px -33px}.dm{background-position:-80px -33px}.do{background-position:-96px -33px}.dz{background-position:-112px -33px}.ec{background-position:-128px -33px}.ee{background-position:-144px -33px}.eg{background-position:-160px -33px}.er{background-position:-176px -33px}.es{background-position:-192px -33px}.et{background-position:-208px -33px}.fi{background-position:-224px -33px}.fj{background-position:-240px -33px}.fk{background-position:0 -44px}.fm{background-position:-16px -44px}.fo{background-position:-32px -44px}.fr,.bl,.mf{background-position:-48px -44px}.ga{background-position:-64px -44px}.gb{background-position:-80px -44px}.gd{background-position:-96px -44px}.ge{background-position:-112px -44px}.gf{background-position:-128px -44px}.gh{background-position:-144px -44px}.gi{background-position:-160px -44px}.gl{background-position:-176px -44px}.gm{background-position:-192px -44px}.gn{background-position:-208px -44px}.gp{background-position:-224px -44px}.gq{background-position:-240px -44px}.gr{background-position:0 -55px}.gt{background-position:-16px -55px}.gu{background-position:-32px -55px}.gw{background-position:-48px -55px}.gy{background-position:-64px -55px}.hk{background-position:-80px -55px}.hn{background-position:-96px -55px}.hr{background-position:-112px -55px}.ht{background-position:-128px -55px}.hu{background-position:-144px -55px}.id{background-position:-160px -55px}.ie{background-position:-176px -55px}.il{background-position:-192px -55px}.in{background-position:-208px -55px}.io{background-position:-224px -55px}.iq{background-position:-240px -55px}.ir{background-position:0 -66px}.is{background-position:-16px -66px}.it{background-position:-32px -66px}.je{background-position:-144px -154px}.jm{background-position:-48px -66px}.jo{background-position:-64px -66px}.jp{background-position:-80px -66px}.ke{background-position:-96px -66px}.kg{background-position:-112px -66px}.kh{background-position:-128px -66px}.ki{background-position:-144px -66px}.xk{background-position:-128px -154px}.km{background-position:-160px -66px}.kn{background-position:-176px -66px}.kp{background-position:-192px -66px}.kr{background-position:-208px -66px}.kw{background-position:-224px -66px}.ky{background-position:-240px -66px}.kz{background-position:0 -77px}.la{background-position:-16px -77px}.lb{background-position:-32px -77px}.lc{background-position:-48px -77px}.li{background-position:-64px -77px}.lk{background-position:-80px -77px}.lr{background-position:-96px -77px}.ls{background-position:-112px -77px}.lt{background-position:-128px -77px}.lu{background-position:-144px -77px}.lv{background-position:-160px -77px}.ly{background-position:-176px -77px}.ma{background-position:-192px -77px}.mc{background-position:-208px -77px}.md{background-position:-224px -77px}.me{background-position:-112px -154px;height:12px}.mg{background-position:0 -88px}.mh{background-position:-16px -88px}.mk{background-position:-32px -88px}.ml{background-position:-48px -88px}.mm{background-position:-64px -88px}.mn{background-position:-80px -88px}.mo{background-position:-96px -88px}.mp{background-position:-112px -88px}.mq{background-position:-128px -88px}.mr{background-position:-144px -88px}.ms{background-position:-160px -88px}.mt{background-position:-176px -88px}.mu{background-position:-192px -88px}.mv{background-position:-208px -88px}.mw{background-position:-224px -88px}.mx{background-position:-240px -88px}.my{background-position:0 -99px}.mz{background-position:-16px -99px}.na{background-position:-32px -99px}.nc{background-position:-48px -99px}.ne{background-position:-64px -99px}.nf{background-position:-80px -99px}.ng{background-position:-96px -99px}.ni{background-position:-112px -99px}.nl,.bq{background-position:-128px -99px}.no{background-position:-144px -99px}.np{background-position:-160px -99px}.nr{background-position:-176px -99px}.nu{background-position:-192px -99px}.nz{background-position:-208px -99px}.om{background-position:-224px -99px}.pa{background-position:-240px -99px}.pe{background-position:0 -110px}.pf{background-position:-16px -110px}.pg{background-position:-32px -110px}.ph{background-position:-48px -110px}.pk{background-position:-64px -110px}.pl{background-position:-80px -110px}.pm{background-position:-96px -110px}.pr{background-position:-112px -110px}.ps{background-position:-128px -110px}.pt{background-position:-144px -110px}.pw{background-position:-160px -110px}.py{background-position:-176px -110px}.qa{background-position:-192px -110px}.re{background-position:-208px -110px}.ro{background-position:-224px -110px}.rs{background-position:-240px -110px}.ru{background-position:0 -121px}.rw{background-position:-16px -121px}.sa{background-position:-32px -121px}.sb{background-position:-48px -121px}.sc{background-position:-64px -121px}.sd{background-position:-80px -121px}.se{background-position:-96px -121px}.sg{background-position:-112px -121px}.sh{background-position:-128px -121px}.si{background-position:-144px -121px}.sk{background-position:-160px -121px}.sl{background-position:-176px -121px}.sm{background-position:-192px -121px}.sn{background-position:-208px -121px}.so{background-position:-224px -121px}.sr{background-position:-240px -121px}.ss{background-position:0 -132px}.st{background-position:-16px -132px}.sv{background-position:-32px -132px}.sx{background-position:-48px -132px}.sy{background-position:-64px -132px}.sz{background-position:-80px -132px}.tc{background-position:-96px -132px}.td{background-position:-112px -132px}.tg{background-position:-128px -132px}.th{background-position:-144px -132px}.tj{background-position:-160px -132px}.tk{background-position:-176px -132px}.tl{background-position:-192px -132px}.tm{background-position:-208px -132px}.tn{background-position:-224px -132px}.to{background-position:-240px -132px}.tr{background-position:0 -143px}.tt{background-position:-16px -143px}.tv{background-position:-32px -143px}.tw{background-position:-48px -143px}.tz{background-position:-64px -143px}.ua{background-position:-80px -143px}.ug{background-position:-96px -143px}.us{background-position:-112px -143px}.uy{background-position:-128px -143px}.uz{background-position:-144px -143px}.va{background-position:-160px -143px}.vc{background-position:-176px -143px}.ve{background-position:-192px -143px}.vg{background-position:-208px -143px}.vi{background-position:-224px -143px}.vn{background-position:-240px -143px}.vu{background-position:0 -154px}.wf{background-position:-16px -154px}.ws{background-position:-32px -154px}.ye{background-position:-48px -154px}.za{background-position:-64px -154px}.zm{background-position:-80px -154px}.zw{background-position:-96px -154px}*{box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.v-hide{visibility:hidden}.form-control{position:relative;font-size:14px;letter-spacing:.01rem;margin-top:0 !important;margin-bottom:0 !important;padding-left:48px;margin-left:0;background:#FFFFFF;border:1px solid #CACACA;border-radius:5px;line-height:25px;height:35px;width:300px;outline:none}.form-control.invalid-number{border:1px solid #d79f9f;background-color:#FAF0F0;border-left-color:#cacaca}.form-control.invalid-number:focus{border:1px solid #d79f9f;border-left-color:#cacaca;background-color:#FAF0F0}.flag-dropdown{position:absolute;top:0;bottom:0;padding:0;background-color:#f5f5f5;border:1px solid #cacaca;border-radius:3px 0 0 3px}.flag-dropdown:hover,.flag-dropdown:focus{cursor:pointer}.flag-dropdown.invalid-number{border-color:#d79f9f}.flag-dropdown.open{z-index:2;background:#fff;border-radius:3px 0 0 0}.flag-dropdown.open .selected-flag{background:#fff;border-radius:3px 0 0 0}input[disabled]+.flag-dropdown:hover{cursor:default}input[disabled]+.flag-dropdown:hover .selected-flag{background-color:transparent}.selected-flag{outline:none;position:relative;width:38px;height:100%;padding:0 0 0 8px;border-radius:3px 0 0 3px}.selected-flag:hover,.selected-flag:focus{background-color:#fff}.selected-flag .flag{position:absolute;top:50%;margin-top:-5px}.selected-flag .arrow{position:relative;top:50%;margin-top:-2px;left:20px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.country-list{outline:none;z-index:1;list-style:none;position:absolute;padding:0;margin:10px 0 10px -1px;box-shadow:1px 2px 10px rgba(0,0,0,0.35);background-color:white;width:300px;max-height:200px;overflow-y:scroll;border-radius:0 0 3px 3px}.country-list .flag{display:inline-block}.country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.country-list .country{padding:7px 9px}.country-list .country .dial-code{color:#6b6b6b}.country-list .country:hover{background-color:#f1f1f1}.country-list .country.highlight{background-color:#f1f1f1}.country-list .flag{margin-right:7px;margin-top:2px}.country-list .country-name{margin-right:6px}.country-list .search{position:sticky;top:0;background-color:#fff;padding:10px 0 6px 10px}.country-list .search-emoji{font-size:15px}.country-list .search-box{border:1px solid #cacaca;border-radius:3px;font-size:15px;line-height:15px;margin-left:6px;padding:3px 8px 5px;outline:none}.country-list .no-entries-message{padding:7px 10px 11px;opacity:.7}.invalid-number-message{position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;color:#de0000}.special-label{display:none;position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;white-space:nowrap}"]); /** * Prop Types of a PhoneInput component. * CurrencyInput is based on `react-currency-input-field` @see {@link https://github.com/bl00mber/react-phone-input-2 React Phone Input Field Component} * It extends all {@link SpaceProps}, {@link TypographyProps} and {@link LayoutProps} and {@link https://github.com/bl00mber/react-phone-input-2#options React Phone Input Field Component Props} * @memberof PhoneInput * @alias PhoneInputProps * @property {string} [...] All props default to _phoneinput_ html component like `onChange`, * `value` etc. * @property {string} [...] Props from {@link SpaceProps}, {@link TypographyProps} * and {@link LayoutProps} + they extend {@link InputProps} */ /** * @classdesc * * Wrapped `phoneinput` html element. * * ### Usage * * ```ts * import { PhoneInput, PhoneInputProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-phoneinput--default Storybook} * @see PhoneInputProps * @hideconstructor * @example * return ( * * * ; * * ) * @section design-system */ const PhoneInput = styled__default["default"](ReactPhoneInput).withConfig({ displayName: "phone-input__PhoneInput", componentId: "sc-tpzrwn-0" })(["", " width:100%;position:relative;& > input{", " ", " ", " ", "}.form-control,.flag-dropdown{border-radius:0;}"], PhoneInputStyles, InputCSS, space, typography, layout); PhoneInput.defaultProps = { px: 'default', py: 'sm', className: cssClass('PhoneInput') }; const linearGradient = theme => `linear-gradient(to right, ${theme.colors.grey60} 8%, ${theme.colors.grey40} 18%, ${theme.colors.grey20} 33%)`; const StyledPlaceholder = styled__default["default"].div.withConfig({ displayName: "placeholder__StyledPlaceholder", componentId: "sc-1j9kheg-0" })(["@keyframes placeHolderShimmer{0%{background-position:-468px 0}100%{background-position:468px 0}}animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:", ";background:", ";background-size:1000px 104px;height:338px;position:relative;overflow:hidden;", ";"], ({ theme }) => theme.colors.white, ({ theme }) => linearGradient(theme), layout); /** * @classdesc * * * * Renders placeholder * * ### Usage * * ```javascript * import { Placeholder, PlaceholderProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see PlaceholderProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-placeholder--default Storybook} * @hideconstructor * @example Image placeholder * return ( * * * * ) * * @example Text placeholder * return ( * * * * * ) * @section design-system */ const Placeholder$1 = ({ as: htmlAs, ref, ...other }) => /*#__PURE__*/React__default["default"].createElement(StyledPlaceholder, _extends({ as: htmlAs }, other, { className: cssClass('Placeholder') })); const Circle$1 = styled__default["default"].span.withConfig({ displayName: "radio__Circle", componentId: "sc-tvons8-0" })(["display:block;width:8px;height:8px;margin-left:-4px;margin-top:-4px;border-radius:9999px;background:", ";position:absolute;top:50%;left:50%;"], ({ theme }) => theme.colors.white); // Hide checkbox visually but remain accessible to screen readers. // Source: https://polished.js.org/docs/#hidevisually const HiddenRadio = styled__default["default"].input.attrs({ type: 'radio' }).withConfig({ displayName: "radio__HiddenRadio", componentId: "sc-tvons8-1" })(["border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px;"]); const radioBackground = (theme, checked, disabled) => { if (checked) { return disabled ? theme.colors.grey40 : theme.colors.primary100; } return theme.colors.white; }; const StyledRadio = styled__default["default"].span.withConfig({ displayName: "radio__StyledRadio", componentId: "sc-tvons8-2" })(["display:inline-block;width:16px;cursor:pointer;border:1px solid ", ";border-radius:1000px;height:16px;transition:all 150ms;position:relative;", ":focus + &{", ";}", ":hover + &{border-color:", ";}", "{visibility:", ";}background:", ";"], ({ theme }) => theme.colors.grey40, HiddenRadio, ({ theme }) => `box-shadow: ${focusShadowStyle(theme)}`, HiddenRadio, ({ theme }) => theme.colors.grey60, Circle$1, ({ checked }) => checked ? 'visible' : 'hidden', ({ checked, theme, disabled }) => radioBackground(theme, checked, disabled)); /** * @typedef {object} RadioProps * @alias RadioProps * @memberof Radio * @property {string} [...] All props default to _radio_ html input like `onChange`, * `checked` etc. */ /** /** * @classdesc * * * * HTML Radio * * ### Usage * * ```javascript * import { Radio, RadioProps } from '@adminjs/design-system' * ``` * * @component * @see RadioProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-radio--default StoryBook} * @hideconstructor * @subcategory Atoms * @example * return ( * * * * * ) * @section design-system */ const Radio = props => { const { className, checked, onChange, disabled, ...restProps } = props; const [isChecked, setChecked] = React.useState(checked ?? false); const actuallyChecked = checked ?? isChecked; const handleChange = event => { setChecked(!event.target.checked); if (onChange) { onChange(event); } }; return /*#__PURE__*/React__default["default"].createElement(CheckboxRadioContainer, { className: className }, /*#__PURE__*/React__default["default"].createElement(HiddenRadio, _extends({ checked: actuallyChecked, onChange: handleChange // eslint-disable-next-line @typescript-eslint/ban-types }, restProps, { disabled: disabled })), /*#__PURE__*/React__default["default"].createElement(StyledRadio, { checked: actuallyChecked, onClick: event => handleChange && handleChange(event), disabled: disabled }, /*#__PURE__*/React__default["default"].createElement(Circle$1, null))); }; /* eslint-disable import/prefer-default-export */ /** * @classdesc * * * * Marks group of fields as a section. Has the same props as [Box]{@link BoxProps} * * ### Usage * * ```javascript * import { Section } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-section--default Storybook} * @hideconstructor * @example * return ( *
* Some text within a section *
* Section can be nested *
*
* ) * @section design-system */ const Section = styled__default["default"](Box).withConfig({ displayName: "section__Section", componentId: "sc-1ohbv81-0" })(["border:1px dotted ", ";padding:", ";border-left:", " solid ", ";padding-left:", ";"], themeGet('colors', 'primary20'), themeGet('space', 'xl'), themeGet('space', 'md'), themeGet('colors', 'primary20'), themeGet('space', 'xl')); Section.defaultProps = { className: cssClass('Section') }; /** * @classdesc * * * * Main Table wrapper. Along with _TableRow_, _TableCell_, _TableCaption_, * _TableHead_ and _TableBody_ gives you the powerful tool for building tables. * * ### Related Components * * - _Table_: {@link LayoutProps} & standard table html props * - _TableBody_: standard tbody html props * - _TableCell_: {@link SpaceProps} & {@link ColorProps} & standard td html props * - _TableHead_: standard thead html props * - _TableRow_: standard tr html props * * ### Usage * * ```javascript * import { * Table, * TableRow, * TableCell, * TableCaption, * TableHead, * TableBody, * } from '@adminjs/design-system' * ``` * * @component * @hideconstructor * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-table--default Storybook} * @example * return ( * * * * Monthly savings * * * * * * * * Name * * * * * * Last * * * * Surname * Gender * Age * * * * * * Value 1 * Value 2 * Value 2 * Value 2 * Value 2 * * * * Value 1 * Value 2 * Value 2 * Value 2 * Value 2 * * *
*
* ) * @section design-system */ const Table$1 = styled__default["default"].table.withConfig({ displayName: "table__Table", componentId: "sc-jnnwui-0" })(["position:relative;font-family:", ";color:", ";", ";border-collapse:collapse;"], ({ theme }) => theme.font, ({ theme }) => theme.colors.grey100, layout); Table$1.defaultProps = { width: 1, className: cssClass('Table') }; /** * @component * @private */ const TableHead = styled__default["default"].thead.withConfig({ displayName: "table-head__TableHead", componentId: "sc-1a6r2o1-0" })(["background:", ";& a{color:", ";text-decoration:none;font-size:", ";white-space:nowrap;.", " svg{fill:", ";}}"], themeGet('colors', 'grey20'), themeGet('colors', 'grey60'), themeGet('fontSizes', 'sm'), cssClass('Icon'), themeGet('colors', 'primary100')); TableHead.defaultProps = { className: cssClass('TableHead') }; /** * @component * @private */ const TableBody = styled__default["default"].tbody.withConfig({ displayName: "table-body__TableBody", componentId: "sc-1ssevmx-0" })([""]); TableBody.defaultProps = { className: cssClass('TableBody') }; /** * @component * @private */ const TableCell$1 = styled__default["default"].td.withConfig({ displayName: "table-cell__TableCell", componentId: "sc-1l3jzpp-0" })(["border-bottom:1px solid ", ";font-size:", ";line-height:", ";word-break:break-word;vertical-align:middle;", ";", ";", ";", " &{color:", ";border:none;}"], ({ theme }) => theme.colors.grey20, ({ theme }) => theme.fontSizes.default, ({ theme }) => theme.lineHeights.default, color, space, layout, TableHead, ({ theme }) => theme.colors.grey60); TableCell$1.defaultProps = { p: 'lg', color: 'grey100', className: cssClass('TableCell') }; /** * @component * @private */ const TableRow$1 = styled__default["default"].tr.withConfig({ displayName: "table-row__TableRow", componentId: "sc-bs207u-0" })(["&:hover{background:", ";}"], ({ theme }) => theme.colors.grey20); TableRow$1.defaultProps = { className: cssClass('TableRow') }; /** * * Gives you the default styles for all "content" elements like: * ul, li, h1-h5 etc. * * ### Example * * ```typescript * import styled from 'styled-components' * import { contentCSS } from '@adminjs/design-system' * * const myComponent = styled` * ${contentCSS}; * ` * ``` * * @memberof module:@adminjs/design-system */ const contentCSS = styled.css(["font-family:", ";font-size:", ";line-height:", ";font-weight:", ";div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{&:not([class*=\"adminjs_\"]){margin:0;padding:0;}}img{max-width:100%;}p,div{margin-bottom:", ";font-size:", ";font-weight:", ";}strong,b{font-weight:", "}li + li{margin-top:", ";}p:not(:last-child),dl:not(:last-child),ol:not(:last-child),ul:not(:last-child),blockquote:not(:last-child),pre:not(:last-child),table:not(:last-child){margin-bottom:", ";}pre{background-color:", ";border:1px solid ", ";padding:", ";margin:", " 0 ", ";white-space:pre;font-family:'Courier New',Courier,monospace;}h1,h2,h3,h4,h5,h6{font-weight:", ";line-height:", ";font-size:", ";margin-top:", ";margin-bottom:", ";}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:", ";}h1{font-size:", ";line-height:", ";margin-top:", ";margin-bottom:", ";}h2{font-size:", ";line-height:", ";margin-top:", ";margin-bottom:", ";}h3{}h4{font-size:", ";line-height:", ";margin-top:", ";margin-bottom:", ";}h5{font-size:", ";line-height:", ";margin-top:", ";margin-bottom:", ";font-weight:", ";}h6{font-size:", ";line-height:", ";margin-top:", ";margin-bottom:", ";font-weight:", ";}blockquote{background-color:", ";border-left:", " solid ", ";padding:", ";margin:", " 0;}ol{list-style-position:outside;margin-top:", ";margin-left:", ";}ol:not([type]){list-style-type:decimal;}ol:not([type]).is-lower-alpha{list-style-type:lower-alpha;}ol:not([type]).is-lower-roman{list-style-type:lower-roman;}ol:not([type]).is-upper-alpha{list-style-type:upper-alpha;}ol:not([type]).is-upper-roman{list-style-type:upper-roman;}ul{list-style:disc outside;margin-left:", ";margin-top:", ";}ul ul{list-style-type:circle;margin-top:", ";}ul ul ul{list-style-type:square;}em{font-style:italic;}dd{margin-left:", ";}figure{margin-left:", ";margin-right:", ";text-align:center;}figure:not(:first-child){margin-top:", ";}figure:not(:last-child){margin-bottom:", ";}figure img{display:inline-block;}figure figcaption{font-style:italic;}sup,sub{font-size:75%;}table{width:100%;margin:", " 0;}table td,table th{padding:", ";vertical-align:top;}table th{color:", ";border-bottom:1px solid ", ";}table td{border-bottom:1px solid ", ";}table th:not([align]){text-align:inherit;}table thead td,table thead th{border-bottom:1px solid ", ";color:", ";}table tfoot td,table tfoot th{border-bottom:1px solid ", ";color:", ";}table tbody tr:last-child td,table tbody tr:last-child th{border-bottom-width:0;}.tabs li + li{margin-top:0;}*:not(pre) > code{color:red !important;padding:0.2em 0.4em !important;margin:0;font-size:85%;background-color:#afb8c133;border-radius:6px;}"], ({ theme }) => theme.font, themeGet('fontSizes', 'md'), themeGet('lineHeights', 'lg'), themeGet('fontWeights', 'light'), themeGet('space', 'xl'), themeGet('fontSizes', 'md'), themeGet('fontWeights', 'light'), themeGet('fontWeights', 'bolder'), themeGet('space', 'md'), themeGet('space', 'xl'), themeGet('colors', 'grey20'), themeGet('colors', 'grey40'), themeGet('space', 'xl'), themeGet('space', 'xl'), themeGet('space', 'xxl'), themeGet('fontWeights', 'light'), themeGet('lineHeights', 'xl'), themeGet('fontSizes', 'h3'), themeGet('space', 'xxl'), themeGet('space', 'xl'), themeGet('space', 'sm'), themeGet('fontSizes', 'h1'), themeGet('lineHeights', 'xxl'), themeGet('space', 'x4'), themeGet('space', 'x3'), themeGet('fontSizes', 'h2'), themeGet('lineHeights', 'xxl'), themeGet('space', 'x3'), themeGet('space', 'xxl'), themeGet('fontSizes', 'h4'), themeGet('lineHeights', 'xl'), themeGet('space', 'xxl'), themeGet('space', 'xl'), themeGet('fontSizes', 'xl'), themeGet('lineHeights', 'lg'), themeGet('space', 'xl'), themeGet('space', 'lg'), themeGet('fontWeights', 'normal'), themeGet('fontSizes', 'lg'), themeGet('lineHeights', 'lg'), themeGet('space', 'lg'), themeGet('space', 'default'), themeGet('fontWeights', 'normal'), themeGet('colors', 'grey20'), themeGet('space', 'sm'), themeGet('colors', 'primary20'), themeGet('space', 'xl'), themeGet('space', 'xxl'), themeGet('space', 'lg'), themeGet('space', 'xl'), themeGet('space', 'xl'), themeGet('space', 'lg'), themeGet('space', 'sm'), themeGet('space', 'xl'), themeGet('space', 'md'), themeGet('space', 'md'), themeGet('space', 'md'), themeGet('space', 'md'), themeGet('space', 'xl'), themeGet('space', 'lg'), themeGet('colors', 'grey60'), themeGet('colors', 'grey40'), themeGet('colors', 'grey20'), themeGet('colors', 'grey40'), themeGet('colors', 'grey60'), themeGet('colors', 'grey40'), themeGet('colors', 'grey60')); const variants$3 = variant({ variants: { xs: { fontSize: 'xs' }, sm: { fontSize: 'sm' }, lg: { fontSize: 'lg' } } }); /** * Prop Types of a Text component. * Apart from variant it extends all {@link ColorProps}, {@link SpaceProps} and * {@link TypographyProps} * * @memberof Text * @alias TextProps * @property {string} [...] Other props from {@link ColorProps}, {@link SpaceProps} * and {@link TypographyProps} */ /** * @classdesc * * * * Use the Text component to control font size, weight, alignment, and color. * By default it is rendered as a `div` but you can change this to other (like `span`) * by using `as` prop, * * ### Usage * * ```javascript * import { Text, TextProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see TextProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-text--default Storybook} * @hideconstructor * @example Lorem ipsum * return ( * * * In publishing and graphic design, * Lorem ipsum is a placeholder text commonly used to demonstrate the * visual form of a document or a typeface without relying on meaningful * content. * * This text was from Wikipedia * * ) * @section design-system */ const Text$2 = styled__default["default"].div.withConfig({ displayName: "text__Text", componentId: "sc-wqowgj-0" })(["", ";", ";", ";", ";", ";", ";"], contentCSS, typography, space, layout, color, variants$3); Text$2.defaultProps = { className: cssClass('Text') }; const CAPTION_HEIGHT = '42px'; /** * @component * @private */ const TableCaption = styled__default["default"].caption.withConfig({ displayName: "table-caption__TableCaption", componentId: "sc-6edhnr-0" })(["font-family:", ";padding:", " ", ";text-align:left;color:", ";font-size:", ";line-height:", ";position:absolute;height:", ";left:0;right:0;top:-", ";background:", ";box-sizing:border-box;vertical-align:middle;& ", "{color:", ";& > span svg{fill:", ";}&:hover{color:", ";.", " svg{fill:", ";}}}& ", "{color:", ";}"], themeGet('font'), themeGet('space', 'sm'), themeGet('space', 'lg'), themeGet('colors', 'white'), themeGet('fontSizes', 'default'), themeGet('lineHeights', 'default'), CAPTION_HEIGHT, CAPTION_HEIGHT, themeGet('colors', 'primary100'), Button, themeGet('colors', 'white'), themeGet('colors', 'white'), themeGet('colors', 'white'), cssClass('Icon'), themeGet('colors', 'white'), Text$2, themeGet('colors', 'white')); TableCaption.defaultProps = { className: cssClass('TableCaption') }; /** * Prop Types of a TextArea component. * It extends all {@link SpaceProps}, {@link TypographyProps} and {@link LayoutProps} * @memberof TextArea * @alias TextAreaProps * @property {string} [...] All props default to _textarea_ html component like `onChange`, * `value` etc. * @property {string} [...] Props from {@link SpaceProps}, {@link TypographyProps} * and {@link LayoutProps} + they extend {@link InputProps} */ /** * @classdesc * * * * Wrapped `textarea` html element. * * ### Usage * * ```javascript * import { TextArea, TextAreaProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-textarea--default Storybook} * @see TextAreaProps * @hideconstructor * @example * return ( * * *