@app-studio/web 0.8.29 → 0.8.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/web.esm.js CHANGED
@@ -210,7 +210,7 @@ var Center = /*#__PURE__*/React.forwardRef((props, ref) => (/*#__PURE__*/React.c
210
210
  }))));
211
211
  Center.displayName = 'Center';
212
212
 
213
- var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
213
+ var _excluded$3 = ["size", "color", "filled", "strokeWidth"],
214
214
  _excluded2 = ["size", "color", "filled", "strokeWidth"],
215
215
  _excluded3 = ["size", "color", "filled", "strokeWidth"],
216
216
  _excluded4 = ["size", "color", "filled", "strokeWidth"],
@@ -224,14 +224,14 @@ var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
224
224
  _excluded12 = ["size", "color", "filled", "strokeWidth"],
225
225
  _excluded13 = ["size", "color", "filled", "strokeWidth"],
226
226
  _excluded14 = ["size", "color", "filled", "strokeWidth"],
227
- _excluded15 = ["size", "color", "filled", "strokeWidth"],
228
- _excluded16 = ["size", "color", "strokeWidth", "filled"],
229
- _excluded17 = ["size", "color", "filled", "strokeWidth"],
230
- _excluded18 = ["size", "color", "strokeWidth"],
231
- _excluded19 = ["size", "color", "filled", "strokeWidth"],
232
- _excluded20 = ["size", "color", "strokeWidth"],
227
+ _excluded15 = ["size", "color"],
228
+ _excluded16 = ["size", "color"],
229
+ _excluded17 = ["size", "color"],
230
+ _excluded18 = ["size", "color"],
231
+ _excluded19 = ["size", "color"],
232
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
233
233
  _excluded21 = ["size", "color", "filled", "strokeWidth"],
234
- _excluded22 = ["size", "color", "strokeWidth"],
234
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
235
235
  _excluded23 = ["size", "color", "filled", "strokeWidth"],
236
236
  _excluded24 = ["size", "color", "filled", "strokeWidth"],
237
237
  _excluded25 = ["size", "color", "filled", "strokeWidth"],
@@ -241,74 +241,65 @@ var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
241
241
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
242
242
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
243
243
  _excluded31 = ["size", "color", "filled", "strokeWidth"],
244
- _excluded32 = ["size", "color", "filled", "strokeWidth"],
245
- _excluded33 = ["size", "color", "filled", "strokeWidth"],
246
- _excluded34 = ["size", "color", "filled", "strokeWidth"],
247
- _excluded35 = ["size", "color", "strokeWidth"],
248
- _excluded36 = ["size", "color", "strokeWidth"],
244
+ _excluded32 = ["size", "color"],
245
+ _excluded33 = ["size", "color"],
246
+ _excluded34 = ["size", "color"],
247
+ _excluded35 = ["size", "color", "filled", "strokeWidth"],
248
+ _excluded36 = ["size", "color", "filled", "strokeWidth"],
249
249
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
250
250
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
251
- _excluded39 = ["size", "color", "filled", "strokeWidth"],
252
- _excluded40 = ["size", "color", "filled", "strokeWidth"],
253
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
254
- _excluded42 = ["size", "color", "filled", "strokeWidth"],
255
- _excluded43 = ["size", "color", "filled", "strokeWidth"],
256
- _excluded44 = ["size", "color", "filled", "strokeWidth"],
257
- _excluded45 = ["size", "color", "filled", "strokeWidth"],
258
- _excluded46 = ["size", "color", "filled", "strokeWidth"],
259
- _excluded47 = ["size", "color", "filled", "strokeWidth"],
260
- _excluded48 = ["size", "color", "filled", "strokeWidth"],
261
- _excluded49 = ["size", "color", "filled", "strokeWidth"],
262
- _excluded50 = ["size", "color", "strokeWidth"];
263
- // Default wrapper component for consistent sizing and styling
251
+ _excluded39 = ["size", "color"],
252
+ _excluded40 = ["size", "color"],
253
+ _excluded41 = ["size", "color"],
254
+ _excluded42 = ["size", "color"],
255
+ _excluded43 = ["size", "color"],
256
+ _excluded44 = ["size", "color"],
257
+ _excluded45 = ["size", "color"],
258
+ _excluded46 = ["size", "color"],
259
+ _excluded47 = ["size", "color"],
260
+ _excluded48 = ["size", "color"],
261
+ _excluded49 = ["size", "color"];
262
+ // Default wrapper component for consistent sizing
264
263
  var IconWrapper = _ref => {
265
264
  var {
266
- size,
267
- color = 'black',
268
- transform,
269
- orientation,
270
- children
271
- } = _ref,
272
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$3);
273
- return /*#__PURE__*/React.createElement(Center, Object.assign({
265
+ size,
266
+ color = 'black',
267
+ transform,
268
+ orientation,
269
+ children
270
+ } = _ref;
271
+ return /*#__PURE__*/React.createElement(Center, {
274
272
  size: size,
275
273
  lineHeight: size,
276
274
  color: color,
277
275
  display: "flex",
278
- transform: transform ? transform : orientation === 'left' ? 'rotate(-90deg)' : orientation === 'right' ? 'rotate(90deg)' : orientation === 'up' ? 'rotate(0deg)' : orientation === 'down' ? 'rotate(180deg)' : 'none'
279
- }, rest), children);
280
- };
281
- // Utility function to handle fill and stroke based on 'filled' prop
282
- var getSvgProps = (filled, color, strokeWidth) => {
283
- return {
284
- fill: filled ? color : 'none',
285
- stroke: filled ? 'none' : color,
286
- strokeWidth,
287
- strokeLinecap: 'round',
288
- strokeLinejoin: 'round'
289
- };
276
+ transform: transform ? transform : orientation == 'left' ? 'rotate(-90deg)' : orientation == 'right' ? 'rotate(90deg)' : orientation == 'up' ? 'rotate(0deg)' : orientation == 'down' ? 'rotate(180deg)' : 'none'
277
+ }, children);
290
278
  };
291
- // Example Icon Component: ChevronIcon
292
279
  var ChevronIcon = _ref2 => {
293
280
  var {
294
281
  size = 24,
295
282
  color = 'currentColor',
296
- filled = true,
283
+ filled = false,
297
284
  strokeWidth = 1
298
285
  } = _ref2,
299
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2);
286
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded$3);
300
287
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
301
288
  size: size,
302
289
  color: color
303
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
290
+ }, props), /*#__PURE__*/React.createElement("svg", {
291
+ width: "16",
292
+ height: "16",
293
+ fill: filled ? color : 'none',
304
294
  viewBox: "0 0 24 24",
305
- "aria-hidden": "true",
306
- focusable: "false"
307
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
295
+ stroke: filled ? 'none' : color,
296
+ strokeWidth: strokeWidth,
297
+ strokeLinecap: "round",
298
+ strokeLinejoin: "round"
299
+ }, /*#__PURE__*/React.createElement("path", {
308
300
  d: "M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"
309
301
  })));
310
302
  };
311
- // Example of another Icon: CloseIcon
312
303
  var CloseIcon = _ref3 => {
313
304
  var {
314
305
  size = 24,
@@ -316,126 +307,95 @@ var CloseIcon = _ref3 => {
316
307
  filled = false,
317
308
  strokeWidth = 1
318
309
  } = _ref3,
319
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
310
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
320
311
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
321
312
  size: size,
322
313
  color: color
323
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
314
+ }, props), /*#__PURE__*/React.createElement("svg", {
315
+ xmlns: "http://www.w3.org/2000/svg",
324
316
  viewBox: "0 0 24 24",
325
- "aria-hidden": "true",
326
- focusable: "false"
327
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
328
- stroke: color,
317
+ fill: filled ? color : 'none',
318
+ stroke: filled ? 'none' : color,
319
+ strokeWidth: strokeWidth,
320
+ strokeLinecap: "round",
321
+ strokeLinejoin: "round"
322
+ }, /*#__PURE__*/React.createElement("line", {
329
323
  x1: "18",
330
324
  y1: "6",
331
325
  x2: "6",
332
326
  y2: "18"
333
327
  }), /*#__PURE__*/React.createElement("line", {
334
- stroke: color,
335
328
  x1: "6",
336
329
  y1: "6",
337
330
  x2: "18",
338
331
  y2: "18"
339
332
  })));
