@app-studio/web 0.8.22 → 0.8.24

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.
@@ -221,44 +221,44 @@ var Center = /*#__PURE__*/React__default.forwardRef((_ref, ref) => {
221
221
  });
222
222
  Center.displayName = 'Center';
223
223
 
224
- var _excluded$4 = ["size", "color"],
225
- _excluded2 = ["size", "color"],
226
- _excluded3 = ["size", "color"],
227
- _excluded4 = ["size", "color"],
228
- _excluded5 = ["size", "color"],
229
- _excluded6 = ["size", "color"],
230
- _excluded7 = ["size", "color"],
231
- _excluded8 = ["size", "color"],
232
- _excluded9 = ["size", "color"],
233
- _excluded10 = ["size", "color"],
234
- _excluded11 = ["size", "color"],
235
- _excluded12 = ["size", "color"],
236
- _excluded13 = ["size", "color"],
237
- _excluded14 = ["size", "color"],
224
+ var _excluded$4 = ["size", "color", "filled", "strokeWidth"],
225
+ _excluded2 = ["size", "color", "filled", "strokeWidth"],
226
+ _excluded3 = ["size", "color", "filled", "strokeWidth"],
227
+ _excluded4 = ["size", "color", "filled", "strokeWidth"],
228
+ _excluded5 = ["size", "color", "filled", "strokeWidth"],
229
+ _excluded6 = ["size", "color", "filled", "strokeWidth"],
230
+ _excluded7 = ["size", "color", "filled", "strokeWidth"],
231
+ _excluded8 = ["size", "color", "filled", "strokeWidth"],
232
+ _excluded9 = ["size", "color", "filled", "strokeWidth"],
233
+ _excluded10 = ["size", "color", "filled", "strokeWidth"],
234
+ _excluded11 = ["size", "color", "filled", "strokeWidth"],
235
+ _excluded12 = ["size", "color", "filled", "strokeWidth"],
236
+ _excluded13 = ["size", "color", "filled", "strokeWidth"],
237
+ _excluded14 = ["size", "color", "filled", "strokeWidth"],
238
238
  _excluded15 = ["size", "color"],
239
239
  _excluded16 = ["size", "color"],
240
240
  _excluded17 = ["size", "color"],
241
241
  _excluded18 = ["size", "color"],
242
242
  _excluded19 = ["size", "color"],
243
- _excluded20 = ["size", "color"],
244
- _excluded21 = ["size", "color"],
245
- _excluded22 = ["size", "color"],
246
- _excluded23 = ["size", "color"],
247
- _excluded24 = ["size", "color"],
248
- _excluded25 = ["size", "color"],
249
- _excluded26 = ["size", "color"],
250
- _excluded27 = ["size", "color"],
251
- _excluded28 = ["size", "color"],
252
- _excluded29 = ["size", "color"],
253
- _excluded30 = ["size", "color"],
254
- _excluded31 = ["size", "color"],
243
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
244
+ _excluded21 = ["size", "color", "filled", "strokeWidth"],
245
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
246
+ _excluded23 = ["size", "color", "filled", "strokeWidth"],
247
+ _excluded24 = ["size", "color", "filled", "strokeWidth"],
248
+ _excluded25 = ["size", "color", "filled", "strokeWidth"],
249
+ _excluded26 = ["size", "color", "filled", "strokeWidth"],
250
+ _excluded27 = ["size", "color", "filled", "strokeWidth"],
251
+ _excluded28 = ["size", "color", "filled", "strokeWidth"],
252
+ _excluded29 = ["size", "color", "filled", "strokeWidth"],
253
+ _excluded30 = ["size", "color", "filled", "strokeWidth"],
254
+ _excluded31 = ["size", "color", "filled", "strokeWidth"],
255
255
  _excluded32 = ["size", "color"],
256
256
  _excluded33 = ["size", "color"],
257
257
  _excluded34 = ["size", "color"],
258
- _excluded35 = ["size", "color"],
259
- _excluded36 = ["size", "color"],
260
- _excluded37 = ["size", "color"],
261
- _excluded38 = ["size", "color"],
258
+ _excluded35 = ["size", "color", "filled", "strokeWidth"],
259
+ _excluded36 = ["size", "color", "filled", "strokeWidth"],
260
+ _excluded37 = ["size", "color", "filled", "strokeWidth"],
261
+ _excluded38 = ["size", "color", "filled", "strokeWidth"],
262
262
  _excluded39 = ["size", "color"],
263
263
  _excluded40 = ["size", "color"],
264
264
  _excluded41 = ["size", "color"],
@@ -269,8 +269,7 @@ var _excluded$4 = ["size", "color"],
269
269
  _excluded46 = ["size", "color"],
270
270
  _excluded47 = ["size", "color"],
271
271
  _excluded48 = ["size", "color"],
272
- _excluded49 = ["size", "color"],
273
- _excluded50 = ["size", "color"];
272
+ _excluded49 = ["size", "color"];
274
273
  // Default wrapper component for consistent sizing
275
274
  var IconWrapper = _ref => {
276
275
  var {
@@ -291,7 +290,9 @@ var IconWrapper = _ref => {
291
290
  var ChevronIcon = _ref2 => {
292
291
  var {
293
292
  size = 24,
294
- color = 'currentColor'
293
+ color = 'currentColor',
294
+ filled = false,
295
+ strokeWidth = 1
295
296
  } = _ref2,
296
297
  props = _objectWithoutPropertiesLoose(_ref2, _excluded$4);
297
298
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -300,70 +301,99 @@ var ChevronIcon = _ref2 => {
300
301
  }, props), /*#__PURE__*/React__default.createElement("svg", {
301
302
  width: "16",
302
303
  height: "16",
303
- fill: "currentColor",
304
- viewBox: "0 0 24 24"
304
+ fill: filled ? color : 'none',
305
+ viewBox: "0 0 24 24",
306
+ stroke: filled ? 'none' : color,
307
+ strokeWidth: strokeWidth,
308
+ strokeLinecap: "round",
309
+ strokeLinejoin: "round"
305
310
  }, /*#__PURE__*/React__default.createElement("path", {
306
311
  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"
307
312
  })));
308
313
  };
309
- var CheckIcon = _ref3 => {
314
+ var CloseIcon = _ref3 => {
310
315
  var {
311
316
  size = 24,
312
- color = 'currentColor'
317
+ color = 'currentColor',
318
+ filled = false,
319
+ strokeWidth = 1
313
320
  } = _ref3,
314
321
  props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
315
322
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
316
323
  size: size,
317
324
  color: color
318
325
  }, props), /*#__PURE__*/React__default.createElement("svg", {
326
+ xmlns: "http://www.w3.org/2000/svg",
319
327
  viewBox: "0 0 24 24",
320
- fill: "none",
321
- stroke: 'currentColor',
322
- strokeWidth: "1"
323
- }, /*#__PURE__*/React__default.createElement("path", {
324
- d: "M17.0001 9L10 16L7 13",
328
+ fill: filled ? color : 'none',
329
+ stroke: filled ? 'none' : color,
330
+ strokeWidth: strokeWidth,
325
331
  strokeLinecap: "round",
326
332
  strokeLinejoin: "round"
333
+ }, /*#__PURE__*/React__default.createElement("line", {
334
+ x1: "18",
335
+ y1: "6",
336
+ x2: "6",
337
+ y2: "18"
338
+ }), /*#__PURE__*/React__default.createElement("line", {
339
+ x1: "6",
340
+ y1: "6",
341
+ x2: "18",
342
+ y2: "18"
327
343
  })));
328
344
  };
329
- var CloseIcon = _ref4 => {
345
+ var HeartIcon = _ref4 => {
330
346
  var {
331
347
  size = 24,
332
- color = 'currentColor'
348
+ color = 'currentColor',
349
+ filled = true,
350
+ strokeWidth = 1
333
351
  } = _ref4,
334
352
  props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
335
353
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
336
354
  size: size,
337
355
  color: color
338
356
  }, props), /*#__PURE__*/React__default.createElement("svg", {
357
+ xmlns: "http://www.w3.org/2000/svg",
339
358
  viewBox: "0 0 24 24",
340
- fill: 'currentColor'
359
+ fill: filled ? color : 'none',
360
+ stroke: filled ? 'none' : color,
361
+ strokeWidth: strokeWidth,
362
+ strokeLinecap: "round",
363
+ strokeLinejoin: "round"
341
364
  }, /*#__PURE__*/React__default.createElement("path", {
342
- d: "M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"
365
+ 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"
343
366
  })));
344
367
  };
