@app-studio/web 0.8.23 → 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.
@@ -208,44 +208,44 @@
208
208
  });
209
209
  Center.displayName = 'Center';
210
210
 
211
- var _excluded$4 = ["size", "color"],
212
- _excluded2 = ["size", "color"],
213
- _excluded3 = ["size", "color"],
214
- _excluded4 = ["size", "color"],
215
- _excluded5 = ["size", "color"],
216
- _excluded6 = ["size", "color"],
217
- _excluded7 = ["size", "color"],
218
- _excluded8 = ["size", "color"],
219
- _excluded9 = ["size", "color"],
220
- _excluded10 = ["size", "color"],
221
- _excluded11 = ["size", "color"],
222
- _excluded12 = ["size", "color"],
223
- _excluded13 = ["size", "color"],
224
- _excluded14 = ["size", "color"],
211
+ var _excluded$4 = ["size", "color", "filled", "strokeWidth"],
212
+ _excluded2 = ["size", "color", "filled", "strokeWidth"],
213
+ _excluded3 = ["size", "color", "filled", "strokeWidth"],
214
+ _excluded4 = ["size", "color", "filled", "strokeWidth"],
215
+ _excluded5 = ["size", "color", "filled", "strokeWidth"],
216
+ _excluded6 = ["size", "color", "filled", "strokeWidth"],
217
+ _excluded7 = ["size", "color", "filled", "strokeWidth"],
218
+ _excluded8 = ["size", "color", "filled", "strokeWidth"],
219
+ _excluded9 = ["size", "color", "filled", "strokeWidth"],
220
+ _excluded10 = ["size", "color", "filled", "strokeWidth"],
221
+ _excluded11 = ["size", "color", "filled", "strokeWidth"],
222
+ _excluded12 = ["size", "color", "filled", "strokeWidth"],
223
+ _excluded13 = ["size", "color", "filled", "strokeWidth"],
224
+ _excluded14 = ["size", "color", "filled", "strokeWidth"],
225
225
  _excluded15 = ["size", "color"],
226
226
  _excluded16 = ["size", "color"],
227
227
  _excluded17 = ["size", "color"],
228
228
  _excluded18 = ["size", "color"],
229
229
  _excluded19 = ["size", "color"],
230
- _excluded20 = ["size", "color"],
231
- _excluded21 = ["size", "color"],
232
- _excluded22 = ["size", "color"],
233
- _excluded23 = ["size", "color"],
234
- _excluded24 = ["size", "color"],
235
- _excluded25 = ["size", "color"],
236
- _excluded26 = ["size", "color"],
237
- _excluded27 = ["size", "color"],
238
- _excluded28 = ["size", "color"],
239
- _excluded29 = ["size", "color"],
240
- _excluded30 = ["size", "color"],
241
- _excluded31 = ["size", "color"],
230
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
231
+ _excluded21 = ["size", "color", "filled", "strokeWidth"],
232
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
233
+ _excluded23 = ["size", "color", "filled", "strokeWidth"],
234
+ _excluded24 = ["size", "color", "filled", "strokeWidth"],
235
+ _excluded25 = ["size", "color", "filled", "strokeWidth"],
236
+ _excluded26 = ["size", "color", "filled", "strokeWidth"],
237
+ _excluded27 = ["size", "color", "filled", "strokeWidth"],
238
+ _excluded28 = ["size", "color", "filled", "strokeWidth"],
239
+ _excluded29 = ["size", "color", "filled", "strokeWidth"],
240
+ _excluded30 = ["size", "color", "filled", "strokeWidth"],
241
+ _excluded31 = ["size", "color", "filled", "strokeWidth"],
242
242
  _excluded32 = ["size", "color"],
243
243
  _excluded33 = ["size", "color"],
244
244
  _excluded34 = ["size", "color"],
245
- _excluded35 = ["size", "color"],
246
- _excluded36 = ["size", "color"],
247
- _excluded37 = ["size", "color"],
248
- _excluded38 = ["size", "color"],
245
+ _excluded35 = ["size", "color", "filled", "strokeWidth"],
246
+ _excluded36 = ["size", "color", "filled", "strokeWidth"],
247
+ _excluded37 = ["size", "color", "filled", "strokeWidth"],
248
+ _excluded38 = ["size", "color", "filled", "strokeWidth"],
249
249
  _excluded39 = ["size", "color"],
250
250
  _excluded40 = ["size", "color"],
251
251
  _excluded41 = ["size", "color"],
@@ -256,9 +256,7 @@
256
256
  _excluded46 = ["size", "color"],
257
257
  _excluded47 = ["size", "color"],
258
258
  _excluded48 = ["size", "color"],
259
- _excluded49 = ["size", "color"],
260
- _excluded50 = ["size", "color"],
261
- _excluded51 = ["size", "color"];
259
+ _excluded49 = ["size", "color"];
262
260
  // Default wrapper component for consistent sizing
263
261
  var IconWrapper = _ref => {
264
262
  var {
@@ -279,7 +277,9 @@
279
277
  var ChevronIcon = _ref2 => {
280
278
  var {
281
279
  size = 24,
282
- color = 'currentColor'
280
+ color = 'currentColor',
281
+ filled = false,
282
+ strokeWidth = 1
283
283
  } = _ref2,
284
284
  props = _objectWithoutPropertiesLoose(_ref2, _excluded$4);
285
285
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -288,35 +288,53 @@
288
288
  }, props), /*#__PURE__*/React__default.createElement("svg", {
289
289
  width: "16",
290
290
  height: "16",
291
- fill: "currentColor",
292
- viewBox: "0 0 24 24"
291
+ fill: filled ? color : 'none',
292
+ viewBox: "0 0 24 24",
293
+ stroke: filled ? 'none' : color,
294
+ strokeWidth: strokeWidth,
295
+ strokeLinecap: "round",
296
+ strokeLinejoin: "round"
293
297
  }, /*#__PURE__*/React__default.createElement("path", {
294
298
  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
299
  })));
296
300
  };
297
- var CheckIcon = _ref3 => {
301
+ var CloseIcon = _ref3 => {
298
302
  var {
299
303
  size = 24,
300
- color = 'currentColor'
304
+ color = 'currentColor',
305
+ filled = false,
306
+ strokeWidth = 1
301
307
  } = _ref3,
302
308
  props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
303
309
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
304
310
  size: size,
305
311
  color: color
306
312
  }, props), /*#__PURE__*/React__default.createElement("svg", {
313
+ xmlns: "http://www.w3.org/2000/svg",
307
314
  viewBox: "0 0 24 24",
308
- fill: "none",
309
- strokeWidth: "1"
310
- }, /*#__PURE__*/React__default.createElement("path", {
311
- d: "M17.0001 9L10 16L7 13",
315
+ fill: filled ? color : 'none',
316
+ stroke: filled ? 'none' : color,
317
+ strokeWidth: strokeWidth,
312
318
  strokeLinecap: "round",
313
319
  strokeLinejoin: "round"
320
+ }, /*#__PURE__*/React__default.createElement("line", {
321
+ x1: "18",
322
+ y1: "6",
323
+ x2: "6",
324
+ y2: "18"
325
+ }), /*#__PURE__*/React__default.createElement("line", {
326
+ x1: "6",
327
+ y1: "6",
328
+ x2: "18",
329
+ y2: "18"
314
330
  })));
315
331
  };
316
- var CloseIcon = _ref4 => {
332
+ var HeartIcon = _ref4 => {
317
333
  var {
318
334
  size = 24,
319
- color = 'currentColor'
335
+ color = 'currentColor',
336
+ filled = true,
337
+ strokeWidth = 1
320
338
  } = _ref4,
321
339
  props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
322
340
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -324,48 +342,45 @@
324
342
  color: color
325
343
  }, props), /*#__PURE__*/React__default.createElement("svg", {
326
344
  xmlns: "http://www.w3.org/2000/svg",
327
- width: "24",
328
- height: "24",
329
345
  viewBox: "0 0 24 24",
330
- fill: "none",
331
- stroke: "currentColor",
332
- strokeWidth: "2",
346
+ fill: filled ? color : 'none',
347
+ stroke: filled ? 'none' : color,
348
+ strokeWidth: strokeWidth,
333
349
  strokeLinecap: "round",
334
350
  strokeLinejoin: "round"
335
- }, /*#__PURE__*/React__default.createElement("line", {
336
- x1: "18",
337
- y1: "6",
338
- x2: "6",
339
- y2: "18"
340
- }), /*#__PURE__*/React__default.createElement("line", {
341
- x1: "6",
342
- y1: "6",
343
- x2: "18",
344
- y2: "18"
351
+ }, /*#__PURE__*/React__default.createElement("path", {
352
+ 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"
345
353
  })));