340
333
  };
341
- // Continue refactoring other icons similarly...
342
- // Example Refactored Icon: MinusIcon without undefined 'padding' prop
343
- var MinusIcon = _ref4 => {
344
- var {
345
- size = 24,
346
- color = 'currentColor',
347
- filled = false,
348
- // Assuming minus can be filled; adjust as needed
349
- strokeWidth = 1
350
- } = _ref4,
351
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
352
- return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
353
- size: size,
354
- color: color
355
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
356
- viewBox: "0 0 24 24",
357
- "aria-hidden": "true",
358
- focusable: "false"
359
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
360
- d: "M5 12h14"
361
- })));
362
- };
363
- // Example Refactored Icon: InfoIcon with accessibility enhancements
364
- var InfoIcon = _ref5 => {
365
- var {
366
- size = 24,
367
- color = 'currentColor',
368
- filled = false,
369
- strokeWidth = 1
370
- } = _ref5,
371
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
372
- return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
373
- size: size,
374
- color: color
375
- }, props, {
376
- "aria-label": "Information"
377
- }), /*#__PURE__*/React.createElement("svg", Object.assign({
378
- viewBox: "0 0 24 24",
379
- "aria-hidden": "false",
380
- focusable: "false"
381
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
382
- d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
383
- })));
384
- };
385
- var HeartIcon = _ref6 => {
334
+ var HeartIcon = _ref4 => {
386
335
  var {
387
336
  size = 24,
388
337
  color = 'currentColor',
389
338
  filled = true,
390
339
  strokeWidth = 1
391
- } = _ref6,
392
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
340
+ } = _ref4,
341
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
393
342
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
394
343
  size: size,
395
344
  color: color
396
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
345
+ }, props), /*#__PURE__*/React.createElement("svg", {
346
+ xmlns: "http://www.w3.org/2000/svg",
397
347
  viewBox: "0 0 24 24",
398
- "aria-hidden": "false",
399
- focusable: "false"
400
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
348
+ fill: filled ? color : 'none',
349
+ stroke: filled ? 'none' : color,
350
+ strokeWidth: strokeWidth,
351
+ strokeLinecap: "round",
352
+ strokeLinejoin: "round"
353
+ }, /*#__PURE__*/React.createElement("path", {
401
354
  d: "M20.84 4.61c-1.54-1.56-4.04-1.56-5.59 0l-.7.72-.7-.72a3.95 3.95 0 0 0-5.59 0c-1.56 1.56-1.56 4.09 0 5.66l6.29 6.36 6.29-6.36c1.56-1.56 1.56-4.09 0-5.66z"
402
355
  })));
403
356
  };
404
- var StarIcon = _ref7 => {
357
+ var StarIcon = _ref5 => {
405
358
  var {
406
359
  size = 24,
407
360
  color = 'currentColor',
408
361
  filled = true,
409
362
  strokeWidth = 1
410
- } = _ref7,
411
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
363
+ } = _ref5,
364
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
412
365
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
413
366
  size: size,
414
367
  color: color
415
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
368
+ }, props), /*#__PURE__*/React.createElement("svg", {
369
+ xmlns: "http://www.w3.org/2000/svg",
416
370
  viewBox: "0 0 24 24",
417
- "aria-hidden": "false",
418
- focusable: "false"
419
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("polygon", {
371
+ fill: filled ? color : 'none',
372
+ stroke: filled ? 'none' : color,
373
+ strokeWidth: strokeWidth,
374
+ strokeLinecap: "round",
375
+ strokeLinejoin: "round"
376
+ }, /*#__PURE__*/React.createElement("polygon", {
420
377
  points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
421
378
  })));
422
379
  };
423
- var SaveIcon = _ref8 => {
380
+ var SaveIcon = _ref6 => {
424
381
  var {
425
382
  size = 24,
426
383
  color = 'currentColor',
427
384
  filled = false,
428
385
  strokeWidth = 1
429
- } = _ref8,
430
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
386
+ } = _ref6,
387
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
431
388
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
432
389
  size: size,
433
390
  color: color
434
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
391
+ }, props), /*#__PURE__*/React.createElement("svg", {
435
392
  viewBox: "0 0 24 24",
436
- "aria-hidden": "false",
437
- focusable: "false"
438
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
393
+ fill: filled ? color : 'none',
394
+ stroke: filled ? 'none' : color,
395
+ strokeWidth: strokeWidth,
396
+ strokeLinecap: "round",
397
+ strokeLinejoin: "round"
398
+ }, /*#__PURE__*/React.createElement("path", {
439
399
  d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
440
400
  }), /*#__PURE__*/React.createElement("polyline", {
441
401
  points: "17 21 17 13 7 13 7 21"
@@ -443,110 +403,123 @@ var SaveIcon = _ref8 => {
443
403
  points: "7 3 7 8 15 8"
444
404
  })));
445
405
  };
446
- var WarningIcon = _ref9 => {
406
+ var WarningIcon = _ref7 => {
447
407
  var {
448
408
  size = 24,
449
409
  color = 'currentColor',
450
410
  filled = false,
451
411
  strokeWidth = 1
452
- } = _ref9,
453
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
412
+ } = _ref7,
413
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
454
414
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
455
415
  size: size,
456
416
  color: color
457
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
417
+ }, props), /*#__PURE__*/React.createElement("svg", {
458
418
  viewBox: "0 0 24 24",
459
- "aria-hidden": "false",
460
- focusable: "false"
461
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
419
+ fill: filled ? color : 'none',
420
+ stroke: filled ? 'none' : color,
421
+ strokeWidth: strokeWidth,
422
+ strokeLinecap: "round",
423
+ strokeLinejoin: "round"
424
+ }, /*#__PURE__*/React.createElement("path", {
462
425
  d: "M10.29 3.86l-6.6 11.4c-.78 1.36.2 3.1 1.71 3.1h13.2c1.51 0 2.49-1.74 1.71-3.1l-6.6-11.4a2 2 0 0 0-3.42 0z"
463
426
  }), /*#__PURE__*/React.createElement("line", {
464
- stroke: color,
465
427
  x1: "12",
466
428
  y1: "6",
467
429
  x2: "12",
468
430
  y2: "13"
469
431
  }), /*#__PURE__*/React.createElement("line", {
470
- stroke: color,
471
432
  x1: "12",
472
433
  y1: "15",
473
434
  x2: "12",
474
435
  y2: "15"
475
436
  })));
476
437
  };
477
- var BatteryIcon = _ref10 => {
438
+ var BatteryIcon = _ref8 => {
478
439
  var {
479
440
  size = 24,
480
441
  color = 'currentColor',
481
442
  filled = true,
482
443
  strokeWidth = 1
483
- } = _ref10,
484
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
444
+ } = _ref8,
445
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
485
446
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
486
447
  size: size,
487
448
  color: color
488
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
449
+ }, props), /*#__PURE__*/React.createElement("svg", {
489
450
  viewBox: "0 0 24 24",
490
- "aria-hidden": "false",
491
- focusable: "false"
492
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
451
+ fill: filled ? color : 'none',
452
+ stroke: filled ? 'none' : color,
453
+ strokeWidth: strokeWidth,
454
+ strokeLinecap: "round",
455
+ strokeLinejoin: "round"
456
+ }, /*#__PURE__*/React.createElement("path", {
493
457
  d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"
494
458
  })));
495
459
  };
496
- var BookmarkIcon = _ref11 => {
460
+ var BookmarkIcon = _ref9 => {
497
461
  var {
498
462
  size = 24,
499
463
  color = 'currentColor',
500
464
  filled = false,
501
465
  strokeWidth = 1
502
- } = _ref11,
503
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
466
+ } = _ref9,
467
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
504
468
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
505
469
  size: size,
506
470
  color: color
507
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
471
+ }, props), /*#__PURE__*/React.createElement("svg", {
508
472
  viewBox: "0 0 24 24",
509
- "aria-hidden": "false",
510
- focusable: "false"
511
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
473
+ fill: filled ? color : 'none',
474
+ stroke: filled ? 'none' : color,
475
+ strokeWidth: strokeWidth,
476
+ strokeLinecap: "round",
477
+ strokeLinejoin: "round"
478
+ }, /*#__PURE__*/React.createElement("path", {
512
479
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
513
480
  })));