345
- var CloseEyeIcon = _ref5 => {
368
+ var StarIcon = _ref5 => {
346
369
  var {
347
370
  size = 24,
348
- color = 'currentColor'
371
+ color = 'currentColor',
372
+ filled = true,
373
+ strokeWidth = 1
349
374
  } = _ref5,
350
375
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
351
376
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
352
377
  size: size,
353
378
  color: color
354
379
  }, props), /*#__PURE__*/React__default.createElement("svg", {
380
+ xmlns: "http://www.w3.org/2000/svg",
355
381
  viewBox: "0 0 24 24",
356
- fill: color,
357
- xmlns: "http://www.w3.org/2000/svg"
358
- }, /*#__PURE__*/React__default.createElement("path", {
359
- 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",
360
- fill: "currentColor"
382
+ fill: filled ? color : 'none',
383
+ stroke: filled ? 'none' : color,
384
+ strokeWidth: strokeWidth,
385
+ strokeLinecap: "round",
386
+ strokeLinejoin: "round"
387
+ }, /*#__PURE__*/React__default.createElement("polygon", {
388
+ 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"
361
389
  })));
362
390
  };
363
- var DustBinIcon = _ref6 => {
391
+ var SaveIcon = _ref6 => {
364
392
  var {
365
393
  size = 24,
366
- color = 'currentColor'
394
+ color = 'currentColor',
395
+ filled = false,
396
+ strokeWidth = 1
367
397
  } = _ref6,
368
398
  props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
369
399
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -371,15 +401,25 @@ var DustBinIcon = _ref6 => {
371
401
  color: color
372
402
  }, props), /*#__PURE__*/React__default.createElement("svg", {
373
403
  viewBox: "0 0 24 24",
374
- fill: 'currentColor'
404
+ fill: filled ? color : 'none',
405
+ stroke: filled ? 'none' : color,
406
+ strokeWidth: strokeWidth,
407
+ strokeLinecap: "round",
408
+ strokeLinejoin: "round"
375
409
  }, /*#__PURE__*/React__default.createElement("path", {
376
- d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
410
+ d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
411
+ }), /*#__PURE__*/React__default.createElement("polyline", {
412
+ points: "17 21 17 13 7 13 7 21"
413
+ }), /*#__PURE__*/React__default.createElement("polyline", {
414
+ points: "7 3 7 8 15 8"
377
415
  })));
378
416
  };
379
- var EditIcon = _ref7 => {
417
+ var WarningIcon = _ref7 => {
380
418
  var {
381
419
  size = 24,
382
- color = 'currentColor'
420
+ color = 'currentColor',
421
+ filled = false,
422
+ strokeWidth = 1
383
423
  } = _ref7,
384
424
  props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
385
425
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -387,17 +427,31 @@ var EditIcon = _ref7 => {
387
427
  color: color
388
428
  }, props), /*#__PURE__*/React__default.createElement("svg", {
389
429
  viewBox: "0 0 24 24",
390
- fill: "none",
391
- stroke: 'currentColor',
392
- strokeWidth: "1"
430
+ fill: filled ? color : 'none',
431
+ stroke: filled ? 'none' : color,
432
+ strokeWidth: strokeWidth,
433
+ strokeLinecap: "round",
434
+ strokeLinejoin: "round"
393
435
  }, /*#__PURE__*/React__default.createElement("path", {
394
- 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"
436
+ 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"
437
+ }), /*#__PURE__*/React__default.createElement("line", {
438
+ x1: "12",
439
+ y1: "6",
440
+ x2: "12",
441
+ y2: "13"
442
+ }), /*#__PURE__*/React__default.createElement("line", {
443
+ x1: "12",
444
+ y1: "15",
445
+ x2: "12",
446
+ y2: "15"
395
447
  })));
396
448
  };
397
- var ExternalLinkIcon = _ref8 => {
449
+ var BatteryIcon = _ref8 => {
398
450
  var {
399
451
  size = 24,
400
- color = 'currentColor'
452
+ color = 'currentColor',
453
+ filled = true,
454
+ strokeWidth = 1
401
455
  } = _ref8,
402
456
  props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
403
457
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -405,36 +459,43 @@ var ExternalLinkIcon = _ref8 => {
405
459
  color: color
406
460
  }, props), /*#__PURE__*/React__default.createElement("svg", {
407
461
  viewBox: "0 0 24 24",
408
- fill: 'currentColor'
462
+ fill: filled ? color : 'none',
463
+ stroke: filled ? 'none' : color,
464
+ strokeWidth: strokeWidth,
465
+ strokeLinecap: "round",
466
+ strokeLinejoin: "round"
409
467
  }, /*#__PURE__*/React__default.createElement("path", {
410
- 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"
468
+ 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"
411
469
  })));
412
470
  };
413
- var MinusIcon = _ref9 => {
471
+ var BookmarkIcon = _ref9 => {
414
472
  var {
415
473
  size = 24,
416
- color = 'currentColor'
474
+ color = 'currentColor',
475
+ filled = false,
476
+ strokeWidth = 1
417
477
  } = _ref9,
418
478
  props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
419
479
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
420
- padding: 2,
421
480
  size: size,
422
481
  color: color
423
482
  }, props), /*#__PURE__*/React__default.createElement("svg", {
424
483
  viewBox: "0 0 24 24",
425
- fill: "none",
426
- stroke: 'currentColor',
427
- strokeWidth: "2"
428
- }, /*#__PURE__*/React__default.createElement("path", {
429
- d: "M7 12h10",
484
+ fill: filled ? color : 'none',
485
+ stroke: filled ? 'none' : color,
486
+ strokeWidth: strokeWidth,
430
487
  strokeLinecap: "round",
431
488
  strokeLinejoin: "round"
489
+ }, /*#__PURE__*/React__default.createElement("path", {
490
+ d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
432
491
  })));
433
492
  };
434
- var InfoIcon = _ref10 => {
493
+ var CloudIcon = _ref10 => {
435
494
  var {
436
495
  size = 24,
437
- color = 'currentColor'
496
+ color = 'currentColor',
497
+ filled = false,
498
+ strokeWidth = 1
438
499
  } = _ref10,
439
500
  props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
440
501
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -442,15 +503,21 @@ var InfoIcon = _ref10 => {
442
503
  color: color
443
504
  }, props), /*#__PURE__*/React__default.createElement("svg", {
444
505
  viewBox: "0 0 24 24",
445
- fill: 'currentColor'
506
+ fill: filled ? color : 'none',
507
+ stroke: filled ? 'none' : color,
508
+ strokeWidth: strokeWidth,
509
+ strokeLinecap: "round",
510
+ strokeLinejoin: "round"
446
511
  }, /*#__PURE__*/React__default.createElement("path", {
447
- 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"
512
+ d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
448
513
  })));
449
514
  };
450
- var OpenEyeIcon = _ref11 => {
515
+ var CopyIcon = _ref11 => {
451
516
  var {
452
517
  size = 24,
453
- color = 'currentColor'
518
+ color = 'currentColor',
519
+ filled = false,
520
+ strokeWidth = 1
454
521
  } = _ref11,
455
522
  props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
456
523
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -458,15 +525,28 @@ var OpenEyeIcon = _ref11 => {
458
525
  color: color
459
526
  }, props), /*#__PURE__*/React__default.createElement("svg", {
460
527
  viewBox: "0 0 24 24",
461
- fill: 'currentColor'
462
- }, /*#__PURE__*/React__default.createElement("path", {
463
- 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"
528
+ fill: filled ? color : 'none',
529
+ stroke: filled ? 'none' : color,
530
+ strokeWidth: strokeWidth,
531
+ strokeLinecap: "round",
532
+ strokeLinejoin: "round"
533
+ }, /*#__PURE__*/React__default.createElement("rect", {
534
+ x: "9",
535
+ y: "9",
536
+ width: "13",
537
+ height: "13",
538
+ rx: "2",
539
+ ry: "2"
540
+ }), /*#__PURE__*/React__default.createElement("path", {
541
+ d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
464
542
  })));
465
543
  };
466
- var PlusIcon = _ref12 => {
544
+ var DustBinIcon = _ref12 => {
467
545
  var {
468
546
  size = 24,
469
- color = 'currentColor'
547
+ color = 'currentColor',
548
+ filled = false,
549
+ strokeWidth = 1
470
550
  } = _ref12,
471
551
  props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
472
552
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -474,15 +554,21 @@ var PlusIcon = _ref12 => {
474
554
  color: color
475
555
  }, props), /*#__PURE__*/React__default.createElement("svg", {
476
556
  viewBox: "0 0 24 24",
477
- fill: 'currentColor'
557
+ fill: filled ? color : 'none',
558
+ stroke: filled ? 'none' : color,
559
+ strokeWidth: strokeWidth,
560
+ strokeLinecap: "round",
561
+ strokeLinejoin: "round"
478
562
  }, /*#__PURE__*/React__default.createElement("path", {
479
- d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
563
+ d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
480
564
  })));
481
565
  };
