@app-studio/web 0.8.30 → 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,130 +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("line", {
360
- stroke: color,
361
- x1: "8",
362
- y1: "12",
363
- x2: "16",
364
- y2: "12"
365
- })));
366
- };
367
- // Example Refactored Icon: InfoIcon with accessibility enhancements
368
- var InfoIcon = _ref5 => {
369
- var {
370
- size = 24,
371
- color = 'currentColor',
372
- filled = false,
373
- strokeWidth = 1
374
- } = _ref5,
375
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
376
- return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
377
- size: size,
378
- color: color
379
- }, props, {
380
- "aria-label": "Information"
381
- }), /*#__PURE__*/React.createElement("svg", Object.assign({
382
- viewBox: "0 0 24 24",
383
- "aria-hidden": "false",
384
- focusable: "false"
385
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
386
- 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"
387
- })));
388
- };
389
- var HeartIcon = _ref6 => {
334
+ var HeartIcon = _ref4 => {
390
335
  var {
391
336
  size = 24,
392
337
  color = 'currentColor',
393
338
  filled = true,
394
339
  strokeWidth = 1
395
- } = _ref6,
396
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
340
+ } = _ref4,
341
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
397
342
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
398
343
  size: size,
399
344
  color: color
400
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
345
+ }, props), /*#__PURE__*/React.createElement("svg", {
346
+ xmlns: "http://www.w3.org/2000/svg",
401
347
  viewBox: "0 0 24 24",
402
- "aria-hidden": "false",
403
- focusable: "false"
404
- }, 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", {
405
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"
406
355
  })));
407
356
  };
408
- var StarIcon = _ref7 => {
357
+ var StarIcon = _ref5 => {
409
358
  var {
410
359
  size = 24,
411
360
  color = 'currentColor',
412
361
  filled = true,
413
362
  strokeWidth = 1
414
- } = _ref7,
415
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
363
+ } = _ref5,
364
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
416
365
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
417
366
  size: size,
418
367
  color: color
419
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
368
+ }, props), /*#__PURE__*/React.createElement("svg", {
369
+ xmlns: "http://www.w3.org/2000/svg",
420
370
  viewBox: "0 0 24 24",
421
- "aria-hidden": "false",
422
- focusable: "false"
423
- }, 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", {
424
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"
425
378
  })));
426
379
  };
427
- var SaveIcon = _ref8 => {
380
+ var SaveIcon = _ref6 => {
428
381
  var {
429
382
  size = 24,
430
383
  color = 'currentColor',
431
384
  filled = false,
432
385
  strokeWidth = 1
433
- } = _ref8,
434
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
386
+ } = _ref6,
387
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
435
388
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
436
389
  size: size,
437
390
  color: color
438
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
391
+ }, props), /*#__PURE__*/React.createElement("svg", {
439
392
  viewBox: "0 0 24 24",
440
- "aria-hidden": "false",
441
- focusable: "false"
442
- }, 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", {
443
399
  d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
444
400
  }), /*#__PURE__*/React.createElement("polyline", {
445
401
  points: "17 21 17 13 7 13 7 21"
@@ -447,110 +403,123 @@ var SaveIcon = _ref8 => {
447
403
  points: "7 3 7 8 15 8"
448
404
  })));
449
405
  };
450
- var WarningIcon = _ref9 => {
406
+ var WarningIcon = _ref7 => {
451
407
  var {
452
408
  size = 24,
453
409
  color = 'currentColor',
454
410
  filled = false,
455
411
  strokeWidth = 1
456
- } = _ref9,
457
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
412
+ } = _ref7,
413
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
458
414
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
459
415
  size: size,
460
416
  color: color
461
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
417
+ }, props), /*#__PURE__*/React.createElement("svg", {
462
418
  viewBox: "0 0 24 24",
463
- "aria-hidden": "false",
464
- focusable: "false"
465
- }, 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", {
466
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"
467
426
  }), /*#__PURE__*/React.createElement("line", {
468
- stroke: color,
469
427
  x1: "12",
470
428
  y1: "6",
471
429
  x2: "12",
472
430
  y2: "13"
473
431
  }), /*#__PURE__*/React.createElement("line", {
474
- stroke: color,
475
432
  x1: "12",
476
433
  y1: "15",
477
434
  x2: "12",
478
435
  y2: "15"
479
436
  })));
480
437
  };
481
- var BatteryIcon = _ref10 => {
438
+ var BatteryIcon = _ref8 => {
482
439
  var {
483
440
  size = 24,
484
441
  color = 'currentColor',
485
442
  filled = true,
486
443
  strokeWidth = 1
487
- } = _ref10,
488
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
444
+ } = _ref8,
445
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
489
446
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
490
447
  size: size,
491
448
  color: color
492
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
449
+ }, props), /*#__PURE__*/React.createElement("svg", {
493
450
  viewBox: "0 0 24 24",
494
- "aria-hidden": "false",
495
- focusable: "false"
496
- }, 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", {
497
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"
498
458
  })));
499
459
  };
500
- var BookmarkIcon = _ref11 => {
460
+ var BookmarkIcon = _ref9 => {
501
461
  var {
502
462
  size = 24,
503
463
  color = 'currentColor',
504
464
  filled = false,
505
465
  strokeWidth = 1
506
- } = _ref11,
507
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
466
+ } = _ref9,
467
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
508
468
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
509
469
  size: size,
510
470
  color: color
511
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
471
+ }, props), /*#__PURE__*/React.createElement("svg", {
512
472
  viewBox: "0 0 24 24",
513
- "aria-hidden": "false",
514
- focusable: "false"
515
- }, 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", {
516
479
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
517
480
  })));