514
481
  };
515
- var CloudIcon = _ref12 => {
482
+ var CloudIcon = _ref10 => {
516
483
  var {
517
484
  size = 24,
518
485
  color = 'currentColor',
519
486
  filled = false,
520
487
  strokeWidth = 1
521
- } = _ref12,
522
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
488
+ } = _ref10,
489
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
523
490
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
524
491
  size: size,
525
492
  color: color
526
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
493
+ }, props), /*#__PURE__*/React.createElement("svg", {
527
494
  viewBox: "0 0 24 24",
528
- "aria-hidden": "false",
529
- focusable: "false"
530
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
495
+ fill: filled ? color : 'none',
496
+ stroke: filled ? 'none' : color,
497
+ strokeWidth: strokeWidth,
498
+ strokeLinecap: "round",
499
+ strokeLinejoin: "round"
500
+ }, /*#__PURE__*/React.createElement("path", {
531
501
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
532
502
  })));
533
503
  };
534
- var CopyIcon = _ref13 => {
504
+ var CopyIcon = _ref11 => {
535
505
  var {
536
506
  size = 24,
537
507
  color = 'currentColor',
538
508
  filled = false,
539
509
  strokeWidth = 1
540
- } = _ref13,
541
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
510
+ } = _ref11,
511
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
542
512
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
543
513
  size: size,
544
514
  color: color
545
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
515
+ }, props), /*#__PURE__*/React.createElement("svg", {
546
516
  viewBox: "0 0 24 24",
547
- "aria-hidden": "false",
548
- focusable: "false"
549
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
517
+ fill: filled ? color : 'none',
518
+ stroke: filled ? 'none' : color,
519
+ strokeWidth: strokeWidth,
520
+ strokeLinecap: "round",
521
+ strokeLinejoin: "round"
522
+ }, /*#__PURE__*/React.createElement("rect", {
550
523
  x: "9",
551
524
  y: "9",
552
525
  width: "13",
@@ -557,146 +530,158 @@ var CopyIcon = _ref13 => {
557
530
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
558
531
  })));
559
532
  };
560
- var DustBinIcon = _ref14 => {
533
+ var DustBinIcon = _ref12 => {
561
534
  var {
562
535
  size = 24,
563
536
  color = 'currentColor',
564
537
  filled = false,
565
538
  strokeWidth = 1
566
- } = _ref14,
567
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
539
+ } = _ref12,
540
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
568
541
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
569
542
  size: size,
570
543
  color: color
571
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
544
+ }, props), /*#__PURE__*/React.createElement("svg", {
572
545
  viewBox: "0 0 24 24",
573
- "aria-hidden": "false",
574
- focusable: "false"
575
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
546
+ fill: filled ? color : 'none',
547
+ stroke: filled ? 'none' : color,
548
+ strokeWidth: strokeWidth,
549
+ strokeLinecap: "round",
550
+ strokeLinejoin: "round"
551
+ }, /*#__PURE__*/React.createElement("path", {
576
552
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
577
553
  })));
578
554
  };
579
- var EditIcon = _ref15 => {
555
+ var EditIcon = _ref13 => {
580
556
  var {
581
557
  size = 24,
582
558
  color = 'currentColor',
583
559
  filled = false,
584
560
  strokeWidth = 1
585
- } = _ref15,
586
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
561
+ } = _ref13,
562
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
587
563
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
588
564
  size: size,
589
565
  color: color
590
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
566
+ }, props), /*#__PURE__*/React.createElement("svg", {
591
567
  viewBox: "0 0 24 24",
592
- "aria-hidden": "false",
593
- focusable: "false"
594
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
568
+ fill: filled ? color : 'none',
569
+ stroke: filled ? 'none' : color,
570
+ strokeWidth: strokeWidth,
571
+ strokeLinecap: "round",
572
+ strokeLinejoin: "round"
573
+ }, /*#__PURE__*/React.createElement("path", {
595
574
  d: "M18.3785 8.44975L8.9636 17.8648C8.6844 18.144 8.3288 18.3343 7.94161 18.4117L4.99988 19.0001L5.58823 16.0583C5.66566 15.6711 5.85597 15.3155 6.13517 15.0363L15.5501 5.62132M18.3785 8.44975L19.7927 7.03553C20.1832 6.64501 20.1832 6.01184 19.7927 5.62132L18.3785 4.20711C17.988 3.81658 17.3548 3.81658 16.9643 4.20711L15.5501 5.62132M18.3785 8.44975L15.5501 5.62132"
596
575
  })));
597
576
  };
598
- var ErrorIcon = _ref16 => {
577
+ var ErrorIcon = _ref14 => {
599
578
  var {
600
579
  size = 24,
601
580
  color = 'currentColor',
602
- strokeWidth = 1,
603
- filled = true
604
- } = _ref16,
605
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
581
+ filled = true,
582
+ strokeWidth = 1
583
+ } = _ref14,
584
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
606
585
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
607
586
  size: size,
608
587
  color: color
609
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
588
+ }, props), /*#__PURE__*/React.createElement("svg", {
610
589
  viewBox: "0 0 24 24",
611
- "aria-hidden": "false",
612
- focusable: "false"
613
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
590
+ fill: filled ? 'currentColor' : 'none',
591
+ stroke: filled ? 'white' : 'currentColor',
592
+ strokeWidth: strokeWidth,
593
+ strokeLinecap: "round",
594
+ strokeLinejoin: "round"
595
+ }, /*#__PURE__*/React.createElement("circle", {
614
596
  cx: "12",
615
597
  cy: "12",
616
598
  r: "10"
617
599
  }), /*#__PURE__*/React.createElement("line", {
600
+ fill: filled ? 'currentColor' : 'none',
618
601
  x1: "15",
619
602
  y1: "9",
620
603
  x2: "9",
621
- y2: "15",
622
- stroke: filled ? 'white' : color
604
+ y2: "15"
623
605
  }), /*#__PURE__*/React.createElement("line", {
606
+ fill: filled ? 'currentColor' : 'none',
624
607
  x1: "9",
625
608
  y1: "9",
626
609
  x2: "15",
627
- y2: "15",
628
- stroke: filled ? 'white' : color
610
+ y2: "15"
629
611
  })));
630
612
  };
631
- var DownloadIcon = _ref17 => {
613
+ var DownloadIcon = _ref15 => {
632
614
  var {
633
615
  size = 24,
634
616
  color = 'currentColor',
635
617
  filled = true,
636
618
  strokeWidth = 1
637
- } = _ref17,
638
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
619
+ } = _ref15,
620
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
639
621
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
640
622
  size: size,
641
623
  color: color
642
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
624
+ }, props), /*#__PURE__*/React.createElement("svg", {
643
625
  viewBox: "0 0 24 24",
644
- "aria-hidden": "false",
645
- focusable: "false"
646
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
626
+ fill: filled ? color : 'none',
627
+ stroke: filled ? 'none' : color,
628
+ strokeWidth: strokeWidth,
629
+ strokeLinecap: "round",
630
+ strokeLinejoin: "round"
631
+ }, /*#__PURE__*/React.createElement("path", {
647
632
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
648
633
  })));
649
634
  };
650
- var MenuIcon = _ref18 => {
635
+ var MenuIcon = _ref16 => {
651
636
  var {
652
637
  size = 24,
653
- color = 'currentColor',
654
- strokeWidth = 1
655
- } = _ref18,
656
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
638
+ color = 'currentColor'
639
+ } = _ref16,
640
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded15);
657
641
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
658
642
  size: size,
659
643
  color: color
660
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
644
+ }, props), /*#__PURE__*/React.createElement("svg", {
661
645
  viewBox: "0 0 24 24",
662
- "aria-hidden": "false",
663
- focusable: "false"
664
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
665
- stroke: color,
646
+ fill: "none",
647
+ stroke: "currentColor",
648
+ strokeWidth: "1",
649
+ strokeLinecap: "round",
650
+ strokeLinejoin: "round"
651
+ }, /*#__PURE__*/React.createElement("line", {
666
652
  x1: "3",
667
653
  y1: "12",
668
654
  x2: "21",
669
655
  y2: "12"
670
656
  }), /*#__PURE__*/React.createElement("line", {
671
- stroke: color,
672
657
  x1: "3",
673
658
  y1: "6",
674
659
  x2: "21",
675
660
  y2: "6"
676
661
  }), /*#__PURE__*/React.createElement("line", {
677
- stroke: color,
678
662
  x1: "3",
679
663
  y1: "18",
680
664
  x2: "21",
681
665
  y2: "18"
682
666
  })));