482
- var SpinnerIcon = _ref13 => {
566
+ var EditIcon = _ref13 => {
483
567
  var {
484
568
  size = 24,
485
- color = 'currentColor'
569
+ color = 'currentColor',
570
+ filled = false,
571
+ strokeWidth = 1
486
572
  } = _ref13,
487
573
  props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
488
574
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -490,26 +576,21 @@ var SpinnerIcon = _ref13 => {
490
576
  color: color
491
577
  }, props), /*#__PURE__*/React__default.createElement("svg", {
492
578
  viewBox: "0 0 24 24",
493
- fill: "none",
494
- xmlns: "http://www.w3.org/2000/svg"
495
- }, /*#__PURE__*/React__default.createElement("circle", {
496
- cx: "12",
497
- cy: "12",
498
- r: "10",
499
- stroke: color,
500
- strokeWidth: "2",
501
- opacity: "0.3"
502
- }), /*#__PURE__*/React__default.createElement("path", {
503
- d: "M22 12a10 10 0 1 1-4.93-8.62",
504
- stroke: color,
505
- strokeWidth: "2",
506
- strokeLinecap: "round"
579
+ fill: filled ? color : 'none',
580
+ stroke: filled ? 'none' : color,
581
+ strokeWidth: strokeWidth,
582
+ strokeLinecap: "round",
583
+ strokeLinejoin: "round"
584
+ }, /*#__PURE__*/React__default.createElement("path", {
585
+ 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"
507
586
  })));
508
587
  };
509
- var ProfileIcon = _ref14 => {
588
+ var ErrorIcon = _ref14 => {
510
589
  var {
511
590
  size = 24,
512
- color = 'currentColor'
591
+ color = 'currentColor',
592
+ filled = true,
593
+ strokeWidth = 1
513
594
  } = _ref14,
514
595
  props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
515
596
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -517,16 +598,35 @@ var ProfileIcon = _ref14 => {
517
598
  color: color
518
599
  }, props), /*#__PURE__*/React__default.createElement("svg", {
519
600
  viewBox: "0 0 24 24",
520
- fill: 'currentColor'
521
- }, /*#__PURE__*/React__default.createElement("path", {
522
- fill: "currentColor",
523
- 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"
601
+ fill: filled ? 'currentColor' : 'none',
602
+ stroke: filled ? 'white' : 'currentColor',
603
+ strokeWidth: strokeWidth,
604
+ strokeLinecap: "round",
605
+ strokeLinejoin: "round"
606
+ }, /*#__PURE__*/React__default.createElement("circle", {
607
+ cx: "12",
608
+ cy: "12",
609
+ r: "10"
610
+ }), /*#__PURE__*/React__default.createElement("line", {
611
+ fill: filled ? 'currentColor' : 'none',
612
+ x1: "15",
613
+ y1: "9",
614
+ x2: "9",
615
+ y2: "15"
616
+ }), /*#__PURE__*/React__default.createElement("line", {
617
+ fill: filled ? 'currentColor' : 'none',
618
+ x1: "9",
619
+ y1: "9",
620
+ x2: "15",
621
+ y2: "15"
524
622
  })));
525
623
  };
526
- var ArrowIcon = _ref15 => {
624
+ var DownloadIcon = _ref15 => {
527
625
  var {
528
626
  size = 24,
529
- color = 'currentColor'
627
+ color = 'currentColor',
628
+ filled = true,
629
+ strokeWidth = 1
530
630
  } = _ref15,
531
631
  props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
532
632
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -534,12 +634,16 @@ var ArrowIcon = _ref15 => {
534
634
  color: color
535
635
  }, props), /*#__PURE__*/React__default.createElement("svg", {
536
636
  viewBox: "0 0 24 24",
537
- fill: 'currentColor'
637
+ fill: filled ? color : 'none',
638
+ stroke: filled ? 'none' : color,
639
+ strokeWidth: strokeWidth,
640
+ strokeLinecap: "round",
641
+ strokeLinejoin: "round"
538
642
  }, /*#__PURE__*/React__default.createElement("path", {
539
- d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
643
+ d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
540
644
  })));
541
645
  };
542
- var SearchIcon = _ref16 => {
646
+ var MenuIcon = _ref16 => {
543
647
  var {
544
648
  size = 24,
545
649
  color = 'currentColor'
@@ -550,12 +654,29 @@ var SearchIcon = _ref16 => {
550
654
  color: color
551
655
  }, props), /*#__PURE__*/React__default.createElement("svg", {
552
656
  viewBox: "0 0 24 24",
553
- fill: 'currentColor'
554
- }, /*#__PURE__*/React__default.createElement("path", {
555
- 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"
657
+ fill: "none",
658
+ stroke: "currentColor",
659
+ strokeWidth: "1",
660
+ strokeLinecap: "round",
661
+ strokeLinejoin: "round"
662
+ }, /*#__PURE__*/React__default.createElement("line", {
663
+ x1: "3",
664
+ y1: "12",
665
+ x2: "21",
666
+ y2: "12"
667
+ }), /*#__PURE__*/React__default.createElement("line", {
668
+ x1: "3",
669
+ y1: "6",
670
+ x2: "21",
671
+ y2: "6"
672
+ }), /*#__PURE__*/React__default.createElement("line", {
673
+ x1: "3",
674
+ y1: "18",
675
+ x2: "21",
676
+ y2: "18"
556
677
  })));
557
678
  };
558
- var SuccessIcon = _ref17 => {
679
+ var ShareIcon = _ref17 => {
559
680
  var {
560
681
  size = 24,
561
682
  color = 'currentColor'
@@ -566,12 +687,36 @@ var SuccessIcon = _ref17 => {
566
687
  color: color
567
688
  }, props), /*#__PURE__*/React__default.createElement("svg", {
568
689
  viewBox: "0 0 24 24",
569
- fill: 'currentColor'
570
- }, /*#__PURE__*/React__default.createElement("path", {
571
- 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"
690
+ fill: "none",
691
+ stroke: "currentColor",
692
+ strokeWidth: "1",
693
+ strokeLinecap: "round",
694
+ strokeLinejoin: "round"
695
+ }, /*#__PURE__*/React__default.createElement("circle", {
696
+ cx: "18",
697
+ cy: "5",
698
+ r: "3"
699
+ }), /*#__PURE__*/React__default.createElement("circle", {
700
+ cx: "6",
701
+ cy: "12",
702
+ r: "3"
703
+ }), /*#__PURE__*/React__default.createElement("circle", {
704
+ cx: "18",
705
+ cy: "19",
706
+ r: "3"
707
+ }), /*#__PURE__*/React__default.createElement("line", {
708
+ x1: "8.59",
709
+ y1: "13.51",
710
+ x2: "15.42",
711
+ y2: "17.49"
712
+ }), /*#__PURE__*/React__default.createElement("line", {
713
+ x1: "15.41",
714
+ y1: "6.51",
715
+ x2: "8.59",
716
+ y2: "10.49"
572
717
  })));
573
718
  };
574
- var TickIcon = _ref18 => {
719
+ var RefreshIcon = _ref18 => {
575
720
  var {
576
721
  size = 24,
577
722
  color = 'currentColor'
@@ -583,15 +728,17 @@ var TickIcon = _ref18 => {
583
728
  }, props), /*#__PURE__*/React__default.createElement("svg", {
584
729
  viewBox: "0 0 24 24",
585
730
  fill: "none",
586
- stroke: 'currentColor',
587
- strokeWidth: "2"
588
- }, /*#__PURE__*/React__default.createElement("path", {
589
- d: "M5 13l4 4L19 7",
731
+ stroke: "currentColor",
732
+ strokeWidth: "1",
590
733
  strokeLinecap: "round",
591
734
  strokeLinejoin: "round"
735
+ }, /*#__PURE__*/React__default.createElement("polyline", {
736
+ points: "23 4 23 10 17 10"
737
+ }), /*#__PURE__*/React__default.createElement("path", {
738
+ d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
592
739
  })));
593
740
  };
594
- var NotificationIcon = _ref19 => {
741
+ var PrintIcon = _ref19 => {
595
742
  var {
596
743
  size = 24,
597
744
  color = 'currentColor'
@@ -606,10 +753,10 @@ var NotificationIcon = _ref19 => {
606
753
  stroke: 'currentColor',
607
754
  strokeWidth: "1"
608
755
  }, /*#__PURE__*/React__default.createElement("path", {
609
- d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"
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"
610
757
  })));
611
758
  };
612
- var SettingsIcon = _ref20 => {
759
+ var PanelIcon = _ref20 => {
613
760
  var {
614
761
  size = 24,
615
762
  color = 'currentColor'
@@ -619,18 +766,66 @@ var SettingsIcon = _ref20 => {
619
766
  size: size,
620
767
  color: color
621
768
  }, props), /*#__PURE__*/React__default.createElement("svg", {
769
+ xmlns: "http://www.w3.org/2000/svg",
622
770
  viewBox: "0 0 24 24",
623
771
  fill: "none",
624
- stroke: 'currentColor',
625
- strokeWidth: "1"
626
- }, /*#__PURE__*/React__default.createElement("path", {
627
- 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"
772
+ stroke: "currentColor",
773
+ strokeWidth: "1",
774
+ strokeLinecap: "round",
775
+ strokeLinejoin: "round"
776
+ }, /*#__PURE__*/React__default.createElement("line", {
777
+ x1: "4",
778
+ y1: "21",
779
+ x2: "4",
780
+ y2: "14"
781
+ }), /*#__PURE__*/React__default.createElement("line", {
782
+ x1: "4",
783
+ y1: "10",
784
+ x2: "4",
785
+ y2: "3"
786
+ }), /*#__PURE__*/React__default.createElement("line", {
787
+ x1: "12",
788
+ y1: "21",
789
+ x2: "12",
790
+ y2: "12"
791
+ }), /*#__PURE__*/React__default.createElement("line", {
792
+ x1: "12",
793
+ y1: "8",
794
+ x2: "12",
795
+ y2: "3"
796
+ }), /*#__PURE__*/React__default.createElement("line", {
797
+ x1: "20",
798
+ y1: "21",
799
+ x2: "20",
800
+ y2: "16"
801
+ }), /*#__PURE__*/React__default.createElement("line", {
802
+ x1: "20",
803
+ y1: "12",
804
+ x2: "20",
805
+ y2: "3"
806
+ }), /*#__PURE__*/React__default.createElement("line", {
807
+ x1: "1",
808
+ y1: "14",
809
+ x2: "7",
810
+ y2: "14"
811
+ }), /*#__PURE__*/React__default.createElement("line", {
812
+ x1: "9",
813
+ y1: "8",
814
+ x2: "15",
815
+ y2: "8"
816
+ }), /*#__PURE__*/React__default.createElement("line", {
817
+ x1: "17",
818
+ y1: "16",
819
+ x2: "23",
820
+ y2: "16"
628
821
  })));
629
822
  };
630
- var CalendarIcon = _ref21 => {
823
+ var FilterIcon = _ref21 => {
631
824
  var {
632
825
  size = 24,
633
- color = 'currentColor'
826
+ color = 'currentColor',
827
+ filled = false,
828
+ strokeWidth = 1
634
829
  } = _ref21,
635
830
  props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
636
831
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -638,35 +833,43 @@ var CalendarIcon = _ref21 => {
638
833
  color: color
639
834
  }, props), /*#__PURE__*/React__default.createElement("svg", {
640
835
  viewBox: "0 0 24 24",
641
- fill: "none",
642
- stroke: 'currentColor',
643
- strokeWidth: "1"
836
+ fill: filled ? color : 'none',
837
+ stroke: filled ? 'none' : color,
838
+ strokeWidth: strokeWidth,
839
+ strokeLinecap: "round",
840
+ strokeLinejoin: "round"
644
841
  }, /*#__PURE__*/React__default.createElement("path", {
645
- d: "M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"
842
+ d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
646
843
  })));
647
844
  };
648
- var AddIcon = _ref22 => {
845
+ var HomeIcon = _ref22 => {
649
846
  var {
650
847
  size = 24,
651
- color = 'currentColor'
848
+ color = 'currentColor',
849
+ filled = true,
850
+ strokeWidth = 1
652
851
  } = _ref22,
653
852
  props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
654
853
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
655
854
  size: size,
656
855
  color: color
657
856
  }, props), /*#__PURE__*/React__default.createElement("svg", {
658
- width: "16",
659
- height: "16",
660
- fill: "currentColor",
661
- viewBox: "0 0 24 24"
857
+ viewBox: "0 0 24 24",
858
+ fill: filled ? color : 'none',
859
+ stroke: filled ? 'none' : color,
860
+ strokeWidth: strokeWidth,
861
+ strokeLinecap: "round",
862
+ strokeLinejoin: "round"
662
863
  }, /*#__PURE__*/React__default.createElement("path", {
663
- d: "M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"
864
+ d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
664
865
  })));
665
866
  };
666
- var DownloadIcon = _ref23 => {
867
+ var LocationIcon = _ref23 => {
667
868
  var {
668
869
  size = 24,
669
- color = 'currentColor'
870
+ color = 'currentColor',
871
+ filled = true,
872
+ strokeWidth = 1
670
873
  } = _ref23,
671
874
  props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
672
875
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -674,17 +877,21 @@ var DownloadIcon = _ref23 => {
674
877
  color: color
675
878
  }, props), /*#__PURE__*/React__default.createElement("svg", {
676
879
  viewBox: "0 0 24 24",
677
- fill: "none",
678
- stroke: 'currentColor',
679
- strokeWidth: "1"
880
+ fill: filled ? color : 'none',
881
+ stroke: filled ? 'none' : color,
882
+ strokeWidth: strokeWidth,
883
+ strokeLinecap: "round",
884
+ strokeLinejoin: "round"
680
885
  }, /*#__PURE__*/React__default.createElement("path", {
681
- d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
886
+ 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"
682
887
  })));
683
888
  };