518
481
  };
519
- var CloudIcon = _ref12 => {
482
+ var CloudIcon = _ref10 => {
520
483
  var {
521
484
  size = 24,
522
485
  color = 'currentColor',
523
486
  filled = false,
524
487
  strokeWidth = 1
525
- } = _ref12,
526
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
488
+ } = _ref10,
489
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
527
490
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
528
491
  size: size,
529
492
  color: color
530
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
493
+ }, props), /*#__PURE__*/React.createElement("svg", {
531
494
  viewBox: "0 0 24 24",
532
- "aria-hidden": "false",
533
- focusable: "false"
534
- }, 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", {
535
501
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
536
502
  })));
537
503
  };
538
- var CopyIcon = _ref13 => {
504
+ var CopyIcon = _ref11 => {
539
505
  var {
540
506
  size = 24,
541
507
  color = 'currentColor',
542
508
  filled = false,
543
509
  strokeWidth = 1
544
- } = _ref13,
545
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
510
+ } = _ref11,
511
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
546
512
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
547
513
  size: size,
548
514
  color: color
549
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
515
+ }, props), /*#__PURE__*/React.createElement("svg", {
550
516
  viewBox: "0 0 24 24",
551
- "aria-hidden": "false",
552
- focusable: "false"
553
- }, 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", {
554
523
  x: "9",
555
524
  y: "9",
556
525
  width: "13",
@@ -561,146 +530,158 @@ var CopyIcon = _ref13 => {
561
530
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
562
531
  })));
563
532
  };
564
- var DustBinIcon = _ref14 => {
533
+ var DustBinIcon = _ref12 => {
565
534
  var {
566
535
  size = 24,
567
536
  color = 'currentColor',
568
537
  filled = false,
569
538
  strokeWidth = 1
570
- } = _ref14,
571
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
539
+ } = _ref12,
540
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
572
541
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
573
542
  size: size,
574
543
  color: color
575
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
544
+ }, props), /*#__PURE__*/React.createElement("svg", {
576
545
  viewBox: "0 0 24 24",
577
- "aria-hidden": "false",
578
- focusable: "false"
579
- }, 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", {
580
552
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
581
553
  })));
582
554
  };
583
- var EditIcon = _ref15 => {
555
+ var EditIcon = _ref13 => {
584
556
  var {
585
557
  size = 24,
586
558
  color = 'currentColor',
587
559
  filled = false,
588
560
  strokeWidth = 1
589
- } = _ref15,
590
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
561
+ } = _ref13,
562
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
591
563
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
592
564
  size: size,
593
565
  color: color
594
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
566
+ }, props), /*#__PURE__*/React.createElement("svg", {
595
567
  viewBox: "0 0 24 24",
596
- "aria-hidden": "false",
597
- focusable: "false"
598
- }, 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", {
599
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"
600
575
  })));
601
576
  };
602
- var ErrorIcon = _ref16 => {
577
+ var ErrorIcon = _ref14 => {
603
578
  var {
604
579
  size = 24,
605
580
  color = 'currentColor',
606
- strokeWidth = 1,
607
- filled = true
608
- } = _ref16,
609
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
581
+ filled = true,
582
+ strokeWidth = 1
583
+ } = _ref14,
584
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
610
585
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
611
586
  size: size,
612
587
  color: color
613
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
588
+ }, props), /*#__PURE__*/React.createElement("svg", {
614
589
  viewBox: "0 0 24 24",
615
- "aria-hidden": "false",
616
- focusable: "false"
617
- }, 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", {
618
596
  cx: "12",
619
597
  cy: "12",
620
598
  r: "10"
621
599
  }), /*#__PURE__*/React.createElement("line", {
600
+ fill: filled ? 'currentColor' : 'none',
622
601
  x1: "15",
623
602
  y1: "9",
624
603
  x2: "9",
625
- y2: "15",
626
- stroke: filled ? 'white' : color
604
+ y2: "15"
627
605
  }), /*#__PURE__*/React.createElement("line", {
606
+ fill: filled ? 'currentColor' : 'none',
628
607
  x1: "9",
629
608
  y1: "9",
630
609
  x2: "15",
631
- y2: "15",
632
- stroke: filled ? 'white' : color
610
+ y2: "15"
633
611
  })));
634
612
  };
635
- var DownloadIcon = _ref17 => {
613
+ var DownloadIcon = _ref15 => {
636
614
  var {
637
615
  size = 24,
638
616
  color = 'currentColor',
639
617
  filled = true,
640
618
  strokeWidth = 1
641
- } = _ref17,
642
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
619
+ } = _ref15,
620
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
643
621
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
644
622
  size: size,
645
623
  color: color
646
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
624
+ }, props), /*#__PURE__*/React.createElement("svg", {
647
625
  viewBox: "0 0 24 24",
648
- "aria-hidden": "false",
649
- focusable: "false"
650
- }, 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", {
651
632
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
652
633
  })));
653
634
  };
654
- var MenuIcon = _ref18 => {
635
+ var MenuIcon = _ref16 => {
655
636
  var {
656
637
  size = 24,
657
- color = 'currentColor',
658
- strokeWidth = 1
659
- } = _ref18,
660
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
638
+ color = 'currentColor'
639
+ } = _ref16,
640
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded15);
661
641
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
662
642
  size: size,
