@bigbinary/neeto-icons 1.12.2 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app-icons.cjs.js +6078 -0
- package/dist/app-icons.cjs.js.map +1 -0
- package/dist/app-icons.js +3317 -839
- package/dist/app-icons.js.map +1 -1
- package/dist/{index-881eb5c0.js → misc.cjs.js} +856 -4
- package/dist/misc.cjs.js.map +1 -0
- package/dist/misc.js +2692 -202
- package/dist/misc.js.map +1 -1
- package/dist/neeto-icons.cjs.js +9606 -0
- package/dist/neeto-icons.cjs.js.map +1 -0
- package/dist/neeto-icons.js +3504 -1243
- package/dist/neeto-icons.js.map +1 -1
- package/dist/{index-3dd40946.js → neeto-logos.cjs.js} +2053 -2
- package/dist/neeto-logos.cjs.js.map +1 -0
- package/dist/neeto-logos.js +3007 -528
- package/dist/neeto-logos.js.map +1 -1
- package/dist/typeface-logos.cjs.js +4461 -0
- package/dist/typeface-logos.cjs.js.map +1 -0
- package/dist/typeface-logos.js +3375 -2080
- package/dist/typeface-logos.js.map +1 -1
- package/package.json +1 -1
- package/dist/index-3dd40946.js.map +0 -1
- package/dist/index-881eb5c0.js.map +0 -1
|
@@ -0,0 +1,4461 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
function _extends() {
|
|
6
|
+
_extends = Object.assign || function (target) {
|
|
7
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
8
|
+
var source = arguments[i];
|
|
9
|
+
|
|
10
|
+
for (var key in source) {
|
|
11
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
12
|
+
target[key] = source[key];
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return target;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
return _extends.apply(this, arguments);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
24
|
+
if (source == null) return {};
|
|
25
|
+
var target = {};
|
|
26
|
+
var sourceKeys = Object.keys(source);
|
|
27
|
+
var key, i;
|
|
28
|
+
|
|
29
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
30
|
+
key = sourceKeys[i];
|
|
31
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
32
|
+
target[key] = source[key];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return target;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function _objectWithoutProperties(source, excluded) {
|
|
39
|
+
if (source == null) return {};
|
|
40
|
+
|
|
41
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
42
|
+
|
|
43
|
+
var key, i;
|
|
44
|
+
|
|
45
|
+
if (Object.getOwnPropertySymbols) {
|
|
46
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
47
|
+
|
|
48
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
49
|
+
key = sourceSymbolKeys[i];
|
|
50
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
51
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
52
|
+
target[key] = source[key];
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
return target;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
var react = {exports: {}};
|
|
60
|
+
|
|
61
|
+
var react_production_min = {};
|
|
62
|
+
|
|
63
|
+
/*
|
|
64
|
+
object-assign
|
|
65
|
+
(c) Sindre Sorhus
|
|
66
|
+
@license MIT
|
|
67
|
+
*/
|
|
68
|
+
/* eslint-disable no-unused-vars */
|
|
69
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
70
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
71
|
+
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
72
|
+
|
|
73
|
+
function toObject(val) {
|
|
74
|
+
if (val === null || val === undefined) {
|
|
75
|
+
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return Object(val);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function shouldUseNative() {
|
|
82
|
+
try {
|
|
83
|
+
if (!Object.assign) {
|
|
84
|
+
return false;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Detect buggy property enumeration order in older V8 versions.
|
|
88
|
+
|
|
89
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
90
|
+
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
|
|
91
|
+
test1[5] = 'de';
|
|
92
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
93
|
+
return false;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
97
|
+
var test2 = {};
|
|
98
|
+
for (var i = 0; i < 10; i++) {
|
|
99
|
+
test2['_' + String.fromCharCode(i)] = i;
|
|
100
|
+
}
|
|
101
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
|
102
|
+
return test2[n];
|
|
103
|
+
});
|
|
104
|
+
if (order2.join('') !== '0123456789') {
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
109
|
+
var test3 = {};
|
|
110
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
111
|
+
test3[letter] = letter;
|
|
112
|
+
});
|
|
113
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
|
114
|
+
'abcdefghijklmnopqrst') {
|
|
115
|
+
return false;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return true;
|
|
119
|
+
} catch (err) {
|
|
120
|
+
// We don't expect any of the above to throw, but better to be safe.
|
|
121
|
+
return false;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
|
|
126
|
+
var from;
|
|
127
|
+
var to = toObject(target);
|
|
128
|
+
var symbols;
|
|
129
|
+
|
|
130
|
+
for (var s = 1; s < arguments.length; s++) {
|
|
131
|
+
from = Object(arguments[s]);
|
|
132
|
+
|
|
133
|
+
for (var key in from) {
|
|
134
|
+
if (hasOwnProperty.call(from, key)) {
|
|
135
|
+
to[key] = from[key];
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (getOwnPropertySymbols) {
|
|
140
|
+
symbols = getOwnPropertySymbols(from);
|
|
141
|
+
for (var i = 0; i < symbols.length; i++) {
|
|
142
|
+
if (propIsEnumerable.call(from, symbols[i])) {
|
|
143
|
+
to[symbols[i]] = from[symbols[i]];
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return to;
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
/** @license React v17.0.2
|
|
153
|
+
* react.production.min.js
|
|
154
|
+
*
|
|
155
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
156
|
+
*
|
|
157
|
+
* This source code is licensed under the MIT license found in the
|
|
158
|
+
* LICENSE file in the root directory of this source tree.
|
|
159
|
+
*/
|
|
160
|
+
var l=objectAssign,n=60103,p=60106;react_production_min.Fragment=60107;react_production_min.StrictMode=60108;react_production_min.Profiler=60114;var q=60109,r=60110,t=60112;react_production_min.Suspense=60113;var u=60115,v=60116;
|
|
161
|
+
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;n=w("react.element");p=w("react.portal");react_production_min.Fragment=w("react.fragment");react_production_min.StrictMode=w("react.strict_mode");react_production_min.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");react_production_min.Suspense=w("react.suspense");u=w("react.memo");v=w("react.lazy");}var x="function"===typeof Symbol&&Symbol.iterator;
|
|
162
|
+
function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return "function"===typeof a?a:null}function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return "Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
|
|
163
|
+
var A={isMounted:function(){return !1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={};function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A;}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState");};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate");};
|
|
164
|
+
function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A;}var F=E.prototype=new D;F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G={current:null},H=Object.prototype.hasOwnProperty,I={key:!0,ref:!0,__self:!0,__source:!0};
|
|
165
|
+
function J(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)H.call(b,e)&&!I.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];d.children=f;}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return {$$typeof:n,type:a,key:k,ref:h,props:d,_owner:G.current}}
|
|
166
|
+
function K(a,b){return {$$typeof:n,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return "object"===typeof a&&null!==a&&a.$$typeof===n}function escape(a){var b={"=":"=0",":":"=2"};return "$"+a.replace(/[=:]/g,function(a){return b[a]})}var M=/\/+/g;function N(a,b){return "object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
|
|
167
|
+
function O(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case n:case p:h=!0;}}if(h)return h=a,d=d(h),a=""===e?"."+N(h,0):e,Array.isArray(d)?(c="",null!=a&&(c=a.replace(M,"$&/")+"/"),O(d,b,c,"",function(a){return a})):null!=d&&(L(d)&&(d=K(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(M,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(Array.isArray(a))for(var g=
|
|
168
|
+
0;g<a.length;g++){k=a[g];var f=e+N(k,g);h+=O(k,b,c,f,d);}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+N(k,g++),h+=O(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(z(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function P(a,b,c){if(null==a)return a;var e=[],d=0;O(a,e,"","",function(a){return b.call(c,a,d++)});return e}
|
|
169
|
+
function Q(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b);},function(b){0===a._status&&(a._status=2,a._result=b);});}if(1===a._status)return a._result;throw a._result;}var R={current:null};function S(){var a=R.current;if(null===a)throw Error(z(321));return a}var T={ReactCurrentDispatcher:R,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:G,IsSomeRendererActing:{current:!1},assign:l};
|
|
170
|
+
react_production_min.Children={map:P,forEach:function(a,b,c){P(a,function(){b.apply(this,arguments);},c);},count:function(a){var b=0;P(a,function(){b++;});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(z(143));return a}};react_production_min.Component=C;react_production_min.PureComponent=E;react_production_min.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T;
|
|
171
|
+
react_production_min.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!I.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f]);}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var m=0;m<f;m++)g[m]=arguments[m+2];e.children=g;}return {$$typeof:n,type:a.type,
|
|
172
|
+
key:d,ref:k,props:e,_owner:h}};react_production_min.createContext=function(a,b){void 0===b&&(b=null);a={$$typeof:r,_calculateChangedBits:b,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};react_production_min.createElement=J;react_production_min.createFactory=function(a){var b=J.bind(null,a);b.type=a;return b};react_production_min.createRef=function(){return {current:null}};react_production_min.forwardRef=function(a){return {$$typeof:t,render:a}};react_production_min.isValidElement=L;
|
|
173
|
+
react_production_min.lazy=function(a){return {$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};react_production_min.memo=function(a,b){return {$$typeof:u,type:a,compare:void 0===b?null:b}};react_production_min.useCallback=function(a,b){return S().useCallback(a,b)};react_production_min.useContext=function(a,b){return S().useContext(a,b)};react_production_min.useDebugValue=function(){};react_production_min.useEffect=function(a,b){return S().useEffect(a,b)};react_production_min.useImperativeHandle=function(a,b,c){return S().useImperativeHandle(a,b,c)};
|
|
174
|
+
react_production_min.useLayoutEffect=function(a,b){return S().useLayoutEffect(a,b)};react_production_min.useMemo=function(a,b){return S().useMemo(a,b)};react_production_min.useReducer=function(a,b,c){return S().useReducer(a,b,c)};react_production_min.useRef=function(a){return S().useRef(a)};react_production_min.useState=function(a){return S().useState(a)};react_production_min.version="17.0.2";
|
|
175
|
+
|
|
176
|
+
var react_development = {};
|
|
177
|
+
|
|
178
|
+
/** @license React v17.0.2
|
|
179
|
+
* react.development.js
|
|
180
|
+
*
|
|
181
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
182
|
+
*
|
|
183
|
+
* This source code is licensed under the MIT license found in the
|
|
184
|
+
* LICENSE file in the root directory of this source tree.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
(function (exports) {
|
|
188
|
+
|
|
189
|
+
if (process.env.NODE_ENV !== "production") {
|
|
190
|
+
(function() {
|
|
191
|
+
|
|
192
|
+
var _assign = objectAssign;
|
|
193
|
+
|
|
194
|
+
// TODO: this is special because it gets imported during build.
|
|
195
|
+
var ReactVersion = '17.0.2';
|
|
196
|
+
|
|
197
|
+
// ATTENTION
|
|
198
|
+
// When adding new symbols to this file,
|
|
199
|
+
// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
|
|
200
|
+
// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
|
|
201
|
+
// nor polyfill, then a plain number is used for performance.
|
|
202
|
+
var REACT_ELEMENT_TYPE = 0xeac7;
|
|
203
|
+
var REACT_PORTAL_TYPE = 0xeaca;
|
|
204
|
+
exports.Fragment = 0xeacb;
|
|
205
|
+
exports.StrictMode = 0xeacc;
|
|
206
|
+
exports.Profiler = 0xead2;
|
|
207
|
+
var REACT_PROVIDER_TYPE = 0xeacd;
|
|
208
|
+
var REACT_CONTEXT_TYPE = 0xeace;
|
|
209
|
+
var REACT_FORWARD_REF_TYPE = 0xead0;
|
|
210
|
+
exports.Suspense = 0xead1;
|
|
211
|
+
var REACT_SUSPENSE_LIST_TYPE = 0xead8;
|
|
212
|
+
var REACT_MEMO_TYPE = 0xead3;
|
|
213
|
+
var REACT_LAZY_TYPE = 0xead4;
|
|
214
|
+
var REACT_BLOCK_TYPE = 0xead9;
|
|
215
|
+
var REACT_SERVER_BLOCK_TYPE = 0xeada;
|
|
216
|
+
var REACT_FUNDAMENTAL_TYPE = 0xead5;
|
|
217
|
+
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;
|
|
218
|
+
var REACT_LEGACY_HIDDEN_TYPE = 0xeae3;
|
|
219
|
+
|
|
220
|
+
if (typeof Symbol === 'function' && Symbol.for) {
|
|
221
|
+
var symbolFor = Symbol.for;
|
|
222
|
+
REACT_ELEMENT_TYPE = symbolFor('react.element');
|
|
223
|
+
REACT_PORTAL_TYPE = symbolFor('react.portal');
|
|
224
|
+
exports.Fragment = symbolFor('react.fragment');
|
|
225
|
+
exports.StrictMode = symbolFor('react.strict_mode');
|
|
226
|
+
exports.Profiler = symbolFor('react.profiler');
|
|
227
|
+
REACT_PROVIDER_TYPE = symbolFor('react.provider');
|
|
228
|
+
REACT_CONTEXT_TYPE = symbolFor('react.context');
|
|
229
|
+
REACT_FORWARD_REF_TYPE = symbolFor('react.forward_ref');
|
|
230
|
+
exports.Suspense = symbolFor('react.suspense');
|
|
231
|
+
REACT_SUSPENSE_LIST_TYPE = symbolFor('react.suspense_list');
|
|
232
|
+
REACT_MEMO_TYPE = symbolFor('react.memo');
|
|
233
|
+
REACT_LAZY_TYPE = symbolFor('react.lazy');
|
|
234
|
+
REACT_BLOCK_TYPE = symbolFor('react.block');
|
|
235
|
+
REACT_SERVER_BLOCK_TYPE = symbolFor('react.server.block');
|
|
236
|
+
REACT_FUNDAMENTAL_TYPE = symbolFor('react.fundamental');
|
|
237
|
+
symbolFor('react.scope');
|
|
238
|
+
symbolFor('react.opaque.id');
|
|
239
|
+
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');
|
|
240
|
+
symbolFor('react.offscreen');
|
|
241
|
+
REACT_LEGACY_HIDDEN_TYPE = symbolFor('react.legacy_hidden');
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
var MAYBE_ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
|
|
245
|
+
var FAUX_ITERATOR_SYMBOL = '@@iterator';
|
|
246
|
+
function getIteratorFn(maybeIterable) {
|
|
247
|
+
if (maybeIterable === null || typeof maybeIterable !== 'object') {
|
|
248
|
+
return null;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
252
|
+
|
|
253
|
+
if (typeof maybeIterator === 'function') {
|
|
254
|
+
return maybeIterator;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
return null;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Keeps track of the current dispatcher.
|
|
262
|
+
*/
|
|
263
|
+
var ReactCurrentDispatcher = {
|
|
264
|
+
/**
|
|
265
|
+
* @internal
|
|
266
|
+
* @type {ReactComponent}
|
|
267
|
+
*/
|
|
268
|
+
current: null
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Keeps track of the current batch's configuration such as how long an update
|
|
273
|
+
* should suspend for if it needs to.
|
|
274
|
+
*/
|
|
275
|
+
var ReactCurrentBatchConfig = {
|
|
276
|
+
transition: 0
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Keeps track of the current owner.
|
|
281
|
+
*
|
|
282
|
+
* The current owner is the component who should own any components that are
|
|
283
|
+
* currently being constructed.
|
|
284
|
+
*/
|
|
285
|
+
var ReactCurrentOwner = {
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
* @type {ReactComponent}
|
|
289
|
+
*/
|
|
290
|
+
current: null
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
var ReactDebugCurrentFrame = {};
|
|
294
|
+
var currentExtraStackFrame = null;
|
|
295
|
+
function setExtraStackFrame(stack) {
|
|
296
|
+
{
|
|
297
|
+
currentExtraStackFrame = stack;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
{
|
|
302
|
+
ReactDebugCurrentFrame.setExtraStackFrame = function (stack) {
|
|
303
|
+
{
|
|
304
|
+
currentExtraStackFrame = stack;
|
|
305
|
+
}
|
|
306
|
+
}; // Stack implementation injected by the current renderer.
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
ReactDebugCurrentFrame.getCurrentStack = null;
|
|
310
|
+
|
|
311
|
+
ReactDebugCurrentFrame.getStackAddendum = function () {
|
|
312
|
+
var stack = ''; // Add an extra top frame while an element is being validated
|
|
313
|
+
|
|
314
|
+
if (currentExtraStackFrame) {
|
|
315
|
+
stack += currentExtraStackFrame;
|
|
316
|
+
} // Delegate to the injected renderer-specific implementation
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
var impl = ReactDebugCurrentFrame.getCurrentStack;
|
|
320
|
+
|
|
321
|
+
if (impl) {
|
|
322
|
+
stack += impl() || '';
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
return stack;
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* Used by act() to track whether you're inside an act() scope.
|
|
331
|
+
*/
|
|
332
|
+
var IsSomeRendererActing = {
|
|
333
|
+
current: false
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
var ReactSharedInternals = {
|
|
337
|
+
ReactCurrentDispatcher: ReactCurrentDispatcher,
|
|
338
|
+
ReactCurrentBatchConfig: ReactCurrentBatchConfig,
|
|
339
|
+
ReactCurrentOwner: ReactCurrentOwner,
|
|
340
|
+
IsSomeRendererActing: IsSomeRendererActing,
|
|
341
|
+
// Used by renderers to avoid bundling object-assign twice in UMD bundles:
|
|
342
|
+
assign: _assign
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
{
|
|
346
|
+
ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
// by calls to these methods by a Babel plugin.
|
|
350
|
+
//
|
|
351
|
+
// In PROD (or in packages without access to React internals),
|
|
352
|
+
// they are left as they are instead.
|
|
353
|
+
|
|
354
|
+
function warn(format) {
|
|
355
|
+
{
|
|
356
|
+
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
357
|
+
args[_key - 1] = arguments[_key];
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
printWarning('warn', format, args);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
function error(format) {
|
|
364
|
+
{
|
|
365
|
+
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
366
|
+
args[_key2 - 1] = arguments[_key2];
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
printWarning('error', format, args);
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
function printWarning(level, format, args) {
|
|
374
|
+
// When changing this logic, you might want to also
|
|
375
|
+
// update consoleWithStackDev.www.js as well.
|
|
376
|
+
{
|
|
377
|
+
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
378
|
+
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
|
379
|
+
|
|
380
|
+
if (stack !== '') {
|
|
381
|
+
format += '%s';
|
|
382
|
+
args = args.concat([stack]);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
var argsWithFormat = args.map(function (item) {
|
|
386
|
+
return '' + item;
|
|
387
|
+
}); // Careful: RN currently depends on this prefix
|
|
388
|
+
|
|
389
|
+
argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it
|
|
390
|
+
// breaks IE9: https://github.com/facebook/react/issues/13610
|
|
391
|
+
// eslint-disable-next-line react-internal/no-production-logging
|
|
392
|
+
|
|
393
|
+
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
var didWarnStateUpdateForUnmountedComponent = {};
|
|
398
|
+
|
|
399
|
+
function warnNoop(publicInstance, callerName) {
|
|
400
|
+
{
|
|
401
|
+
var _constructor = publicInstance.constructor;
|
|
402
|
+
var componentName = _constructor && (_constructor.displayName || _constructor.name) || 'ReactClass';
|
|
403
|
+
var warningKey = componentName + "." + callerName;
|
|
404
|
+
|
|
405
|
+
if (didWarnStateUpdateForUnmountedComponent[warningKey]) {
|
|
406
|
+
return;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
error("Can't call %s on a component that is not yet mounted. " + 'This is a no-op, but it might indicate a bug in your application. ' + 'Instead, assign to `this.state` directly or define a `state = {};` ' + 'class property with the desired state in the %s component.', callerName, componentName);
|
|
410
|
+
|
|
411
|
+
didWarnStateUpdateForUnmountedComponent[warningKey] = true;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* This is the abstract API for an update queue.
|
|
416
|
+
*/
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
var ReactNoopUpdateQueue = {
|
|
420
|
+
/**
|
|
421
|
+
* Checks whether or not this composite component is mounted.
|
|
422
|
+
* @param {ReactClass} publicInstance The instance we want to test.
|
|
423
|
+
* @return {boolean} True if mounted, false otherwise.
|
|
424
|
+
* @protected
|
|
425
|
+
* @final
|
|
426
|
+
*/
|
|
427
|
+
isMounted: function (publicInstance) {
|
|
428
|
+
return false;
|
|
429
|
+
},
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Forces an update. This should only be invoked when it is known with
|
|
433
|
+
* certainty that we are **not** in a DOM transaction.
|
|
434
|
+
*
|
|
435
|
+
* You may want to call this when you know that some deeper aspect of the
|
|
436
|
+
* component's state has changed but `setState` was not called.
|
|
437
|
+
*
|
|
438
|
+
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
|
439
|
+
* `componentWillUpdate` and `componentDidUpdate`.
|
|
440
|
+
*
|
|
441
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
442
|
+
* @param {?function} callback Called after component is updated.
|
|
443
|
+
* @param {?string} callerName name of the calling function in the public API.
|
|
444
|
+
* @internal
|
|
445
|
+
*/
|
|
446
|
+
enqueueForceUpdate: function (publicInstance, callback, callerName) {
|
|
447
|
+
warnNoop(publicInstance, 'forceUpdate');
|
|
448
|
+
},
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Replaces all of the state. Always use this or `setState` to mutate state.
|
|
452
|
+
* You should treat `this.state` as immutable.
|
|
453
|
+
*
|
|
454
|
+
* There is no guarantee that `this.state` will be immediately updated, so
|
|
455
|
+
* accessing `this.state` after calling this method may return the old value.
|
|
456
|
+
*
|
|
457
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
458
|
+
* @param {object} completeState Next state.
|
|
459
|
+
* @param {?function} callback Called after component is updated.
|
|
460
|
+
* @param {?string} callerName name of the calling function in the public API.
|
|
461
|
+
* @internal
|
|
462
|
+
*/
|
|
463
|
+
enqueueReplaceState: function (publicInstance, completeState, callback, callerName) {
|
|
464
|
+
warnNoop(publicInstance, 'replaceState');
|
|
465
|
+
},
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* Sets a subset of the state. This only exists because _pendingState is
|
|
469
|
+
* internal. This provides a merging strategy that is not available to deep
|
|
470
|
+
* properties which is confusing. TODO: Expose pendingState or don't use it
|
|
471
|
+
* during the merge.
|
|
472
|
+
*
|
|
473
|
+
* @param {ReactClass} publicInstance The instance that should rerender.
|
|
474
|
+
* @param {object} partialState Next partial state to be merged with state.
|
|
475
|
+
* @param {?function} callback Called after component is updated.
|
|
476
|
+
* @param {?string} Name of the calling function in the public API.
|
|
477
|
+
* @internal
|
|
478
|
+
*/
|
|
479
|
+
enqueueSetState: function (publicInstance, partialState, callback, callerName) {
|
|
480
|
+
warnNoop(publicInstance, 'setState');
|
|
481
|
+
}
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
var emptyObject = {};
|
|
485
|
+
|
|
486
|
+
{
|
|
487
|
+
Object.freeze(emptyObject);
|
|
488
|
+
}
|
|
489
|
+
/**
|
|
490
|
+
* Base class helpers for the updating state of a component.
|
|
491
|
+
*/
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
function Component(props, context, updater) {
|
|
495
|
+
this.props = props;
|
|
496
|
+
this.context = context; // If a component has string refs, we will assign a different object later.
|
|
497
|
+
|
|
498
|
+
this.refs = emptyObject; // We initialize the default updater but the real one gets injected by the
|
|
499
|
+
// renderer.
|
|
500
|
+
|
|
501
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
Component.prototype.isReactComponent = {};
|
|
505
|
+
/**
|
|
506
|
+
* Sets a subset of the state. Always use this to mutate
|
|
507
|
+
* state. You should treat `this.state` as immutable.
|
|
508
|
+
*
|
|
509
|
+
* There is no guarantee that `this.state` will be immediately updated, so
|
|
510
|
+
* accessing `this.state` after calling this method may return the old value.
|
|
511
|
+
*
|
|
512
|
+
* There is no guarantee that calls to `setState` will run synchronously,
|
|
513
|
+
* as they may eventually be batched together. You can provide an optional
|
|
514
|
+
* callback that will be executed when the call to setState is actually
|
|
515
|
+
* completed.
|
|
516
|
+
*
|
|
517
|
+
* When a function is provided to setState, it will be called at some point in
|
|
518
|
+
* the future (not synchronously). It will be called with the up to date
|
|
519
|
+
* component arguments (state, props, context). These values can be different
|
|
520
|
+
* from this.* because your function may be called after receiveProps but before
|
|
521
|
+
* shouldComponentUpdate, and this new state, props, and context will not yet be
|
|
522
|
+
* assigned to this.
|
|
523
|
+
*
|
|
524
|
+
* @param {object|function} partialState Next partial state or function to
|
|
525
|
+
* produce next partial state to be merged with current state.
|
|
526
|
+
* @param {?function} callback Called after state is updated.
|
|
527
|
+
* @final
|
|
528
|
+
* @protected
|
|
529
|
+
*/
|
|
530
|
+
|
|
531
|
+
Component.prototype.setState = function (partialState, callback) {
|
|
532
|
+
if (!(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null)) {
|
|
533
|
+
{
|
|
534
|
+
throw Error( "setState(...): takes an object of state variables to update or a function which returns an object of state variables." );
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
this.updater.enqueueSetState(this, partialState, callback, 'setState');
|
|
539
|
+
};
|
|
540
|
+
/**
|
|
541
|
+
* Forces an update. This should only be invoked when it is known with
|
|
542
|
+
* certainty that we are **not** in a DOM transaction.
|
|
543
|
+
*
|
|
544
|
+
* You may want to call this when you know that some deeper aspect of the
|
|
545
|
+
* component's state has changed but `setState` was not called.
|
|
546
|
+
*
|
|
547
|
+
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
|
548
|
+
* `componentWillUpdate` and `componentDidUpdate`.
|
|
549
|
+
*
|
|
550
|
+
* @param {?function} callback Called after update is complete.
|
|
551
|
+
* @final
|
|
552
|
+
* @protected
|
|
553
|
+
*/
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
Component.prototype.forceUpdate = function (callback) {
|
|
557
|
+
this.updater.enqueueForceUpdate(this, callback, 'forceUpdate');
|
|
558
|
+
};
|
|
559
|
+
/**
|
|
560
|
+
* Deprecated APIs. These APIs used to exist on classic React classes but since
|
|
561
|
+
* we would like to deprecate them, we're not going to move them over to this
|
|
562
|
+
* modern base class. Instead, we define a getter that warns if it's accessed.
|
|
563
|
+
*/
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
{
|
|
567
|
+
var deprecatedAPIs = {
|
|
568
|
+
isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],
|
|
569
|
+
replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
var defineDeprecationWarning = function (methodName, info) {
|
|
573
|
+
Object.defineProperty(Component.prototype, methodName, {
|
|
574
|
+
get: function () {
|
|
575
|
+
warn('%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);
|
|
576
|
+
|
|
577
|
+
return undefined;
|
|
578
|
+
}
|
|
579
|
+
});
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
for (var fnName in deprecatedAPIs) {
|
|
583
|
+
if (deprecatedAPIs.hasOwnProperty(fnName)) {
|
|
584
|
+
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
function ComponentDummy() {}
|
|
590
|
+
|
|
591
|
+
ComponentDummy.prototype = Component.prototype;
|
|
592
|
+
/**
|
|
593
|
+
* Convenience component with default shallow equality check for sCU.
|
|
594
|
+
*/
|
|
595
|
+
|
|
596
|
+
function PureComponent(props, context, updater) {
|
|
597
|
+
this.props = props;
|
|
598
|
+
this.context = context; // If a component has string refs, we will assign a different object later.
|
|
599
|
+
|
|
600
|
+
this.refs = emptyObject;
|
|
601
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
|
605
|
+
pureComponentPrototype.constructor = PureComponent; // Avoid an extra prototype jump for these methods.
|
|
606
|
+
|
|
607
|
+
_assign(pureComponentPrototype, Component.prototype);
|
|
608
|
+
|
|
609
|
+
pureComponentPrototype.isPureReactComponent = true;
|
|
610
|
+
|
|
611
|
+
// an immutable object with a single mutable value
|
|
612
|
+
function createRef() {
|
|
613
|
+
var refObject = {
|
|
614
|
+
current: null
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
{
|
|
618
|
+
Object.seal(refObject);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
return refObject;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
function getWrappedName(outerType, innerType, wrapperName) {
|
|
625
|
+
var functionName = innerType.displayName || innerType.name || '';
|
|
626
|
+
return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
function getContextName(type) {
|
|
630
|
+
return type.displayName || 'Context';
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
function getComponentName(type) {
|
|
634
|
+
if (type == null) {
|
|
635
|
+
// Host root, text node or just invalid type.
|
|
636
|
+
return null;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
{
|
|
640
|
+
if (typeof type.tag === 'number') {
|
|
641
|
+
error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
if (typeof type === 'function') {
|
|
646
|
+
return type.displayName || type.name || null;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
if (typeof type === 'string') {
|
|
650
|
+
return type;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
switch (type) {
|
|
654
|
+
case exports.Fragment:
|
|
655
|
+
return 'Fragment';
|
|
656
|
+
|
|
657
|
+
case REACT_PORTAL_TYPE:
|
|
658
|
+
return 'Portal';
|
|
659
|
+
|
|
660
|
+
case exports.Profiler:
|
|
661
|
+
return 'Profiler';
|
|
662
|
+
|
|
663
|
+
case exports.StrictMode:
|
|
664
|
+
return 'StrictMode';
|
|
665
|
+
|
|
666
|
+
case exports.Suspense:
|
|
667
|
+
return 'Suspense';
|
|
668
|
+
|
|
669
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
670
|
+
return 'SuspenseList';
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
if (typeof type === 'object') {
|
|
674
|
+
switch (type.$$typeof) {
|
|
675
|
+
case REACT_CONTEXT_TYPE:
|
|
676
|
+
var context = type;
|
|
677
|
+
return getContextName(context) + '.Consumer';
|
|
678
|
+
|
|
679
|
+
case REACT_PROVIDER_TYPE:
|
|
680
|
+
var provider = type;
|
|
681
|
+
return getContextName(provider._context) + '.Provider';
|
|
682
|
+
|
|
683
|
+
case REACT_FORWARD_REF_TYPE:
|
|
684
|
+
return getWrappedName(type, type.render, 'ForwardRef');
|
|
685
|
+
|
|
686
|
+
case REACT_MEMO_TYPE:
|
|
687
|
+
return getComponentName(type.type);
|
|
688
|
+
|
|
689
|
+
case REACT_BLOCK_TYPE:
|
|
690
|
+
return getComponentName(type._render);
|
|
691
|
+
|
|
692
|
+
case REACT_LAZY_TYPE:
|
|
693
|
+
{
|
|
694
|
+
var lazyComponent = type;
|
|
695
|
+
var payload = lazyComponent._payload;
|
|
696
|
+
var init = lazyComponent._init;
|
|
697
|
+
|
|
698
|
+
try {
|
|
699
|
+
return getComponentName(init(payload));
|
|
700
|
+
} catch (x) {
|
|
701
|
+
return null;
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
return null;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
711
|
+
var RESERVED_PROPS = {
|
|
712
|
+
key: true,
|
|
713
|
+
ref: true,
|
|
714
|
+
__self: true,
|
|
715
|
+
__source: true
|
|
716
|
+
};
|
|
717
|
+
var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;
|
|
718
|
+
|
|
719
|
+
{
|
|
720
|
+
didWarnAboutStringRefs = {};
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
function hasValidRef(config) {
|
|
724
|
+
{
|
|
725
|
+
if (hasOwnProperty.call(config, 'ref')) {
|
|
726
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;
|
|
727
|
+
|
|
728
|
+
if (getter && getter.isReactWarning) {
|
|
729
|
+
return false;
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
return config.ref !== undefined;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
function hasValidKey(config) {
|
|
738
|
+
{
|
|
739
|
+
if (hasOwnProperty.call(config, 'key')) {
|
|
740
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'key').get;
|
|
741
|
+
|
|
742
|
+
if (getter && getter.isReactWarning) {
|
|
743
|
+
return false;
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
return config.key !== undefined;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
752
|
+
var warnAboutAccessingKey = function () {
|
|
753
|
+
{
|
|
754
|
+
if (!specialPropKeyWarningShown) {
|
|
755
|
+
specialPropKeyWarningShown = true;
|
|
756
|
+
|
|
757
|
+
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
763
|
+
Object.defineProperty(props, 'key', {
|
|
764
|
+
get: warnAboutAccessingKey,
|
|
765
|
+
configurable: true
|
|
766
|
+
});
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
function defineRefPropWarningGetter(props, displayName) {
|
|
770
|
+
var warnAboutAccessingRef = function () {
|
|
771
|
+
{
|
|
772
|
+
if (!specialPropRefWarningShown) {
|
|
773
|
+
specialPropRefWarningShown = true;
|
|
774
|
+
|
|
775
|
+
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
|
|
780
|
+
warnAboutAccessingRef.isReactWarning = true;
|
|
781
|
+
Object.defineProperty(props, 'ref', {
|
|
782
|
+
get: warnAboutAccessingRef,
|
|
783
|
+
configurable: true
|
|
784
|
+
});
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
function warnIfStringRefCannotBeAutoConverted(config) {
|
|
788
|
+
{
|
|
789
|
+
if (typeof config.ref === 'string' && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
|
|
790
|
+
var componentName = getComponentName(ReactCurrentOwner.current.type);
|
|
791
|
+
|
|
792
|
+
if (!didWarnAboutStringRefs[componentName]) {
|
|
793
|
+
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', componentName, config.ref);
|
|
794
|
+
|
|
795
|
+
didWarnAboutStringRefs[componentName] = true;
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
* Factory method to create a new React element. This no longer adheres to
|
|
802
|
+
* the class pattern, so do not use new to call it. Also, instanceof check
|
|
803
|
+
* will not work. Instead test $$typeof field against Symbol.for('react.element') to check
|
|
804
|
+
* if something is a React Element.
|
|
805
|
+
*
|
|
806
|
+
* @param {*} type
|
|
807
|
+
* @param {*} props
|
|
808
|
+
* @param {*} key
|
|
809
|
+
* @param {string|object} ref
|
|
810
|
+
* @param {*} owner
|
|
811
|
+
* @param {*} self A *temporary* helper to detect places where `this` is
|
|
812
|
+
* different from the `owner` when React.createElement is called, so that we
|
|
813
|
+
* can warn. We want to get rid of owner and replace string `ref`s with arrow
|
|
814
|
+
* functions, and as long as `this` and owner are the same, there will be no
|
|
815
|
+
* change in behavior.
|
|
816
|
+
* @param {*} source An annotation object (added by a transpiler or otherwise)
|
|
817
|
+
* indicating filename, line number, and/or other information.
|
|
818
|
+
* @internal
|
|
819
|
+
*/
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
823
|
+
var element = {
|
|
824
|
+
// This tag allows us to uniquely identify this as a React Element
|
|
825
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
826
|
+
// Built-in properties that belong on the element
|
|
827
|
+
type: type,
|
|
828
|
+
key: key,
|
|
829
|
+
ref: ref,
|
|
830
|
+
props: props,
|
|
831
|
+
// Record the component responsible for creating this element.
|
|
832
|
+
_owner: owner
|
|
833
|
+
};
|
|
834
|
+
|
|
835
|
+
{
|
|
836
|
+
// The validation flag is currently mutative. We put it on
|
|
837
|
+
// an external backing store so that we can freeze the whole object.
|
|
838
|
+
// This can be replaced with a WeakMap once they are implemented in
|
|
839
|
+
// commonly used development environments.
|
|
840
|
+
element._store = {}; // To make comparing ReactElements easier for testing purposes, we make
|
|
841
|
+
// the validation flag non-enumerable (where possible, which should
|
|
842
|
+
// include every environment we run tests in), so the test framework
|
|
843
|
+
// ignores it.
|
|
844
|
+
|
|
845
|
+
Object.defineProperty(element._store, 'validated', {
|
|
846
|
+
configurable: false,
|
|
847
|
+
enumerable: false,
|
|
848
|
+
writable: true,
|
|
849
|
+
value: false
|
|
850
|
+
}); // self and source are DEV only properties.
|
|
851
|
+
|
|
852
|
+
Object.defineProperty(element, '_self', {
|
|
853
|
+
configurable: false,
|
|
854
|
+
enumerable: false,
|
|
855
|
+
writable: false,
|
|
856
|
+
value: self
|
|
857
|
+
}); // Two elements created in two different places should be considered
|
|
858
|
+
// equal for testing purposes and therefore we hide it from enumeration.
|
|
859
|
+
|
|
860
|
+
Object.defineProperty(element, '_source', {
|
|
861
|
+
configurable: false,
|
|
862
|
+
enumerable: false,
|
|
863
|
+
writable: false,
|
|
864
|
+
value: source
|
|
865
|
+
});
|
|
866
|
+
|
|
867
|
+
if (Object.freeze) {
|
|
868
|
+
Object.freeze(element.props);
|
|
869
|
+
Object.freeze(element);
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
return element;
|
|
874
|
+
};
|
|
875
|
+
/**
|
|
876
|
+
* Create and return a new ReactElement of the given type.
|
|
877
|
+
* See https://reactjs.org/docs/react-api.html#createelement
|
|
878
|
+
*/
|
|
879
|
+
|
|
880
|
+
function createElement(type, config, children) {
|
|
881
|
+
var propName; // Reserved names are extracted
|
|
882
|
+
|
|
883
|
+
var props = {};
|
|
884
|
+
var key = null;
|
|
885
|
+
var ref = null;
|
|
886
|
+
var self = null;
|
|
887
|
+
var source = null;
|
|
888
|
+
|
|
889
|
+
if (config != null) {
|
|
890
|
+
if (hasValidRef(config)) {
|
|
891
|
+
ref = config.ref;
|
|
892
|
+
|
|
893
|
+
{
|
|
894
|
+
warnIfStringRefCannotBeAutoConverted(config);
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
if (hasValidKey(config)) {
|
|
899
|
+
key = '' + config.key;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
self = config.__self === undefined ? null : config.__self;
|
|
903
|
+
source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object
|
|
904
|
+
|
|
905
|
+
for (propName in config) {
|
|
906
|
+
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
907
|
+
props[propName] = config[propName];
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
} // Children can be more than one argument, and those are transferred onto
|
|
911
|
+
// the newly allocated props object.
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
var childrenLength = arguments.length - 2;
|
|
915
|
+
|
|
916
|
+
if (childrenLength === 1) {
|
|
917
|
+
props.children = children;
|
|
918
|
+
} else if (childrenLength > 1) {
|
|
919
|
+
var childArray = Array(childrenLength);
|
|
920
|
+
|
|
921
|
+
for (var i = 0; i < childrenLength; i++) {
|
|
922
|
+
childArray[i] = arguments[i + 2];
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
{
|
|
926
|
+
if (Object.freeze) {
|
|
927
|
+
Object.freeze(childArray);
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
props.children = childArray;
|
|
932
|
+
} // Resolve default props
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
if (type && type.defaultProps) {
|
|
936
|
+
var defaultProps = type.defaultProps;
|
|
937
|
+
|
|
938
|
+
for (propName in defaultProps) {
|
|
939
|
+
if (props[propName] === undefined) {
|
|
940
|
+
props[propName] = defaultProps[propName];
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
{
|
|
946
|
+
if (key || ref) {
|
|
947
|
+
var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
|
|
948
|
+
|
|
949
|
+
if (key) {
|
|
950
|
+
defineKeyPropWarningGetter(props, displayName);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
if (ref) {
|
|
954
|
+
defineRefPropWarningGetter(props, displayName);
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
960
|
+
}
|
|
961
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
962
|
+
var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
|
|
963
|
+
return newElement;
|
|
964
|
+
}
|
|
965
|
+
/**
|
|
966
|
+
* Clone and return a new ReactElement using element as the starting point.
|
|
967
|
+
* See https://reactjs.org/docs/react-api.html#cloneelement
|
|
968
|
+
*/
|
|
969
|
+
|
|
970
|
+
function cloneElement(element, config, children) {
|
|
971
|
+
if (!!(element === null || element === undefined)) {
|
|
972
|
+
{
|
|
973
|
+
throw Error( "React.cloneElement(...): The argument must be a React element, but you passed " + element + "." );
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
var propName; // Original props are copied
|
|
978
|
+
|
|
979
|
+
var props = _assign({}, element.props); // Reserved names are extracted
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
var key = element.key;
|
|
983
|
+
var ref = element.ref; // Self is preserved since the owner is preserved.
|
|
984
|
+
|
|
985
|
+
var self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a
|
|
986
|
+
// transpiler, and the original source is probably a better indicator of the
|
|
987
|
+
// true owner.
|
|
988
|
+
|
|
989
|
+
var source = element._source; // Owner will be preserved, unless ref is overridden
|
|
990
|
+
|
|
991
|
+
var owner = element._owner;
|
|
992
|
+
|
|
993
|
+
if (config != null) {
|
|
994
|
+
if (hasValidRef(config)) {
|
|
995
|
+
// Silently steal the ref from the parent.
|
|
996
|
+
ref = config.ref;
|
|
997
|
+
owner = ReactCurrentOwner.current;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
if (hasValidKey(config)) {
|
|
1001
|
+
key = '' + config.key;
|
|
1002
|
+
} // Remaining properties override existing props
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
var defaultProps;
|
|
1006
|
+
|
|
1007
|
+
if (element.type && element.type.defaultProps) {
|
|
1008
|
+
defaultProps = element.type.defaultProps;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
for (propName in config) {
|
|
1012
|
+
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
1013
|
+
if (config[propName] === undefined && defaultProps !== undefined) {
|
|
1014
|
+
// Resolve default props
|
|
1015
|
+
props[propName] = defaultProps[propName];
|
|
1016
|
+
} else {
|
|
1017
|
+
props[propName] = config[propName];
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
} // Children can be more than one argument, and those are transferred onto
|
|
1022
|
+
// the newly allocated props object.
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
var childrenLength = arguments.length - 2;
|
|
1026
|
+
|
|
1027
|
+
if (childrenLength === 1) {
|
|
1028
|
+
props.children = children;
|
|
1029
|
+
} else if (childrenLength > 1) {
|
|
1030
|
+
var childArray = Array(childrenLength);
|
|
1031
|
+
|
|
1032
|
+
for (var i = 0; i < childrenLength; i++) {
|
|
1033
|
+
childArray[i] = arguments[i + 2];
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
props.children = childArray;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
return ReactElement(element.type, key, ref, self, source, owner, props);
|
|
1040
|
+
}
|
|
1041
|
+
/**
|
|
1042
|
+
* Verifies the object is a ReactElement.
|
|
1043
|
+
* See https://reactjs.org/docs/react-api.html#isvalidelement
|
|
1044
|
+
* @param {?object} object
|
|
1045
|
+
* @return {boolean} True if `object` is a ReactElement.
|
|
1046
|
+
* @final
|
|
1047
|
+
*/
|
|
1048
|
+
|
|
1049
|
+
function isValidElement(object) {
|
|
1050
|
+
return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
var SEPARATOR = '.';
|
|
1054
|
+
var SUBSEPARATOR = ':';
|
|
1055
|
+
/**
|
|
1056
|
+
* Escape and wrap key so it is safe to use as a reactid
|
|
1057
|
+
*
|
|
1058
|
+
* @param {string} key to be escaped.
|
|
1059
|
+
* @return {string} the escaped key.
|
|
1060
|
+
*/
|
|
1061
|
+
|
|
1062
|
+
function escape(key) {
|
|
1063
|
+
var escapeRegex = /[=:]/g;
|
|
1064
|
+
var escaperLookup = {
|
|
1065
|
+
'=': '=0',
|
|
1066
|
+
':': '=2'
|
|
1067
|
+
};
|
|
1068
|
+
var escapedString = key.replace(escapeRegex, function (match) {
|
|
1069
|
+
return escaperLookup[match];
|
|
1070
|
+
});
|
|
1071
|
+
return '$' + escapedString;
|
|
1072
|
+
}
|
|
1073
|
+
/**
|
|
1074
|
+
* TODO: Test that a single child and an array with one item have the same key
|
|
1075
|
+
* pattern.
|
|
1076
|
+
*/
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
var didWarnAboutMaps = false;
|
|
1080
|
+
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
1081
|
+
|
|
1082
|
+
function escapeUserProvidedKey(text) {
|
|
1083
|
+
return text.replace(userProvidedKeyEscapeRegex, '$&/');
|
|
1084
|
+
}
|
|
1085
|
+
/**
|
|
1086
|
+
* Generate a key string that identifies a element within a set.
|
|
1087
|
+
*
|
|
1088
|
+
* @param {*} element A element that could contain a manual key.
|
|
1089
|
+
* @param {number} index Index that is used if a manual key is not provided.
|
|
1090
|
+
* @return {string}
|
|
1091
|
+
*/
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
function getElementKey(element, index) {
|
|
1095
|
+
// Do some typechecking here since we call this blindly. We want to ensure
|
|
1096
|
+
// that we don't block potential future ES APIs.
|
|
1097
|
+
if (typeof element === 'object' && element !== null && element.key != null) {
|
|
1098
|
+
// Explicit key
|
|
1099
|
+
return escape('' + element.key);
|
|
1100
|
+
} // Implicit key determined by the index in the set
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
return index.toString(36);
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
1107
|
+
var type = typeof children;
|
|
1108
|
+
|
|
1109
|
+
if (type === 'undefined' || type === 'boolean') {
|
|
1110
|
+
// All of the above are perceived as null.
|
|
1111
|
+
children = null;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
var invokeCallback = false;
|
|
1115
|
+
|
|
1116
|
+
if (children === null) {
|
|
1117
|
+
invokeCallback = true;
|
|
1118
|
+
} else {
|
|
1119
|
+
switch (type) {
|
|
1120
|
+
case 'string':
|
|
1121
|
+
case 'number':
|
|
1122
|
+
invokeCallback = true;
|
|
1123
|
+
break;
|
|
1124
|
+
|
|
1125
|
+
case 'object':
|
|
1126
|
+
switch (children.$$typeof) {
|
|
1127
|
+
case REACT_ELEMENT_TYPE:
|
|
1128
|
+
case REACT_PORTAL_TYPE:
|
|
1129
|
+
invokeCallback = true;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
}
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
if (invokeCallback) {
|
|
1136
|
+
var _child = children;
|
|
1137
|
+
var mappedChild = callback(_child); // If it's the only child, treat the name as if it was wrapped in an array
|
|
1138
|
+
// so that it's consistent if the number of children grows:
|
|
1139
|
+
|
|
1140
|
+
var childKey = nameSoFar === '' ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
|
|
1141
|
+
|
|
1142
|
+
if (Array.isArray(mappedChild)) {
|
|
1143
|
+
var escapedChildKey = '';
|
|
1144
|
+
|
|
1145
|
+
if (childKey != null) {
|
|
1146
|
+
escapedChildKey = escapeUserProvidedKey(childKey) + '/';
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
mapIntoArray(mappedChild, array, escapedChildKey, '', function (c) {
|
|
1150
|
+
return c;
|
|
1151
|
+
});
|
|
1152
|
+
} else if (mappedChild != null) {
|
|
1153
|
+
if (isValidElement(mappedChild)) {
|
|
1154
|
+
mappedChild = cloneAndReplaceKey(mappedChild, // Keep both the (mapped) and old keys if they differ, just as
|
|
1155
|
+
// traverseAllChildren used to do for objects as children
|
|
1156
|
+
escapedPrefix + ( // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key
|
|
1157
|
+
mappedChild.key && (!_child || _child.key !== mappedChild.key) ? // $FlowFixMe Flow incorrectly thinks existing element's key can be a number
|
|
1158
|
+
escapeUserProvidedKey('' + mappedChild.key) + '/' : '') + childKey);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
array.push(mappedChild);
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
return 1;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
var child;
|
|
1168
|
+
var nextName;
|
|
1169
|
+
var subtreeCount = 0; // Count of children found in the current subtree.
|
|
1170
|
+
|
|
1171
|
+
var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;
|
|
1172
|
+
|
|
1173
|
+
if (Array.isArray(children)) {
|
|
1174
|
+
for (var i = 0; i < children.length; i++) {
|
|
1175
|
+
child = children[i];
|
|
1176
|
+
nextName = nextNamePrefix + getElementKey(child, i);
|
|
1177
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
1178
|
+
}
|
|
1179
|
+
} else {
|
|
1180
|
+
var iteratorFn = getIteratorFn(children);
|
|
1181
|
+
|
|
1182
|
+
if (typeof iteratorFn === 'function') {
|
|
1183
|
+
var iterableChildren = children;
|
|
1184
|
+
|
|
1185
|
+
{
|
|
1186
|
+
// Warn about using Maps as children
|
|
1187
|
+
if (iteratorFn === iterableChildren.entries) {
|
|
1188
|
+
if (!didWarnAboutMaps) {
|
|
1189
|
+
warn('Using Maps as children is not supported. ' + 'Use an array of keyed ReactElements instead.');
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
didWarnAboutMaps = true;
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
var iterator = iteratorFn.call(iterableChildren);
|
|
1197
|
+
var step;
|
|
1198
|
+
var ii = 0;
|
|
1199
|
+
|
|
1200
|
+
while (!(step = iterator.next()).done) {
|
|
1201
|
+
child = step.value;
|
|
1202
|
+
nextName = nextNamePrefix + getElementKey(child, ii++);
|
|
1203
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
1204
|
+
}
|
|
1205
|
+
} else if (type === 'object') {
|
|
1206
|
+
var childrenString = '' + children;
|
|
1207
|
+
|
|
1208
|
+
{
|
|
1209
|
+
{
|
|
1210
|
+
throw Error( "Objects are not valid as a React child (found: " + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + "). If you meant to render a collection of children, use an array instead." );
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
return subtreeCount;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
/**
|
|
1220
|
+
* Maps children that are typically specified as `props.children`.
|
|
1221
|
+
*
|
|
1222
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenmap
|
|
1223
|
+
*
|
|
1224
|
+
* The provided mapFunction(child, index) will be called for each
|
|
1225
|
+
* leaf child.
|
|
1226
|
+
*
|
|
1227
|
+
* @param {?*} children Children tree container.
|
|
1228
|
+
* @param {function(*, int)} func The map function.
|
|
1229
|
+
* @param {*} context Context for mapFunction.
|
|
1230
|
+
* @return {object} Object containing the ordered map of results.
|
|
1231
|
+
*/
|
|
1232
|
+
function mapChildren(children, func, context) {
|
|
1233
|
+
if (children == null) {
|
|
1234
|
+
return children;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
var result = [];
|
|
1238
|
+
var count = 0;
|
|
1239
|
+
mapIntoArray(children, result, '', '', function (child) {
|
|
1240
|
+
return func.call(context, child, count++);
|
|
1241
|
+
});
|
|
1242
|
+
return result;
|
|
1243
|
+
}
|
|
1244
|
+
/**
|
|
1245
|
+
* Count the number of children that are typically specified as
|
|
1246
|
+
* `props.children`.
|
|
1247
|
+
*
|
|
1248
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrencount
|
|
1249
|
+
*
|
|
1250
|
+
* @param {?*} children Children tree container.
|
|
1251
|
+
* @return {number} The number of children.
|
|
1252
|
+
*/
|
|
1253
|
+
|
|
1254
|
+
|
|
1255
|
+
function countChildren(children) {
|
|
1256
|
+
var n = 0;
|
|
1257
|
+
mapChildren(children, function () {
|
|
1258
|
+
n++; // Don't return anything
|
|
1259
|
+
});
|
|
1260
|
+
return n;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Iterates through children that are typically specified as `props.children`.
|
|
1265
|
+
*
|
|
1266
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenforeach
|
|
1267
|
+
*
|
|
1268
|
+
* The provided forEachFunc(child, index) will be called for each
|
|
1269
|
+
* leaf child.
|
|
1270
|
+
*
|
|
1271
|
+
* @param {?*} children Children tree container.
|
|
1272
|
+
* @param {function(*, int)} forEachFunc
|
|
1273
|
+
* @param {*} forEachContext Context for forEachContext.
|
|
1274
|
+
*/
|
|
1275
|
+
function forEachChildren(children, forEachFunc, forEachContext) {
|
|
1276
|
+
mapChildren(children, function () {
|
|
1277
|
+
forEachFunc.apply(this, arguments); // Don't return anything.
|
|
1278
|
+
}, forEachContext);
|
|
1279
|
+
}
|
|
1280
|
+
/**
|
|
1281
|
+
* Flatten a children object (typically specified as `props.children`) and
|
|
1282
|
+
* return an array with appropriately re-keyed children.
|
|
1283
|
+
*
|
|
1284
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrentoarray
|
|
1285
|
+
*/
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
function toArray(children) {
|
|
1289
|
+
return mapChildren(children, function (child) {
|
|
1290
|
+
return child;
|
|
1291
|
+
}) || [];
|
|
1292
|
+
}
|
|
1293
|
+
/**
|
|
1294
|
+
* Returns the first child in a collection of children and verifies that there
|
|
1295
|
+
* is only one child in the collection.
|
|
1296
|
+
*
|
|
1297
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenonly
|
|
1298
|
+
*
|
|
1299
|
+
* The current implementation of this function assumes that a single child gets
|
|
1300
|
+
* passed without a wrapper, but the purpose of this helper function is to
|
|
1301
|
+
* abstract away the particular structure of children.
|
|
1302
|
+
*
|
|
1303
|
+
* @param {?object} children Child collection structure.
|
|
1304
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
|
1305
|
+
* structure.
|
|
1306
|
+
*/
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
function onlyChild(children) {
|
|
1310
|
+
if (!isValidElement(children)) {
|
|
1311
|
+
{
|
|
1312
|
+
throw Error( "React.Children.only expected to receive a single React element child." );
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
return children;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
function createContext(defaultValue, calculateChangedBits) {
|
|
1320
|
+
if (calculateChangedBits === undefined) {
|
|
1321
|
+
calculateChangedBits = null;
|
|
1322
|
+
} else {
|
|
1323
|
+
{
|
|
1324
|
+
if (calculateChangedBits !== null && typeof calculateChangedBits !== 'function') {
|
|
1325
|
+
error('createContext: Expected the optional second argument to be a ' + 'function. Instead received: %s', calculateChangedBits);
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
var context = {
|
|
1331
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
1332
|
+
_calculateChangedBits: calculateChangedBits,
|
|
1333
|
+
// As a workaround to support multiple concurrent renderers, we categorize
|
|
1334
|
+
// some renderers as primary and others as secondary. We only expect
|
|
1335
|
+
// there to be two concurrent renderers at most: React Native (primary) and
|
|
1336
|
+
// Fabric (secondary); React DOM (primary) and React ART (secondary).
|
|
1337
|
+
// Secondary renderers store their context values on separate fields.
|
|
1338
|
+
_currentValue: defaultValue,
|
|
1339
|
+
_currentValue2: defaultValue,
|
|
1340
|
+
// Used to track how many concurrent renderers this context currently
|
|
1341
|
+
// supports within in a single renderer. Such as parallel server rendering.
|
|
1342
|
+
_threadCount: 0,
|
|
1343
|
+
// These are circular
|
|
1344
|
+
Provider: null,
|
|
1345
|
+
Consumer: null
|
|
1346
|
+
};
|
|
1347
|
+
context.Provider = {
|
|
1348
|
+
$$typeof: REACT_PROVIDER_TYPE,
|
|
1349
|
+
_context: context
|
|
1350
|
+
};
|
|
1351
|
+
var hasWarnedAboutUsingNestedContextConsumers = false;
|
|
1352
|
+
var hasWarnedAboutUsingConsumerProvider = false;
|
|
1353
|
+
var hasWarnedAboutDisplayNameOnConsumer = false;
|
|
1354
|
+
|
|
1355
|
+
{
|
|
1356
|
+
// A separate object, but proxies back to the original context object for
|
|
1357
|
+
// backwards compatibility. It has a different $$typeof, so we can properly
|
|
1358
|
+
// warn for the incorrect usage of Context as a Consumer.
|
|
1359
|
+
var Consumer = {
|
|
1360
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
1361
|
+
_context: context,
|
|
1362
|
+
_calculateChangedBits: context._calculateChangedBits
|
|
1363
|
+
}; // $FlowFixMe: Flow complains about not setting a value, which is intentional here
|
|
1364
|
+
|
|
1365
|
+
Object.defineProperties(Consumer, {
|
|
1366
|
+
Provider: {
|
|
1367
|
+
get: function () {
|
|
1368
|
+
if (!hasWarnedAboutUsingConsumerProvider) {
|
|
1369
|
+
hasWarnedAboutUsingConsumerProvider = true;
|
|
1370
|
+
|
|
1371
|
+
error('Rendering <Context.Consumer.Provider> is not supported and will be removed in ' + 'a future major release. Did you mean to render <Context.Provider> instead?');
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
return context.Provider;
|
|
1375
|
+
},
|
|
1376
|
+
set: function (_Provider) {
|
|
1377
|
+
context.Provider = _Provider;
|
|
1378
|
+
}
|
|
1379
|
+
},
|
|
1380
|
+
_currentValue: {
|
|
1381
|
+
get: function () {
|
|
1382
|
+
return context._currentValue;
|
|
1383
|
+
},
|
|
1384
|
+
set: function (_currentValue) {
|
|
1385
|
+
context._currentValue = _currentValue;
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
_currentValue2: {
|
|
1389
|
+
get: function () {
|
|
1390
|
+
return context._currentValue2;
|
|
1391
|
+
},
|
|
1392
|
+
set: function (_currentValue2) {
|
|
1393
|
+
context._currentValue2 = _currentValue2;
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
_threadCount: {
|
|
1397
|
+
get: function () {
|
|
1398
|
+
return context._threadCount;
|
|
1399
|
+
},
|
|
1400
|
+
set: function (_threadCount) {
|
|
1401
|
+
context._threadCount = _threadCount;
|
|
1402
|
+
}
|
|
1403
|
+
},
|
|
1404
|
+
Consumer: {
|
|
1405
|
+
get: function () {
|
|
1406
|
+
if (!hasWarnedAboutUsingNestedContextConsumers) {
|
|
1407
|
+
hasWarnedAboutUsingNestedContextConsumers = true;
|
|
1408
|
+
|
|
1409
|
+
error('Rendering <Context.Consumer.Consumer> is not supported and will be removed in ' + 'a future major release. Did you mean to render <Context.Consumer> instead?');
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
return context.Consumer;
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
displayName: {
|
|
1416
|
+
get: function () {
|
|
1417
|
+
return context.displayName;
|
|
1418
|
+
},
|
|
1419
|
+
set: function (displayName) {
|
|
1420
|
+
if (!hasWarnedAboutDisplayNameOnConsumer) {
|
|
1421
|
+
warn('Setting `displayName` on Context.Consumer has no effect. ' + "You should set it directly on the context with Context.displayName = '%s'.", displayName);
|
|
1422
|
+
|
|
1423
|
+
hasWarnedAboutDisplayNameOnConsumer = true;
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
}); // $FlowFixMe: Flow complains about missing properties because it doesn't understand defineProperty
|
|
1428
|
+
|
|
1429
|
+
context.Consumer = Consumer;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
{
|
|
1433
|
+
context._currentRenderer = null;
|
|
1434
|
+
context._currentRenderer2 = null;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
return context;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
var Uninitialized = -1;
|
|
1441
|
+
var Pending = 0;
|
|
1442
|
+
var Resolved = 1;
|
|
1443
|
+
var Rejected = 2;
|
|
1444
|
+
|
|
1445
|
+
function lazyInitializer(payload) {
|
|
1446
|
+
if (payload._status === Uninitialized) {
|
|
1447
|
+
var ctor = payload._result;
|
|
1448
|
+
var thenable = ctor(); // Transition to the next state.
|
|
1449
|
+
|
|
1450
|
+
var pending = payload;
|
|
1451
|
+
pending._status = Pending;
|
|
1452
|
+
pending._result = thenable;
|
|
1453
|
+
thenable.then(function (moduleObject) {
|
|
1454
|
+
if (payload._status === Pending) {
|
|
1455
|
+
var defaultExport = moduleObject.default;
|
|
1456
|
+
|
|
1457
|
+
{
|
|
1458
|
+
if (defaultExport === undefined) {
|
|
1459
|
+
error('lazy: Expected the result of a dynamic import() call. ' + 'Instead received: %s\n\nYour code should look like: \n ' + // Break up imports to avoid accidentally parsing them as dependencies.
|
|
1460
|
+
'const MyComponent = lazy(() => imp' + "ort('./MyComponent'))", moduleObject);
|
|
1461
|
+
}
|
|
1462
|
+
} // Transition to the next state.
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
var resolved = payload;
|
|
1466
|
+
resolved._status = Resolved;
|
|
1467
|
+
resolved._result = defaultExport;
|
|
1468
|
+
}
|
|
1469
|
+
}, function (error) {
|
|
1470
|
+
if (payload._status === Pending) {
|
|
1471
|
+
// Transition to the next state.
|
|
1472
|
+
var rejected = payload;
|
|
1473
|
+
rejected._status = Rejected;
|
|
1474
|
+
rejected._result = error;
|
|
1475
|
+
}
|
|
1476
|
+
});
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
if (payload._status === Resolved) {
|
|
1480
|
+
return payload._result;
|
|
1481
|
+
} else {
|
|
1482
|
+
throw payload._result;
|
|
1483
|
+
}
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
function lazy(ctor) {
|
|
1487
|
+
var payload = {
|
|
1488
|
+
// We use these fields to store the result.
|
|
1489
|
+
_status: -1,
|
|
1490
|
+
_result: ctor
|
|
1491
|
+
};
|
|
1492
|
+
var lazyType = {
|
|
1493
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
1494
|
+
_payload: payload,
|
|
1495
|
+
_init: lazyInitializer
|
|
1496
|
+
};
|
|
1497
|
+
|
|
1498
|
+
{
|
|
1499
|
+
// In production, this would just set it on the object.
|
|
1500
|
+
var defaultProps;
|
|
1501
|
+
var propTypes; // $FlowFixMe
|
|
1502
|
+
|
|
1503
|
+
Object.defineProperties(lazyType, {
|
|
1504
|
+
defaultProps: {
|
|
1505
|
+
configurable: true,
|
|
1506
|
+
get: function () {
|
|
1507
|
+
return defaultProps;
|
|
1508
|
+
},
|
|
1509
|
+
set: function (newDefaultProps) {
|
|
1510
|
+
error('React.lazy(...): It is not supported to assign `defaultProps` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
|
|
1511
|
+
|
|
1512
|
+
defaultProps = newDefaultProps; // Match production behavior more closely:
|
|
1513
|
+
// $FlowFixMe
|
|
1514
|
+
|
|
1515
|
+
Object.defineProperty(lazyType, 'defaultProps', {
|
|
1516
|
+
enumerable: true
|
|
1517
|
+
});
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
propTypes: {
|
|
1521
|
+
configurable: true,
|
|
1522
|
+
get: function () {
|
|
1523
|
+
return propTypes;
|
|
1524
|
+
},
|
|
1525
|
+
set: function (newPropTypes) {
|
|
1526
|
+
error('React.lazy(...): It is not supported to assign `propTypes` to ' + 'a lazy component import. Either specify them where the component ' + 'is defined, or create a wrapping component around it.');
|
|
1527
|
+
|
|
1528
|
+
propTypes = newPropTypes; // Match production behavior more closely:
|
|
1529
|
+
// $FlowFixMe
|
|
1530
|
+
|
|
1531
|
+
Object.defineProperty(lazyType, 'propTypes', {
|
|
1532
|
+
enumerable: true
|
|
1533
|
+
});
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
});
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
return lazyType;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
function forwardRef(render) {
|
|
1543
|
+
{
|
|
1544
|
+
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
|
1545
|
+
error('forwardRef requires a render function but received a `memo` ' + 'component. Instead of forwardRef(memo(...)), use ' + 'memo(forwardRef(...)).');
|
|
1546
|
+
} else if (typeof render !== 'function') {
|
|
1547
|
+
error('forwardRef requires a render function but was given %s.', render === null ? 'null' : typeof render);
|
|
1548
|
+
} else {
|
|
1549
|
+
if (render.length !== 0 && render.length !== 2) {
|
|
1550
|
+
error('forwardRef render functions accept exactly two parameters: props and ref. %s', render.length === 1 ? 'Did you forget to use the ref parameter?' : 'Any additional parameter will be undefined.');
|
|
1551
|
+
}
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
if (render != null) {
|
|
1555
|
+
if (render.defaultProps != null || render.propTypes != null) {
|
|
1556
|
+
error('forwardRef render functions do not support propTypes or defaultProps. ' + 'Did you accidentally pass a React component?');
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
var elementType = {
|
|
1562
|
+
$$typeof: REACT_FORWARD_REF_TYPE,
|
|
1563
|
+
render: render
|
|
1564
|
+
};
|
|
1565
|
+
|
|
1566
|
+
{
|
|
1567
|
+
var ownName;
|
|
1568
|
+
Object.defineProperty(elementType, 'displayName', {
|
|
1569
|
+
enumerable: false,
|
|
1570
|
+
configurable: true,
|
|
1571
|
+
get: function () {
|
|
1572
|
+
return ownName;
|
|
1573
|
+
},
|
|
1574
|
+
set: function (name) {
|
|
1575
|
+
ownName = name;
|
|
1576
|
+
|
|
1577
|
+
if (render.displayName == null) {
|
|
1578
|
+
render.displayName = name;
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
});
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
return elementType;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
// Filter certain DOM attributes (e.g. src, href) if their values are empty strings.
|
|
1588
|
+
|
|
1589
|
+
var enableScopeAPI = false; // Experimental Create Event Handle API.
|
|
1590
|
+
|
|
1591
|
+
function isValidElementType(type) {
|
|
1592
|
+
if (typeof type === 'string' || typeof type === 'function') {
|
|
1593
|
+
return true;
|
|
1594
|
+
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
if (type === exports.Fragment || type === exports.Profiler || type === REACT_DEBUG_TRACING_MODE_TYPE || type === exports.StrictMode || type === exports.Suspense || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI ) {
|
|
1598
|
+
return true;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
if (typeof type === 'object' && type !== null) {
|
|
1602
|
+
if (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_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {
|
|
1603
|
+
return true;
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
return false;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
function memo(type, compare) {
|
|
1611
|
+
{
|
|
1612
|
+
if (!isValidElementType(type)) {
|
|
1613
|
+
error('memo: The first argument must be a component. Instead ' + 'received: %s', type === null ? 'null' : typeof type);
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
var elementType = {
|
|
1618
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
1619
|
+
type: type,
|
|
1620
|
+
compare: compare === undefined ? null : compare
|
|
1621
|
+
};
|
|
1622
|
+
|
|
1623
|
+
{
|
|
1624
|
+
var ownName;
|
|
1625
|
+
Object.defineProperty(elementType, 'displayName', {
|
|
1626
|
+
enumerable: false,
|
|
1627
|
+
configurable: true,
|
|
1628
|
+
get: function () {
|
|
1629
|
+
return ownName;
|
|
1630
|
+
},
|
|
1631
|
+
set: function (name) {
|
|
1632
|
+
ownName = name;
|
|
1633
|
+
|
|
1634
|
+
if (type.displayName == null) {
|
|
1635
|
+
type.displayName = name;
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
});
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
return elementType;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
function resolveDispatcher() {
|
|
1645
|
+
var dispatcher = ReactCurrentDispatcher.current;
|
|
1646
|
+
|
|
1647
|
+
if (!(dispatcher !== null)) {
|
|
1648
|
+
{
|
|
1649
|
+
throw Error( "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem." );
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
return dispatcher;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
function useContext(Context, unstable_observedBits) {
|
|
1657
|
+
var dispatcher = resolveDispatcher();
|
|
1658
|
+
|
|
1659
|
+
{
|
|
1660
|
+
if (unstable_observedBits !== undefined) {
|
|
1661
|
+
error('useContext() second argument is reserved for future ' + 'use in React. Passing it is not supported. ' + 'You passed: %s.%s', unstable_observedBits, typeof unstable_observedBits === 'number' && Array.isArray(arguments[2]) ? '\n\nDid you call array.map(useContext)? ' + 'Calling Hooks inside a loop is not supported. ' + 'Learn more at https://reactjs.org/link/rules-of-hooks' : '');
|
|
1662
|
+
} // TODO: add a more generic warning for invalid values.
|
|
1663
|
+
|
|
1664
|
+
|
|
1665
|
+
if (Context._context !== undefined) {
|
|
1666
|
+
var realContext = Context._context; // Don't deduplicate because this legitimately causes bugs
|
|
1667
|
+
// and nobody should be using this in existing code.
|
|
1668
|
+
|
|
1669
|
+
if (realContext.Consumer === Context) {
|
|
1670
|
+
error('Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be ' + 'removed in a future major release. Did you mean to call useContext(Context) instead?');
|
|
1671
|
+
} else if (realContext.Provider === Context) {
|
|
1672
|
+
error('Calling useContext(Context.Provider) is not supported. ' + 'Did you mean to call useContext(Context) instead?');
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
return dispatcher.useContext(Context, unstable_observedBits);
|
|
1678
|
+
}
|
|
1679
|
+
function useState(initialState) {
|
|
1680
|
+
var dispatcher = resolveDispatcher();
|
|
1681
|
+
return dispatcher.useState(initialState);
|
|
1682
|
+
}
|
|
1683
|
+
function useReducer(reducer, initialArg, init) {
|
|
1684
|
+
var dispatcher = resolveDispatcher();
|
|
1685
|
+
return dispatcher.useReducer(reducer, initialArg, init);
|
|
1686
|
+
}
|
|
1687
|
+
function useRef(initialValue) {
|
|
1688
|
+
var dispatcher = resolveDispatcher();
|
|
1689
|
+
return dispatcher.useRef(initialValue);
|
|
1690
|
+
}
|
|
1691
|
+
function useEffect(create, deps) {
|
|
1692
|
+
var dispatcher = resolveDispatcher();
|
|
1693
|
+
return dispatcher.useEffect(create, deps);
|
|
1694
|
+
}
|
|
1695
|
+
function useLayoutEffect(create, deps) {
|
|
1696
|
+
var dispatcher = resolveDispatcher();
|
|
1697
|
+
return dispatcher.useLayoutEffect(create, deps);
|
|
1698
|
+
}
|
|
1699
|
+
function useCallback(callback, deps) {
|
|
1700
|
+
var dispatcher = resolveDispatcher();
|
|
1701
|
+
return dispatcher.useCallback(callback, deps);
|
|
1702
|
+
}
|
|
1703
|
+
function useMemo(create, deps) {
|
|
1704
|
+
var dispatcher = resolveDispatcher();
|
|
1705
|
+
return dispatcher.useMemo(create, deps);
|
|
1706
|
+
}
|
|
1707
|
+
function useImperativeHandle(ref, create, deps) {
|
|
1708
|
+
var dispatcher = resolveDispatcher();
|
|
1709
|
+
return dispatcher.useImperativeHandle(ref, create, deps);
|
|
1710
|
+
}
|
|
1711
|
+
function useDebugValue(value, formatterFn) {
|
|
1712
|
+
{
|
|
1713
|
+
var dispatcher = resolveDispatcher();
|
|
1714
|
+
return dispatcher.useDebugValue(value, formatterFn);
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
// Helpers to patch console.logs to avoid logging during side-effect free
|
|
1719
|
+
// replaying on render function. This currently only patches the object
|
|
1720
|
+
// lazily which won't cover if the log function was extracted eagerly.
|
|
1721
|
+
// We could also eagerly patch the method.
|
|
1722
|
+
var disabledDepth = 0;
|
|
1723
|
+
var prevLog;
|
|
1724
|
+
var prevInfo;
|
|
1725
|
+
var prevWarn;
|
|
1726
|
+
var prevError;
|
|
1727
|
+
var prevGroup;
|
|
1728
|
+
var prevGroupCollapsed;
|
|
1729
|
+
var prevGroupEnd;
|
|
1730
|
+
|
|
1731
|
+
function disabledLog() {}
|
|
1732
|
+
|
|
1733
|
+
disabledLog.__reactDisabledLog = true;
|
|
1734
|
+
function disableLogs() {
|
|
1735
|
+
{
|
|
1736
|
+
if (disabledDepth === 0) {
|
|
1737
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
1738
|
+
prevLog = console.log;
|
|
1739
|
+
prevInfo = console.info;
|
|
1740
|
+
prevWarn = console.warn;
|
|
1741
|
+
prevError = console.error;
|
|
1742
|
+
prevGroup = console.group;
|
|
1743
|
+
prevGroupCollapsed = console.groupCollapsed;
|
|
1744
|
+
prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099
|
|
1745
|
+
|
|
1746
|
+
var props = {
|
|
1747
|
+
configurable: true,
|
|
1748
|
+
enumerable: true,
|
|
1749
|
+
value: disabledLog,
|
|
1750
|
+
writable: true
|
|
1751
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
1752
|
+
|
|
1753
|
+
Object.defineProperties(console, {
|
|
1754
|
+
info: props,
|
|
1755
|
+
log: props,
|
|
1756
|
+
warn: props,
|
|
1757
|
+
error: props,
|
|
1758
|
+
group: props,
|
|
1759
|
+
groupCollapsed: props,
|
|
1760
|
+
groupEnd: props
|
|
1761
|
+
});
|
|
1762
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
disabledDepth++;
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
function reenableLogs() {
|
|
1769
|
+
{
|
|
1770
|
+
disabledDepth--;
|
|
1771
|
+
|
|
1772
|
+
if (disabledDepth === 0) {
|
|
1773
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
1774
|
+
var props = {
|
|
1775
|
+
configurable: true,
|
|
1776
|
+
enumerable: true,
|
|
1777
|
+
writable: true
|
|
1778
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
1779
|
+
|
|
1780
|
+
Object.defineProperties(console, {
|
|
1781
|
+
log: _assign({}, props, {
|
|
1782
|
+
value: prevLog
|
|
1783
|
+
}),
|
|
1784
|
+
info: _assign({}, props, {
|
|
1785
|
+
value: prevInfo
|
|
1786
|
+
}),
|
|
1787
|
+
warn: _assign({}, props, {
|
|
1788
|
+
value: prevWarn
|
|
1789
|
+
}),
|
|
1790
|
+
error: _assign({}, props, {
|
|
1791
|
+
value: prevError
|
|
1792
|
+
}),
|
|
1793
|
+
group: _assign({}, props, {
|
|
1794
|
+
value: prevGroup
|
|
1795
|
+
}),
|
|
1796
|
+
groupCollapsed: _assign({}, props, {
|
|
1797
|
+
value: prevGroupCollapsed
|
|
1798
|
+
}),
|
|
1799
|
+
groupEnd: _assign({}, props, {
|
|
1800
|
+
value: prevGroupEnd
|
|
1801
|
+
})
|
|
1802
|
+
});
|
|
1803
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
if (disabledDepth < 0) {
|
|
1807
|
+
error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
|
|
1813
|
+
var prefix;
|
|
1814
|
+
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
1815
|
+
{
|
|
1816
|
+
if (prefix === undefined) {
|
|
1817
|
+
// Extract the VM specific prefix used by each line.
|
|
1818
|
+
try {
|
|
1819
|
+
throw Error();
|
|
1820
|
+
} catch (x) {
|
|
1821
|
+
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
1822
|
+
prefix = match && match[1] || '';
|
|
1823
|
+
}
|
|
1824
|
+
} // We use the prefix to ensure our stacks line up with native stack frames.
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
return '\n' + prefix + name;
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
var reentry = false;
|
|
1831
|
+
var componentFrameCache;
|
|
1832
|
+
|
|
1833
|
+
{
|
|
1834
|
+
var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
|
|
1835
|
+
componentFrameCache = new PossiblyWeakMap();
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
function describeNativeComponentFrame(fn, construct) {
|
|
1839
|
+
// If something asked for a stack inside a fake render, it should get ignored.
|
|
1840
|
+
if (!fn || reentry) {
|
|
1841
|
+
return '';
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
{
|
|
1845
|
+
var frame = componentFrameCache.get(fn);
|
|
1846
|
+
|
|
1847
|
+
if (frame !== undefined) {
|
|
1848
|
+
return frame;
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
var control;
|
|
1853
|
+
reentry = true;
|
|
1854
|
+
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
|
|
1855
|
+
|
|
1856
|
+
Error.prepareStackTrace = undefined;
|
|
1857
|
+
var previousDispatcher;
|
|
1858
|
+
|
|
1859
|
+
{
|
|
1860
|
+
previousDispatcher = ReactCurrentDispatcher$1.current; // Set the dispatcher in DEV because this might be call in the render function
|
|
1861
|
+
// for warnings.
|
|
1862
|
+
|
|
1863
|
+
ReactCurrentDispatcher$1.current = null;
|
|
1864
|
+
disableLogs();
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
try {
|
|
1868
|
+
// This should throw.
|
|
1869
|
+
if (construct) {
|
|
1870
|
+
// Something should be setting the props in the constructor.
|
|
1871
|
+
var Fake = function () {
|
|
1872
|
+
throw Error();
|
|
1873
|
+
}; // $FlowFixMe
|
|
1874
|
+
|
|
1875
|
+
|
|
1876
|
+
Object.defineProperty(Fake.prototype, 'props', {
|
|
1877
|
+
set: function () {
|
|
1878
|
+
// We use a throwing setter instead of frozen or non-writable props
|
|
1879
|
+
// because that won't throw in a non-strict mode function.
|
|
1880
|
+
throw Error();
|
|
1881
|
+
}
|
|
1882
|
+
});
|
|
1883
|
+
|
|
1884
|
+
if (typeof Reflect === 'object' && Reflect.construct) {
|
|
1885
|
+
// We construct a different control for this case to include any extra
|
|
1886
|
+
// frames added by the construct call.
|
|
1887
|
+
try {
|
|
1888
|
+
Reflect.construct(Fake, []);
|
|
1889
|
+
} catch (x) {
|
|
1890
|
+
control = x;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
Reflect.construct(fn, [], Fake);
|
|
1894
|
+
} else {
|
|
1895
|
+
try {
|
|
1896
|
+
Fake.call();
|
|
1897
|
+
} catch (x) {
|
|
1898
|
+
control = x;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
fn.call(Fake.prototype);
|
|
1902
|
+
}
|
|
1903
|
+
} else {
|
|
1904
|
+
try {
|
|
1905
|
+
throw Error();
|
|
1906
|
+
} catch (x) {
|
|
1907
|
+
control = x;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
fn();
|
|
1911
|
+
}
|
|
1912
|
+
} catch (sample) {
|
|
1913
|
+
// This is inlined manually because closure doesn't do it for us.
|
|
1914
|
+
if (sample && control && typeof sample.stack === 'string') {
|
|
1915
|
+
// This extracts the first frame from the sample that isn't also in the control.
|
|
1916
|
+
// Skipping one frame that we assume is the frame that calls the two.
|
|
1917
|
+
var sampleLines = sample.stack.split('\n');
|
|
1918
|
+
var controlLines = control.stack.split('\n');
|
|
1919
|
+
var s = sampleLines.length - 1;
|
|
1920
|
+
var c = controlLines.length - 1;
|
|
1921
|
+
|
|
1922
|
+
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
|
1923
|
+
// We expect at least one stack frame to be shared.
|
|
1924
|
+
// Typically this will be the root most one. However, stack frames may be
|
|
1925
|
+
// cut off due to maximum stack limits. In this case, one maybe cut off
|
|
1926
|
+
// earlier than the other. We assume that the sample is longer or the same
|
|
1927
|
+
// and there for cut off earlier. So we should find the root most frame in
|
|
1928
|
+
// the sample somewhere in the control.
|
|
1929
|
+
c--;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
for (; s >= 1 && c >= 0; s--, c--) {
|
|
1933
|
+
// Next we find the first one that isn't the same which should be the
|
|
1934
|
+
// frame that called our sample function and the control.
|
|
1935
|
+
if (sampleLines[s] !== controlLines[c]) {
|
|
1936
|
+
// In V8, the first line is describing the message but other VMs don't.
|
|
1937
|
+
// If we're about to return the first line, and the control is also on the same
|
|
1938
|
+
// line, that's a pretty good indicator that our sample threw at same line as
|
|
1939
|
+
// the control. I.e. before we entered the sample frame. So we ignore this result.
|
|
1940
|
+
// This can happen if you passed a class to function component, or non-function.
|
|
1941
|
+
if (s !== 1 || c !== 1) {
|
|
1942
|
+
do {
|
|
1943
|
+
s--;
|
|
1944
|
+
c--; // We may still have similar intermediate frames from the construct call.
|
|
1945
|
+
// The next one that isn't the same should be our match though.
|
|
1946
|
+
|
|
1947
|
+
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
1948
|
+
// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
|
|
1949
|
+
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
|
|
1950
|
+
|
|
1951
|
+
{
|
|
1952
|
+
if (typeof fn === 'function') {
|
|
1953
|
+
componentFrameCache.set(fn, _frame);
|
|
1954
|
+
}
|
|
1955
|
+
} // Return the line we found.
|
|
1956
|
+
|
|
1957
|
+
|
|
1958
|
+
return _frame;
|
|
1959
|
+
}
|
|
1960
|
+
} while (s >= 1 && c >= 0);
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
break;
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1966
|
+
}
|
|
1967
|
+
} finally {
|
|
1968
|
+
reentry = false;
|
|
1969
|
+
|
|
1970
|
+
{
|
|
1971
|
+
ReactCurrentDispatcher$1.current = previousDispatcher;
|
|
1972
|
+
reenableLogs();
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
1976
|
+
} // Fallback to just using the name if we couldn't make it throw.
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
var name = fn ? fn.displayName || fn.name : '';
|
|
1980
|
+
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';
|
|
1981
|
+
|
|
1982
|
+
{
|
|
1983
|
+
if (typeof fn === 'function') {
|
|
1984
|
+
componentFrameCache.set(fn, syntheticFrame);
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
return syntheticFrame;
|
|
1989
|
+
}
|
|
1990
|
+
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
1991
|
+
{
|
|
1992
|
+
return describeNativeComponentFrame(fn, false);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
function shouldConstruct(Component) {
|
|
1997
|
+
var prototype = Component.prototype;
|
|
1998
|
+
return !!(prototype && prototype.isReactComponent);
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
2002
|
+
|
|
2003
|
+
if (type == null) {
|
|
2004
|
+
return '';
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
if (typeof type === 'function') {
|
|
2008
|
+
{
|
|
2009
|
+
return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
if (typeof type === 'string') {
|
|
2014
|
+
return describeBuiltInComponentFrame(type);
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
switch (type) {
|
|
2018
|
+
case exports.Suspense:
|
|
2019
|
+
return describeBuiltInComponentFrame('Suspense');
|
|
2020
|
+
|
|
2021
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
2022
|
+
return describeBuiltInComponentFrame('SuspenseList');
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
if (typeof type === 'object') {
|
|
2026
|
+
switch (type.$$typeof) {
|
|
2027
|
+
case REACT_FORWARD_REF_TYPE:
|
|
2028
|
+
return describeFunctionComponentFrame(type.render);
|
|
2029
|
+
|
|
2030
|
+
case REACT_MEMO_TYPE:
|
|
2031
|
+
// Memo may contain any component type so we recursively resolve it.
|
|
2032
|
+
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
2033
|
+
|
|
2034
|
+
case REACT_BLOCK_TYPE:
|
|
2035
|
+
return describeFunctionComponentFrame(type._render);
|
|
2036
|
+
|
|
2037
|
+
case REACT_LAZY_TYPE:
|
|
2038
|
+
{
|
|
2039
|
+
var lazyComponent = type;
|
|
2040
|
+
var payload = lazyComponent._payload;
|
|
2041
|
+
var init = lazyComponent._init;
|
|
2042
|
+
|
|
2043
|
+
try {
|
|
2044
|
+
// Lazy may contain any component type so we recursively resolve it.
|
|
2045
|
+
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
2046
|
+
} catch (x) {}
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
return '';
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
var loggedTypeFailures = {};
|
|
2055
|
+
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
2056
|
+
|
|
2057
|
+
function setCurrentlyValidatingElement(element) {
|
|
2058
|
+
{
|
|
2059
|
+
if (element) {
|
|
2060
|
+
var owner = element._owner;
|
|
2061
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2062
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
2063
|
+
} else {
|
|
2064
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
2070
|
+
{
|
|
2071
|
+
// $FlowFixMe This is okay but Flow doesn't know it.
|
|
2072
|
+
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
|
2073
|
+
|
|
2074
|
+
for (var typeSpecName in typeSpecs) {
|
|
2075
|
+
if (has(typeSpecs, typeSpecName)) {
|
|
2076
|
+
var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to
|
|
2077
|
+
// fail the render phase where it didn't fail before. So we log it.
|
|
2078
|
+
// After these have been cleaned up, we'll let them throw.
|
|
2079
|
+
|
|
2080
|
+
try {
|
|
2081
|
+
// This is intentionally an invariant that gets caught. It's the same
|
|
2082
|
+
// behavior as without this statement except with a better message.
|
|
2083
|
+
if (typeof typeSpecs[typeSpecName] !== 'function') {
|
|
2084
|
+
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`.');
|
|
2085
|
+
err.name = 'Invariant Violation';
|
|
2086
|
+
throw err;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');
|
|
2090
|
+
} catch (ex) {
|
|
2091
|
+
error$1 = ex;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
if (error$1 && !(error$1 instanceof Error)) {
|
|
2095
|
+
setCurrentlyValidatingElement(element);
|
|
2096
|
+
|
|
2097
|
+
error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
|
|
2098
|
+
|
|
2099
|
+
setCurrentlyValidatingElement(null);
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
2103
|
+
// Only monitor this failure once because there tends to be a lot of the
|
|
2104
|
+
// same error.
|
|
2105
|
+
loggedTypeFailures[error$1.message] = true;
|
|
2106
|
+
setCurrentlyValidatingElement(element);
|
|
2107
|
+
|
|
2108
|
+
error('Failed %s type: %s', location, error$1.message);
|
|
2109
|
+
|
|
2110
|
+
setCurrentlyValidatingElement(null);
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
function setCurrentlyValidatingElement$1(element) {
|
|
2118
|
+
{
|
|
2119
|
+
if (element) {
|
|
2120
|
+
var owner = element._owner;
|
|
2121
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2122
|
+
setExtraStackFrame(stack);
|
|
2123
|
+
} else {
|
|
2124
|
+
setExtraStackFrame(null);
|
|
2125
|
+
}
|
|
2126
|
+
}
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
var propTypesMisspellWarningShown;
|
|
2130
|
+
|
|
2131
|
+
{
|
|
2132
|
+
propTypesMisspellWarningShown = false;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
function getDeclarationErrorAddendum() {
|
|
2136
|
+
if (ReactCurrentOwner.current) {
|
|
2137
|
+
var name = getComponentName(ReactCurrentOwner.current.type);
|
|
2138
|
+
|
|
2139
|
+
if (name) {
|
|
2140
|
+
return '\n\nCheck the render method of `' + name + '`.';
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
return '';
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
function getSourceInfoErrorAddendum(source) {
|
|
2148
|
+
if (source !== undefined) {
|
|
2149
|
+
var fileName = source.fileName.replace(/^.*[\\\/]/, '');
|
|
2150
|
+
var lineNumber = source.lineNumber;
|
|
2151
|
+
return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.';
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
return '';
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
function getSourceInfoErrorAddendumForProps(elementProps) {
|
|
2158
|
+
if (elementProps !== null && elementProps !== undefined) {
|
|
2159
|
+
return getSourceInfoErrorAddendum(elementProps.__source);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
return '';
|
|
2163
|
+
}
|
|
2164
|
+
/**
|
|
2165
|
+
* Warn if there's no key explicitly set on dynamic arrays of children or
|
|
2166
|
+
* object keys are not valid. This allows us to keep track of children between
|
|
2167
|
+
* updates.
|
|
2168
|
+
*/
|
|
2169
|
+
|
|
2170
|
+
|
|
2171
|
+
var ownerHasKeyUseWarning = {};
|
|
2172
|
+
|
|
2173
|
+
function getCurrentComponentErrorInfo(parentType) {
|
|
2174
|
+
var info = getDeclarationErrorAddendum();
|
|
2175
|
+
|
|
2176
|
+
if (!info) {
|
|
2177
|
+
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
|
|
2178
|
+
|
|
2179
|
+
if (parentName) {
|
|
2180
|
+
info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
|
2181
|
+
}
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
return info;
|
|
2185
|
+
}
|
|
2186
|
+
/**
|
|
2187
|
+
* Warn if the element doesn't have an explicit key assigned to it.
|
|
2188
|
+
* This element is in an array. The array could grow and shrink or be
|
|
2189
|
+
* reordered. All children that haven't already been validated are required to
|
|
2190
|
+
* have a "key" property assigned to it. Error statuses are cached so a warning
|
|
2191
|
+
* will only be shown once.
|
|
2192
|
+
*
|
|
2193
|
+
* @internal
|
|
2194
|
+
* @param {ReactElement} element Element that requires a key.
|
|
2195
|
+
* @param {*} parentType element's parent's type.
|
|
2196
|
+
*/
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
function validateExplicitKey(element, parentType) {
|
|
2200
|
+
if (!element._store || element._store.validated || element.key != null) {
|
|
2201
|
+
return;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
element._store.validated = true;
|
|
2205
|
+
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
2206
|
+
|
|
2207
|
+
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
|
2208
|
+
return;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a
|
|
2212
|
+
// property, it may be the creator of the child that's responsible for
|
|
2213
|
+
// assigning it a key.
|
|
2214
|
+
|
|
2215
|
+
var childOwner = '';
|
|
2216
|
+
|
|
2217
|
+
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
|
|
2218
|
+
// Give the component that originally created this child.
|
|
2219
|
+
childOwner = " It was passed a child from " + getComponentName(element._owner.type) + ".";
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
{
|
|
2223
|
+
setCurrentlyValidatingElement$1(element);
|
|
2224
|
+
|
|
2225
|
+
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
|
|
2226
|
+
|
|
2227
|
+
setCurrentlyValidatingElement$1(null);
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
/**
|
|
2231
|
+
* Ensure that every element either is passed in a static location, in an
|
|
2232
|
+
* array with an explicit keys property defined, or in an object literal
|
|
2233
|
+
* with valid key property.
|
|
2234
|
+
*
|
|
2235
|
+
* @internal
|
|
2236
|
+
* @param {ReactNode} node Statically passed child of any type.
|
|
2237
|
+
* @param {*} parentType node's parent's type.
|
|
2238
|
+
*/
|
|
2239
|
+
|
|
2240
|
+
|
|
2241
|
+
function validateChildKeys(node, parentType) {
|
|
2242
|
+
if (typeof node !== 'object') {
|
|
2243
|
+
return;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
if (Array.isArray(node)) {
|
|
2247
|
+
for (var i = 0; i < node.length; i++) {
|
|
2248
|
+
var child = node[i];
|
|
2249
|
+
|
|
2250
|
+
if (isValidElement(child)) {
|
|
2251
|
+
validateExplicitKey(child, parentType);
|
|
2252
|
+
}
|
|
2253
|
+
}
|
|
2254
|
+
} else if (isValidElement(node)) {
|
|
2255
|
+
// This element was passed in a valid location.
|
|
2256
|
+
if (node._store) {
|
|
2257
|
+
node._store.validated = true;
|
|
2258
|
+
}
|
|
2259
|
+
} else if (node) {
|
|
2260
|
+
var iteratorFn = getIteratorFn(node);
|
|
2261
|
+
|
|
2262
|
+
if (typeof iteratorFn === 'function') {
|
|
2263
|
+
// Entry iterators used to provide implicit keys,
|
|
2264
|
+
// but now we print a separate warning for them later.
|
|
2265
|
+
if (iteratorFn !== node.entries) {
|
|
2266
|
+
var iterator = iteratorFn.call(node);
|
|
2267
|
+
var step;
|
|
2268
|
+
|
|
2269
|
+
while (!(step = iterator.next()).done) {
|
|
2270
|
+
if (isValidElement(step.value)) {
|
|
2271
|
+
validateExplicitKey(step.value, parentType);
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2278
|
+
/**
|
|
2279
|
+
* Given an element, validate that its props follow the propTypes definition,
|
|
2280
|
+
* provided by the type.
|
|
2281
|
+
*
|
|
2282
|
+
* @param {ReactElement} element
|
|
2283
|
+
*/
|
|
2284
|
+
|
|
2285
|
+
|
|
2286
|
+
function validatePropTypes(element) {
|
|
2287
|
+
{
|
|
2288
|
+
var type = element.type;
|
|
2289
|
+
|
|
2290
|
+
if (type === null || type === undefined || typeof type === 'string') {
|
|
2291
|
+
return;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
var propTypes;
|
|
2295
|
+
|
|
2296
|
+
if (typeof type === 'function') {
|
|
2297
|
+
propTypes = type.propTypes;
|
|
2298
|
+
} else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
|
|
2299
|
+
// Inner props are checked in the reconciler.
|
|
2300
|
+
type.$$typeof === REACT_MEMO_TYPE)) {
|
|
2301
|
+
propTypes = type.propTypes;
|
|
2302
|
+
} else {
|
|
2303
|
+
return;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
if (propTypes) {
|
|
2307
|
+
// Intentionally inside to avoid triggering lazy initializers:
|
|
2308
|
+
var name = getComponentName(type);
|
|
2309
|
+
checkPropTypes(propTypes, element.props, 'prop', name, element);
|
|
2310
|
+
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
|
|
2311
|
+
propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:
|
|
2312
|
+
|
|
2313
|
+
var _name = getComponentName(type);
|
|
2314
|
+
|
|
2315
|
+
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {
|
|
2319
|
+
error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');
|
|
2320
|
+
}
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
/**
|
|
2324
|
+
* Given a fragment, validate that it can only be provided with fragment props
|
|
2325
|
+
* @param {ReactElement} fragment
|
|
2326
|
+
*/
|
|
2327
|
+
|
|
2328
|
+
|
|
2329
|
+
function validateFragmentProps(fragment) {
|
|
2330
|
+
{
|
|
2331
|
+
var keys = Object.keys(fragment.props);
|
|
2332
|
+
|
|
2333
|
+
for (var i = 0; i < keys.length; i++) {
|
|
2334
|
+
var key = keys[i];
|
|
2335
|
+
|
|
2336
|
+
if (key !== 'children' && key !== 'key') {
|
|
2337
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
2338
|
+
|
|
2339
|
+
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
|
|
2340
|
+
|
|
2341
|
+
setCurrentlyValidatingElement$1(null);
|
|
2342
|
+
break;
|
|
2343
|
+
}
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
if (fragment.ref !== null) {
|
|
2347
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
2348
|
+
|
|
2349
|
+
error('Invalid attribute `ref` supplied to `React.Fragment`.');
|
|
2350
|
+
|
|
2351
|
+
setCurrentlyValidatingElement$1(null);
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
2355
|
+
function createElementWithValidation(type, props, children) {
|
|
2356
|
+
var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
|
|
2357
|
+
// succeed and there will likely be errors in render.
|
|
2358
|
+
|
|
2359
|
+
if (!validType) {
|
|
2360
|
+
var info = '';
|
|
2361
|
+
|
|
2362
|
+
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
|
|
2363
|
+
info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
|
|
2367
|
+
|
|
2368
|
+
if (sourceInfo) {
|
|
2369
|
+
info += sourceInfo;
|
|
2370
|
+
} else {
|
|
2371
|
+
info += getDeclarationErrorAddendum();
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
var typeString;
|
|
2375
|
+
|
|
2376
|
+
if (type === null) {
|
|
2377
|
+
typeString = 'null';
|
|
2378
|
+
} else if (Array.isArray(type)) {
|
|
2379
|
+
typeString = 'array';
|
|
2380
|
+
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
2381
|
+
typeString = "<" + (getComponentName(type.type) || 'Unknown') + " />";
|
|
2382
|
+
info = ' Did you accidentally export a JSX literal instead of a component?';
|
|
2383
|
+
} else {
|
|
2384
|
+
typeString = typeof type;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
{
|
|
2388
|
+
error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
|
|
2393
|
+
// TODO: Drop this when these are no longer allowed as the type argument.
|
|
2394
|
+
|
|
2395
|
+
if (element == null) {
|
|
2396
|
+
return element;
|
|
2397
|
+
} // Skip key warning if the type isn't valid since our key validation logic
|
|
2398
|
+
// doesn't expect a non-string/function type and can throw confusing errors.
|
|
2399
|
+
// We don't want exception behavior to differ between dev and prod.
|
|
2400
|
+
// (Rendering will throw with a helpful message and as soon as the type is
|
|
2401
|
+
// fixed, the key warnings will appear.)
|
|
2402
|
+
|
|
2403
|
+
|
|
2404
|
+
if (validType) {
|
|
2405
|
+
for (var i = 2; i < arguments.length; i++) {
|
|
2406
|
+
validateChildKeys(arguments[i], type);
|
|
2407
|
+
}
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
if (type === exports.Fragment) {
|
|
2411
|
+
validateFragmentProps(element);
|
|
2412
|
+
} else {
|
|
2413
|
+
validatePropTypes(element);
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
return element;
|
|
2417
|
+
}
|
|
2418
|
+
var didWarnAboutDeprecatedCreateFactory = false;
|
|
2419
|
+
function createFactoryWithValidation(type) {
|
|
2420
|
+
var validatedFactory = createElementWithValidation.bind(null, type);
|
|
2421
|
+
validatedFactory.type = type;
|
|
2422
|
+
|
|
2423
|
+
{
|
|
2424
|
+
if (!didWarnAboutDeprecatedCreateFactory) {
|
|
2425
|
+
didWarnAboutDeprecatedCreateFactory = true;
|
|
2426
|
+
|
|
2427
|
+
warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');
|
|
2428
|
+
} // Legacy hook: remove it
|
|
2429
|
+
|
|
2430
|
+
|
|
2431
|
+
Object.defineProperty(validatedFactory, 'type', {
|
|
2432
|
+
enumerable: false,
|
|
2433
|
+
get: function () {
|
|
2434
|
+
warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');
|
|
2435
|
+
|
|
2436
|
+
Object.defineProperty(this, 'type', {
|
|
2437
|
+
value: type
|
|
2438
|
+
});
|
|
2439
|
+
return type;
|
|
2440
|
+
}
|
|
2441
|
+
});
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
return validatedFactory;
|
|
2445
|
+
}
|
|
2446
|
+
function cloneElementWithValidation(element, props, children) {
|
|
2447
|
+
var newElement = cloneElement.apply(this, arguments);
|
|
2448
|
+
|
|
2449
|
+
for (var i = 2; i < arguments.length; i++) {
|
|
2450
|
+
validateChildKeys(arguments[i], newElement.type);
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
validatePropTypes(newElement);
|
|
2454
|
+
return newElement;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
{
|
|
2458
|
+
|
|
2459
|
+
try {
|
|
2460
|
+
var frozenObject = Object.freeze({});
|
|
2461
|
+
/* eslint-disable no-new */
|
|
2462
|
+
|
|
2463
|
+
new Map([[frozenObject, null]]);
|
|
2464
|
+
new Set([frozenObject]);
|
|
2465
|
+
/* eslint-enable no-new */
|
|
2466
|
+
} catch (e) {
|
|
2467
|
+
}
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
var createElement$1 = createElementWithValidation ;
|
|
2471
|
+
var cloneElement$1 = cloneElementWithValidation ;
|
|
2472
|
+
var createFactory = createFactoryWithValidation ;
|
|
2473
|
+
var Children = {
|
|
2474
|
+
map: mapChildren,
|
|
2475
|
+
forEach: forEachChildren,
|
|
2476
|
+
count: countChildren,
|
|
2477
|
+
toArray: toArray,
|
|
2478
|
+
only: onlyChild
|
|
2479
|
+
};
|
|
2480
|
+
|
|
2481
|
+
exports.Children = Children;
|
|
2482
|
+
exports.Component = Component;
|
|
2483
|
+
exports.PureComponent = PureComponent;
|
|
2484
|
+
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
|
|
2485
|
+
exports.cloneElement = cloneElement$1;
|
|
2486
|
+
exports.createContext = createContext;
|
|
2487
|
+
exports.createElement = createElement$1;
|
|
2488
|
+
exports.createFactory = createFactory;
|
|
2489
|
+
exports.createRef = createRef;
|
|
2490
|
+
exports.forwardRef = forwardRef;
|
|
2491
|
+
exports.isValidElement = isValidElement;
|
|
2492
|
+
exports.lazy = lazy;
|
|
2493
|
+
exports.memo = memo;
|
|
2494
|
+
exports.useCallback = useCallback;
|
|
2495
|
+
exports.useContext = useContext;
|
|
2496
|
+
exports.useDebugValue = useDebugValue;
|
|
2497
|
+
exports.useEffect = useEffect;
|
|
2498
|
+
exports.useImperativeHandle = useImperativeHandle;
|
|
2499
|
+
exports.useLayoutEffect = useLayoutEffect;
|
|
2500
|
+
exports.useMemo = useMemo;
|
|
2501
|
+
exports.useReducer = useReducer;
|
|
2502
|
+
exports.useRef = useRef;
|
|
2503
|
+
exports.useState = useState;
|
|
2504
|
+
exports.version = ReactVersion;
|
|
2505
|
+
})();
|
|
2506
|
+
}
|
|
2507
|
+
}(react_development));
|
|
2508
|
+
|
|
2509
|
+
if (process.env.NODE_ENV === 'production') {
|
|
2510
|
+
react.exports = react_production_min;
|
|
2511
|
+
} else {
|
|
2512
|
+
react.exports = react_development;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
var React = react.exports;
|
|
2516
|
+
|
|
2517
|
+
var _excluded$n = ["width", "height"];
|
|
2518
|
+
var Neeto = function Neeto(_ref) {
|
|
2519
|
+
var _ref$width = _ref.width,
|
|
2520
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2521
|
+
_ref$height = _ref.height,
|
|
2522
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2523
|
+
props = _objectWithoutProperties(_ref, _excluded$n);
|
|
2524
|
+
|
|
2525
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2526
|
+
width: width,
|
|
2527
|
+
height: height,
|
|
2528
|
+
fill: "none",
|
|
2529
|
+
viewBox: "0 0 715 134"
|
|
2530
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2531
|
+
fill: "#11243E",
|
|
2532
|
+
fillRule: "evenodd",
|
|
2533
|
+
d: "M241.215 26.153h-50.229l24.853 24.852h25.376c15.993 0 28.943 12.887 28.943 28.765v53.617h24.983V79.77c0-29.62-24.152-53.617-53.926-53.617Zm-28.943 28.471-24.983-24.982v103.745h24.983V54.624Zm192.606 61.232-15.853-16.687-.95.912c-5.501 5.281-14.72 10.382-27.462 10.382-8.958 0-15.863-2.269-20.855-6.196-4.611-3.627-7.693-8.75-9.222-15.062h80.199l.059-1.25c.843-17.8-3.625-33.253-12.761-44.28-9.156-11.05-22.893-17.522-40.286-17.522-30.719 0-54.704 23.008-54.704 53.622 0 15.38 5.672 28.809 15.786 38.387 10.11 9.576 24.573 15.225 42.025 15.225 20.382 0 33.583-7.071 43.122-16.627l.902-.904Zm115.754 0-15.853-16.687-.95.912c-5.501 5.281-14.721 10.382-27.462 10.382-8.958 0-15.863-2.269-20.855-6.196-4.611-3.627-7.693-8.75-9.222-15.062h80.199l.059-1.25c.843-17.8-3.625-33.253-12.761-44.28-9.156-11.05-22.893-17.522-40.286-17.522-30.719 0-54.704 23.008-54.704 53.622 0 15.38 5.672 28.809 15.785 38.387 10.111 9.576 24.574 15.225 42.026 15.225 20.382 0 33.583-7.071 43.121-16.627l.903-.904Zm31.563-88.801h-17.644v22.902h17.644v39.991c0 16.147 2.372 27.155 9.092 34.059 6.731 6.914 17.496 9.38 33.329 9.38h4.63v-23.482h-1.31c-4.763 0-8.422-.182-11.253-.719-2.819-.535-4.693-1.4-5.997-2.675-1.3-1.272-2.176-3.093-2.718-5.829-.544-2.751-.727-6.309-.727-10.943V49.957h22.005V27.055h-22.005V0h-25.046v27.055ZM357.991 48.846c8.067 0 13.984 2.416 18.141 6.356 3.852 3.651 6.3 8.712 7.473 14.66h-53.08c1.531-6.515 4.65-11.602 9.009-15.131 4.703-3.808 10.953-5.885 18.457-5.885Zm115.754 0c8.067 0 13.984 2.416 18.141 6.356 3.852 3.651 6.3 8.712 7.473 14.66h-53.08c1.531-6.515 4.65-11.602 9.009-15.131 4.703-3.808 10.953-5.885 18.457-5.885Zm187.228.048c16.667 0 29.915 13.852 29.915 30.878 0 17.022-13.248 30.875-29.915 30.875-16.659 0-29.713-13.842-29.713-30.875 0-17.037 13.054-30.879 29.713-30.879Zm0-22.741c-29.911 0-53.825 23.512-53.825 53.619 0 29.9 23.911 53.615 53.825 53.615 29.907 0 54.027-23.708 54.027-53.615 0-30.114-24.123-53.619-54.027-53.619Z",
|
|
2534
|
+
clipRule: "evenodd"
|
|
2535
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2536
|
+
fill: "#0043AC",
|
|
2537
|
+
d: "M132.559 67.341c0-36.605-29.675-66.279-66.28-66.279H0v132.559h132.559v-66.28Z"
|
|
2538
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
2539
|
+
id: "Neeto_js__a",
|
|
2540
|
+
width: 133,
|
|
2541
|
+
height: 133,
|
|
2542
|
+
x: 0,
|
|
2543
|
+
y: 1,
|
|
2544
|
+
maskUnits: "userSpaceOnUse",
|
|
2545
|
+
style: {
|
|
2546
|
+
maskType: "alpha"
|
|
2547
|
+
}
|
|
2548
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2549
|
+
fill: "#0043AC",
|
|
2550
|
+
d: "M132.559 67.341c0-36.605-29.675-66.279-66.28-66.279H0v132.559h132.559v-66.28Z"
|
|
2551
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
2552
|
+
mask: "url(#Neeto_js__a)"
|
|
2553
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2554
|
+
fill: "url(#Neeto_js__b)",
|
|
2555
|
+
d: "M74.665 112.459c28.294 32.308 54.946 37.185 64.735 35.584v10.379H-2.566V74.686c13.955-.87 48.937 5.465 77.231 37.773Z"
|
|
2556
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
2557
|
+
fill: "#fff",
|
|
2558
|
+
d: "M23.945 32.936 49.11 58.099v55.92H23.945V32.936Z"
|
|
2559
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2560
|
+
fill: "#fff",
|
|
2561
|
+
d: "M51.905 55.303h13.98c9.265 0 16.775 7.511 16.775 16.776v41.94h25.164v-41.94c0-23.162-18.777-41.94-41.94-41.94H26.742l25.164 25.164Z"
|
|
2562
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
|
2563
|
+
id: "Neeto_js__b",
|
|
2564
|
+
cx: 0,
|
|
2565
|
+
cy: 0,
|
|
2566
|
+
r: 1,
|
|
2567
|
+
gradientTransform: "matrix(93.0246 100.17053 -169.70728 157.60076 27.77 74.61)",
|
|
2568
|
+
gradientUnits: "userSpaceOnUse"
|
|
2569
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2570
|
+
stopColor: "#0043AC"
|
|
2571
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2572
|
+
offset: 1,
|
|
2573
|
+
stopColor: "#3DB1CA",
|
|
2574
|
+
stopOpacity: 0.8
|
|
2575
|
+
}))));
|
|
2576
|
+
};
|
|
2577
|
+
|
|
2578
|
+
var _excluded$m = ["width", "height"];
|
|
2579
|
+
var NeetoCal = function NeetoCal(_ref) {
|
|
2580
|
+
var _ref$width = _ref.width,
|
|
2581
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2582
|
+
_ref$height = _ref.height,
|
|
2583
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2584
|
+
props = _objectWithoutProperties(_ref, _excluded$m);
|
|
2585
|
+
|
|
2586
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2587
|
+
width: width,
|
|
2588
|
+
height: height,
|
|
2589
|
+
fill: "none",
|
|
2590
|
+
viewBox: "0 0 369 64"
|
|
2591
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2592
|
+
fill: "url(#NeetoCal_js__a)",
|
|
2593
|
+
d: "M47.981 31.988c0-13.25-10.74-23.991-23.99-23.991H0v47.981h47.981v-23.99Z"
|
|
2594
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
2595
|
+
fill: "#fff",
|
|
2596
|
+
filter: "url(#NeetoCal_js__b)"
|
|
2597
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
2598
|
+
width: 2.877,
|
|
2599
|
+
height: 2.877,
|
|
2600
|
+
x: 16.937,
|
|
2601
|
+
y: 34.652,
|
|
2602
|
+
rx: 0.24
|
|
2603
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2604
|
+
width: 2.877,
|
|
2605
|
+
height: 2.877,
|
|
2606
|
+
x: 16.937,
|
|
2607
|
+
y: 38.394,
|
|
2608
|
+
rx: 0.24
|
|
2609
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2610
|
+
width: 2.877,
|
|
2611
|
+
height: 2.877,
|
|
2612
|
+
x: 20.676,
|
|
2613
|
+
y: 30.913,
|
|
2614
|
+
rx: 0.24
|
|
2615
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2616
|
+
width: 2.877,
|
|
2617
|
+
height: 2.877,
|
|
2618
|
+
x: 20.676,
|
|
2619
|
+
y: 34.652,
|
|
2620
|
+
rx: 0.24
|
|
2621
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2622
|
+
width: 2.877,
|
|
2623
|
+
height: 2.877,
|
|
2624
|
+
x: 20.676,
|
|
2625
|
+
y: 38.394,
|
|
2626
|
+
rx: 0.24
|
|
2627
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2628
|
+
width: 2.877,
|
|
2629
|
+
height: 2.877,
|
|
2630
|
+
x: 24.419,
|
|
2631
|
+
y: 30.913,
|
|
2632
|
+
rx: 0.24
|
|
2633
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2634
|
+
width: 2.877,
|
|
2635
|
+
height: 2.877,
|
|
2636
|
+
x: 28.161,
|
|
2637
|
+
y: 30.913,
|
|
2638
|
+
rx: 0.24
|
|
2639
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2640
|
+
width: 2.877,
|
|
2641
|
+
height: 2.877,
|
|
2642
|
+
x: 24.419,
|
|
2643
|
+
y: 34.652,
|
|
2644
|
+
rx: 0.24
|
|
2645
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2646
|
+
width: 2.877,
|
|
2647
|
+
height: 2.877,
|
|
2648
|
+
x: 24.419,
|
|
2649
|
+
y: 38.394,
|
|
2650
|
+
rx: 0.24
|
|
2651
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2652
|
+
width: 2.877,
|
|
2653
|
+
height: 2.877,
|
|
2654
|
+
x: 28.161,
|
|
2655
|
+
y: 34.652,
|
|
2656
|
+
rx: 0.24
|
|
2657
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2658
|
+
width: 2.158,
|
|
2659
|
+
height: 4.028,
|
|
2660
|
+
x: 17.946,
|
|
2661
|
+
y: 21.706,
|
|
2662
|
+
rx: 1.079
|
|
2663
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2664
|
+
width: 2.158,
|
|
2665
|
+
height: 4.028,
|
|
2666
|
+
x: 27.87,
|
|
2667
|
+
y: 21.706,
|
|
2668
|
+
rx: 1.079
|
|
2669
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2670
|
+
fillRule: "evenodd",
|
|
2671
|
+
d: "M27.442 23.433h-6.905v1.222a1.51 1.51 0 0 1-3.02 0v-1.222h-2.065a3.117 3.117 0 0 0-3.117 3.117v16.208a3.117 3.117 0 0 0 3.117 3.117h17.071a3.117 3.117 0 0 0 3.117-3.117V26.55a3.117 3.117 0 0 0-3.117-3.117h-2.06v1.222a1.51 1.51 0 0 1-3.021 0v-1.222Zm-11.75 5.753a.48.48 0 0 0-.479.48v12.851c0 .265.215.48.48.48h16.591a.48.48 0 0 0 .48-.48V29.666a.48.48 0 0 0-.48-.48H15.694Z",
|
|
2672
|
+
clipRule: "evenodd"
|
|
2673
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
2674
|
+
fill: "#11243E",
|
|
2675
|
+
fillRule: "evenodd",
|
|
2676
|
+
d: "M90.052 20.638h-16.84l8.332 8.194h8.508c5.363 0 9.705 4.25 9.705 9.485v17.68h8.376v-17.68c0-9.767-8.098-17.68-18.08-17.68Zm-9.704 9.388-8.376-8.238v34.209h8.376V30.026Zm64.577 20.19-5.315-5.502-.318.3c-1.845 1.742-4.936 3.424-9.208 3.424-3.003 0-5.318-.748-6.992-2.043-1.546-1.196-2.579-2.885-3.092-4.967h26.889l.02-.412c.283-5.87-1.215-10.965-4.279-14.6-3.069-3.644-7.675-5.778-13.507-5.778-10.299 0-18.341 7.586-18.341 17.681 0 5.071 1.902 9.5 5.293 12.658 3.39 3.157 8.239 5.02 14.09 5.02 6.834 0 11.26-2.332 14.458-5.483l.302-.298Zm38.81 0-5.315-5.502-.318.3c-1.845 1.742-4.936 3.424-9.208 3.424-3.003 0-5.318-.748-6.992-2.043-1.546-1.196-2.579-2.885-3.092-4.967h26.889l.02-.412c.283-5.87-1.215-10.965-4.279-14.6-3.069-3.644-7.675-5.778-13.507-5.778-10.299 0-18.341 7.586-18.341 17.681 0 5.071 1.902 9.5 5.293 12.658 3.39 3.157 8.239 5.02 14.09 5.02 6.834 0 11.26-2.332 14.458-5.483l.302-.298Zm10.583-29.281h-5.916v7.552h5.916v13.186c0 5.325.795 8.954 3.048 11.23 2.257 2.28 5.867 3.094 11.175 3.094h1.552v-7.743h-.439c-1.597 0-2.824-.06-3.773-.237-.945-.177-1.573-.462-2.01-.882-.436-.42-.73-1.02-.912-1.922-.182-.907-.243-2.08-.243-3.609V28.487h7.377v-7.552h-7.377v-8.921h-8.398v8.921Zm-65.113 7.185c2.705 0 4.689.797 6.083 2.096 1.291 1.204 2.112 2.873 2.505 4.834h-17.797c.514-2.148 1.559-3.825 3.021-4.99 1.577-1.255 3.672-1.94 6.188-1.94Zm38.81 0c2.705 0 4.689.797 6.083 2.096 1.291 1.204 2.112 2.873 2.505 4.834h-17.796c.513-2.148 1.558-3.825 3.02-4.99 1.577-1.255 3.672-1.94 6.188-1.94Zm62.774.016c5.588 0 10.03 4.568 10.03 10.182 0 5.613-4.442 10.18-10.03 10.18-5.585 0-9.962-4.564-9.962-10.18 0-5.618 4.377-10.182 9.962-10.182Zm0-7.498c-10.028 0-18.046 7.752-18.046 17.68 0 9.86 8.017 17.679 18.046 17.679 10.027 0 18.114-7.818 18.114-17.68 0-9.929-8.088-17.68-18.114-17.68Z",
|
|
2677
|
+
clipRule: "evenodd"
|
|
2678
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2679
|
+
fill: "#11243E",
|
|
2680
|
+
d: "M252.901 33.508c0-4.301.961-8.143 2.882-11.526 1.963-3.424 4.615-6.076 7.955-7.955 3.383-1.921 7.163-2.882 11.339-2.882 4.886 0 9.166 1.253 12.841 3.759 3.675 2.505 6.244 5.971 7.705 10.398h-10.085c-1.002-2.088-2.422-3.654-4.26-4.698-1.795-1.044-3.883-1.566-6.264-1.566-2.547 0-4.823.605-6.828 1.817-1.963 1.169-3.508 2.84-4.635 5.011-1.086 2.172-1.629 4.719-1.629 7.642 0 2.882.543 5.43 1.629 7.643 1.127 2.171 2.672 3.863 4.635 5.074 2.005 1.169 4.281 1.754 6.828 1.754 2.381 0 4.469-.522 6.264-1.566 1.838-1.086 3.258-2.673 4.26-4.761h10.085c-1.461 4.468-4.03 7.955-7.705 10.461-3.633 2.464-7.913 3.696-12.841 3.696-4.176 0-7.956-.94-11.339-2.819-3.34-1.921-5.992-4.573-7.955-7.956-1.921-3.382-2.882-7.224-2.882-11.526ZM300.193 37.956c0-3.508.689-6.62 2.067-9.334 1.42-2.714 3.32-4.802 5.7-6.264 2.422-1.462 5.116-2.192 8.081-2.192 2.589 0 4.844.521 6.765 1.566 1.963 1.044 3.529 2.36 4.699 3.946v-4.949h8.832v34.704h-8.832V50.36c-1.128 1.629-2.694 2.986-4.699 4.072-1.962 1.044-4.238 1.566-6.828 1.566-2.923 0-5.596-.752-8.018-2.255-2.38-1.504-4.28-3.613-5.7-6.327-1.378-2.756-2.067-5.91-2.067-9.46Zm27.312.125c0-2.13-.418-3.946-1.253-5.45-.835-1.545-1.963-2.714-3.383-3.508a8.867 8.867 0 0 0-4.573-1.253c-1.629 0-3.132.397-4.51 1.19-1.378.794-2.506 1.963-3.383 3.509-.835 1.503-1.253 3.299-1.253 5.387 0 2.088.418 3.925 1.253 5.512.877 1.546 2.005 2.736 3.383 3.571 1.42.835 2.923 1.253 4.51 1.253a9.224 9.224 0 0 0 4.573-1.19c1.42-.835 2.548-2.005 3.383-3.508.835-1.545 1.253-3.383 1.253-5.513ZM353.006 9.078v46.355h-8.77V9.078h8.77Z"
|
|
2681
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
2682
|
+
id: "NeetoCal_js__a",
|
|
2683
|
+
x1: 47.981,
|
|
2684
|
+
x2: 25.336,
|
|
2685
|
+
y1: 65.746,
|
|
2686
|
+
y2: 13.602,
|
|
2687
|
+
gradientUnits: "userSpaceOnUse"
|
|
2688
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2689
|
+
stopColor: "#EE4D5F"
|
|
2690
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2691
|
+
offset: 1,
|
|
2692
|
+
stopColor: "#FFCDA5"
|
|
2693
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2694
|
+
id: "NeetoCal_js__b",
|
|
2695
|
+
width: 29.303,
|
|
2696
|
+
height: 31.166,
|
|
2697
|
+
x: 12.335,
|
|
2698
|
+
y: 21.706,
|
|
2699
|
+
colorInterpolationFilters: "sRGB",
|
|
2700
|
+
filterUnits: "userSpaceOnUse"
|
|
2701
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2702
|
+
floodOpacity: 0,
|
|
2703
|
+
result: "BackgroundImageFix"
|
|
2704
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2705
|
+
in: "SourceAlpha",
|
|
2706
|
+
result: "hardAlpha",
|
|
2707
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2708
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2709
|
+
dx: 2.999,
|
|
2710
|
+
dy: 3.998
|
|
2711
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2712
|
+
stdDeviation: 1.499
|
|
2713
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
2714
|
+
in2: "hardAlpha",
|
|
2715
|
+
operator: "out"
|
|
2716
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2717
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
2718
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2719
|
+
in2: "BackgroundImageFix",
|
|
2720
|
+
result: "effect1_dropShadow_3688_21317"
|
|
2721
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2722
|
+
in: "SourceGraphic",
|
|
2723
|
+
in2: "effect1_dropShadow_3688_21317",
|
|
2724
|
+
result: "shape"
|
|
2725
|
+
}))));
|
|
2726
|
+
};
|
|
2727
|
+
|
|
2728
|
+
var _excluded$l = ["width", "height"];
|
|
2729
|
+
var NeetoChangelog = function NeetoChangelog(_ref) {
|
|
2730
|
+
var _ref$width = _ref.width,
|
|
2731
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2732
|
+
_ref$height = _ref.height,
|
|
2733
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2734
|
+
props = _objectWithoutProperties(_ref, _excluded$l);
|
|
2735
|
+
|
|
2736
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2737
|
+
width: width,
|
|
2738
|
+
height: height,
|
|
2739
|
+
fill: "none",
|
|
2740
|
+
viewBox: "0 0 604 74"
|
|
2741
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2742
|
+
fill: "url(#NeetoChangelog_js__a)",
|
|
2743
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
2744
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
2745
|
+
width: 2.916,
|
|
2746
|
+
height: 18.898,
|
|
2747
|
+
x: 30.25,
|
|
2748
|
+
y: 25.11,
|
|
2749
|
+
fill: "#fff",
|
|
2750
|
+
rx: 1.458
|
|
2751
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2752
|
+
fill: "#fff",
|
|
2753
|
+
fillRule: "evenodd",
|
|
2754
|
+
d: "M34.904 36.99a1.816 1.816 0 0 0 2.468-1.696v-1.358a1.816 1.816 0 0 0-2.468-1.696v4.75Z",
|
|
2755
|
+
clipRule: "evenodd"
|
|
2756
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2757
|
+
fill: "#fff",
|
|
2758
|
+
d: "M14.665 36.893c-.039-.334.02-.672.17-.973.818-1.65 3.304-1.068 3.304.774v8.17a1.275 1.275 0 0 1-2.541.146l-.933-8.117Z"
|
|
2759
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2760
|
+
fill: "#fff",
|
|
2761
|
+
fillRule: "evenodd",
|
|
2762
|
+
d: "M11.027 30.7a.935.935 0 0 0-.74.915v6.32c0 .449.318.834.758.918l7.063 1.35V29.198L11.027 30.7Zm8.736-1.852v11.67l10.487 2.004V26.624l-10.487 2.224Z",
|
|
2763
|
+
clipRule: "evenodd"
|
|
2764
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2765
|
+
fill: "#11243E",
|
|
2766
|
+
fillRule: "evenodd",
|
|
2767
|
+
d: "M90.087 20.996H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V56.37h8.38V38.682c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.147v34.222h8.38V30.387Zm64.603 20.199-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.886-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.886-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.238-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V28.849h7.381v-7.555h-7.381V12.37h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686 10.031 0 18.121-7.821 18.121-17.686 0-9.934-8.091-17.687-18.121-17.687Z",
|
|
2768
|
+
clipRule: "evenodd"
|
|
2769
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2770
|
+
fill: "#11243E",
|
|
2771
|
+
d: "M253.193 34.436c0-4.303.961-8.147 2.883-11.531 1.964-3.426 4.616-6.079 7.959-7.959 3.384-1.921 7.165-2.882 11.342-2.882 4.888 0 9.171 1.253 12.847 3.76 3.676 2.506 6.246 5.974 7.708 10.402h-10.089c-1.003-2.089-2.423-3.655-4.262-4.7-1.796-1.044-3.885-1.566-6.266-1.566-2.549 0-4.826.605-6.831 1.817-1.964 1.17-3.509 2.84-4.637 5.013-1.087 2.173-1.63 4.721-1.63 7.646 0 2.882.543 5.43 1.63 7.645 1.128 2.172 2.673 3.864 4.637 5.076 2.005 1.17 4.282 1.755 6.831 1.755 2.381 0 4.47-.523 6.266-1.567 1.839-1.086 3.259-2.674 4.262-4.763h10.089c-1.462 4.47-4.032 7.959-7.708 10.466-3.635 2.465-7.917 3.697-12.847 3.697-4.177 0-7.958-.94-11.342-2.82-3.343-1.922-5.995-4.575-7.959-7.959-1.922-3.384-2.883-7.227-2.883-11.53ZM322.311 21.15c2.632 0 4.971.585 7.019 1.755 2.047 1.128 3.634 2.82 4.762 5.076 1.17 2.214 1.755 4.888 1.755 8.021V56.37h-8.773V37.193c0-2.757-.69-4.867-2.068-6.33-1.379-1.503-3.259-2.255-5.64-2.255-2.424 0-4.345.752-5.766 2.256-1.378 1.462-2.068 3.572-2.068 6.329v19.176h-8.773V9.996h8.773v15.98c1.128-1.504 2.632-2.674 4.512-3.51 1.88-.877 3.969-1.316 6.267-1.316ZM341.267 38.885c0-3.51.69-6.622 2.068-9.337 1.421-2.716 3.322-4.805 5.703-6.267 2.423-1.462 5.118-2.193 8.084-2.193 2.59 0 4.846.522 6.768 1.566 1.963 1.045 3.53 2.36 4.7 3.948v-4.95h8.836v34.717h-8.836v-5.076c-1.128 1.63-2.695 2.987-4.7 4.073-1.964 1.045-4.241 1.567-6.831 1.567-2.924 0-5.598-.752-8.021-2.256-2.381-1.504-4.282-3.614-5.703-6.33-1.378-2.757-2.068-5.91-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.253-5.452-.836-1.545-1.964-2.715-3.384-3.51a8.875 8.875 0 0 0-4.575-1.252 8.887 8.887 0 0 0-4.512 1.19c-1.379.794-2.507 1.964-3.384 3.51-.836 1.504-1.253 3.3-1.253 5.389 0 2.089.417 3.927 1.253 5.515.877 1.545 2.005 2.736 3.384 3.572 1.42.835 2.924 1.253 4.512 1.253a9.232 9.232 0 0 0 4.575-1.19c1.42-.836 2.548-2.006 3.384-3.51.835-1.546 1.253-3.384 1.253-5.515ZM404.567 21.15c4.136 0 7.478 1.316 10.026 3.948 2.549 2.59 3.823 6.225 3.823 10.904V56.37h-8.773V37.193c0-2.757-.69-4.867-2.068-6.33-1.379-1.503-3.259-2.255-5.64-2.255-2.424 0-4.345.752-5.766 2.256-1.378 1.462-2.068 3.572-2.068 6.329v19.176h-8.773V21.652h8.773v4.324c1.17-1.504 2.653-2.674 4.45-3.51 1.838-.877 3.843-1.316 6.016-1.316ZM439.691 21.088c2.59 0 4.867.522 6.831 1.566 1.963 1.003 3.509 2.319 4.637 3.948v-4.95h8.836V56.62c0 3.217-.648 6.078-1.943 8.585-1.295 2.548-3.238 4.554-5.828 6.016-2.59 1.504-5.723 2.256-9.4 2.256-4.93 0-8.982-1.149-12.157-3.447-3.133-2.297-4.909-5.43-5.327-9.4h8.711c.459 1.588 1.441 2.841 2.945 3.76 1.546.961 3.405 1.442 5.578 1.442 2.548 0 4.616-.773 6.204-2.32 1.587-1.503 2.381-3.8 2.381-6.892v-5.39c-1.128 1.63-2.695 2.987-4.7 4.074-1.964 1.086-4.22 1.629-6.768 1.629-2.925 0-5.598-.752-8.021-2.256-2.424-1.504-4.345-3.614-5.766-6.33-1.378-2.757-2.068-5.91-2.068-9.462 0-3.51.69-6.622 2.068-9.337 1.421-2.716 3.322-4.805 5.703-6.267 2.423-1.462 5.118-2.193 8.084-2.193Zm11.468 17.922c0-2.13-.418-3.948-1.253-5.452-.836-1.545-1.964-2.715-3.384-3.51a8.875 8.875 0 0 0-4.575-1.252 8.887 8.887 0 0 0-4.512 1.19c-1.379.794-2.507 1.964-3.384 3.51-.836 1.504-1.253 3.3-1.253 5.389 0 2.089.417 3.927 1.253 5.515.877 1.545 2.005 2.736 3.384 3.572 1.42.835 2.924 1.253 4.512 1.253a9.232 9.232 0 0 0 4.575-1.19c1.42-.836 2.548-2.006 3.384-3.51.835-1.546 1.253-3.384 1.253-5.515ZM500.17 38.258c0 1.254-.083 2.382-.25 3.384h-25.38c.209 2.507 1.086 4.47 2.632 5.89 1.545 1.421 3.446 2.132 5.702 2.132 3.259 0 5.578-1.4 6.956-4.2h9.463c-1.003 3.343-2.925 6.1-5.765 8.273-2.841 2.13-6.33 3.196-10.466 3.196-3.342 0-6.35-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.849-2.193-9.4 0-3.593.731-6.747 2.193-9.462 1.462-2.716 3.51-4.805 6.142-6.267 2.632-1.462 5.661-2.193 9.086-2.193 3.301 0 6.246.71 8.836 2.13 2.632 1.42 4.659 3.447 6.079 6.079 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.086-2.506c-.042-2.256-.857-4.053-2.444-5.39-1.588-1.378-3.531-2.068-5.828-2.068-2.173 0-4.011.669-5.515 2.006-1.462 1.295-2.36 3.112-2.695 5.452h16.482ZM514.681 9.996v46.373h-8.774V9.996h8.774ZM538.098 56.933c-3.342 0-6.35-.731-9.024-2.193-2.674-1.504-4.783-3.614-6.329-6.33-1.504-2.715-2.256-5.849-2.256-9.4 0-3.55.773-6.684 2.318-9.4 1.588-2.715 3.74-4.804 6.455-6.266 2.716-1.504 5.745-2.256 9.087-2.256 3.342 0 6.371.752 9.086 2.256 2.716 1.462 4.847 3.55 6.392 6.266 1.588 2.716 2.382 5.85 2.382 9.4 0 3.551-.815 6.685-2.444 9.4a16.653 16.653 0 0 1-6.518 6.33c-2.715 1.462-5.765 2.193-9.149 2.193Zm0-7.645a9.143 9.143 0 0 0 4.449-1.128c1.421-.794 2.549-1.964 3.384-3.51.836-1.545 1.254-3.425 1.254-5.64 0-3.3-.878-5.828-2.632-7.582-1.713-1.797-3.823-2.695-6.33-2.695-2.506 0-4.616.898-6.329 2.695-1.671 1.754-2.507 4.282-2.507 7.582s.815 5.85 2.444 7.646c1.672 1.754 3.76 2.632 6.267 2.632ZM575.576 21.088c2.591 0 4.867.522 6.831 1.566 1.964 1.003 3.509 2.319 4.637 3.948v-4.95h8.836V56.62c0 3.217-.647 6.078-1.942 8.585-1.295 2.548-3.238 4.554-5.828 6.016-2.591 1.504-5.724 2.256-9.4 2.256-4.93 0-8.983-1.149-12.158-3.447-3.133-2.297-4.909-5.43-5.326-9.4h8.71c.46 1.588 1.442 2.841 2.946 3.76 1.545.961 3.405 1.442 5.577 1.442 2.548 0 4.616-.773 6.204-2.32 1.588-1.503 2.381-3.8 2.381-6.892v-5.39c-1.128 1.63-2.694 2.987-4.7 4.074-1.963 1.086-4.219 1.629-6.768 1.629-2.924 0-5.598-.752-8.021-2.256-2.423-1.504-4.345-3.614-5.765-6.33-1.379-2.757-2.068-5.91-2.068-9.462 0-3.51.689-6.622 2.068-9.337 1.42-2.716 3.321-4.805 5.702-6.267 2.423-1.462 5.118-2.193 8.084-2.193Zm11.468 17.922c0-2.13-.417-3.948-1.253-5.452-.836-1.545-1.964-2.715-3.384-3.51a8.87 8.87 0 0 0-4.575-1.252 8.887 8.887 0 0 0-4.512 1.19c-1.378.794-2.506 1.964-3.384 3.51-.835 1.504-1.253 3.3-1.253 5.389 0 2.089.418 3.927 1.253 5.515.878 1.545 2.006 2.736 3.384 3.572 1.421.835 2.925 1.253 4.512 1.253 1.63 0 3.155-.397 4.575-1.19 1.42-.836 2.548-2.006 3.384-3.51.836-1.546 1.253-3.384 1.253-5.515Z"
|
|
2772
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
2773
|
+
id: "NeetoChangelog_js__a",
|
|
2774
|
+
x1: 51.771,
|
|
2775
|
+
x2: 7.543,
|
|
2776
|
+
y1: 71.224,
|
|
2777
|
+
y2: 4.71,
|
|
2778
|
+
gradientUnits: "userSpaceOnUse"
|
|
2779
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2780
|
+
stopColor: "#FFA768"
|
|
2781
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2782
|
+
offset: 0.699,
|
|
2783
|
+
stopColor: "#FF8787"
|
|
2784
|
+
}))));
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
var _excluded$k = ["width", "height"];
|
|
2788
|
+
var NeetoChat = function NeetoChat(_ref) {
|
|
2789
|
+
var _ref$width = _ref.width,
|
|
2790
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2791
|
+
_ref$height = _ref.height,
|
|
2792
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2793
|
+
props = _objectWithoutProperties(_ref, _excluded$k);
|
|
2794
|
+
|
|
2795
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2796
|
+
width: width,
|
|
2797
|
+
height: height,
|
|
2798
|
+
fill: "none",
|
|
2799
|
+
viewBox: "0 0 412 63"
|
|
2800
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2801
|
+
fill: "url(#NeetoChat_js__a)",
|
|
2802
|
+
d: "M48 31C48 17.745 37.255 7 24 7H0v48h48V31Z"
|
|
2803
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
2804
|
+
filter: "url(#NeetoChat_js__b)"
|
|
2805
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2806
|
+
fill: "#fff",
|
|
2807
|
+
d: "M21.993 22.797h4.618c2.45 0 4.798.945 6.53 2.628a8.847 8.847 0 0 1 2.705 6.345c0 2.38-.973 4.663-2.705 6.346a9.374 9.374 0 0 1-6.53 2.628v3.926c-5.772-2.243-13.853-5.608-13.853-12.9 0-1.178.239-2.345.703-3.434a8.96 8.96 0 0 1 2.002-2.91 9.258 9.258 0 0 1 2.996-1.946 9.471 9.471 0 0 1 3.534-.683Z"
|
|
2808
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
2809
|
+
fill: "#11243E",
|
|
2810
|
+
fillRule: "evenodd",
|
|
2811
|
+
d: "M90.087 19.627H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V55h8.38V37.313c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 20.778V55h8.38V29.019Zm64.603 20.198-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.192c0 5.326.796 8.958 3.05 11.235 2.258 2.28 5.868 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V27.479h7.381v-7.555h-7.381V11h-8.401v8.924Zm-65.138 7.189c2.706 0 4.691.797 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.826 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.588 0-9.966-4.566-9.966-10.185 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 55 249 47.18 249 37.314c0-9.933-8.091-17.687-18.121-17.687Z",
|
|
2812
|
+
clipRule: "evenodd"
|
|
2813
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2814
|
+
fill: "#11243E",
|
|
2815
|
+
d: "M253 32.503c0-4.303.961-8.147 2.883-11.531 1.963-3.426 4.616-6.079 7.958-7.959 3.384-1.921 7.165-2.882 11.343-2.882 4.888 0 9.17 1.253 12.847 3.76 3.676 2.506 6.245 5.974 7.708 10.402h-10.09c-1.002-2.088-2.423-3.655-4.261-4.7-1.796-1.044-3.885-1.566-6.267-1.566-2.548 0-4.825.605-6.83 1.817-1.964 1.17-3.51 2.84-4.638 5.013-1.086 2.173-1.629 4.721-1.629 7.646 0 2.882.543 5.43 1.629 7.645 1.128 2.172 2.674 3.864 4.638 5.076 2.005 1.17 4.282 1.755 6.83 1.755 2.382 0 4.471-.523 6.267-1.567 1.838-1.086 3.259-2.674 4.261-4.763h10.09c-1.463 4.47-4.032 7.959-7.708 10.466-3.635 2.465-7.917 3.697-12.847 3.697-4.178 0-7.959-.94-11.343-2.82-3.342-1.922-5.995-4.575-7.958-7.959-1.922-3.384-2.883-7.227-2.883-11.53ZM322.118 19.217c2.632 0 4.971.585 7.018 1.755 2.047 1.128 3.635 2.82 4.763 5.076 1.17 2.214 1.755 4.888 1.755 8.021v20.367h-8.774V35.26c0-2.757-.689-4.867-2.068-6.33-1.378-1.503-3.258-2.255-5.64-2.255-2.423 0-4.345.752-5.765 2.256-1.379 1.462-2.068 3.572-2.068 6.329v19.176h-8.773V8.063h8.773v15.98c1.128-1.504 2.632-2.674 4.512-3.51 1.88-.877 3.969-1.316 6.267-1.316ZM341.074 36.952c0-3.51.689-6.622 2.068-9.337 1.42-2.716 3.321-4.805 5.703-6.267 2.423-1.462 5.117-2.193 8.084-2.193 2.59 0 4.846.522 6.768 1.566 1.963 1.045 3.53 2.36 4.7 3.948v-4.95h8.836v34.717h-8.836V49.36c-1.128 1.63-2.695 2.987-4.7 4.073-1.964 1.045-4.241 1.567-6.831 1.567-2.925 0-5.598-.752-8.021-2.256-2.382-1.504-4.283-3.614-5.703-6.33-1.379-2.757-2.068-5.91-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.254-5.452-.835-1.545-1.963-2.715-3.384-3.509a8.869 8.869 0 0 0-4.574-1.253c-1.63 0-3.134.397-4.512 1.19-1.379.794-2.507 1.964-3.384 3.51-.836 1.504-1.254 3.3-1.254 5.389 0 2.089.418 3.927 1.254 5.515.877 1.546 2.005 2.736 3.384 3.572 1.42.835 2.924 1.253 4.512 1.253a9.226 9.226 0 0 0 4.574-1.19c1.421-.836 2.549-2.006 3.384-3.51.836-1.546 1.254-3.384 1.254-5.515ZM395.349 26.925V43.72c0 1.17.272 2.026.815 2.57.585.5 1.546.751 2.883.751h4.073v7.395h-5.515c-7.394 0-11.092-3.593-11.092-10.779V26.925h-4.136V19.72h4.136v-8.586h8.836v8.586h7.771v7.206h-7.771Z"
|
|
2816
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
2817
|
+
id: "NeetoChat_js__a",
|
|
2818
|
+
x1: 25.57,
|
|
2819
|
+
x2: 25.346,
|
|
2820
|
+
y1: 74.29,
|
|
2821
|
+
y2: 12.607,
|
|
2822
|
+
gradientUnits: "userSpaceOnUse"
|
|
2823
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2824
|
+
stopColor: "#A368DC"
|
|
2825
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2826
|
+
offset: 1,
|
|
2827
|
+
stopColor: "#8886FF"
|
|
2828
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2829
|
+
id: "NeetoChat_js__b",
|
|
2830
|
+
width: 37.668,
|
|
2831
|
+
height: 36.453,
|
|
2832
|
+
x: 5.468,
|
|
2833
|
+
y: 18.423,
|
|
2834
|
+
colorInterpolationFilters: "sRGB",
|
|
2835
|
+
filterUnits: "userSpaceOnUse"
|
|
2836
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2837
|
+
floodOpacity: 0,
|
|
2838
|
+
result: "BackgroundImageFix"
|
|
2839
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2840
|
+
in: "SourceAlpha",
|
|
2841
|
+
result: "hardAlpha",
|
|
2842
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2843
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2844
|
+
dy: 2.916
|
|
2845
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2846
|
+
stdDeviation: 3.645
|
|
2847
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
2848
|
+
in2: "hardAlpha",
|
|
2849
|
+
operator: "out"
|
|
2850
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2851
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"
|
|
2852
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2853
|
+
in2: "BackgroundImageFix",
|
|
2854
|
+
result: "effect1_dropShadow_3688_21375"
|
|
2855
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2856
|
+
in: "SourceGraphic",
|
|
2857
|
+
in2: "effect1_dropShadow_3688_21375",
|
|
2858
|
+
result: "shape"
|
|
2859
|
+
}))));
|
|
2860
|
+
};
|
|
2861
|
+
|
|
2862
|
+
var _excluded$j = ["width", "height"];
|
|
2863
|
+
var NeetoCi = function NeetoCi(_ref) {
|
|
2864
|
+
var _ref$width = _ref.width,
|
|
2865
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2866
|
+
_ref$height = _ref.height,
|
|
2867
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2868
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
|
2869
|
+
|
|
2870
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2871
|
+
width: width,
|
|
2872
|
+
height: height,
|
|
2873
|
+
fill: "none",
|
|
2874
|
+
viewBox: "0 0 320 65"
|
|
2875
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2876
|
+
fill: "url(#NeetoCi_js__a)",
|
|
2877
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
2878
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
2879
|
+
filter: "url(#NeetoCi_js__b)"
|
|
2880
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2881
|
+
fill: "#fff",
|
|
2882
|
+
d: "M35.356 23.395h-22.71a.986.986 0 0 0-.988.988v22.71c0 .547.441.988.987.988h22.711a.986.986 0 0 0 .987-.987V24.383a.986.986 0 0 0-.987-.988ZM24.034 35.927l-5.924 4.968a.245.245 0 0 1-.404-.189v-1.934a.25.25 0 0 1 .09-.189l3.387-2.845-3.388-2.845a.235.235 0 0 1-.09-.188V30.77c0-.21.245-.324.405-.188l5.925 4.965c.12.099.12.28 0 .38Zm6.261 4.78c0 .135-.105.246-.231.246h-5.709c-.126 0-.231-.11-.231-.247v-1.48c0-.136.105-.248.231-.248h5.709c.127 0 .231.111.231.247v1.481Z"
|
|
2883
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
2884
|
+
fill: "#11243E",
|
|
2885
|
+
fillRule: "evenodd",
|
|
2886
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
2887
|
+
clipRule: "evenodd"
|
|
2888
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2889
|
+
fill: "#11243E",
|
|
2890
|
+
d: "M253.193 34.368c0-4.304.961-8.147 2.883-11.531 1.964-3.426 4.616-6.079 7.959-7.959 3.384-1.921 7.165-2.882 11.342-2.882 4.888 0 9.171 1.253 12.847 3.76 3.676 2.506 6.246 5.974 7.708 10.402h-10.089c-1.003-2.089-2.423-3.655-4.262-4.7-1.796-1.044-3.885-1.566-6.266-1.566-2.549 0-4.826.605-6.831 1.817-1.964 1.17-3.509 2.84-4.637 5.013-1.087 2.173-1.63 4.721-1.63 7.646 0 2.882.543 5.43 1.63 7.645 1.128 2.172 2.673 3.864 4.637 5.076 2.005 1.17 4.282 1.755 6.831 1.755 2.381 0 4.47-.523 6.266-1.567 1.839-1.086 3.259-2.674 4.262-4.763h10.089c-1.462 4.47-4.032 7.959-7.708 10.466-3.635 2.465-7.917 3.697-12.847 3.697-4.177 0-7.958-.94-11.342-2.82-3.343-1.922-5.995-4.575-7.959-7.959-1.922-3.384-2.883-7.227-2.883-11.53ZM311.532 12.56V56.3h-8.773V12.56h8.773Z"
|
|
2891
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
2892
|
+
id: "NeetoCi_js__a",
|
|
2893
|
+
x1: 48,
|
|
2894
|
+
x2: -27.429,
|
|
2895
|
+
y1: 66.767,
|
|
2896
|
+
y2: -20.662,
|
|
2897
|
+
gradientUnits: "userSpaceOnUse"
|
|
2898
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2899
|
+
stopColor: "#FF85B8"
|
|
2900
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2901
|
+
offset: 1,
|
|
2902
|
+
stopColor: "#EF8F59"
|
|
2903
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2904
|
+
id: "NeetoCi_js__b",
|
|
2905
|
+
width: 30.686,
|
|
2906
|
+
height: 31.686,
|
|
2907
|
+
x: 11.658,
|
|
2908
|
+
y: 23.395,
|
|
2909
|
+
colorInterpolationFilters: "sRGB",
|
|
2910
|
+
filterUnits: "userSpaceOnUse"
|
|
2911
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2912
|
+
floodOpacity: 0,
|
|
2913
|
+
result: "BackgroundImageFix"
|
|
2914
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2915
|
+
in: "SourceAlpha",
|
|
2916
|
+
result: "hardAlpha",
|
|
2917
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
2918
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
2919
|
+
dx: 3,
|
|
2920
|
+
dy: 4
|
|
2921
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
2922
|
+
stdDeviation: 1.5
|
|
2923
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
2924
|
+
in2: "hardAlpha",
|
|
2925
|
+
operator: "out"
|
|
2926
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2927
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
2928
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2929
|
+
in2: "BackgroundImageFix",
|
|
2930
|
+
result: "effect1_dropShadow_3688_21636"
|
|
2931
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
2932
|
+
in: "SourceGraphic",
|
|
2933
|
+
in2: "effect1_dropShadow_3688_21636",
|
|
2934
|
+
result: "shape"
|
|
2935
|
+
}))));
|
|
2936
|
+
};
|
|
2937
|
+
|
|
2938
|
+
var _excluded$i = ["width", "height"];
|
|
2939
|
+
var NeetoCourse = function NeetoCourse(_ref) {
|
|
2940
|
+
var _ref$width = _ref.width,
|
|
2941
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
2942
|
+
_ref$height = _ref.height,
|
|
2943
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
2944
|
+
props = _objectWithoutProperties(_ref, _excluded$i);
|
|
2945
|
+
|
|
2946
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
2947
|
+
width: width,
|
|
2948
|
+
height: height,
|
|
2949
|
+
fill: "none",
|
|
2950
|
+
viewBox: "0 0 481 65"
|
|
2951
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
2952
|
+
fill: "url(#NeetoCourse_js__a)",
|
|
2953
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
2954
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
2955
|
+
fill: "#fff",
|
|
2956
|
+
filter: "url(#NeetoCourse_js__b)"
|
|
2957
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
2958
|
+
fillRule: "evenodd",
|
|
2959
|
+
d: "M24.003 18.938c6.438 0 11.657 5.22 11.657 11.657v11.657H12.346V18.938h11.657Zm5.207 5.13c-.644 0-1.166.521-1.166 1.165v13.211a1.166 1.166 0 1 0 2.332 0V25.233c0-.644-.522-1.166-1.166-1.166Z",
|
|
2960
|
+
clipRule: "evenodd"
|
|
2961
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2962
|
+
fillRule: "evenodd",
|
|
2963
|
+
d: "M18.78 41.319c0-.515.418-.933.933-.933h12.45a3.497 3.497 0 0 1 0 6.994H12.346v-2.602h1.865v.737h17.952a1.632 1.632 0 1 0 0-3.264h-12.45a.933.933 0 0 1-.932-.932Z",
|
|
2964
|
+
clipRule: "evenodd"
|
|
2965
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2966
|
+
d: "M34.105 40.853h1.555v3.109h-1.554v-3.109Z"
|
|
2967
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
2968
|
+
fill: "#11243E",
|
|
2969
|
+
fillRule: "evenodd",
|
|
2970
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
2971
|
+
clipRule: "evenodd"
|
|
2972
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2973
|
+
fill: "#11243E",
|
|
2974
|
+
d: "M253.193 34.368c0-4.304.961-8.147 2.883-11.531 1.964-3.426 4.616-6.079 7.959-7.959 3.384-1.921 7.165-2.882 11.342-2.882 4.888 0 9.171 1.253 12.847 3.76 3.676 2.506 6.246 5.974 7.708 10.402h-10.089c-1.003-2.089-2.423-3.655-4.262-4.7-1.796-1.044-3.885-1.566-6.266-1.566-2.549 0-4.826.605-6.831 1.817-1.964 1.17-3.509 2.84-4.637 5.013-1.087 2.173-1.63 4.721-1.63 7.646 0 2.882.543 5.43 1.63 7.645 1.128 2.172 2.673 3.864 4.637 5.076 2.005 1.17 4.282 1.755 6.831 1.755 2.381 0 4.47-.523 6.266-1.567 1.839-1.086 3.259-2.674 4.262-4.763h10.089c-1.462 4.47-4.032 7.959-7.708 10.466-3.635 2.465-7.917 3.697-12.847 3.697-4.177 0-7.958-.94-11.342-2.82-3.343-1.922-5.995-4.575-7.959-7.959-1.922-3.384-2.883-7.227-2.883-11.53ZM318.175 56.865c-3.342 0-6.35-.731-9.024-2.193-2.674-1.504-4.784-3.614-6.329-6.33-1.504-2.715-2.256-5.849-2.256-9.4 0-3.55.772-6.684 2.318-9.4 1.588-2.715 3.739-4.804 6.455-6.266 2.715-1.504 5.744-2.256 9.087-2.256 3.342 0 6.371.752 9.086 2.256 2.716 1.462 4.846 3.55 6.392 6.266 1.588 2.716 2.382 5.85 2.382 9.4 0 3.551-.815 6.685-2.444 9.4a16.653 16.653 0 0 1-6.518 6.33c-2.715 1.462-5.765 2.193-9.149 2.193Zm0-7.645a9.145 9.145 0 0 0 4.449-1.128c1.421-.794 2.549-1.964 3.384-3.51.836-1.546 1.254-3.425 1.254-5.64 0-3.3-.878-5.828-2.632-7.582-1.713-1.797-3.823-2.695-6.33-2.695-2.506 0-4.616.898-6.329 2.695-1.671 1.754-2.507 4.282-2.507 7.582s.815 5.85 2.444 7.646c1.671 1.754 3.76 2.632 6.267 2.632ZM374.829 21.584V56.3h-8.836v-4.387c-1.128 1.504-2.611 2.695-4.449 3.572-1.797.836-3.76 1.254-5.891 1.254-2.715 0-5.118-.564-7.206-1.692-2.089-1.17-3.74-2.862-4.951-5.076-1.17-2.256-1.755-4.93-1.755-8.022V21.584h8.773v19.113c0 2.757.69 4.888 2.068 6.392 1.379 1.462 3.259 2.193 5.641 2.193 2.423 0 4.324-.73 5.702-2.193 1.379-1.504 2.068-3.635 2.068-6.392V21.584h8.836ZM391.592 26.973c1.128-1.838 2.59-3.28 4.387-4.324 1.838-1.044 3.927-1.567 6.266-1.567v9.212h-2.318c-2.758 0-4.846.648-6.267 1.943-1.379 1.295-2.068 3.551-2.068 6.768V56.3h-8.773V21.584h8.773v5.389ZM420.773 56.865c-2.84 0-5.389-.501-7.645-1.504-2.256-1.044-4.052-2.444-5.389-4.199-1.295-1.754-2.006-3.697-2.131-5.828h8.836c.167 1.337.815 2.444 1.943 3.322 1.17.877 2.611 1.316 4.324 1.316 1.671 0 2.966-.335 3.885-1.003.961-.669 1.441-1.525 1.441-2.57 0-1.127-.584-1.963-1.754-2.506-1.128-.585-2.946-1.212-5.452-1.88-2.59-.627-4.721-1.274-6.392-1.943-1.63-.668-3.05-1.692-4.262-3.07-1.169-1.38-1.754-3.238-1.754-5.578a9.12 9.12 0 0 1 1.629-5.264c1.128-1.587 2.716-2.84 4.763-3.76 2.089-.919 4.533-1.378 7.332-1.378 4.136 0 7.436 1.044 9.901 3.133 2.465 2.047 3.823 4.825 4.073 8.335h-8.397c-.125-1.38-.71-2.465-1.755-3.26-1.002-.835-2.36-1.252-4.073-1.252-1.587 0-2.82.292-3.697.877-.836.585-1.254 1.4-1.254 2.444 0 1.17.585 2.068 1.755 2.695 1.17.585 2.987 1.19 5.452 1.817 2.507.627 4.575 1.274 6.204 1.943 1.629.668 3.029 1.712 4.199 3.133 1.211 1.379 1.838 3.217 1.88 5.515 0 2.005-.564 3.801-1.692 5.389-1.086 1.587-2.674 2.84-4.763 3.76-2.047.877-4.449 1.316-7.207 1.316ZM473.243 38.19c0 1.254-.083 2.382-.25 3.384h-25.38c.208 2.507 1.086 4.47 2.632 5.89 1.545 1.421 3.446 2.132 5.702 2.132 3.259 0 5.578-1.4 6.956-4.2h9.463c-1.003 3.343-2.925 6.1-5.765 8.273-2.841 2.13-6.33 3.196-10.466 3.196-3.342 0-6.35-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.849-2.193-9.4 0-3.593.731-6.747 2.193-9.462 1.462-2.716 3.51-4.805 6.142-6.267 2.632-1.462 5.66-2.193 9.086-2.193 3.301 0 6.246.71 8.836 2.13 2.632 1.42 4.658 3.447 6.079 6.079 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.086-2.506c-.042-2.256-.857-4.053-2.444-5.39-1.588-1.378-3.531-2.068-5.828-2.068-2.173 0-4.011.669-5.515 2.006-1.462 1.295-2.361 3.112-2.695 5.452h16.482Z"
|
|
2975
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
2976
|
+
id: "NeetoCourse_js__a",
|
|
2977
|
+
x1: 48,
|
|
2978
|
+
x2: -8.229,
|
|
2979
|
+
y1: 66.767,
|
|
2980
|
+
y2: -2.662,
|
|
2981
|
+
gradientUnits: "userSpaceOnUse"
|
|
2982
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
2983
|
+
stopColor: "#59CBEF"
|
|
2984
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
2985
|
+
offset: 1,
|
|
2986
|
+
stopColor: "#8CD672"
|
|
2987
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
2988
|
+
id: "NeetoCourse_js__b",
|
|
2989
|
+
width: 29.314,
|
|
2990
|
+
height: 35.443,
|
|
2991
|
+
x: 12.346,
|
|
2992
|
+
y: 18.938,
|
|
2993
|
+
colorInterpolationFilters: "sRGB",
|
|
2994
|
+
filterUnits: "userSpaceOnUse"
|
|
2995
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
2996
|
+
floodOpacity: 0,
|
|
2997
|
+
result: "BackgroundImageFix"
|
|
2998
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
2999
|
+
in: "SourceAlpha",
|
|
3000
|
+
result: "hardAlpha",
|
|
3001
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3002
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3003
|
+
dx: 3,
|
|
3004
|
+
dy: 4
|
|
3005
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3006
|
+
stdDeviation: 1.5
|
|
3007
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3008
|
+
in2: "hardAlpha",
|
|
3009
|
+
operator: "out"
|
|
3010
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3011
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3012
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3013
|
+
in2: "BackgroundImageFix",
|
|
3014
|
+
result: "effect1_dropShadow_3688_21515"
|
|
3015
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3016
|
+
in: "SourceGraphic",
|
|
3017
|
+
in2: "effect1_dropShadow_3688_21515",
|
|
3018
|
+
result: "shape"
|
|
3019
|
+
}))));
|
|
3020
|
+
};
|
|
3021
|
+
|
|
3022
|
+
var _excluded$h = ["width", "height"];
|
|
3023
|
+
var NeetoCrm = function NeetoCrm(_ref) {
|
|
3024
|
+
var _ref$width = _ref.width,
|
|
3025
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3026
|
+
_ref$height = _ref.height,
|
|
3027
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3028
|
+
props = _objectWithoutProperties(_ref, _excluded$h);
|
|
3029
|
+
|
|
3030
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3031
|
+
width: width,
|
|
3032
|
+
height: height,
|
|
3033
|
+
fill: "none",
|
|
3034
|
+
viewBox: "0 0 398 65"
|
|
3035
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3036
|
+
fill: "url(#NeetoCrm_js__a)",
|
|
3037
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3038
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3039
|
+
fill: "#fff",
|
|
3040
|
+
fillRule: "evenodd",
|
|
3041
|
+
clipPath: "url(#NeetoCrm_js__b)",
|
|
3042
|
+
clipRule: "evenodd",
|
|
3043
|
+
filter: "url(#NeetoCrm_js__c)"
|
|
3044
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3045
|
+
d: "M18.336 34.09a2.33 2.33 0 1 0-3.296 3.295 2.33 2.33 0 0 0 3.296-3.296Zm1.877-1.878a4.985 4.985 0 1 0-7.05 7.05 4.985 4.985 0 0 0 7.05-7.05ZM32.963 26.776a2.33 2.33 0 1 0-3.296 3.296 2.33 2.33 0 0 0 3.296-3.296Zm1.877-1.877a4.985 4.985 0 1 0-7.05 7.05 4.985 4.985 0 0 0 7.05-7.05ZM32.963 41.403a2.33 2.33 0 1 0-3.296 3.296 2.33 2.33 0 0 0 3.296-3.296Zm1.877-1.877a4.985 4.985 0 1 0-7.05 7.05 4.985 4.985 0 0 0 7.05-7.05Z"
|
|
3046
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3047
|
+
d: "M29.249 29.452a1.327 1.327 0 0 1-.594 1.78l-8.119 4.06a1.327 1.327 0 1 1-1.187-2.374l8.119-4.06a1.327 1.327 0 0 1 1.78.594ZM18.756 36.776a1.327 1.327 0 0 1 1.78-.593l8.12 4.06a1.327 1.327 0 0 1-1.188 2.373l-8.119-4.059a1.327 1.327 0 0 1-.593-1.78Z"
|
|
3048
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3049
|
+
fill: "#11243E",
|
|
3050
|
+
fillRule: "evenodd",
|
|
3051
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3052
|
+
clipRule: "evenodd"
|
|
3053
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3054
|
+
fill: "#11243E",
|
|
3055
|
+
d: "M253 34.368c0-4.304.961-8.147 2.883-11.531 1.963-3.426 4.616-6.079 7.958-7.959 3.384-1.921 7.165-2.882 11.343-2.882 4.888 0 9.17 1.253 12.847 3.76 3.676 2.506 6.245 5.974 7.708 10.402h-10.09c-1.002-2.089-2.423-3.655-4.261-4.7-1.796-1.044-3.885-1.566-6.267-1.566-2.548 0-4.825.605-6.83 1.817-1.964 1.17-3.51 2.84-4.638 5.013-1.086 2.173-1.629 4.721-1.629 7.646 0 2.882.543 5.43 1.629 7.645 1.128 2.172 2.674 3.864 4.638 5.076 2.005 1.17 4.282 1.755 6.83 1.755 2.382 0 4.471-.523 6.267-1.567 1.838-1.086 3.259-2.674 4.261-4.763h10.09c-1.463 4.47-4.032 7.959-7.708 10.466-3.635 2.465-7.917 3.697-12.847 3.697-4.178 0-7.959-.94-11.343-2.82-3.342-1.922-5.995-4.575-7.958-7.959-1.922-3.384-2.883-7.227-2.883-11.53ZM325.126 56.3l-9.651-17.044h-4.136V56.3h-8.773V12.56h16.418c3.384 0 6.267.605 8.648 1.817 2.382 1.17 4.157 2.778 5.327 4.825 1.211 2.006 1.817 4.262 1.817 6.768 0 2.883-.835 5.494-2.506 7.834-1.672 2.297-4.157 3.885-7.458 4.762l10.466 17.735h-10.152Zm-13.787-23.624h7.332c2.381 0 4.157-.564 5.327-1.692 1.169-1.17 1.754-2.779 1.754-4.826 0-2.005-.585-3.55-1.754-4.637-1.17-1.128-2.946-1.692-5.327-1.692h-7.332v12.847ZM389.734 12.56V56.3h-8.773V27.85L369.242 56.3h-6.643l-11.781-28.45V56.3h-8.773V12.56h9.964l13.912 32.524 13.912-32.524h9.901Z"
|
|
3056
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3057
|
+
id: "NeetoCrm_js__a",
|
|
3058
|
+
x1: 48,
|
|
3059
|
+
x2: 25.346,
|
|
3060
|
+
y1: 66.767,
|
|
3061
|
+
y2: 14.603,
|
|
3062
|
+
gradientUnits: "userSpaceOnUse"
|
|
3063
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3064
|
+
stopColor: "#609AF0"
|
|
3065
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3066
|
+
offset: 1,
|
|
3067
|
+
stopColor: "#6BD1F1"
|
|
3068
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
3069
|
+
id: "NeetoCrm_js__b"
|
|
3070
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3071
|
+
fill: "#fff",
|
|
3072
|
+
d: "M7.543 19.28h32.914v32.915H7.543z"
|
|
3073
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3074
|
+
id: "NeetoCrm_js__c",
|
|
3075
|
+
width: 26.311,
|
|
3076
|
+
height: 26.597,
|
|
3077
|
+
x: 11.703,
|
|
3078
|
+
y: 23.439,
|
|
3079
|
+
colorInterpolationFilters: "sRGB",
|
|
3080
|
+
filterUnits: "userSpaceOnUse"
|
|
3081
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3082
|
+
floodOpacity: 0,
|
|
3083
|
+
result: "BackgroundImageFix"
|
|
3084
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3085
|
+
in: "SourceAlpha",
|
|
3086
|
+
result: "hardAlpha",
|
|
3087
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3088
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3089
|
+
dx: 0.857,
|
|
3090
|
+
dy: 1.143
|
|
3091
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3092
|
+
stdDeviation: 0.429
|
|
3093
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3094
|
+
in2: "hardAlpha",
|
|
3095
|
+
operator: "out"
|
|
3096
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3097
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3098
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3099
|
+
in2: "BackgroundImageFix",
|
|
3100
|
+
result: "effect1_dropShadow_3688_21456"
|
|
3101
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3102
|
+
in: "SourceGraphic",
|
|
3103
|
+
in2: "effect1_dropShadow_3688_21456",
|
|
3104
|
+
result: "shape"
|
|
3105
|
+
}))));
|
|
3106
|
+
};
|
|
3107
|
+
|
|
3108
|
+
var _excluded$g = ["width", "height"];
|
|
3109
|
+
var NeetoDeploy = function NeetoDeploy(_ref) {
|
|
3110
|
+
var _ref$width = _ref.width,
|
|
3111
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3112
|
+
_ref$height = _ref.height,
|
|
3113
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3114
|
+
props = _objectWithoutProperties(_ref, _excluded$g);
|
|
3115
|
+
|
|
3116
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3117
|
+
width: width,
|
|
3118
|
+
height: height,
|
|
3119
|
+
fill: "none",
|
|
3120
|
+
viewBox: "0 0 476 74"
|
|
3121
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3122
|
+
fill: "url(#NeetoDeploy_js__a)",
|
|
3123
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3124
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3125
|
+
fill: "#fff",
|
|
3126
|
+
filter: "url(#NeetoDeploy_js__b)"
|
|
3127
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3128
|
+
d: "M10.933 36.53a150.514 150.514 0 0 0 4.294-6.497c-3.508.31-6.871 4.675-6.871 4.675l2.316 2.316c.067-.172.152-.338.261-.495ZM19.974 46.327l2.314 2.314s4.365-3.362 4.675-6.87a150.649 150.649 0 0 0-6.496 4.293c-.155.108-.32.196-.493.263ZM16.456 45.13c-.398.16-.788.331-1.195.467a18.494 18.494 0 0 1-3.342.766 23.55 23.55 0 0 1-1.437.158l.014-.178c.1-1.157.275-2.308.56-3.434.137-.544.311-1.072.499-1.6.117-.328.262-.642.41-.956l-.255-.254c-.567.38-1.059.861-1.477 1.405a9.217 9.217 0 0 0-1.406 2.678 11.147 11.147 0 0 0-.589 3.215c-.004.153-.015.31.009.461a1.072 1.072 0 0 0 .73.854c.156.05.314.052.477.05a10.74 10.74 0 0 0 2.94-.461c1.732-.515 3.48-1.483 4.505-3.012l-.247-.248-.196.09ZM35.72 21.278a.96.96 0 0 0-.698-.281c-3.091.06-10.717.639-14.767 4.689-1.839 1.838-2.436 2.795-3.746 4.893-.943 1.51-2.235 3.578-4.595 6.975a.96.96 0 0 0 .11 1.227l6.192 6.192a.96.96 0 0 0 1.227.11c3.398-2.361 5.465-3.652 6.975-4.595 2.097-1.31 3.054-1.907 4.893-3.746 4.057-4.057 4.632-11.679 4.69-14.767a.96.96 0 0 0-.281-.697ZM28.55 32.96a3.192 3.192 0 1 1-4.514-4.514 3.192 3.192 0 0 1 4.514 4.514Z"
|
|
3129
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3130
|
+
fill: "#11243E",
|
|
3131
|
+
fillRule: "evenodd",
|
|
3132
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3133
|
+
clipRule: "evenodd"
|
|
3134
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3135
|
+
fill: "#11243E",
|
|
3136
|
+
d: "M270.291 13.628c4.595 0 8.627.898 12.094 2.694 3.51 1.797 6.204 4.366 8.084 7.708 1.922 3.3 2.883 7.144 2.883 11.53 0 4.388-.961 8.231-2.883 11.532-1.88 3.258-4.574 5.786-8.084 7.582-3.467 1.797-7.499 2.695-12.094 2.695H255V13.628h15.291Zm-.314 36.284c4.596 0 8.147-1.254 10.654-3.76 2.506-2.507 3.76-6.037 3.76-10.591 0-4.554-1.254-8.105-3.76-10.653-2.507-2.59-6.058-3.886-10.654-3.886h-6.204v28.89h6.204ZM331.526 39.258c0 1.254-.084 2.382-.251 3.384h-25.38c.209 2.507 1.086 4.47 2.632 5.89 1.546 1.421 3.447 2.132 5.703 2.132 3.259 0 5.577-1.4 6.956-4.2h9.463c-1.003 3.343-2.925 6.1-5.766 8.273-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.849-2.193-9.4 0-3.593.731-6.747 2.193-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.246.71 8.836 2.13 2.632 1.42 4.658 3.447 6.079 6.079 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.087-2.506c-.042-2.256-.856-4.053-2.444-5.39-1.587-1.378-3.53-2.068-5.828-2.068-2.172 0-4.01.669-5.514 2.006-1.463 1.295-2.361 3.112-2.695 5.452h16.481ZM346.036 27.665c1.128-1.588 2.674-2.904 4.638-3.948 2.005-1.086 4.282-1.63 6.83-1.63 2.967 0 5.64.732 8.022 2.194 2.423 1.462 4.324 3.551 5.702 6.267 1.421 2.673 2.131 5.786 2.131 9.337s-.71 6.705-2.131 9.463c-1.378 2.715-3.279 4.825-5.702 6.329-2.382 1.504-5.055 2.256-8.022 2.256-2.548 0-4.804-.522-6.768-1.567-1.921-1.044-3.488-2.36-4.7-3.948v21.495h-8.773V22.652h8.773v5.013Zm18.362 12.22c0-2.089-.439-3.885-1.316-5.39-.836-1.545-1.964-2.715-3.384-3.509a8.887 8.887 0 0 0-4.512-1.19c-1.588 0-3.092.417-4.512 1.253-1.379.794-2.507 1.964-3.384 3.51-.836 1.545-1.254 3.362-1.254 5.451 0 2.09.418 3.907 1.254 5.452.877 1.546 2.005 2.737 3.384 3.572a9.108 9.108 0 0 0 4.512 1.19 8.546 8.546 0 0 0 4.512-1.252c1.42-.836 2.548-2.027 3.384-3.572.877-1.546 1.316-3.384 1.316-5.515ZM387.841 10.996v46.373h-8.773V10.996h8.773ZM411.258 57.933c-3.342 0-6.35-.731-9.024-2.193-2.673-1.504-4.783-3.614-6.329-6.33-1.504-2.715-2.256-5.849-2.256-9.4 0-3.55.773-6.684 2.319-9.4 1.587-2.715 3.739-4.804 6.454-6.266 2.716-1.504 5.745-2.256 9.087-2.256 3.342 0 6.371.752 9.087 2.256 2.715 1.462 4.846 3.55 6.392 6.266 1.587 2.716 2.381 5.85 2.381 9.4 0 3.551-.815 6.685-2.444 9.4a16.65 16.65 0 0 1-6.517 6.33c-2.716 1.462-5.766 2.193-9.15 2.193Zm0-7.645a9.15 9.15 0 0 0 4.45-1.128c1.42-.794 2.548-1.964 3.384-3.51.835-1.545 1.253-3.425 1.253-5.64 0-3.3-.877-5.828-2.632-7.582-1.713-1.797-3.823-2.695-6.329-2.695-2.507 0-4.617.898-6.33 2.695-1.671 1.754-2.506 4.282-2.506 7.582s.814 5.85 2.444 7.646c1.671 1.754 3.76 2.632 6.266 2.632ZM468.351 22.652l-21.494 51.136h-9.338l7.52-17.296-13.912-33.84h9.839l8.961 24.252 9.087-24.252h9.337Z"
|
|
3137
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3138
|
+
id: "NeetoDeploy_js__a",
|
|
3139
|
+
x1: 57.771,
|
|
3140
|
+
x2: -8.229,
|
|
3141
|
+
y1: 80.824,
|
|
3142
|
+
y2: -2.662,
|
|
3143
|
+
gradientUnits: "userSpaceOnUse"
|
|
3144
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3145
|
+
stopColor: "#67BDE2"
|
|
3146
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3147
|
+
offset: 1,
|
|
3148
|
+
stopColor: "#14D1A4"
|
|
3149
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3150
|
+
id: "NeetoDeploy_js__b",
|
|
3151
|
+
width: 37.769,
|
|
3152
|
+
height: 37.766,
|
|
3153
|
+
x: 8.232,
|
|
3154
|
+
y: 19.997,
|
|
3155
|
+
colorInterpolationFilters: "sRGB",
|
|
3156
|
+
filterUnits: "userSpaceOnUse"
|
|
3157
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3158
|
+
floodOpacity: 0,
|
|
3159
|
+
result: "BackgroundImageFix"
|
|
3160
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3161
|
+
in: "SourceAlpha",
|
|
3162
|
+
result: "hardAlpha",
|
|
3163
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3164
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3165
|
+
dx: 5,
|
|
3166
|
+
dy: 4
|
|
3167
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3168
|
+
stdDeviation: 2.5
|
|
3169
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3170
|
+
in2: "hardAlpha",
|
|
3171
|
+
operator: "out"
|
|
3172
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3173
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3174
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3175
|
+
in2: "BackgroundImageFix",
|
|
3176
|
+
result: "effect1_dropShadow_3688_21557"
|
|
3177
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3178
|
+
in: "SourceGraphic",
|
|
3179
|
+
in2: "effect1_dropShadow_3688_21557",
|
|
3180
|
+
result: "shape"
|
|
3181
|
+
}))));
|
|
3182
|
+
};
|
|
3183
|
+
|
|
3184
|
+
var _excluded$f = ["width", "height"];
|
|
3185
|
+
var NeetoDesk = function NeetoDesk(_ref) {
|
|
3186
|
+
var _ref$width = _ref.width,
|
|
3187
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3188
|
+
_ref$height = _ref.height,
|
|
3189
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3190
|
+
props = _objectWithoutProperties(_ref, _excluded$f);
|
|
3191
|
+
|
|
3192
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3193
|
+
width: width,
|
|
3194
|
+
height: height,
|
|
3195
|
+
fill: "none",
|
|
3196
|
+
viewBox: "0 0 411 64"
|
|
3197
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3198
|
+
fill: "url(#NeetoDesk_js__a)",
|
|
3199
|
+
d: "M47.997 31.998c0-13.254-10.745-23.999-23.999-23.999H0v47.997h47.997V31.998Z"
|
|
3200
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3201
|
+
fill: "#fff",
|
|
3202
|
+
filter: "url(#NeetoDesk_js__b)"
|
|
3203
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3204
|
+
d: "M11.41 32.406h5.076c1.402 0 2.539 1.126 2.539 2.515v3.773c0 2.083-1.705 3.772-3.808 3.772-2.103 0-3.808-1.689-3.808-3.773v-6.287ZM29.18 34.921c0-1.389 1.136-2.515 2.538-2.515h5.077v6.288c0 2.083-1.705 3.772-3.808 3.772-2.103 0-3.808-1.689-3.808-3.773v-3.772ZM11.472 32.406c.637-6.355 6.048-11.317 12.63-11.317 6.582 0 11.994 4.962 12.63 11.317h-2.554c-.625-4.962-4.898-8.802-10.076-8.802-5.178 0-9.451 3.84-10.076 8.802h-2.554Z"
|
|
3205
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3206
|
+
fill: "#11243E",
|
|
3207
|
+
fillRule: "evenodd",
|
|
3208
|
+
d: "M90.08 20H73.236l8.335 8.198h8.51c5.365 0 9.708 4.25 9.708 9.488v17.685h8.379V37.686c0-9.77-8.1-17.685-18.086-17.685Zm-9.706 9.392-8.38-8.24v34.22h8.38v-25.98Zm64.597 20.197-5.317-5.504-.318.3c-1.845 1.742-4.937 3.425-9.211 3.425-3.004 0-5.32-.749-6.994-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.898l.019-.412c.283-5.872-1.215-10.969-4.28-14.606-3.07-3.644-7.677-5.78-13.511-5.78-10.303 0-18.347 7.59-18.347 17.688 0 5.073 1.902 9.502 5.294 12.661 3.391 3.159 8.242 5.022 14.095 5.022 6.836 0 11.263-2.332 14.463-5.484l.302-.298Zm38.823 0-5.317-5.504-.319.3c-1.845 1.742-4.937 3.425-9.21 3.425-3.005 0-5.32-.749-6.995-2.044-1.546-1.196-2.58-2.886-3.093-4.968h26.898l.02-.412c.283-5.872-1.216-10.969-4.28-14.606-3.071-3.644-7.678-5.78-13.511-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.502 5.295 12.661 3.391 3.159 8.241 5.022 14.095 5.022 6.836 0 11.263-2.332 14.462-5.484l.303-.298Zm10.586-29.29h-5.918v7.553h5.918v13.191c0 5.326.795 8.957 3.049 11.234 2.257 2.28 5.868 3.094 11.178 3.094h1.553v-7.745h-.44c-1.597 0-2.824-.06-3.774-.237-.945-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.911-1.922-.183-.908-.244-2.081-.244-3.61V27.852h7.38v-7.554h-7.38v-8.924h-8.4v8.924Zm-65.134 7.187c2.706 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.802c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.822 0c2.706 0 4.69.797 6.085 2.096 1.292 1.205 2.112 2.874 2.506 4.836h-17.802c.513-2.15 1.559-3.827 3.021-4.991 1.577-1.256 3.674-1.941 6.19-1.941Zm62.794.016c5.59 0 10.033 4.569 10.033 10.185 0 5.614-4.443 10.184-10.033 10.184-5.587 0-9.965-4.566-9.965-10.184 0-5.62 4.378-10.185 9.965-10.185Zm0-7.501c-10.031 0-18.052 7.755-18.052 17.686 0 9.862 8.02 17.684 18.052 17.684 10.031 0 18.12-7.82 18.12-17.684 0-9.933-8.09-17.686-18.12-17.686Z",
|
|
3209
|
+
clipRule: "evenodd"
|
|
3210
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3211
|
+
fill: "#11243E",
|
|
3212
|
+
d: "M270.596 11.006c4.595 0 8.627.898 12.094 2.695 3.509 1.796 6.204 4.365 8.084 7.707 1.921 3.3 2.882 7.144 2.882 11.53 0 4.386-.961 8.23-2.882 11.53-1.88 3.258-4.575 5.786-8.084 7.582-3.467 1.796-7.499 2.695-12.094 2.695h-15.289V11.006h15.289Zm-.313 36.282c4.595 0 8.146-1.254 10.653-3.76 2.506-2.506 3.759-6.036 3.759-10.59 0-4.553-1.253-8.104-3.759-10.653-2.507-2.59-6.058-3.885-10.653-3.885h-6.204v28.888h6.204ZM331.827 36.635c0 1.253-.083 2.381-.25 3.384h-25.379c.209 2.506 1.087 4.47 2.632 5.89 1.546 1.42 3.447 2.13 5.702 2.13 3.259 0 5.577-1.399 6.956-4.198h9.462c-1.003 3.342-2.924 6.1-5.765 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.349-.732-9.023-2.194-2.632-1.504-4.7-3.613-6.203-6.329-1.463-2.715-2.194-5.848-2.194-9.399 0-3.593.731-6.747 2.194-9.462 1.462-2.715 3.509-4.804 6.14-6.266 2.632-1.462 5.661-2.193 9.086-2.193 3.301 0 6.246.71 8.836 2.13 2.632 1.42 4.658 3.447 6.078 6.078 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.086-2.506c-.042-2.256-.856-4.053-2.444-5.39-1.587-1.378-3.53-2.067-5.827-2.067-2.172 0-4.011.668-5.514 2.005-1.463 1.295-2.361 3.112-2.695 5.452h16.48ZM350.848 55.309c-2.84 0-5.389-.502-7.644-1.504-2.256-1.045-4.053-2.444-5.389-4.199-1.295-1.754-2.006-3.697-2.131-5.827h8.835c.168 1.336.815 2.443 1.943 3.32 1.17.878 2.611 1.317 4.324 1.317 1.671 0 2.966-.335 3.885-1.003.961-.668 1.441-1.525 1.441-2.57 0-1.127-.585-1.963-1.755-2.506-1.127-.585-2.945-1.211-5.451-1.88-2.59-.626-4.721-1.274-6.392-1.942-1.629-.668-3.049-1.692-4.261-3.07-1.169-1.38-1.754-3.238-1.754-5.577a9.12 9.12 0 0 1 1.629-5.264c1.128-1.587 2.715-2.84 4.762-3.76 2.089-.919 4.533-1.378 7.332-1.378 4.135 0 7.436 1.044 9.9 3.133 2.465 2.047 3.823 4.825 4.073 8.334h-8.396c-.126-1.379-.71-2.465-1.755-3.259-1.002-.835-2.36-1.253-4.073-1.253-1.587 0-2.82.293-3.697.877-.835.585-1.253 1.4-1.253 2.444 0 1.17.585 2.068 1.754 2.695 1.17.585 2.987 1.19 5.452 1.817 2.506.627 4.574 1.274 6.204 1.943 1.629.668 3.028 1.712 4.198 3.133 1.211 1.378 1.838 3.216 1.88 5.514 0 2.005-.564 3.801-1.692 5.389-1.086 1.587-2.674 2.84-4.762 3.76-2.047.877-4.449 1.316-7.207 1.316ZM391.597 54.745l-11.781-14.789v14.788h-8.773V8.375h8.773v26.381l11.655-14.725h11.405l-15.29 17.42 15.415 17.294h-11.404Z"
|
|
3213
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3214
|
+
id: "NeetoDesk_js__a",
|
|
3215
|
+
x1: 25.568,
|
|
3216
|
+
x2: 25.344,
|
|
3217
|
+
y1: 75.284,
|
|
3218
|
+
y2: 13.607,
|
|
3219
|
+
gradientUnits: "userSpaceOnUse"
|
|
3220
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3221
|
+
stopColor: "#FD9437"
|
|
3222
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3223
|
+
offset: 1,
|
|
3224
|
+
stopColor: "#FFD55C"
|
|
3225
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3226
|
+
id: "NeetoDesk_js__b",
|
|
3227
|
+
width: 27.368,
|
|
3228
|
+
height: 23.36,
|
|
3229
|
+
x: 11.409,
|
|
3230
|
+
y: 21.088,
|
|
3231
|
+
colorInterpolationFilters: "sRGB",
|
|
3232
|
+
filterUnits: "userSpaceOnUse"
|
|
3233
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3234
|
+
floodOpacity: 0,
|
|
3235
|
+
result: "BackgroundImageFix"
|
|
3236
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3237
|
+
in: "SourceAlpha",
|
|
3238
|
+
result: "hardAlpha",
|
|
3239
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3240
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3241
|
+
dx: 0.991,
|
|
3242
|
+
dy: 0.991
|
|
3243
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3244
|
+
stdDeviation: 0.496
|
|
3245
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3246
|
+
in2: "hardAlpha",
|
|
3247
|
+
operator: "out"
|
|
3248
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3249
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"
|
|
3250
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3251
|
+
in2: "BackgroundImageFix",
|
|
3252
|
+
result: "effect1_dropShadow_3688_21385"
|
|
3253
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3254
|
+
in: "SourceGraphic",
|
|
3255
|
+
in2: "effect1_dropShadow_3688_21385",
|
|
3256
|
+
result: "shape"
|
|
3257
|
+
}))));
|
|
3258
|
+
};
|
|
3259
|
+
|
|
3260
|
+
var _excluded$e = ["width", "height"];
|
|
3261
|
+
var NeetoForm = function NeetoForm(_ref) {
|
|
3262
|
+
var _ref$width = _ref.width,
|
|
3263
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3264
|
+
_ref$height = _ref.height,
|
|
3265
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3266
|
+
props = _objectWithoutProperties(_ref, _excluded$e);
|
|
3267
|
+
|
|
3268
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3269
|
+
width: width,
|
|
3270
|
+
height: height,
|
|
3271
|
+
fill: "none",
|
|
3272
|
+
viewBox: "0 0 417 64"
|
|
3273
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3274
|
+
fill: "url(#NeetoForm_js__a)",
|
|
3275
|
+
d: "M48 32C48 18.745 37.255 8 24 8H0v48h48V32Z"
|
|
3276
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3277
|
+
width: 16.096,
|
|
3278
|
+
height: 4.39,
|
|
3279
|
+
x: 19.02,
|
|
3280
|
+
y: 31.412,
|
|
3281
|
+
fill: "#fff",
|
|
3282
|
+
rx: 2.195
|
|
3283
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3284
|
+
width: 12.438,
|
|
3285
|
+
height: 4.39,
|
|
3286
|
+
x: 19.02,
|
|
3287
|
+
y: 38.728,
|
|
3288
|
+
fill: "#fff",
|
|
3289
|
+
rx: 2.195
|
|
3290
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3291
|
+
width: 11.706,
|
|
3292
|
+
height: 4.39,
|
|
3293
|
+
x: 19.02,
|
|
3294
|
+
y: 24.096,
|
|
3295
|
+
fill: "#fff",
|
|
3296
|
+
rx: 2.195
|
|
3297
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
3298
|
+
cx: 14.63,
|
|
3299
|
+
cy: 26.291,
|
|
3300
|
+
r: 2.195,
|
|
3301
|
+
fill: "#fff"
|
|
3302
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
3303
|
+
cx: 14.63,
|
|
3304
|
+
cy: 33.607,
|
|
3305
|
+
r: 2.195,
|
|
3306
|
+
fill: "#fff"
|
|
3307
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
3308
|
+
cx: 14.63,
|
|
3309
|
+
cy: 40.923,
|
|
3310
|
+
r: 2.195,
|
|
3311
|
+
fill: "#fff"
|
|
3312
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3313
|
+
fill: "#11243E",
|
|
3314
|
+
fillRule: "evenodd",
|
|
3315
|
+
d: "M90.087 20.627H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V56h8.38V38.313c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 21.778V56h8.38V30.019Zm64.603 20.198-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.192c0 5.326.796 8.958 3.05 11.235C199.7 55.186 203.311 56 208.622 56h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V28.479h7.381v-7.555h-7.381V12h-8.401v8.924Zm-65.138 7.189c2.706 0 4.691.797 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.826 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.588 0-9.966-4.566-9.966-10.185 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56 249 48.18 249 38.314c0-9.933-8.091-17.687-18.121-17.687Z",
|
|
3316
|
+
clipRule: "evenodd"
|
|
3317
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3318
|
+
fill: "#11243E",
|
|
3319
|
+
d: "M282.009 11.695v7.081h-18.236v11.217h13.975v6.956h-13.975v18.487H255V11.695h27.009ZM302.98 56c-3.342 0-6.35-.731-9.024-2.193-2.674-1.504-4.784-3.614-6.33-6.33-1.504-2.715-2.256-5.849-2.256-9.4 0-3.55.773-6.684 2.319-9.4 1.588-2.715 3.739-4.804 6.455-6.266 2.715-1.504 5.744-2.256 9.086-2.256 3.343 0 6.372.752 9.087 2.256 2.716 1.462 4.846 3.55 6.392 6.266 1.588 2.716 2.381 5.85 2.381 9.4 0 3.551-.814 6.685-2.444 9.4a16.65 16.65 0 0 1-6.517 6.33C309.414 55.269 306.364 56 302.98 56Zm0-7.645c1.587 0 3.07-.376 4.449-1.128 1.421-.794 2.549-1.964 3.384-3.51.836-1.545 1.253-3.425 1.253-5.64 0-3.3-.877-5.828-2.632-7.582-1.712-1.797-3.822-2.695-6.329-2.695-2.507 0-4.616.898-6.329 2.695-1.671 1.754-2.507 4.282-2.507 7.582s.815 5.85 2.444 7.646c1.671 1.754 3.76 2.632 6.267 2.632ZM335.633 26.108c1.128-1.838 2.59-3.28 4.386-4.324 1.839-1.044 3.927-1.567 6.267-1.567v9.212h-2.319c-2.757 0-4.846.648-6.266 1.943-1.379 1.295-2.068 3.551-2.068 6.768v17.296h-8.774V20.719h8.774v5.389ZM394.643 20.217c4.262 0 7.687 1.316 10.278 3.948 2.632 2.59 3.948 6.225 3.948 10.904v20.367h-8.774V36.26c0-2.716-.689-4.784-2.068-6.204-1.378-1.462-3.258-2.193-5.64-2.193-2.381 0-4.282.73-5.702 2.193-1.379 1.42-2.068 3.488-2.068 6.204v19.176h-8.774V36.26c0-2.716-.689-4.784-2.068-6.204-1.378-1.462-3.258-2.193-5.64-2.193-2.423 0-4.345.73-5.765 2.193-1.379 1.42-2.068 3.488-2.068 6.204v19.176h-8.773V20.719h8.773v4.198c1.128-1.462 2.569-2.61 4.324-3.446 1.796-.836 3.76-1.254 5.891-1.254 2.715 0 5.138.585 7.269 1.755 2.131 1.128 3.781 2.757 4.951 4.888 1.128-2.005 2.757-3.614 4.888-4.825a14.177 14.177 0 0 1 7.018-1.818Z"
|
|
3320
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3321
|
+
id: "NeetoForm_js__a",
|
|
3322
|
+
x1: 25.57,
|
|
3323
|
+
x2: 25.346,
|
|
3324
|
+
y1: 75.29,
|
|
3325
|
+
y2: 13.607,
|
|
3326
|
+
gradientUnits: "userSpaceOnUse"
|
|
3327
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3328
|
+
stopColor: "#E26682"
|
|
3329
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3330
|
+
offset: 1,
|
|
3331
|
+
stopColor: "#FE8072"
|
|
3332
|
+
}))));
|
|
3333
|
+
};
|
|
3334
|
+
|
|
3335
|
+
var _excluded$d = ["width", "height"];
|
|
3336
|
+
var NeetoGit = function NeetoGit(_ref) {
|
|
3337
|
+
var _ref$width = _ref.width,
|
|
3338
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3339
|
+
_ref$height = _ref.height,
|
|
3340
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3341
|
+
props = _objectWithoutProperties(_ref, _excluded$d);
|
|
3342
|
+
|
|
3343
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3344
|
+
width: width,
|
|
3345
|
+
height: height,
|
|
3346
|
+
fill: "none",
|
|
3347
|
+
viewBox: "0 0 346 65"
|
|
3348
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3349
|
+
fill: "url(#NeetoGit_js__a)",
|
|
3350
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3351
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3352
|
+
filter: "url(#NeetoGit_js__b)"
|
|
3353
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3354
|
+
fill: "#fff",
|
|
3355
|
+
d: "M12.343 21.338h7.616v5.884a2.488 2.488 0 0 0 0 4.721v4.5a2.488 2.488 0 1 0 1.554 0v-4.495c.325-.106.62-.277.87-.497l2.66 1.536a2.487 2.487 0 1 0 .766-1.352l-2.636-1.523a2.488 2.488 0 0 0-1.66-2.894v-5.88H24c6.438 0 11.657 5.22 11.657 11.657v11.658H12.343V21.338Z"
|
|
3356
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3357
|
+
fill: "#11243E",
|
|
3358
|
+
fillRule: "evenodd",
|
|
3359
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3360
|
+
clipRule: "evenodd"
|
|
3361
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3362
|
+
fill: "#11243E",
|
|
3363
|
+
d: "M285.78 25.545c-1.003-1.838-2.381-3.238-4.136-4.199-1.755-.96-3.802-1.441-6.141-1.441-2.591 0-4.888.585-6.894 1.755-2.005 1.17-3.572 2.84-4.7 5.013-1.128 2.172-1.692 4.68-1.692 7.52 0 2.924.564 5.473 1.692 7.645 1.17 2.173 2.779 3.844 4.826 5.014 2.047 1.17 4.428 1.754 7.144 1.754 3.342 0 6.078-.877 8.209-2.632 2.131-1.796 3.53-4.282 4.199-7.457h-15.04v-6.705h23.688v7.645c-.585 3.05-1.839 5.87-3.76 8.46-1.922 2.59-4.408 4.68-7.458 6.267-3.008 1.545-6.392 2.318-10.152 2.318-4.219 0-8.042-.94-11.468-2.82-3.384-1.922-6.057-4.574-8.021-7.958-1.922-3.384-2.883-7.228-2.883-11.531 0-4.303.961-8.147 2.883-11.53 1.964-3.427 4.637-6.08 8.021-7.96 3.426-1.921 7.228-2.882 11.406-2.882 4.929 0 9.212 1.212 12.846 3.635 3.635 2.38 6.142 5.744 7.52 10.089H285.78ZM307.208 17.273c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.236-1.504-3.698 0-1.462.501-2.674 1.504-3.634 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.5 3.823 1.504 1.044.96 1.567 2.172 1.567 3.634 0 1.463-.523 2.695-1.567 3.698-1.003.96-2.277 1.44-3.823 1.44Zm4.324 4.136v34.717h-8.773V21.41h8.773ZM329.748 28.616V45.41c0 1.17.272 2.027.815 2.57.585.5 1.546.752 2.883.752h4.073v7.394h-5.515c-7.394 0-11.092-3.593-11.092-10.778V28.616h-4.136v-7.207h4.136v-8.585h8.836v8.585h7.771v7.207h-7.771Z"
|
|
3364
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3365
|
+
id: "NeetoGit_js__a",
|
|
3366
|
+
x1: 74.229,
|
|
3367
|
+
x2: -27.429,
|
|
3368
|
+
y1: 96.767,
|
|
3369
|
+
y2: -20.662,
|
|
3370
|
+
gradientUnits: "userSpaceOnUse"
|
|
3371
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3372
|
+
stopColor: "#FF4E6E"
|
|
3373
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3374
|
+
offset: 0.696,
|
|
3375
|
+
stopColor: "#FF8B8B"
|
|
3376
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3377
|
+
id: "NeetoGit_js__b",
|
|
3378
|
+
width: 29.314,
|
|
3379
|
+
height: 30.314,
|
|
3380
|
+
x: 12.343,
|
|
3381
|
+
y: 21.338,
|
|
3382
|
+
colorInterpolationFilters: "sRGB",
|
|
3383
|
+
filterUnits: "userSpaceOnUse"
|
|
3384
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3385
|
+
floodOpacity: 0,
|
|
3386
|
+
result: "BackgroundImageFix"
|
|
3387
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3388
|
+
in: "SourceAlpha",
|
|
3389
|
+
result: "hardAlpha",
|
|
3390
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3391
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3392
|
+
dx: 3,
|
|
3393
|
+
dy: 4
|
|
3394
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3395
|
+
stdDeviation: 1.5
|
|
3396
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3397
|
+
in2: "hardAlpha",
|
|
3398
|
+
operator: "out"
|
|
3399
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3400
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3401
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3402
|
+
in2: "BackgroundImageFix",
|
|
3403
|
+
result: "effect1_dropShadow_3688_21648"
|
|
3404
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3405
|
+
in: "SourceGraphic",
|
|
3406
|
+
in2: "effect1_dropShadow_3688_21648",
|
|
3407
|
+
result: "shape"
|
|
3408
|
+
}))));
|
|
3409
|
+
};
|
|
3410
|
+
|
|
3411
|
+
var _excluded$c = ["width", "height"];
|
|
3412
|
+
var NeetoInvisible = function NeetoInvisible(_ref) {
|
|
3413
|
+
var _ref$width = _ref.width,
|
|
3414
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3415
|
+
_ref$height = _ref.height,
|
|
3416
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3417
|
+
props = _objectWithoutProperties(_ref, _excluded$c);
|
|
3418
|
+
|
|
3419
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3420
|
+
width: width,
|
|
3421
|
+
height: height,
|
|
3422
|
+
fill: "none",
|
|
3423
|
+
viewBox: "0 0 516 65"
|
|
3424
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3425
|
+
fill: "url(#NeetoInvisible_js__a)",
|
|
3426
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3427
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3428
|
+
fill: "#fff",
|
|
3429
|
+
filter: "url(#NeetoInvisible_js__b)"
|
|
3430
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3431
|
+
fillRule: "evenodd",
|
|
3432
|
+
d: "M18.758 22.501a7.994 7.994 0 0 0 0 15.988v1.163a9.157 9.157 0 1 1 9.157-9.157h-1.163a7.994 7.994 0 0 0-7.994-7.994Z",
|
|
3433
|
+
clipRule: "evenodd"
|
|
3434
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3435
|
+
fillRule: "evenodd",
|
|
3436
|
+
d: "M18.757 26.28a4.215 4.215 0 1 0 0 8.43v1.163a5.378 5.378 0 1 1 5.378-5.377h-1.163a4.215 4.215 0 0 0-4.215-4.215Z",
|
|
3437
|
+
clipRule: "evenodd"
|
|
3438
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3439
|
+
d: "M18.597 31.09a.363.363 0 0 1 .465-.464l18.911 6.878a.363.363 0 0 1-.002.682l-8.643 3.077a.362.362 0 0 0-.22.223l-2.954 8.5a.363.363 0 0 1-.684.005l-6.873-18.9Z"
|
|
3440
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3441
|
+
fill: "#11243E",
|
|
3442
|
+
fillRule: "evenodd",
|
|
3443
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3444
|
+
clipRule: "evenodd"
|
|
3445
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3446
|
+
fill: "#11243E",
|
|
3447
|
+
d: "M264.098 12.385v43.741h-8.774V12.385h8.774ZM291.338 20.908c4.136 0 7.478 1.316 10.026 3.948 2.549 2.59 3.823 6.224 3.823 10.904v20.366h-8.773V36.95c0-2.757-.69-4.867-2.068-6.33-1.379-1.503-3.259-2.255-5.64-2.255-2.423 0-4.345.752-5.766 2.256-1.378 1.462-2.068 3.572-2.068 6.33v19.175h-8.773V21.41h8.773v4.324c1.17-1.504 2.653-2.674 4.45-3.51 1.838-.877 3.843-1.315 6.016-1.315ZM327.339 48.042l8.774-26.633h9.337l-12.847 34.717H321.95L309.166 21.41h9.4l8.773 26.633ZM354.16 17.273c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.236-1.504-3.698 0-1.462.501-2.674 1.504-3.634 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.5 3.823 1.504 1.044.96 1.567 2.172 1.567 3.634 0 1.463-.523 2.695-1.567 3.698-1.003.96-2.277 1.44-3.823 1.44Zm4.324 4.136v34.717h-8.773V21.41h8.773ZM379.771 56.69c-2.841 0-5.389-.501-7.645-1.504-2.256-1.044-4.053-2.444-5.39-4.198-1.295-1.755-2.005-3.698-2.13-5.828h8.836c.167 1.337.814 2.444 1.942 3.32 1.17.878 2.611 1.317 4.324 1.317 1.671 0 2.967-.334 3.886-1.003.961-.668 1.441-1.525 1.441-2.57 0-1.127-.585-1.963-1.755-2.506-1.128-.585-2.945-1.211-5.452-1.88-2.59-.626-4.721-1.274-6.392-1.942-1.629-.669-3.049-1.692-4.261-3.071-1.17-1.379-1.755-3.238-1.755-5.577 0-1.922.543-3.677 1.63-5.264 1.128-1.588 2.715-2.841 4.762-3.76 2.089-.92 4.533-1.38 7.332-1.38 4.136 0 7.437 1.045 9.902 3.134 2.465 2.047 3.822 4.826 4.073 8.335h-8.397c-.126-1.379-.711-2.465-1.755-3.259-1.003-.835-2.36-1.253-4.073-1.253-1.588 0-2.82.292-3.698.877-.835.585-1.253 1.4-1.253 2.444 0 1.17.585 2.068 1.755 2.695 1.169.585 2.987 1.19 5.452 1.817 2.506.627 4.574 1.274 6.204 1.943 1.629.668 3.029 1.713 4.198 3.133 1.212 1.379 1.839 3.217 1.88 5.515 0 2.005-.564 3.802-1.692 5.39-1.086 1.587-2.673 2.84-4.762 3.76-2.047.877-4.45 1.315-7.207 1.315ZM404.417 17.273c-1.546 0-2.841-.48-3.886-1.441-1.002-1.003-1.504-2.236-1.504-3.698 0-1.462.502-2.674 1.504-3.634 1.045-1.003 2.34-1.504 3.886-1.504 1.546 0 2.82.5 3.822 1.504 1.045.96 1.567 2.172 1.567 3.634 0 1.463-.522 2.695-1.567 3.698-1.002.96-2.276 1.44-3.822 1.44Zm4.324 4.136v34.717h-8.774V21.41h8.774ZM425.516 26.485c1.128-1.671 2.673-3.029 4.637-4.073 2.005-1.045 4.282-1.567 6.831-1.567 2.966 0 5.64.731 8.021 2.193 2.423 1.462 4.324 3.551 5.703 6.267 1.42 2.674 2.13 5.786 2.13 9.337s-.71 6.706-2.13 9.463c-1.379 2.716-3.28 4.825-5.703 6.33-2.381 1.503-5.055 2.255-8.021 2.255-2.591 0-4.868-.501-6.831-1.504-1.922-1.044-3.468-2.381-4.637-4.01v4.95h-8.774V9.753h8.774v16.732Zm18.361 12.157c0-2.089-.439-3.885-1.316-5.39-.836-1.545-1.964-2.715-3.384-3.508a8.887 8.887 0 0 0-4.512-1.191c-1.588 0-3.092.418-4.512 1.253-1.379.794-2.507 1.964-3.384 3.51-.836 1.545-1.253 3.363-1.253 5.452 0 2.088.417 3.906 1.253 5.452.877 1.545 2.005 2.736 3.384 3.572a9.109 9.109 0 0 0 4.512 1.19 8.546 8.546 0 0 0 4.512-1.253c1.42-.836 2.548-2.026 3.384-3.572.877-1.546 1.316-3.384 1.316-5.515ZM467.32 9.753v46.373h-8.773V9.753h8.773ZM507.595 38.016c0 1.253-.084 2.38-.251 3.384h-25.38c.209 2.506 1.087 4.47 2.632 5.89 1.546 1.42 3.447 2.13 5.703 2.13 3.259 0 5.577-1.399 6.956-4.198h9.463c-1.003 3.343-2.925 6.1-5.766 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.73-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.848-2.193-9.4 0-3.592.731-6.747 2.193-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.246.71 8.836 2.13 2.632 1.421 4.658 3.447 6.079 6.08 1.462 2.59 2.193 5.577 2.193 8.96Zm-9.087-2.507c-.041-2.256-.856-4.053-2.444-5.39-1.587-1.378-3.53-2.067-5.828-2.067-2.172 0-4.01.668-5.514 2.005-1.463 1.295-2.361 3.112-2.695 5.452h16.481Z"
|
|
3448
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3449
|
+
id: "NeetoInvisible_js__a",
|
|
3450
|
+
x1: 51.771,
|
|
3451
|
+
x2: -15.6,
|
|
3452
|
+
y1: 71.224,
|
|
3453
|
+
y2: -16.719,
|
|
3454
|
+
gradientUnits: "userSpaceOnUse"
|
|
3455
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3456
|
+
stopColor: "#28CCF0"
|
|
3457
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3458
|
+
offset: 0.699,
|
|
3459
|
+
stopColor: "#799DFA"
|
|
3460
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3461
|
+
id: "NeetoInvisible_js__b",
|
|
3462
|
+
width: 34.611,
|
|
3463
|
+
height: 35.891,
|
|
3464
|
+
x: 9.601,
|
|
3465
|
+
y: 21.338,
|
|
3466
|
+
colorInterpolationFilters: "sRGB",
|
|
3467
|
+
filterUnits: "userSpaceOnUse"
|
|
3468
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3469
|
+
floodOpacity: 0,
|
|
3470
|
+
result: "BackgroundImageFix"
|
|
3471
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3472
|
+
in: "SourceAlpha",
|
|
3473
|
+
result: "hardAlpha",
|
|
3474
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3475
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3476
|
+
dx: 3,
|
|
3477
|
+
dy: 4
|
|
3478
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3479
|
+
stdDeviation: 1.5
|
|
3480
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3481
|
+
in2: "hardAlpha",
|
|
3482
|
+
operator: "out"
|
|
3483
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3484
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3485
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3486
|
+
in2: "BackgroundImageFix",
|
|
3487
|
+
result: "effect1_dropShadow_3688_21620"
|
|
3488
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3489
|
+
in: "SourceGraphic",
|
|
3490
|
+
in2: "effect1_dropShadow_3688_21620",
|
|
3491
|
+
result: "shape"
|
|
3492
|
+
}))));
|
|
3493
|
+
};
|
|
3494
|
+
|
|
3495
|
+
var _excluded$b = ["width", "height"];
|
|
3496
|
+
var NeetoInvoice = function NeetoInvoice(_ref) {
|
|
3497
|
+
var _ref$width = _ref.width,
|
|
3498
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3499
|
+
_ref$height = _ref.height,
|
|
3500
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3501
|
+
props = _objectWithoutProperties(_ref, _excluded$b);
|
|
3502
|
+
|
|
3503
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3504
|
+
width: width,
|
|
3505
|
+
height: height,
|
|
3506
|
+
fill: "none",
|
|
3507
|
+
viewBox: "0 0 483 64"
|
|
3508
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3509
|
+
fill: "url(#NeetoInvoice_js__a)",
|
|
3510
|
+
d: "M48 32C48 18.745 37.255 8 24 8H0v48h48V32Z"
|
|
3511
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3512
|
+
fill: "#fff",
|
|
3513
|
+
fillRule: "evenodd",
|
|
3514
|
+
d: "M35.12 43.55V25.088c0-.952-.771-1.723-1.723-1.723H14.894c-.951 0-1.723.771-1.723 1.723V43.55c0 .5.217.974.595 1.301L15.7 46.53c.648.561 1.61.561 2.257 0l1.401-1.215a1.723 1.723 0 0 1 2.257 0l1.401 1.215c.648.561 1.61.561 2.257 0l1.402-1.215a1.723 1.723 0 0 1 2.256 0l1.402 1.215c.647.561 1.609.561 2.257 0l1.935-1.678c.377-.327.594-.802.594-1.301ZM15.367 28.487c0-.808.655-1.463 1.463-1.463h9.512a1.463 1.463 0 0 1 0 2.926H16.83a1.463 1.463 0 0 1-1.463-1.463Zm1.463 3.658a1.463 1.463 0 0 0 0 2.926h14.633a1.463 1.463 0 0 0 0-2.926H16.83Z",
|
|
3515
|
+
clipRule: "evenodd"
|
|
3516
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3517
|
+
fill: "#11243E",
|
|
3518
|
+
fillRule: "evenodd",
|
|
3519
|
+
d: "M90.087 20.627H73.24l8.335 8.198h8.512c5.364 0 9.708 4.25 9.708 9.488V56h8.379V38.313c0-9.77-8.1-17.686-18.087-17.686Zm-9.708 9.392-8.38-8.241V56h8.38V30.019Zm64.602 20.198-5.317-5.505-.319.301c-1.845 1.742-4.937 3.425-9.211 3.425-3.004 0-5.32-.749-6.995-2.044-1.546-1.196-2.58-2.886-3.093-4.968h26.9l.02-.413c.282-5.871-1.216-10.969-4.281-14.606-3.071-3.645-7.678-5.78-13.512-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.902 9.503 5.294 12.663C119.51 54.136 124.362 56 130.215 56c6.837 0 11.264-2.333 14.464-5.485l.302-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.937 3.425-9.211 3.425-3.004 0-5.32-.749-6.995-2.044-1.546-1.196-2.58-2.886-3.093-4.968h26.9l.02-.413c.282-5.871-1.216-10.969-4.281-14.606-3.071-3.645-7.678-5.78-13.512-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.902 9.503 5.294 12.663C158.336 54.136 163.187 56 169.04 56c6.837 0 11.264-2.333 14.464-5.485l.302-.298Zm10.587-29.293h-5.918v7.555h5.918v13.192c0 5.326.795 8.957 3.05 11.235C199.7 55.186 203.311 56 208.621 56h1.553v-7.746h-.439c-1.598 0-2.825-.06-3.774-.237-.946-.177-1.575-.462-2.012-.883-.436-.42-.73-1.02-.911-1.922-.183-.908-.244-2.082-.244-3.61V28.479h7.38v-7.555h-7.38V12h-8.401v8.924Zm-65.138 7.189c2.706 0 4.69.796 6.085 2.096 1.291 1.205 2.112 2.874 2.506 4.836h-17.803c.513-2.15 1.559-3.827 3.021-4.991 1.578-1.256 3.674-1.941 6.191-1.941Zm38.825 0c2.706 0 4.69.796 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.513-2.15 1.559-3.827 3.021-4.991 1.578-1.256 3.674-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.587 0-9.966-4.566-9.966-10.185 0-5.62 4.379-10.186 9.966-10.186Zm0-7.501c-10.032 0-18.053 7.756-18.053 17.687 0 9.863 8.02 17.686 18.053 17.686C240.909 56 249 48.18 249 38.314c0-9.933-8.092-17.687-18.122-17.687Z",
|
|
3520
|
+
clipRule: "evenodd"
|
|
3521
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3522
|
+
fill: "#11243E",
|
|
3523
|
+
d: "M264.098 11.389V55.13h-8.774V11.39h8.774ZM291.338 19.912c4.136 0 7.478 1.316 10.026 3.948 2.549 2.59 3.823 6.225 3.823 10.904V55.13h-8.773V35.954c0-2.757-.69-4.867-2.068-6.329-1.379-1.504-3.259-2.256-5.64-2.256-2.423 0-4.345.752-5.766 2.256-1.378 1.462-2.068 3.572-2.068 6.33V55.13h-8.773V20.413h8.773v4.324c1.17-1.504 2.653-2.674 4.45-3.51 1.838-.877 3.843-1.315 6.016-1.315ZM327.339 47.046l8.774-26.633h9.337L332.603 55.13H321.95l-12.784-34.717h9.4l8.773 26.633ZM365.127 55.694c-3.342 0-6.35-.73-9.024-2.193-2.674-1.504-4.784-3.614-6.329-6.33-1.504-2.715-2.256-5.848-2.256-9.4 0-3.55.773-6.684 2.318-9.4 1.588-2.715 3.739-4.804 6.455-6.266 2.716-1.504 5.744-2.256 9.087-2.256 3.342 0 6.371.752 9.086 2.256 2.716 1.462 4.847 3.551 6.392 6.267 1.588 2.715 2.382 5.849 2.382 9.4 0 3.55-.815 6.684-2.444 9.4a16.652 16.652 0 0 1-6.518 6.329c-2.715 1.462-5.765 2.193-9.149 2.193Zm0-7.645a9.143 9.143 0 0 0 4.449-1.128c1.421-.794 2.549-1.963 3.384-3.51.836-1.545 1.254-3.425 1.254-5.64 0-3.3-.878-5.827-2.632-7.582-1.713-1.796-3.823-2.695-6.33-2.695-2.506 0-4.616.899-6.329 2.695-1.671 1.755-2.507 4.282-2.507 7.583 0 3.3.815 5.849 2.444 7.645 1.671 1.755 3.76 2.632 6.267 2.632ZM393.456 16.277c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.235-1.504-3.698 0-1.462.501-2.673 1.504-3.634C390.615 6.5 391.91 6 393.456 6c1.546 0 2.82.501 3.823 1.504 1.044.96 1.566 2.172 1.566 3.634 0 1.463-.522 2.695-1.566 3.698-1.003.96-2.277 1.441-3.823 1.441Zm4.324 4.136V55.13h-8.773V20.413h8.773ZM403.525 37.772c0-3.593.731-6.726 2.194-9.4 1.462-2.716 3.488-4.805 6.078-6.267 2.59-1.504 5.557-2.256 8.899-2.256 4.303 0 7.854 1.086 10.653 3.259 2.841 2.13 4.742 5.138 5.703 9.024h-9.463c-.501-1.504-1.358-2.674-2.569-3.51-1.17-.877-2.632-1.316-4.387-1.316-2.506 0-4.491.92-5.953 2.758-1.462 1.796-2.193 4.365-2.193 7.708 0 3.3.731 5.87 2.193 7.708 1.462 1.796 3.447 2.694 5.953 2.694 3.551 0 5.87-1.587 6.956-4.762h9.463c-.961 3.76-2.862 6.747-5.703 8.961-2.841 2.214-6.392 3.321-10.653 3.321-3.342 0-6.309-.73-8.899-2.193-2.59-1.504-4.616-3.593-6.078-6.267-1.463-2.715-2.194-5.87-2.194-9.462ZM475.086 37.02c0 1.253-.084 2.381-.251 3.384h-25.38c.209 2.506 1.086 4.47 2.632 5.89s3.447 2.131 5.703 2.131c3.259 0 5.577-1.4 6.956-4.199h9.463c-1.003 3.343-2.925 6.1-5.766 8.272-2.841 2.131-6.329 3.196-10.465 3.196-3.342 0-6.35-.73-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.848-2.193-9.4 0-3.592.731-6.746 2.193-9.462 1.462-2.716 3.509-4.804 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.246.71 8.836 2.13 2.632 1.421 4.658 3.447 6.079 6.08 1.462 2.59 2.193 5.577 2.193 8.96Zm-9.087-2.507c-.042-2.256-.856-4.052-2.444-5.39-1.587-1.378-3.53-2.067-5.828-2.067-2.172 0-4.01.668-5.514 2.005-1.463 1.295-2.361 3.112-2.695 5.452h16.481Z"
|
|
3524
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3525
|
+
id: "NeetoInvoice_js__a",
|
|
3526
|
+
x1: 24.294,
|
|
3527
|
+
x2: 24.294,
|
|
3528
|
+
y1: 89.943,
|
|
3529
|
+
y2: -1.511,
|
|
3530
|
+
gradientUnits: "userSpaceOnUse"
|
|
3531
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3532
|
+
stopColor: "#46A0D3"
|
|
3533
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3534
|
+
offset: 1,
|
|
3535
|
+
stopColor: "#72DAE0"
|
|
3536
|
+
}))));
|
|
3537
|
+
};
|
|
3538
|
+
|
|
3539
|
+
var _excluded$a = ["width", "height"];
|
|
3540
|
+
var NeetoKb = function NeetoKb(_ref) {
|
|
3541
|
+
var _ref$width = _ref.width,
|
|
3542
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3543
|
+
_ref$height = _ref.height,
|
|
3544
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3545
|
+
props = _objectWithoutProperties(_ref, _excluded$a);
|
|
3546
|
+
|
|
3547
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3548
|
+
width: width,
|
|
3549
|
+
height: height,
|
|
3550
|
+
fill: "none",
|
|
3551
|
+
viewBox: "0 0 338 65"
|
|
3552
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3553
|
+
fill: "url(#NeetoKb_js__a)",
|
|
3554
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3555
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3556
|
+
fill: "#fff",
|
|
3557
|
+
d: "M17.052 23.453c-.59.123-1.293.631-1.777 1.28-.214.285-.466.81-.565 1.16l-.074.272v17.378l.077.242c.326 1.046 1.312 2.02 2.443 2.416l.253.088 3.547.008 3.547.005 1.312-1.364 2.32-2.41c.551-.574.999-1.047.996-1.052-.005-.005-.058.017-.115.044-.058.03-.179.077-.27.107-.156.047-.378.05-4.968.05-5.244 0-4.93.008-5.285-.163a1.616 1.616 0 0 1-.667-.675 1.556 1.556 0 0 1 .014-1.372c.172-.357.606-.709.982-.794.083-.02 1.73-.03 4.928-.03 5.285 0 4.936-.011 5.293.167.223.113.533.423.646.645.134.267.178.478.162.78-.011.247-.028.313-.17.673-.015.035-.015.046.005.027.014-.016.384-.398.82-.85.437-.454 1.162-1.206 1.612-1.67l.816-.846V29.504l-1.983-.011c-1.902-.009-1.993-.011-2.18-.066-.955-.275-1.605-1.068-1.883-2.293-.055-.241-.06-.348-.068-1.993l-.011-1.735-4.783.003c-4.123.003-4.81.008-4.974.044Zm11.667 9.136c.401.105.8.434.983.81a1.489 1.489 0 0 1-.22 1.672 1.515 1.515 0 0 1-.656.434l-.216.077H18.89l-.195-.072c-.804-.293-1.2-1.103-.942-1.93.14-.453.593-.884 1.05-.993.112-.028 1.199-.033 4.946-.036 4.234-.003 4.827.003 4.97.038Z"
|
|
3558
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3559
|
+
fill: "#fff",
|
|
3560
|
+
d: "M28.35 25.031c.01 1.573.01 1.637.07 1.843.146.518.459.952.75 1.035.055.016.821.027 1.93.027h1.834l-.01-.354c-.011-.34-.014-.36-.11-.555-.236-.475-.989-1.252-2.331-2.402-1.134-.972-1.538-1.22-1.997-1.22h-.145l.008 1.626ZM34.645 38.22c-.127.044-.36.223-.703.539l-.231.211 1.016 1.019c.557.557 1.03 1.016 1.046 1.016.02 0 .167-.135.33-.302.337-.338.477-.56.477-.75-.002-.459-.263-.961-.703-1.36-.227-.205-.387-.293-.659-.362-.244-.063-.417-.066-.574-.01ZM31.773 40.885c-.607.601-1.77 1.77-2.59 2.603-1.718 1.747-1.598 1.585-1.883 2.485-.236.745-.33 1.129-.349 1.4-.014.226-.011.24.055.317.063.077.085.082.244.08.226-.003.852-.157 1.486-.371.61-.2.882-.33 1.131-.522.108-.083 1.291-1.252 2.637-2.6l2.444-2.45-1.016-1.017a34.35 34.35 0 0 0-1.035-1.016c-.011 0-.517.492-1.124 1.09Z"
|
|
3561
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3562
|
+
fill: "#11243E",
|
|
3563
|
+
fillRule: "evenodd",
|
|
3564
|
+
d: "M90.087 21.623H73.24l8.335 8.198h8.512c5.364 0 9.708 4.25 9.708 9.488v17.687h8.379V39.309c0-9.77-8.1-17.686-18.087-17.686Zm-9.708 9.391-8.38-8.24v34.222h8.38V31.014Zm64.602 20.198-5.317-5.504-.319.301c-1.845 1.742-4.937 3.425-9.211 3.425-3.004 0-5.32-.749-6.995-2.044-1.546-1.197-2.58-2.887-3.093-4.969h26.9l.02-.412c.282-5.872-1.216-10.97-4.281-14.606-3.071-3.645-7.678-5.78-13.512-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.902 9.503 5.294 12.662 3.391 3.16 8.243 5.023 14.096 5.023 6.837 0 11.264-2.333 14.464-5.485l.302-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.937 3.425-9.211 3.425-3.004 0-5.32-.749-6.995-2.044-1.546-1.197-2.58-2.887-3.093-4.969h26.9l.02-.412c.282-5.872-1.216-10.97-4.281-14.606-3.071-3.645-7.678-5.78-13.512-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.902 9.503 5.294 12.662 3.392 3.16 8.243 5.023 14.096 5.023 6.837 0 11.264-2.333 14.464-5.485l.302-.299Zm10.587-29.292h-5.918v7.555h5.918v13.191c0 5.327.795 8.958 3.05 11.235 2.257 2.281 5.868 3.095 11.178 3.095h1.553v-7.747h-.439c-1.598 0-2.825-.06-3.774-.237-.946-.176-1.575-.462-2.012-.882-.436-.42-.73-1.02-.911-1.923-.183-.907-.244-2.08-.244-3.61V29.475h7.38V21.92h-7.38v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.69.797 6.085 2.097 1.291 1.204 2.112 2.874 2.506 4.836h-17.803c.513-2.15 1.559-3.827 3.021-4.992 1.578-1.256 3.674-1.94 6.191-1.94Zm38.825 0c2.706 0 4.69.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.513-2.15 1.559-3.827 3.021-4.992 1.578-1.256 3.674-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.587 0-9.966-4.566-9.966-10.184 0-5.62 4.379-10.186 9.966-10.186Zm0-7.501c-10.032 0-18.053 7.755-18.053 17.687 0 9.863 8.02 17.686 18.053 17.686 10.031 0 18.122-7.821 18.122-17.686 0-9.934-8.092-17.687-18.122-17.687Z",
|
|
3565
|
+
clipRule: "evenodd"
|
|
3566
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3567
|
+
fill: "#11243E",
|
|
3568
|
+
d: "m280.015 56.737-15.917-19.49v19.49h-8.774V12.996h8.774V32.61l15.917-19.614h10.591l-18.048 21.682 18.549 22.059h-11.092ZM321.027 34.302c2.465.46 4.491 1.692 6.079 3.698 1.587 2.005 2.381 4.303 2.381 6.893 0 2.34-.585 4.407-1.755 6.204-1.128 1.755-2.778 3.133-4.95 4.136-2.173 1.003-4.742 1.504-7.708 1.504h-18.863V12.996h18.048c2.966 0 5.515.48 7.645 1.44 2.173.962 3.802 2.299 4.888 4.012 1.128 1.712 1.692 3.655 1.692 5.828 0 2.548-.689 4.679-2.068 6.392-1.337 1.712-3.133 2.924-5.389 3.634Zm-16.043-3.258h8.022c2.088 0 3.697-.46 4.825-1.38 1.128-.96 1.692-2.318 1.692-4.072 0-1.755-.564-3.113-1.692-4.074-1.128-.96-2.737-1.441-4.825-1.441h-8.022v10.967Zm8.836 18.549c2.131 0 3.781-.501 4.951-1.504 1.211-1.003 1.817-2.423 1.817-4.261 0-1.88-.626-3.343-1.88-4.387-1.253-1.086-2.945-1.63-5.076-1.63h-8.648v11.782h8.836Z"
|
|
3569
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3570
|
+
id: "NeetoKb_js__a",
|
|
3571
|
+
x1: 24.294,
|
|
3572
|
+
x2: 24.294,
|
|
3573
|
+
y1: 90.938,
|
|
3574
|
+
y2: -0.516,
|
|
3575
|
+
gradientUnits: "userSpaceOnUse"
|
|
3576
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3577
|
+
stopColor: "#18C0D3"
|
|
3578
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3579
|
+
offset: 1,
|
|
3580
|
+
stopColor: "#65CDA1"
|
|
3581
|
+
}))));
|
|
3582
|
+
};
|
|
3583
|
+
|
|
3584
|
+
var _excluded$9 = ["width", "height"];
|
|
3585
|
+
var NeetoMonitor = function NeetoMonitor(_ref) {
|
|
3586
|
+
var _ref$width = _ref.width,
|
|
3587
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3588
|
+
_ref$height = _ref.height,
|
|
3589
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3590
|
+
props = _objectWithoutProperties(_ref, _excluded$9);
|
|
3591
|
+
|
|
3592
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3593
|
+
width: width,
|
|
3594
|
+
height: height,
|
|
3595
|
+
fill: "none",
|
|
3596
|
+
viewBox: "0 0 498 65"
|
|
3597
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3598
|
+
fill: "url(#NeetoMonitor_js__a)",
|
|
3599
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3600
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3601
|
+
filter: "url(#NeetoMonitor_js__b)"
|
|
3602
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3603
|
+
fill: "#fff",
|
|
3604
|
+
fillRule: "evenodd",
|
|
3605
|
+
d: "M35.364 30.385c.192.839.293 1.713.293 2.61v11.658h-23.11l10.054-10.054 3.285 3.285a1.399 1.399 0 0 0 1.979 0l7.499-7.5Zm-.901-2.535c-.11.057-.214.133-.307.225l-7.28 7.28-3.286-3.284a1.399 1.399 0 0 0-1.978 0l-9.27 9.269V21.338H24c4.591 0 8.562 2.654 10.463 6.512Z",
|
|
3606
|
+
clipRule: "evenodd"
|
|
3607
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3608
|
+
fill: "#11243E",
|
|
3609
|
+
fillRule: "evenodd",
|
|
3610
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3611
|
+
clipRule: "evenodd"
|
|
3612
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3613
|
+
fill: "#11243E",
|
|
3614
|
+
d: "M303.014 13.385v43.741h-8.774v-28.45l-11.718 28.45h-6.643l-11.781-28.45v28.45h-8.774V13.385h9.964L279.2 45.909l13.912-32.524h9.902ZM326.437 57.69c-3.342 0-6.35-.73-9.024-2.193-2.674-1.504-4.784-3.614-6.33-6.33-1.504-2.715-2.256-5.848-2.256-9.4 0-3.55.773-6.684 2.319-9.4 1.588-2.715 3.739-4.804 6.455-6.266 2.715-1.504 5.744-2.256 9.087-2.256 3.342 0 6.371.752 9.086 2.256 2.716 1.462 4.846 3.551 6.392 6.267 1.588 2.715 2.382 5.849 2.382 9.4 0 3.55-.815 6.684-2.444 9.4a16.659 16.659 0 0 1-6.518 6.329c-2.715 1.462-5.765 2.193-9.149 2.193Zm0-7.645c1.587 0 3.07-.376 4.449-1.128 1.421-.794 2.549-1.964 3.384-3.51.836-1.545 1.253-3.425 1.253-5.64 0-3.3-.877-5.827-2.631-7.582-1.713-1.797-3.823-2.695-6.33-2.695s-4.616.899-6.329 2.695c-1.671 1.755-2.507 4.282-2.507 7.583 0 3.3.815 5.849 2.444 7.645 1.671 1.755 3.76 2.632 6.267 2.632ZM369.555 21.908c4.136 0 7.478 1.316 10.027 3.948 2.548 2.59 3.822 6.224 3.822 10.904v20.366h-8.773V37.95c0-2.757-.689-4.867-2.068-6.33-1.379-1.503-3.259-2.255-5.64-2.255-2.423 0-4.345.752-5.765 2.256-1.379 1.462-2.068 3.572-2.068 6.33v19.175h-8.774V22.41h8.774v4.324c1.17-1.504 2.653-2.674 4.449-3.51 1.838-.877 3.844-1.315 6.016-1.315ZM395.53 18.273c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.236-1.504-3.698 0-1.462.501-2.674 1.504-3.634 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.5 3.823 1.504 1.044.96 1.566 2.172 1.566 3.634 0 1.463-.522 2.695-1.566 3.698-1.003.96-2.277 1.44-3.823 1.44Zm4.324 4.136v34.717h-8.773V22.41h8.773ZM418.07 29.616V46.41c0 1.17.272 2.027.815 2.57.585.5 1.546.752 2.882.752h4.074v7.394h-5.515c-7.395 0-11.092-3.593-11.092-10.778V29.616h-4.136v-7.207h4.136v-8.585h8.836v8.585h7.771v7.207h-7.771ZM446.9 57.69c-3.342 0-6.35-.73-9.024-2.193-2.673-1.504-4.783-3.614-6.329-6.33-1.504-2.715-2.256-5.848-2.256-9.4 0-3.55.773-6.684 2.319-9.4 1.587-2.715 3.739-4.804 6.454-6.266 2.716-1.504 5.745-2.256 9.087-2.256 3.342 0 6.371.752 9.087 2.256 2.715 1.462 4.846 3.551 6.392 6.267 1.587 2.715 2.381 5.849 2.381 9.4 0 3.55-.815 6.684-2.444 9.4a16.656 16.656 0 0 1-6.517 6.329c-2.716 1.462-5.766 2.193-9.15 2.193Zm0-7.645a9.15 9.15 0 0 0 4.45-1.128c1.42-.794 2.548-1.964 3.384-3.51.835-1.545 1.253-3.425 1.253-5.64 0-3.3-.877-5.827-2.632-7.582-1.713-1.797-3.823-2.695-6.329-2.695-2.507 0-4.617.899-6.33 2.695-1.671 1.755-2.506 4.282-2.506 7.583 0 3.3.814 5.849 2.444 7.645 1.671 1.755 3.76 2.632 6.266 2.632ZM479.553 27.798c1.128-1.838 2.591-3.28 4.387-4.324 1.838-1.044 3.927-1.566 6.267-1.566v9.212h-2.319c-2.757 0-4.846.647-6.267 1.942-1.378 1.295-2.068 3.551-2.068 6.768v17.296h-8.773V22.41h8.773v5.39Z"
|
|
3615
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3616
|
+
id: "NeetoMonitor_js__a",
|
|
3617
|
+
x1: 74.229,
|
|
3618
|
+
x2: -27.429,
|
|
3619
|
+
y1: 96.767,
|
|
3620
|
+
y2: -20.662,
|
|
3621
|
+
gradientUnits: "userSpaceOnUse"
|
|
3622
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3623
|
+
offset: 0.469,
|
|
3624
|
+
stopColor: "#46B5C5"
|
|
3625
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3626
|
+
offset: 0.88,
|
|
3627
|
+
stopColor: "#17FFD5"
|
|
3628
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3629
|
+
id: "NeetoMonitor_js__b",
|
|
3630
|
+
width: 29.314,
|
|
3631
|
+
height: 30.314,
|
|
3632
|
+
x: 12.343,
|
|
3633
|
+
y: 21.338,
|
|
3634
|
+
colorInterpolationFilters: "sRGB",
|
|
3635
|
+
filterUnits: "userSpaceOnUse"
|
|
3636
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3637
|
+
floodOpacity: 0,
|
|
3638
|
+
result: "BackgroundImageFix"
|
|
3639
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3640
|
+
in: "SourceAlpha",
|
|
3641
|
+
result: "hardAlpha",
|
|
3642
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3643
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3644
|
+
dx: 3,
|
|
3645
|
+
dy: 4
|
|
3646
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3647
|
+
stdDeviation: 1.5
|
|
3648
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3649
|
+
in2: "hardAlpha",
|
|
3650
|
+
operator: "out"
|
|
3651
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3652
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3653
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3654
|
+
in2: "BackgroundImageFix",
|
|
3655
|
+
result: "effect1_dropShadow_3688_21589"
|
|
3656
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3657
|
+
in: "SourceGraphic",
|
|
3658
|
+
in2: "effect1_dropShadow_3688_21589",
|
|
3659
|
+
result: "shape"
|
|
3660
|
+
}))));
|
|
3661
|
+
};
|
|
3662
|
+
|
|
3663
|
+
var _excluded$8 = ["width", "height"];
|
|
3664
|
+
var NeetoPlanner = function NeetoPlanner(_ref) {
|
|
3665
|
+
var _ref$width = _ref.width,
|
|
3666
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3667
|
+
_ref$height = _ref.height,
|
|
3668
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3669
|
+
props = _objectWithoutProperties(_ref, _excluded$8);
|
|
3670
|
+
|
|
3671
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3672
|
+
width: width,
|
|
3673
|
+
height: height,
|
|
3674
|
+
fill: "none",
|
|
3675
|
+
viewBox: "0 0 491 64"
|
|
3676
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3677
|
+
fill: "url(#NeetoPlanner_js__a)",
|
|
3678
|
+
d: "M48 32C48 18.745 37.255 8 24 8H0v48h48V32Z"
|
|
3679
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3680
|
+
width: 6.002,
|
|
3681
|
+
height: 6.002,
|
|
3682
|
+
x: 10.799,
|
|
3683
|
+
y: 21.2,
|
|
3684
|
+
fill: "#fff",
|
|
3685
|
+
rx: 1.25
|
|
3686
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3687
|
+
width: 6.002,
|
|
3688
|
+
height: 6.002,
|
|
3689
|
+
x: 17.552,
|
|
3690
|
+
y: 21.2,
|
|
3691
|
+
fill: "#fff",
|
|
3692
|
+
rx: 1.25
|
|
3693
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3694
|
+
width: 6.002,
|
|
3695
|
+
height: 6.002,
|
|
3696
|
+
x: 24.302,
|
|
3697
|
+
y: 21.2,
|
|
3698
|
+
fill: "#fff",
|
|
3699
|
+
rx: 1.25
|
|
3700
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3701
|
+
width: 6.002,
|
|
3702
|
+
height: 6.002,
|
|
3703
|
+
x: 31.054,
|
|
3704
|
+
y: 21.2,
|
|
3705
|
+
fill: "#fff",
|
|
3706
|
+
rx: 1.25
|
|
3707
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3708
|
+
width: 6.002,
|
|
3709
|
+
height: 6.002,
|
|
3710
|
+
x: 10.799,
|
|
3711
|
+
y: 27.951,
|
|
3712
|
+
fill: "#fff",
|
|
3713
|
+
rx: 1.25
|
|
3714
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3715
|
+
width: 6.002,
|
|
3716
|
+
height: 6.002,
|
|
3717
|
+
x: 17.552,
|
|
3718
|
+
y: 27.951,
|
|
3719
|
+
fill: "#fff",
|
|
3720
|
+
rx: 1.25
|
|
3721
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3722
|
+
width: 6.002,
|
|
3723
|
+
height: 6.002,
|
|
3724
|
+
x: 24.302,
|
|
3725
|
+
y: 27.951,
|
|
3726
|
+
fill: "#fff",
|
|
3727
|
+
rx: 1.25
|
|
3728
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3729
|
+
width: 6.002,
|
|
3730
|
+
height: 6.002,
|
|
3731
|
+
x: 10.799,
|
|
3732
|
+
y: 34.702,
|
|
3733
|
+
fill: "#fff",
|
|
3734
|
+
rx: 1.25
|
|
3735
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3736
|
+
width: 6.002,
|
|
3737
|
+
height: 6.002,
|
|
3738
|
+
x: 17.552,
|
|
3739
|
+
y: 34.702,
|
|
3740
|
+
fill: "#fff",
|
|
3741
|
+
rx: 1.25
|
|
3742
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
3743
|
+
width: 6.002,
|
|
3744
|
+
height: 6.002,
|
|
3745
|
+
x: 10.799,
|
|
3746
|
+
y: 41.455,
|
|
3747
|
+
fill: "#fff",
|
|
3748
|
+
rx: 1.25
|
|
3749
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3750
|
+
fill: "#11243E",
|
|
3751
|
+
d: "M286.897 25.172c0 2.34-.564 4.533-1.692 6.58-1.086 2.048-2.82 3.698-5.201 4.951-2.34 1.253-5.306 1.88-8.899 1.88h-7.332v16.795H255V11.636h16.105c3.384 0 6.267.585 8.648 1.755 2.382 1.17 4.157 2.778 5.327 4.825 1.212 2.047 1.817 4.366 1.817 6.956Zm-16.168 6.33c2.423 0 4.22-.543 5.39-1.63 1.169-1.128 1.754-2.694 1.754-4.7 0-4.26-2.381-6.392-7.144-6.392h-6.956v12.722h6.956ZM301.233 9.004v46.374h-8.773V9.004h8.773ZM306.978 37.894c0-3.51.69-6.622 2.068-9.338 1.421-2.715 3.322-4.804 5.703-6.266 2.423-1.462 5.118-2.194 8.084-2.194 2.59 0 4.846.523 6.768 1.567 1.964 1.044 3.53 2.36 4.7 3.948v-4.95h8.836v34.717h-8.836v-5.076c-1.128 1.63-2.695 2.987-4.7 4.073-1.964 1.044-4.24 1.567-6.831 1.567-2.924 0-5.598-.752-8.021-2.256-2.381-1.504-4.282-3.614-5.703-6.33-1.378-2.757-2.068-5.911-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.253-5.452-.836-1.546-1.964-2.715-3.384-3.51a8.875 8.875 0 0 0-4.575-1.253 8.887 8.887 0 0 0-4.512 1.191c-1.379.794-2.507 1.964-3.384 3.51-.836 1.503-1.253 3.3-1.253 5.389 0 2.089.417 3.927 1.253 5.514.877 1.546 2.005 2.737 3.384 3.572 1.42.836 2.924 1.254 4.512 1.254a9.233 9.233 0 0 0 4.575-1.19c1.42-.836 2.548-2.006 3.384-3.51.835-1.546 1.253-3.384 1.253-5.515ZM370.278 20.16c4.136 0 7.478 1.315 10.026 3.947 2.549 2.59 3.823 6.225 3.823 10.904v20.367h-8.773V36.202c0-2.758-.69-4.867-2.068-6.33-1.379-1.504-3.259-2.256-5.64-2.256-2.423 0-4.345.752-5.766 2.256-1.378 1.463-2.068 3.572-2.068 6.33v19.176h-8.773V20.66h8.773v4.324c1.17-1.504 2.653-2.673 4.45-3.509 1.838-.877 3.843-1.316 6.016-1.316ZM411.042 20.16c4.136 0 7.478 1.315 10.027 3.947 2.548 2.59 3.822 6.225 3.822 10.904v20.367h-8.773V36.202c0-2.758-.689-4.867-2.068-6.33-1.379-1.504-3.259-2.256-5.64-2.256-2.423 0-4.345.752-5.765 2.256-1.379 1.463-2.068 3.572-2.068 6.33v19.176h-8.774V20.66h8.774v4.324c1.17-1.504 2.653-2.673 4.449-3.509 1.838-.877 3.844-1.316 6.016-1.316ZM464.841 37.267c0 1.253-.083 2.381-.251 3.384h-25.38c.209 2.507 1.087 4.47 2.632 5.89 1.546 1.421 3.447 2.131 5.703 2.131 3.259 0 5.577-1.4 6.956-4.198h9.463c-1.003 3.342-2.925 6.1-5.766 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.731-9.024-2.194-2.632-1.504-4.7-3.613-6.204-6.329-1.462-2.715-2.193-5.849-2.193-9.4 0-3.593.731-6.747 2.193-9.463 1.462-2.715 3.509-4.804 6.141-6.266 2.632-1.462 5.661-2.194 9.087-2.194 3.3 0 6.246.71 8.836 2.131 2.632 1.42 4.658 3.447 6.079 6.079 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.087-2.507c-.041-2.256-.856-4.052-2.444-5.389-1.587-1.379-3.53-2.068-5.828-2.068-2.172 0-4.01.668-5.514 2.005-1.463 1.296-2.361 3.113-2.695 5.452h16.481ZM479.351 26.05c1.128-1.838 2.591-3.28 4.387-4.324 1.838-1.045 3.927-1.567 6.267-1.567v9.212h-2.319c-2.757 0-4.846.648-6.267 1.943-1.378 1.295-2.068 3.55-2.068 6.768v17.296h-8.773V20.66h8.773v5.39Z"
|
|
3752
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3753
|
+
fill: "#11243E",
|
|
3754
|
+
fillRule: "evenodd",
|
|
3755
|
+
d: "M90.087 20.627H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V56h8.38V38.313c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 21.778V56h8.38V30.019Zm64.603 20.198-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.192c0 5.326.796 8.958 3.05 11.235 2.258 2.28 5.868 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V28.479h7.381v-7.555h-7.381V12h-8.401v8.924Zm-65.138 7.189c2.706 0 4.691.797 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.826 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.588 0-9.966-4.566-9.966-10.185 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56 249 48.18 249 38.314c0-9.933-8.091-17.687-18.121-17.687Z",
|
|
3756
|
+
clipRule: "evenodd"
|
|
3757
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3758
|
+
id: "NeetoPlanner_js__a",
|
|
3759
|
+
x1: 24,
|
|
3760
|
+
x2: 24,
|
|
3761
|
+
y1: 8,
|
|
3762
|
+
y2: 56,
|
|
3763
|
+
gradientUnits: "userSpaceOnUse"
|
|
3764
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3765
|
+
stopColor: "#4DC8C3"
|
|
3766
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3767
|
+
offset: 1,
|
|
3768
|
+
stopColor: "#52A9C6"
|
|
3769
|
+
}))));
|
|
3770
|
+
};
|
|
3771
|
+
|
|
3772
|
+
var _excluded$7 = ["width", "height"];
|
|
3773
|
+
var NeetoQuiz = function NeetoQuiz(_ref) {
|
|
3774
|
+
var _ref$width = _ref.width,
|
|
3775
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3776
|
+
_ref$height = _ref.height,
|
|
3777
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3778
|
+
props = _objectWithoutProperties(_ref, _excluded$7);
|
|
3779
|
+
|
|
3780
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3781
|
+
width: width,
|
|
3782
|
+
height: height,
|
|
3783
|
+
fill: "none",
|
|
3784
|
+
viewBox: "0 0 393 65"
|
|
3785
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3786
|
+
fill: "url(#NeetoQuiz_js__a)",
|
|
3787
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3788
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3789
|
+
fill: "#fff",
|
|
3790
|
+
fillRule: "evenodd",
|
|
3791
|
+
clipRule: "evenodd",
|
|
3792
|
+
filter: "url(#NeetoQuiz_js__b)"
|
|
3793
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3794
|
+
d: "M15.897 22.71h4.179c1.097 0 2.184.212 3.198.626a8.367 8.367 0 0 1 2.711 1.785 8.23 8.23 0 0 1 1.812 2.672c.22.526.385 1.071.492 1.628a8.509 8.509 0 0 0-2.617.602 8.372 8.372 0 0 0-2.71 1.773 8.17 8.17 0 0 0-1.812 2.654 8.028 8.028 0 0 0-.637 3.13c0 1.067.189 2.041.527 2.934-1.73.904-3.535 1.635-5.143 2.269V39.18a8.42 8.42 0 0 1-5.91-2.412 8.175 8.175 0 0 1-2.447-5.823c0-2.185.88-4.28 2.448-5.824a8.42 8.42 0 0 1 5.91-2.412Zm12.44 9.528c-.442 2.944-2.38 5.12-4.82 6.8a5.513 5.513 0 0 1-.19-1.458c0-.696.14-1.387.413-2.034a5.36 5.36 0 0 1 1.189-1.74 5.557 5.557 0 0 1 1.8-1.176 5.691 5.691 0 0 1 1.609-.392Z"
|
|
3795
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3796
|
+
d: "M32.907 30.256h-3.789c-.995 0-1.98.19-2.9.561-.919.37-1.754.914-2.458 1.6a7.368 7.368 0 0 0-1.642 2.392 7.207 7.207 0 0 0-.577 2.823c0 5.994 6.63 8.76 11.366 10.604v-3.227c2.01 0 3.937-.778 5.358-2.161a7.278 7.278 0 0 0 2.22-5.216 7.279 7.279 0 0 0-2.22-5.216 7.684 7.684 0 0 0-5.358-2.16Zm-4.154 5.322c-.206.328-.31.653-.31.975 0 .156.065.302.193.437a.656.656 0 0 0 .483.198c.322 0 .54-.191.655-.574.122-.366.271-.642.447-.828.176-.19.45-.284.823-.284.318 0 .577.093.777.28a.894.894 0 0 1 .305.685.765.765 0 0 1-.102.386 1.41 1.41 0 0 1-.243.325c-.095.095-.251.237-.468.427a7.665 7.665 0 0 0-.589.563 1.835 1.835 0 0 0-.35.549 1.872 1.872 0 0 0-.133.736c0 .227.06.398.178.514.122.115.271.172.447.172.339 0 .54-.176.605-.528.037-.166.064-.281.081-.345a1.104 1.104 0 0 1 .234-.417c.07-.081.164-.174.279-.28.416-.372.704-.636.864-.792.162-.159.3-.347.416-.563.119-.217.178-.47.178-.757 0-.366-.104-.705-.31-1.016a2.073 2.073 0 0 0-.869-.737c-.376-.183-.809-.274-1.3-.274-.528 0-.99.108-1.387.325-.396.217-.697.491-.904.823Zm1.626 6.344a.815.815 0 0 0 .543.198c.2 0 .376-.067.528-.203.153-.135.229-.322.229-.559a.731.731 0 0 0-.218-.538.731.731 0 0 0-.539-.218c-.217 0-.4.072-.549.218a.723.723 0 0 0-.223.538c0 .24.076.429.229.564Z"
|
|
3797
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3798
|
+
fill: "#11243E",
|
|
3799
|
+
fillRule: "evenodd",
|
|
3800
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3801
|
+
clipRule: "evenodd"
|
|
3802
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3803
|
+
fill: "#11243E",
|
|
3804
|
+
d: "m287.717 64.834-6.642-7.958c-1.839.46-3.719.689-5.64.689-4.095 0-7.855-.96-11.28-2.883-3.426-1.922-6.142-4.574-8.147-7.958-2.005-3.426-3.008-7.29-3.008-11.594 0-4.261 1.003-8.084 3.008-11.468 2.005-3.425 4.721-6.1 8.147-8.021 3.425-1.922 7.185-2.883 11.28-2.883 4.136 0 7.896.961 11.28 2.883 3.425 1.922 6.12 4.595 8.084 8.021 2.005 3.384 3.008 7.207 3.008 11.468 0 3.886-.836 7.437-2.507 10.654-1.629 3.175-3.864 5.765-6.705 7.77l10.026 11.28h-10.904ZM262.024 35.13c0 2.925.564 5.494 1.692 7.708 1.128 2.215 2.695 3.927 4.7 5.139 2.047 1.17 4.387 1.755 7.019 1.755 2.632 0 4.95-.585 6.956-1.755 2.005-1.212 3.572-2.924 4.7-5.139 1.128-2.214 1.692-4.783 1.692-7.708 0-2.924-.564-5.473-1.692-7.645-1.128-2.214-2.695-3.906-4.7-5.076-2.006-1.17-4.324-1.755-6.956-1.755-2.632 0-4.972.585-7.019 1.755-2.005 1.17-3.572 2.862-4.7 5.076-1.128 2.172-1.692 4.72-1.692 7.645ZM336.564 22.409v34.717h-8.836V52.74c-1.128 1.504-2.611 2.694-4.449 3.572-1.797.835-3.76 1.253-5.891 1.253-2.715 0-5.118-.564-7.206-1.692-2.089-1.17-3.74-2.862-4.951-5.076-1.17-2.256-1.755-4.93-1.755-8.021V22.409h8.774v19.113c0 2.758.689 4.888 2.068 6.392 1.378 1.462 3.258 2.194 5.64 2.194 2.423 0 4.324-.731 5.702-2.194 1.379-1.504 2.068-3.634 2.068-6.392V22.41h8.836ZM349.003 18.273c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.236-1.504-3.698 0-1.462.501-2.674 1.504-3.634 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.5 3.823 1.504 1.044.96 1.567 2.172 1.567 3.634 0 1.463-.523 2.695-1.567 3.698-1.003.96-2.277 1.44-3.823 1.44Zm4.324 4.136v34.717h-8.773V22.41h8.773ZM369.35 49.92h15.479v7.206h-25.443v-7.081l15.165-20.43h-15.102V22.41h25.192v7.081L369.35 49.92Z"
|
|
3805
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3806
|
+
id: "NeetoQuiz_js__a",
|
|
3807
|
+
x1: 48,
|
|
3808
|
+
x2: 6,
|
|
3809
|
+
y1: 79.796,
|
|
3810
|
+
y2: 5.224,
|
|
3811
|
+
gradientUnits: "userSpaceOnUse"
|
|
3812
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3813
|
+
stopColor: "#FA9E9E"
|
|
3814
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3815
|
+
offset: 1,
|
|
3816
|
+
stopColor: "#FE6363"
|
|
3817
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3818
|
+
id: "NeetoQuiz_js__b",
|
|
3819
|
+
width: 38.944,
|
|
3820
|
+
height: 32.526,
|
|
3821
|
+
x: 7.54,
|
|
3822
|
+
y: 22.709,
|
|
3823
|
+
colorInterpolationFilters: "sRGB",
|
|
3824
|
+
filterUnits: "userSpaceOnUse"
|
|
3825
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3826
|
+
floodOpacity: 0,
|
|
3827
|
+
result: "BackgroundImageFix"
|
|
3828
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3829
|
+
in: "SourceAlpha",
|
|
3830
|
+
result: "hardAlpha",
|
|
3831
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3832
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3833
|
+
dx: 3,
|
|
3834
|
+
dy: 4
|
|
3835
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3836
|
+
stdDeviation: 1.5
|
|
3837
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3838
|
+
in2: "hardAlpha",
|
|
3839
|
+
operator: "out"
|
|
3840
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3841
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3842
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3843
|
+
in2: "BackgroundImageFix",
|
|
3844
|
+
result: "effect1_dropShadow_3688_21474"
|
|
3845
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3846
|
+
in: "SourceGraphic",
|
|
3847
|
+
in2: "effect1_dropShadow_3688_21474",
|
|
3848
|
+
result: "shape"
|
|
3849
|
+
}))));
|
|
3850
|
+
};
|
|
3851
|
+
|
|
3852
|
+
var _excluded$6 = ["width", "height"];
|
|
3853
|
+
var NeetoReplay = function NeetoReplay(_ref) {
|
|
3854
|
+
var _ref$width = _ref.width,
|
|
3855
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3856
|
+
_ref$height = _ref.height,
|
|
3857
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3858
|
+
props = _objectWithoutProperties(_ref, _excluded$6);
|
|
3859
|
+
|
|
3860
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3861
|
+
width: width,
|
|
3862
|
+
height: height,
|
|
3863
|
+
fill: "none",
|
|
3864
|
+
viewBox: "0 0 474 74"
|
|
3865
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3866
|
+
fill: "url(#NeetoReplay_js__a)",
|
|
3867
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3868
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3869
|
+
fill: "#fff",
|
|
3870
|
+
filter: "url(#NeetoReplay_js__b)"
|
|
3871
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3872
|
+
d: "M29.198 34.707a.504.504 0 0 1 0 .873l-7.906 4.565a.504.504 0 0 1-.757-.437v-9.13c0-.388.42-.63.757-.436l7.906 4.565ZM35.317 27.735a.548.548 0 0 1-.626.626l-4.308-.669a.548.548 0 0 1-.304-.93l3.64-3.639a.548.548 0 0 1 .93.304l.668 4.308Z"
|
|
3873
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3874
|
+
fillRule: "evenodd",
|
|
3875
|
+
d: "M24.203 23.722c-6.165 0-11.163 4.944-11.163 11.043 0 6.1 4.998 11.044 11.163 11.044 4.45 0 8.296-2.577 10.09-6.311a1.385 1.385 0 0 1 1.835-.647c.688.323.98 1.136.654 1.816a13.932 13.932 0 0 1-12.58 7.868c-7.687 0-13.918-6.165-13.918-13.77 0-7.604 6.231-13.77 13.919-13.77 3.894 0 7.417 1.585 9.942 4.133a1.353 1.353 0 0 1-.02 1.928 1.389 1.389 0 0 1-1.949-.02 11.185 11.185 0 0 0-7.973-3.314Z",
|
|
3876
|
+
clipRule: "evenodd"
|
|
3877
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3878
|
+
fill: "#11243E",
|
|
3879
|
+
fillRule: "evenodd",
|
|
3880
|
+
d: "M90.087 21.996H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V57.37h8.38V39.682c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 23.147v34.222h8.38V31.387Zm64.603 20.199-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.886-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.886-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.238-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.849h7.381v-7.555h-7.381V13.37h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686 10.031 0 18.121-7.821 18.121-17.686 0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3881
|
+
clipRule: "evenodd"
|
|
3882
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3883
|
+
fill: "#11243E",
|
|
3884
|
+
d: "m277.884 57.369-9.65-17.045h-4.136v17.045h-8.774V13.628h16.419c3.384 0 6.267.605 8.648 1.817 2.381 1.17 4.157 2.778 5.327 4.825 1.211 2.006 1.817 4.262 1.817 6.768 0 2.883-.836 5.494-2.507 7.834-1.671 2.297-4.157 3.885-7.457 4.762l10.465 17.735h-10.152Zm-13.786-23.625h7.332c2.381 0 4.156-.564 5.326-1.692 1.17-1.17 1.755-2.779 1.755-4.826 0-2.005-.585-3.55-1.755-4.637-1.17-1.128-2.945-1.692-5.326-1.692h-7.332v12.847ZM327.077 39.258c0 1.254-.084 2.382-.251 3.384h-25.38c.209 2.507 1.086 4.47 2.632 5.89 1.546 1.421 3.447 2.132 5.703 2.132 3.258 0 5.577-1.4 6.956-4.2h9.462c-1.002 3.343-2.924 6.1-5.765 8.273-2.841 2.13-6.329 3.196-10.465 3.196-3.343 0-6.351-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.463-2.715-2.194-5.849-2.194-9.4 0-3.593.731-6.747 2.194-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.246.71 8.836 2.13 2.632 1.42 4.658 3.447 6.078 6.079 1.463 2.59 2.194 5.577 2.194 8.961Zm-9.087-2.506c-.042-2.256-.856-4.053-2.444-5.39-1.588-1.378-3.53-2.068-5.828-2.068-2.172 0-4.011.669-5.515 2.006-1.462 1.295-2.36 3.112-2.694 5.452h16.481ZM341.587 27.665c1.128-1.588 2.674-2.904 4.637-3.948 2.006-1.086 4.283-1.63 6.831-1.63 2.966 0 5.64.732 8.021 2.194 2.424 1.462 4.324 3.551 5.703 6.267 1.421 2.673 2.131 5.786 2.131 9.337s-.71 6.705-2.131 9.463c-1.379 2.715-3.279 4.825-5.703 6.329-2.381 1.504-5.055 2.256-8.021 2.256-2.548 0-4.804-.522-6.768-1.567-1.922-1.044-3.488-2.36-4.7-3.948v21.495h-8.773V22.652h8.773v5.013Zm18.361 12.22c0-2.089-.438-3.885-1.316-5.39-.835-1.545-1.963-2.715-3.384-3.509-1.378-.794-2.882-1.19-4.512-1.19-1.587 0-3.091.417-4.512 1.253-1.378.794-2.506 1.964-3.384 3.51-.835 1.545-1.253 3.362-1.253 5.451 0 2.09.418 3.907 1.253 5.452.878 1.546 2.006 2.737 3.384 3.572a9.114 9.114 0 0 0 4.512 1.19 8.54 8.54 0 0 0 4.512-1.252c1.421-.836 2.549-2.027 3.384-3.572.878-1.546 1.316-3.384 1.316-5.515ZM383.392 10.996v46.373h-8.774V10.996h8.774ZM389.137 39.885c0-3.51.69-6.622 2.068-9.337 1.421-2.716 3.322-4.805 5.703-6.267 2.423-1.462 5.118-2.193 8.084-2.193 2.59 0 4.846.522 6.768 1.566 1.963 1.045 3.53 2.36 4.7 3.948v-4.95h8.836v34.717h-8.836v-5.076c-1.128 1.63-2.695 2.987-4.7 4.073-1.964 1.045-4.241 1.567-6.831 1.567-2.924 0-5.598-.752-8.021-2.256-2.381-1.504-4.282-3.614-5.703-6.33-1.378-2.757-2.068-5.91-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.253-5.452-.836-1.545-1.964-2.715-3.384-3.51a8.875 8.875 0 0 0-4.575-1.252 8.887 8.887 0 0 0-4.512 1.19c-1.379.794-2.507 1.964-3.384 3.51-.836 1.504-1.253 3.3-1.253 5.389 0 2.089.417 3.927 1.253 5.515.877 1.545 2.005 2.736 3.384 3.572 1.42.835 2.924 1.253 4.512 1.253a9.232 9.232 0 0 0 4.575-1.19c1.42-.836 2.548-2.006 3.384-3.51.835-1.546 1.253-3.384 1.253-5.515ZM466.411 22.652l-21.494 51.136h-9.338l7.52-17.296-13.912-33.84h9.839l8.961 24.252 9.087-24.252h9.337Z"
|
|
3885
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3886
|
+
id: "NeetoReplay_js__a",
|
|
3887
|
+
x1: 71.486,
|
|
3888
|
+
x2: -10.629,
|
|
3889
|
+
y1: 92.996,
|
|
3890
|
+
y2: -9.519,
|
|
3891
|
+
gradientUnits: "userSpaceOnUse"
|
|
3892
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3893
|
+
offset: 0.344,
|
|
3894
|
+
stopColor: "#20C7BD"
|
|
3895
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3896
|
+
offset: 0.699,
|
|
3897
|
+
stopColor: "#83D6AE"
|
|
3898
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3899
|
+
id: "NeetoReplay_js__b",
|
|
3900
|
+
width: 32.632,
|
|
3901
|
+
height: 34.54,
|
|
3902
|
+
x: 10.284,
|
|
3903
|
+
y: 20.996,
|
|
3904
|
+
colorInterpolationFilters: "sRGB",
|
|
3905
|
+
filterUnits: "userSpaceOnUse"
|
|
3906
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3907
|
+
floodOpacity: 0,
|
|
3908
|
+
result: "BackgroundImageFix"
|
|
3909
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3910
|
+
in: "SourceAlpha",
|
|
3911
|
+
result: "hardAlpha",
|
|
3912
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3913
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3914
|
+
dx: 3,
|
|
3915
|
+
dy: 4
|
|
3916
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3917
|
+
stdDeviation: 1.5
|
|
3918
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3919
|
+
in2: "hardAlpha",
|
|
3920
|
+
operator: "out"
|
|
3921
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3922
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
3923
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3924
|
+
in2: "BackgroundImageFix",
|
|
3925
|
+
result: "effect1_dropShadow_3688_21574"
|
|
3926
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
3927
|
+
in: "SourceGraphic",
|
|
3928
|
+
in2: "effect1_dropShadow_3688_21574",
|
|
3929
|
+
result: "shape"
|
|
3930
|
+
}))));
|
|
3931
|
+
};
|
|
3932
|
+
|
|
3933
|
+
var _excluded$5 = ["width", "height"];
|
|
3934
|
+
var NeetoRunner = function NeetoRunner(_ref) {
|
|
3935
|
+
var _ref$width = _ref.width,
|
|
3936
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
3937
|
+
_ref$height = _ref.height,
|
|
3938
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
3939
|
+
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
3940
|
+
|
|
3941
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
3942
|
+
width: width,
|
|
3943
|
+
height: height,
|
|
3944
|
+
fill: "none",
|
|
3945
|
+
viewBox: "0 0 483 65"
|
|
3946
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
3947
|
+
fill: "url(#NeetoRunner_js__a)",
|
|
3948
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
3949
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
3950
|
+
filter: "url(#NeetoRunner_js__b)"
|
|
3951
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3952
|
+
fill: "#fff",
|
|
3953
|
+
fillRule: "evenodd",
|
|
3954
|
+
d: "m22.946 20.31-1.742 1.746-8.12 8.137-2.797 2.803 2.797 2.803 8.12 8.136 1.742 1.746v-5.606l-7.065-7.08 7.065-7.078V20.31Zm2.11 19.765 7.064-7.08-7.064-7.079V20.31l1.742 1.746 8.12 8.137 2.797 2.803-2.797 2.803-8.12 8.136-1.742 1.746v-5.606Z",
|
|
3955
|
+
clipRule: "evenodd"
|
|
3956
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
3957
|
+
fill: "#11243E",
|
|
3958
|
+
fillRule: "evenodd",
|
|
3959
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
3960
|
+
clipRule: "evenodd"
|
|
3961
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3962
|
+
fill: "#11243E",
|
|
3963
|
+
d: "m277.56 56.432-9.651-17.046h-4.136v17.046H255V12.69h16.419c3.384 0 6.266.606 8.648 1.818 2.381 1.17 4.157 2.778 5.326 4.825 1.212 2.005 1.818 4.261 1.818 6.768 0 2.883-.836 5.494-2.507 7.833-1.671 2.298-4.157 3.886-7.457 4.763l10.465 17.735H277.56Zm-13.787-23.626h7.332c2.382 0 4.157-.564 5.327-1.692 1.17-1.17 1.755-2.778 1.755-4.825 0-2.005-.585-3.551-1.755-4.637-1.17-1.128-2.945-1.692-5.327-1.692h-7.332v12.846ZM327.254 21.714v34.718h-8.836v-4.387c-1.128 1.504-2.611 2.695-4.449 3.572-1.797.836-3.76 1.253-5.891 1.253-2.716 0-5.118-.564-7.207-1.692-2.089-1.17-3.739-2.861-4.95-5.076-1.17-2.256-1.755-4.93-1.755-8.021V21.714h8.773v19.114c0 2.757.69 4.888 2.068 6.392 1.379 1.462 3.259 2.193 5.64 2.193 2.423 0 4.324-.731 5.703-2.193 1.379-1.504 2.068-3.635 2.068-6.392V21.714h8.836ZM354.482 21.213c4.136 0 7.478 1.316 10.027 3.948 2.548 2.59 3.822 6.225 3.822 10.904v20.367h-8.773V37.256c0-2.758-.689-4.867-2.068-6.33-1.379-1.504-3.259-2.256-5.64-2.256-2.423 0-4.345.752-5.765 2.256-1.379 1.463-2.068 3.572-2.068 6.33v19.176h-8.774V21.714h8.774v4.324c1.17-1.504 2.653-2.674 4.449-3.509 1.838-.877 3.844-1.316 6.016-1.316ZM395.246 21.213c4.136 0 7.479 1.316 10.027 3.948 2.549 2.59 3.823 6.225 3.823 10.904v20.367h-8.774V37.256c0-2.758-.689-4.867-2.068-6.33-1.378-1.504-3.258-2.256-5.64-2.256-2.423 0-4.344.752-5.765 2.256-1.379 1.463-2.068 3.572-2.068 6.33v19.176h-8.773V21.714h8.773v4.324c1.17-1.504 2.653-2.674 4.449-3.509 1.839-.877 3.844-1.316 6.016-1.316ZM449.045 38.321c0 1.253-.083 2.381-.25 3.384h-25.38c.209 2.507 1.086 4.47 2.632 5.89 1.546 1.421 3.446 2.131 5.702 2.131 3.259 0 5.578-1.4 6.956-4.198h9.463c-1.003 3.342-2.924 6.1-5.765 8.272-2.841 2.13-6.33 3.196-10.466 3.196-3.342 0-6.35-.732-9.024-2.194-2.632-1.504-4.7-3.614-6.204-6.329-1.462-2.716-2.193-5.849-2.193-9.4 0-3.593.731-6.747 2.193-9.463 1.463-2.715 3.51-4.804 6.142-6.266 2.632-1.463 5.661-2.194 9.086-2.194 3.301 0 6.246.71 8.836 2.131 2.632 1.42 4.659 3.447 6.079 6.079 1.462 2.59 2.193 5.577 2.193 8.961Zm-9.086-2.507c-.042-2.256-.857-4.052-2.444-5.389-1.588-1.379-3.53-2.068-5.828-2.068-2.173 0-4.011.668-5.515 2.005-1.462 1.295-2.36 3.113-2.695 5.452h16.482ZM463.556 27.104c1.128-1.839 2.59-3.28 4.387-4.324 1.838-1.045 3.927-1.567 6.266-1.567v9.212h-2.318c-2.758 0-4.847.648-6.267 1.943-1.379 1.295-2.068 3.55-2.068 6.768v17.296h-8.773V21.714h8.773v5.39Z"
|
|
3964
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
3965
|
+
id: "NeetoRunner_js__a",
|
|
3966
|
+
x1: 51.771,
|
|
3967
|
+
x2: 7.543,
|
|
3968
|
+
y1: 71.224,
|
|
3969
|
+
y2: 4.71,
|
|
3970
|
+
gradientUnits: "userSpaceOnUse"
|
|
3971
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
3972
|
+
stopColor: "#4B47FF"
|
|
3973
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
3974
|
+
offset: 0.699,
|
|
3975
|
+
stopColor: "#79B3F6"
|
|
3976
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
3977
|
+
id: "NeetoRunner_js__b",
|
|
3978
|
+
width: 33.429,
|
|
3979
|
+
height: 32.371,
|
|
3980
|
+
x: 10.287,
|
|
3981
|
+
y: 20.31,
|
|
3982
|
+
colorInterpolationFilters: "sRGB",
|
|
3983
|
+
filterUnits: "userSpaceOnUse"
|
|
3984
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
3985
|
+
floodOpacity: 0,
|
|
3986
|
+
result: "BackgroundImageFix"
|
|
3987
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
3988
|
+
in: "SourceAlpha",
|
|
3989
|
+
result: "hardAlpha",
|
|
3990
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
3991
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
3992
|
+
dx: 3,
|
|
3993
|
+
dy: 4
|
|
3994
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
3995
|
+
stdDeviation: 1.5
|
|
3996
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
3997
|
+
in2: "hardAlpha",
|
|
3998
|
+
operator: "out"
|
|
3999
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4000
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4001
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4002
|
+
in2: "BackgroundImageFix",
|
|
4003
|
+
result: "effect1_dropShadow_3688_21426"
|
|
4004
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4005
|
+
in: "SourceGraphic",
|
|
4006
|
+
in2: "effect1_dropShadow_3688_21426",
|
|
4007
|
+
result: "shape"
|
|
4008
|
+
}))));
|
|
4009
|
+
};
|
|
4010
|
+
|
|
4011
|
+
var _excluded$4 = ["width", "height"];
|
|
4012
|
+
var NeetoSign = function NeetoSign(_ref) {
|
|
4013
|
+
var _ref$width = _ref.width,
|
|
4014
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
4015
|
+
_ref$height = _ref.height,
|
|
4016
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
4017
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
4018
|
+
|
|
4019
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
4020
|
+
width: width,
|
|
4021
|
+
height: height,
|
|
4022
|
+
fill: "none",
|
|
4023
|
+
viewBox: "0 0 399 74"
|
|
4024
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
4025
|
+
fill: "url(#NeetoSign_js__a)",
|
|
4026
|
+
d: "M56 32C56 18.745 45.255 8 32 8H8v48h48V32Z"
|
|
4027
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4028
|
+
filter: "url(#NeetoSign_js__b)"
|
|
4029
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4030
|
+
fill: "#fff",
|
|
4031
|
+
d: "m34.777 39.856.301-.002c1.361 0 2.076.564 2.958 1.9l.439.679c.342.507.556.719.825.83.483.199.883.101 2.351-.606l.45-.22c.919-.45 1.545-.708 2.253-.885a.836.836 0 1 1 .406 1.623c-.44.11-.862.268-1.414.522l-1.292.621c-1.748.826-2.341.924-3.391.492-.697-.288-1.094-.704-1.674-1.59l-.217-.34c-.671-1.057-1.009-1.353-1.694-1.353l-.177.004c-.483.03-.795.25-2.879 1.797-1.943 1.442-3.425 2.13-5.309 2.13-2.297 0-4.462-.422-6.487-1.265l3.214-.743c1.053.224 2.143.336 3.273.336 1.44 0 2.632-.555 4.312-1.802l1.294-.954c1.418-1.03 1.733-1.158 2.458-1.174ZM41.8 20.03a4.78 4.78 0 0 1 0 6.758l-1.155 1.155c1.284 1.563 1.238 3.22.044 4.418l-3.347 3.346a.836.836 0 0 1-1.182-1.183l3.344-3.345c.541-.542.604-1.216-.044-2.05L27.645 40.943a2.51 2.51 0 0 1-1.21.67l-6.781 1.565a.836.836 0 0 1-1.003-1.003l1.565-6.781a2.51 2.51 0 0 1 .67-1.21l14.155-14.155a4.779 4.779 0 0 1 6.759 0Z"
|
|
4032
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4033
|
+
fill: "#11243E",
|
|
4034
|
+
d: "M80 20.053v35.2h7.528v-27.72h10.186c5.625 0 10.185 4.531 10.185 10.12v17.6h7.528v-17.6c0-9.72-7.93-17.6-17.713-17.6H80Z"
|
|
4035
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4036
|
+
fill: "#11243E",
|
|
4037
|
+
fillRule: "evenodd",
|
|
4038
|
+
d: "M146.177 34.76c-.722-4.579-3.531-7.953-9.149-7.953-5.218 0-8.829 2.89-9.791 7.954h18.94Zm-8.266 13.662c4.414 0 7.624-1.768 9.551-3.616l4.735 4.982c-3.131 3.135-7.463 5.465-14.205 5.465-11.558 0-19.022-7.472-19.022-17.598 0-10.046 7.866-17.602 17.976-17.602 11.477 0 17.978 8.52 17.418 20.334h-27.127c.962 4.902 4.493 8.035 10.674 8.035ZM185.148 34.76c-.722-4.579-3.532-7.953-9.15-7.953-5.218 0-8.829 2.89-9.791 7.954h18.941Zm-8.267 13.662c4.414 0 7.624-1.768 9.551-3.616l4.735 4.982c-3.131 3.135-7.463 5.465-14.205 5.465-11.558 0-19.022-7.472-19.022-17.598 0-10.046 7.867-17.602 17.976-17.602 11.477 0 17.978 8.52 17.418 20.334h-27.127c.962 4.902 4.493 8.035 10.674 8.035ZM196.91 20.357h5.941v-9.104h7.549v9.104h7.409v6.823H210.4v13.828c0 6.255.978 7.226 7.409 7.226v7.02h-1.118c-10.625 0-13.84-3.337-13.84-14.176V27.18h-5.941v-6.823ZM249.544 37.654c0-5.958-4.644-10.831-10.513-10.831-5.871 0-10.444 4.873-10.444 10.83s4.573 10.831 10.444 10.831c5.869 0 10.513-4.874 10.513-10.83Zm-28.193 0c0-9.884 7.85-17.6 17.68-17.6s17.748 7.716 17.748 17.6c0 9.815-7.918 17.6-17.748 17.6-9.83 0-17.68-7.785-17.68-17.6Z",
|
|
4039
|
+
clipRule: "evenodd"
|
|
4040
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4041
|
+
fill: "#11243E",
|
|
4042
|
+
d: "M278.051 56.692c-2.925 0-5.557-.501-7.896-1.504-2.34-1.044-4.178-2.507-5.515-4.387-1.337-1.88-2.005-4.073-2.005-6.58h7.645c.167 1.88.898 3.426 2.193 4.638 1.337 1.211 3.196 1.817 5.578 1.817 2.465 0 4.386-.585 5.765-1.755 1.379-1.211 2.068-2.757 2.068-4.637 0-1.462-.439-2.653-1.316-3.572-.836-.92-1.901-1.63-3.196-2.13-1.253-.502-3.008-1.045-5.264-1.63-2.841-.752-5.16-1.504-6.956-2.256-1.755-.794-3.259-2.005-4.512-3.635-1.253-1.629-1.88-3.801-1.88-6.517 0-2.507.627-4.7 1.88-6.58s3.008-3.321 5.264-4.324c2.256-1.003 4.867-1.504 7.833-1.504 4.22 0 7.667 1.065 10.34 3.196 2.716 2.089 4.22 4.972 4.512 8.648h-7.896c-.125-1.588-.877-2.945-2.256-4.073-1.378-1.128-3.196-1.692-5.452-1.692-2.047 0-3.718.522-5.013 1.566-1.295 1.045-1.943 2.549-1.943 4.512 0 1.337.397 2.444 1.191 3.322.836.835 1.88 1.504 3.133 2.005 1.254.501 2.967 1.044 5.139 1.63 2.883.793 5.222 1.587 7.019 2.38 1.838.794 3.384 2.027 4.637 3.698 1.295 1.63 1.943 3.823 1.943 6.58 0 2.214-.606 4.303-1.818 6.267-1.169 1.963-2.903 3.55-5.201 4.762-2.256 1.17-4.93 1.755-8.021 1.755ZM304.488 17.15c-1.295 0-2.381-.44-3.258-1.317-.878-.877-1.316-1.963-1.316-3.258s.438-2.382 1.316-3.259c.877-.877 1.963-1.316 3.258-1.316 1.254 0 2.319.439 3.196 1.316.878.877 1.316 1.964 1.316 3.259s-.438 2.381-1.316 3.258c-.877.878-1.942 1.316-3.196 1.316Zm3.51 4.574v34.53h-7.144v-34.53h7.144ZM330.622 21.16c2.674 0 5.035.543 7.082 1.63 2.089 1.044 3.718 2.36 4.888 3.947v-5.013h7.206v35.093c0 3.175-.668 5.995-2.005 8.46-1.337 2.507-3.279 4.47-5.828 5.891-2.507 1.42-5.515 2.13-9.024 2.13-4.679 0-8.564-1.106-11.656-3.32-3.091-2.173-4.846-5.14-5.264-8.9h7.081c.544 1.797 1.692 3.238 3.447 4.325 1.797 1.128 3.927 1.692 6.392 1.692 2.883 0 5.201-.878 6.956-2.632 1.797-1.755 2.695-4.303 2.695-7.646v-5.765c-1.212 1.63-2.862 3.008-4.951 4.136-2.047 1.086-4.387 1.63-7.019 1.63-3.008 0-5.765-.753-8.272-2.257-2.464-1.545-4.428-3.676-5.89-6.392-1.421-2.757-2.131-5.87-2.131-9.337 0-3.468.71-6.538 2.131-9.212 1.462-2.674 3.426-4.742 5.89-6.204 2.507-1.504 5.264-2.256 8.272-2.256Zm11.97 17.797c0-2.381-.502-4.449-1.504-6.204-.961-1.754-2.235-3.091-3.823-4.01a10.08 10.08 0 0 0-5.139-1.379c-1.838 0-3.551.46-5.138 1.379-1.588.877-2.883 2.193-3.886 3.948-.96 1.713-1.441 3.76-1.441 6.141 0 2.381.481 4.47 1.441 6.267 1.003 1.796 2.298 3.175 3.886 4.136 1.629.919 3.342 1.378 5.138 1.378 1.839 0 3.552-.46 5.139-1.378 1.588-.92 2.862-2.256 3.823-4.011 1.002-1.796 1.504-3.885 1.504-6.267ZM375.936 21.16c2.716 0 5.139.564 7.27 1.692 2.172 1.128 3.864 2.8 5.076 5.013 1.211 2.215 1.817 4.888 1.817 8.022v20.366h-7.081V36.952c0-3.092-.773-5.452-2.319-7.081-1.546-1.671-3.655-2.507-6.329-2.507s-4.805.836-6.392 2.507c-1.546 1.629-2.319 3.99-2.319 7.081v19.301h-7.144V21.724h7.144v3.948c1.17-1.42 2.653-2.528 4.449-3.321a14.548 14.548 0 0 1 5.828-1.191Z"
|
|
4043
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4044
|
+
stroke: "#11243E",
|
|
4045
|
+
strokeWidth: 0.333,
|
|
4046
|
+
d: "M80 20.053v35.2h7.528v-27.72h10.186c5.625 0 10.185 4.531 10.185 10.12v17.6h7.528v-17.6c0-9.72-7.93-17.6-17.713-17.6H80Z"
|
|
4047
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4048
|
+
stroke: "#11243E",
|
|
4049
|
+
strokeWidth: 0.333,
|
|
4050
|
+
d: "M146.177 34.76c-.722-4.579-3.531-7.953-9.149-7.953-5.218 0-8.829 2.89-9.791 7.954h18.94Zm-8.266 13.662c4.414 0 7.624-1.768 9.551-3.616l4.735 4.982c-3.131 3.135-7.463 5.465-14.205 5.465-11.558 0-19.022-7.472-19.022-17.598 0-10.046 7.866-17.602 17.976-17.602 11.477 0 17.978 8.52 17.418 20.334h-27.127c.962 4.902 4.493 8.035 10.674 8.035ZM185.148 34.76c-.722-4.579-3.532-7.953-9.15-7.953-5.218 0-8.829 2.89-9.791 7.954h18.941Zm-8.267 13.662c4.414 0 7.624-1.768 9.551-3.616l4.735 4.982c-3.131 3.135-7.463 5.465-14.205 5.465-11.558 0-19.022-7.472-19.022-17.598 0-10.046 7.867-17.602 17.976-17.602 11.477 0 17.978 8.52 17.418 20.334h-27.127c.962 4.902 4.493 8.035 10.674 8.035ZM196.91 20.357h5.941v-9.104h7.549v9.104h7.409v6.823H210.4v13.828c0 6.255.978 7.226 7.409 7.226v7.02h-1.118c-10.625 0-13.84-3.337-13.84-14.176V27.18h-5.941v-6.823ZM249.544 37.654c0-5.958-4.644-10.831-10.513-10.831-5.871 0-10.444 4.873-10.444 10.83s4.573 10.831 10.444 10.831c5.869 0 10.513-4.874 10.513-10.83Zm-28.193 0c0-9.884 7.85-17.6 17.68-17.6s17.748 7.716 17.748 17.6c0 9.815-7.918 17.6-17.748 17.6-9.83 0-17.68-7.785-17.68-17.6Z",
|
|
4051
|
+
clipRule: "evenodd"
|
|
4052
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4053
|
+
stroke: "#11243E",
|
|
4054
|
+
strokeWidth: 0.333,
|
|
4055
|
+
d: "M278.051 56.692c-2.925 0-5.557-.501-7.896-1.504-2.34-1.044-4.178-2.507-5.515-4.387-1.337-1.88-2.005-4.073-2.005-6.58h7.645c.167 1.88.898 3.426 2.193 4.638 1.337 1.211 3.196 1.817 5.578 1.817 2.465 0 4.386-.585 5.765-1.755 1.379-1.211 2.068-2.757 2.068-4.637 0-1.462-.439-2.653-1.316-3.572-.836-.92-1.901-1.63-3.196-2.13-1.253-.502-3.008-1.045-5.264-1.63-2.841-.752-5.16-1.504-6.956-2.256-1.755-.794-3.259-2.005-4.512-3.635-1.253-1.629-1.88-3.801-1.88-6.517 0-2.507.627-4.7 1.88-6.58s3.008-3.321 5.264-4.324c2.256-1.003 4.867-1.504 7.833-1.504 4.22 0 7.667 1.065 10.34 3.196 2.716 2.089 4.22 4.972 4.512 8.648h-7.896c-.125-1.588-.877-2.945-2.256-4.073-1.378-1.128-3.196-1.692-5.452-1.692-2.047 0-3.718.522-5.013 1.566-1.295 1.045-1.943 2.549-1.943 4.512 0 1.337.397 2.444 1.191 3.322.836.835 1.88 1.504 3.133 2.005 1.254.501 2.967 1.044 5.139 1.63 2.883.793 5.222 1.587 7.019 2.38 1.838.794 3.384 2.027 4.637 3.698 1.295 1.63 1.943 3.823 1.943 6.58 0 2.214-.606 4.303-1.818 6.267-1.169 1.963-2.903 3.55-5.201 4.762-2.256 1.17-4.93 1.755-8.021 1.755ZM304.488 17.15c-1.295 0-2.381-.44-3.258-1.317-.878-.877-1.316-1.963-1.316-3.258s.438-2.382 1.316-3.259c.877-.877 1.963-1.316 3.258-1.316 1.254 0 2.319.439 3.196 1.316.878.877 1.316 1.964 1.316 3.259s-.438 2.381-1.316 3.258c-.877.878-1.942 1.316-3.196 1.316Zm3.51 4.574v34.53h-7.144v-34.53h7.144ZM330.622 21.16c2.674 0 5.035.543 7.082 1.63 2.089 1.044 3.718 2.36 4.888 3.947v-5.013h7.206v35.093c0 3.175-.668 5.995-2.005 8.46-1.337 2.507-3.279 4.47-5.828 5.891-2.507 1.42-5.515 2.13-9.024 2.13-4.679 0-8.564-1.106-11.656-3.32-3.091-2.173-4.846-5.14-5.264-8.9h7.081c.544 1.797 1.692 3.238 3.447 4.325 1.797 1.128 3.927 1.692 6.392 1.692 2.883 0 5.201-.878 6.956-2.632 1.797-1.755 2.695-4.303 2.695-7.646v-5.765c-1.212 1.63-2.862 3.008-4.951 4.136-2.047 1.086-4.387 1.63-7.019 1.63-3.008 0-5.765-.753-8.272-2.257-2.464-1.545-4.428-3.676-5.89-6.392-1.421-2.757-2.131-5.87-2.131-9.337 0-3.468.71-6.538 2.131-9.212 1.462-2.674 3.426-4.742 5.89-6.204 2.507-1.504 5.264-2.256 8.272-2.256Zm11.97 17.797c0-2.381-.502-4.449-1.504-6.204-.961-1.754-2.235-3.091-3.823-4.01a10.08 10.08 0 0 0-5.139-1.379c-1.838 0-3.551.46-5.138 1.379-1.588.877-2.883 2.193-3.886 3.948-.96 1.713-1.441 3.76-1.441 6.141 0 2.381.481 4.47 1.441 6.267 1.003 1.796 2.298 3.175 3.886 4.136 1.629.919 3.342 1.378 5.138 1.378 1.839 0 3.552-.46 5.139-1.378 1.588-.92 2.862-2.256 3.823-4.011 1.002-1.796 1.504-3.885 1.504-6.267ZM375.936 21.16c2.716 0 5.139.564 7.27 1.692 2.172 1.128 3.864 2.8 5.076 5.013 1.211 2.215 1.817 4.888 1.817 8.022v20.366h-7.081V36.952c0-3.092-.773-5.452-2.319-7.081-1.546-1.671-3.655-2.507-6.329-2.507s-4.805.836-6.392 2.507c-1.546 1.629-2.319 3.99-2.319 7.081v19.301h-7.144V21.724h7.144v3.948c1.17-1.42 2.653-2.528 4.449-3.321a14.548 14.548 0 0 1 5.828-1.191Z"
|
|
4056
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
4057
|
+
id: "NeetoSign_js__a",
|
|
4058
|
+
x1: 56,
|
|
4059
|
+
x2: -0.229,
|
|
4060
|
+
y1: 65.771,
|
|
4061
|
+
y2: -3.657,
|
|
4062
|
+
gradientUnits: "userSpaceOnUse"
|
|
4063
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
4064
|
+
stopColor: "#698EEF"
|
|
4065
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
4066
|
+
offset: 1,
|
|
4067
|
+
stopColor: "#59CBEF"
|
|
4068
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
4069
|
+
id: "NeetoSign_js__b",
|
|
4070
|
+
width: 32.765,
|
|
4071
|
+
height: 33.829,
|
|
4072
|
+
x: 18.629,
|
|
4073
|
+
y: 18.629,
|
|
4074
|
+
colorInterpolationFilters: "sRGB",
|
|
4075
|
+
filterUnits: "userSpaceOnUse"
|
|
4076
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
4077
|
+
floodOpacity: 0,
|
|
4078
|
+
result: "BackgroundImageFix"
|
|
4079
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4080
|
+
in: "SourceAlpha",
|
|
4081
|
+
result: "hardAlpha",
|
|
4082
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
4083
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
4084
|
+
dx: 3,
|
|
4085
|
+
dy: 4
|
|
4086
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
4087
|
+
stdDeviation: 1.5
|
|
4088
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
4089
|
+
in2: "hardAlpha",
|
|
4090
|
+
operator: "out"
|
|
4091
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4092
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4093
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4094
|
+
in2: "BackgroundImageFix",
|
|
4095
|
+
result: "effect1_dropShadow_3240_12735"
|
|
4096
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4097
|
+
in: "SourceGraphic",
|
|
4098
|
+
in2: "effect1_dropShadow_3240_12735",
|
|
4099
|
+
result: "shape"
|
|
4100
|
+
}))));
|
|
4101
|
+
};
|
|
4102
|
+
|
|
4103
|
+
var _excluded$3 = ["width", "height"];
|
|
4104
|
+
var NeetoSite = function NeetoSite(_ref) {
|
|
4105
|
+
var _ref$width = _ref.width,
|
|
4106
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
4107
|
+
_ref$height = _ref.height,
|
|
4108
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
4109
|
+
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
4110
|
+
|
|
4111
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
4112
|
+
width: width,
|
|
4113
|
+
height: height,
|
|
4114
|
+
fill: "none",
|
|
4115
|
+
viewBox: "0 0 374 65"
|
|
4116
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
4117
|
+
fill: "url(#NeetoSite_js__a)",
|
|
4118
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
4119
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4120
|
+
filter: "url(#NeetoSite_js__b)"
|
|
4121
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4122
|
+
fill: "#fff",
|
|
4123
|
+
fillRule: "evenodd",
|
|
4124
|
+
d: "m34.137 22.402.033-.035H11.12c-.65 0-1.177.526-1.177 1.177v1.804H29.4v.314H9.943v17.023c0 .65.527 1.177 1.177 1.177h25.418c.65 0 1.176-.527 1.176-1.177V25.847l-3.577-3.445Zm-.767.796-6.897 7.162 3.713 3.576 6.898-7.162-3.714-3.576Zm-7.644 7.977-1.228 4.953 4.903-1.414-3.675-3.54Zm-13.43-7.24a.47.47 0 1 1-.94 0 .47.47 0 0 1 .94 0Zm.943.47a.47.47 0 1 0 0-.94.47.47 0 0 0 0 .94Zm1.882-.47a.47.47 0 1 1-.941 0 .47.47 0 0 1 .941 0Z",
|
|
4125
|
+
clipRule: "evenodd"
|
|
4126
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4127
|
+
fill: "#11243E",
|
|
4128
|
+
fillRule: "evenodd",
|
|
4129
|
+
d: "M90.087 21.623H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488v17.687h8.38V39.309c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.391L72 22.774v34.222h8.38V31.014Zm64.603 20.198-5.318-5.504-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.749-6.995-2.044-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.073 1.903 9.503 5.295 12.662 3.391 3.16 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553v-7.747h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.08-.244-3.61V29.475h7.381V21.92h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.755-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 56.996 249 49.175 249 39.31c0-9.934-8.091-17.687-18.121-17.687Z",
|
|
4130
|
+
clipRule: "evenodd"
|
|
4131
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4132
|
+
fill: "#11243E",
|
|
4133
|
+
d: "M270.231 56.87c-3.05 0-5.807-.522-8.272-1.566-2.423-1.045-4.345-2.549-5.766-4.512-1.42-1.964-2.151-4.283-2.193-6.956h9.4c.125 1.796.752 3.217 1.88 4.26 1.17 1.045 2.757 1.568 4.763 1.568 2.047 0 3.655-.48 4.825-1.442 1.17-1.002 1.755-2.297 1.755-3.885 0-1.295-.397-2.36-1.191-3.196-.794-.836-1.796-1.483-3.008-1.943-1.17-.501-2.799-1.044-4.888-1.63-2.841-.835-5.16-1.65-6.956-2.443-1.755-.836-3.28-2.068-4.575-3.697-1.253-1.672-1.88-3.886-1.88-6.643 0-2.59.648-4.846 1.943-6.768 1.295-1.922 3.112-3.384 5.452-4.387 2.34-1.044 5.013-1.566 8.021-1.566 4.512 0 8.168 1.107 10.967 3.32 2.841 2.173 4.408 5.223 4.7 9.15h-9.651c-.083-1.504-.731-2.736-1.942-3.697-1.17-1.003-2.737-1.504-4.7-1.504-1.713 0-3.092.439-4.136 1.316-1.003.877-1.504 2.151-1.504 3.823 0 1.17.376 2.151 1.128 2.945.793.752 1.754 1.379 2.882 1.88 1.17.46 2.799 1.003 4.888 1.63 2.841.835 5.16 1.67 6.956 2.506 1.797.836 3.343 2.089 4.638 3.76 1.295 1.671 1.942 3.864 1.942 6.58 0 2.34-.605 4.512-1.817 6.517-1.212 2.006-2.987 3.614-5.327 4.826-2.339 1.17-5.117 1.754-8.334 1.754ZM297.098 17.578c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.235-1.504-3.697 0-1.463.501-2.674 1.504-3.635 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.501 3.823 1.504 1.044.96 1.566 2.172 1.566 3.635 0 1.462-.522 2.694-1.566 3.697-1.003.96-2.277 1.441-3.823 1.441Zm4.324 4.136v34.718h-8.773V21.714h8.773ZM319.638 28.92v16.796c0 1.17.272 2.026.815 2.569.585.501 1.546.752 2.883.752h4.073v7.395h-5.515c-7.394 0-11.092-3.593-11.092-10.78V28.922h-4.136v-7.207h4.136V13.13h8.836v8.585h7.771v7.207h-7.771ZM365.326 38.32c0 1.254-.084 2.382-.251 3.385h-25.38c.209 2.507 1.086 4.47 2.632 5.89 1.546 1.421 3.447 2.131 5.703 2.131 3.258 0 5.577-1.4 6.956-4.198h9.462c-1.002 3.342-2.924 6.1-5.765 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.732-9.024-2.194-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.194-5.848-2.194-9.4 0-3.592.732-6.746 2.194-9.462 1.462-2.715 3.509-4.804 6.141-6.266 2.632-1.463 5.661-2.194 9.087-2.194 3.3 0 6.246.71 8.836 2.13 2.632 1.421 4.658 3.448 6.078 6.08 1.463 2.59 2.194 5.577 2.194 8.96Zm-9.087-2.506c-.042-2.256-.856-4.052-2.444-5.39-1.587-1.378-3.53-2.067-5.828-2.067-2.172 0-4.011.668-5.515 2.005-1.462 1.295-2.36 3.113-2.694 5.452h16.481Z"
|
|
4134
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
4135
|
+
id: "NeetoSite_js__a",
|
|
4136
|
+
x1: -5.143,
|
|
4137
|
+
x2: 69.429,
|
|
4138
|
+
y1: -4.204,
|
|
4139
|
+
y2: 94.024,
|
|
4140
|
+
gradientUnits: "userSpaceOnUse"
|
|
4141
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
4142
|
+
offset: 0.374,
|
|
4143
|
+
stopColor: "#8176FF"
|
|
4144
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
4145
|
+
offset: 1,
|
|
4146
|
+
stopColor: "#41BBFF"
|
|
4147
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
4148
|
+
id: "NeetoSite_js__b",
|
|
4149
|
+
width: 33.772,
|
|
4150
|
+
height: 28.495,
|
|
4151
|
+
x: 9.943,
|
|
4152
|
+
y: 22.367,
|
|
4153
|
+
colorInterpolationFilters: "sRGB",
|
|
4154
|
+
filterUnits: "userSpaceOnUse"
|
|
4155
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
4156
|
+
floodOpacity: 0,
|
|
4157
|
+
result: "BackgroundImageFix"
|
|
4158
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4159
|
+
in: "SourceAlpha",
|
|
4160
|
+
result: "hardAlpha",
|
|
4161
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
4162
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
4163
|
+
dx: 3,
|
|
4164
|
+
dy: 4
|
|
4165
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
4166
|
+
stdDeviation: 1.5
|
|
4167
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
4168
|
+
in2: "hardAlpha",
|
|
4169
|
+
operator: "out"
|
|
4170
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4171
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4172
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4173
|
+
in2: "BackgroundImageFix",
|
|
4174
|
+
result: "effect1_dropShadow_3688_21491"
|
|
4175
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4176
|
+
in: "SourceGraphic",
|
|
4177
|
+
in2: "effect1_dropShadow_3688_21491",
|
|
4178
|
+
result: "shape"
|
|
4179
|
+
}))));
|
|
4180
|
+
};
|
|
4181
|
+
|
|
4182
|
+
var _excluded$2 = ["width", "height"];
|
|
4183
|
+
var NeetoSocial = function NeetoSocial(_ref) {
|
|
4184
|
+
var _ref$width = _ref.width,
|
|
4185
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
4186
|
+
_ref$height = _ref.height,
|
|
4187
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
4188
|
+
props = _objectWithoutProperties(_ref, _excluded$2);
|
|
4189
|
+
|
|
4190
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
4191
|
+
width: width,
|
|
4192
|
+
height: height,
|
|
4193
|
+
fill: "none",
|
|
4194
|
+
viewBox: "0 0 445 69"
|
|
4195
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
4196
|
+
fill: "url(#NeetoSocial_js__a)",
|
|
4197
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
4198
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4199
|
+
filter: "url(#NeetoSocial_js__b)"
|
|
4200
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4201
|
+
fill: "#fff",
|
|
4202
|
+
d: "M37.31 27.839a4.803 4.803 0 0 0-4.808-4.787H15.78a4.8 4.8 0 0 0-4.808 4.814l.04 12.798a4.801 4.801 0 0 0 4.81 4.785h4.739l2.256 3.234a1.624 1.624 0 0 0 2.66.005l2.28-3.238h4.786a4.798 4.798 0 0 0 4.808-4.811l-.04-12.8Zm-13.15-1.934a4.486 4.486 0 1 1 .001 8.971 4.486 4.486 0 0 1 0-8.971Zm7.144 15.676c0 .553-.448 1-1.001 1H18.017a1.002 1.002 0 0 1-1.002-1.001 4.542 4.542 0 0 1 4.536-4.552h5.221c1.206 0 2.356.482 3.209 1.335a4.545 4.545 0 0 1 1.323 3.218Z"
|
|
4203
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4204
|
+
fill: "#11243E",
|
|
4205
|
+
fillRule: "evenodd",
|
|
4206
|
+
d: "M90.087 21.627H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V57h8.38V39.313c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 22.778V57h8.38V31.019Zm64.603 20.198-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.192c0 5.326.796 8.958 3.05 11.235 2.258 2.28 5.868 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V29.479h7.381v-7.555h-7.381V13h-8.401v8.924Zm-65.138 7.189c2.706 0 4.691.797 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.826 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.588 0-9.966-4.566-9.966-10.185 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 57 249 49.18 249 39.314c0-9.933-8.091-17.687-18.121-17.687Z",
|
|
4207
|
+
clipRule: "evenodd"
|
|
4208
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4209
|
+
fill: "#11243E",
|
|
4210
|
+
d: "M271.231 56.57c-3.05 0-5.807-.523-8.272-1.567-2.423-1.045-4.345-2.549-5.766-4.512-1.42-1.964-2.151-4.283-2.193-6.956h9.4c.125 1.796.752 3.217 1.88 4.261 1.17 1.044 2.757 1.567 4.763 1.567 2.047 0 3.655-.48 4.825-1.442 1.17-1.002 1.755-2.297 1.755-3.885 0-1.295-.397-2.36-1.191-3.196-.794-.836-1.796-1.483-3.008-1.943-1.17-.501-2.799-1.044-4.888-1.629-2.841-.836-5.16-1.65-6.956-2.444-1.755-.836-3.28-2.068-4.575-3.697-1.253-1.671-1.88-3.886-1.88-6.643 0-2.59.648-4.846 1.943-6.768 1.295-1.922 3.112-3.384 5.452-4.387 2.34-1.044 5.013-1.566 8.021-1.566 4.512 0 8.168 1.107 10.967 3.321 2.841 2.172 4.408 5.222 4.7 9.15h-9.651c-.083-1.505-.731-2.737-1.942-3.698-1.17-1.003-2.737-1.504-4.7-1.504-1.713 0-3.092.439-4.136 1.316-1.003.877-1.504 2.152-1.504 3.823 0 1.17.376 2.151 1.128 2.945.793.752 1.754 1.379 2.882 1.88 1.17.46 2.799 1.003 4.888 1.63 2.841.835 5.16 1.67 6.956 2.506 1.797.836 3.343 2.089 4.638 3.76 1.295 1.671 1.942 3.864 1.942 6.58 0 2.34-.605 4.512-1.817 6.517-1.212 2.006-2.987 3.614-5.327 4.826-2.339 1.17-5.117 1.754-8.334 1.754ZM309.065 56.695c-3.342 0-6.35-.731-9.024-2.194-2.674-1.504-4.784-3.613-6.33-6.329-1.504-2.716-2.256-5.849-2.256-9.4s.773-6.684 2.319-9.4c1.588-2.716 3.739-4.804 6.455-6.267 2.715-1.504 5.744-2.256 9.086-2.256 3.343 0 6.372.752 9.087 2.256 2.716 1.463 4.846 3.551 6.392 6.267 1.588 2.716 2.381 5.849 2.381 9.4s-.814 6.684-2.444 9.4a16.643 16.643 0 0 1-6.517 6.33c-2.715 1.462-5.765 2.193-9.149 2.193Zm0-7.646a9.145 9.145 0 0 0 4.449-1.128c1.421-.793 2.549-1.963 3.384-3.509.836-1.546 1.254-3.426 1.254-5.64 0-3.3-.878-5.828-2.632-7.583-1.713-1.796-3.823-2.694-6.33-2.694s-4.616.898-6.329 2.694c-1.671 1.755-2.507 4.283-2.507 7.583s.815 5.849 2.444 7.645c1.671 1.755 3.76 2.632 6.267 2.632ZM330.688 38.772c0-3.593.732-6.726 2.194-9.4 1.462-2.716 3.488-4.804 6.078-6.267 2.591-1.504 5.557-2.256 8.899-2.256 4.303 0 7.854 1.087 10.653 3.259 2.841 2.13 4.742 5.139 5.703 9.024h-9.463c-.501-1.504-1.357-2.674-2.569-3.51-1.17-.877-2.632-1.315-4.387-1.315-2.506 0-4.491.919-5.953 2.757-1.462 1.796-2.193 4.366-2.193 7.708 0 3.3.731 5.87 2.193 7.708 1.462 1.796 3.447 2.695 5.953 2.695 3.552 0 5.87-1.588 6.956-4.763h9.463c-.961 3.76-2.862 6.747-5.703 8.961-2.84 2.215-6.392 3.322-10.653 3.322-3.342 0-6.308-.731-8.899-2.194-2.59-1.504-4.616-3.593-6.078-6.266-1.462-2.716-2.194-5.87-2.194-9.463ZM374.425 17.277c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.235-1.504-3.697 0-1.463.501-2.674 1.504-3.635C371.584 7.501 372.879 7 374.425 7c1.546 0 2.82.501 3.823 1.504 1.044.96 1.566 2.172 1.566 3.635 0 1.462-.522 2.694-1.566 3.697-1.003.96-2.277 1.441-3.823 1.441Zm4.324 4.136v34.718h-8.773V21.413h8.773ZM384.494 38.647c0-3.51.69-6.622 2.068-9.338 1.421-2.715 3.322-4.804 5.703-6.266 2.423-1.463 5.118-2.194 8.084-2.194 2.59 0 4.846.523 6.768 1.567 1.964 1.044 3.53 2.36 4.7 3.948v-4.95h8.836V56.13h-8.836v-5.076c-1.128 1.629-2.695 2.987-4.7 4.073-1.963 1.044-4.24 1.567-6.831 1.567-2.924 0-5.598-.752-8.021-2.256-2.381-1.504-4.282-3.614-5.703-6.33-1.378-2.757-2.068-5.911-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.253-5.452-.836-1.546-1.964-2.716-3.384-3.51a8.874 8.874 0 0 0-4.575-1.253 8.887 8.887 0 0 0-4.512 1.191c-1.379.794-2.507 1.964-3.384 3.51-.835 1.503-1.253 3.3-1.253 5.389 0 2.089.418 3.927 1.253 5.514.877 1.546 2.005 2.737 3.384 3.572 1.421.836 2.925 1.254 4.512 1.254a9.232 9.232 0 0 0 4.575-1.191c1.42-.836 2.548-2.005 3.384-3.51.835-1.545 1.253-3.383 1.253-5.514ZM437.328 9.757v46.374h-8.773V9.757h8.773Z"
|
|
4211
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
4212
|
+
id: "NeetoSocial_js__a",
|
|
4213
|
+
x1: 57.771,
|
|
4214
|
+
x2: -8.229,
|
|
4215
|
+
y1: 80.824,
|
|
4216
|
+
y2: -2.662,
|
|
4217
|
+
gradientUnits: "userSpaceOnUse"
|
|
4218
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
4219
|
+
stopColor: "#81D2F4"
|
|
4220
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
4221
|
+
offset: 1,
|
|
4222
|
+
stopColor: "#4A9CE9"
|
|
4223
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
4224
|
+
id: "NeetoSocial_js__b",
|
|
4225
|
+
width: 32.379,
|
|
4226
|
+
height: 33.326,
|
|
4227
|
+
x: 10.972,
|
|
4228
|
+
y: 23.052,
|
|
4229
|
+
colorInterpolationFilters: "sRGB",
|
|
4230
|
+
filterUnits: "userSpaceOnUse"
|
|
4231
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
4232
|
+
floodOpacity: 0,
|
|
4233
|
+
result: "BackgroundImageFix"
|
|
4234
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4235
|
+
in: "SourceAlpha",
|
|
4236
|
+
result: "hardAlpha",
|
|
4237
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
4238
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
4239
|
+
dx: 3,
|
|
4240
|
+
dy: 4
|
|
4241
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
4242
|
+
stdDeviation: 1.5
|
|
4243
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
4244
|
+
in2: "hardAlpha",
|
|
4245
|
+
operator: "out"
|
|
4246
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4247
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4248
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4249
|
+
in2: "BackgroundImageFix",
|
|
4250
|
+
result: "effect1_dropShadow_3688_21544"
|
|
4251
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4252
|
+
in: "SourceGraphic",
|
|
4253
|
+
in2: "effect1_dropShadow_3688_21544",
|
|
4254
|
+
result: "shape"
|
|
4255
|
+
}))));
|
|
4256
|
+
};
|
|
4257
|
+
|
|
4258
|
+
var _excluded$1 = ["width", "height"];
|
|
4259
|
+
var NeetoTestify = function NeetoTestify(_ref) {
|
|
4260
|
+
var _ref$width = _ref.width,
|
|
4261
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
4262
|
+
_ref$height = _ref.height,
|
|
4263
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
4264
|
+
props = _objectWithoutProperties(_ref, _excluded$1);
|
|
4265
|
+
|
|
4266
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
4267
|
+
width: width,
|
|
4268
|
+
height: height,
|
|
4269
|
+
fill: "none",
|
|
4270
|
+
viewBox: "0 0 465 74"
|
|
4271
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
4272
|
+
fill: "url(#NeetoTestify_js__a)",
|
|
4273
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
4274
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4275
|
+
fill: "#fff",
|
|
4276
|
+
filter: "url(#NeetoTestify_js__b)"
|
|
4277
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4278
|
+
d: "m38.259 46.368-3.78-3.735a9.485 9.485 0 0 1-1.358 1.708 9.555 9.555 0 0 1-1.727 1.37l3.802 3.757a2.177 2.177 0 0 0 3.08-.02c.85-.85.84-2.234-.017-3.08Z"
|
|
4279
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4280
|
+
fillRule: "evenodd",
|
|
4281
|
+
d: "M22.855 44.53c5.781 0 10.436-4.654 10.436-10.357 0-5.703-4.655-10.358-10.436-10.358-5.782 0-10.437 4.655-10.437 10.358S17.073 44.53 22.855 44.53Zm0 3.163c7.51 0 13.6-6.053 13.6-13.52s-6.09-13.52-13.6-13.52c-7.511 0-13.6 6.053-13.6 13.52s6.089 13.52 13.6 13.52Z",
|
|
4282
|
+
clipRule: "evenodd"
|
|
4283
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4284
|
+
d: "m27.258 29.48-1.4 1.388 2.592 3.226-2.591 3.23 1.4 1.388 3.662-4.618-3.663-4.614Zm-7.088 1.384-1.4-1.387-3.663 4.617 3.663 4.614 1.4-1.388-2.592-3.226 2.592-3.23Zm.867 8.132h1.977l1.977-9.804h-1.977l-1.976 9.804Z"
|
|
4285
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4286
|
+
fill: "#11243E",
|
|
4287
|
+
fillRule: "evenodd",
|
|
4288
|
+
d: "M90.087 21.753H73.24l8.336 8.198h8.511c5.364 0 9.708 4.251 9.708 9.489v17.687h8.38V39.44c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 22.905v34.222h8.38V31.145Zm64.603 20.198-5.318-5.504-.318.3c-1.845 1.743-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.043-1.547-1.197-2.581-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.607-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.689 0 5.073 1.903 9.503 5.295 12.662 3.391 3.159 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm38.825 0-5.317-5.504-.319.3c-1.845 1.743-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.043-1.547-1.197-2.58-2.887-3.093-4.969h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.607-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.689 0 5.073 1.903 9.503 5.295 12.662 3.391 3.159 8.242 5.023 14.096 5.023 6.836 0 11.264-2.333 14.463-5.485l.303-.299Zm10.586-29.292h-5.918v7.555h5.918v13.191c0 5.327.796 8.958 3.05 11.235 2.258 2.281 5.868 3.095 11.179 3.095h1.553V49.38h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.907-.244-2.081-.244-3.61V29.605h7.381v-7.554h-7.381v-8.924h-8.401v8.924Zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.828 3.022-4.992 1.577-1.256 3.673-1.94 6.19-1.94Zm38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.828 3.022-4.992 1.577-1.256 3.673-1.94 6.191-1.94Zm62.798.016c5.59 0 10.034 4.57 10.034 10.186 0 5.614-4.444 10.184-10.034 10.184-5.588 0-9.966-4.566-9.966-10.184 0-5.62 4.378-10.186 9.966-10.186Zm0-7.502c-10.033 0-18.054 7.756-18.054 17.688 0 9.863 8.02 17.685 18.054 17.685 10.031 0 18.121-7.82 18.121-17.685 0-9.934-8.091-17.688-18.121-17.688Z",
|
|
4289
|
+
clipRule: "evenodd"
|
|
4290
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4291
|
+
fill: "#11243E",
|
|
4292
|
+
d: "M285.091 13.385v7.081h-11.656v36.66h-8.773v-36.66h-11.656v-7.081h32.085ZM323.099 39.016c0 1.253-.083 2.38-.251 3.384h-25.38c.209 2.506 1.087 4.47 2.632 5.89 1.546 1.42 3.447 2.13 5.703 2.13 3.259 0 5.577-1.399 6.956-4.198h9.463c-1.003 3.343-2.925 6.1-5.766 8.272-2.84 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.73-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.193-5.848-2.193-9.4 0-3.592.731-6.747 2.193-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.301 0 6.246.71 8.836 2.13 2.632 1.421 4.658 3.447 6.079 6.08 1.462 2.59 2.193 5.577 2.193 8.96Zm-9.087-2.507c-.041-2.256-.856-4.053-2.444-5.39-1.587-1.378-3.53-2.067-5.828-2.067-2.172 0-4.01.668-5.514 2.005-1.462 1.295-2.361 3.112-2.695 5.452h16.481ZM342.122 57.69c-2.841 0-5.39-.501-7.646-1.504-2.256-1.044-4.052-2.444-5.389-4.198-1.295-1.755-2.005-3.698-2.131-5.828h8.836c.167 1.337.815 2.444 1.943 3.32 1.17.878 2.611 1.317 4.324 1.317 1.671 0 2.966-.334 3.885-1.003.961-.668 1.442-1.525 1.442-2.57 0-1.127-.585-1.963-1.755-2.506-1.128-.585-2.945-1.211-5.452-1.88-2.59-.626-4.721-1.274-6.392-1.942-1.629-.669-3.05-1.692-4.261-3.071-1.17-1.379-1.755-3.238-1.755-5.577a9.12 9.12 0 0 1 1.629-5.264c1.128-1.588 2.716-2.841 4.763-3.76 2.089-.92 4.533-1.38 7.332-1.38 4.136 0 7.436 1.045 9.901 3.134 2.465 2.047 3.823 4.826 4.074 8.335h-8.398c-.125-1.379-.71-2.465-1.754-3.259-1.003-.835-2.361-1.253-4.074-1.253-1.587 0-2.82.292-3.697.877-.836.585-1.253 1.4-1.253 2.444 0 1.17.584 2.068 1.754 2.695 1.17.585 2.987 1.19 5.452 1.817 2.507.627 4.575 1.274 6.204 1.943 1.63.668 3.029 1.713 4.199 3.133 1.211 1.379 1.838 3.217 1.88 5.515 0 2.005-.564 3.802-1.692 5.39-1.086 1.587-2.674 2.84-4.763 3.76-2.047.877-4.449 1.315-7.206 1.315ZM372.533 29.616V46.41c0 1.17.271 2.027.814 2.57.585.5 1.546.752 2.883.752h4.073v7.394h-5.514c-7.395 0-11.092-3.593-11.092-10.778V29.616h-4.136v-7.207h4.136v-8.585h8.836v8.585h7.77v7.207h-7.77ZM390.396 18.273c-1.546 0-2.841-.48-3.885-1.441-1.003-1.003-1.504-2.236-1.504-3.698 0-1.462.501-2.674 1.504-3.634 1.044-1.003 2.339-1.504 3.885-1.504 1.546 0 2.82.5 3.823 1.504 1.044.96 1.567 2.172 1.567 3.634 0 1.463-.523 2.695-1.567 3.698-1.003.96-2.277 1.44-3.823 1.44Zm4.324 4.136v34.717h-8.773V22.41h8.773ZM418.639 29.616h-6.079v27.51h-8.898v-27.51h-3.948v-7.207h3.948v-1.755c0-4.261 1.211-7.394 3.634-9.4 2.423-2.005 6.079-2.945 10.967-2.82v7.395c-2.131-.042-3.614.313-4.449 1.065-.836.752-1.254 2.11-1.254 4.074v1.44h6.079v7.208ZM456.871 22.409l-21.494 51.136h-9.338l7.52-17.296-13.912-33.84h9.839l8.961 24.252 9.087-24.252h9.337Z"
|
|
4293
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
4294
|
+
id: "NeetoTestify_js__a",
|
|
4295
|
+
x1: 48,
|
|
4296
|
+
x2: -14.914,
|
|
4297
|
+
y1: 66.767,
|
|
4298
|
+
y2: -11.404,
|
|
4299
|
+
gradientUnits: "userSpaceOnUse"
|
|
4300
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
4301
|
+
stopColor: "#FF9E45"
|
|
4302
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
4303
|
+
offset: 1,
|
|
4304
|
+
stopColor: "#FFF27A"
|
|
4305
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
4306
|
+
id: "NeetoTestify_js__b",
|
|
4307
|
+
width: 35.653,
|
|
4308
|
+
height: 36.444,
|
|
4309
|
+
x: 9.255,
|
|
4310
|
+
y: 20.652,
|
|
4311
|
+
colorInterpolationFilters: "sRGB",
|
|
4312
|
+
filterUnits: "userSpaceOnUse"
|
|
4313
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
4314
|
+
floodOpacity: 0,
|
|
4315
|
+
result: "BackgroundImageFix"
|
|
4316
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4317
|
+
in: "SourceAlpha",
|
|
4318
|
+
result: "hardAlpha",
|
|
4319
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
4320
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
4321
|
+
dx: 3,
|
|
4322
|
+
dy: 4
|
|
4323
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
4324
|
+
stdDeviation: 1.5
|
|
4325
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
4326
|
+
in2: "hardAlpha",
|
|
4327
|
+
operator: "out"
|
|
4328
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4329
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4330
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4331
|
+
in2: "BackgroundImageFix",
|
|
4332
|
+
result: "effect1_dropShadow_3688_21527"
|
|
4333
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4334
|
+
in: "SourceGraphic",
|
|
4335
|
+
in2: "effect1_dropShadow_3688_21527",
|
|
4336
|
+
result: "shape"
|
|
4337
|
+
}))));
|
|
4338
|
+
};
|
|
4339
|
+
|
|
4340
|
+
var _excluded = ["width", "height"];
|
|
4341
|
+
var NeetoWireframe = function NeetoWireframe(_ref) {
|
|
4342
|
+
var _ref$width = _ref.width,
|
|
4343
|
+
width = _ref$width === void 0 ? "auto" : _ref$width,
|
|
4344
|
+
_ref$height = _ref.height,
|
|
4345
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
4346
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
4347
|
+
|
|
4348
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
4349
|
+
width: width,
|
|
4350
|
+
height: height,
|
|
4351
|
+
fill: "none",
|
|
4352
|
+
viewBox: "0 0 591 65"
|
|
4353
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
4354
|
+
fill: "url(#NeetoWireframe_js__a)",
|
|
4355
|
+
d: "M48 32.996c0-13.255-10.745-24-24-24H0v48h48v-24Z"
|
|
4356
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4357
|
+
fill: "#fff",
|
|
4358
|
+
filter: "url(#NeetoWireframe_js__b)"
|
|
4359
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
4360
|
+
width: 13.356,
|
|
4361
|
+
height: 5.373,
|
|
4362
|
+
x: 20.928,
|
|
4363
|
+
y: 24.766,
|
|
4364
|
+
rx: 0.512
|
|
4365
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
4366
|
+
width: 13.356,
|
|
4367
|
+
height: 13.356,
|
|
4368
|
+
x: 13.714,
|
|
4369
|
+
y: 31.981,
|
|
4370
|
+
rx: 0.512
|
|
4371
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
4372
|
+
cx: 16.4,
|
|
4373
|
+
cy: 27.453,
|
|
4374
|
+
r: 2.687
|
|
4375
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
4376
|
+
width: 13.356,
|
|
4377
|
+
height: 5.373,
|
|
4378
|
+
x: 28.913,
|
|
4379
|
+
y: 45.338,
|
|
4380
|
+
rx: 0.512,
|
|
4381
|
+
transform: "rotate(-90 28.913 45.338)"
|
|
4382
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4383
|
+
fill: "#11243E",
|
|
4384
|
+
fillRule: "evenodd",
|
|
4385
|
+
d: "M90.087 21.627H73.24l8.336 8.198h8.511c5.364 0 9.708 4.25 9.708 9.488V57h8.38V39.313c0-9.77-8.101-17.686-18.088-17.686Zm-9.708 9.392L72 22.778V57h8.38V31.019Zm64.603 20.198-5.318-5.505-.318.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm38.825 0-5.317-5.505-.319.301c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485l.303-.298Zm10.586-29.293h-5.918v7.555h5.918v13.192c0 5.326.796 8.958 3.05 11.235 2.258 2.28 5.868 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V29.479h7.381v-7.555h-7.381V13h-8.401v8.924Zm-65.138 7.189c2.706 0 4.691.797 6.085 2.096 1.292 1.205 2.113 2.874 2.506 4.836h-17.803c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.19-1.941Zm38.826 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941Zm62.798.015c5.59 0 10.034 4.57 10.034 10.186 0 5.615-4.444 10.185-10.034 10.185-5.588 0-9.966-4.566-9.966-10.185 0-5.62 4.378-10.186 9.966-10.186Zm0-7.501c-10.033 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686C240.91 57 249 49.18 249 39.314c0-9.933-8.091-17.687-18.121-17.687Z",
|
|
4386
|
+
clipRule: "evenodd"
|
|
4387
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4388
|
+
fill: "#11243E",
|
|
4389
|
+
d: "m313.792 13.516-12.22 43.741h-10.34l-8.209-31.145-8.585 31.145-10.278.063-11.781-43.804h9.4l7.708 33.965 8.899-33.965h9.776l8.397 33.777 7.771-33.777h9.462ZM323.304 18.404c-1.546 0-2.841-.48-3.886-1.442-1.002-1.002-1.504-2.235-1.504-3.697 0-1.462.502-2.674 1.504-3.635 1.045-1.002 2.34-1.504 3.886-1.504 1.545 0 2.82.502 3.822 1.504 1.045.961 1.567 2.173 1.567 3.635 0 1.462-.522 2.695-1.567 3.697-1.002.961-2.277 1.442-3.822 1.442Zm4.324 4.136v34.717h-8.774V22.54h8.774ZM344.402 27.93c1.128-1.84 2.59-3.28 4.387-4.325 1.838-1.044 3.927-1.567 6.267-1.567v9.212h-2.319c-2.757 0-4.846.648-6.267 1.943-1.378 1.295-2.068 3.551-2.068 6.768v17.296h-8.773V22.54h8.773v5.39ZM392.572 39.147c0 1.253-.084 2.38-.251 3.384h-25.38c.209 2.506 1.086 4.47 2.632 5.89s3.447 2.13 5.703 2.13c3.258 0 5.577-1.399 6.956-4.198h9.462c-1.002 3.342-2.924 6.1-5.765 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.343 0-6.351-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.463-2.715-2.194-5.848-2.194-9.4 0-3.592.731-6.747 2.194-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.245.71 8.836 2.13 2.632 1.42 4.658 3.447 6.078 6.08 1.462 2.59 2.194 5.577 2.194 8.96Zm-9.087-2.507c-.042-2.256-.857-4.053-2.444-5.39-1.588-1.378-3.53-2.067-5.828-2.067-2.173 0-4.011.668-5.515 2.005-1.462 1.295-2.36 3.112-2.694 5.452h16.481ZM414.226 29.747h-6.079v27.51h-8.898v-27.51h-3.948V22.54h3.948v-1.755c0-4.261 1.211-7.395 3.634-9.4 2.423-2.005 6.079-2.945 10.967-2.82v7.395c-2.131-.042-3.614.313-4.449 1.065-.836.752-1.254 2.11-1.254 4.074v1.44h6.079v7.207ZM428.018 27.93c1.128-1.84 2.59-3.28 4.387-4.325 1.838-1.044 3.927-1.567 6.266-1.567v9.212h-2.318c-2.758 0-4.846.648-6.267 1.943-1.379 1.295-2.068 3.551-2.068 6.768v17.296h-8.773V22.54h8.773v5.39ZM441.658 39.773c0-3.51.689-6.622 2.068-9.337 1.421-2.716 3.321-4.805 5.703-6.267 2.423-1.462 5.118-2.193 8.084-2.193 2.59 0 4.846.522 6.768 1.567 1.963 1.044 3.53 2.36 4.7 3.948V22.54h8.836v34.717h-8.836v-5.076c-1.128 1.63-2.695 2.987-4.7 4.074-1.964 1.044-4.241 1.566-6.831 1.566-2.924 0-5.598-.752-8.021-2.256-2.382-1.504-4.282-3.614-5.703-6.33-1.379-2.757-2.068-5.91-2.068-9.462Zm27.323.125c0-2.13-.418-3.948-1.254-5.452-.835-1.545-1.963-2.715-3.384-3.509a8.869 8.869 0 0 0-4.574-1.253c-1.63 0-3.134.397-4.512 1.19-1.379.794-2.507 1.964-3.384 3.51-.836 1.504-1.254 3.3-1.254 5.39 0 2.088.418 3.926 1.254 5.514.877 1.546 2.005 2.736 3.384 3.572 1.42.835 2.924 1.253 4.512 1.253a9.226 9.226 0 0 0 4.574-1.19c1.421-.836 2.549-2.006 3.384-3.51.836-1.546 1.254-3.384 1.254-5.514ZM528.833 22.038c4.262 0 7.688 1.317 10.278 3.948 2.632 2.59 3.948 6.225 3.948 10.905v20.366h-8.774V38.081c0-2.715-.689-4.783-2.068-6.204-1.378-1.462-3.258-2.193-5.64-2.193-2.381 0-4.282.73-5.702 2.193-1.379 1.42-2.068 3.489-2.068 6.204v19.176h-8.774V38.081c0-2.715-.689-4.783-2.068-6.204-1.378-1.462-3.258-2.193-5.64-2.193-2.423 0-4.344.73-5.765 2.193-1.379 1.42-2.068 3.489-2.068 6.204v19.176h-8.773V22.54h8.773v4.198c1.128-1.462 2.569-2.61 4.324-3.446 1.797-.836 3.76-1.254 5.891-1.254 2.715 0 5.138.585 7.269 1.755 2.131 1.128 3.781 2.758 4.951 4.888 1.128-2.005 2.757-3.614 4.888-4.825a14.176 14.176 0 0 1 7.018-1.818ZM582.991 39.147c0 1.253-.084 2.38-.251 3.384h-25.38c.209 2.506 1.086 4.47 2.632 5.89s3.447 2.13 5.703 2.13c3.258 0 5.577-1.399 6.956-4.198h9.462c-1.002 3.342-2.924 6.1-5.765 8.272-2.841 2.13-6.329 3.196-10.465 3.196-3.342 0-6.35-.731-9.024-2.193-2.632-1.504-4.7-3.614-6.204-6.33-1.462-2.715-2.194-5.848-2.194-9.4 0-3.592.732-6.747 2.194-9.462 1.462-2.716 3.509-4.805 6.141-6.267 2.632-1.462 5.661-2.193 9.087-2.193 3.3 0 6.246.71 8.836 2.13 2.632 1.42 4.658 3.447 6.078 6.08 1.463 2.59 2.194 5.577 2.194 8.96Zm-9.087-2.507c-.042-2.256-.856-4.053-2.444-5.39-1.587-1.378-3.53-2.067-5.828-2.067-2.172 0-4.011.668-5.515 2.005-1.462 1.295-2.36 3.112-2.694 5.452h16.481Z"
|
|
4390
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
4391
|
+
id: "NeetoWireframe_js__a",
|
|
4392
|
+
x1: 51.771,
|
|
4393
|
+
x2: 7.543,
|
|
4394
|
+
y1: 71.224,
|
|
4395
|
+
y2: 4.71,
|
|
4396
|
+
gradientUnits: "userSpaceOnUse"
|
|
4397
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
4398
|
+
stopColor: "#6A67E8"
|
|
4399
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
4400
|
+
offset: 0.699,
|
|
4401
|
+
stopColor: "#B49AFC"
|
|
4402
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
4403
|
+
id: "NeetoWireframe_js__b",
|
|
4404
|
+
width: 26.572,
|
|
4405
|
+
height: 27.572,
|
|
4406
|
+
x: 13.714,
|
|
4407
|
+
y: 24.766,
|
|
4408
|
+
colorInterpolationFilters: "sRGB",
|
|
4409
|
+
filterUnits: "userSpaceOnUse"
|
|
4410
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
4411
|
+
floodOpacity: 0,
|
|
4412
|
+
result: "BackgroundImageFix"
|
|
4413
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4414
|
+
in: "SourceAlpha",
|
|
4415
|
+
result: "hardAlpha",
|
|
4416
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
4417
|
+
}), /*#__PURE__*/React.createElement("feOffset", {
|
|
4418
|
+
dx: 3,
|
|
4419
|
+
dy: 4
|
|
4420
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
4421
|
+
stdDeviation: 1.5
|
|
4422
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
4423
|
+
in2: "hardAlpha",
|
|
4424
|
+
operator: "out"
|
|
4425
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
4426
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"
|
|
4427
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4428
|
+
in2: "BackgroundImageFix",
|
|
4429
|
+
result: "effect1_dropShadow_3688_21410"
|
|
4430
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
4431
|
+
in: "SourceGraphic",
|
|
4432
|
+
in2: "effect1_dropShadow_3688_21410",
|
|
4433
|
+
result: "shape"
|
|
4434
|
+
}))));
|
|
4435
|
+
};
|
|
4436
|
+
|
|
4437
|
+
exports.Neeto = Neeto;
|
|
4438
|
+
exports.NeetoCal = NeetoCal;
|
|
4439
|
+
exports.NeetoChangelog = NeetoChangelog;
|
|
4440
|
+
exports.NeetoChat = NeetoChat;
|
|
4441
|
+
exports.NeetoCi = NeetoCi;
|
|
4442
|
+
exports.NeetoCourse = NeetoCourse;
|
|
4443
|
+
exports.NeetoCrm = NeetoCrm;
|
|
4444
|
+
exports.NeetoDeploy = NeetoDeploy;
|
|
4445
|
+
exports.NeetoDesk = NeetoDesk;
|
|
4446
|
+
exports.NeetoForm = NeetoForm;
|
|
4447
|
+
exports.NeetoGit = NeetoGit;
|
|
4448
|
+
exports.NeetoInvisible = NeetoInvisible;
|
|
4449
|
+
exports.NeetoInvoice = NeetoInvoice;
|
|
4450
|
+
exports.NeetoKb = NeetoKb;
|
|
4451
|
+
exports.NeetoMonitor = NeetoMonitor;
|
|
4452
|
+
exports.NeetoPlanner = NeetoPlanner;
|
|
4453
|
+
exports.NeetoQuiz = NeetoQuiz;
|
|
4454
|
+
exports.NeetoReplay = NeetoReplay;
|
|
4455
|
+
exports.NeetoRunner = NeetoRunner;
|
|
4456
|
+
exports.NeetoSign = NeetoSign;
|
|
4457
|
+
exports.NeetoSite = NeetoSite;
|
|
4458
|
+
exports.NeetoSocial = NeetoSocial;
|
|
4459
|
+
exports.NeetoTestify = NeetoTestify;
|
|
4460
|
+
exports.NeetoWireframe = NeetoWireframe;
|
|
4461
|
+
//# sourceMappingURL=typeface-logos.cjs.js.map
|