346
354
  };
347
- var CloseEyeIcon = _ref5 => {
355
+ var StarIcon = _ref5 => {
348
356
  var {
349
357
  size = 24,
350
- color = 'currentColor'
358
+ color = 'currentColor',
359
+ filled = true,
360
+ strokeWidth = 1
351
361
  } = _ref5,
352
362
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
353
363
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
354
364
  size: size,
355
365
  color: color
356
366
  }, props), /*#__PURE__*/React__default.createElement("svg", {
367
+ xmlns: "http://www.w3.org/2000/svg",
357
368
  viewBox: "0 0 24 24",
358
- fill: color,
359
- xmlns: "http://www.w3.org/2000/svg"
360
- }, /*#__PURE__*/React__default.createElement("path", {
361
- 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",
362
- fill: "currentColor"
369
+ fill: filled ? color : 'none',
370
+ stroke: filled ? 'none' : color,
371
+ strokeWidth: strokeWidth,
372
+ strokeLinecap: "round",
373
+ strokeLinejoin: "round"
374
+ }, /*#__PURE__*/React__default.createElement("polygon", {
375
+ 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"
363
376
  })));
364
377
  };
365
- var DustBinIcon = _ref6 => {
378
+ var SaveIcon = _ref6 => {
366
379
  var {
367
380
  size = 24,
368
- color = 'currentColor'
381
+ color = 'currentColor',
382
+ filled = false,
383
+ strokeWidth = 1
369
384
  } = _ref6,
370
385
  props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
371
386
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -373,15 +388,25 @@
373
388
  color: color
374
389
  }, props), /*#__PURE__*/React__default.createElement("svg", {
375
390
  viewBox: "0 0 24 24",
376
- fill: 'currentColor'
391
+ fill: filled ? color : 'none',
392
+ stroke: filled ? 'none' : color,
393
+ strokeWidth: strokeWidth,
394
+ strokeLinecap: "round",
395
+ strokeLinejoin: "round"
377
396
  }, /*#__PURE__*/React__default.createElement("path", {
378
- d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
397
+ d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
398
+ }), /*#__PURE__*/React__default.createElement("polyline", {
399
+ points: "17 21 17 13 7 13 7 21"
400
+ }), /*#__PURE__*/React__default.createElement("polyline", {
401
+ points: "7 3 7 8 15 8"
379
402
  })));
380
403
  };
381
- var EditIcon = _ref7 => {
404
+ var WarningIcon = _ref7 => {
382
405
  var {
383
406
  size = 24,
384
- color = 'currentColor'
407
+ color = 'currentColor',
408
+ filled = false,
409
+ strokeWidth = 1
385
410
  } = _ref7,
386
411
  props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
387
412
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -389,17 +414,31 @@
389
414
  color: color
390
415
  }, props), /*#__PURE__*/React__default.createElement("svg", {
391
416
  viewBox: "0 0 24 24",
392
- fill: "none",
393
- stroke: 'currentColor',
394
- strokeWidth: "1"
417
+ fill: filled ? color : 'none',
418
+ stroke: filled ? 'none' : color,
419
+ strokeWidth: strokeWidth,
420
+ strokeLinecap: "round",
421
+ strokeLinejoin: "round"
395
422
  }, /*#__PURE__*/React__default.createElement("path", {
396
- 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"
423
+ 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"
424
+ }), /*#__PURE__*/React__default.createElement("line", {
425
+ x1: "12",
426
+ y1: "6",
427
+ x2: "12",
428
+ y2: "13"
429
+ }), /*#__PURE__*/React__default.createElement("line", {
430
+ x1: "12",
431
+ y1: "15",
432
+ x2: "12",
433
+ y2: "15"
397
434
  })));
398
435
  };
399
- var ExternalLinkIcon = _ref8 => {
436
+ var BatteryIcon = _ref8 => {
400
437
  var {
401
438
  size = 24,
402
- color = 'currentColor'
439
+ color = 'currentColor',
440
+ filled = true,
441
+ strokeWidth = 1
403
442
  } = _ref8,
404
443
  props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
405
444
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -407,36 +446,43 @@
407
446
  color: color
408
447
  }, props), /*#__PURE__*/React__default.createElement("svg", {
409
448
  viewBox: "0 0 24 24",
410
- fill: 'currentColor'
449
+ fill: filled ? color : 'none',
450
+ stroke: filled ? 'none' : color,
451
+ strokeWidth: strokeWidth,
452
+ strokeLinecap: "round",
453
+ strokeLinejoin: "round"
411
454
  }, /*#__PURE__*/React__default.createElement("path", {
412
- 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"
455
+ 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"
413
456
  })));
414
457
  };
415
- var MinusIcon = _ref9 => {
458
+ var BookmarkIcon = _ref9 => {
416
459
  var {
417
460
  size = 24,
418
- color = 'currentColor'
461
+ color = 'currentColor',
462
+ filled = false,
463
+ strokeWidth = 1
419
464
  } = _ref9,
420
465
  props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
421
466
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
422
- padding: 2,
423
467
  size: size,
424
468
  color: color
425
469
  }, props), /*#__PURE__*/React__default.createElement("svg", {
426
470
  viewBox: "0 0 24 24",
427
- fill: "none",
428
- stroke: 'currentColor',
429
- strokeWidth: "2"
430
- }, /*#__PURE__*/React__default.createElement("path", {
431
- d: "M7 12h10",
471
+ fill: filled ? color : 'none',
472
+ stroke: filled ? 'none' : color,
473
+ strokeWidth: strokeWidth,
432
474
  strokeLinecap: "round",
433
475
  strokeLinejoin: "round"
476
+ }, /*#__PURE__*/React__default.createElement("path", {
477
+ d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
434
478
  })));
435
479
  };
436
- var InfoIcon = _ref10 => {
480
+ var CloudIcon = _ref10 => {
437
481
  var {
438
482
  size = 24,
439
- color = 'currentColor'
483
+ color = 'currentColor',
484
+ filled = false,
485
+ strokeWidth = 1
440
486
  } = _ref10,
441
487
  props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
442
488
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -444,15 +490,21 @@
444
490
  color: color
445
491
  }, props), /*#__PURE__*/React__default.createElement("svg", {
446
492
  viewBox: "0 0 24 24",
447
- fill: 'currentColor'
493
+ fill: filled ? color : 'none',
494
+ stroke: filled ? 'none' : color,
495
+ strokeWidth: strokeWidth,
496
+ strokeLinecap: "round",
497
+ strokeLinejoin: "round"
448
498
  }, /*#__PURE__*/React__default.createElement("path", {
449
- 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"
499
+ d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
450
500
  })));
451
501
  };
452
- var OpenEyeIcon = _ref11 => {
502
+ var CopyIcon = _ref11 => {
453
503
  var {
454
504
  size = 24,
455
- color = 'currentColor'
505
+ color = 'currentColor',
506
+ filled = false,
507
+ strokeWidth = 1
456
508
  } = _ref11,
457
509
  props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
458
510
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -460,15 +512,28 @@
460
512
  color: color
461
513
  }, props), /*#__PURE__*/React__default.createElement("svg", {
462
514
  viewBox: "0 0 24 24",
463
- fill: 'currentColor'
464
- }, /*#__PURE__*/React__default.createElement("path", {
465
- 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"
515
+ fill: filled ? color : 'none',
516
+ stroke: filled ? 'none' : color,
517
+ strokeWidth: strokeWidth,
518
+ strokeLinecap: "round",
519
+ strokeLinejoin: "round"
520
+ }, /*#__PURE__*/React__default.createElement("rect", {
521
+ x: "9",
522
+ y: "9",
523
+ width: "13",
524
+ height: "13",
525
+ rx: "2",
526
+ ry: "2"
527
+ }), /*#__PURE__*/React__default.createElement("path", {
528
+ d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
466
529
  })));
467
530
  };
468
- var PlusIcon = _ref12 => {
531
+ var DustBinIcon = _ref12 => {
469
532
  var {
470
533
  size = 24,
471
- color = 'currentColor'
534
+ color = 'currentColor',
535
+ filled = false,
536
+ strokeWidth = 1
472
537
  } = _ref12,
473
538
  props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
474
539
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -476,15 +541,21 @@
476
541
  color: color
477
542
  }, props), /*#__PURE__*/React__default.createElement("svg", {
478
543
  viewBox: "0 0 24 24",
479
- fill: 'currentColor'
544
+ fill: filled ? color : 'none',
545
+ stroke: filled ? 'none' : color,
546
+ strokeWidth: strokeWidth,
547
+ strokeLinecap: "round",
548
+ strokeLinejoin: "round"
480
549
  }, /*#__PURE__*/React__default.createElement("path", {
481
- d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
550
+ d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
482
551
  })));