663
643
  color: color
664
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
644
+ }, props), /*#__PURE__*/React.createElement("svg", {
665
645
  viewBox: "0 0 24 24",
666
- "aria-hidden": "false",
667
- focusable: "false"
668
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
669
- stroke: color,
646
+ fill: "none",
647
+ stroke: "currentColor",
648
+ strokeWidth: "1",
649
+ strokeLinecap: "round",
650
+ strokeLinejoin: "round"
651
+ }, /*#__PURE__*/React.createElement("line", {
670
652
  x1: "3",
671
653
  y1: "12",
672
654
  x2: "21",
673
655
  y2: "12"
674
656
  }), /*#__PURE__*/React.createElement("line", {
675
- stroke: color,
676
657
  x1: "3",
677
658
  y1: "6",
678
659
  x2: "21",
679
660
  y2: "6"
680
661
  }), /*#__PURE__*/React.createElement("line", {
681
- stroke: color,
682
662
  x1: "3",
683
663
  y1: "18",
684
664
  x2: "21",
685
665
  y2: "18"
686
666
  })));
687
667
  };
688
- var ShareIcon = _ref19 => {
668
+ var ShareIcon = _ref17 => {
689
669
  var {
690
670
  size = 24,
691
- color = 'currentColor',
692
- filled = false,
693
- strokeWidth = 1
694
- } = _ref19,
695
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
671
+ color = 'currentColor'
672
+ } = _ref17,
673
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded16);
696
674
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
697
675
  size: size,
698
676
  color: color
699
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
677
+ }, props), /*#__PURE__*/React.createElement("svg", {
700
678
  viewBox: "0 0 24 24",
701
- "aria-hidden": "false",
702
- focusable: "false"
703
- }, 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", {
704
685
  cx: "18",
705
686
  cy: "5",
706
687
  r: "3"
@@ -713,47 +694,45 @@ var ShareIcon = _ref19 => {
713
694
  cy: "19",
714
695
  r: "3"
715
696
  }), /*#__PURE__*/React.createElement("line", {
716
- stroke: color,
717
697
  x1: "8.59",
718
698
  y1: "13.51",
719
699
  x2: "15.42",
720
700
  y2: "17.49"
721
701
  }), /*#__PURE__*/React.createElement("line", {
722
- stroke: color,
723
702
  x1: "15.41",
724
703
  y1: "6.51",
725
704
  x2: "8.59",
726
705
  y2: "10.49"
727
706
  })));
728
707
  };
729
- var RefreshIcon = _ref20 => {
708
+ var RefreshIcon = _ref18 => {
730
709
  var {
731
710
  size = 24,
732
- color = 'currentColor',
733
- strokeWidth = 1
734
- } = _ref20,
735
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
711
+ color = 'currentColor'
712
+ } = _ref18,
713
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded17);
736
714
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
737
715
  size: size,
738
716
  color: color
739
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
717
+ }, props), /*#__PURE__*/React.createElement("svg", {
740
718
  viewBox: "0 0 24 24",
741
- "aria-hidden": "false",
742
- focusable: "false"
743
- }, 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", {
744
725
  points: "23 4 23 10 17 10"
745
726
  }), /*#__PURE__*/React.createElement("path", {
746
727
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
747
728
  })));
748
729
  };
749
- var PrintIcon = _ref21 => {
730
+ var PrintIcon = _ref19 => {
750
731
  var {
751
732
  size = 24,
752
- color = 'currentColor',
753
- filled = true,
754
- strokeWidth = 1
755
- } = _ref21,
756
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
733
+ color = 'currentColor'
734
+ } = _ref19,
735
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded18);
757
736
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
758
737
  size: size,
759
738
  color: color
@@ -766,149 +745,155 @@ var PrintIcon = _ref21 => {
766
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"
767
746
  })));
768
747
  };
769
- var PanelIcon = _ref22 => {
748
+ var PanelIcon = _ref20 => {
770
749
  var {
771
750
  size = 24,
772
- color = 'currentColor',
773
- strokeWidth = 1
774
- } = _ref22,
775
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
751
+ color = 'currentColor'
752
+ } = _ref20,
753
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded19);
776
754
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
777
755
  size: size,
778
756
  color: color
