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