483
552
  };
484
- var SpinnerIcon = _ref13 => {
553
+ var EditIcon = _ref13 => {
485
554
  var {
486
555
  size = 24,
487
- color = 'currentColor'
556
+ color = 'currentColor',
557
+ filled = false,
558
+ strokeWidth = 1
488
559
  } = _ref13,
489
560
  props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
490
561
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -492,26 +563,21 @@
492
563
  color: color
493
564
  }, props), /*#__PURE__*/React__default.createElement("svg", {
494
565
  viewBox: "0 0 24 24",
495
- fill: "none",
496
- xmlns: "http://www.w3.org/2000/svg"
497
- }, /*#__PURE__*/React__default.createElement("circle", {
498
- cx: "12",
499
- cy: "12",
500
- r: "10",
501
- stroke: color,
502
- strokeWidth: "2",
503
- opacity: "0.3"
504
- }), /*#__PURE__*/React__default.createElement("path", {
505
- d: "M22 12a10 10 0 1 1-4.93-8.62",
506
- stroke: color,
507
- strokeWidth: "2",
508
- strokeLinecap: "round"
566
+ fill: filled ? color : 'none',
567
+ stroke: filled ? 'none' : color,
568
+ strokeWidth: strokeWidth,
569
+ strokeLinecap: "round",
570
+ strokeLinejoin: "round"
571
+ }, /*#__PURE__*/React__default.createElement("path", {
572
+ 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"
509
573
  })));
510
574
  };
511
- var ProfileIcon = _ref14 => {
575
+ var ErrorIcon = _ref14 => {
512
576
  var {
513
577
  size = 24,
514
- color = 'currentColor'
578
+ color = 'currentColor',
579
+ filled = true,
580
+ strokeWidth = 1
515
581
  } = _ref14,
516
582
  props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
517
583
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -519,16 +585,35 @@
519
585
  color: color
520
586
  }, props), /*#__PURE__*/React__default.createElement("svg", {
521
587
  viewBox: "0 0 24 24",
522
- fill: 'currentColor'
523
- }, /*#__PURE__*/React__default.createElement("path", {
524
- fill: "currentColor",
525
- 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"
588
+ fill: filled ? 'currentColor' : 'none',
589
+ stroke: filled ? 'white' : 'currentColor',
590
+ strokeWidth: strokeWidth,
591
+ strokeLinecap: "round",
592
+ strokeLinejoin: "round"
593
+ }, /*#__PURE__*/React__default.createElement("circle", {
594
+ cx: "12",
595
+ cy: "12",
596
+ r: "10"
597
+ }), /*#__PURE__*/React__default.createElement("line", {
598
+ fill: filled ? 'currentColor' : 'none',
599
+ x1: "15",
600
+ y1: "9",
601
+ x2: "9",
602
+ y2: "15"
603
+ }), /*#__PURE__*/React__default.createElement("line", {
604
+ fill: filled ? 'currentColor' : 'none',
605
+ x1: "9",
606
+ y1: "9",
607
+ x2: "15",
608
+ y2: "15"
526
609
  })));
527
610
  };
528
- var BoldArrowIcon = _ref15 => {
611
+ var DownloadIcon = _ref15 => {
529
612
  var {
530
613
  size = 24,
531
- color = 'currentColor'
614
+ color = 'currentColor',
615
+ filled = true,
616
+ strokeWidth = 1
532
617
  } = _ref15,
533
618
  props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
534
619
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -536,12 +621,16 @@
536
621
  color: color
537
622
  }, props), /*#__PURE__*/React__default.createElement("svg", {
538
623
  viewBox: "0 0 24 24",
539
- fill: 'currentColor'
624
+ fill: filled ? color : 'none',
625
+ stroke: filled ? 'none' : color,
626
+ strokeWidth: strokeWidth,
627
+ strokeLinecap: "round",
628
+ strokeLinejoin: "round"
540
629
  }, /*#__PURE__*/React__default.createElement("path", {
541
- d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
630
+ d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
542
631
  })));
543
632
  };
544
- var ArrowIcon = _ref16 => {
633
+ var MenuIcon = _ref16 => {
545
634
  var {
546
635
  size = 24,
547
636
  color = 'currentColor'
@@ -551,24 +640,30 @@
551
640
  size: size,
552
641
  color: color
553
642
  }, props), /*#__PURE__*/React__default.createElement("svg", {
554
- width: "24",
555
- height: "24",
556
643
  viewBox: "0 0 24 24",
557
- strokeWidth: "1",
558
- stroke: 'currentColor',
559
644
  fill: "none",
645
+ stroke: "currentColor",
646
+ strokeWidth: "1",
560
647
  strokeLinecap: "round",
561
648
  strokeLinejoin: "round"
562
649
  }, /*#__PURE__*/React__default.createElement("line", {
563
- x1: "12",
564
- y1: "20",
565
- x2: "12",
566
- y2: "8"
567
- }), /*#__PURE__*/React__default.createElement("polyline", {
568
- points: "6 12 12 6 18 12"
650
+ x1: "3",
651
+ y1: "12",
652
+ x2: "21",
653
+ y2: "12"
654
+ }), /*#__PURE__*/React__default.createElement("line", {
655
+ x1: "3",
656
+ y1: "6",
657
+ x2: "21",
658
+ y2: "6"
659
+ }), /*#__PURE__*/React__default.createElement("line", {
660
+ x1: "3",
661
+ y1: "18",
662
+ x2: "21",
663
+ y2: "18"
569
664
  })));
570
665
  };
571
- var SearchIcon = _ref17 => {
666
+ var ShareIcon = _ref17 => {
572
667
  var {
573
668
  size = 24,
574
669
  color = 'currentColor'
@@ -579,12 +674,36 @@
579
674
  color: color
580
675
  }, props), /*#__PURE__*/React__default.createElement("svg", {
581
676
  viewBox: "0 0 24 24",
582
- fill: 'currentColor'
583
- }, /*#__PURE__*/React__default.createElement("path", {
584
- 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"
677
+ fill: "none",
678
+ stroke: "currentColor",
679
+ strokeWidth: "1",
680
+ strokeLinecap: "round",
681
+ strokeLinejoin: "round"
682
+ }, /*#__PURE__*/React__default.createElement("circle", {
683
+ cx: "18",
684
+ cy: "5",
685
+ r: "3"
686
+ }), /*#__PURE__*/React__default.createElement("circle", {
687
+ cx: "6",
688
+ cy: "12",
689
+ r: "3"
690
+ }), /*#__PURE__*/React__default.createElement("circle", {
691
+ cx: "18",
692
+ cy: "19",
693
+ r: "3"
694
+ }), /*#__PURE__*/React__default.createElement("line", {
695
+ x1: "8.59",
696
+ y1: "13.51",
697
+ x2: "15.42",
698
+ y2: "17.49"
699
+ }), /*#__PURE__*/React__default.createElement("line", {
700
+ x1: "15.41",
701
+ y1: "6.51",
702
+ x2: "8.59",
703
+ y2: "10.49"
585
704
  })));
586
705
  };
587
- var SuccessIcon = _ref18 => {
706
+ var RefreshIcon = _ref18 => {
588
707
  var {
589
708
  size = 24,
590
709
  color = 'currentColor'
@@ -595,12 +714,18 @@
595
714
  color: color
596
715
  }, props), /*#__PURE__*/React__default.createElement("svg", {
597
716
  viewBox: "0 0 24 24",
598
- fill: 'currentColor'
599
- }, /*#__PURE__*/React__default.createElement("path", {
600
- 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"
717
+ fill: "none",
718
+ stroke: "currentColor",
719
+ strokeWidth: "1",
720
+ strokeLinecap: "round",
721
+ strokeLinejoin: "round"
722
+ }, /*#__PURE__*/React__default.createElement("polyline", {
723
+ points: "23 4 23 10 17 10"
724
+ }), /*#__PURE__*/React__default.createElement("path", {
725
+ d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
601
726
  })));
602
727
  };
603
- var TickIcon = _ref19 => {
728
+ var PrintIcon = _ref19 => {
604
729
  var {
605
730
  size = 24,
606
731
  color = 'currentColor'
@@ -613,14 +738,12 @@
613
738
  viewBox: "0 0 24 24",
614
739
  fill: "none",
615
740
  stroke: 'currentColor',
616
- strokeWidth: "2"
741
+ strokeWidth: "1"
617
742
  }, /*#__PURE__*/React__default.createElement("path", {
618
- d: "M5 13l4 4L19 7",
619
- strokeLinecap: "round",
620
- strokeLinejoin: "round"
743
+ 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"
621
744
  })));