684
- var UploadIcon = _ref24 => {
889
+ var LockIcon = _ref24 => {
685
890
  var {
686
891
  size = 24,
687
- color = 'currentColor'
892
+ color = 'currentColor',
893
+ filled = false,
894
+ strokeWidth = 1
688
895
  } = _ref24,
689
896
  props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
690
897
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -692,17 +899,28 @@ var UploadIcon = _ref24 => {
692
899
  color: color
693
900
  }, props), /*#__PURE__*/React__default.createElement("svg", {
694
901
  viewBox: "0 0 24 24",
695
- fill: "none",
696
- stroke: 'currentColor',
697
- strokeWidth: "1"
698
- }, /*#__PURE__*/React__default.createElement("path", {
699
- d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z"
902
+ fill: filled ? color : 'none',
903
+ stroke: filled ? 'none' : color,
904
+ strokeWidth: strokeWidth,
905
+ strokeLinecap: "round",
906
+ strokeLinejoin: "round"
907
+ }, /*#__PURE__*/React__default.createElement("rect", {
908
+ x: "3",
909
+ y: "11",
910
+ width: "18",
911
+ height: "11",
912
+ rx: "2",
913
+ ry: "2"
914
+ }), /*#__PURE__*/React__default.createElement("path", {
915
+ d: "M7 11V7a5 5 0 0 1 10 0v4"
700
916
  })));
701
917
  };
702
- var BookmarkIcon = _ref25 => {
918
+ var MicrophoneIcon = _ref25 => {
703
919
  var {
704
920
  size = 24,
705
- color = 'currentColor'
921
+ color = 'currentColor',
922
+ filled = false,
923
+ strokeWidth = 1
706
924
  } = _ref25,
707
925
  props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
708
926
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -710,17 +928,33 @@ var BookmarkIcon = _ref25 => {
710
928
  color: color
711
929
  }, props), /*#__PURE__*/React__default.createElement("svg", {
712
930
  viewBox: "0 0 24 24",
713
- fill: "none",
714
- stroke: 'currentColor',
715
- strokeWidth: "1"
931
+ fill: filled ? color : 'none',
932
+ stroke: filled ? 'none' : color,
933
+ strokeWidth: strokeWidth,
934
+ strokeLinecap: "round",
935
+ strokeLinejoin: "round"
716
936
  }, /*#__PURE__*/React__default.createElement("path", {
717
- d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
937
+ d: "M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4z"
938
+ }), /*#__PURE__*/React__default.createElement("path", {
939
+ d: "M19 10v2a7 7 0 0 1-14 0v-2"
940
+ }), /*#__PURE__*/React__default.createElement("line", {
941
+ x1: "12",
942
+ y1: "19",
943
+ x2: "12",
944
+ y2: "23"
945
+ }), /*#__PURE__*/React__default.createElement("line", {
946
+ x1: "8",
947
+ y1: "23",
948
+ x2: "16",
949
+ y2: "23"
718
950
  })));
719
951
  };
720
- var HomeIcon = _ref26 => {
952
+ var MoonIcon = _ref26 => {
721
953
  var {
722
954
  size = 24,
723
- color = 'currentColor'
955
+ color = 'currentColor',
956
+ filled = false,
957
+ strokeWidth = 1
724
958
  } = _ref26,
725
959
  props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
726
960
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -728,17 +962,21 @@ var HomeIcon = _ref26 => {
728
962
  color: color
729
963
  }, props), /*#__PURE__*/React__default.createElement("svg", {
730
964
  viewBox: "0 0 24 24",
731
- fill: "none",
732
- stroke: 'currentColor',
733
- strokeWidth: "1"
965
+ fill: filled ? color : 'none',
966
+ stroke: filled ? 'none' : color,
967
+ strokeWidth: strokeWidth,
968
+ strokeLinecap: "round",
969
+ strokeLinejoin: "round"
734
970
  }, /*#__PURE__*/React__default.createElement("path", {
735
- d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
971
+ d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
736
972
  })));
737
973
  };