683
667
  };
684
- var ShareIcon = _ref19 => {
668
+ var ShareIcon = _ref17 => {
685
669
  var {
686
670
  size = 24,
687
- color = 'currentColor',
688
- filled = false,
689
- strokeWidth = 1
690
- } = _ref19,
691
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
671
+ color = 'currentColor'
672
+ } = _ref17,
673
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded16);
692
674
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
693
675
  size: size,
694
676
  color: color
695
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
677
+ }, props), /*#__PURE__*/React.createElement("svg", {
696
678
  viewBox: "0 0 24 24",
697
- "aria-hidden": "false",
698
- focusable: "false"
699
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
679
+ fill: "none",
680
+ stroke: "currentColor",
681
+ strokeWidth: "1",
682
+ strokeLinecap: "round",
683
+ strokeLinejoin: "round"
684
+ }, /*#__PURE__*/React.createElement("circle", {
700
685
  cx: "18",
701
686
  cy: "5",
702
687
  r: "3"
@@ -709,47 +694,45 @@ var ShareIcon = _ref19 => {
709
694
  cy: "19",
710
695
  r: "3"
711
696
  }), /*#__PURE__*/React.createElement("line", {
712
- stroke: color,
713
697
  x1: "8.59",
714
698
  y1: "13.51",
715
699
  x2: "15.42",
716
700
  y2: "17.49"
717
701
  }), /*#__PURE__*/React.createElement("line", {
718
- stroke: color,
719
702
  x1: "15.41",
720
703
  y1: "6.51",
721
704
  x2: "8.59",
722
705
  y2: "10.49"
723
706
  })));
724
707
  };
725
- var RefreshIcon = _ref20 => {
708
+ var RefreshIcon = _ref18 => {
726
709
  var {
727
710
  size = 24,
728
- color = 'currentColor',
729
- strokeWidth = 1
730
- } = _ref20,
731
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
711
+ color = 'currentColor'
712
+ } = _ref18,
713
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded17);
732
714
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
733
715
  size: size,
734
716
  color: color
735
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
717
+ }, props), /*#__PURE__*/React.createElement("svg", {
736
718
  viewBox: "0 0 24 24",
737
- "aria-hidden": "false",
738
- focusable: "false"
739
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("polyline", {
719
+ fill: "none",
720
+ stroke: "currentColor",
721
+ strokeWidth: "1",
722
+ strokeLinecap: "round",
723
+ strokeLinejoin: "round"
724
+ }, /*#__PURE__*/React.createElement("polyline", {
740
725
  points: "23 4 23 10 17 10"
741
726
  }), /*#__PURE__*/React.createElement("path", {
742
727
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
743
728
  })));
744
729
  };
745
- var PrintIcon = _ref21 => {
730
+ var PrintIcon = _ref19 => {
746
731
  var {
747
732
  size = 24,
748
- color = 'currentColor',
749
- filled = true,
750
- strokeWidth = 1
751
- } = _ref21,
752
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
733
+ color = 'currentColor'
734
+ } = _ref19,
735
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded18);
753
736
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
754
737
  size: size,
755
738
  color: color
@@ -762,149 +745,155 @@ var PrintIcon = _ref21 => {
762
745
  d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"
763
746
  })));
764
747
  };
765
- var PanelIcon = _ref22 => {
748
+ var PanelIcon = _ref20 => {
766
749
  var {
767
750
  size = 24,
768
- color = 'currentColor',
769
- strokeWidth = 1
770
- } = _ref22,
771
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
751
+ color = 'currentColor'
752
+ } = _ref20,
753
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded19);
772
754
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
773
755
  size: size,
774
756
  color: color
775
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
757
+ }, props), /*#__PURE__*/React.createElement("svg", {
758
+ xmlns: "http://www.w3.org/2000/svg",
776
759
  viewBox: "0 0 24 24",
777
- "aria-hidden": "false",
778
- focusable: "false"
779
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
780
- stroke: color,
760
+ fill: "none",
761
+ stroke: "currentColor",
762
+ strokeWidth: "1",
763
+ strokeLinecap: "round",
764
+ strokeLinejoin: "round"
765
+ }, /*#__PURE__*/React.createElement("line", {
781
766
  x1: "4",
782
767
  y1: "21",
783
768
  x2: "4",
784
769
  y2: "14"
785
770
  }), /*#__PURE__*/React.createElement("line", {
786
- stroke: color,
787
771
  x1: "4",
788
772
  y1: "10",
789
773
  x2: "4",
790
774
  y2: "3"
791
775
  }), /*#__PURE__*/React.createElement("line", {
792
- stroke: color,
793
776
  x1: "12",
794
777
  y1: "21",
795
778
  x2: "12",
796
779
  y2: "12"
797
780
  }), /*#__PURE__*/React.createElement("line", {
798
- stroke: color,
799
781
  x1: "12",
800
782
  y1: "8",
801
783
  x2: "12",
802
784
  y2: "3"
803
785
  }), /*#__PURE__*/React.createElement("line", {
804
- stroke: color,
805
786
  x1: "20",
806
787
  y1: "21",
807
788
  x2: "20",
808
789
  y2: "16"
809
790
  }), /*#__PURE__*/React.createElement("line", {
810
- stroke: color,
811
791
  x1: "20",
812
792
  y1: "12",
813
793
  x2: "20",
814
794
  y2: "3"
815
795
  }), /*#__PURE__*/React.createElement("line", {
816
- stroke: color,
817
796
  x1: "1",
818
797
  y1: "14",
819
798
  x2: "7",
820
799
  y2: "14"
821
800
  }), /*#__PURE__*/React.createElement("line", {
822
- stroke: color,
823
801
  x1: "9",
824
802
  y1: "8",
825
803
  x2: "15",
826
804
  y2: "8"
827
805
  }), /*#__PURE__*/React.createElement("line", {
828
- stroke: color,
829
806
  x1: "17",
830
807
  y1: "16",
831
808
  x2: "23",
832
809
  y2: "16"
833
810
  })));
834
811
  };
835
- var FilterIcon = _ref23 => {
812
+ var FilterIcon = _ref21 => {
836
813
  var {
837
814
  size = 24,
838
815
  color = 'currentColor',
839
816
  filled = false,
840
817
  strokeWidth = 1
841
- } = _ref23,
842
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
818
+ } = _ref21,
819
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
843
820
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
844
821
  size: size,
845
822
  color: color
846
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
823
+ }, props), /*#__PURE__*/React.createElement("svg", {
847
824
  viewBox: "0 0 24 24",
848
- "aria-hidden": "false",
849
- focusable: "false"
850
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
825
+ fill: filled ? color : 'none',
826
+ stroke: filled ? 'none' : color,
827
+ strokeWidth: strokeWidth,
828
+ strokeLinecap: "round",
829
+ strokeLinejoin: "round"
830
+ }, /*#__PURE__*/React.createElement("path", {
851
831
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
852
832
  })));
853
833
  };
854
- var HomeIcon = _ref24 => {
834
+ var HomeIcon = _ref22 => {
855
835
  var {
856
836
  size = 24,
857
837
  color = 'currentColor',
858
838
  filled = true,
859
839
  strokeWidth = 1
860
- } = _ref24,
861
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
840
+ } = _ref22,
841
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
862
842
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
863
843
  size: size,
864
844
  color: color
865
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
845
+ }, props), /*#__PURE__*/React.createElement("svg", {
866
846
  viewBox: "0 0 24 24",
867
- "aria-hidden": "false",
868
- focusable: "false"
869
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
847
+ fill: filled ? color : 'none',
848
+ stroke: filled ? 'none' : color,
849
+ strokeWidth: strokeWidth,
850
+ strokeLinecap: "round",
851
+ strokeLinejoin: "round"
852
+ }, /*#__PURE__*/React.createElement("path", {
870
853
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
871
854
  })));
872
855
  };