779
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
757
+ }, props), /*#__PURE__*/React.createElement("svg", {
758
+ xmlns: "http://www.w3.org/2000/svg",
780
759
  viewBox: "0 0 24 24",
781
- "aria-hidden": "false",
782
- focusable: "false"
783
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
784
- stroke: color,
760
+ fill: "none",
761
+ stroke: "currentColor",
762
+ strokeWidth: "1",
763
+ strokeLinecap: "round",
764
+ strokeLinejoin: "round"
765
+ }, /*#__PURE__*/React.createElement("line", {
785
766
  x1: "4",
786
767
  y1: "21",
787
768
  x2: "4",
788
769
  y2: "14"
789
770
  }), /*#__PURE__*/React.createElement("line", {
790
- stroke: color,
791
771
  x1: "4",
792
772
  y1: "10",
793
773
  x2: "4",
794
774
  y2: "3"
795
775
  }), /*#__PURE__*/React.createElement("line", {
796
- stroke: color,
797
776
  x1: "12",
798
777
  y1: "21",
799
778
  x2: "12",
800
779
  y2: "12"
801
780
  }), /*#__PURE__*/React.createElement("line", {
802
- stroke: color,
803
781
  x1: "12",
804
782
  y1: "8",
805
783
  x2: "12",
806
784
  y2: "3"
807
785
  }), /*#__PURE__*/React.createElement("line", {
808
- stroke: color,
809
786
  x1: "20",
810
787
  y1: "21",
811
788
  x2: "20",
812
789
  y2: "16"
813
790
  }), /*#__PURE__*/React.createElement("line", {
814
- stroke: color,
815
791
  x1: "20",
816
792
  y1: "12",
817
793
  x2: "20",
818
794
  y2: "3"
819
795
  }), /*#__PURE__*/React.createElement("line", {
820
- stroke: color,
821
796
  x1: "1",
822
797
  y1: "14",
823
798
  x2: "7",
824
799
  y2: "14"
825
800
  }), /*#__PURE__*/React.createElement("line", {
826
- stroke: color,
827
801
  x1: "9",
828
802
  y1: "8",
829
803
  x2: "15",
830
804
  y2: "8"
831
805
  }), /*#__PURE__*/React.createElement("line", {
832
- stroke: color,
833
806
  x1: "17",
834
807
  y1: "16",
835
808
  x2: "23",
836
809
  y2: "16"
837
810
  })));
838
811
  };
839
- var FilterIcon = _ref23 => {
812
+ var FilterIcon = _ref21 => {
840
813
  var {
841
814
  size = 24,
842
815
  color = 'currentColor',
843
816
  filled = false,
844
817
  strokeWidth = 1
845
- } = _ref23,
846
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
818
+ } = _ref21,
819
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
847
820
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
848
821
  size: size,
849
822
  color: color
850
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
823
+ }, props), /*#__PURE__*/React.createElement("svg", {
851
824
  viewBox: "0 0 24 24",
852
- "aria-hidden": "false",
853
- focusable: "false"
854
- }, 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", {
855
831
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
856
832
  })));
857
833
  };
858
- var HomeIcon = _ref24 => {
834
+ var HomeIcon = _ref22 => {
859
835
  var {
860
836
  size = 24,
861
837
  color = 'currentColor',
862
838
  filled = true,
863
839
  strokeWidth = 1
864
- } = _ref24,
865
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
840
+ } = _ref22,
841
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
866
842
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
867
843
  size: size,
868
844
  color: color
869
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
845
+ }, props), /*#__PURE__*/React.createElement("svg", {
870
846
  viewBox: "0 0 24 24",
871
- "aria-hidden": "false",
872
- focusable: "false"
873
- }, 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", {
874
853
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
875
854
  })));
876
855
  };
877
- var LocationIcon = _ref25 => {
856
+ var LocationIcon = _ref23 => {
878
857
  var {
879
858
  size = 24,
880
859
  color = 'currentColor',
881
860
  filled = true,
882
861
  strokeWidth = 1
883
- } = _ref25,
884
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
862
+ } = _ref23,
863
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
885
864
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
886
865
  size: size,
887
866
  color: color
888
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
867
+ }, props), /*#__PURE__*/React.createElement("svg", {
889
868
  viewBox: "0 0 24 24",
890
- "aria-hidden": "false",
891
- focusable: "false"
892
- }, 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", {
893
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"
894
876
  })));
895
877
  };
896
- var LockIcon = _ref26 => {
878
+ var LockIcon = _ref24 => {
897
879
  var {
898
880
  size = 24,
899
881
  color = 'currentColor',
900
882
  filled = false,
901
883
  strokeWidth = 1
902
- } = _ref26,
903
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
884
+ } = _ref24,
885
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
904
886
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
905
887
  size: size,
906
888
  color: color
907
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
889
+ }, props), /*#__PURE__*/React.createElement("svg", {
908
890
  viewBox: "0 0 24 24",
909
- "aria-hidden": "false",
910
- focusable: "false"
911
- }, 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", {
912
897
  x: "3",
913
898
  y: "11",
914
899
  width: "18",
@@ -919,190 +904,214 @@ var LockIcon = _ref26 => {
919
904
  d: "M7 11V7a5 5 0 0 1 10 0v4"
920
905
  })));
921
906
  };
922
- var MicrophoneIcon = _ref27 => {
907
+ var MicrophoneIcon = _ref25 => {
923
908
  var {
924
909
  size = 24,
925
910
  color = 'currentColor',
926
911
  filled = false,
927
912
  strokeWidth = 1
928
- } = _ref27,
929
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
913
+ } = _ref25,
914
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
930
915
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
931
916
  size: size,
932
917
  color: color
933
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
918
+ }, props), /*#__PURE__*/React.createElement("svg", {
934
919
  viewBox: "0 0 24 24",
935
- "aria-hidden": "false",
936
- focusable: "false"
937
- }, 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", {
938
926
  d: "M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4z"
939
927
  }), /*#__PURE__*/React.createElement("path", {
940
928
  d: "M19 10v2a7 7 0 0 1-14 0v-2"
941
929
  }), /*#__PURE__*/React.createElement("line", {
942
- stroke: color,
943
930
  x1: "12",
944
931
  y1: "19",
945
932
  x2: "12",
946
933
  y2: "23"
947
934
  }), /*#__PURE__*/React.createElement("line", {
948
- stroke: color,
949
935
  x1: "8",
950
936
  y1: "23",
951
937
  x2: "16",
952
938
  y2: "23"
953
939
  })));