738
- var MenuIcon = _ref27 => {
974
+ var NotificationIcon = _ref27 => {
739
975
  var {
740
976
  size = 24,
741
- color = 'currentColor'
977
+ color = 'currentColor',
978
+ filled = false,
979
+ strokeWidth = 1
742
980
  } = _ref27,
743
981
  props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
744
982
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -746,17 +984,23 @@ var MenuIcon = _ref27 => {
746
984
  color: color
747
985
  }, props), /*#__PURE__*/React__default.createElement("svg", {
748
986
  viewBox: "0 0 24 24",
749
- fill: "none",
750
- stroke: 'currentColor',
751
- strokeWidth: "1"
987
+ fill: filled ? color : 'none',
988
+ stroke: filled ? 'none' : color,
989
+ strokeWidth: strokeWidth,
990
+ strokeLinecap: "round",
991
+ strokeLinejoin: "round"
752
992
  }, /*#__PURE__*/React__default.createElement("path", {
753
- d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
993
+ d: "M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9"
994
+ }), /*#__PURE__*/React__default.createElement("path", {
995
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
754
996
  })));
755
997
  };
756
- var ShareIcon = _ref28 => {
998
+ var OpenEyeIcon = _ref28 => {
757
999
  var {
758
1000
  size = 24,
759
- color = 'currentColor'
1001
+ color = 'currentColor',
1002
+ filled = true,
1003
+ strokeWidth = 1
760
1004
  } = _ref28,
761
1005
  props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
762
1006
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -764,17 +1008,21 @@ var ShareIcon = _ref28 => {
764
1008
  color: color
765
1009
  }, props), /*#__PURE__*/React__default.createElement("svg", {
766
1010
  viewBox: "0 0 24 24",
767
- fill: "none",
768
- stroke: 'currentColor',
769
- strokeWidth: "1"
1011
+ fill: filled ? color : 'none',
1012
+ stroke: filled ? 'none' : color,
1013
+ strokeWidth: strokeWidth,
1014
+ strokeLinecap: "round",
1015
+ strokeLinejoin: "round"
770
1016
  }, /*#__PURE__*/React__default.createElement("path", {
771
- d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
1017
+ 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"
772
1018
  })));
773
1019
  };
774
- var FilterIcon = _ref29 => {
1020
+ var ProfileIcon = _ref29 => {
775
1021
  var {
776
1022
  size = 24,
777
- color = 'currentColor'
1023
+ color = 'currentColor',
1024
+ filled = true,
1025
+ strokeWidth = 1
778
1026
  } = _ref29,
779
1027
  props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
780
1028
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -782,17 +1030,22 @@ var FilterIcon = _ref29 => {
782
1030
  color: color
783
1031
  }, props), /*#__PURE__*/React__default.createElement("svg", {
784
1032
  viewBox: "0 0 24 24",
785
- fill: "none",
786
- stroke: 'currentColor',
787
- strokeWidth: "1"
1033
+ fill: filled ? color : 'none',
1034
+ stroke: filled ? 'none' : color,
1035
+ strokeWidth: strokeWidth,
1036
+ strokeLinecap: "round",
1037
+ strokeLinejoin: "round"
788
1038
  }, /*#__PURE__*/React__default.createElement("path", {
789
- d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
790
- })));
1039
+ fill: filled ? color : 'none',
1040
+ 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"
1041
+ }), ' '));
791
1042
  };
792
- var RefreshIcon = _ref30 => {
1043
+ var SettingsIcon = _ref30 => {
793
1044
  var {
794
1045
  size = 24,
795
- color = 'currentColor'
1046
+ color = 'currentColor',
1047
+ filled = false,
1048
+ strokeWidth = 1
796
1049
  } = _ref30,
797
1050
  props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
798
1051
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -800,17 +1053,21 @@ var RefreshIcon = _ref30 => {
800
1053
  color: color
801
1054
  }, props), /*#__PURE__*/React__default.createElement("svg", {
802
1055
  viewBox: "0 0 24 24",
803
- fill: "none",
804
- stroke: 'currentColor',
805
- strokeWidth: "1"
1056
+ fill: filled ? color : 'none',
1057
+ stroke: filled ? 'none' : color,
1058
+ strokeWidth: strokeWidth,
1059
+ strokeLinecap: "round",
1060
+ strokeLinejoin: "round"
806
1061
  }, /*#__PURE__*/React__default.createElement("path", {
807
- d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"
1062
+ 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"
808
1063
  })));
809
1064
  };
810
- var CopyIcon = _ref31 => {
1065
+ var SuccessIcon = _ref31 => {
811
1066
  var {
812
1067
  size = 24,
813
- color = 'currentColor'
1068
+ color = 'currentColor',
1069
+ filled = true,
1070
+ strokeWidth = 1
814
1071
  } = _ref31,
815
1072
  props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
816
1073
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -818,17 +1075,21 @@ var CopyIcon = _ref31 => {
818
1075
  color: color
819
1076
  }, props), /*#__PURE__*/React__default.createElement("svg", {
820
1077
  viewBox: "0 0 24 24",
821
- fill: "none",
822
- stroke: 'currentColor',
823
- strokeWidth: "1"
1078
+ fill: filled ? color : 'none',
1079
+ stroke: filled ? 'none' : color,
1080
+ strokeWidth: strokeWidth,
1081
+ strokeLinecap: "round",
1082
+ strokeLinejoin: "round"
824
1083
  }, /*#__PURE__*/React__default.createElement("path", {
825
- d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"
1084
+ 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"
826
1085
  })));
827
1086
  };
828
- var SaveIcon = _ref32 => {
1087
+ var UnLikeIcon = _ref32 => {
829
1088
  var {
830
1089
  size = 24,
831
- color = 'currentColor'
1090
+ color = 'currentColor',
1091
+ filled = true,
1092
+ strokeWidth = 1
832
1093
  } = _ref32,
833
1094
  props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
834
1095
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -836,14 +1097,16 @@ var SaveIcon = _ref32 => {
836
1097
  color: color
837
1098
  }, props), /*#__PURE__*/React__default.createElement("svg", {
838
1099
  viewBox: "0 0 24 24",
839
- fill: "none",
840
- stroke: 'currentColor',
841
- strokeWidth: "1"
1100
+ fill: filled ? color : 'none',
1101
+ stroke: filled ? 'none' : color,
1102
+ strokeWidth: strokeWidth,
1103
+ strokeLinecap: "round",
1104
+ strokeLinejoin: "round"
842
1105
  }, /*#__PURE__*/React__default.createElement("path", {
843
- d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"
1106
+ 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"
844
1107
  })));
845
1108
  };
846
- var PrintIcon = _ref33 => {
1109
+ var ClockIcon = _ref33 => {
847
1110
  var {
848
1111
  size = 24,
849
1112
  color = 'currentColor'
@@ -855,13 +1118,19 @@ var PrintIcon = _ref33 => {
855
1118
  }, props), /*#__PURE__*/React__default.createElement("svg", {
856
1119
  viewBox: "0 0 24 24",
857
1120
  fill: "none",
858
- stroke: 'currentColor',
859
- strokeWidth: "1"
860
- }, /*#__PURE__*/React__default.createElement("path", {
861
- 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"
1121
+ stroke: "currentColor",
1122
+ strokeWidth: "1",
1123
+ strokeLinecap: "round",
1124
+ strokeLinejoin: "round"
1125
+ }, /*#__PURE__*/React__default.createElement("circle", {
1126
+ cx: "12",
1127
+ cy: "12",
1128
+ r: "10"
1129
+ }), /*#__PURE__*/React__default.createElement("polyline", {
1130
+ points: "12 6 12 12 16 14"
862
1131
  })));
863
1132
  };
864
- var LockIcon = _ref34 => {
1133
+ var CameraIcon = _ref34 => {
865
1134
  var {
866
1135
  size = 24,
867
1136
  color = 'currentColor'
@@ -873,14 +1142,19 @@ var LockIcon = _ref34 => {
873
1142
  }, props), /*#__PURE__*/React__default.createElement("svg", {
874
1143
  viewBox: "0 0 24 24",
875
1144
  fill: "none",
876
- stroke: 'currentColor',
877
- strokeWidth: "1"
1145
+ stroke: "currentColor",
1146
+ strokeWidth: "1",
1147
+ strokeLinecap: "round",
1148
+ strokeLinejoin: "round"
878
1149
  }, /*#__PURE__*/React__default.createElement("path", {
879
- d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"
1150
+ 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"
1151
+ }), /*#__PURE__*/React__default.createElement("circle", {
1152
+ cx: "12",
1153
+ cy: "13",
1154
+ r: "4"
880
1155
  })));
881
1156
  };
882
- // Previous icons remain the same...
883
- var UnlockIcon = _ref35 => {
1157
+ var BluetoothIcon = _ref35 => {
884
1158
  var {
885
1159
  size = 24,
886
1160
  color = 'currentColor'
@@ -891,17 +1165,17 @@ var UnlockIcon = _ref35 => {
891
1165
  color: color
892
1166
  }, props), /*#__PURE__*/React__default.createElement("svg", {
893
1167
  viewBox: "0 0 24 24",
894
- fill: "none",
895
- stroke: 'currentColor',
896
- strokeWidth: "1"
1168
+ fill: 'currentColor'
897
1169
  }, /*#__PURE__*/React__default.createElement("path", {
898
- d: "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z"
1170
+ 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"
899
1171
  })));
900
1172
  };
901
- var StarIcon = _ref36 => {
1173
+ var LikeIcon = _ref36 => {
902
1174
  var {
903
1175
  size = 24,
904
- color = 'currentColor'
1176
+ color = 'currentColor',
1177
+ filled = true,
1178
+ strokeWidth = 1
905
1179
  } = _ref36,
906
1180
  props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
907
1181
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -909,17 +1183,21 @@ var StarIcon = _ref36 => {
909
1183
  color: color
910
1184
  }, props), /*#__PURE__*/React__default.createElement("svg", {
911
1185
  viewBox: "0 0 24 24",
912
- fill: "none",
913
- stroke: 'currentColor',
914
- strokeWidth: "1"
1186
+ fill: filled ? color : 'none',
1187
+ stroke: filled ? 'none' : color,
1188
+ strokeWidth: strokeWidth,
1189
+ strokeLinecap: "round",
1190
+ strokeLinejoin: "round"
915
1191
  }, /*#__PURE__*/React__default.createElement("path", {
916
- d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"
1192
+ 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"
917
1193
  })));
918
1194
  };