873
- var LocationIcon = _ref25 => {
856
+ var LocationIcon = _ref23 => {
874
857
  var {
875
858
  size = 24,
876
859
  color = 'currentColor',
877
860
  filled = true,
878
861
  strokeWidth = 1
879
- } = _ref25,
880
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
862
+ } = _ref23,
863
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
881
864
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
882
865
  size: size,
883
866
  color: color
884
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
867
+ }, props), /*#__PURE__*/React.createElement("svg", {
885
868
  viewBox: "0 0 24 24",
886
- "aria-hidden": "false",
887
- focusable: "false"
888
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
869
+ fill: filled ? color : 'none',
870
+ stroke: filled ? 'none' : color,
871
+ strokeWidth: strokeWidth,
872
+ strokeLinecap: "round",
873
+ strokeLinejoin: "round"
874
+ }, /*#__PURE__*/React.createElement("path", {
889
875
  d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"
890
876
  })));
891
877
  };
892
- var LockIcon = _ref26 => {
878
+ var LockIcon = _ref24 => {
893
879
  var {
894
880
  size = 24,
895
881
  color = 'currentColor',
896
882
  filled = false,
897
883
  strokeWidth = 1
898
- } = _ref26,
899
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
884
+ } = _ref24,
885
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
900
886
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
901
887
  size: size,
902
888
  color: color
903
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
889
+ }, props), /*#__PURE__*/React.createElement("svg", {
904
890
  viewBox: "0 0 24 24",
905
- "aria-hidden": "false",
906
- focusable: "false"
907
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
891
+ fill: filled ? color : 'none',
892
+ stroke: filled ? 'none' : color,
893
+ strokeWidth: strokeWidth,
894
+ strokeLinecap: "round",
895
+ strokeLinejoin: "round"
896
+ }, /*#__PURE__*/React.createElement("rect", {
908
897
  x: "3",
909
898
  y: "11",
910
899
  width: "18",
@@ -915,190 +904,214 @@ var LockIcon = _ref26 => {
915
904
  d: "M7 11V7a5 5 0 0 1 10 0v4"
916
905
  })));
917
906
  };
918
- var MicrophoneIcon = _ref27 => {
907
+ var MicrophoneIcon = _ref25 => {
919
908
  var {
920
909
  size = 24,
921
910
  color = 'currentColor',
922
911
  filled = false,
923
912
  strokeWidth = 1
924
- } = _ref27,
925
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
913
+ } = _ref25,
914
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
926
915
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
927
916
  size: size,
928
917
  color: color
929
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
918
+ }, props), /*#__PURE__*/React.createElement("svg", {
930
919
  viewBox: "0 0 24 24",
931
- "aria-hidden": "false",
932
- focusable: "false"
933
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
920
+ fill: filled ? color : 'none',
921
+ stroke: filled ? 'none' : color,
922
+ strokeWidth: strokeWidth,
923
+ strokeLinecap: "round",
924
+ strokeLinejoin: "round"
925
+ }, /*#__PURE__*/React.createElement("path", {
934
926
  d: "M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4z"
935
927
  }), /*#__PURE__*/React.createElement("path", {
936
928
  d: "M19 10v2a7 7 0 0 1-14 0v-2"
937
929
  }), /*#__PURE__*/React.createElement("line", {
938
- stroke: color,
939
930
  x1: "12",
940
931
  y1: "19",
941
932
  x2: "12",
942
933
  y2: "23"
943
934
  }), /*#__PURE__*/React.createElement("line", {
944
- stroke: color,
945
935
  x1: "8",
946
936
  y1: "23",
947
937
  x2: "16",
948
938
  y2: "23"
949
939
  })));
950
940
  };
951
- var MoonIcon = _ref28 => {
941
+ var MoonIcon = _ref26 => {
952
942
  var {
953
943
  size = 24,
954
944
  color = 'currentColor',
955
- filled = true,
945
+ filled = false,
956
946
  strokeWidth = 1
957
- } = _ref28,
958
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
947
+ } = _ref26,
948
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
959
949
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
960
950
  size: size,
961
951
  color: color
962
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
952
+ }, props), /*#__PURE__*/React.createElement("svg", {
963
953
  viewBox: "0 0 24 24",
964
- "aria-hidden": "false",
965
- focusable: "false"
966
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
954
+ fill: filled ? color : 'none',
955
+ stroke: filled ? 'none' : color,
956
+ strokeWidth: strokeWidth,
957
+ strokeLinecap: "round",
958
+ strokeLinejoin: "round"
959
+ }, /*#__PURE__*/React.createElement("path", {
967
960
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
968
961
  })));
969
962
  };
970
- var NotificationIcon = _ref29 => {
963
+ var NotificationIcon = _ref27 => {
971
964
  var {
972
965
  size = 24,
973
966
  color = 'currentColor',
974
967
  filled = false,
975
968
  strokeWidth = 1
976
- } = _ref29,
977
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
969
+ } = _ref27,
970
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
978
971
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
979
972
  size: size,
980
973
  color: color
981
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
974
+ }, props), /*#__PURE__*/React.createElement("svg", {
982
975
  viewBox: "0 0 24 24",
983
- "aria-hidden": "false",
984
- focusable: "false"
985
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
976
+ fill: filled ? color : 'none',
977
+ stroke: filled ? 'none' : color,
978
+ strokeWidth: strokeWidth,
979
+ strokeLinecap: "round",
980
+ strokeLinejoin: "round"
981
+ }, /*#__PURE__*/React.createElement("path", {
986
982
  d: "M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9"
987
983
  }), /*#__PURE__*/React.createElement("path", {
988
984
  d: "M13.73 21a2 2 0 0 1-3.46 0"
989
985
  })));
990
986
  };
991
- var OpenEyeIcon = _ref30 => {
987
+ var OpenEyeIcon = _ref28 => {
992
988
  var {
993
989
  size = 24,
994
990
  color = 'currentColor',
995
991
  filled = true,
996
992
  strokeWidth = 1
997
- } = _ref30,
998
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
993
+ } = _ref28,
994
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
999
995
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1000
996
  size: size,
1001
997
  color: color
1002
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
998
+ }, props), /*#__PURE__*/React.createElement("svg", {
1003
999
  viewBox: "0 0 24 24",
1004
- "aria-hidden": "false",
1005
- focusable: "false"
1006
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1000
+ fill: filled ? color : 'none',
1001
+ stroke: filled ? 'none' : color,
1002
+ strokeWidth: strokeWidth,
1003
+ strokeLinecap: "round",
1004
+ strokeLinejoin: "round"
1005
+ }, /*#__PURE__*/React.createElement("path", {
1007
1006
  d: "M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
1008
1007
  })));
1009
1008
  };
1010
- var ProfileIcon = _ref31 => {
1009
+ var ProfileIcon = _ref29 => {
1011
1010
  var {
1012
1011
  size = 24,
1013
1012
  color = 'currentColor',
1014
1013
  filled = true,
1015
1014
  strokeWidth = 1
1016
- } = _ref31,
1017
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1015
+ } = _ref29,
1016
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
1018
1017
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1019
1018
  size: size,
1020
1019
  color: color
1021
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1020
+ }, props), /*#__PURE__*/React.createElement("svg", {
1022
1021
  viewBox: "0 0 24 24",
1023
- "aria-hidden": "false",
1024
- focusable: "false"
1025
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1022
+ fill: filled ? color : 'none',
1023
+ stroke: filled ? 'none' : color,
1024
+ strokeWidth: strokeWidth,
1025
+ strokeLinecap: "round",
1026
+ strokeLinejoin: "round"
1027
+ }, /*#__PURE__*/React.createElement("path", {
1026
1028
  fill: filled ? color : 'none',
1027
1029
  d: "M12 13c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm0-9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z M12 2C9.79 2 8 3.79 8 6s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"
1028
1030
  }), ' '));
1029
1031
  };