622
745
  };
623
- var NotificationIcon = _ref20 => {
746
+ var PanelIcon = _ref20 => {
624
747
  var {
625
748
  size = 24,
626
749
  color = 'currentColor'
@@ -630,18 +753,66 @@
630
753
  size: size,
631
754
  color: color
632
755
  }, props), /*#__PURE__*/React__default.createElement("svg", {
756
+ xmlns: "http://www.w3.org/2000/svg",
633
757
  viewBox: "0 0 24 24",
634
758
  fill: "none",
635
- stroke: 'currentColor',
636
- strokeWidth: "1"
637
- }, /*#__PURE__*/React__default.createElement("path", {
638
- 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"
759
+ stroke: "currentColor",
760
+ strokeWidth: "1",
761
+ strokeLinecap: "round",
762
+ strokeLinejoin: "round"
763
+ }, /*#__PURE__*/React__default.createElement("line", {
764
+ x1: "4",
765
+ y1: "21",
766
+ x2: "4",
767
+ y2: "14"
768
+ }), /*#__PURE__*/React__default.createElement("line", {
769
+ x1: "4",
770
+ y1: "10",
771
+ x2: "4",
772
+ y2: "3"
773
+ }), /*#__PURE__*/React__default.createElement("line", {
774
+ x1: "12",
775
+ y1: "21",
776
+ x2: "12",
777
+ y2: "12"
778
+ }), /*#__PURE__*/React__default.createElement("line", {
779
+ x1: "12",
780
+ y1: "8",
781
+ x2: "12",
782
+ y2: "3"
783
+ }), /*#__PURE__*/React__default.createElement("line", {
784
+ x1: "20",
785
+ y1: "21",
786
+ x2: "20",
787
+ y2: "16"
788
+ }), /*#__PURE__*/React__default.createElement("line", {
789
+ x1: "20",
790
+ y1: "12",
791
+ x2: "20",
792
+ y2: "3"
793
+ }), /*#__PURE__*/React__default.createElement("line", {
794
+ x1: "1",
795
+ y1: "14",
796
+ x2: "7",
797
+ y2: "14"
798
+ }), /*#__PURE__*/React__default.createElement("line", {
799
+ x1: "9",
800
+ y1: "8",
801
+ x2: "15",
802
+ y2: "8"
803
+ }), /*#__PURE__*/React__default.createElement("line", {
804
+ x1: "17",
805
+ y1: "16",
806
+ x2: "23",
807
+ y2: "16"
639
808
  })));
640
809
  };
641
- var SettingsIcon = _ref21 => {
810
+ var FilterIcon = _ref21 => {
642
811
  var {
643
812
  size = 24,
644
- color = 'currentColor'
813
+ color = 'currentColor',
814
+ filled = false,
815
+ strokeWidth = 1
645
816
  } = _ref21,
646
817
  props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
647
818
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -649,17 +820,21 @@
649
820
  color: color
650
821
  }, props), /*#__PURE__*/React__default.createElement("svg", {
651
822
  viewBox: "0 0 24 24",
652
- fill: "none",
653
- stroke: 'currentColor',
654
- strokeWidth: "1"
823
+ fill: filled ? color : 'none',
824
+ stroke: filled ? 'none' : color,
825
+ strokeWidth: strokeWidth,
826
+ strokeLinecap: "round",
827
+ strokeLinejoin: "round"
655
828
  }, /*#__PURE__*/React__default.createElement("path", {
656
- 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"
829
+ d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
657
830
  })));
658
831
  };
659
- var CalendarIcon = _ref22 => {
832
+ var HomeIcon = _ref22 => {
660
833
  var {
661
834
  size = 24,
662
- color = 'currentColor'
835
+ color = 'currentColor',
836
+ filled = true,
837
+ strokeWidth = 1
663
838
  } = _ref22,
664
839
  props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
665
840
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -667,35 +842,43 @@
667
842
  color: color
668
843
  }, props), /*#__PURE__*/React__default.createElement("svg", {
669
844
  viewBox: "0 0 24 24",
670
- fill: "none",
671
- stroke: 'currentColor',
672
- strokeWidth: "1"
845
+ fill: filled ? color : 'none',
846
+ stroke: filled ? 'none' : color,
847
+ strokeWidth: strokeWidth,
848
+ strokeLinecap: "round",
849
+ strokeLinejoin: "round"
673
850
  }, /*#__PURE__*/React__default.createElement("path", {
674
- 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"
851
+ d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
675
852
  })));
676
853
  };
677
- var AddIcon = _ref23 => {
854
+ var LocationIcon = _ref23 => {
678
855
  var {
679
856
  size = 24,
680
- color = 'currentColor'
857
+ color = 'currentColor',
858
+ filled = true,
859
+ strokeWidth = 1
681
860
  } = _ref23,
682
861
  props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
683
862
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
684
863
  size: size,
685
864
  color: color
686
865
  }, props), /*#__PURE__*/React__default.createElement("svg", {
687
- width: "16",
688
- height: "16",
689
- fill: "currentColor",
690
- viewBox: "0 0 24 24"
866
+ viewBox: "0 0 24 24",
867
+ fill: filled ? color : 'none',
868
+ stroke: filled ? 'none' : color,
869
+ strokeWidth: strokeWidth,
870
+ strokeLinecap: "round",
871
+ strokeLinejoin: "round"
691
872
  }, /*#__PURE__*/React__default.createElement("path", {
692
- d: "M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"
873
+ 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"
693
874
  })));
694
875
  };
695
- var DownloadIcon = _ref24 => {
876
+ var LockIcon = _ref24 => {
696
877
  var {
697
878
  size = 24,
698
- color = 'currentColor'
879
+ color = 'currentColor',
880
+ filled = false,
881
+ strokeWidth = 1
699
882
  } = _ref24,
700
883
  props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
701
884
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -703,17 +886,28 @@
703
886
  color: color
704
887
  }, props), /*#__PURE__*/React__default.createElement("svg", {
705
888
  viewBox: "0 0 24 24",
706
- fill: "none",
707
- stroke: 'currentColor',
708
- strokeWidth: "1"
709
- }, /*#__PURE__*/React__default.createElement("path", {
710
- d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
889
+ fill: filled ? color : 'none',
890
+ stroke: filled ? 'none' : color,
891
+ strokeWidth: strokeWidth,
892
+ strokeLinecap: "round",
893
+ strokeLinejoin: "round"
894
+ }, /*#__PURE__*/React__default.createElement("rect", {
895
+ x: "3",
896
+ y: "11",
897
+ width: "18",
898
+ height: "11",
899
+ rx: "2",
900
+ ry: "2"
901
+ }), /*#__PURE__*/React__default.createElement("path", {
902
+ d: "M7 11V7a5 5 0 0 1 10 0v4"
711
903
  })));
712
904
  };
713
- var UploadIcon = _ref25 => {
905
+ var MicrophoneIcon = _ref25 => {
714
906
  var {
715
907
  size = 24,
716
- color = 'currentColor'
908
+ color = 'currentColor',
909
+ filled = false,
910
+ strokeWidth = 1
717
911
  } = _ref25,
718
912
  props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
719
913
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -721,17 +915,33 @@
721
915
  color: color
722
916
  }, props), /*#__PURE__*/React__default.createElement("svg", {
723
917
  viewBox: "0 0 24 24",
724
- fill: "none",
725
- stroke: 'currentColor',
726
- strokeWidth: "1"
918
+ fill: filled ? color : 'none',
919
+ stroke: filled ? 'none' : color,
920
+ strokeWidth: strokeWidth,
921
+ strokeLinecap: "round",
922
+ strokeLinejoin: "round"
727
923
  }, /*#__PURE__*/React__default.createElement("path", {
728
- d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z"
924
+ d: "M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4z"
925
+ }), /*#__PURE__*/React__default.createElement("path", {
926
+ d: "M19 10v2a7 7 0 0 1-14 0v-2"
927
+ }), /*#__PURE__*/React__default.createElement("line", {
928
+ x1: "12",
929
+ y1: "19",
930
+ x2: "12",
931
+ y2: "23"
932
+ }), /*#__PURE__*/React__default.createElement("line", {
933
+ x1: "8",
934
+ y1: "23",
935
+ x2: "16",
936
+ y2: "23"
729
937
  })));
730
938
  };