919
- var HeartIcon = _ref37 => {
1195
+ var UnlockIcon = _ref37 => {
920
1196
  var {
921
1197
  size = 24,
922
- color = 'currentColor'
1198
+ color = 'currentColor',
1199
+ filled = false,
1200
+ strokeWidth = 1
923
1201
  } = _ref37,
924
1202
  props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
925
1203
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -927,17 +1205,28 @@ var HeartIcon = _ref37 => {
927
1205
  color: color
928
1206
  }, props), /*#__PURE__*/React__default.createElement("svg", {
929
1207
  viewBox: "0 0 24 24",
930
- fill: "none",
931
- stroke: 'currentColor',
932
- strokeWidth: "1"
933
- }, /*#__PURE__*/React__default.createElement("path", {
934
- d: "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"
1208
+ fill: filled ? color : 'none',
1209
+ stroke: filled ? 'none' : color,
1210
+ strokeWidth: strokeWidth,
1211
+ strokeLinecap: "round",
1212
+ strokeLinejoin: "round"
1213
+ }, /*#__PURE__*/React__default.createElement("rect", {
1214
+ x: "3",
1215
+ y: "11",
1216
+ width: "18",
1217
+ height: "11",
1218
+ rx: "2",
1219
+ ry: "2"
1220
+ }), /*#__PURE__*/React__default.createElement("path", {
1221
+ d: "M7 11V7a5 5 0 0 1 9.9-1"
935
1222
  })));
936
1223
  };
937
- var ThumbUpIcon = _ref38 => {
1224
+ var WifiIcon = _ref38 => {
938
1225
  var {
939
1226
  size = 24,
940
- color = 'currentColor'
1227
+ color = 'currentColor',
1228
+ filled = false,
1229
+ strokeWidth = 1
941
1230
  } = _ref38,
942
1231
  props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
943
1232
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -945,17 +1234,21 @@ var ThumbUpIcon = _ref38 => {
945
1234
  color: color
946
1235
  }, props), /*#__PURE__*/React__default.createElement("svg", {
947
1236
  viewBox: "0 0 24 24",
948
- fill: "none",
949
- stroke: 'currentColor',
950
- strokeWidth: "1"
1237
+ fill: filled ? color : 'none',
1238
+ stroke: filled ? 'none' : color,
1239
+ strokeWidth: strokeWidth,
1240
+ strokeLinecap: "round",
1241
+ strokeLinejoin: "round"
951
1242
  }, /*#__PURE__*/React__default.createElement("path", {
952
- 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"
1243
+ 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"
953
1244
  })));
954
1245
  };
955
- var ThumbDownIcon = _ref39 => {
1246
+ var UploadIcon = _ref39 => {
956
1247
  var {
957
1248
  size = 24,
958
- color = 'currentColor'
1249
+ color = 'currentColor',
1250
+ filled = false,
1251
+ strokeWidth = 1
959
1252
  } = _ref39,
960
1253
  props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
961
1254
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -963,14 +1256,20 @@ var ThumbDownIcon = _ref39 => {
963
1256
  color: color
964
1257
  }, props), /*#__PURE__*/React__default.createElement("svg", {
965
1258
  viewBox: "0 0 24 24",
966
- fill: "none",
967
- stroke: 'currentColor',
968
- strokeWidth: "1"
1259
+ fill: filled ? color : 'none',
1260
+ stroke: filled ? 'none' : color,
1261
+ strokeWidth: strokeWidth,
1262
+ strokeLinecap: "round",
1263
+ strokeLinejoin: "round"
969
1264
  }, /*#__PURE__*/React__default.createElement("path", {
970
- 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"
1265
+ 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"
1266
+ }), /*#__PURE__*/React__default.createElement("path", {
1267
+ d: "M9 15l3 -3l3 3"
1268
+ }), /*#__PURE__*/React__default.createElement("path", {
1269
+ d: "M12 12l0 9"
971
1270
  })));
972
1271
  };
973
- var LocationIcon = _ref40 => {
1272
+ var SearchIcon = _ref40 => {
974
1273
  var {
975
1274
  size = 24,
976
1275
  color = 'currentColor'
@@ -981,14 +1280,12 @@ var LocationIcon = _ref40 => {
981
1280
  color: color
982
1281
  }, props), /*#__PURE__*/React__default.createElement("svg", {
983
1282
  viewBox: "0 0 24 24",
984
- fill: "none",
985
- stroke: 'currentColor',
986
- strokeWidth: "1"
1283
+ fill: 'currentColor'
987
1284
  }, /*#__PURE__*/React__default.createElement("path", {
988
- 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"
1285
+ 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"
989
1286
  })));
990
1287
  };
991
- var ClockIcon = _ref41 => {
1288
+ var CloseEyeIcon = _ref41 => {
992
1289
  var {
993
1290
  size = 24,
994
1291
  color = 'currentColor'
@@ -999,14 +1296,13 @@ var ClockIcon = _ref41 => {
999
1296
  color: color
1000
1297
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1001
1298
  viewBox: "0 0 24 24",
1002
- fill: "none",
1003
- stroke: 'currentColor',
1004
- strokeWidth: "1"
1299
+ fill: color
1005
1300
  }, /*#__PURE__*/React__default.createElement("path", {
1006
- d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
1301
+ 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",
1302
+ fill: "currentColor"
1007
1303
  })));
1008
1304
  };
1009
- var CameraIcon = _ref42 => {
1305
+ var ExternalLinkIcon = _ref42 => {
1010
1306
  var {
1011
1307
  size = 24,
1012
1308
  color = 'currentColor'
@@ -1017,22 +1313,19 @@ var CameraIcon = _ref42 => {
1017
1313
  color: color
1018
1314
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1019
1315
  viewBox: "0 0 24 24",
1020
- fill: "none",
1021
- stroke: 'currentColor',
1022
- strokeWidth: "1"
1316
+ fill: 'currentColor'
1023
1317
  }, /*#__PURE__*/React__default.createElement("path", {
1024
- d: "M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
1025
- }), /*#__PURE__*/React__default.createElement("path", {
1026
- d: "M12 17c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3z"
1318
+ 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"
1027
1319
  })));
1028
1320
  };
1029
- var MicrophoneIcon = _ref43 => {
1321
+ var MinusIcon = _ref43 => {
1030
1322
  var {
1031
1323
  size = 24,
1032
1324
  color = 'currentColor'
1033
1325
  } = _ref43,
1034
1326
  props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1035
1327
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1328
+ padding: 2,
1036
1329
  size: size,
1037
1330
  color: color
1038
1331
  }, props), /*#__PURE__*/React__default.createElement("svg", {
@@ -1041,12 +1334,12 @@ var MicrophoneIcon = _ref43 => {
1041
1334
  stroke: 'currentColor',
1042
1335
  strokeWidth: "1"
1043
1336
  }, /*#__PURE__*/React__default.createElement("path", {
1044
- d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"
1045
- }), /*#__PURE__*/React__default.createElement("path", {
1046
- d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"
1337
+ d: "M7 12h10",
1338
+ strokeLinecap: "round",
1339
+ strokeLinejoin: "round"
1047
1340
  })));
1048
1341
  };
1049
- var WifiIcon = _ref44 => {
1342
+ var InfoIcon = _ref44 => {
1050
1343
  var {
1051
1344
  size = 24,
1052
1345
  color = 'currentColor'
@@ -1057,14 +1350,12 @@ var WifiIcon = _ref44 => {
1057
1350
  color: color
1058
1351
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1059
1352
  viewBox: "0 0 24 24",
1060
- fill: "none",
1061
- stroke: 'currentColor',
1062
- strokeWidth: "1"
1353
+ fill: 'currentColor'
1063
1354
  }, /*#__PURE__*/React__default.createElement("path", {
1064
- 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"
1355
+ 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"
1065
1356
  })));
1066
1357
  };
