@app-studio/web 0.8.27 → 0.8.29

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