954
940
  };
955
- var MoonIcon = _ref28 => {
941
+ var MoonIcon = _ref26 => {
956
942
  var {
957
943
  size = 24,
958
944
  color = 'currentColor',
959
- filled = true,
945
+ filled = false,
960
946
  strokeWidth = 1
961
- } = _ref28,
962
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
947
+ } = _ref26,
948
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
963
949
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
964
950
  size: size,
965
951
  color: color
966
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
952
+ }, props), /*#__PURE__*/React.createElement("svg", {
967
953
  viewBox: "0 0 24 24",
968
- "aria-hidden": "false",
969
- focusable: "false"
970
- }, 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", {
971
960
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
972
961
  })));
973
962
  };
974
- var NotificationIcon = _ref29 => {
963
+ var NotificationIcon = _ref27 => {
975
964
  var {
976
965
  size = 24,
977
966
  color = 'currentColor',
978
967
  filled = false,
979
968
  strokeWidth = 1
980
- } = _ref29,
981
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
969
+ } = _ref27,
970
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
982
971
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
983
972
  size: size,
984
973
  color: color
985
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
974
+ }, props), /*#__PURE__*/React.createElement("svg", {
986
975
  viewBox: "0 0 24 24",
987
- "aria-hidden": "false",
988
- focusable: "false"
989
- }, 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", {
990
982
  d: "M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9"
991
983
  }), /*#__PURE__*/React.createElement("path", {
992
984
  d: "M13.73 21a2 2 0 0 1-3.46 0"
993
985
  })));
994
986
  };
995
- var OpenEyeIcon = _ref30 => {
987
+ var OpenEyeIcon = _ref28 => {
996
988
  var {
997
989
  size = 24,
998
990
  color = 'currentColor',
999
991
  filled = true,
1000
992
  strokeWidth = 1
1001
- } = _ref30,
1002
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
993
+ } = _ref28,
994
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
1003
995
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1004
996
  size: size,
1005
997
  color: color
1006
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
998
+ }, props), /*#__PURE__*/React.createElement("svg", {
1007
999
  viewBox: "0 0 24 24",
1008
- "aria-hidden": "false",
1009
- focusable: "false"
1010
- }, 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", {
1011
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"
1012
1007
  })));
1013
1008
  };
1014
- var ProfileIcon = _ref31 => {
1009
+ var ProfileIcon = _ref29 => {
1015
1010
  var {
1016
1011
  size = 24,
1017
1012
  color = 'currentColor',
1018
1013
  filled = true,
1019
1014
  strokeWidth = 1
1020
- } = _ref31,
1021
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1015
+ } = _ref29,
1016
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
1022
1017
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1023
1018
  size: size,
1024
1019
  color: color
1025
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1020
+ }, props), /*#__PURE__*/React.createElement("svg", {
1026
1021
  viewBox: "0 0 24 24",
1027
- "aria-hidden": "false",
1028
- focusable: "false"
1029
- }, 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", {
1030
1028
  fill: filled ? color : 'none',
1031
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"
1032
1030
  }), ' '));
1033
1031
  };
1034
- var SettingsIcon = _ref32 => {
1032
+ var SettingsIcon = _ref30 => {
1035
1033
  var {
1036
1034
  size = 24,
1037
1035
  color = 'currentColor',
1038
1036
  filled = false,
1039
1037
  strokeWidth = 1
1040
- } = _ref32,
1041
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1038
+ } = _ref30,
1039
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
1042
1040
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1043
1041
  size: size,
1044
1042
  color: color
1045
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1043
+ }, props), /*#__PURE__*/React.createElement("svg", {
1046
1044
  viewBox: "0 0 24 24",
1047
- "aria-hidden": "false",
1048
- focusable: "false"
1049
- }, 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", {
1050
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"
1051
1052
  })));
1052
1053
  };
1053
- var SuccessIcon = _ref33 => {
1054
+ var SuccessIcon = _ref31 => {
1054
1055
  var {
1055
1056
  size = 24,
1056
1057
  color = 'currentColor',
1057
1058
  filled = true,
1058
1059
  strokeWidth = 1
1059
- } = _ref33,
1060
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1060
+ } = _ref31,
1061
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
1061
1062
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1062
1063
  size: size,
1063
1064
  color: color
1064
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1065
+ }, props), /*#__PURE__*/React.createElement("svg", {
1065
1066
  viewBox: "0 0 24 24",
1066
- "aria-hidden": "false",
1067
- focusable: "false"
1068
- }, 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", {
1069
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"
1070
1074
  })));
1071
1075
  };
1072
- var UnLikeIcon = _ref34 => {
1076
+ var UnLikeIcon = _ref32 => {
1073
1077
  var {
1074
1078
  size = 24,
1075
1079
  color = 'currentColor',
1076
1080
  filled = true,
1077
1081
  strokeWidth = 1
1078
- } = _ref34,
1079
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1082
+ } = _ref32,
1083
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
1080
1084
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1081
1085
  size: size,
1082
1086
  color: color
1083
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1087
+ }, props), /*#__PURE__*/React.createElement("svg", {
1084
1088
  viewBox: "0 0 24 24",
1085
- "aria-hidden": "false",
1086
- focusable: "false"
1087
- }, 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", {
1088
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"
1089
1096
  })));
1090
1097
  };