731
- var BookmarkIcon = _ref26 => {
939
+ var MoonIcon = _ref26 => {
732
940
  var {
733
941
  size = 24,
734
- color = 'currentColor'
942
+ color = 'currentColor',
943
+ filled = false,
944
+ strokeWidth = 1
735
945
  } = _ref26,
736
946
  props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
737
947
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -739,17 +949,21 @@
739
949
  color: color
740
950
  }, props), /*#__PURE__*/React__default.createElement("svg", {
741
951
  viewBox: "0 0 24 24",
742
- fill: "none",
743
- stroke: 'currentColor',
744
- strokeWidth: "1"
952
+ fill: filled ? color : 'none',
953
+ stroke: filled ? 'none' : color,
954
+ strokeWidth: strokeWidth,
955
+ strokeLinecap: "round",
956
+ strokeLinejoin: "round"
745
957
  }, /*#__PURE__*/React__default.createElement("path", {
746
- d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
958
+ d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
747
959
  })));
748
960
  };
749
- var HomeIcon = _ref27 => {
961
+ var NotificationIcon = _ref27 => {
750
962
  var {
751
963
  size = 24,
752
- color = 'currentColor'
964
+ color = 'currentColor',
965
+ filled = false,
966
+ strokeWidth = 1
753
967
  } = _ref27,
754
968
  props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
755
969
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -757,17 +971,23 @@
757
971
  color: color
758
972
  }, props), /*#__PURE__*/React__default.createElement("svg", {
759
973
  viewBox: "0 0 24 24",
760
- fill: "none",
761
- stroke: 'currentColor',
762
- strokeWidth: "1"
974
+ fill: filled ? color : 'none',
975
+ stroke: filled ? 'none' : color,
976
+ strokeWidth: strokeWidth,
977
+ strokeLinecap: "round",
978
+ strokeLinejoin: "round"
763
979
  }, /*#__PURE__*/React__default.createElement("path", {
764
- d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
980
+ d: "M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9"
981
+ }), /*#__PURE__*/React__default.createElement("path", {
982
+ d: "M13.73 21a2 2 0 0 1-3.46 0"
765
983
  })));
766
984
  };
767
- var MenuIcon = _ref28 => {
985
+ var OpenEyeIcon = _ref28 => {
768
986
  var {
769
987
  size = 24,
770
- color = 'currentColor'
988
+ color = 'currentColor',
989
+ filled = true,
990
+ strokeWidth = 1
771
991
  } = _ref28,
772
992
  props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
773
993
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -775,17 +995,21 @@
775
995
  color: color
776
996
  }, props), /*#__PURE__*/React__default.createElement("svg", {
777
997
  viewBox: "0 0 24 24",
778
- fill: "none",
779
- stroke: 'currentColor',
780
- strokeWidth: "1"
998
+ fill: filled ? color : 'none',
999
+ stroke: filled ? 'none' : color,
1000
+ strokeWidth: strokeWidth,
1001
+ strokeLinecap: "round",
1002
+ strokeLinejoin: "round"
781
1003
  }, /*#__PURE__*/React__default.createElement("path", {
782
- d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
1004
+ 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"
783
1005
  })));
784
1006
  };
785
- var ShareIcon = _ref29 => {
1007
+ var ProfileIcon = _ref29 => {
786
1008
  var {
787
1009
  size = 24,
788
- color = 'currentColor'
1010
+ color = 'currentColor',
1011
+ filled = true,
1012
+ strokeWidth = 1
789
1013
  } = _ref29,
790
1014
  props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
791
1015
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -793,17 +1017,22 @@
793
1017
  color: color
794
1018
  }, props), /*#__PURE__*/React__default.createElement("svg", {
795
1019
  viewBox: "0 0 24 24",
796
- fill: "none",
797
- stroke: 'currentColor',
798
- strokeWidth: "1"
1020
+ fill: filled ? color : 'none',
1021
+ stroke: filled ? 'none' : color,
1022
+ strokeWidth: strokeWidth,
1023
+ strokeLinecap: "round",
1024
+ strokeLinejoin: "round"
799
1025
  }, /*#__PURE__*/React__default.createElement("path", {
800
- 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"
801
- })));
1026
+ fill: filled ? color : 'none',
1027
+ d: "M12 13c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm0-9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z M12 2C9.79 2 8 3.79 8 6s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"
1028
+ }), ' '));
802
1029
  };
803
- var FilterIcon = _ref30 => {
1030
+ var SettingsIcon = _ref30 => {
804
1031
  var {
805
1032
  size = 24,
806
- color = 'currentColor'
1033
+ color = 'currentColor',
1034
+ filled = false,
1035
+ strokeWidth = 1
807
1036
  } = _ref30,
808
1037
  props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
809
1038
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -811,17 +1040,21 @@
811
1040
  color: color
812
1041
  }, props), /*#__PURE__*/React__default.createElement("svg", {
813
1042
  viewBox: "0 0 24 24",
814
- fill: "none",
815
- stroke: 'currentColor',
816
- strokeWidth: "1"
1043
+ fill: filled ? color : 'none',
1044
+ stroke: filled ? 'none' : color,
1045
+ strokeWidth: strokeWidth,
1046
+ strokeLinecap: "round",
1047
+ strokeLinejoin: "round"
817
1048
  }, /*#__PURE__*/React__default.createElement("path", {
818
- d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
1049
+ 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"
819
1050
  })));
820
1051
  };
821
- var RefreshIcon = _ref31 => {
1052
+ var SuccessIcon = _ref31 => {
822
1053
  var {
823
1054
  size = 24,
824
- color = 'currentColor'
1055
+ color = 'currentColor',
1056
+ filled = true,
1057
+ strokeWidth = 1
825
1058
  } = _ref31,
826
1059
  props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
827
1060
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -829,17 +1062,21 @@
829
1062
  color: color
830
1063
  }, props), /*#__PURE__*/React__default.createElement("svg", {
831
1064
  viewBox: "0 0 24 24",
832
- fill: "none",
833
- stroke: 'currentColor',
834
- strokeWidth: "1"
1065
+ fill: filled ? color : 'none',
1066
+ stroke: filled ? 'none' : color,
1067
+ strokeWidth: strokeWidth,
1068
+ strokeLinecap: "round",
1069
+ strokeLinejoin: "round"
835
1070
  }, /*#__PURE__*/React__default.createElement("path", {
836
- 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"
1071
+ 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"
837
1072
  })));
838
1073
  };
839
- var CopyIcon = _ref32 => {
1074
+ var UnLikeIcon = _ref32 => {
840
1075
  var {
841
1076
  size = 24,
842
- color = 'currentColor'
1077
+ color = 'currentColor',
1078
+ filled = true,
1079
+ strokeWidth = 1
843
1080
  } = _ref32,
844
1081
  props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
845
1082
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -847,14 +1084,16 @@
847
1084
  color: color
848
1085
  }, props), /*#__PURE__*/React__default.createElement("svg", {
849
1086
  viewBox: "0 0 24 24",
850
- fill: "none",
851
- stroke: 'currentColor',
852
- strokeWidth: "1"
1087
+ fill: filled ? color : 'none',
1088
+ stroke: filled ? 'none' : color,
1089
+ strokeWidth: strokeWidth,
1090
+ strokeLinecap: "round",
1091
+ strokeLinejoin: "round"
853
1092
  }, /*#__PURE__*/React__default.createElement("path", {
854
- 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"
1093
+ 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"
855
1094
  })));
856
1095
  };
857
- var SaveIcon = _ref33 => {
1096
+ var ClockIcon = _ref33 => {
858
1097
  var {
859
1098
  size = 24,
860
1099
  color = 'currentColor'
@@ -866,13 +1105,19 @@
866
1105
  }, props), /*#__PURE__*/React__default.createElement("svg", {
867
1106
  viewBox: "0 0 24 24",
868
1107
  fill: "none",
869
- stroke: 'currentColor',
870
- strokeWidth: "1"
871
- }, /*#__PURE__*/React__default.createElement("path", {
872
- 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"
1108
+ stroke: "currentColor",
1109
+ strokeWidth: "1",
1110
+ strokeLinecap: "round",
1111
+ strokeLinejoin: "round"
1112
+ }, /*#__PURE__*/React__default.createElement("circle", {
1113
+ cx: "12",
1114
+ cy: "12",
1115
+ r: "10"
1116
+ }), /*#__PURE__*/React__default.createElement("polyline", {
1117
+ points: "12 6 12 12 16 14"
873
1118
  })));
874
1119
  };