1067
- var BluetoothIcon = _ref45 => {
1358
+ var PlusIcon = _ref45 => {
1068
1359
  var {
1069
1360
  size = 24,
1070
1361
  color = 'currentColor'
@@ -1077,10 +1368,10 @@ var BluetoothIcon = _ref45 => {
1077
1368
  viewBox: "0 0 24 24",
1078
1369
  fill: 'currentColor'
1079
1370
  }, /*#__PURE__*/React__default.createElement("path", {
1080
- 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"
1371
+ d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1081
1372
  })));
1082
1373
  };
1083
- var BatteryIcon = _ref46 => {
1374
+ var TickIcon = _ref46 => {
1084
1375
  var {
1085
1376
  size = 24,
1086
1377
  color = 'currentColor'
@@ -1095,11 +1386,12 @@ var BatteryIcon = _ref46 => {
1095
1386
  stroke: 'currentColor',
1096
1387
  strokeWidth: "1"
1097
1388
  }, /*#__PURE__*/React__default.createElement("path", {
1098
- 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"
1389
+ d: "M5 13l4 4L19 7",
1390
+ strokeLinecap: "round",
1391
+ strokeLinejoin: "round"
1099
1392
  })));
1100
1393
  };
1101
- // More modern UI icons
1102
- var SunIcon = _ref47 => {
1394
+ var BoldArrowIcon = _ref47 => {
1103
1395
  var {
1104
1396
  size = 24,
1105
1397
  color = 'currentColor'
@@ -1110,18 +1402,12 @@ var SunIcon = _ref47 => {
1110
1402
  color: color
1111
1403
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1112
1404
  viewBox: "0 0 24 24",
1113
- fill: "none",
1114
- stroke: 'currentColor',
1115
- strokeWidth: "1"
1116
- }, /*#__PURE__*/React__default.createElement("circle", {
1117
- cx: "12",
1118
- cy: "12",
1119
- r: "5"
1120
- }), /*#__PURE__*/React__default.createElement("path", {
1121
- d: "M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"
1405
+ fill: 'currentColor'
1406
+ }, /*#__PURE__*/React__default.createElement("path", {
1407
+ d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1122
1408
  })));
1123
1409
  };
1124
- var MoonIcon = _ref48 => {
1410
+ var ArrowIcon = _ref48 => {
1125
1411
  var {
1126
1412
  size = 24,
1127
1413
  color = 'currentColor'
@@ -1131,129 +1417,144 @@ var MoonIcon = _ref48 => {
1131
1417
  size: size,
1132
1418
  color: color
1133
1419
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1420
+ width: "24",
1421
+ height: "24",
1134
1422
  viewBox: "0 0 24 24",
1135
- fill: "none",
1423
+ strokeWidth: "1",
1136
1424
  stroke: 'currentColor',
1137
- strokeWidth: "1"
1138
- }, /*#__PURE__*/React__default.createElement("path", {
1139
- d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1425
+ fill: "none",
1426
+ strokeLinecap: "round",
1427
+ strokeLinejoin: "round"
1428
+ }, /*#__PURE__*/React__default.createElement("line", {
1429
+ x1: "12",
1430
+ y1: "20",
1431
+ x2: "12",
1432
+ y2: "8"
1433
+ }), /*#__PURE__*/React__default.createElement("polyline", {
1434
+ points: "6 12 12 6 18 12"
1140
1435
  })));
1141
1436
  };
1142
- var ErrorIcon = _ref49 => {
1437
+ var SpinnerIcon = _ref49 => {
1143
1438
  var {
1144
1439
  size = 24,
1145
- color = 'white'
1440
+ color = 'currentColor'
1146
1441
  } = _ref49,
1147
1442
  props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1148
1443
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1149
1444
  size: size,
1150
1445
  color: color
1151
1446
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1152
- viewBox: "0 0 510 510"
1153
- }, /*#__PURE__*/React__default.createElement("path", {
1154
- d: "M255,0C114.615,0,0,114.615,0,255s114.615,255,255,255s255-114.615,255-255S395.385,0,255,0z M255,459c-114.75,0-207-92.25-207-207c0-114.75,92.25-207,207-207c114.75,0,207,92.25,207,207C462,366.75,369.75,459,255,459z"
1155
- }), /*#__PURE__*/React__default.createElement("path", {
1156
- d: "M255,140.25c11.05,0,20-8.95,20-20s-8.95-20-20-20s-20,8.95-20,20S243.95,140.25,255,140.25z"
1447
+ xmlns: "http://www.w3.org/2000/svg",
1448
+ width: "24",
1449
+ height: "24",
1450
+ viewBox: "0 0 24 24",
1451
+ fill: "none",
1452
+ stroke: "currentColor",
1453
+ strokeWidth: "2",
1454
+ strokeLinecap: "round",
1455
+ strokeLinejoin: "round"
1456
+ }, /*#__PURE__*/React__default.createElement("circle", {
1457
+ cx: "12",
1458
+ cy: "12",
1459
+ r: "10",
1460
+ strokeOpacity: "0.25"
1157
1461
  }), /*#__PURE__*/React__default.createElement("path", {
1158
- d: "M265,357c0,11.05-8.95,20-20,20s-20-8.95-20-20v-175c0-11.05,8.95-20,20-20s20,8.95,20,20V357z"
1462
+ d: "M12 2a10 10 0 0 1 10 10",
1463
+ strokeOpacity: "1"
1159
1464
  })));
1160
1465
  };
1161
- var WarningIcon = _ref50 => {
1466
+ var CalendarIcon = _ref50 => {
1162
1467
  var {
1163
1468
  size = 24,
1164
- color = 'white'
1469
+ color = 'currentColor'
1165
1470
  } = _ref50,
1166
1471
  props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1167
1472
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1168
1473
  size: size,
1169
1474
  color: color
1170
- }, props), /*#__PURE__*/React__default.createElement("svg", {
1171
- version: "1.1",
1172
- id: "Capa_1",
1173
- xmlns: "http://www.w3.org/2000/svg",
1174
- viewBox: "0 0 192.146 192.146",
1175
- fill: 'currentColor'
1176
- }, /*#__PURE__*/React__default.createElement("g", {
1177
- id: "SVGRepo_bgCarrier"
1178
- }), /*#__PURE__*/React__default.createElement("g", {
1179
- id: "SVGRepo_tracerCarrier"
1180
- }), /*#__PURE__*/React__default.createElement("g", {
1181
- id: "SVGRepo_iconCarrier"
1182
- }, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
1183
- d: "M108.186,144.372c0,7.054-4.729,12.32-12.037,12.32h-0.254c-7.054,0-11.92-5.266-11.92-12.32 c0-7.298,5.012-12.31,12.174-12.31C103.311,132.062,108.059,137.054,108.186,144.372z M88.44,125.301h15.447l2.951-61.298H85.46 L88.44,125.301z M190.372,177.034c-2.237,3.664-6.214,5.921-10.493,5.921H12.282c-4.426,0-8.51-2.384-10.698-6.233 c-2.159-3.849-2.11-8.549,0.147-12.349l84.111-149.22c2.208-3.722,6.204-5.96,10.522-5.96h0.332 c4.445,0.107,8.441,2.618,10.513,6.546l83.515,149.229C192.717,168.768,192.629,173.331,190.372,177.034z M179.879,170.634 L96.354,21.454L12.292,170.634H179.879z"
1184
- })))))));
1185
- };
1186
- var CloudIcon = _ref51 => {
1187
- var {
1188
- size = 24,
1189
- color = 'currentColor'
1190
- } = _ref51,
1191
- props = _objectWithoutPropertiesLoose(_ref51, _excluded50);
1192
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1193
- size: size,
1194
- color: color
1195
1475
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1196
1476
  viewBox: "0 0 24 24",
1197
1477
  fill: "none",
1198
- stroke: 'currentColor',
1199
- strokeWidth: "1"
1200
- }, /*#__PURE__*/React__default.createElement("path", {
1201
- d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
1478
+ stroke: "currentColor",
1479
+ strokeWidth: "1",
1480
+ strokeLinecap: "round",
1481
+ strokeLinejoin: "round"
1482
+ }, /*#__PURE__*/React__default.createElement("rect", {
1483
+ x: "3",
1484
+ y: "4",
1485
+ width: "18",
1486
+ height: "18",
1487
+ rx: "2",
1488
+ ry: "2"
1489
+ }), /*#__PURE__*/React__default.createElement("line", {
1490
+ x1: "16",
1491
+ y1: "2",
1492
+ x2: "16",
1493
+ y2: "6"
1494
+ }), /*#__PURE__*/React__default.createElement("line", {
1495
+ x1: "8",
1496
+ y1: "2",
1497
+ x2: "8",
1498
+ y2: "6"
1499
+ }), /*#__PURE__*/React__default.createElement("line", {
1500
+ x1: "3",
1501
+ y1: "10",
1502
+ x2: "21",
1503
+ y2: "10"
1202
1504
  })));