1030
- var SettingsIcon = _ref32 => {
1032
+ var SettingsIcon = _ref30 => {
1031
1033
  var {
1032
1034
  size = 24,
1033
1035
  color = 'currentColor',
1034
1036
  filled = false,
1035
1037
  strokeWidth = 1
1036
- } = _ref32,
1037
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1038
+ } = _ref30,
1039
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
1038
1040
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1039
1041
  size: size,
1040
1042
  color: color
1041
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1043
+ }, props), /*#__PURE__*/React.createElement("svg", {
1042
1044
  viewBox: "0 0 24 24",
1043
- "aria-hidden": "false",
1044
- focusable: "false"
1045
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1045
+ fill: filled ? color : 'none',
1046
+ stroke: filled ? 'none' : color,
1047
+ strokeWidth: strokeWidth,
1048
+ strokeLinecap: "round",
1049
+ strokeLinejoin: "round"
1050
+ }, /*#__PURE__*/React.createElement("path", {
1046
1051
  d: "M19.4 13c0-.3.1-.6.1-1s0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.2-.4-.3-.6-.2l-2.5 1c-.5-.4-1.1-.7-1.7-.9l-.4-2.6c0-.2-.3-.4-.5-.4h-4c-.2 0-.5.2-.5.4l-.4 2.6c-.6.2-1.2.5-1.7.9l-2.5-1c-.2-.1-.5 0-.6.2l-2 3.5c-.1.2-.1.4.1.6L4.6 11c0 .3-.1.6-.1 1s0 .7.1 1l-2.1 1.6c-.2.2-.2.4-.1.6l2 3.5c.1.2.4.3.6.2l2.5-1c.5.4 1.1.7 1.7.9l.4 2.6c0 .2.3.4.5.4h4c.2 0 .5-.2.5-.4l.4-2.6c.6-.2 1.2-.5 1.7-.9l2.5 1c.2.1.5 0 .6-.2l2-3.5c.1-.2.1-.4-.1-.6L19.4 13zM12 15.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"
1047
1052
  })));
1048
1053
  };
1049
- var SuccessIcon = _ref33 => {
1054
+ var SuccessIcon = _ref31 => {
1050
1055
  var {
1051
1056
  size = 24,
1052
1057
  color = 'currentColor',
1053
1058
  filled = true,
1054
1059
  strokeWidth = 1
1055
- } = _ref33,
1056
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1060
+ } = _ref31,
1061
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
1057
1062
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1058
1063
  size: size,
1059
1064
  color: color
1060
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1065
+ }, props), /*#__PURE__*/React.createElement("svg", {
1061
1066
  viewBox: "0 0 24 24",
1062
- "aria-hidden": "false",
1063
- focusable: "false"
1064
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1067
+ fill: filled ? color : 'none',
1068
+ stroke: filled ? 'none' : color,
1069
+ strokeWidth: strokeWidth,
1070
+ strokeLinecap: "round",
1071
+ strokeLinejoin: "round"
1072
+ }, /*#__PURE__*/React.createElement("path", {
1065
1073
  d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
1066
1074
  })));
1067
1075
  };
1068
- var UnLikeIcon = _ref34 => {
1076
+ var UnLikeIcon = _ref32 => {
1069
1077
  var {
1070
1078
  size = 24,
1071
1079
  color = 'currentColor',
1072
1080
  filled = true,
1073
1081
  strokeWidth = 1
1074
- } = _ref34,
1075
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1082
+ } = _ref32,
1083
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
1076
1084
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1077
1085
  size: size,
1078
1086
  color: color
1079
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1087
+ }, props), /*#__PURE__*/React.createElement("svg", {
1080
1088
  viewBox: "0 0 24 24",
1081
- "aria-hidden": "false",
1082
- focusable: "false"
1083
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1089
+ fill: filled ? color : 'none',
1090
+ stroke: filled ? 'none' : color,
1091
+ strokeWidth: strokeWidth,
1092
+ strokeLinecap: "round",
1093
+ strokeLinejoin: "round"
1094
+ }, /*#__PURE__*/React.createElement("path", {
1084
1095
  d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"
1085
1096
  })));
1086
1097
  };
1087
- var ClockIcon = _ref35 => {
1098
+ var ClockIcon = _ref33 => {
1088
1099
  var {
1089
1100
  size = 24,
1090
- color = 'currentColor',
1091
- strokeWidth = 1
1092
- } = _ref35,
1093
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1101
+ color = 'currentColor'
1102
+ } = _ref33,
1103
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded32);
1094
1104
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1095
1105
  size: size,
1096
1106
  color: color
1097
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1107
+ }, props), /*#__PURE__*/React.createElement("svg", {
1098
1108
  viewBox: "0 0 24 24",
1099
- "aria-hidden": "false",
1100
- focusable: "false"
1101
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1109
+ fill: "none",
1110
+ stroke: "currentColor",
1111
+ strokeWidth: "1",
1112
+ strokeLinecap: "round",
1113
+ strokeLinejoin: "round"
1114
+ }, /*#__PURE__*/React.createElement("circle", {
1102
1115
  cx: "12",
1103
1116
  cy: "12",
1104
1117
  r: "10"
@@ -1106,21 +1119,23 @@ var ClockIcon = _ref35 => {
1106
1119
  points: "12 6 12 12 16 14"
1107
1120
  })));
1108
1121
  };
1109
- var CameraIcon = _ref36 => {
1122
+ var CameraIcon = _ref34 => {
1110
1123
  var {
1111
1124
  size = 24,
1112
- color = 'currentColor',
1113
- strokeWidth = 1
1114
- } = _ref36,
1115
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1125
+ color = 'currentColor'
1126
+ } = _ref34,
1127
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded33);
1116
1128
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1117
1129
  size: size,
1118
1130
  color: color
1119
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1131
+ }, props), /*#__PURE__*/React.createElement("svg", {
1120
1132
  viewBox: "0 0 24 24",
1121
- "aria-hidden": "false",
1122
- focusable: "false"
1123
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1133
+ fill: "none",
1134
+ stroke: "currentColor",
1135
+ strokeWidth: "1",
1136
+ strokeLinecap: "round",
1137
+ strokeLinejoin: "round"
1138
+ }, /*#__PURE__*/React.createElement("path", {
1124
1139
  d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3l2-3h8l2 3h3a2 2 0 0 1 2 2z"
1125
1140
  }), /*#__PURE__*/React.createElement("circle", {
1126
1141
  cx: "12",
@@ -1128,60 +1143,63 @@ var CameraIcon = _ref36 => {
1128
1143
  r: "4"
1129
1144
  })));
1130
1145
  };
1131
- var BluetoothIcon = _ref37 => {
1146
+ var BluetoothIcon = _ref35 => {
1132
1147
  var {
1133
1148
  size = 24,
1134
- color = 'currentColor',
1135
- filled = true,
1136
- strokeWidth = 1
1137
- } = _ref37,
1138
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1149
+ color = 'currentColor'
1150
+ } = _ref35,
1151
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded34);
1139
1152
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1140
1153
  size: size,
1141
1154
  color: color
1142
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1155
+ }, props), /*#__PURE__*/React.createElement("svg", {
1143
1156
  viewBox: "0 0 24 24",
1144
- "aria-hidden": "false",
1145
- focusable: "false"
1146
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1157
+ fill: 'currentColor'
1158
+ }, /*#__PURE__*/React.createElement("path", {
1147
1159
  d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"
1148
1160
  })));
1149
1161
  };
1150
- var LikeIcon = _ref38 => {
1162
+ var LikeIcon = _ref36 => {
1151
1163
  var {
1152
1164
  size = 24,
1153
1165
  color = 'currentColor',
1154
1166
  filled = true,
1155
1167
  strokeWidth = 1
1156
- } = _ref38,
1157
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1168
+ } = _ref36,
1169
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
1158
1170
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1159
1171
  size: size,
1160
1172
  color: color
1161
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1173
+ }, props), /*#__PURE__*/React.createElement("svg", {
1162
1174
  viewBox: "0 0 24 24",
1163
- "aria-hidden": "false",
1164
- focusable: "false"
1165
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1175
+ fill: filled ? color : 'none',
1176
+ stroke: filled ? 'none' : color,
1177
+ strokeWidth: strokeWidth,
1178
+ strokeLinecap: "round",
1179
+ strokeLinejoin: "round"
1180
+ }, /*#__PURE__*/React.createElement("path", {
1166
1181
  d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"
1167
1182
  })));
1168
1183
  };