1091
- var ClockIcon = _ref35 => {
1098
+ var ClockIcon = _ref33 => {
1092
1099
  var {
1093
1100
  size = 24,
1094
- color = 'currentColor',
1095
- strokeWidth = 1
1096
- } = _ref35,
1097
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1101
+ color = 'currentColor'
1102
+ } = _ref33,
1103
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded32);
1098
1104
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1099
1105
  size: size,
1100
1106
  color: color
1101
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1107
+ }, props), /*#__PURE__*/React.createElement("svg", {
1102
1108
  viewBox: "0 0 24 24",
1103
- "aria-hidden": "false",
1104
- focusable: "false"
1105
- }, 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", {
1106
1115
  cx: "12",
1107
1116
  cy: "12",
1108
1117
  r: "10"
@@ -1110,21 +1119,23 @@ var ClockIcon = _ref35 => {
1110
1119
  points: "12 6 12 12 16 14"
1111
1120
  })));
1112
1121
  };
1113
- var CameraIcon = _ref36 => {
1122
+ var CameraIcon = _ref34 => {
1114
1123
  var {
1115
1124
  size = 24,
1116
- color = 'currentColor',
1117
- strokeWidth = 1
1118
- } = _ref36,
1119
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1125
+ color = 'currentColor'
1126
+ } = _ref34,
1127
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded33);
1120
1128
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1121
1129
  size: size,
1122
1130
  color: color
1123
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1131
+ }, props), /*#__PURE__*/React.createElement("svg", {
1124
1132
  viewBox: "0 0 24 24",
1125
- "aria-hidden": "false",
1126
- focusable: "false"
1127
- }, 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", {
1128
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"
1129
1140
  }), /*#__PURE__*/React.createElement("circle", {
1130
1141
  cx: "12",
@@ -1132,60 +1143,63 @@ var CameraIcon = _ref36 => {
1132
1143
  r: "4"
1133
1144
  })));
1134
1145
  };
1135
- var BluetoothIcon = _ref37 => {
1146
+ var BluetoothIcon = _ref35 => {
1136
1147
  var {
1137
1148
  size = 24,
1138
- color = 'currentColor',
1139
- filled = true,
1140
- strokeWidth = 1
1141
- } = _ref37,
1142
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1149
+ color = 'currentColor'
1150
+ } = _ref35,
1151
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded34);
1143
1152
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1144
1153
  size: size,
1145
1154
  color: color
1146
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1155
+ }, props), /*#__PURE__*/React.createElement("svg", {
1147
1156
  viewBox: "0 0 24 24",
1148
- "aria-hidden": "false",
1149
- focusable: "false"
1150
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1157
+ fill: 'currentColor'
1158
+ }, /*#__PURE__*/React.createElement("path", {
1151
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"
1152
1160
  })));
1153
1161
  };
1154
- var LikeIcon = _ref38 => {
1162
+ var LikeIcon = _ref36 => {
1155
1163
  var {
1156
1164
  size = 24,
1157
1165
  color = 'currentColor',
1158
1166
  filled = true,
1159
1167
  strokeWidth = 1
1160
- } = _ref38,
1161
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1168
+ } = _ref36,
1169
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
1162
1170
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1163
1171
  size: size,
1164
1172
  color: color
1165
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1173
+ }, props), /*#__PURE__*/React.createElement("svg", {
1166
1174
  viewBox: "0 0 24 24",
1167
- "aria-hidden": "false",
1168
- focusable: "false"
1169
- }, 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", {
1170
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"
1171
1182
  })));
1172
1183
  };
1173
- var UnlockIcon = _ref39 => {
1184
+ var UnlockIcon = _ref37 => {
1174
1185
  var {
1175
1186
  size = 24,
1176
1187
  color = 'currentColor',
1177
1188
  filled = false,
1178
1189
  strokeWidth = 1
1179
- } = _ref39,
1180
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1190
+ } = _ref37,
1191
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
1181
1192
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1182
1193
  size: size,
1183
1194
  color: color
1184
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1195
+ }, props), /*#__PURE__*/React.createElement("svg", {
1185
1196
  viewBox: "0 0 24 24",
1186
- "aria-hidden": "false",
1187
- focusable: "false"
1188
- }, 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", {
1189
1203
  x: "3",
1190
1204
  y: "11",
1191
1205
  width: "18",
@@ -1196,41 +1210,47 @@ var UnlockIcon = _ref39 => {
1196
1210
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1197
1211
  })));
1198
1212
  };
1199
- var WifiIcon = _ref40 => {
1213
+ var WifiIcon = _ref38 => {
1200
1214
  var {
1201
1215
  size = 24,
1202
1216
  color = 'currentColor',
1203
1217
  filled = false,
1204
1218
  strokeWidth = 1
1205
- } = _ref40,
1206
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1219
+ } = _ref38,
1220
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
1207
1221
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1208
1222
  size: size,
1209
1223
  color: color
1210
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1224
+ }, props), /*#__PURE__*/React.createElement("svg", {
1211
1225
  viewBox: "0 0 24 24",
1212
- "aria-hidden": "false",
1213
- focusable: "false"
1214
- }, 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", {
1215
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"
1216
1233
  })));
1217
1234
  };