1203
1505
  };
1204
1506
 
1205
1507
  var Icon = {
1206
1508
  __proto__: null,
1207
1509
  ChevronIcon: ChevronIcon,
1208
- CheckIcon: CheckIcon,
1209
1510
  CloseIcon: CloseIcon,
1210
- CloseEyeIcon: CloseEyeIcon,
1511
+ HeartIcon: HeartIcon,
1512
+ StarIcon: StarIcon,
1513
+ SaveIcon: SaveIcon,
1514
+ WarningIcon: WarningIcon,
1515
+ BatteryIcon: BatteryIcon,
1516
+ BookmarkIcon: BookmarkIcon,
1517
+ CloudIcon: CloudIcon,
1518
+ CopyIcon: CopyIcon,
1211
1519
  DustBinIcon: DustBinIcon,
1212
1520
  EditIcon: EditIcon,
1213
- ExternalLinkIcon: ExternalLinkIcon,
1214
- MinusIcon: MinusIcon,
1215
- InfoIcon: InfoIcon,
1216
- OpenEyeIcon: OpenEyeIcon,
1217
- PlusIcon: PlusIcon,
1218
- SpinnerIcon: SpinnerIcon,
1219
- ProfileIcon: ProfileIcon,
1220
- ArrowIcon: ArrowIcon,
1221
- SearchIcon: SearchIcon,
1222
- SuccessIcon: SuccessIcon,
1223
- TickIcon: TickIcon,
1224
- NotificationIcon: NotificationIcon,
1225
- SettingsIcon: SettingsIcon,
1226
- CalendarIcon: CalendarIcon,
1227
- AddIcon: AddIcon,
1521
+ ErrorIcon: ErrorIcon,
1228
1522
  DownloadIcon: DownloadIcon,
1229
- UploadIcon: UploadIcon,
1230
- BookmarkIcon: BookmarkIcon,
1231
- HomeIcon: HomeIcon,
1232
1523
  MenuIcon: MenuIcon,
1233
1524
  ShareIcon: ShareIcon,
1234
- FilterIcon: FilterIcon,
1235
1525
  RefreshIcon: RefreshIcon,
1236
- CopyIcon: CopyIcon,
1237
- SaveIcon: SaveIcon,
1238
1526
  PrintIcon: PrintIcon,
1239
- LockIcon: LockIcon,
1240
- UnlockIcon: UnlockIcon,
1241
- StarIcon: StarIcon,
1242
- HeartIcon: HeartIcon,
1243
- ThumbUpIcon: ThumbUpIcon,
1244
- ThumbDownIcon: ThumbDownIcon,
1527
+ PanelIcon: PanelIcon,
1528
+ FilterIcon: FilterIcon,
1529
+ HomeIcon: HomeIcon,
1245
1530
  LocationIcon: LocationIcon,
1531
+ LockIcon: LockIcon,
1532
+ MicrophoneIcon: MicrophoneIcon,
1533
+ MoonIcon: MoonIcon,
1534
+ NotificationIcon: NotificationIcon,
1535
+ OpenEyeIcon: OpenEyeIcon,
1536
+ ProfileIcon: ProfileIcon,
1537
+ SettingsIcon: SettingsIcon,
1538
+ SuccessIcon: SuccessIcon,
1539
+ UnLikeIcon: UnLikeIcon,
1246
1540
  ClockIcon: ClockIcon,
1247
1541
  CameraIcon: CameraIcon,
1248
- MicrophoneIcon: MicrophoneIcon,
1249
- WifiIcon: WifiIcon,
1250
1542
  BluetoothIcon: BluetoothIcon,
1251
- BatteryIcon: BatteryIcon,
1252
- SunIcon: SunIcon,
1253
- MoonIcon: MoonIcon,
1254
- ErrorIcon: ErrorIcon,
1255
- WarningIcon: WarningIcon,
1256
- CloudIcon: CloudIcon
1543
+ LikeIcon: LikeIcon,
1544
+ UnlockIcon: UnlockIcon,
1545
+ WifiIcon: WifiIcon,
1546
+ UploadIcon: UploadIcon,
1547
+ SearchIcon: SearchIcon,
1548
+ CloseEyeIcon: CloseEyeIcon,
1549
+ ExternalLinkIcon: ExternalLinkIcon,
1550
+ MinusIcon: MinusIcon,
1551
+ InfoIcon: InfoIcon,
1552
+ PlusIcon: PlusIcon,
1553
+ TickIcon: TickIcon,
1554
+ BoldArrowIcon: BoldArrowIcon,
1555
+ ArrowIcon: ArrowIcon,
1556
+ SpinnerIcon: SpinnerIcon,
1557
+ CalendarIcon: CalendarIcon
1257
1558
  };
1258
1559
 
1259
1560
  // Define a constant object 'Themes' exporting various theme styles.
@@ -1881,7 +2182,7 @@ var DefaultSpinner = _ref => {
1881
2182
  viewBox: "0 0 24 24",
1882
2183
  fill: "none",
1883
2184
  stroke: colorStyle,
1884
- strokeWidth: "2",
2185
+ strokeWidth: "1",
1885
2186
  strokeLinecap: "round",
1886
2187
  strokeLinejoin: "round",
1887
2188
  style: {
@@ -6908,7 +7209,6 @@ var ToggleGroupComponent = _ref => {
6908
7209
  // Expose the ToggleGroupComponent for import into other modules
6909
7210
  var ToggleGroup = ToggleGroupComponent;
6910
7211
 
6911
- exports.AddIcon = AddIcon;
6912
7212
  exports.Alert = Alert;
6913
7213
  exports.ArrowIcon = ArrowIcon;
6914
7214
  exports.AspectRatio = AspectRatio;
@@ -6916,13 +7216,13 @@ exports.Avatar = Avatar;
6916
7216
  exports.Badge = Badge;
6917
7217
  exports.BatteryIcon = BatteryIcon;
6918
7218
  exports.BluetoothIcon = BluetoothIcon;
7219
+ exports.BoldArrowIcon = BoldArrowIcon;
6919
7220
  exports.BookmarkIcon = BookmarkIcon;
6920
7221
  exports.Bottom = Bottom;
6921
7222
  exports.Button = Button;
6922
7223
  exports.CalendarIcon = CalendarIcon;
6923
7224
  exports.CameraIcon = CameraIcon;
6924
7225
  exports.Center = Center;
6925
- exports.CheckIcon = CheckIcon;
6926
7226
  exports.Checkbox = Checkbox;
6927
7227
  exports.ChevronIcon = ChevronIcon;
6928
7228
  exports.ClockIcon = ClockIcon;
@@ -6958,6 +7258,7 @@ exports.Icon = Icon;
6958
7258
  exports.InfoIcon = InfoIcon;
6959
7259
  exports.Inline = Inline;
6960
7260
  exports.Left = Left;
7261
+ exports.LikeIcon = LikeIcon;
6961
7262
  exports.Link = Link;
6962
7263
  exports.Loader = Loader;
6963
7264
  exports.LocationIcon = LocationIcon;
@@ -6971,6 +7272,7 @@ exports.Modal = Modal;
6971
7272
  exports.MoonIcon = MoonIcon;
6972
7273
  exports.NotificationIcon = NotificationIcon;
6973
7274
  exports.OpenEyeIcon = OpenEyeIcon;
7275
+ exports.PanelIcon = PanelIcon;
6974
7276
  exports.Password = Password;
6975
7277
  exports.PlusIcon = PlusIcon;
6976
7278
  exports.PrintIcon = PrintIcon;
@@ -6985,19 +7287,17 @@ exports.ShareIcon = ShareIcon;
6985
7287
  exports.SpinnerIcon = SpinnerIcon;
6986
7288
  exports.StarIcon = StarIcon;
6987
7289
  exports.SuccessIcon = SuccessIcon;
6988
- exports.SunIcon = SunIcon;
6989
7290
  exports.Switch = Switch;
6990
7291
  exports.Table = Table;
6991
7292
  exports.Tabs = Tabs;
6992
7293
  exports.Text = Text;
6993
7294
  exports.TextArea = TextArea;
6994
7295
  exports.TextField = TextField;
6995
- exports.ThumbDownIcon = ThumbDownIcon;
6996
- exports.ThumbUpIcon = ThumbUpIcon;
6997
7296
  exports.TickIcon = TickIcon;
6998
7297
  exports.Toggle = Toggle;
6999
7298
  exports.ToggleGroup = ToggleGroup;
7000
7299
  exports.Top = Top;
7300
+ exports.UnLikeIcon = UnLikeIcon;
7001
7301
  exports.UnlockIcon = UnlockIcon;
7002
7302
  exports.UploadIcon = UploadIcon;
7003
7303
  exports.Vertical = Vertical;