1169
- var UnlockIcon = _ref39 => {
1184
+ var UnlockIcon = _ref37 => {
1170
1185
  var {
1171
1186
  size = 24,
1172
1187
  color = 'currentColor',
1173
1188
  filled = false,
1174
1189
  strokeWidth = 1
1175
- } = _ref39,
1176
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1190
+ } = _ref37,
1191
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
1177
1192
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1178
1193
  size: size,
1179
1194
  color: color
1180
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1195
+ }, props), /*#__PURE__*/React.createElement("svg", {
1181
1196
  viewBox: "0 0 24 24",
1182
- "aria-hidden": "false",
1183
- focusable: "false"
1184
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
1197
+ fill: filled ? color : 'none',
1198
+ stroke: filled ? 'none' : color,
1199
+ strokeWidth: strokeWidth,
1200
+ strokeLinecap: "round",
1201
+ strokeLinejoin: "round"
1202
+ }, /*#__PURE__*/React.createElement("rect", {
1185
1203
  x: "3",
1186
1204
  y: "11",
1187
1205
  width: "18",
@@ -1192,41 +1210,47 @@ var UnlockIcon = _ref39 => {
1192
1210
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1193
1211
  })));
1194
1212
  };
1195
- var WifiIcon = _ref40 => {
1213
+ var WifiIcon = _ref38 => {
1196
1214
  var {
1197
1215
  size = 24,
1198
1216
  color = 'currentColor',
1199
1217
  filled = false,
1200
1218
  strokeWidth = 1
1201
- } = _ref40,
1202
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1219
+ } = _ref38,
1220
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
1203
1221
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1204
1222
  size: size,
1205
1223
  color: color
1206
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1224
+ }, props), /*#__PURE__*/React.createElement("svg", {
1207
1225
  viewBox: "0 0 24 24",
1208
- "aria-hidden": "false",
1209
- focusable: "false"
1210
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1226
+ fill: filled ? color : 'none',
1227
+ stroke: filled ? 'none' : color,
1228
+ strokeWidth: strokeWidth,
1229
+ strokeLinecap: "round",
1230
+ strokeLinejoin: "round"
1231
+ }, /*#__PURE__*/React.createElement("path", {
1211
1232
  d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"
1212
1233
  })));
1213
1234
  };
1214
- var UploadIcon = _ref41 => {
1235
+ var UploadIcon = _ref39 => {
1215
1236
  var {
1216
1237
  size = 24,
1217
1238
  color = 'currentColor',
1218
1239
  filled = false,
1219
1240
  strokeWidth = 1
1220
- } = _ref41,
1221
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1241
+ } = _ref39,
1242
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
1222
1243
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1223
1244
  size: size,
1224
1245
  color: color
1225
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1246
+ }, props), /*#__PURE__*/React.createElement("svg", {
1226
1247
  viewBox: "0 0 24 24",
1227
- "aria-hidden": "false",
1228
- focusable: "false"
1229
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1248
+ fill: filled ? color : 'none',
1249
+ stroke: filled ? 'none' : color,
1250
+ strokeWidth: strokeWidth,
1251
+ strokeLinecap: "round",
1252
+ strokeLinejoin: "round"
1253
+ }, /*#__PURE__*/React.createElement("path", {
1230
1254
  d: "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"
1231
1255
  }), /*#__PURE__*/React.createElement("path", {
1232
1256
  d: "M9 15l3 -3l3 3"
@@ -1234,99 +1258,123 @@ var UploadIcon = _ref41 => {
1234
1258
  d: "M12 12l0 9"
1235
1259
  })));
1236
1260
  };
1237
- var SearchIcon = _ref42 => {
1261
+ var SearchIcon = _ref40 => {
1238
1262
  var {
1239
1263
  size = 24,
1240
- color = 'currentColor',
1241
- filled = true,
1242
- strokeWidth = 1
1243
- } = _ref42,
1244
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1264
+ color = 'currentColor'
1265
+ } = _ref40,
1266
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded39);
1245
1267
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1246
1268
  size: size,
1247
1269
  color: color
1248
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1270
+ }, props), /*#__PURE__*/React.createElement("svg", {
1249
1271
  viewBox: "0 0 24 24",
1250
- "aria-hidden": "false",
1251
- focusable: "false"
1252
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1272
+ fill: 'currentColor'
1273
+ }, /*#__PURE__*/React.createElement("path", {
1253
1274
  d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
1254
1275
  })));
1255
1276
  };
1256
- var CloseEyeIcon = _ref43 => {
1277
+ var CloseEyeIcon = _ref41 => {
1257
1278
  var {
1258
1279
  size = 24,
1259
- color = 'currentColor',
1260
- filled = true,
1261
- strokeWidth = 1
1262
- } = _ref43,
1263
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1280
+ color = 'currentColor'
1281
+ } = _ref41,
1282
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded40);
1264
1283
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1265
1284
  size: size,
1266
1285
  color: color
1267
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1286
+ }, props), /*#__PURE__*/React.createElement("svg", {
1268
1287
  viewBox: "0 0 24 24",
1269
- "aria-hidden": "false",
1270
- focusable: "false"
1271
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1288
+ fill: color
1289
+ }, /*#__PURE__*/React.createElement("path", {
1272
1290
  d: "M19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L14.032 8.55382C13.4365 8.20193 12.7418 8 12 8C9.79086 8 8 9.79086 8 12C8 12.7418 8.20193 13.4365 8.55382 14.032L4.29289 18.2929C3.90237 18.6834 3.90237 19.3166 4.29289 19.7071C4.68342 20.0976 5.31658 20.0976 5.70711 19.7071L9.96803 15.4462C10.5635 15.7981 11.2582 16 12 16C14.2091 16 16 14.2091 16 12C16 11.2582 15.7981 10.5635 15.4462 9.96803L19.7071 5.70711ZM12.518 10.0677C12.3528 10.0236 12.1792 10 12 10C10.8954 10 10 10.8954 10 12C10 12.1792 10.0236 12.3528 10.0677 12.518L12.518 10.0677ZM11.482 13.9323L13.9323 11.482C13.9764 11.6472 14 11.8208 14 12C14 13.1046 13.1046 14 12 14C11.8208 14 11.6472 13.9764 11.482 13.9323ZM15.7651 4.8207C14.6287 4.32049 13.3675 4 12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C1.92276 13.7326 2.86706 15.0637 4.21194 16.3739L5.62626 14.9596C4.4555 13.8229 3.61144 12.6531 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C12.7719 6 13.5135 6.13385 14.2193 6.36658L15.7651 4.8207ZM12 18C11.2282 18 10.4866 17.8661 9.78083 17.6334L8.23496 19.1793C9.37136 19.6795 10.6326 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C22.0773 10.2674 21.133 8.93627 19.7881 7.62611L18.3738 9.04043C19.5446 10.1771 20.3887 11.3469 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18Z",
1273
1291
  fill: "currentColor"
1274
1292
  })));
1275
1293
  };
1276
- var ExternalLinkIcon = _ref44 => {
1294
+ var ExternalLinkIcon = _ref42 => {
1277
1295
  var {
1278
1296
  size = 24,
1279
- color = 'currentColor',
1280
- filled = true,
1281
- strokeWidth = 1
1282
- } = _ref44,
1283
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1297
+ color = 'currentColor'
1298
+ } = _ref42,
1299
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded41);
1284
1300
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1285
1301
  size: size,
1286
1302
  color: color
1287
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1303
+ }, props), /*#__PURE__*/React.createElement("svg", {
1288
1304
  viewBox: "0 0 24 24",
1289
- "aria-hidden": "false",
1290
- focusable: "false"
1291
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1305
+ fill: 'currentColor'
1306
+ }, /*#__PURE__*/React.createElement("path", {
1292
1307
  d: "M14 3h7v7h-2V5.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h5v2H6v11h11v-4h2v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Z"
1293
1308
  })));
1294
1309
  };
