@deemlol/next-icons 0.0.1 → 0.0.3

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.
@@ -0,0 +1,2416 @@
1
+ (function (global, factory) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'react'], factory) :
4
+ (global = global || self, factory(global.nextIcons = {}, global.react));
5
+ }(this, (function (exports, React) {
6
+ var React__default = 'default' in React ? React['default'] : React;
7
+
8
+ var NextIconsContext = React.createContext();
9
+ NextIconsContext.displayName = "NextIconsContext";
10
+ var NextIconsProvider = function NextIconsProvider(_ref) {
11
+ var children = _ref.children,
12
+ primaryColor = _ref.primaryColor,
13
+ secondaryColor = _ref.secondaryColor,
14
+ set = _ref.set,
15
+ size = _ref.size,
16
+ stroke = _ref.stroke;
17
+ var defaultValues = {
18
+ primaryColor: primaryColor || "currentColor",
19
+ secondaryColor: secondaryColor || null,
20
+ set: set || "light",
21
+ size: size || "md",
22
+ stroke: stroke || "regular"
23
+ };
24
+ return /*#__PURE__*/React__default.createElement(NextIconsContext.Provider, {
25
+ value: defaultValues
26
+ }, children);
27
+ };
28
+
29
+ function createCommonjsModule(fn, module) {
30
+ return module = { exports: {} }, fn(module, module.exports), module.exports;
31
+ }
32
+
33
+ /** @license React v16.13.1
34
+ * react-is.production.min.js
35
+ *
36
+ * Copyright (c) Facebook, Inc. and its affiliates.
37
+ *
38
+ * This source code is licensed under the MIT license found in the
39
+ * LICENSE file in the root directory of this source tree.
40
+ */
41
+ var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b?
42
+ Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119;
43
+ function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}var AsyncMode=l;var ConcurrentMode=m;var ContextConsumer=k;var ContextProvider=h;var Element=c;var ForwardRef=n;var Fragment=e;var Lazy=t;var Memo=r;var Portal=d;
44
+ var Profiler=g;var StrictMode=f;var Suspense=p;var isAsyncMode=function(a){return A(a)||z(a)===l};var isConcurrentMode=A;var isContextConsumer=function(a){return z(a)===k};var isContextProvider=function(a){return z(a)===h};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c};var isForwardRef=function(a){return z(a)===n};var isFragment=function(a){return z(a)===e};var isLazy=function(a){return z(a)===t};
45
+ var isMemo=function(a){return z(a)===r};var isPortal=function(a){return z(a)===d};var isProfiler=function(a){return z(a)===g};var isStrictMode=function(a){return z(a)===f};var isSuspense=function(a){return z(a)===p};
46
+ var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};var typeOf=z;
47
+
48
+ var reactIs_production_min = {
49
+ AsyncMode: AsyncMode,
50
+ ConcurrentMode: ConcurrentMode,
51
+ ContextConsumer: ContextConsumer,
52
+ ContextProvider: ContextProvider,
53
+ Element: Element,
54
+ ForwardRef: ForwardRef,
55
+ Fragment: Fragment,
56
+ Lazy: Lazy,
57
+ Memo: Memo,
58
+ Portal: Portal,
59
+ Profiler: Profiler,
60
+ StrictMode: StrictMode,
61
+ Suspense: Suspense,
62
+ isAsyncMode: isAsyncMode,
63
+ isConcurrentMode: isConcurrentMode,
64
+ isContextConsumer: isContextConsumer,
65
+ isContextProvider: isContextProvider,
66
+ isElement: isElement,
67
+ isForwardRef: isForwardRef,
68
+ isFragment: isFragment,
69
+ isLazy: isLazy,
70
+ isMemo: isMemo,
71
+ isPortal: isPortal,
72
+ isProfiler: isProfiler,
73
+ isStrictMode: isStrictMode,
74
+ isSuspense: isSuspense,
75
+ isValidElementType: isValidElementType,
76
+ typeOf: typeOf
77
+ };
78
+
79
+ var reactIs_development = createCommonjsModule(function (module, exports) {
80
+
81
+
82
+
83
+ if (process.env.NODE_ENV !== "production") {
84
+ (function() {
85
+
86
+ // The Symbol used to tag the ReactElement-like types. If there is no native Symbol
87
+ // nor polyfill, then a plain number is used for performance.
88
+ var hasSymbol = typeof Symbol === 'function' && Symbol.for;
89
+ var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
90
+ var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
91
+ var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
92
+ var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
93
+ var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
94
+ var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
95
+ var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
96
+ // (unstable) APIs that have been removed. Can we remove the symbols?
97
+
98
+ var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
99
+ var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
100
+ var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
101
+ var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
102
+ var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
103
+ var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
104
+ var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
105
+ var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
106
+ var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
107
+ var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
108
+ var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
109
+
110
+ function isValidElementType(type) {
111
+ return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
112
+ type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
113
+ }
114
+
115
+ function typeOf(object) {
116
+ if (typeof object === 'object' && object !== null) {
117
+ var $$typeof = object.$$typeof;
118
+
119
+ switch ($$typeof) {
120
+ case REACT_ELEMENT_TYPE:
121
+ var type = object.type;
122
+
123
+ switch (type) {
124
+ case REACT_ASYNC_MODE_TYPE:
125
+ case REACT_CONCURRENT_MODE_TYPE:
126
+ case REACT_FRAGMENT_TYPE:
127
+ case REACT_PROFILER_TYPE:
128
+ case REACT_STRICT_MODE_TYPE:
129
+ case REACT_SUSPENSE_TYPE:
130
+ return type;
131
+
132
+ default:
133
+ var $$typeofType = type && type.$$typeof;
134
+
135
+ switch ($$typeofType) {
136
+ case REACT_CONTEXT_TYPE:
137
+ case REACT_FORWARD_REF_TYPE:
138
+ case REACT_LAZY_TYPE:
139
+ case REACT_MEMO_TYPE:
140
+ case REACT_PROVIDER_TYPE:
141
+ return $$typeofType;
142
+
143
+ default:
144
+ return $$typeof;
145
+ }
146
+
147
+ }
148
+
149
+ case REACT_PORTAL_TYPE:
150
+ return $$typeof;
151
+ }
152
+ }
153
+
154
+ return undefined;
155
+ } // AsyncMode is deprecated along with isAsyncMode
156
+
157
+ var AsyncMode = REACT_ASYNC_MODE_TYPE;
158
+ var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
159
+ var ContextConsumer = REACT_CONTEXT_TYPE;
160
+ var ContextProvider = REACT_PROVIDER_TYPE;
161
+ var Element = REACT_ELEMENT_TYPE;
162
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
163
+ var Fragment = REACT_FRAGMENT_TYPE;
164
+ var Lazy = REACT_LAZY_TYPE;
165
+ var Memo = REACT_MEMO_TYPE;
166
+ var Portal = REACT_PORTAL_TYPE;
167
+ var Profiler = REACT_PROFILER_TYPE;
168
+ var StrictMode = REACT_STRICT_MODE_TYPE;
169
+ var Suspense = REACT_SUSPENSE_TYPE;
170
+ var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
171
+
172
+ function isAsyncMode(object) {
173
+ {
174
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
175
+ hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
176
+
177
+ console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');
178
+ }
179
+ }
180
+
181
+ return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
182
+ }
183
+ function isConcurrentMode(object) {
184
+ return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
185
+ }
186
+ function isContextConsumer(object) {
187
+ return typeOf(object) === REACT_CONTEXT_TYPE;
188
+ }
189
+ function isContextProvider(object) {
190
+ return typeOf(object) === REACT_PROVIDER_TYPE;
191
+ }
192
+ function isElement(object) {
193
+ return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
194
+ }
195
+ function isForwardRef(object) {
196
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
197
+ }
198
+ function isFragment(object) {
199
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
200
+ }
201
+ function isLazy(object) {
202
+ return typeOf(object) === REACT_LAZY_TYPE;
203
+ }
204
+ function isMemo(object) {
205
+ return typeOf(object) === REACT_MEMO_TYPE;
206
+ }
207
+ function isPortal(object) {
208
+ return typeOf(object) === REACT_PORTAL_TYPE;
209
+ }
210
+ function isProfiler(object) {
211
+ return typeOf(object) === REACT_PROFILER_TYPE;
212
+ }
213
+ function isStrictMode(object) {
214
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
215
+ }
216
+ function isSuspense(object) {
217
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
218
+ }
219
+
220
+ exports.AsyncMode = AsyncMode;
221
+ exports.ConcurrentMode = ConcurrentMode;
222
+ exports.ContextConsumer = ContextConsumer;
223
+ exports.ContextProvider = ContextProvider;
224
+ exports.Element = Element;
225
+ exports.ForwardRef = ForwardRef;
226
+ exports.Fragment = Fragment;
227
+ exports.Lazy = Lazy;
228
+ exports.Memo = Memo;
229
+ exports.Portal = Portal;
230
+ exports.Profiler = Profiler;
231
+ exports.StrictMode = StrictMode;
232
+ exports.Suspense = Suspense;
233
+ exports.isAsyncMode = isAsyncMode;
234
+ exports.isConcurrentMode = isConcurrentMode;
235
+ exports.isContextConsumer = isContextConsumer;
236
+ exports.isContextProvider = isContextProvider;
237
+ exports.isElement = isElement;
238
+ exports.isForwardRef = isForwardRef;
239
+ exports.isFragment = isFragment;
240
+ exports.isLazy = isLazy;
241
+ exports.isMemo = isMemo;
242
+ exports.isPortal = isPortal;
243
+ exports.isProfiler = isProfiler;
244
+ exports.isStrictMode = isStrictMode;
245
+ exports.isSuspense = isSuspense;
246
+ exports.isValidElementType = isValidElementType;
247
+ exports.typeOf = typeOf;
248
+ })();
249
+ }
250
+ });
251
+
252
+ var reactIs = createCommonjsModule(function (module) {
253
+
254
+ if (process.env.NODE_ENV === 'production') {
255
+ module.exports = reactIs_production_min;
256
+ } else {
257
+ module.exports = reactIs_development;
258
+ }
259
+ });
260
+
261
+ /*
262
+ object-assign
263
+ (c) Sindre Sorhus
264
+ @license MIT
265
+ */
266
+ /* eslint-disable no-unused-vars */
267
+ var getOwnPropertySymbols = Object.getOwnPropertySymbols;
268
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
269
+ var propIsEnumerable = Object.prototype.propertyIsEnumerable;
270
+
271
+ function toObject(val) {
272
+ if (val === null || val === undefined) {
273
+ throw new TypeError('Object.assign cannot be called with null or undefined');
274
+ }
275
+
276
+ return Object(val);
277
+ }
278
+
279
+ function shouldUseNative() {
280
+ try {
281
+ if (!Object.assign) {
282
+ return false;
283
+ }
284
+
285
+ // Detect buggy property enumeration order in older V8 versions.
286
+
287
+ // https://bugs.chromium.org/p/v8/issues/detail?id=4118
288
+ var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
289
+ test1[5] = 'de';
290
+ if (Object.getOwnPropertyNames(test1)[0] === '5') {
291
+ return false;
292
+ }
293
+
294
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3056
295
+ var test2 = {};
296
+ for (var i = 0; i < 10; i++) {
297
+ test2['_' + String.fromCharCode(i)] = i;
298
+ }
299
+ var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
300
+ return test2[n];
301
+ });
302
+ if (order2.join('') !== '0123456789') {
303
+ return false;
304
+ }
305
+
306
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3056
307
+ var test3 = {};
308
+ 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
309
+ test3[letter] = letter;
310
+ });
311
+ if (Object.keys(Object.assign({}, test3)).join('') !==
312
+ 'abcdefghijklmnopqrst') {
313
+ return false;
314
+ }
315
+
316
+ return true;
317
+ } catch (err) {
318
+ // We don't expect any of the above to throw, but better to be safe.
319
+ return false;
320
+ }
321
+ }
322
+
323
+ var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
324
+ var from;
325
+ var to = toObject(target);
326
+ var symbols;
327
+
328
+ for (var s = 1; s < arguments.length; s++) {
329
+ from = Object(arguments[s]);
330
+
331
+ for (var key in from) {
332
+ if (hasOwnProperty.call(from, key)) {
333
+ to[key] = from[key];
334
+ }
335
+ }
336
+
337
+ if (getOwnPropertySymbols) {
338
+ symbols = getOwnPropertySymbols(from);
339
+ for (var i = 0; i < symbols.length; i++) {
340
+ if (propIsEnumerable.call(from, symbols[i])) {
341
+ to[symbols[i]] = from[symbols[i]];
342
+ }
343
+ }
344
+ }
345
+ }
346
+
347
+ return to;
348
+ };
349
+
350
+ /**
351
+ * Copyright (c) 2013-present, Facebook, Inc.
352
+ *
353
+ * This source code is licensed under the MIT license found in the
354
+ * LICENSE file in the root directory of this source tree.
355
+ */
356
+
357
+ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
358
+
359
+ var ReactPropTypesSecret_1 = ReactPropTypesSecret;
360
+
361
+ var has = Function.call.bind(Object.prototype.hasOwnProperty);
362
+
363
+ var printWarning = function() {};
364
+
365
+ if (process.env.NODE_ENV !== 'production') {
366
+ var ReactPropTypesSecret$1 = ReactPropTypesSecret_1;
367
+ var loggedTypeFailures = {};
368
+ var has$1 = has;
369
+
370
+ printWarning = function(text) {
371
+ var message = 'Warning: ' + text;
372
+ if (typeof console !== 'undefined') {
373
+ console.error(message);
374
+ }
375
+ try {
376
+ // --- Welcome to debugging React ---
377
+ // This error was thrown as a convenience so that you can use this stack
378
+ // to find the callsite that caused this warning to fire.
379
+ throw new Error(message);
380
+ } catch (x) { /**/ }
381
+ };
382
+ }
383
+
384
+ /**
385
+ * Assert that the values match with the type specs.
386
+ * Error messages are memorized and will only be shown once.
387
+ *
388
+ * @param {object} typeSpecs Map of name to a ReactPropType
389
+ * @param {object} values Runtime values that need to be type-checked
390
+ * @param {string} location e.g. "prop", "context", "child context"
391
+ * @param {string} componentName Name of the component for error messages.
392
+ * @param {?Function} getStack Returns the component stack.
393
+ * @private
394
+ */
395
+ function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
396
+ if (process.env.NODE_ENV !== 'production') {
397
+ for (var typeSpecName in typeSpecs) {
398
+ if (has$1(typeSpecs, typeSpecName)) {
399
+ var error;
400
+ // Prop type validation may throw. In case they do, we don't want to
401
+ // fail the render phase where it didn't fail before. So we log it.
402
+ // After these have been cleaned up, we'll let them throw.
403
+ try {
404
+ // This is intentionally an invariant that gets caught. It's the same
405
+ // behavior as without this statement except with a better message.
406
+ if (typeof typeSpecs[typeSpecName] !== 'function') {
407
+ var err = Error(
408
+ (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
409
+ 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' +
410
+ 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'
411
+ );
412
+ err.name = 'Invariant Violation';
413
+ throw err;
414
+ }
415
+ error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret$1);
416
+ } catch (ex) {
417
+ error = ex;
418
+ }
419
+ if (error && !(error instanceof Error)) {
420
+ printWarning(
421
+ (componentName || 'React class') + ': type specification of ' +
422
+ location + ' `' + typeSpecName + '` is invalid; the type checker ' +
423
+ 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
424
+ 'You may have forgotten to pass an argument to the type checker ' +
425
+ 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
426
+ 'shape all require an argument).'
427
+ );
428
+ }
429
+ if (error instanceof Error && !(error.message in loggedTypeFailures)) {
430
+ // Only monitor this failure once because there tends to be a lot of the
431
+ // same error.
432
+ loggedTypeFailures[error.message] = true;
433
+
434
+ var stack = getStack ? getStack() : '';
435
+
436
+ printWarning(
437
+ 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
438
+ );
439
+ }
440
+ }
441
+ }
442
+ }
443
+ }
444
+
445
+ /**
446
+ * Resets warning cache when testing.
447
+ *
448
+ * @private
449
+ */
450
+ checkPropTypes.resetWarningCache = function() {
451
+ if (process.env.NODE_ENV !== 'production') {
452
+ loggedTypeFailures = {};
453
+ }
454
+ };
455
+
456
+ var checkPropTypes_1 = checkPropTypes;
457
+
458
+ var printWarning$1 = function() {};
459
+
460
+ if (process.env.NODE_ENV !== 'production') {
461
+ printWarning$1 = function(text) {
462
+ var message = 'Warning: ' + text;
463
+ if (typeof console !== 'undefined') {
464
+ console.error(message);
465
+ }
466
+ try {
467
+ // --- Welcome to debugging React ---
468
+ // This error was thrown as a convenience so that you can use this stack
469
+ // to find the callsite that caused this warning to fire.
470
+ throw new Error(message);
471
+ } catch (x) {}
472
+ };
473
+ }
474
+
475
+ function emptyFunctionThatReturnsNull() {
476
+ return null;
477
+ }
478
+
479
+ var factoryWithTypeCheckers = function(isValidElement, throwOnDirectAccess) {
480
+ /* global Symbol */
481
+ var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
482
+ var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.
483
+
484
+ /**
485
+ * Returns the iterator method function contained on the iterable object.
486
+ *
487
+ * Be sure to invoke the function with the iterable as context:
488
+ *
489
+ * var iteratorFn = getIteratorFn(myIterable);
490
+ * if (iteratorFn) {
491
+ * var iterator = iteratorFn.call(myIterable);
492
+ * ...
493
+ * }
494
+ *
495
+ * @param {?object} maybeIterable
496
+ * @return {?function}
497
+ */
498
+ function getIteratorFn(maybeIterable) {
499
+ var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
500
+ if (typeof iteratorFn === 'function') {
501
+ return iteratorFn;
502
+ }
503
+ }
504
+
505
+ /**
506
+ * Collection of methods that allow declaration and validation of props that are
507
+ * supplied to React components. Example usage:
508
+ *
509
+ * var Props = require('ReactPropTypes');
510
+ * var MyArticle = React.createClass({
511
+ * propTypes: {
512
+ * // An optional string prop named "description".
513
+ * description: Props.string,
514
+ *
515
+ * // A required enum prop named "category".
516
+ * category: Props.oneOf(['News','Photos']).isRequired,
517
+ *
518
+ * // A prop named "dialog" that requires an instance of Dialog.
519
+ * dialog: Props.instanceOf(Dialog).isRequired
520
+ * },
521
+ * render: function() { ... }
522
+ * });
523
+ *
524
+ * A more formal specification of how these methods are used:
525
+ *
526
+ * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
527
+ * decl := ReactPropTypes.{type}(.isRequired)?
528
+ *
529
+ * Each and every declaration produces a function with the same signature. This
530
+ * allows the creation of custom validation functions. For example:
531
+ *
532
+ * var MyLink = React.createClass({
533
+ * propTypes: {
534
+ * // An optional string or URI prop named "href".
535
+ * href: function(props, propName, componentName) {
536
+ * var propValue = props[propName];
537
+ * if (propValue != null && typeof propValue !== 'string' &&
538
+ * !(propValue instanceof URI)) {
539
+ * return new Error(
540
+ * 'Expected a string or an URI for ' + propName + ' in ' +
541
+ * componentName
542
+ * );
543
+ * }
544
+ * }
545
+ * },
546
+ * render: function() {...}
547
+ * });
548
+ *
549
+ * @internal
550
+ */
551
+
552
+ var ANONYMOUS = '<<anonymous>>';
553
+
554
+ // Important!
555
+ // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.
556
+ var ReactPropTypes = {
557
+ array: createPrimitiveTypeChecker('array'),
558
+ bigint: createPrimitiveTypeChecker('bigint'),
559
+ bool: createPrimitiveTypeChecker('boolean'),
560
+ func: createPrimitiveTypeChecker('function'),
561
+ number: createPrimitiveTypeChecker('number'),
562
+ object: createPrimitiveTypeChecker('object'),
563
+ string: createPrimitiveTypeChecker('string'),
564
+ symbol: createPrimitiveTypeChecker('symbol'),
565
+
566
+ any: createAnyTypeChecker(),
567
+ arrayOf: createArrayOfTypeChecker,
568
+ element: createElementTypeChecker(),
569
+ elementType: createElementTypeTypeChecker(),
570
+ instanceOf: createInstanceTypeChecker,
571
+ node: createNodeChecker(),
572
+ objectOf: createObjectOfTypeChecker,
573
+ oneOf: createEnumTypeChecker,
574
+ oneOfType: createUnionTypeChecker,
575
+ shape: createShapeTypeChecker,
576
+ exact: createStrictShapeTypeChecker,
577
+ };
578
+
579
+ /**
580
+ * inlined Object.is polyfill to avoid requiring consumers ship their own
581
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
582
+ */
583
+ /*eslint-disable no-self-compare*/
584
+ function is(x, y) {
585
+ // SameValue algorithm
586
+ if (x === y) {
587
+ // Steps 1-5, 7-10
588
+ // Steps 6.b-6.e: +0 != -0
589
+ return x !== 0 || 1 / x === 1 / y;
590
+ } else {
591
+ // Step 6.a: NaN == NaN
592
+ return x !== x && y !== y;
593
+ }
594
+ }
595
+ /*eslint-enable no-self-compare*/
596
+
597
+ /**
598
+ * We use an Error-like object for backward compatibility as people may call
599
+ * PropTypes directly and inspect their output. However, we don't use real
600
+ * Errors anymore. We don't inspect their stack anyway, and creating them
601
+ * is prohibitively expensive if they are created too often, such as what
602
+ * happens in oneOfType() for any type before the one that matched.
603
+ */
604
+ function PropTypeError(message, data) {
605
+ this.message = message;
606
+ this.data = data && typeof data === 'object' ? data: {};
607
+ this.stack = '';
608
+ }
609
+ // Make `instanceof Error` still work for returned errors.
610
+ PropTypeError.prototype = Error.prototype;
611
+
612
+ function createChainableTypeChecker(validate) {
613
+ if (process.env.NODE_ENV !== 'production') {
614
+ var manualPropTypeCallCache = {};
615
+ var manualPropTypeWarningCount = 0;
616
+ }
617
+ function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
618
+ componentName = componentName || ANONYMOUS;
619
+ propFullName = propFullName || propName;
620
+
621
+ if (secret !== ReactPropTypesSecret_1) {
622
+ if (throwOnDirectAccess) {
623
+ // New behavior only for users of `prop-types` package
624
+ var err = new Error(
625
+ 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
626
+ 'Use `PropTypes.checkPropTypes()` to call them. ' +
627
+ 'Read more at http://fb.me/use-check-prop-types'
628
+ );
629
+ err.name = 'Invariant Violation';
630
+ throw err;
631
+ } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {
632
+ // Old behavior for people using React.PropTypes
633
+ var cacheKey = componentName + ':' + propName;
634
+ if (
635
+ !manualPropTypeCallCache[cacheKey] &&
636
+ // Avoid spamming the console because they are often not actionable except for lib authors
637
+ manualPropTypeWarningCount < 3
638
+ ) {
639
+ printWarning$1(
640
+ 'You are manually calling a React.PropTypes validation ' +
641
+ 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' +
642
+ 'and will throw in the standalone `prop-types` package. ' +
643
+ 'You may be seeing this warning due to a third-party PropTypes ' +
644
+ 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'
645
+ );
646
+ manualPropTypeCallCache[cacheKey] = true;
647
+ manualPropTypeWarningCount++;
648
+ }
649
+ }
650
+ }
651
+ if (props[propName] == null) {
652
+ if (isRequired) {
653
+ if (props[propName] === null) {
654
+ return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));
655
+ }
656
+ return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));
657
+ }
658
+ return null;
659
+ } else {
660
+ return validate(props, propName, componentName, location, propFullName);
661
+ }
662
+ }
663
+
664
+ var chainedCheckType = checkType.bind(null, false);
665
+ chainedCheckType.isRequired = checkType.bind(null, true);
666
+
667
+ return chainedCheckType;
668
+ }
669
+
670
+ function createPrimitiveTypeChecker(expectedType) {
671
+ function validate(props, propName, componentName, location, propFullName, secret) {
672
+ var propValue = props[propName];
673
+ var propType = getPropType(propValue);
674
+ if (propType !== expectedType) {
675
+ // `propValue` being instance of, say, date/regexp, pass the 'object'
676
+ // check, but we can offer a more precise error message here rather than
677
+ // 'of type `object`'.
678
+ var preciseType = getPreciseType(propValue);
679
+
680
+ return new PropTypeError(
681
+ 'Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'),
682
+ {expectedType: expectedType}
683
+ );
684
+ }
685
+ return null;
686
+ }
687
+ return createChainableTypeChecker(validate);
688
+ }
689
+
690
+ function createAnyTypeChecker() {
691
+ return createChainableTypeChecker(emptyFunctionThatReturnsNull);
692
+ }
693
+
694
+ function createArrayOfTypeChecker(typeChecker) {
695
+ function validate(props, propName, componentName, location, propFullName) {
696
+ if (typeof typeChecker !== 'function') {
697
+ return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');
698
+ }
699
+ var propValue = props[propName];
700
+ if (!Array.isArray(propValue)) {
701
+ var propType = getPropType(propValue);
702
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
703
+ }
704
+ for (var i = 0; i < propValue.length; i++) {
705
+ var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret_1);
706
+ if (error instanceof Error) {
707
+ return error;
708
+ }
709
+ }
710
+ return null;
711
+ }
712
+ return createChainableTypeChecker(validate);
713
+ }
714
+
715
+ function createElementTypeChecker() {
716
+ function validate(props, propName, componentName, location, propFullName) {
717
+ var propValue = props[propName];
718
+ if (!isValidElement(propValue)) {
719
+ var propType = getPropType(propValue);
720
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
721
+ }
722
+ return null;
723
+ }
724
+ return createChainableTypeChecker(validate);
725
+ }
726
+
727
+ function createElementTypeTypeChecker() {
728
+ function validate(props, propName, componentName, location, propFullName) {
729
+ var propValue = props[propName];
730
+ if (!reactIs.isValidElementType(propValue)) {
731
+ var propType = getPropType(propValue);
732
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));
733
+ }
734
+ return null;
735
+ }
736
+ return createChainableTypeChecker(validate);
737
+ }
738
+
739
+ function createInstanceTypeChecker(expectedClass) {
740
+ function validate(props, propName, componentName, location, propFullName) {
741
+ if (!(props[propName] instanceof expectedClass)) {
742
+ var expectedClassName = expectedClass.name || ANONYMOUS;
743
+ var actualClassName = getClassName(props[propName]);
744
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));
745
+ }
746
+ return null;
747
+ }
748
+ return createChainableTypeChecker(validate);
749
+ }
750
+
751
+ function createEnumTypeChecker(expectedValues) {
752
+ if (!Array.isArray(expectedValues)) {
753
+ if (process.env.NODE_ENV !== 'production') {
754
+ if (arguments.length > 1) {
755
+ printWarning$1(
756
+ 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' +
757
+ 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'
758
+ );
759
+ } else {
760
+ printWarning$1('Invalid argument supplied to oneOf, expected an array.');
761
+ }
762
+ }
763
+ return emptyFunctionThatReturnsNull;
764
+ }
765
+
766
+ function validate(props, propName, componentName, location, propFullName) {
767
+ var propValue = props[propName];
768
+ for (var i = 0; i < expectedValues.length; i++) {
769
+ if (is(propValue, expectedValues[i])) {
770
+ return null;
771
+ }
772
+ }
773
+
774
+ var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
775
+ var type = getPreciseType(value);
776
+ if (type === 'symbol') {
777
+ return String(value);
778
+ }
779
+ return value;
780
+ });
781
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));
782
+ }
783
+ return createChainableTypeChecker(validate);
784
+ }
785
+
786
+ function createObjectOfTypeChecker(typeChecker) {
787
+ function validate(props, propName, componentName, location, propFullName) {
788
+ if (typeof typeChecker !== 'function') {
789
+ return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');
790
+ }
791
+ var propValue = props[propName];
792
+ var propType = getPropType(propValue);
793
+ if (propType !== 'object') {
794
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));
795
+ }
796
+ for (var key in propValue) {
797
+ if (has(propValue, key)) {
798
+ var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
799
+ if (error instanceof Error) {
800
+ return error;
801
+ }
802
+ }
803
+ }
804
+ return null;
805
+ }
806
+ return createChainableTypeChecker(validate);
807
+ }
808
+
809
+ function createUnionTypeChecker(arrayOfTypeCheckers) {
810
+ if (!Array.isArray(arrayOfTypeCheckers)) {
811
+ process.env.NODE_ENV !== 'production' ? printWarning$1('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
812
+ return emptyFunctionThatReturnsNull;
813
+ }
814
+
815
+ for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
816
+ var checker = arrayOfTypeCheckers[i];
817
+ if (typeof checker !== 'function') {
818
+ printWarning$1(
819
+ 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +
820
+ 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'
821
+ );
822
+ return emptyFunctionThatReturnsNull;
823
+ }
824
+ }
825
+
826
+ function validate(props, propName, componentName, location, propFullName) {
827
+ var expectedTypes = [];
828
+ for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
829
+ var checker = arrayOfTypeCheckers[i];
830
+ var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret_1);
831
+ if (checkerResult == null) {
832
+ return null;
833
+ }
834
+ if (checkerResult.data && has(checkerResult.data, 'expectedType')) {
835
+ expectedTypes.push(checkerResult.data.expectedType);
836
+ }
837
+ }
838
+ var expectedTypesMessage = (expectedTypes.length > 0) ? ', expected one of type [' + expectedTypes.join(', ') + ']': '';
839
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.'));
840
+ }
841
+ return createChainableTypeChecker(validate);
842
+ }
843
+
844
+ function createNodeChecker() {
845
+ function validate(props, propName, componentName, location, propFullName) {
846
+ if (!isNode(props[propName])) {
847
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));
848
+ }
849
+ return null;
850
+ }
851
+ return createChainableTypeChecker(validate);
852
+ }
853
+
854
+ function invalidValidatorError(componentName, location, propFullName, key, type) {
855
+ return new PropTypeError(
856
+ (componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' +
857
+ 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.'
858
+ );
859
+ }
860
+
861
+ function createShapeTypeChecker(shapeTypes) {
862
+ function validate(props, propName, componentName, location, propFullName) {
863
+ var propValue = props[propName];
864
+ var propType = getPropType(propValue);
865
+ if (propType !== 'object') {
866
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
867
+ }
868
+ for (var key in shapeTypes) {
869
+ var checker = shapeTypes[key];
870
+ if (typeof checker !== 'function') {
871
+ return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
872
+ }
873
+ var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
874
+ if (error) {
875
+ return error;
876
+ }
877
+ }
878
+ return null;
879
+ }
880
+ return createChainableTypeChecker(validate);
881
+ }
882
+
883
+ function createStrictShapeTypeChecker(shapeTypes) {
884
+ function validate(props, propName, componentName, location, propFullName) {
885
+ var propValue = props[propName];
886
+ var propType = getPropType(propValue);
887
+ if (propType !== 'object') {
888
+ return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
889
+ }
890
+ // We need to check all keys in case some are required but missing from props.
891
+ var allKeys = objectAssign({}, props[propName], shapeTypes);
892
+ for (var key in allKeys) {
893
+ var checker = shapeTypes[key];
894
+ if (has(shapeTypes, key) && typeof checker !== 'function') {
895
+ return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
896
+ }
897
+ if (!checker) {
898
+ return new PropTypeError(
899
+ 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +
900
+ '\nBad object: ' + JSON.stringify(props[propName], null, ' ') +
901
+ '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')
902
+ );
903
+ }
904
+ var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
905
+ if (error) {
906
+ return error;
907
+ }
908
+ }
909
+ return null;
910
+ }
911
+
912
+ return createChainableTypeChecker(validate);
913
+ }
914
+
915
+ function isNode(propValue) {
916
+ switch (typeof propValue) {
917
+ case 'number':
918
+ case 'string':
919
+ case 'undefined':
920
+ return true;
921
+ case 'boolean':
922
+ return !propValue;
923
+ case 'object':
924
+ if (Array.isArray(propValue)) {
925
+ return propValue.every(isNode);
926
+ }
927
+ if (propValue === null || isValidElement(propValue)) {
928
+ return true;
929
+ }
930
+
931
+ var iteratorFn = getIteratorFn(propValue);
932
+ if (iteratorFn) {
933
+ var iterator = iteratorFn.call(propValue);
934
+ var step;
935
+ if (iteratorFn !== propValue.entries) {
936
+ while (!(step = iterator.next()).done) {
937
+ if (!isNode(step.value)) {
938
+ return false;
939
+ }
940
+ }
941
+ } else {
942
+ // Iterator will provide entry [k,v] tuples rather than values.
943
+ while (!(step = iterator.next()).done) {
944
+ var entry = step.value;
945
+ if (entry) {
946
+ if (!isNode(entry[1])) {
947
+ return false;
948
+ }
949
+ }
950
+ }
951
+ }
952
+ } else {
953
+ return false;
954
+ }
955
+
956
+ return true;
957
+ default:
958
+ return false;
959
+ }
960
+ }
961
+
962
+ function isSymbol(propType, propValue) {
963
+ // Native Symbol.
964
+ if (propType === 'symbol') {
965
+ return true;
966
+ }
967
+
968
+ // falsy value can't be a Symbol
969
+ if (!propValue) {
970
+ return false;
971
+ }
972
+
973
+ // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'
974
+ if (propValue['@@toStringTag'] === 'Symbol') {
975
+ return true;
976
+ }
977
+
978
+ // Fallback for non-spec compliant Symbols which are polyfilled.
979
+ if (typeof Symbol === 'function' && propValue instanceof Symbol) {
980
+ return true;
981
+ }
982
+
983
+ return false;
984
+ }
985
+
986
+ // Equivalent of `typeof` but with special handling for array and regexp.
987
+ function getPropType(propValue) {
988
+ var propType = typeof propValue;
989
+ if (Array.isArray(propValue)) {
990
+ return 'array';
991
+ }
992
+ if (propValue instanceof RegExp) {
993
+ // Old webkits (at least until Android 4.0) return 'function' rather than
994
+ // 'object' for typeof a RegExp. We'll normalize this here so that /bla/
995
+ // passes PropTypes.object.
996
+ return 'object';
997
+ }
998
+ if (isSymbol(propType, propValue)) {
999
+ return 'symbol';
1000
+ }
1001
+ return propType;
1002
+ }
1003
+
1004
+ // This handles more types than `getPropType`. Only used for error messages.
1005
+ // See `createPrimitiveTypeChecker`.
1006
+ function getPreciseType(propValue) {
1007
+ if (typeof propValue === 'undefined' || propValue === null) {
1008
+ return '' + propValue;
1009
+ }
1010
+ var propType = getPropType(propValue);
1011
+ if (propType === 'object') {
1012
+ if (propValue instanceof Date) {
1013
+ return 'date';
1014
+ } else if (propValue instanceof RegExp) {
1015
+ return 'regexp';
1016
+ }
1017
+ }
1018
+ return propType;
1019
+ }
1020
+
1021
+ // Returns a string that is postfixed to a warning about an invalid type.
1022
+ // For example, "undefined" or "of type array"
1023
+ function getPostfixForTypeWarning(value) {
1024
+ var type = getPreciseType(value);
1025
+ switch (type) {
1026
+ case 'array':
1027
+ case 'object':
1028
+ return 'an ' + type;
1029
+ case 'boolean':
1030
+ case 'date':
1031
+ case 'regexp':
1032
+ return 'a ' + type;
1033
+ default:
1034
+ return type;
1035
+ }
1036
+ }
1037
+
1038
+ // Returns class name of the object, if any.
1039
+ function getClassName(propValue) {
1040
+ if (!propValue.constructor || !propValue.constructor.name) {
1041
+ return ANONYMOUS;
1042
+ }
1043
+ return propValue.constructor.name;
1044
+ }
1045
+
1046
+ ReactPropTypes.checkPropTypes = checkPropTypes_1;
1047
+ ReactPropTypes.resetWarningCache = checkPropTypes_1.resetWarningCache;
1048
+ ReactPropTypes.PropTypes = ReactPropTypes;
1049
+
1050
+ return ReactPropTypes;
1051
+ };
1052
+
1053
+ function emptyFunction() {}
1054
+ function emptyFunctionWithReset() {}
1055
+ emptyFunctionWithReset.resetWarningCache = emptyFunction;
1056
+
1057
+ var factoryWithThrowingShims = function() {
1058
+ function shim(props, propName, componentName, location, propFullName, secret) {
1059
+ if (secret === ReactPropTypesSecret_1) {
1060
+ // It is still safe when called from React.
1061
+ return;
1062
+ }
1063
+ var err = new Error(
1064
+ 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
1065
+ 'Use PropTypes.checkPropTypes() to call them. ' +
1066
+ 'Read more at http://fb.me/use-check-prop-types'
1067
+ );
1068
+ err.name = 'Invariant Violation';
1069
+ throw err;
1070
+ } shim.isRequired = shim;
1071
+ function getShim() {
1072
+ return shim;
1073
+ } // Important!
1074
+ // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
1075
+ var ReactPropTypes = {
1076
+ array: shim,
1077
+ bigint: shim,
1078
+ bool: shim,
1079
+ func: shim,
1080
+ number: shim,
1081
+ object: shim,
1082
+ string: shim,
1083
+ symbol: shim,
1084
+
1085
+ any: shim,
1086
+ arrayOf: getShim,
1087
+ element: shim,
1088
+ elementType: shim,
1089
+ instanceOf: getShim,
1090
+ node: shim,
1091
+ objectOf: getShim,
1092
+ oneOf: getShim,
1093
+ oneOfType: getShim,
1094
+ shape: getShim,
1095
+ exact: getShim,
1096
+
1097
+ checkPropTypes: emptyFunctionWithReset,
1098
+ resetWarningCache: emptyFunction
1099
+ };
1100
+
1101
+ ReactPropTypes.PropTypes = ReactPropTypes;
1102
+
1103
+ return ReactPropTypes;
1104
+ };
1105
+
1106
+ var propTypes = createCommonjsModule(function (module) {
1107
+ /**
1108
+ * Copyright (c) 2013-present, Facebook, Inc.
1109
+ *
1110
+ * This source code is licensed under the MIT license found in the
1111
+ * LICENSE file in the root directory of this source tree.
1112
+ */
1113
+
1114
+ if (process.env.NODE_ENV !== 'production') {
1115
+ var ReactIs = reactIs;
1116
+
1117
+ // By explicitly using `prop-types` you are opting into new development behavior.
1118
+ // http://fb.me/prop-types-in-prod
1119
+ var throwOnDirectAccess = true;
1120
+ module.exports = factoryWithTypeCheckers(ReactIs.isElement, throwOnDirectAccess);
1121
+ } else {
1122
+ // By explicitly using `prop-types` you are opting into new production behavior.
1123
+ // http://fb.me/prop-types-in-prod
1124
+ module.exports = factoryWithThrowingShims();
1125
+ }
1126
+ });
1127
+
1128
+ function _extends() {
1129
+ return _extends = Object.assign ? Object.assign.bind() : function (n) {
1130
+ for (var e = 1; e < arguments.length; e++) {
1131
+ var t = arguments[e];
1132
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
1133
+ }
1134
+ return n;
1135
+ }, _extends.apply(null, arguments);
1136
+ }
1137
+ function _inheritsLoose(t, o) {
1138
+ t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o);
1139
+ }
1140
+ function _objectWithoutPropertiesLoose(r, e) {
1141
+ if (null == r) return {};
1142
+ var t = {};
1143
+ for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
1144
+ if (e.includes(n)) continue;
1145
+ t[n] = r[n];
1146
+ }
1147
+ return t;
1148
+ }
1149
+ function _setPrototypeOf(t, e) {
1150
+ return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
1151
+ return t.__proto__ = e, t;
1152
+ }, _setPrototypeOf(t, e);
1153
+ }
1154
+
1155
+ var sizes = {
1156
+ sm: "16px",
1157
+ md: "24px",
1158
+ lg: "32px",
1159
+ xl: "48px"
1160
+ };
1161
+ var strokes = {
1162
+ light: "1px",
1163
+ regular: "1.5px",
1164
+ bold: "2px"
1165
+ };
1166
+
1167
+ var getSize = function getSize(size) {
1168
+ if (Number.isInteger(size)) {
1169
+ return size + "px";
1170
+ }
1171
+ return size && sizes[size] ? sizes[size] : null;
1172
+ };
1173
+ var getStroke = function getStroke(stroke) {
1174
+ return stroke && strokes[stroke] ? strokes[stroke] : null;
1175
+ };
1176
+ var getOpacity = function getOpacity(primaryColor, secondaryColor) {
1177
+ if (!secondaryColor) return "0.4";
1178
+ return primaryColor === secondaryColor ? "0.4" : "1";
1179
+ };
1180
+ var getThemeProp = function getThemeProp(prop, theme) {
1181
+ return theme && theme[prop] ? theme[prop] : null;
1182
+ };
1183
+
1184
+ var _excluded = ["primaryColor", "secondaryColor", "set", "style", "stroke", "filled", "label", "size"];
1185
+ function withIcon(Component) {
1186
+ var IconWrapper = /*#__PURE__*/function (_React$Component) {
1187
+ function IconWrapper() {
1188
+ return _React$Component.apply(this, arguments) || this;
1189
+ }
1190
+ _inheritsLoose(IconWrapper, _React$Component);
1191
+ var _proto = IconWrapper.prototype;
1192
+ _proto.render = function render() {
1193
+ var _this$props = this.props,
1194
+ primaryColor = _this$props.primaryColor,
1195
+ secondaryColor = _this$props.secondaryColor,
1196
+ set = _this$props.set,
1197
+ style = _this$props.style,
1198
+ stroke = _this$props.stroke,
1199
+ filled = _this$props.filled,
1200
+ label = _this$props.label,
1201
+ size = _this$props.size,
1202
+ restProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
1203
+ var theme = this.context;
1204
+ var iconSize = getSize(size) || getSize(getThemeProp("size", theme)) || "24px";
1205
+ var iconPrimaryColor = primaryColor || getThemeProp("primaryColor", theme) || "currentColor";
1206
+ var iconSecondaryColor = secondaryColor || getThemeProp("secondaryColor", theme) || iconPrimaryColor || "currentColor";
1207
+ return /*#__PURE__*/React__default.createElement("svg", _extends({
1208
+ xmlns: "http://www.w3.org/2000/svg",
1209
+ width: iconSize,
1210
+ height: iconSize,
1211
+ viewBox: "0 0 24 24",
1212
+ role: label ? "img" : "presentation",
1213
+ "aria-label": label || undefined,
1214
+ style: style
1215
+ }, restProps), /*#__PURE__*/React__default.createElement(Component, {
1216
+ color: iconPrimaryColor,
1217
+ opacity: getOpacity(primaryColor, secondaryColor),
1218
+ secondaryColor: iconSecondaryColor,
1219
+ set: filled ? "bold" : set || getThemeProp("set", theme) || "light",
1220
+ strokeWidth: stroke ? getStroke(stroke) : getStroke(getThemeProp("stroke", theme)) || "1.5px"
1221
+ }));
1222
+ };
1223
+ return IconWrapper;
1224
+ }(React__default.Component);
1225
+ IconWrapper.contextType = NextIconsContext;
1226
+ IconWrapper.propTypes = {
1227
+ label: propTypes.string,
1228
+ filled: propTypes.bool,
1229
+ primaryColor: propTypes.string,
1230
+ secondaryColor: propTypes.string,
1231
+ size: propTypes.oneOfType([propTypes.number, propTypes.oneOf(["sm", "md", "lg", "xl"])]),
1232
+ set: propTypes.oneOf(["bold", "bulk", "light", "broken", "two-tone", "curved"]),
1233
+ stroke: propTypes.oneOf(["light", "regular", "bold"]),
1234
+ style: propTypes.oneOfType([propTypes.object, propTypes.array])
1235
+ };
1236
+ var MemoIcon = React.memo(IconWrapper);
1237
+ return MemoIcon;
1238
+ }
1239
+
1240
+ var ArrowDown = function ArrowDown(_ref) {
1241
+ var color = _ref.color,
1242
+ secondaryColor = _ref.secondaryColor,
1243
+ strokeWidth = _ref.strokeWidth,
1244
+ opacity = _ref.opacity,
1245
+ set = _ref.set;
1246
+ var Bold = function Bold() {
1247
+ return /*#__PURE__*/React.createElement("g", {
1248
+ transform: "translate(6 3)"
1249
+ }, /*#__PURE__*/React.createElement("path", {
1250
+ d: "M4.87,17.625c-.059-.058-.305-.274-.51-.477A22.081,22.081,0,0,1,.336,11.257,4.815,4.815,0,0,1,0,10.058a2,2,0,0,1,.22-.91,1.883,1.883,0,0,1,.9-.808,9.781,9.781,0,0,1,1.065-.261,23.616,23.616,0,0,1,3.805-.244,27.187,27.187,0,0,1,3.688.216,8.15,8.15,0,0,1,1.328.347A1.815,1.815,0,0,1,12,10v.058a5.023,5.023,0,0,1-.408,1.343,22.023,22.023,0,0,1-3.966,5.761,5.686,5.686,0,0,1-.553.491A1.771,1.771,0,0,1,6.008,18,1.853,1.853,0,0,1,4.87,17.625ZM4.81,5.2,4.483,1.5a1.518,1.518,0,0,1,3.036,0L7.191,5.2a1.191,1.191,0,0,1-2.381,0Z",
1251
+ fill: color
1252
+ }));
1253
+ };
1254
+ var Bulk = function Bulk() {
1255
+ return /*#__PURE__*/React.createElement("g", {
1256
+ transform: "translate(6 3)"
1257
+ }, /*#__PURE__*/React.createElement("path", {
1258
+ d: "M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",
1259
+ transform: "translate(4.483 0)",
1260
+ fill: secondaryColor,
1261
+ opacity: opacity
1262
+ }), /*#__PURE__*/React.createElement("path", {
1263
+ d: "M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",
1264
+ transform: "translate(0 7.835)",
1265
+ fill: color
1266
+ }));
1267
+ };
1268
+ var Light = function Light() {
1269
+ return /*#__PURE__*/React.createElement("g", {
1270
+ transform: "translate(5.5 4)"
1271
+ }, /*#__PURE__*/React.createElement("path", {
1272
+ d: "M.5,15V0",
1273
+ transform: "translate(6.274 0.75)",
1274
+ fill: "none",
1275
+ stroke: color,
1276
+ strokeLinecap: "round",
1277
+ strokeLinejoin: "round",
1278
+ strokeMiterlimit: "10",
1279
+ strokeWidth: strokeWidth
1280
+ }), /*#__PURE__*/React.createElement("path", {
1281
+ d: "M12.049,0,6.025,6.05,0,0",
1282
+ transform: "translate(0.75 9.7)",
1283
+ fill: "none",
1284
+ stroke: color,
1285
+ strokeLinecap: "round",
1286
+ strokeLinejoin: "round",
1287
+ strokeMiterlimit: "10",
1288
+ strokeWidth: strokeWidth
1289
+ }));
1290
+ };
1291
+ var Broken = function Broken() {
1292
+ return /*#__PURE__*/React.createElement("g", {
1293
+ transform: "translate(4 3)"
1294
+ }, /*#__PURE__*/React.createElement("path", {
1295
+ d: "M6.912,17.759l-6.67-6.6A.81.81,0,0,1,.244,10a.839.839,0,0,1,1.175,0L6.67,15.2V.818a.83.83,0,0,1,1.661,0V17.182a.818.818,0,0,1-.514.756.837.837,0,0,1-.9-.179ZM9.9,14.8a.807.807,0,0,1,0-1.156L13.581,10a.841.841,0,0,1,1.175,0,.811.811,0,0,1,0,1.157L11.079,14.8a.84.84,0,0,1-1.175,0Z",
1296
+ fill: color
1297
+ }));
1298
+ };
1299
+ var TwoTone = function TwoTone() {
1300
+ return /*#__PURE__*/React.createElement("g", {
1301
+ transform: "translate(5.5 4)"
1302
+ }, /*#__PURE__*/React.createElement("path", {
1303
+ d: "M.5,15V0",
1304
+ transform: "translate(6.274 0.75)",
1305
+ fill: "none",
1306
+ stroke: secondaryColor,
1307
+ strokeLinecap: "round",
1308
+ strokeLinejoin: "round",
1309
+ strokeMiterlimit: "10",
1310
+ strokeWidth: strokeWidth,
1311
+ opacity: opacity
1312
+ }), /*#__PURE__*/React.createElement("path", {
1313
+ d: "M12.049,0,6.025,6.05,0,0",
1314
+ transform: "translate(0.75 9.7)",
1315
+ fill: "none",
1316
+ stroke: color,
1317
+ strokeLinecap: "round",
1318
+ strokeLinejoin: "round",
1319
+ strokeMiterlimit: "10",
1320
+ strokeWidth: strokeWidth
1321
+ }));
1322
+ };
1323
+ var Curved = function Curved() {
1324
+ return /*#__PURE__*/React.createElement("g", {
1325
+ transform: "translate(5.5 4)"
1326
+ }, /*#__PURE__*/React.createElement("path", {
1327
+ d: "M.5,15V0",
1328
+ transform: "translate(6.274 0.75)",
1329
+ fill: "none",
1330
+ stroke: color,
1331
+ strokeLinecap: "round",
1332
+ strokeLinejoin: "round",
1333
+ strokeMiterlimit: "10",
1334
+ strokeWidth: strokeWidth
1335
+ }), /*#__PURE__*/React.createElement("path", {
1336
+ d: "M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",
1337
+ transform: "translate(0.75 9.7)",
1338
+ fill: "none",
1339
+ stroke: color,
1340
+ strokeLinecap: "round",
1341
+ strokeLinejoin: "round",
1342
+ strokeMiterlimit: "10",
1343
+ strokeWidth: strokeWidth
1344
+ }));
1345
+ };
1346
+ switch (set) {
1347
+ case "bold":
1348
+ return /*#__PURE__*/React.createElement(Bold, null);
1349
+ case "bulk":
1350
+ return /*#__PURE__*/React.createElement(Bulk, null);
1351
+ case "broken":
1352
+ return /*#__PURE__*/React.createElement(Broken, null);
1353
+ case "two-tone":
1354
+ return /*#__PURE__*/React.createElement(TwoTone, null);
1355
+ case "curved":
1356
+ return /*#__PURE__*/React.createElement(Curved, null);
1357
+ default:
1358
+ return /*#__PURE__*/React.createElement(Light, null);
1359
+ }
1360
+ };
1361
+ ArrowDown.displayName = "NextIconsArrowDown";
1362
+ ArrowDown.propTypes = {
1363
+ opacity: propTypes.string,
1364
+ color: propTypes.string,
1365
+ secondaryColor: propTypes.string,
1366
+ set: propTypes.string,
1367
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
1368
+ };
1369
+ var ArrowDown$1 = withIcon(ArrowDown);
1370
+
1371
+ var ArrowDownSquare = function ArrowDownSquare(_ref) {
1372
+ var color = _ref.color,
1373
+ secondaryColor = _ref.secondaryColor,
1374
+ strokeWidth = _ref.strokeWidth,
1375
+ opacity = _ref.opacity,
1376
+ set = _ref.set;
1377
+ var Bold = function Bold() {
1378
+ return /*#__PURE__*/React.createElement("g", {
1379
+ transform: "translate(2 2)"
1380
+ }, /*#__PURE__*/React.createElement("path", {
1381
+ d: "M14.33,20H5.66C2.275,20,0,17.621,0,14.08V5.91C0,2.375,2.275,0,5.66,0h8.67C17.721,0,20,2.375,20,5.91V14.08C20,17.621,17.721,20,14.33,20ZM6.25,9.57a.787.787,0,0,0-.529.22.753.753,0,0,0,0,1.06L9.47,14.62a.772.772,0,0,0,1.06,0l3.75-3.769a.751.751,0,0,0,0-1.06.767.767,0,0,0-1.07,0L10.75,12.27V5.92A.751.751,0,0,0,10,5.17a.742.742,0,0,0-.75.751v6.35L6.78,9.79A.763.763,0,0,0,6.25,9.57Z",
1382
+ fill: color
1383
+ }));
1384
+ };
1385
+ var Bulk = function Bulk() {
1386
+ return /*#__PURE__*/React.createElement("g", {
1387
+ transform: "translate(2 2)"
1388
+ }, /*#__PURE__*/React.createElement("path", {
1389
+ d: "M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",
1390
+ transform: "translate(0 0)",
1391
+ fill: secondaryColor,
1392
+ opacity: opacity
1393
+ }), /*#__PURE__*/React.createElement("path", {
1394
+ d: "M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",
1395
+ transform: "translate(5.502 5.168)",
1396
+ fill: color
1397
+ }));
1398
+ };
1399
+ var Light = function Light() {
1400
+ return /*#__PURE__*/React.createElement("g", {
1401
+ transform: "translate(2 2)"
1402
+ }, /*#__PURE__*/React.createElement("path", {
1403
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
1404
+ transform: "translate(0.75 0.75)",
1405
+ fill: "none",
1406
+ stroke: color,
1407
+ strokeLinecap: "round",
1408
+ strokeLinejoin: "round",
1409
+ strokeMiterlimit: "10",
1410
+ strokeWidth: strokeWidth
1411
+ }), /*#__PURE__*/React.createElement("path", {
1412
+ d: "M.5,8.172V0",
1413
+ transform: "translate(9.5 5.914)",
1414
+ fill: "none",
1415
+ stroke: color,
1416
+ strokeLinecap: "round",
1417
+ strokeLinejoin: "round",
1418
+ strokeMiterlimit: "10",
1419
+ strokeWidth: strokeWidth
1420
+ }), /*#__PURE__*/React.createElement("path", {
1421
+ d: "M7.5,0,3.748,3.764,0,0",
1422
+ transform: "translate(6.252 10.322)",
1423
+ fill: "none",
1424
+ stroke: color,
1425
+ strokeLinecap: "round",
1426
+ strokeLinejoin: "round",
1427
+ strokeMiterlimit: "10",
1428
+ strokeWidth: strokeWidth
1429
+ }));
1430
+ };
1431
+ var Broken = function Broken() {
1432
+ return /*#__PURE__*/React.createElement("g", {
1433
+ transform: "translate(2 2)"
1434
+ }, /*#__PURE__*/React.createElement("path", {
1435
+ d: "M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",
1436
+ fill: color
1437
+ }));
1438
+ };
1439
+ var TwoTone = function TwoTone() {
1440
+ return /*#__PURE__*/React.createElement("g", {
1441
+ transform: "translate(2 2)"
1442
+ }, /*#__PURE__*/React.createElement("path", {
1443
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
1444
+ transform: "translate(0.75 0.75)",
1445
+ fill: "none",
1446
+ stroke: secondaryColor,
1447
+ strokeLinecap: "round",
1448
+ strokeLinejoin: "round",
1449
+ strokeMiterlimit: "10",
1450
+ strokeWidth: strokeWidth,
1451
+ opacity: opacity
1452
+ }), /*#__PURE__*/React.createElement("path", {
1453
+ d: "M.5,8.172V0",
1454
+ transform: "translate(9.5 5.914)",
1455
+ fill: "none",
1456
+ stroke: color,
1457
+ strokeLinecap: "round",
1458
+ strokeLinejoin: "round",
1459
+ strokeMiterlimit: "10",
1460
+ strokeWidth: strokeWidth
1461
+ }), /*#__PURE__*/React.createElement("path", {
1462
+ d: "M7.5,0,3.748,3.764,0,0",
1463
+ transform: "translate(6.252 10.322)",
1464
+ fill: "none",
1465
+ stroke: color,
1466
+ strokeLinecap: "round",
1467
+ strokeLinejoin: "round",
1468
+ strokeMiterlimit: "10",
1469
+ strokeWidth: strokeWidth
1470
+ }));
1471
+ };
1472
+ var Curved = function Curved() {
1473
+ return /*#__PURE__*/React.createElement("g", {
1474
+ transform: "translate(2 2)"
1475
+ }, /*#__PURE__*/React.createElement("path", {
1476
+ d: "M.5,8.172V0",
1477
+ transform: "translate(9.5 5.914)",
1478
+ fill: "none",
1479
+ stroke: color,
1480
+ strokeLinecap: "round",
1481
+ strokeLinejoin: "round",
1482
+ strokeMiterlimit: "10",
1483
+ strokeWidth: strokeWidth
1484
+ }), /*#__PURE__*/React.createElement("path", {
1485
+ d: "M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",
1486
+ transform: "translate(6.252 10.322)",
1487
+ fill: "none",
1488
+ stroke: color,
1489
+ strokeLinecap: "round",
1490
+ strokeLinejoin: "round",
1491
+ strokeMiterlimit: "10",
1492
+ strokeWidth: strokeWidth
1493
+ }), /*#__PURE__*/React.createElement("path", {
1494
+ d: "M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",
1495
+ transform: "translate(0.75 0.75)",
1496
+ fill: "none",
1497
+ stroke: color,
1498
+ strokeLinecap: "round",
1499
+ strokeLinejoin: "round",
1500
+ strokeMiterlimit: "10",
1501
+ strokeWidth: strokeWidth
1502
+ }));
1503
+ };
1504
+ switch (set) {
1505
+ case "bold":
1506
+ return /*#__PURE__*/React.createElement(Bold, null);
1507
+ case "bulk":
1508
+ return /*#__PURE__*/React.createElement(Bulk, null);
1509
+ case "broken":
1510
+ return /*#__PURE__*/React.createElement(Broken, null);
1511
+ case "two-tone":
1512
+ return /*#__PURE__*/React.createElement(TwoTone, null);
1513
+ case "curved":
1514
+ return /*#__PURE__*/React.createElement(Curved, null);
1515
+ default:
1516
+ return /*#__PURE__*/React.createElement(Light, null);
1517
+ }
1518
+ };
1519
+ ArrowDownSquare.displayName = "NextIconsArrowDownSquare";
1520
+ ArrowDownSquare.propTypes = {
1521
+ opacity: propTypes.string,
1522
+ color: propTypes.string,
1523
+ secondaryColor: propTypes.string,
1524
+ set: propTypes.string,
1525
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
1526
+ };
1527
+ var ArrowDownSquare$1 = withIcon(ArrowDownSquare);
1528
+
1529
+ var ArrowLeft = function ArrowLeft(_ref) {
1530
+ var color = _ref.color,
1531
+ secondaryColor = _ref.secondaryColor,
1532
+ strokeWidth = _ref.strokeWidth,
1533
+ opacity = _ref.opacity,
1534
+ set = _ref.set;
1535
+ var Bold = function Bold() {
1536
+ return /*#__PURE__*/React.createElement("g", {
1537
+ transform: "translate(3 6)"
1538
+ }, /*#__PURE__*/React.createElement("path", {
1539
+ d: "M7.942,12A5.023,5.023,0,0,1,6.6,11.592,22.626,22.626,0,0,1,1.006,7.8l-.379-.4a3.6,3.6,0,0,1-.281-.334A1.771,1.771,0,0,1,0,6.008,1.853,1.853,0,0,1,.375,4.87l.39-.42.087-.09A22.081,22.081,0,0,1,6.743.336L6.987.242A4.065,4.065,0,0,1,7.942,0a2,2,0,0,1,.91.22,1.883,1.883,0,0,1,.808.9,9.781,9.781,0,0,1,.261,1.065,22.351,22.351,0,0,1,.243,3.451v.354a27.187,27.187,0,0,1-.216,3.688l-.113.544a3.9,3.9,0,0,1-.233.784A1.815,1.815,0,0,1,8,12ZM12.8,7.191a1.191,1.191,0,0,1,0-2.381l3.7-.327a1.518,1.518,0,0,1,0,3.036Z",
1540
+ transform: "translate(0)",
1541
+ fill: color
1542
+ }));
1543
+ };
1544
+ var Bulk = function Bulk() {
1545
+ return /*#__PURE__*/React.createElement("g", {
1546
+ transform: "translate(21 6) rotate(90)"
1547
+ }, /*#__PURE__*/React.createElement("path", {
1548
+ d: "M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",
1549
+ transform: "translate(4.483 0)",
1550
+ fill: secondaryColor,
1551
+ opacity: opacity
1552
+ }), /*#__PURE__*/React.createElement("path", {
1553
+ d: "M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",
1554
+ transform: "translate(0 7.835)",
1555
+ fill: color
1556
+ }));
1557
+ };
1558
+ var Light = function Light() {
1559
+ return /*#__PURE__*/React.createElement("g", {
1560
+ transform: "translate(20 5.5) rotate(90)"
1561
+ }, /*#__PURE__*/React.createElement("path", {
1562
+ d: "M.5,15V0",
1563
+ transform: "translate(6.274 0.75)",
1564
+ fill: "none",
1565
+ stroke: color,
1566
+ strokeLinecap: "round",
1567
+ strokeLinejoin: "round",
1568
+ strokeMiterlimit: "10",
1569
+ strokeWidth: strokeWidth
1570
+ }), /*#__PURE__*/React.createElement("path", {
1571
+ d: "M12.049,0,6.025,6.05,0,0",
1572
+ transform: "translate(0.75 9.7)",
1573
+ fill: "none",
1574
+ stroke: color,
1575
+ strokeLinecap: "round",
1576
+ strokeLinejoin: "round",
1577
+ strokeMiterlimit: "10",
1578
+ strokeWidth: strokeWidth
1579
+ }));
1580
+ };
1581
+ var Broken = function Broken() {
1582
+ return /*#__PURE__*/React.createElement("g", {
1583
+ transform: "translate(2.5 4)"
1584
+ }, /*#__PURE__*/React.createElement("path", {
1585
+ d: "M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",
1586
+ transform: "translate(0.5 15.5) rotate(-90)",
1587
+ fill: color
1588
+ }));
1589
+ };
1590
+ var TwoTone = function TwoTone() {
1591
+ return /*#__PURE__*/React.createElement("g", {
1592
+ transform: "translate(20 5.5) rotate(90)"
1593
+ }, /*#__PURE__*/React.createElement("path", {
1594
+ d: "M.5,15V0",
1595
+ transform: "translate(6.274 0.75)",
1596
+ fill: "none",
1597
+ stroke: secondaryColor,
1598
+ strokeLinecap: "round",
1599
+ strokeLinejoin: "round",
1600
+ strokeMiterlimit: "10",
1601
+ strokeWidth: strokeWidth,
1602
+ opacity: opacity
1603
+ }), /*#__PURE__*/React.createElement("path", {
1604
+ d: "M12.049,0,6.025,6.05,0,0",
1605
+ transform: "translate(0.75 9.7)",
1606
+ fill: "none",
1607
+ stroke: color,
1608
+ strokeLinecap: "round",
1609
+ strokeLinejoin: "round",
1610
+ strokeMiterlimit: "10",
1611
+ strokeWidth: strokeWidth
1612
+ }));
1613
+ };
1614
+ var Curved = function Curved() {
1615
+ return /*#__PURE__*/React.createElement("g", {
1616
+ transform: "translate(20 5.5) rotate(90)"
1617
+ }, /*#__PURE__*/React.createElement("path", {
1618
+ d: "M.5,15V0",
1619
+ transform: "translate(6.274 0.75)",
1620
+ fill: "none",
1621
+ stroke: color,
1622
+ strokeLinecap: "round",
1623
+ strokeLinejoin: "round",
1624
+ strokeMiterlimit: "10",
1625
+ strokeWidth: strokeWidth
1626
+ }), /*#__PURE__*/React.createElement("path", {
1627
+ d: "M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",
1628
+ transform: "translate(0.75 9.7)",
1629
+ fill: "none",
1630
+ stroke: color,
1631
+ strokeLinecap: "round",
1632
+ strokeLinejoin: "round",
1633
+ strokeMiterlimit: "10",
1634
+ strokeWidth: strokeWidth
1635
+ }));
1636
+ };
1637
+ switch (set) {
1638
+ case "bold":
1639
+ return /*#__PURE__*/React.createElement(Bold, null);
1640
+ case "bulk":
1641
+ return /*#__PURE__*/React.createElement(Bulk, null);
1642
+ case "broken":
1643
+ return /*#__PURE__*/React.createElement(Broken, null);
1644
+ case "two-tone":
1645
+ return /*#__PURE__*/React.createElement(TwoTone, null);
1646
+ case "curved":
1647
+ return /*#__PURE__*/React.createElement(Curved, null);
1648
+ default:
1649
+ return /*#__PURE__*/React.createElement(Light, null);
1650
+ }
1651
+ };
1652
+ ArrowLeft.displayName = "NextIconsArrowLeft";
1653
+ ArrowLeft.propTypes = {
1654
+ opacity: propTypes.string,
1655
+ color: propTypes.string,
1656
+ secondaryColor: propTypes.string,
1657
+ set: propTypes.string,
1658
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
1659
+ };
1660
+ var ArrowLeft$1 = withIcon(ArrowLeft);
1661
+
1662
+ var ArrowLeftSquare = function ArrowLeftSquare(_ref) {
1663
+ var color = _ref.color,
1664
+ secondaryColor = _ref.secondaryColor,
1665
+ strokeWidth = _ref.strokeWidth,
1666
+ opacity = _ref.opacity,
1667
+ set = _ref.set;
1668
+ var Bold = function Bold() {
1669
+ return /*#__PURE__*/React.createElement("g", {
1670
+ transform: "translate(2 2)"
1671
+ }, /*#__PURE__*/React.createElement("path", {
1672
+ d: "M14.09,20H5.92C2.379,20,0,17.721,0,14.33V5.66C0,2.275,2.379,0,5.92,0h8.17C17.625,0,20,2.275,20,5.66v8.67C20,17.721,17.625,20,14.09,20ZM9.68,5.5a.742.742,0,0,0-.53.218L5.38,9.47a.774.774,0,0,0,0,1.06l3.77,3.75a.754.754,0,0,0,1.059,0,.766.766,0,0,0,0-1.07L7.73,10.75h6.35A.751.751,0,0,0,14.83,10a.742.742,0,0,0-.751-.75H7.73L10.21,6.78a.763.763,0,0,0,.22-.53.787.787,0,0,0-.22-.529A.742.742,0,0,0,9.68,5.5Z",
1673
+ transform: "translate(0 0)",
1674
+ fill: color
1675
+ }));
1676
+ };
1677
+ var Bulk = function Bulk() {
1678
+ return /*#__PURE__*/React.createElement("g", {
1679
+ transform: "translate(22 2) rotate(90)"
1680
+ }, /*#__PURE__*/React.createElement("path", {
1681
+ d: "M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",
1682
+ transform: "translate(0 0)",
1683
+ fill: secondaryColor,
1684
+ opacity: opacity
1685
+ }), /*#__PURE__*/React.createElement("path", {
1686
+ d: "M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",
1687
+ transform: "translate(5.502 5.168)",
1688
+ fill: color
1689
+ }));
1690
+ };
1691
+ var Light = function Light() {
1692
+ return /*#__PURE__*/React.createElement("g", {
1693
+ transform: "translate(22 2) rotate(90)"
1694
+ }, /*#__PURE__*/React.createElement("path", {
1695
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
1696
+ transform: "translate(0.75 0.75)",
1697
+ fill: "none",
1698
+ stroke: color,
1699
+ strokeLinecap: "round",
1700
+ strokeLinejoin: "round",
1701
+ strokeMiterlimit: "10",
1702
+ strokeWidth: strokeWidth
1703
+ }), /*#__PURE__*/React.createElement("path", {
1704
+ d: "M.5,8.172V0",
1705
+ transform: "translate(9.5 5.914)",
1706
+ fill: "none",
1707
+ stroke: color,
1708
+ strokeLinecap: "round",
1709
+ strokeLinejoin: "round",
1710
+ strokeMiterlimit: "10",
1711
+ strokeWidth: strokeWidth
1712
+ }), /*#__PURE__*/React.createElement("path", {
1713
+ d: "M7.5,0,3.748,3.764,0,0",
1714
+ transform: "translate(6.252 10.322)",
1715
+ fill: "none",
1716
+ stroke: color,
1717
+ strokeLinecap: "round",
1718
+ strokeLinejoin: "round",
1719
+ strokeMiterlimit: "10",
1720
+ strokeWidth: strokeWidth
1721
+ }));
1722
+ };
1723
+ var Broken = function Broken() {
1724
+ return /*#__PURE__*/React.createElement("g", {
1725
+ transform: "translate(22 2) rotate(90)"
1726
+ }, /*#__PURE__*/React.createElement("path", {
1727
+ d: "M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",
1728
+ fill: color
1729
+ }));
1730
+ };
1731
+ var TwoTone = function TwoTone() {
1732
+ return /*#__PURE__*/React.createElement("g", {
1733
+ transform: "translate(22 2) rotate(90)"
1734
+ }, /*#__PURE__*/React.createElement("path", {
1735
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
1736
+ transform: "translate(0.75 0.75)",
1737
+ fill: "none",
1738
+ stroke: secondaryColor,
1739
+ strokeLinecap: "round",
1740
+ strokeLinejoin: "round",
1741
+ strokeMiterlimit: "10",
1742
+ strokeWidth: strokeWidth,
1743
+ opacity: opacity
1744
+ }), /*#__PURE__*/React.createElement("path", {
1745
+ d: "M.5,8.172V0",
1746
+ transform: "translate(9.5 5.914)",
1747
+ fill: "none",
1748
+ stroke: color,
1749
+ strokeLinecap: "round",
1750
+ strokeLinejoin: "round",
1751
+ strokeMiterlimit: "10",
1752
+ strokeWidth: strokeWidth
1753
+ }), /*#__PURE__*/React.createElement("path", {
1754
+ d: "M7.5,0,3.748,3.764,0,0",
1755
+ transform: "translate(6.252 10.322)",
1756
+ fill: "none",
1757
+ stroke: color,
1758
+ strokeLinecap: "round",
1759
+ strokeLinejoin: "round",
1760
+ strokeMiterlimit: "10",
1761
+ strokeWidth: strokeWidth
1762
+ }));
1763
+ };
1764
+ var Curved = function Curved() {
1765
+ return /*#__PURE__*/React.createElement("g", {
1766
+ transform: "translate(22 2) rotate(90)"
1767
+ }, /*#__PURE__*/React.createElement("path", {
1768
+ d: "M.5,8.172V0",
1769
+ transform: "translate(9.5 5.914)",
1770
+ fill: "none",
1771
+ stroke: color,
1772
+ strokeLinecap: "round",
1773
+ strokeLinejoin: "round",
1774
+ strokeMiterlimit: "10",
1775
+ strokeWidth: strokeWidth
1776
+ }), /*#__PURE__*/React.createElement("path", {
1777
+ d: "M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",
1778
+ transform: "translate(6.252 10.322)",
1779
+ fill: "none",
1780
+ stroke: color,
1781
+ strokeLinecap: "round",
1782
+ strokeLinejoin: "round",
1783
+ strokeMiterlimit: "10",
1784
+ strokeWidth: strokeWidth
1785
+ }), /*#__PURE__*/React.createElement("path", {
1786
+ d: "M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",
1787
+ transform: "translate(0.75 0.75)",
1788
+ fill: "none",
1789
+ stroke: color,
1790
+ strokeLinecap: "round",
1791
+ strokeLinejoin: "round",
1792
+ strokeMiterlimit: "10",
1793
+ strokeWidth: strokeWidth
1794
+ }));
1795
+ };
1796
+ switch (set) {
1797
+ case "bold":
1798
+ return /*#__PURE__*/React.createElement(Bold, null);
1799
+ case "bulk":
1800
+ return /*#__PURE__*/React.createElement(Bulk, null);
1801
+ case "broken":
1802
+ return /*#__PURE__*/React.createElement(Broken, null);
1803
+ case "two-tone":
1804
+ return /*#__PURE__*/React.createElement(TwoTone, null);
1805
+ case "curved":
1806
+ return /*#__PURE__*/React.createElement(Curved, null);
1807
+ default:
1808
+ return /*#__PURE__*/React.createElement(Light, null);
1809
+ }
1810
+ };
1811
+ ArrowLeftSquare.displayName = "NextIconsArrowLeftSquare";
1812
+ ArrowLeftSquare.propTypes = {
1813
+ opacity: propTypes.string,
1814
+ color: propTypes.string,
1815
+ secondaryColor: propTypes.string,
1816
+ set: propTypes.string,
1817
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
1818
+ };
1819
+ var ArrowLeftSquare$1 = withIcon(ArrowLeftSquare);
1820
+
1821
+ var ArrowRight = function ArrowRight(_ref) {
1822
+ var color = _ref.color,
1823
+ secondaryColor = _ref.secondaryColor,
1824
+ strokeWidth = _ref.strokeWidth,
1825
+ opacity = _ref.opacity,
1826
+ set = _ref.set;
1827
+ var Bold = function Bold() {
1828
+ return /*#__PURE__*/React.createElement("g", {
1829
+ transform: "translate(3 6)"
1830
+ }, /*#__PURE__*/React.createElement("path", {
1831
+ d: "M9.149,11.781a1.889,1.889,0,0,1-.808-.9,9.727,9.727,0,0,1-.261-1.064A22.373,22.373,0,0,1,7.836,6.36V6.007a27.187,27.187,0,0,1,.216-3.688l.113-.544A3.886,3.886,0,0,1,8.4.992,1.814,1.814,0,0,1,10,0h.058A5.023,5.023,0,0,1,11.4.408,22.606,22.606,0,0,1,16.994,4.2l.379.4a3.481,3.481,0,0,1,.281.334A1.766,1.766,0,0,1,18,5.992a1.853,1.853,0,0,1-.375,1.138l-.39.42-.087.09a22.081,22.081,0,0,1-5.891,4.024l-.244.094a4.065,4.065,0,0,1-.955.242A2.005,2.005,0,0,1,9.149,11.781ZM0,6A1.511,1.511,0,0,1,1.5,4.482l3.7.327a1.191,1.191,0,0,1,0,2.381l-3.7.328A1.511,1.511,0,0,1,0,6Z",
1832
+ transform: "translate(0)",
1833
+ fill: color
1834
+ }));
1835
+ };
1836
+ var Bulk = function Bulk() {
1837
+ return /*#__PURE__*/React.createElement("g", {
1838
+ transform: "translate(3 18) rotate(-90)"
1839
+ }, /*#__PURE__*/React.createElement("path", {
1840
+ d: "M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",
1841
+ transform: "translate(4.483 0)",
1842
+ fill: secondaryColor,
1843
+ opacity: opacity
1844
+ }), /*#__PURE__*/React.createElement("path", {
1845
+ d: "M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",
1846
+ transform: "translate(0 7.835)",
1847
+ fill: color
1848
+ }));
1849
+ };
1850
+ var Light = function Light() {
1851
+ return /*#__PURE__*/React.createElement("g", {
1852
+ transform: "translate(4 18.5) rotate(-90)"
1853
+ }, /*#__PURE__*/React.createElement("path", {
1854
+ d: "M.5,15V0",
1855
+ transform: "translate(6.274 0.75)",
1856
+ fill: "none",
1857
+ stroke: color,
1858
+ strokeLinecap: "round",
1859
+ strokeLinejoin: "round",
1860
+ strokeMiterlimit: "10",
1861
+ strokeWidth: strokeWidth
1862
+ }), /*#__PURE__*/React.createElement("path", {
1863
+ d: "M12.049,0,6.025,6.05,0,0",
1864
+ transform: "translate(0.75 9.7)",
1865
+ fill: "none",
1866
+ stroke: color,
1867
+ strokeLinecap: "round",
1868
+ strokeLinejoin: "round",
1869
+ strokeMiterlimit: "10",
1870
+ strokeWidth: strokeWidth
1871
+ }));
1872
+ };
1873
+ var Broken = function Broken() {
1874
+ return /*#__PURE__*/React.createElement("g", {
1875
+ transform: "translate(3 4.5)"
1876
+ }, /*#__PURE__*/React.createElement("path", {
1877
+ d: "M10,14.756a.839.839,0,0,1-.071-1.09L10,13.581,15.2,8.33H.818a.831.831,0,0,1-.1-1.654l.1-.006H17.182a.818.818,0,0,1,.756.513A.841.841,0,0,1,17.832,8l-.073.083-6.6,6.671a.81.81,0,0,1-1.156,0Zm3.726-9.584L13.645,5.1,10,1.418A.839.839,0,0,1,10,.244.81.81,0,0,1,11.075.167l.085.075L14.8,3.92a.841.841,0,0,1,0,1.175.808.808,0,0,1-1.073.077Z",
1878
+ transform: "translate(0 0)",
1879
+ fill: color
1880
+ }));
1881
+ };
1882
+ var TwoTone = function TwoTone() {
1883
+ return /*#__PURE__*/React.createElement("g", {
1884
+ transform: "translate(4 18.5) rotate(-90)"
1885
+ }, /*#__PURE__*/React.createElement("path", {
1886
+ d: "M.5,15V0",
1887
+ transform: "translate(6.274 0.75)",
1888
+ fill: "none",
1889
+ stroke: secondaryColor,
1890
+ strokeLinecap: "round",
1891
+ strokeLinejoin: "round",
1892
+ strokeMiterlimit: "10",
1893
+ strokeWidth: strokeWidth,
1894
+ opacity: opacity
1895
+ }), /*#__PURE__*/React.createElement("path", {
1896
+ d: "M12.049,0,6.025,6.05,0,0",
1897
+ transform: "translate(0.75 9.7)",
1898
+ fill: "none",
1899
+ stroke: color,
1900
+ strokeLinecap: "round",
1901
+ strokeLinejoin: "round",
1902
+ strokeMiterlimit: "10",
1903
+ strokeWidth: strokeWidth
1904
+ }));
1905
+ };
1906
+ var Curved = function Curved() {
1907
+ return /*#__PURE__*/React.createElement("g", {
1908
+ transform: "translate(4 18.5) rotate(-90)"
1909
+ }, /*#__PURE__*/React.createElement("path", {
1910
+ d: "M.5,15V0",
1911
+ transform: "translate(6.274 0.75)",
1912
+ fill: "none",
1913
+ stroke: color,
1914
+ strokeLinecap: "round",
1915
+ strokeLinejoin: "round",
1916
+ strokeMiterlimit: "10",
1917
+ strokeWidth: strokeWidth
1918
+ }), /*#__PURE__*/React.createElement("path", {
1919
+ d: "M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",
1920
+ transform: "translate(0.75 9.7)",
1921
+ fill: "none",
1922
+ stroke: color,
1923
+ strokeLinecap: "round",
1924
+ strokeLinejoin: "round",
1925
+ strokeMiterlimit: "10",
1926
+ strokeWidth: strokeWidth
1927
+ }));
1928
+ };
1929
+ switch (set) {
1930
+ case "bold":
1931
+ return /*#__PURE__*/React.createElement(Bold, null);
1932
+ case "bulk":
1933
+ return /*#__PURE__*/React.createElement(Bulk, null);
1934
+ case "broken":
1935
+ return /*#__PURE__*/React.createElement(Broken, null);
1936
+ case "two-tone":
1937
+ return /*#__PURE__*/React.createElement(TwoTone, null);
1938
+ case "curved":
1939
+ return /*#__PURE__*/React.createElement(Curved, null);
1940
+ default:
1941
+ return /*#__PURE__*/React.createElement(Light, null);
1942
+ }
1943
+ };
1944
+ ArrowRight.displayName = "NextIconsArrowRight";
1945
+ ArrowRight.propTypes = {
1946
+ opacity: propTypes.string,
1947
+ color: propTypes.string,
1948
+ secondaryColor: propTypes.string,
1949
+ set: propTypes.string,
1950
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
1951
+ };
1952
+ var ArrowRight$1 = withIcon(ArrowRight);
1953
+
1954
+ var ArrowRightSquare = function ArrowRightSquare(_ref) {
1955
+ var color = _ref.color,
1956
+ secondaryColor = _ref.secondaryColor,
1957
+ strokeWidth = _ref.strokeWidth,
1958
+ opacity = _ref.opacity,
1959
+ set = _ref.set;
1960
+ var Bold = function Bold() {
1961
+ return /*#__PURE__*/React.createElement("g", {
1962
+ transform: "translate(2 2)"
1963
+ }, /*#__PURE__*/React.createElement("path", {
1964
+ d: "M14.08,20H5.91C2.375,20,0,17.725,0,14.34V5.67C0,2.279,2.375,0,5.91,0H14.08C17.621,0,20,2.279,20,5.67v8.67C20,17.725,17.621,20,14.08,20ZM5.92,9.25A.751.751,0,0,0,5.17,10a.742.742,0,0,0,.751.75h6.35L9.79,13.22a.763.763,0,0,0-.22.53.792.792,0,0,0,.22.53.755.755,0,0,0,1.06,0l3.769-3.75a.772.772,0,0,0,0-1.06L10.85,5.72a.753.753,0,0,0-1.06,0,.766.766,0,0,0,0,1.069L12.27,9.25Z",
1965
+ transform: "translate(0 0)",
1966
+ fill: color
1967
+ }));
1968
+ };
1969
+ var Bulk = function Bulk() {
1970
+ return /*#__PURE__*/React.createElement("g", {
1971
+ transform: "translate(2 22) rotate(-90)"
1972
+ }, /*#__PURE__*/React.createElement("path", {
1973
+ d: "M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",
1974
+ transform: "translate(0 0)",
1975
+ fill: secondaryColor,
1976
+ opacity: opacity
1977
+ }), /*#__PURE__*/React.createElement("path", {
1978
+ d: "M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",
1979
+ transform: "translate(5.502 5.168)",
1980
+ fill: color
1981
+ }));
1982
+ };
1983
+ var Light = function Light() {
1984
+ return /*#__PURE__*/React.createElement("g", {
1985
+ transform: "translate(2 22) rotate(-90)"
1986
+ }, /*#__PURE__*/React.createElement("path", {
1987
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
1988
+ transform: "translate(0.75 0.75)",
1989
+ fill: "none",
1990
+ stroke: color,
1991
+ strokeLinecap: "round",
1992
+ strokeLinejoin: "round",
1993
+ strokeMiterlimit: "10",
1994
+ strokeWidth: strokeWidth
1995
+ }), /*#__PURE__*/React.createElement("path", {
1996
+ d: "M.5,8.172V0",
1997
+ transform: "translate(9.5 5.914)",
1998
+ fill: "none",
1999
+ stroke: color,
2000
+ strokeLinecap: "round",
2001
+ strokeLinejoin: "round",
2002
+ strokeMiterlimit: "10",
2003
+ strokeWidth: strokeWidth
2004
+ }), /*#__PURE__*/React.createElement("path", {
2005
+ d: "M7.5,0,3.748,3.764,0,0",
2006
+ transform: "translate(6.252 10.322)",
2007
+ fill: "none",
2008
+ stroke: color,
2009
+ strokeLinecap: "round",
2010
+ strokeLinejoin: "round",
2011
+ strokeMiterlimit: "10",
2012
+ strokeWidth: strokeWidth
2013
+ }));
2014
+ };
2015
+ var Broken = function Broken() {
2016
+ return /*#__PURE__*/React.createElement("g", {
2017
+ transform: "translate(2 22) rotate(-90)"
2018
+ }, /*#__PURE__*/React.createElement("path", {
2019
+ d: "M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",
2020
+ fill: color
2021
+ }));
2022
+ };
2023
+ var TwoTone = function TwoTone() {
2024
+ return /*#__PURE__*/React.createElement("g", {
2025
+ transform: "translate(2 22) rotate(-90)"
2026
+ }, /*#__PURE__*/React.createElement("path", {
2027
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
2028
+ transform: "translate(0.75 0.75)",
2029
+ fill: "none",
2030
+ stroke: secondaryColor,
2031
+ strokeLinecap: "round",
2032
+ strokeLinejoin: "round",
2033
+ strokeMiterlimit: "10",
2034
+ strokeWidth: strokeWidth,
2035
+ opacity: opacity
2036
+ }), /*#__PURE__*/React.createElement("path", {
2037
+ d: "M.5,8.172V0",
2038
+ transform: "translate(9.5 5.914)",
2039
+ fill: "none",
2040
+ stroke: color,
2041
+ strokeLinecap: "round",
2042
+ strokeLinejoin: "round",
2043
+ strokeMiterlimit: "10",
2044
+ strokeWidth: strokeWidth
2045
+ }), /*#__PURE__*/React.createElement("path", {
2046
+ d: "M7.5,0,3.748,3.764,0,0",
2047
+ transform: "translate(6.252 10.322)",
2048
+ fill: "none",
2049
+ stroke: color,
2050
+ strokeLinecap: "round",
2051
+ strokeLinejoin: "round",
2052
+ strokeMiterlimit: "10",
2053
+ strokeWidth: strokeWidth
2054
+ }));
2055
+ };
2056
+ var Curved = function Curved() {
2057
+ return /*#__PURE__*/React.createElement("g", {
2058
+ transform: "translate(2 22) rotate(-90)"
2059
+ }, /*#__PURE__*/React.createElement("path", {
2060
+ d: "M.5,8.172V0",
2061
+ transform: "translate(9.5 5.914)",
2062
+ fill: "none",
2063
+ stroke: color,
2064
+ strokeLinecap: "round",
2065
+ strokeLinejoin: "round",
2066
+ strokeMiterlimit: "10",
2067
+ strokeWidth: strokeWidth
2068
+ }), /*#__PURE__*/React.createElement("path", {
2069
+ d: "M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",
2070
+ transform: "translate(6.252 10.322)",
2071
+ fill: "none",
2072
+ stroke: color,
2073
+ strokeLinecap: "round",
2074
+ strokeLinejoin: "round",
2075
+ strokeMiterlimit: "10",
2076
+ strokeWidth: strokeWidth
2077
+ }), /*#__PURE__*/React.createElement("path", {
2078
+ d: "M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",
2079
+ transform: "translate(0.75 0.75)",
2080
+ fill: "none",
2081
+ stroke: color,
2082
+ strokeLinecap: "round",
2083
+ strokeLinejoin: "round",
2084
+ strokeMiterlimit: "10",
2085
+ strokeWidth: strokeWidth
2086
+ }));
2087
+ };
2088
+ switch (set) {
2089
+ case "bold":
2090
+ return /*#__PURE__*/React.createElement(Bold, null);
2091
+ case "bulk":
2092
+ return /*#__PURE__*/React.createElement(Bulk, null);
2093
+ case "broken":
2094
+ return /*#__PURE__*/React.createElement(Broken, null);
2095
+ case "two-tone":
2096
+ return /*#__PURE__*/React.createElement(TwoTone, null);
2097
+ case "curved":
2098
+ return /*#__PURE__*/React.createElement(Curved, null);
2099
+ default:
2100
+ return /*#__PURE__*/React.createElement(Light, null);
2101
+ }
2102
+ };
2103
+ ArrowRightSquare.displayName = "NextIconsArrowRightSquare";
2104
+ ArrowRightSquare.propTypes = {
2105
+ opacity: propTypes.string,
2106
+ color: propTypes.string,
2107
+ secondaryColor: propTypes.string,
2108
+ set: propTypes.string,
2109
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
2110
+ };
2111
+ var ArrowRightSquare$1 = withIcon(ArrowRightSquare);
2112
+
2113
+ var ArrowUp = function ArrowUp(_ref) {
2114
+ var color = _ref.color,
2115
+ secondaryColor = _ref.secondaryColor,
2116
+ strokeWidth = _ref.strokeWidth,
2117
+ opacity = _ref.opacity,
2118
+ set = _ref.set;
2119
+ var Bold = function Bold() {
2120
+ return /*#__PURE__*/React.createElement("g", {
2121
+ transform: "translate(6 3)"
2122
+ }, /*#__PURE__*/React.createElement("path", {
2123
+ d: "M4.482,16.5l.327-3.7a1.191,1.191,0,0,1,2.381,0l.328,3.7a1.518,1.518,0,0,1-3.036,0ZM2.318,9.949l-.544-.113A3.886,3.886,0,0,1,.992,9.6,1.814,1.814,0,0,1,0,8V7.942A5.023,5.023,0,0,1,.408,6.6,22.605,22.605,0,0,1,4.2,1.006l.4-.379A3.481,3.481,0,0,1,4.928.347,1.766,1.766,0,0,1,5.992,0,1.853,1.853,0,0,1,7.13.375l.42.39.09.087a22.081,22.081,0,0,1,4.024,5.891l.094.244A4.065,4.065,0,0,1,12,7.942a2.005,2.005,0,0,1-.219.91,1.889,1.889,0,0,1-.9.808,9.728,9.728,0,0,1-1.064.261,22.373,22.373,0,0,1-3.452.243H6.007A27.187,27.187,0,0,1,2.318,9.949Z",
2124
+ transform: "translate(0 0)",
2125
+ fill: color
2126
+ }));
2127
+ };
2128
+ var Bulk = function Bulk() {
2129
+ return /*#__PURE__*/React.createElement("g", {
2130
+ transform: "translate(18 21) rotate(180)"
2131
+ }, /*#__PURE__*/React.createElement("path", {
2132
+ d: "M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",
2133
+ transform: "translate(4.483 0)",
2134
+ fill: secondaryColor,
2135
+ opacity: opacity
2136
+ }), /*#__PURE__*/React.createElement("path", {
2137
+ d: "M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",
2138
+ transform: "translate(0 7.835)",
2139
+ fill: color
2140
+ }));
2141
+ };
2142
+ var Light = function Light() {
2143
+ return /*#__PURE__*/React.createElement("g", {
2144
+ transform: "translate(18.5 20) rotate(180)"
2145
+ }, /*#__PURE__*/React.createElement("path", {
2146
+ d: "M.5,15V0",
2147
+ transform: "translate(6.274 0.75)",
2148
+ fill: "none",
2149
+ stroke: color,
2150
+ strokeLinecap: "round",
2151
+ strokeLinejoin: "round",
2152
+ strokeMiterlimit: "10",
2153
+ strokeWidth: strokeWidth
2154
+ }), /*#__PURE__*/React.createElement("path", {
2155
+ d: "M12.049,0,6.025,6.05,0,0",
2156
+ transform: "translate(0.75 9.7)",
2157
+ fill: "none",
2158
+ stroke: color,
2159
+ strokeLinecap: "round",
2160
+ strokeLinejoin: "round",
2161
+ strokeMiterlimit: "10",
2162
+ strokeWidth: strokeWidth
2163
+ }));
2164
+ };
2165
+ var Broken = function Broken() {
2166
+ return /*#__PURE__*/React.createElement("g", {
2167
+ transform: "translate(4.5 3)"
2168
+ }, /*#__PURE__*/React.createElement("path", {
2169
+ d: "M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",
2170
+ transform: "translate(0)",
2171
+ fill: color
2172
+ }));
2173
+ };
2174
+ var TwoTone = function TwoTone() {
2175
+ return /*#__PURE__*/React.createElement("g", {
2176
+ transform: "translate(18.5 20) rotate(180)"
2177
+ }, /*#__PURE__*/React.createElement("path", {
2178
+ d: "M.5,15V0",
2179
+ transform: "translate(6.274 0.75)",
2180
+ fill: "none",
2181
+ stroke: secondaryColor,
2182
+ strokeLinecap: "round",
2183
+ strokeLinejoin: "round",
2184
+ strokeMiterlimit: "10",
2185
+ strokeWidth: strokeWidth,
2186
+ opacity: opacity
2187
+ }), /*#__PURE__*/React.createElement("path", {
2188
+ d: "M12.049,0,6.025,6.05,0,0",
2189
+ transform: "translate(0.75 9.7)",
2190
+ fill: "none",
2191
+ stroke: color,
2192
+ strokeLinecap: "round",
2193
+ strokeLinejoin: "round",
2194
+ strokeMiterlimit: "10",
2195
+ strokeWidth: strokeWidth
2196
+ }));
2197
+ };
2198
+ var Curved = function Curved() {
2199
+ return /*#__PURE__*/React.createElement("g", {
2200
+ transform: "translate(18.5 20) rotate(180)"
2201
+ }, /*#__PURE__*/React.createElement("path", {
2202
+ d: "M.5,15V0",
2203
+ transform: "translate(6.274 0.75)",
2204
+ fill: "none",
2205
+ stroke: color,
2206
+ strokeLinecap: "round",
2207
+ strokeLinejoin: "round",
2208
+ strokeMiterlimit: "10",
2209
+ strokeWidth: strokeWidth
2210
+ }), /*#__PURE__*/React.createElement("path", {
2211
+ d: "M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",
2212
+ transform: "translate(0.75 9.7)",
2213
+ fill: "none",
2214
+ stroke: color,
2215
+ strokeLinecap: "round",
2216
+ strokeLinejoin: "round",
2217
+ strokeMiterlimit: "10",
2218
+ strokeWidth: strokeWidth
2219
+ }));
2220
+ };
2221
+ switch (set) {
2222
+ case "bold":
2223
+ return /*#__PURE__*/React.createElement(Bold, null);
2224
+ case "bulk":
2225
+ return /*#__PURE__*/React.createElement(Bulk, null);
2226
+ case "broken":
2227
+ return /*#__PURE__*/React.createElement(Broken, null);
2228
+ case "two-tone":
2229
+ return /*#__PURE__*/React.createElement(TwoTone, null);
2230
+ case "curved":
2231
+ return /*#__PURE__*/React.createElement(Curved, null);
2232
+ default:
2233
+ return /*#__PURE__*/React.createElement(Light, null);
2234
+ }
2235
+ };
2236
+ ArrowUp.displayName = "NextIconsArrowUp";
2237
+ ArrowUp.propTypes = {
2238
+ opacity: propTypes.string,
2239
+ color: propTypes.string,
2240
+ secondaryColor: propTypes.string,
2241
+ set: propTypes.string,
2242
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
2243
+ };
2244
+ var ArrowUp$1 = withIcon(ArrowUp);
2245
+
2246
+ var ArrowUpSquare = function ArrowUpSquare(_ref) {
2247
+ var color = _ref.color,
2248
+ secondaryColor = _ref.secondaryColor,
2249
+ strokeWidth = _ref.strokeWidth,
2250
+ opacity = _ref.opacity,
2251
+ set = _ref.set;
2252
+ var Bold = function Bold() {
2253
+ return /*#__PURE__*/React.createElement("g", {
2254
+ transform: "translate(2 2)"
2255
+ }, /*#__PURE__*/React.createElement("path", {
2256
+ d: "M14.34,20H5.67C2.279,20,0,17.625,0,14.09V5.92C0,2.379,2.279,0,5.67,0h8.67C17.725,0,20,2.379,20,5.92v8.17C20,17.625,17.725,20,14.34,20ZM9.25,7.73v6.35a.751.751,0,0,0,.75.751.742.742,0,0,0,.75-.751V7.73l2.47,2.479a.763.763,0,0,0,.53.22.792.792,0,0,0,.53-.22.75.75,0,0,0,0-1.059L10.53,5.38a.774.774,0,0,0-1.06,0L5.72,9.15a.752.752,0,0,0,0,1.059.764.764,0,0,0,1.069,0L9.248,7.732Z",
2257
+ transform: "translate(0 0)",
2258
+ fill: color
2259
+ }));
2260
+ };
2261
+ var Bulk = function Bulk() {
2262
+ return /*#__PURE__*/React.createElement("g", {
2263
+ transform: "translate(22 22) rotate(180)"
2264
+ }, /*#__PURE__*/React.createElement("path", {
2265
+ d: "M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",
2266
+ transform: "translate(0 0)",
2267
+ fill: secondaryColor,
2268
+ opacity: opacity
2269
+ }), /*#__PURE__*/React.createElement("path", {
2270
+ d: "M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",
2271
+ transform: "translate(5.502 5.168)",
2272
+ fill: color
2273
+ }));
2274
+ };
2275
+ var Light = function Light() {
2276
+ return /*#__PURE__*/React.createElement("g", {
2277
+ transform: "translate(22 22) rotate(180)"
2278
+ }, /*#__PURE__*/React.createElement("path", {
2279
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
2280
+ transform: "translate(0.75 0.75)",
2281
+ fill: "none",
2282
+ stroke: color,
2283
+ strokeLinecap: "round",
2284
+ strokeLinejoin: "round",
2285
+ strokeMiterlimit: "10",
2286
+ strokeWidth: strokeWidth
2287
+ }), /*#__PURE__*/React.createElement("path", {
2288
+ d: "M.5,8.172V0",
2289
+ transform: "translate(9.5 5.914)",
2290
+ fill: "none",
2291
+ stroke: color,
2292
+ strokeLinecap: "round",
2293
+ strokeLinejoin: "round",
2294
+ strokeMiterlimit: "10",
2295
+ strokeWidth: strokeWidth
2296
+ }), /*#__PURE__*/React.createElement("path", {
2297
+ d: "M7.5,0,3.748,3.764,0,0",
2298
+ transform: "translate(6.252 10.322)",
2299
+ fill: "none",
2300
+ stroke: color,
2301
+ strokeLinecap: "round",
2302
+ strokeLinejoin: "round",
2303
+ strokeMiterlimit: "10",
2304
+ strokeWidth: strokeWidth
2305
+ }));
2306
+ };
2307
+ var Broken = function Broken() {
2308
+ return /*#__PURE__*/React.createElement("g", {
2309
+ transform: "translate(22 22) rotate(180)"
2310
+ }, /*#__PURE__*/React.createElement("path", {
2311
+ d: "M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",
2312
+ fill: color
2313
+ }));
2314
+ };
2315
+ var TwoTone = function TwoTone() {
2316
+ return /*#__PURE__*/React.createElement("g", {
2317
+ transform: "translate(22 22) rotate(180)"
2318
+ }, /*#__PURE__*/React.createElement("path", {
2319
+ d: "M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",
2320
+ transform: "translate(0.75 0.75)",
2321
+ fill: "none",
2322
+ stroke: secondaryColor,
2323
+ strokeLinecap: "round",
2324
+ strokeLinejoin: "round",
2325
+ strokeMiterlimit: "10",
2326
+ strokeWidth: strokeWidth,
2327
+ opacity: opacity
2328
+ }), /*#__PURE__*/React.createElement("path", {
2329
+ d: "M.5,8.172V0",
2330
+ transform: "translate(9.5 5.914)",
2331
+ fill: "none",
2332
+ stroke: color,
2333
+ strokeLinecap: "round",
2334
+ strokeLinejoin: "round",
2335
+ strokeMiterlimit: "10",
2336
+ strokeWidth: strokeWidth
2337
+ }), /*#__PURE__*/React.createElement("path", {
2338
+ d: "M7.5,0,3.748,3.764,0,0",
2339
+ transform: "translate(6.252 10.322)",
2340
+ fill: "none",
2341
+ stroke: color,
2342
+ strokeLinecap: "round",
2343
+ strokeLinejoin: "round",
2344
+ strokeMiterlimit: "10",
2345
+ strokeWidth: strokeWidth
2346
+ }));
2347
+ };
2348
+ var Curved = function Curved() {
2349
+ return /*#__PURE__*/React.createElement("g", {
2350
+ transform: "translate(22 22) rotate(180)"
2351
+ }, /*#__PURE__*/React.createElement("path", {
2352
+ d: "M.5,8.172V0",
2353
+ transform: "translate(9.5 5.914)",
2354
+ fill: "none",
2355
+ stroke: color,
2356
+ strokeLinecap: "round",
2357
+ strokeLinejoin: "round",
2358
+ strokeMiterlimit: "10",
2359
+ strokeWidth: strokeWidth
2360
+ }), /*#__PURE__*/React.createElement("path", {
2361
+ d: "M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",
2362
+ transform: "translate(6.252 10.322)",
2363
+ fill: "none",
2364
+ stroke: color,
2365
+ strokeLinecap: "round",
2366
+ strokeLinejoin: "round",
2367
+ strokeMiterlimit: "10",
2368
+ strokeWidth: strokeWidth
2369
+ }), /*#__PURE__*/React.createElement("path", {
2370
+ d: "M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",
2371
+ transform: "translate(0.75 0.75)",
2372
+ fill: "none",
2373
+ stroke: color,
2374
+ strokeLinecap: "round",
2375
+ strokeLinejoin: "round",
2376
+ strokeMiterlimit: "10",
2377
+ strokeWidth: strokeWidth
2378
+ }));
2379
+ };
2380
+ switch (set) {
2381
+ case "bold":
2382
+ return /*#__PURE__*/React.createElement(Bold, null);
2383
+ case "bulk":
2384
+ return /*#__PURE__*/React.createElement(Bulk, null);
2385
+ case "broken":
2386
+ return /*#__PURE__*/React.createElement(Broken, null);
2387
+ case "two-tone":
2388
+ return /*#__PURE__*/React.createElement(TwoTone, null);
2389
+ case "curved":
2390
+ return /*#__PURE__*/React.createElement(Curved, null);
2391
+ default:
2392
+ return /*#__PURE__*/React.createElement(Light, null);
2393
+ }
2394
+ };
2395
+ ArrowUpSquare.displayName = "NextIconsArrowUpSquare";
2396
+ ArrowUpSquare.propTypes = {
2397
+ opacity: propTypes.string,
2398
+ color: propTypes.string,
2399
+ secondaryColor: propTypes.string,
2400
+ set: propTypes.string,
2401
+ strokeWidth: propTypes.oneOfType([propTypes.string, propTypes.number])
2402
+ };
2403
+ var ArrowUpSquare$1 = withIcon(ArrowUpSquare);
2404
+
2405
+ exports.ArrowDown = ArrowDown$1;
2406
+ exports.ArrowDownSquare = ArrowDownSquare$1;
2407
+ exports.ArrowLeft = ArrowLeft$1;
2408
+ exports.ArrowLeftSquare = ArrowLeftSquare$1;
2409
+ exports.ArrowRight = ArrowRight$1;
2410
+ exports.ArrowRightSquare = ArrowRightSquare$1;
2411
+ exports.ArrowUp = ArrowUp$1;
2412
+ exports.ArrowUpSquare = ArrowUpSquare$1;
2413
+ exports.NextIconsProvider = NextIconsProvider;
2414
+
2415
+ })));
2416
+ //# sourceMappingURL=index.umd.js.map