1218
- var UploadIcon = _ref41 => {
1235
+ var UploadIcon = _ref39 => {
1219
1236
  var {
1220
1237
  size = 24,
1221
1238
  color = 'currentColor',
1222
1239
  filled = false,
1223
1240
  strokeWidth = 1
1224
- } = _ref41,
1225
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1241
+ } = _ref39,
1242
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
1226
1243
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1227
1244
  size: size,
1228
1245
  color: color
1229
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1246
+ }, props), /*#__PURE__*/React.createElement("svg", {
1230
1247
  viewBox: "0 0 24 24",
1231
- "aria-hidden": "false",
1232
- focusable: "false"
1233
- }, 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", {
1234
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"
1235
1255
  }), /*#__PURE__*/React.createElement("path", {
1236
1256
  d: "M9 15l3 -3l3 3"
@@ -1238,109 +1258,123 @@ var UploadIcon = _ref41 => {
1238
1258
  d: "M12 12l0 9"
1239
1259
  })));
1240
1260
  };
1241
- var SearchIcon = _ref42 => {
1261
+ var SearchIcon = _ref40 => {
1242
1262
  var {
1243
1263
  size = 24,
1244
- color = 'currentColor',
1245
- filled = true,
1246
- strokeWidth = 1
1247
- } = _ref42,
1248
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1264
+ color = 'currentColor'
1265
+ } = _ref40,
1266
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded39);
1249
1267
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1250
1268
  size: size,
1251
1269
  color: color
1252
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1270
+ }, props), /*#__PURE__*/React.createElement("svg", {
1253
1271
  viewBox: "0 0 24 24",
1254
- "aria-hidden": "false",
1255
- focusable: "false"
1256
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1272
+ fill: 'currentColor'
1273
+ }, /*#__PURE__*/React.createElement("path", {
1257
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"
1258
1275
  })));
1259
1276
  };
1260
- var CloseEyeIcon = _ref43 => {
1277
+ var CloseEyeIcon = _ref41 => {
1261
1278
  var {
1262
1279
  size = 24,
1263
- color = 'currentColor',
1264
- filled = true,
1265
- strokeWidth = 1
1266
- } = _ref43,
1267
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1280
+ color = 'currentColor'
1281
+ } = _ref41,
1282
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded40);
1268
1283
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1269
1284
  size: size,
1270
1285
  color: color
1271
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1286
+ }, props), /*#__PURE__*/React.createElement("svg", {
1272
1287
  viewBox: "0 0 24 24",
1273
- "aria-hidden": "false",
1274
- focusable: "false"
1275
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1288
+ fill: color
1289
+ }, /*#__PURE__*/React.createElement("path", {
1276
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",
1277
1291
  fill: "currentColor"
1278
1292
  })));
1279
1293
  };
1280
- var ExternalLinkIcon = _ref44 => {
1294
+ var ExternalLinkIcon = _ref42 => {
1281
1295
  var {
1282
1296
  size = 24,
1283
- color = 'currentColor',
1284
- filled = true,
1285
- strokeWidth = 1
1286
- } = _ref44,
1287
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1297
+ color = 'currentColor'
1298
+ } = _ref42,
1299
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded41);
1288
1300
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1289
1301
  size: size,
1290
1302
  color: color
1291
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1303
+ }, props), /*#__PURE__*/React.createElement("svg", {
1292
1304
  viewBox: "0 0 24 24",
1293
- "aria-hidden": "false",
1294
- focusable: "false"
1295
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1305
+ fill: 'currentColor'
1306
+ }, /*#__PURE__*/React.createElement("path", {
1296
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"
1297
1308
  })));
1298
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
+ };
1299
1347
  var PlusIcon = _ref45 => {
1300
1348
  var {
1301
1349
  size = 24,
1302
- color = 'currentColor',
1303
- filled = true,
1304
- strokeWidth = 1
1350
+ color = 'currentColor'
1305
1351
  } = _ref45,
1306
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1352
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded44);
1307
1353
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1308
1354
  size: size,
1309
1355
  color: color
1310
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1356
+ }, props), /*#__PURE__*/React.createElement("svg", {
1311
1357
  viewBox: "0 0 24 24",
1312
- "aria-hidden": "false",
1313
- focusable: "false"
1314
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1315
- stroke: color,
1316
- x1: "12",
1317
- y1: "5",
1318
- x2: "12",
1319
- y2: "19"
1320
- }), /*#__PURE__*/React.createElement("line", {
1321
- stroke: color,
1322
- x1: "5",
1323
- y1: "12",
1324
- x2: "19",
1325
- y2: "12"
1358
+ fill: 'currentColor'
1359
+ }, /*#__PURE__*/React.createElement("path", {
1360
+ d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1326
1361
  })));
1327
1362
  };
1328
1363
  var TickIcon = _ref46 => {
1329
1364
  var {
1330
1365
  size = 24,
1331
- color = 'currentColor',
1332
- filled = true,
1333
- strokeWidth = 1
1366
+ color = 'currentColor'
1334
1367
  } = _ref46,
1335
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1368
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded45);
1336
1369
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1337
1370
  size: size,
1338
1371
  color: color