1310
+ var MinusIcon = _ref43 => {
1311
+ var {
1312
+ size = 24,
1313
+ color = 'currentColor'
1314
+ } = _ref43,
1315
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1316
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1317
+ padding: 2,
1318
+ size: size,
1319
+ color: color
1320
+ }, props), /*#__PURE__*/React.createElement("svg", {
1321
+ viewBox: "0 0 24 24",
1322
+ fill: "none",
1323
+ stroke: 'currentColor',
1324
+ strokeWidth: "1"
1325
+ }, /*#__PURE__*/React.createElement("path", {
1326
+ d: "M7 12h10",
1327
+ strokeLinecap: "round",
1328
+ strokeLinejoin: "round"
1329
+ })));
1330
+ };
1331
+ var InfoIcon = _ref44 => {
1332
+ var {
1333
+ size = 24,
1334
+ color = 'currentColor'
1335
+ } = _ref44,
1336
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded43);
1337
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1338
+ size: size,
1339
+ color: color
1340
+ }, props), /*#__PURE__*/React.createElement("svg", {
1341
+ viewBox: "0 0 24 24",
1342
+ fill: 'currentColor'
1343
+ }, /*#__PURE__*/React.createElement("path", {
1344
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
1345
+ })));
1346
+ };
1295
1347
  var PlusIcon = _ref45 => {
1296
1348
  var {
1297
1349
  size = 24,
1298
- color = 'currentColor',
1299
- filled = true,
1300
- strokeWidth = 1
1350
+ color = 'currentColor'
1301
1351
  } = _ref45,
1302
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1352
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded44);
1303
1353
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1304
1354
  size: size,
1305
1355
  color: color
1306
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1356
+ }, props), /*#__PURE__*/React.createElement("svg", {
1307
1357
  viewBox: "0 0 24 24",
1308
- "aria-hidden": "false",
1309
- focusable: "false"
1310
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1358
+ fill: 'currentColor'
1359
+ }, /*#__PURE__*/React.createElement("path", {
1311
1360
  d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1312
1361
  })));
1313
1362
  };
1314
1363
  var TickIcon = _ref46 => {
1315
1364
  var {
1316
1365
  size = 24,
1317
- color = 'currentColor',
1318
- filled = true,
1319
- strokeWidth = 1
1366
+ color = 'currentColor'
1320
1367
  } = _ref46,
1321
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1368
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded45);
1322
1369
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1323
1370
  size: size,
1324
1371
  color: color
1325
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1372
+ }, props), /*#__PURE__*/React.createElement("svg", {
1326
1373
  viewBox: "0 0 24 24",
1327
- "aria-hidden": "false",
1328
- focusable: "false"
1329
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1374
+ fill: "none",
1375
+ stroke: 'currentColor',
1376
+ strokeWidth: "1"
1377
+ }, /*#__PURE__*/React.createElement("path", {
1330
1378
  d: "M5 13l4 4L19 7",
1331
1379
  strokeLinecap: "round",
1332
1380
  strokeLinejoin: "round"
@@ -1335,39 +1383,38 @@ var TickIcon = _ref46 => {
1335
1383
  var BoldArrowIcon = _ref47 => {
1336
1384
  var {
1337
1385
  size = 24,
1338
- color = 'currentColor',
1339
- filled = true,
1340
- strokeWidth = 1
1386
+ color = 'currentColor'
1341
1387
  } = _ref47,
1342
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1388
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded46);
1343
1389
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1344
1390
  size: size,
1345
1391
  color: color
1346
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1392
+ }, props), /*#__PURE__*/React.createElement("svg", {
1347
1393
  viewBox: "0 0 24 24",
1348
- "aria-hidden": "false",
1349
- focusable: "false"
1350
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1394
+ fill: 'currentColor'
1395
+ }, /*#__PURE__*/React.createElement("path", {
1351
1396
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1352
1397
  })));
1353
1398
  };
1354
1399
  var ArrowIcon = _ref48 => {
1355
1400
  var {
1356
1401
  size = 24,
1357
- color = 'currentColor',
1358
- filled = true,
1359
- strokeWidth = 1
1402
+ color = 'currentColor'
1360
1403
  } = _ref48,
1361
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1404
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded47);
1362
1405
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1363
1406
  size: size,
1364
1407
  color: color
1365
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1408
+ }, props), /*#__PURE__*/React.createElement("svg", {
1409
+ width: "24",
1410
+ height: "24",
1366
1411
  viewBox: "0 0 24 24",
1367
- "aria-hidden": "false",
1368
- focusable: "false"
1369
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1370
- stroke: color,
1412
+ strokeWidth: "1",
1413
+ stroke: 'currentColor',
1414
+ fill: "none",
1415
+ strokeLinecap: "round",
1416
+ strokeLinejoin: "round"
1417
+ }, /*#__PURE__*/React.createElement("line", {
1371
1418
  x1: "12",
1372
1419
  y1: "20",
1373
1420
  x2: "12",
@@ -1379,19 +1426,23 @@ var ArrowIcon = _ref48 => {
1379
1426
  var SpinnerIcon = _ref49 => {
1380
1427
  var {
1381
1428
  size = 24,
1382
- color = 'currentColor',
1383
- filled = true,
1384
- strokeWidth = 1
1429
+ color = 'currentColor'
1385
1430
  } = _ref49,
1386
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1431
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1387
1432
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1388
1433
  size: size,
1389
1434
  color: color
1390
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1435
+ }, props), /*#__PURE__*/React.createElement("svg", {
1436
+ xmlns: "http://www.w3.org/2000/svg",
1437
+ width: "24",
1438
+ height: "24",
1391
1439
  viewBox: "0 0 24 24",
1392
- "aria-hidden": "false",
1393
- focusable: "false"
1394
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1440
+ fill: "none",
1441
+ stroke: "currentColor",
1442
+ strokeWidth: "2",
1443
+ strokeLinecap: "round",
1444
+ strokeLinejoin: "round"
1445
+ }, /*#__PURE__*/React.createElement("circle", {
1395
1446
  cx: "12",
1396
1447
  cy: "12",
1397
1448
  r: "10",
@@ -1404,18 +1455,20 @@ var SpinnerIcon = _ref49 => {
1404
1455
  var CalendarIcon = _ref50 => {
1405
1456
  var {
1406
1457
  size = 24,
1407
- color = 'currentColor',
1408
- strokeWidth = 1
1458
+ color = 'currentColor'
1409
1459
  } = _ref50,
1410
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1460
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1411
1461
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1412
1462
  size: size,
1413
1463
  color: color
1414
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1464
+ }, props), /*#__PURE__*/React.createElement("svg", {
1415
1465
  viewBox: "0 0 24 24",
1416
- "aria-hidden": "false",
1417
- focusable: "false"
1418
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
1466
+ fill: "none",
1467
+ stroke: "currentColor",
1468
+ strokeWidth: "1",
1469
+ strokeLinecap: "round",
1470
+ strokeLinejoin: "round"
1471
+ }, /*#__PURE__*/React.createElement("rect", {
1419
1472
  x: "3",
1420
1473
  y: "4",
1421
1474
  width: "18",
@@ -1423,19 +1476,16 @@ var CalendarIcon = _ref50 => {
1423
1476
  rx: "2",
1424
1477
  ry: "2"
1425
1478
  }), /*#__PURE__*/React.createElement("line", {
1426
- stroke: color,
1427
1479
  x1: "16",
1428
1480
  y1: "2",
1429
1481
  x2: "16",
1430
1482
  y2: "6"
1431
1483
  }), /*#__PURE__*/React.createElement("line", {
1432
- stroke: color,
1433
1484
  x1: "8",
1434
1485
  y1: "2",
1435
1486
  x2: "8",
1436
1487
  y2: "6"
1437
1488
  }), /*#__PURE__*/React.createElement("line", {
1438
- stroke: color,
1439
1489
  x1: "3",
1440
1490
  y1: "10",
1441
1491
  x2: "21",
@@ -1447,8 +1497,6 @@ var Icon = {
1447
1497
  __proto__: null,
1448
1498
  ChevronIcon: ChevronIcon,
1449
1499
  CloseIcon: CloseIcon,
1450
- MinusIcon: MinusIcon,
1451
- InfoIcon: InfoIcon,
1452
1500
  HeartIcon: HeartIcon,
1453
1501
  StarIcon: StarIcon,
1454
1502
  SaveIcon: SaveIcon,
@@ -1488,6 +1536,8 @@ var Icon = {
1488
1536
  SearchIcon: SearchIcon,
1489
1537
  CloseEyeIcon: CloseEyeIcon,
1490
1538
  ExternalLinkIcon: ExternalLinkIcon,
1539
+ MinusIcon: MinusIcon,
1540
+ InfoIcon: InfoIcon,
1491
1541
  PlusIcon: PlusIcon,
1492
1542
  TickIcon: TickIcon,
1493
1543
  BoldArrowIcon: BoldArrowIcon,