875
- var PrintIcon = _ref34 => {
1120
+ var CameraIcon = _ref34 => {
876
1121
  var {
877
1122
  size = 24,
878
1123
  color = 'currentColor'
@@ -884,13 +1129,19 @@
884
1129
  }, props), /*#__PURE__*/React__default.createElement("svg", {
885
1130
  viewBox: "0 0 24 24",
886
1131
  fill: "none",
887
- stroke: 'currentColor',
888
- strokeWidth: "1"
1132
+ stroke: "currentColor",
1133
+ strokeWidth: "1",
1134
+ strokeLinecap: "round",
1135
+ strokeLinejoin: "round"
889
1136
  }, /*#__PURE__*/React__default.createElement("path", {
890
- 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"
1137
+ 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"
1138
+ }), /*#__PURE__*/React__default.createElement("circle", {
1139
+ cx: "12",
1140
+ cy: "13",
1141
+ r: "4"
891
1142
  })));
892
1143
  };
893
- var LockIcon = _ref35 => {
1144
+ var BluetoothIcon = _ref35 => {
894
1145
  var {
895
1146
  size = 24,
896
1147
  color = 'currentColor'
@@ -901,18 +1152,17 @@
901
1152
  color: color
902
1153
  }, props), /*#__PURE__*/React__default.createElement("svg", {
903
1154
  viewBox: "0 0 24 24",
904
- fill: "none",
905
- stroke: 'currentColor',
906
- strokeWidth: "1"
1155
+ fill: 'currentColor'
907
1156
  }, /*#__PURE__*/React__default.createElement("path", {
908
- 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"
1157
+ 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"
909
1158
  })));
910
1159
  };
911
- // Previous icons remain the same...
912
- var UnlockIcon = _ref36 => {
1160
+ var LikeIcon = _ref36 => {
913
1161
  var {
914
1162
  size = 24,
915
- color = 'currentColor'
1163
+ color = 'currentColor',
1164
+ filled = true,
1165
+ strokeWidth = 1
916
1166
  } = _ref36,
917
1167
  props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
918
1168
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -920,17 +1170,21 @@
920
1170
  color: color
921
1171
  }, props), /*#__PURE__*/React__default.createElement("svg", {
922
1172
  viewBox: "0 0 24 24",
923
- fill: "none",
924
- stroke: 'currentColor',
925
- strokeWidth: "1"
1173
+ fill: filled ? color : 'none',
1174
+ stroke: filled ? 'none' : color,
1175
+ strokeWidth: strokeWidth,
1176
+ strokeLinecap: "round",
1177
+ strokeLinejoin: "round"
926
1178
  }, /*#__PURE__*/React__default.createElement("path", {
927
- 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"
1179
+ 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"
928
1180
  })));
929
1181
  };
930
- var StarIcon = _ref37 => {
1182
+ var UnlockIcon = _ref37 => {
931
1183
  var {
932
1184
  size = 24,
933
- color = 'currentColor'
1185
+ color = 'currentColor',
1186
+ filled = false,
1187
+ strokeWidth = 1
934
1188
  } = _ref37,
935
1189
  props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
936
1190
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -938,17 +1192,28 @@
938
1192
  color: color
939
1193
  }, props), /*#__PURE__*/React__default.createElement("svg", {
940
1194
  viewBox: "0 0 24 24",
941
- fill: "none",
942
- stroke: 'currentColor',
943
- strokeWidth: "1"
944
- }, /*#__PURE__*/React__default.createElement("path", {
945
- 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"
1195
+ fill: filled ? color : 'none',
1196
+ stroke: filled ? 'none' : color,
1197
+ strokeWidth: strokeWidth,
1198
+ strokeLinecap: "round",
1199
+ strokeLinejoin: "round"
1200
+ }, /*#__PURE__*/React__default.createElement("rect", {
1201
+ x: "3",
1202
+ y: "11",
1203
+ width: "18",
1204
+ height: "11",
1205
+ rx: "2",
1206
+ ry: "2"
1207
+ }), /*#__PURE__*/React__default.createElement("path", {
1208
+ d: "M7 11V7a5 5 0 0 1 9.9-1"
946
1209
  })));
947
1210
  };
948
- var HeartIcon = _ref38 => {
1211
+ var WifiIcon = _ref38 => {
949
1212
  var {
950
1213
  size = 24,
951
- color = 'currentColor'
1214
+ color = 'currentColor',
1215
+ filled = false,
1216
+ strokeWidth = 1
952
1217
  } = _ref38,
953
1218
  props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
954
1219
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -956,17 +1221,21 @@
956
1221
  color: color
957
1222
  }, props), /*#__PURE__*/React__default.createElement("svg", {
958
1223
  viewBox: "0 0 24 24",
959
- fill: "none",
960
- stroke: 'currentColor',
961
- strokeWidth: "1"
1224
+ fill: filled ? color : 'none',
1225
+ stroke: filled ? 'none' : color,
1226
+ strokeWidth: strokeWidth,
1227
+ strokeLinecap: "round",
1228
+ strokeLinejoin: "round"
962
1229
  }, /*#__PURE__*/React__default.createElement("path", {
963
- 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"
1230
+ 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"
964
1231
  })));
965
1232
  };
966
- var ThumbUpIcon = _ref39 => {
1233
+ var UploadIcon = _ref39 => {
967
1234
  var {
968
1235
  size = 24,
969
- color = 'currentColor'
1236
+ color = 'currentColor',
1237
+ filled = false,
1238
+ strokeWidth = 1
970
1239
  } = _ref39,
971
1240
  props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
972
1241
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -974,14 +1243,20 @@
974
1243
  color: color
975
1244
  }, props), /*#__PURE__*/React__default.createElement("svg", {
976
1245
  viewBox: "0 0 24 24",
977
- fill: "none",
978
- stroke: 'currentColor',
979
- strokeWidth: "1"
1246
+ fill: filled ? color : 'none',
1247
+ stroke: filled ? 'none' : color,
1248
+ strokeWidth: strokeWidth,
1249
+ strokeLinecap: "round",
1250
+ strokeLinejoin: "round"
980
1251
  }, /*#__PURE__*/React__default.createElement("path", {
981
- 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"
1252
+ 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"
1253
+ }), /*#__PURE__*/React__default.createElement("path", {
1254
+ d: "M9 15l3 -3l3 3"
1255
+ }), /*#__PURE__*/React__default.createElement("path", {
1256
+ d: "M12 12l0 9"
982
1257
  })));
983
1258
  };
984
- var ThumbDownIcon = _ref40 => {
1259
+ var SearchIcon = _ref40 => {
985
1260
  var {
986
1261
  size = 24,
987
1262
  color = 'currentColor'
@@ -992,14 +1267,12 @@
992
1267
  color: color
993
1268
  }, props), /*#__PURE__*/React__default.createElement("svg", {
994
1269
  viewBox: "0 0 24 24",
995
- fill: "none",
996
- stroke: 'currentColor',
997
- strokeWidth: "1"
1270
+ fill: 'currentColor'
998
1271
  }, /*#__PURE__*/React__default.createElement("path", {
999
- 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"
1272
+ 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"
1000
1273
  })));
1001
1274
  };
1002
- var LocationIcon = _ref41 => {
1275
+ var CloseEyeIcon = _ref41 => {
1003
1276
  var {
1004
1277
  size = 24,
1005
1278
  color = 'currentColor'
@@ -1010,14 +1283,13 @@
1010
1283
  color: color
1011
1284
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1012
1285
  viewBox: "0 0 24 24",
1013
- fill: "none",
1014
- stroke: 'currentColor',
1015
- strokeWidth: "1"
1286
+ fill: color
1016
1287
  }, /*#__PURE__*/React__default.createElement("path", {
1017
- 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"
1288
+ 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",
1289
+ fill: "currentColor"
1018
1290
  })));
1019
1291
  };
1020
- var ClockIcon = _ref42 => {
1292
+ var ExternalLinkIcon = _ref42 => {
1021
1293
  var {
1022
1294
  size = 24,
1023
1295
  color = 'currentColor'
@@ -1028,20 +1300,19 @@
1028
1300
  color: color
1029
1301
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1030
1302
  viewBox: "0 0 24 24",
1031
- fill: "none",
1032
- stroke: 'currentColor',
1033
- strokeWidth: "1"
1303
+ fill: 'currentColor'
1034
1304
  }, /*#__PURE__*/React__default.createElement("path", {
1035
- 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"
1305
+ 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"
1036
1306
  })));
1037
1307
  };
1038
- var CameraIcon = _ref43 => {
1308
+ var MinusIcon = _ref43 => {
1039
1309
  var {
1040
1310
  size = 24,
1041
1311
  color = 'currentColor'
1042
1312
  } = _ref43,
1043
1313
  props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1044
1314
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1315
+ padding: 2,
1045
1316
  size: size,
1046
1317
  color: color
1047
1318
  }, props), /*#__PURE__*/React__default.createElement("svg", {
@@ -1050,12 +1321,12 @@
1050
1321
  stroke: 'currentColor',
1051
1322
  strokeWidth: "1"
1052
1323
  }, /*#__PURE__*/React__default.createElement("path", {
1053
- 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"
1054
- }), /*#__PURE__*/React__default.createElement("path", {
1055
- 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"
1324
+ d: "M7 12h10",
1325
+ strokeLinecap: "round",
1326
+ strokeLinejoin: "round"
1056
1327
  })));