1339
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1372
+ }, props), /*#__PURE__*/React.createElement("svg", {
1340
1373
  viewBox: "0 0 24 24",
1341
- "aria-hidden": "false",
1342
- focusable: "false"
1343
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1374
+ fill: "none",
1375
+ stroke: 'currentColor',
1376
+ strokeWidth: "1"
1377
+ }, /*#__PURE__*/React.createElement("path", {
1344
1378
  d: "M5 13l4 4L19 7",
1345
1379
  strokeLinecap: "round",
1346
1380
  strokeLinejoin: "round"
@@ -1349,39 +1383,38 @@ var TickIcon = _ref46 => {
1349
1383
  var BoldArrowIcon = _ref47 => {
1350
1384
  var {
1351
1385
  size = 24,
1352
- color = 'currentColor',
1353
- filled = true,
1354
- strokeWidth = 1
1386
+ color = 'currentColor'
1355
1387
  } = _ref47,
1356
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1388
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded46);
1357
1389
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1358
1390
  size: size,
1359
1391
  color: color
1360
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1392
+ }, props), /*#__PURE__*/React.createElement("svg", {
1361
1393
  viewBox: "0 0 24 24",
1362
- "aria-hidden": "false",
1363
- focusable: "false"
1364
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1394
+ fill: 'currentColor'
1395
+ }, /*#__PURE__*/React.createElement("path", {
1365
1396
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1366
1397
  })));
1367
1398
  };
1368
1399
  var ArrowIcon = _ref48 => {
1369
1400
  var {
1370
1401
  size = 24,
1371
- color = 'currentColor',
1372
- filled = true,
1373
- strokeWidth = 1
1402
+ color = 'currentColor'
1374
1403
  } = _ref48,
1375
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1404
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded47);
1376
1405
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1377
1406
  size: size,
1378
1407
  color: color
1379
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1408
+ }, props), /*#__PURE__*/React.createElement("svg", {
1409
+ width: "24",
1410
+ height: "24",
1380
1411
  viewBox: "0 0 24 24",
1381
- "aria-hidden": "false",
1382
- focusable: "false"
1383
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1384
- stroke: color,
1412
+ strokeWidth: "1",
1413
+ stroke: 'currentColor',
1414
+ fill: "none",
1415
+ strokeLinecap: "round",
1416
+ strokeLinejoin: "round"
1417
+ }, /*#__PURE__*/React.createElement("line", {
1385
1418
  x1: "12",
1386
1419
  y1: "20",
1387
1420
  x2: "12",
@@ -1393,19 +1426,23 @@ var ArrowIcon = _ref48 => {
1393
1426
  var SpinnerIcon = _ref49 => {
1394
1427
  var {
1395
1428
  size = 24,
1396
- color = 'currentColor',
1397
- filled = true,
1398
- strokeWidth = 1
1429
+ color = 'currentColor'
1399
1430
  } = _ref49,
1400
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1431
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1401
1432
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1402
1433
  size: size,
1403
1434
  color: color
1404
- }, 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",
1405
1439
  viewBox: "0 0 24 24",
1406
- "aria-hidden": "false",
1407
- focusable: "false"
1408
- }, 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", {
1409
1446
  cx: "12",
1410
1447
  cy: "12",
1411
1448
  r: "10",
@@ -1418,18 +1455,20 @@ var SpinnerIcon = _ref49 => {
1418
1455
  var CalendarIcon = _ref50 => {
1419
1456
  var {
1420
1457
  size = 24,
1421
- color = 'currentColor',
1422
- strokeWidth = 1
1458
+ color = 'currentColor'
1423
1459
  } = _ref50,
1424
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1460
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1425
1461
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1426
1462
  size: size,
1427
1463
  color: color
1428
- }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
1464
+ }, props), /*#__PURE__*/React.createElement("svg", {
1429
1465
  viewBox: "0 0 24 24",
1430
- "aria-hidden": "false",
1431
- focusable: "false"
1432
- }, 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", {
1433
1472
  x: "3",
1434
1473
  y: "4",
1435
1474
  width: "18",
@@ -1437,19 +1476,16 @@ var CalendarIcon = _ref50 => {
1437
1476
  rx: "2",
1438
1477
  ry: "2"
1439
1478
  }), /*#__PURE__*/React.createElement("line", {
1440
- stroke: color,
1441
1479
  x1: "16",
1442
1480
  y1: "2",
1443
1481
  x2: "16",
1444
1482
  y2: "6"
1445
1483
  }), /*#__PURE__*/React.createElement("line", {
1446
- stroke: color,
1447
1484
  x1: "8",
1448
1485
  y1: "2",
1449
1486
  x2: "8",
1450
1487
  y2: "6"
1451
1488
  }), /*#__PURE__*/React.createElement("line", {
1452
- stroke: color,
1453
1489
  x1: "3",
1454
1490
  y1: "10",
1455
1491
  x2: "21",
@@ -1461,8 +1497,6 @@ var Icon = {
1461
1497
  __proto__: null,
1462
1498
  ChevronIcon: ChevronIcon,
1463
1499
  CloseIcon: CloseIcon,
1464
- MinusIcon: MinusIcon,
1465
- InfoIcon: InfoIcon,
1466
1500
  HeartIcon: HeartIcon,
1467
1501
  StarIcon: StarIcon,
1468
1502
  SaveIcon: SaveIcon,
@@ -1502,6 +1536,8 @@ var Icon = {
1502
1536
  SearchIcon: SearchIcon,
1503
1537
  CloseEyeIcon: CloseEyeIcon,
1504
1538
  ExternalLinkIcon: ExternalLinkIcon,
1539
+ MinusIcon: MinusIcon,
1540
+ InfoIcon: InfoIcon,
1505
1541
  PlusIcon: PlusIcon,
1506
1542
  TickIcon: TickIcon,
1507
1543
  BoldArrowIcon: BoldArrowIcon,