@app-studio/web 0.8.27 → 0.8.28

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