1057
1328
  };
1058
- var MicrophoneIcon = _ref44 => {
1329
+ var InfoIcon = _ref44 => {
1059
1330
  var {
1060
1331
  size = 24,
1061
1332
  color = 'currentColor'
@@ -1066,16 +1337,12 @@
1066
1337
  color: color
1067
1338
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1068
1339
  viewBox: "0 0 24 24",
1069
- fill: "none",
1070
- stroke: 'currentColor',
1071
- strokeWidth: "1"
1340
+ fill: 'currentColor'
1072
1341
  }, /*#__PURE__*/React__default.createElement("path", {
1073
- 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"
1074
- }), /*#__PURE__*/React__default.createElement("path", {
1075
- 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"
1342
+ 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"
1076
1343
  })));
1077
1344
  };
1078
- var WifiIcon = _ref45 => {
1345
+ var PlusIcon = _ref45 => {
1079
1346
  var {
1080
1347
  size = 24,
1081
1348
  color = 'currentColor'
@@ -1086,14 +1353,12 @@
1086
1353
  color: color
1087
1354
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1088
1355
  viewBox: "0 0 24 24",
1089
- fill: "none",
1090
- stroke: 'currentColor',
1091
- strokeWidth: "1"
1356
+ fill: 'currentColor'
1092
1357
  }, /*#__PURE__*/React__default.createElement("path", {
1093
- 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"
1358
+ d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1094
1359
  })));
1095
1360
  };
1096
- var BluetoothIcon = _ref46 => {
1361
+ var TickIcon = _ref46 => {
1097
1362
  var {
1098
1363
  size = 24,
1099
1364
  color = 'currentColor'
@@ -1104,12 +1369,16 @@
1104
1369
  color: color
1105
1370
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1106
1371
  viewBox: "0 0 24 24",
1107
- fill: 'currentColor'
1372
+ fill: "none",
1373
+ stroke: 'currentColor',
1374
+ strokeWidth: "1"
1108
1375
  }, /*#__PURE__*/React__default.createElement("path", {
1109
- 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"
1376
+ d: "M5 13l4 4L19 7",
1377
+ strokeLinecap: "round",
1378
+ strokeLinejoin: "round"
1110
1379
  })));
1111
1380
  };
1112
- var BatteryIcon = _ref47 => {
1381
+ var BoldArrowIcon = _ref47 => {
1113
1382
  var {
1114
1383
  size = 24,
1115
1384
  color = 'currentColor'
@@ -1120,15 +1389,12 @@
1120
1389
  color: color
1121
1390
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1122
1391
  viewBox: "0 0 24 24",
1123
- fill: "none",
1124
- stroke: 'currentColor',
1125
- strokeWidth: "1"
1392
+ fill: 'currentColor'
1126
1393
  }, /*#__PURE__*/React__default.createElement("path", {
1127
- 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"
1394
+ d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1128
1395
  })));
1129
1396
  };
1130
- // More modern UI icons
1131
- var SunIcon = _ref48 => {
1397
+ var ArrowIcon = _ref48 => {
1132
1398
  var {
1133
1399
  size = 24,
1134
1400
  color = 'currentColor'
@@ -1138,19 +1404,24 @@
1138
1404
  size: size,
1139
1405
  color: color
1140
1406
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1407
+ width: "24",
1408
+ height: "24",
1141
1409
  viewBox: "0 0 24 24",
1142
- fill: "none",
1410
+ strokeWidth: "1",
1143
1411
  stroke: 'currentColor',
1144
- strokeWidth: "1"
1145
- }, /*#__PURE__*/React__default.createElement("circle", {
1146
- cx: "12",
1147
- cy: "12",
1148
- r: "5"
1149
- }), /*#__PURE__*/React__default.createElement("path", {
1150
- 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"
1412
+ fill: "none",
1413
+ strokeLinecap: "round",
1414
+ strokeLinejoin: "round"
1415
+ }, /*#__PURE__*/React__default.createElement("line", {
1416
+ x1: "12",
1417
+ y1: "20",
1418
+ x2: "12",
1419
+ y2: "8"
1420
+ }), /*#__PURE__*/React__default.createElement("polyline", {
1421
+ points: "6 12 12 6 18 12"
1151
1422
  })));
1152
1423
  };
1153
- var MoonIcon = _ref49 => {
1424
+ var SpinnerIcon = _ref49 => {
1154
1425
  var {
1155
1426
  size = 24,
1156
1427
  color = 'currentColor'
@@ -1160,130 +1431,117 @@
1160
1431
  size: size,
1161
1432
  color: color
1162
1433
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1434
+ xmlns: "http://www.w3.org/2000/svg",
1435
+ width: "24",
1436
+ height: "24",
1163
1437
  viewBox: "0 0 24 24",
1164
1438
  fill: "none",
1165
- stroke: 'currentColor',
1166
- strokeWidth: "1"
1167
- }, /*#__PURE__*/React__default.createElement("path", {
1168
- d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1169
- })));
1170
- };
1171
- var ErrorIcon = _ref50 => {
1172
- var {
1173
- size = 24,
1174
- color = 'white'
1175
- } = _ref50,
1176
- props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1177
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1178
- size: size,
1179
- color: color
1180
- }, props), /*#__PURE__*/React__default.createElement("svg", {
1181
- viewBox: "0 0 510 510"
1182
- }, /*#__PURE__*/React__default.createElement("path", {
1183
- 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"
1184
- }), /*#__PURE__*/React__default.createElement("path", {
1185
- 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"
1439
+ stroke: "currentColor",
1440
+ strokeWidth: "2",
1441
+ strokeLinecap: "round",
1442
+ strokeLinejoin: "round"
1443
+ }, /*#__PURE__*/React__default.createElement("circle", {
1444
+ cx: "12",
1445
+ cy: "12",
1446
+ r: "10",
1447
+ strokeOpacity: "0.25"
1186
1448
  }), /*#__PURE__*/React__default.createElement("path", {
1187
- 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"
1449
+ d: "M12 2a10 10 0 0 1 10 10",
1450
+ strokeOpacity: "1"
1188
1451
  })));
1189
1452
  };
1190
- var WarningIcon = _ref51 => {
1191
- var {
1192
- size = 24,
1193
- color = 'white'
1194
- } = _ref51,
1195
- props = _objectWithoutPropertiesLoose(_ref51, _excluded50);
1196
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1197
- size: size,
1198
- color: color
1199
- }, props), /*#__PURE__*/React__default.createElement("svg", {
1200
- version: "1.1",
1201
- id: "Capa_1",
1202
- xmlns: "http://www.w3.org/2000/svg",
1203
- viewBox: "0 0 192.146 192.146",
1204
- fill: 'currentColor'
1205
- }, /*#__PURE__*/React__default.createElement("g", {
1206
- id: "SVGRepo_bgCarrier"
1207
- }), /*#__PURE__*/React__default.createElement("g", {
1208
- id: "SVGRepo_tracerCarrier"
1209
- }), /*#__PURE__*/React__default.createElement("g", {
1210
- id: "SVGRepo_iconCarrier"
1211
- }, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
1212
- 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"
1213
- })))))));
1214
- };
1215
- var CloudIcon = _ref52 => {
1453
+ var CalendarIcon = _ref50 => {
1216
1454
  var {
1217
1455
  size = 24,
1218
1456
  color = 'currentColor'
1219
- } = _ref52,
1220
- props = _objectWithoutPropertiesLoose(_ref52, _excluded51);
1457
+ } = _ref50,
1458
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1221
1459
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1222
1460
  size: size,
1223
1461
  color: color
1224
1462
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1225
1463
  viewBox: "0 0 24 24",
1226
1464
  fill: "none",
1227
- stroke: 'currentColor',
1228
- strokeWidth: "1"
1229
- }, /*#__PURE__*/React__default.createElement("path", {
1230
- d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
1465
+ stroke: "currentColor",
1466
+ strokeWidth: "1",
1467
+ strokeLinecap: "round",
1468
+ strokeLinejoin: "round"
1469
+ }, /*#__PURE__*/React__default.createElement("rect", {
1470
+ x: "3",
1471
+ y: "4",
1472
+ width: "18",
1473
+ height: "18",
1474
+ rx: "2",
1475
+ ry: "2"
1476
+ }), /*#__PURE__*/React__default.createElement("line", {
1477
+ x1: "16",
1478
+ y1: "2",
1479
+ x2: "16",
1480
+ y2: "6"
1481
+ }), /*#__PURE__*/React__default.createElement("line", {
1482
+ x1: "8",
1483
+ y1: "2",
1484
+ x2: "8",
1485
+ y2: "6"
1486
+ }), /*#__PURE__*/React__default.createElement("line", {
1487
+ x1: "3",
1488
+ y1: "10",
1489
+ x2: "21",
1490
+ y2: "10"
1231
1491
  })));
1232
1492
  };
1233
1493
 
1234
1494
  var Icon = {
1235
1495
  __proto__: null,
1236
1496
  ChevronIcon: ChevronIcon,
1237
- CheckIcon: CheckIcon,
1238
1497
  CloseIcon: CloseIcon,
1239
- CloseEyeIcon: CloseEyeIcon,
1498
+ HeartIcon: HeartIcon,
1499
+ StarIcon: StarIcon,
1500
+ SaveIcon: SaveIcon,
1501
+ WarningIcon: WarningIcon,
1502
+ BatteryIcon: BatteryIcon,
1503
+ BookmarkIcon: BookmarkIcon,
1504
+ CloudIcon: CloudIcon,
1505
+ CopyIcon: CopyIcon,
1240
1506
  DustBinIcon: DustBinIcon,
1241
1507
  EditIcon: EditIcon,
1242
- ExternalLinkIcon: ExternalLinkIcon,
1243
- MinusIcon: MinusIcon,
1244
- InfoIcon: InfoIcon,
1245
- OpenEyeIcon: OpenEyeIcon,
1246
- PlusIcon: PlusIcon,
1247
- SpinnerIcon: SpinnerIcon,
1248
- ProfileIcon: ProfileIcon,
1249
- BoldArrowIcon: BoldArrowIcon,
1250
- ArrowIcon: ArrowIcon,
1251
- SearchIcon: SearchIcon,
1252
- SuccessIcon: SuccessIcon,
1253
- TickIcon: TickIcon,
1254
- NotificationIcon: NotificationIcon,
1255
- SettingsIcon: SettingsIcon,
1256
- CalendarIcon: CalendarIcon,
1257
- AddIcon: AddIcon,
1508
+ ErrorIcon: ErrorIcon,
1258
1509
  DownloadIcon: DownloadIcon,
1259
- UploadIcon: UploadIcon,
1260
- BookmarkIcon: BookmarkIcon,
1261
- HomeIcon: HomeIcon,
1262
1510
  MenuIcon: MenuIcon,
1263
1511
  ShareIcon: ShareIcon,
1264
- FilterIcon: FilterIcon,
1265
1512
  RefreshIcon: RefreshIcon,
1266
- CopyIcon: CopyIcon,
1267
- SaveIcon: SaveIcon,
1268
1513
  PrintIcon: PrintIcon,
1269
- LockIcon: LockIcon,
1270
- UnlockIcon: UnlockIcon,
1271
- StarIcon: StarIcon,
1272
- HeartIcon: HeartIcon,
1273
- ThumbUpIcon: ThumbUpIcon,
1274
- ThumbDownIcon: ThumbDownIcon,
1514
+ PanelIcon: PanelIcon,
1515
+ FilterIcon: FilterIcon,
1516
+ HomeIcon: HomeIcon,
1275
1517
  LocationIcon: LocationIcon,
1518
+ LockIcon: LockIcon,
1519
+ MicrophoneIcon: MicrophoneIcon,
1520
+ MoonIcon: MoonIcon,
1521
+ NotificationIcon: NotificationIcon,
1522
+ OpenEyeIcon: OpenEyeIcon,
1523
+ ProfileIcon: ProfileIcon,
1524
+ SettingsIcon: SettingsIcon,
1525
+ SuccessIcon: SuccessIcon,
1526
+ UnLikeIcon: UnLikeIcon,
1276
1527
  ClockIcon: ClockIcon,
1277
1528
  CameraIcon: CameraIcon,
1278
- MicrophoneIcon: MicrophoneIcon,
1279
- WifiIcon: WifiIcon,
1280
1529
  BluetoothIcon: BluetoothIcon,
1281
- BatteryIcon: BatteryIcon,
1282
- SunIcon: SunIcon,
1283
- MoonIcon: MoonIcon,
1284
- ErrorIcon: ErrorIcon,
1285
- WarningIcon: WarningIcon,
1286
- CloudIcon: CloudIcon
1530
+ LikeIcon: LikeIcon,
1531
+ UnlockIcon: UnlockIcon,
1532
+ WifiIcon: WifiIcon,
1533
+ UploadIcon: UploadIcon,
1534
+ SearchIcon: SearchIcon,
1535
+ CloseEyeIcon: CloseEyeIcon,
1536
+ ExternalLinkIcon: ExternalLinkIcon,
1537
+ MinusIcon: MinusIcon,
1538
+ InfoIcon: InfoIcon,
1539
+ PlusIcon: PlusIcon,
1540
+ TickIcon: TickIcon,
1541
+ BoldArrowIcon: BoldArrowIcon,
1542
+ ArrowIcon: ArrowIcon,
1543
+ SpinnerIcon: SpinnerIcon,
1544
+ CalendarIcon: CalendarIcon
1287
1545
  };
1288
1546
 
1289
1547
  // Define a constant object 'Themes' exporting various theme styles.
@@ -1911,7 +2169,7 @@
1911
2169
  viewBox: "0 0 24 24",
1912
2170
  fill: "none",
1913
2171
  stroke: colorStyle,
1914
- strokeWidth: "2",
2172
+ strokeWidth: "1",
1915
2173
  strokeLinecap: "round",
1916
2174
  strokeLinejoin: "round",
1917
2175
  style: {
@@ -6938,7 +7196,6 @@
6938
7196
  // Expose the ToggleGroupComponent for import into other modules
6939
7197
  var ToggleGroup = ToggleGroupComponent;
6940
7198
 
6941
- exports.AddIcon = AddIcon;
6942
7199
  exports.Alert = Alert;
6943
7200
  exports.ArrowIcon = ArrowIcon;
6944
7201
  exports.AspectRatio = AspectRatio;
@@ -6953,7 +7210,6 @@
6953
7210
  exports.CalendarIcon = CalendarIcon;
6954
7211
  exports.CameraIcon = CameraIcon;
6955
7212
  exports.Center = Center;
6956
- exports.CheckIcon = CheckIcon;
6957
7213
  exports.Checkbox = Checkbox;
6958
7214
  exports.ChevronIcon = ChevronIcon;
6959
7215
  exports.ClockIcon = ClockIcon;
@@ -6989,6 +7245,7 @@
6989
7245
  exports.InfoIcon = InfoIcon;
6990
7246
  exports.Inline = Inline;
6991
7247
  exports.Left = Left;
7248
+ exports.LikeIcon = LikeIcon;
6992
7249
  exports.Link = Link;
6993
7250
  exports.Loader = Loader;
6994
7251
  exports.LocationIcon = LocationIcon;
@@ -7002,6 +7259,7 @@
7002
7259
  exports.MoonIcon = MoonIcon;
7003
7260
  exports.NotificationIcon = NotificationIcon;
7004
7261
  exports.OpenEyeIcon = OpenEyeIcon;
7262
+ exports.PanelIcon = PanelIcon;
7005
7263
  exports.Password = Password;
7006
7264
  exports.PlusIcon = PlusIcon;
7007
7265
  exports.PrintIcon = PrintIcon;
@@ -7016,19 +7274,17 @@
7016
7274
  exports.SpinnerIcon = SpinnerIcon;
7017
7275
  exports.StarIcon = StarIcon;
7018
7276
  exports.SuccessIcon = SuccessIcon;
7019
- exports.SunIcon = SunIcon;
7020
7277
  exports.Switch = Switch;
7021
7278
  exports.Table = Table;
7022
7279
  exports.Tabs = Tabs;
7023
7280
  exports.Text = Text;
7024
7281
  exports.TextArea = TextArea;
7025
7282
  exports.TextField = TextField;
7026
- exports.ThumbDownIcon = ThumbDownIcon;
7027
- exports.ThumbUpIcon = ThumbUpIcon;
7028
7283
  exports.TickIcon = TickIcon;
7029
7284
  exports.Toggle = Toggle;
7030
7285
  exports.ToggleGroup = ToggleGroup;
7031
7286
  exports.Top = Top;
7287
+ exports.UnLikeIcon = UnLikeIcon;
7032
7288
  exports.UnlockIcon = UnlockIcon;
7033
7289
  exports.UploadIcon = UploadIcon;
7034
7290
  exports.Vertical = Vertical;