@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.
@@ -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,8 +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"];
259
+ _excluded49 = ["size", "color"];
261
260
  // Default wrapper component for consistent sizing
262
261
  var IconWrapper = _ref => {
263
262
  var {
@@ -278,7 +277,9 @@
278
277
  var ChevronIcon = _ref2 => {
279
278
  var {
280
279
  size = 24,
281
- color = 'currentColor'
280
+ color = 'currentColor',
281
+ filled = false,
282
+ strokeWidth = 1
282
283
  } = _ref2,
283
284
  props = _objectWithoutPropertiesLoose(_ref2, _excluded$4);
284
285
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -287,70 +288,99 @@
287
288
  }, props), /*#__PURE__*/React__default.createElement("svg", {
288
289
  width: "16",
289
290
  height: "16",
290
- fill: "currentColor",
291
- 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"
292
297
  }, /*#__PURE__*/React__default.createElement("path", {
293
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"
294
299
  })));
295
300
  };
296
- var CheckIcon = _ref3 => {
301
+ var CloseIcon = _ref3 => {
297
302
  var {
298
303
  size = 24,
299
- color = 'currentColor'
304
+ color = 'currentColor',
305
+ filled = false,
306
+ strokeWidth = 1
300
307
  } = _ref3,
301
308
  props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
302
309
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
303
310
  size: size,
304
311
  color: color
305
312
  }, props), /*#__PURE__*/React__default.createElement("svg", {
313
+ xmlns: "http://www.w3.org/2000/svg",
306
314
  viewBox: "0 0 24 24",
307
- fill: "none",
308
- stroke: 'currentColor',
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({
323
341
  size: size,
324
342
  color: color
325
343
  }, props), /*#__PURE__*/React__default.createElement("svg", {
344
+ xmlns: "http://www.w3.org/2000/svg",
326
345
  viewBox: "0 0 24 24",
327
- fill: 'currentColor'
346
+ fill: filled ? color : 'none',
347
+ stroke: filled ? 'none' : color,
348
+ strokeWidth: strokeWidth,
349
+ strokeLinecap: "round",
350
+ strokeLinejoin: "round"
328
351
  }, /*#__PURE__*/React__default.createElement("path", {
329
- 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"
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"
330
353
  })));
331
354
  };
332
- var CloseEyeIcon = _ref5 => {
355
+ var StarIcon = _ref5 => {
333
356
  var {
334
357
  size = 24,
335
- color = 'currentColor'
358
+ color = 'currentColor',
359
+ filled = true,
360
+ strokeWidth = 1
336
361
  } = _ref5,
337
362
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
338
363
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
339
364
  size: size,
340
365
  color: color
341
366
  }, props), /*#__PURE__*/React__default.createElement("svg", {
367
+ xmlns: "http://www.w3.org/2000/svg",
342
368
  viewBox: "0 0 24 24",
343
- fill: color,
344
- xmlns: "http://www.w3.org/2000/svg"
345
- }, /*#__PURE__*/React__default.createElement("path", {
346
- 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",
347
- 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"
348
376
  })));
349
377
  };
350
- var DustBinIcon = _ref6 => {
378
+ var SaveIcon = _ref6 => {
351
379
  var {
352
380
  size = 24,
353
- color = 'currentColor'
381
+ color = 'currentColor',
382
+ filled = false,
383
+ strokeWidth = 1
354
384
  } = _ref6,
355
385
  props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
356
386
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -358,15 +388,25 @@
358
388
  color: color
359
389
  }, props), /*#__PURE__*/React__default.createElement("svg", {
360
390
  viewBox: "0 0 24 24",
361
- fill: 'currentColor'
391
+ fill: filled ? color : 'none',
392
+ stroke: filled ? 'none' : color,
393
+ strokeWidth: strokeWidth,
394
+ strokeLinecap: "round",
395
+ strokeLinejoin: "round"
362
396
  }, /*#__PURE__*/React__default.createElement("path", {
363
- 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"
364
402
  })));
365
403
  };
366
- var EditIcon = _ref7 => {
404
+ var WarningIcon = _ref7 => {
367
405
  var {
368
406
  size = 24,
369
- color = 'currentColor'
407
+ color = 'currentColor',
408
+ filled = false,
409
+ strokeWidth = 1
370
410
  } = _ref7,
371
411
  props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
372
412
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -374,17 +414,31 @@
374
414
  color: color
375
415
  }, props), /*#__PURE__*/React__default.createElement("svg", {
376
416
  viewBox: "0 0 24 24",
377
- fill: "none",
378
- stroke: 'currentColor',
379
- strokeWidth: "1"
417
+ fill: filled ? color : 'none',
418
+ stroke: filled ? 'none' : color,
419
+ strokeWidth: strokeWidth,
420
+ strokeLinecap: "round",
421
+ strokeLinejoin: "round"
380
422
  }, /*#__PURE__*/React__default.createElement("path", {
381
- 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"
382
434
  })));
383
435
  };
384
- var ExternalLinkIcon = _ref8 => {
436
+ var BatteryIcon = _ref8 => {
385
437
  var {
386
438
  size = 24,
387
- color = 'currentColor'
439
+ color = 'currentColor',
440
+ filled = true,
441
+ strokeWidth = 1
388
442
  } = _ref8,
389
443
  props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
390
444
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -392,36 +446,43 @@
392
446
  color: color
393
447
  }, props), /*#__PURE__*/React__default.createElement("svg", {
394
448
  viewBox: "0 0 24 24",
395
- fill: 'currentColor'
449
+ fill: filled ? color : 'none',
450
+ stroke: filled ? 'none' : color,
451
+ strokeWidth: strokeWidth,
452
+ strokeLinecap: "round",
453
+ strokeLinejoin: "round"
396
454
  }, /*#__PURE__*/React__default.createElement("path", {
397
- 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"
398
456
  })));
399
457
  };
400
- var MinusIcon = _ref9 => {
458
+ var BookmarkIcon = _ref9 => {
401
459
  var {
402
460
  size = 24,
403
- color = 'currentColor'
461
+ color = 'currentColor',
462
+ filled = false,
463
+ strokeWidth = 1
404
464
  } = _ref9,
405
465
  props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
406
466
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
407
- padding: 2,
408
467
  size: size,
409
468
  color: color
410
469
  }, props), /*#__PURE__*/React__default.createElement("svg", {
411
470
  viewBox: "0 0 24 24",
412
- fill: "none",
413
- stroke: 'currentColor',
414
- strokeWidth: "2"
415
- }, /*#__PURE__*/React__default.createElement("path", {
416
- d: "M7 12h10",
471
+ fill: filled ? color : 'none',
472
+ stroke: filled ? 'none' : color,
473
+ strokeWidth: strokeWidth,
417
474
  strokeLinecap: "round",
418
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"
419
478
  })));
420
479
  };
421
- var InfoIcon = _ref10 => {
480
+ var CloudIcon = _ref10 => {
422
481
  var {
423
482
  size = 24,
424
- color = 'currentColor'
483
+ color = 'currentColor',
484
+ filled = false,
485
+ strokeWidth = 1
425
486
  } = _ref10,
426
487
  props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
427
488
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -429,15 +490,21 @@
429
490
  color: color
430
491
  }, props), /*#__PURE__*/React__default.createElement("svg", {
431
492
  viewBox: "0 0 24 24",
432
- fill: 'currentColor'
493
+ fill: filled ? color : 'none',
494
+ stroke: filled ? 'none' : color,
495
+ strokeWidth: strokeWidth,
496
+ strokeLinecap: "round",
497
+ strokeLinejoin: "round"
433
498
  }, /*#__PURE__*/React__default.createElement("path", {
434
- 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"
435
500
  })));
436
501
  };
437
- var OpenEyeIcon = _ref11 => {
502
+ var CopyIcon = _ref11 => {
438
503
  var {
439
504
  size = 24,
440
- color = 'currentColor'
505
+ color = 'currentColor',
506
+ filled = false,
507
+ strokeWidth = 1
441
508
  } = _ref11,
442
509
  props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
443
510
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -445,15 +512,28 @@
445
512
  color: color
446
513
  }, props), /*#__PURE__*/React__default.createElement("svg", {
447
514
  viewBox: "0 0 24 24",
448
- fill: 'currentColor'
449
- }, /*#__PURE__*/React__default.createElement("path", {
450
- 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"
451
529
  })));
452
530
  };
453
- var PlusIcon = _ref12 => {
531
+ var DustBinIcon = _ref12 => {
454
532
  var {
455
533
  size = 24,
456
- color = 'currentColor'
534
+ color = 'currentColor',
535
+ filled = false,
536
+ strokeWidth = 1
457
537
  } = _ref12,
458
538
  props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
459
539
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -461,15 +541,21 @@
461
541
  color: color
462
542
  }, props), /*#__PURE__*/React__default.createElement("svg", {
463
543
  viewBox: "0 0 24 24",
464
- fill: 'currentColor'
544
+ fill: filled ? color : 'none',
545
+ stroke: filled ? 'none' : color,
546
+ strokeWidth: strokeWidth,
547
+ strokeLinecap: "round",
548
+ strokeLinejoin: "round"
465
549
  }, /*#__PURE__*/React__default.createElement("path", {
466
- 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"
467
551
  })));
468
552
  };
469
- var SpinnerIcon = _ref13 => {
553
+ var EditIcon = _ref13 => {
470
554
  var {
471
555
  size = 24,
472
- color = 'currentColor'
556
+ color = 'currentColor',
557
+ filled = false,
558
+ strokeWidth = 1
473
559
  } = _ref13,
474
560
  props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
475
561
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -477,26 +563,21 @@
477
563
  color: color
478
564
  }, props), /*#__PURE__*/React__default.createElement("svg", {
479
565
  viewBox: "0 0 24 24",
480
- fill: "none",
481
- xmlns: "http://www.w3.org/2000/svg"
482
- }, /*#__PURE__*/React__default.createElement("circle", {
483
- cx: "12",
484
- cy: "12",
485
- r: "10",
486
- stroke: color,
487
- strokeWidth: "2",
488
- opacity: "0.3"
489
- }), /*#__PURE__*/React__default.createElement("path", {
490
- d: "M22 12a10 10 0 1 1-4.93-8.62",
491
- stroke: color,
492
- strokeWidth: "2",
493
- 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"
494
573
  })));
495
574
  };
496
- var ProfileIcon = _ref14 => {
575
+ var ErrorIcon = _ref14 => {
497
576
  var {
498
577
  size = 24,
499
- color = 'currentColor'
578
+ color = 'currentColor',
579
+ filled = true,
580
+ strokeWidth = 1
500
581
  } = _ref14,
501
582
  props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
502
583
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -504,16 +585,35 @@
504
585
  color: color
505
586
  }, props), /*#__PURE__*/React__default.createElement("svg", {
506
587
  viewBox: "0 0 24 24",
507
- fill: 'currentColor'
508
- }, /*#__PURE__*/React__default.createElement("path", {
509
- fill: "currentColor",
510
- 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"
511
609
  })));
512
610
  };
513
- var ArrowIcon = _ref15 => {
611
+ var DownloadIcon = _ref15 => {
514
612
  var {
515
613
  size = 24,
516
- color = 'currentColor'
614
+ color = 'currentColor',
615
+ filled = true,
616
+ strokeWidth = 1
517
617
  } = _ref15,
518
618
  props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
519
619
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -521,12 +621,16 @@
521
621
  color: color
522
622
  }, props), /*#__PURE__*/React__default.createElement("svg", {
523
623
  viewBox: "0 0 24 24",
524
- fill: 'currentColor'
624
+ fill: filled ? color : 'none',
625
+ stroke: filled ? 'none' : color,
626
+ strokeWidth: strokeWidth,
627
+ strokeLinecap: "round",
628
+ strokeLinejoin: "round"
525
629
  }, /*#__PURE__*/React__default.createElement("path", {
526
- d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
630
+ d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
527
631
  })));
528
632
  };
529
- var SearchIcon = _ref16 => {
633
+ var MenuIcon = _ref16 => {
530
634
  var {
531
635
  size = 24,
532
636
  color = 'currentColor'
@@ -537,12 +641,29 @@
537
641
  color: color
538
642
  }, props), /*#__PURE__*/React__default.createElement("svg", {
539
643
  viewBox: "0 0 24 24",
540
- fill: 'currentColor'
541
- }, /*#__PURE__*/React__default.createElement("path", {
542
- 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"
644
+ fill: "none",
645
+ stroke: "currentColor",
646
+ strokeWidth: "1",
647
+ strokeLinecap: "round",
648
+ strokeLinejoin: "round"
649
+ }, /*#__PURE__*/React__default.createElement("line", {
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"
543
664
  })));
544
665
  };
545
- var SuccessIcon = _ref17 => {
666
+ var ShareIcon = _ref17 => {
546
667
  var {
547
668
  size = 24,
548
669
  color = 'currentColor'
@@ -553,12 +674,36 @@
553
674
  color: color
554
675
  }, props), /*#__PURE__*/React__default.createElement("svg", {
555
676
  viewBox: "0 0 24 24",
556
- fill: 'currentColor'
557
- }, /*#__PURE__*/React__default.createElement("path", {
558
- 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"
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"
559
704
  })));
560
705
  };
561
- var TickIcon = _ref18 => {
706
+ var RefreshIcon = _ref18 => {
562
707
  var {
563
708
  size = 24,
564
709
  color = 'currentColor'
@@ -570,15 +715,17 @@
570
715
  }, props), /*#__PURE__*/React__default.createElement("svg", {
571
716
  viewBox: "0 0 24 24",
572
717
  fill: "none",
573
- stroke: 'currentColor',
574
- strokeWidth: "2"
575
- }, /*#__PURE__*/React__default.createElement("path", {
576
- d: "M5 13l4 4L19 7",
718
+ stroke: "currentColor",
719
+ strokeWidth: "1",
577
720
  strokeLinecap: "round",
578
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"
579
726
  })));
580
727
  };
581
- var NotificationIcon = _ref19 => {
728
+ var PrintIcon = _ref19 => {
582
729
  var {
583
730
  size = 24,
584
731
  color = 'currentColor'
@@ -593,10 +740,10 @@
593
740
  stroke: 'currentColor',
594
741
  strokeWidth: "1"
595
742
  }, /*#__PURE__*/React__default.createElement("path", {
596
- 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"
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"
597
744
  })));
598
745
  };
599
- var SettingsIcon = _ref20 => {
746
+ var PanelIcon = _ref20 => {
600
747
  var {
601
748
  size = 24,
602
749
  color = 'currentColor'
@@ -606,18 +753,66 @@
606
753
  size: size,
607
754
  color: color
608
755
  }, props), /*#__PURE__*/React__default.createElement("svg", {
756
+ xmlns: "http://www.w3.org/2000/svg",
609
757
  viewBox: "0 0 24 24",
610
758
  fill: "none",
611
- stroke: 'currentColor',
612
- strokeWidth: "1"
613
- }, /*#__PURE__*/React__default.createElement("path", {
614
- 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"
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"
615
808
  })));
616
809
  };
617
- var CalendarIcon = _ref21 => {
810
+ var FilterIcon = _ref21 => {
618
811
  var {
619
812
  size = 24,
620
- color = 'currentColor'
813
+ color = 'currentColor',
814
+ filled = false,
815
+ strokeWidth = 1
621
816
  } = _ref21,
622
817
  props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
623
818
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -625,35 +820,43 @@
625
820
  color: color
626
821
  }, props), /*#__PURE__*/React__default.createElement("svg", {
627
822
  viewBox: "0 0 24 24",
628
- fill: "none",
629
- stroke: 'currentColor',
630
- strokeWidth: "1"
823
+ fill: filled ? color : 'none',
824
+ stroke: filled ? 'none' : color,
825
+ strokeWidth: strokeWidth,
826
+ strokeLinecap: "round",
827
+ strokeLinejoin: "round"
631
828
  }, /*#__PURE__*/React__default.createElement("path", {
632
- 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"
829
+ d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
633
830
  })));
634
831
  };
635
- var AddIcon = _ref22 => {
832
+ var HomeIcon = _ref22 => {
636
833
  var {
637
834
  size = 24,
638
- color = 'currentColor'
835
+ color = 'currentColor',
836
+ filled = true,
837
+ strokeWidth = 1
639
838
  } = _ref22,
640
839
  props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
641
840
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
642
841
  size: size,
643
842
  color: color
644
843
  }, props), /*#__PURE__*/React__default.createElement("svg", {
645
- width: "16",
646
- height: "16",
647
- fill: "currentColor",
648
- viewBox: "0 0 24 24"
844
+ viewBox: "0 0 24 24",
845
+ fill: filled ? color : 'none',
846
+ stroke: filled ? 'none' : color,
847
+ strokeWidth: strokeWidth,
848
+ strokeLinecap: "round",
849
+ strokeLinejoin: "round"
649
850
  }, /*#__PURE__*/React__default.createElement("path", {
650
- d: "M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"
851
+ d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
651
852
  })));
652
853
  };
653
- var DownloadIcon = _ref23 => {
854
+ var LocationIcon = _ref23 => {
654
855
  var {
655
856
  size = 24,
656
- color = 'currentColor'
857
+ color = 'currentColor',
858
+ filled = true,
859
+ strokeWidth = 1
657
860
  } = _ref23,
658
861
  props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
659
862
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -661,17 +864,21 @@
661
864
  color: color
662
865
  }, props), /*#__PURE__*/React__default.createElement("svg", {
663
866
  viewBox: "0 0 24 24",
664
- fill: "none",
665
- stroke: 'currentColor',
666
- strokeWidth: "1"
867
+ fill: filled ? color : 'none',
868
+ stroke: filled ? 'none' : color,
869
+ strokeWidth: strokeWidth,
870
+ strokeLinecap: "round",
871
+ strokeLinejoin: "round"
667
872
  }, /*#__PURE__*/React__default.createElement("path", {
668
- d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
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"
669
874
  })));
670
875
  };
671
- var UploadIcon = _ref24 => {
876
+ var LockIcon = _ref24 => {
672
877
  var {
673
878
  size = 24,
674
- color = 'currentColor'
879
+ color = 'currentColor',
880
+ filled = false,
881
+ strokeWidth = 1
675
882
  } = _ref24,
676
883
  props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
677
884
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -679,17 +886,28 @@
679
886
  color: color
680
887
  }, props), /*#__PURE__*/React__default.createElement("svg", {
681
888
  viewBox: "0 0 24 24",
682
- fill: "none",
683
- stroke: 'currentColor',
684
- strokeWidth: "1"
685
- }, /*#__PURE__*/React__default.createElement("path", {
686
- d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z"
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"
687
903
  })));
688
904
  };
689
- var BookmarkIcon = _ref25 => {
905
+ var MicrophoneIcon = _ref25 => {
690
906
  var {
691
907
  size = 24,
692
- color = 'currentColor'
908
+ color = 'currentColor',
909
+ filled = false,
910
+ strokeWidth = 1
693
911
  } = _ref25,
694
912
  props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
695
913
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -697,17 +915,33 @@
697
915
  color: color
698
916
  }, props), /*#__PURE__*/React__default.createElement("svg", {
699
917
  viewBox: "0 0 24 24",
700
- fill: "none",
701
- stroke: 'currentColor',
702
- strokeWidth: "1"
918
+ fill: filled ? color : 'none',
919
+ stroke: filled ? 'none' : color,
920
+ strokeWidth: strokeWidth,
921
+ strokeLinecap: "round",
922
+ strokeLinejoin: "round"
703
923
  }, /*#__PURE__*/React__default.createElement("path", {
704
- d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-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"
705
937
  })));
706
938
  };
707
- var HomeIcon = _ref26 => {
939
+ var MoonIcon = _ref26 => {
708
940
  var {
709
941
  size = 24,
710
- color = 'currentColor'
942
+ color = 'currentColor',
943
+ filled = false,
944
+ strokeWidth = 1
711
945
  } = _ref26,
712
946
  props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
713
947
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -715,17 +949,21 @@
715
949
  color: color
716
950
  }, props), /*#__PURE__*/React__default.createElement("svg", {
717
951
  viewBox: "0 0 24 24",
718
- fill: "none",
719
- stroke: 'currentColor',
720
- strokeWidth: "1"
952
+ fill: filled ? color : 'none',
953
+ stroke: filled ? 'none' : color,
954
+ strokeWidth: strokeWidth,
955
+ strokeLinecap: "round",
956
+ strokeLinejoin: "round"
721
957
  }, /*#__PURE__*/React__default.createElement("path", {
722
- d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
958
+ d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
723
959
  })));
724
960
  };
725
- var MenuIcon = _ref27 => {
961
+ var NotificationIcon = _ref27 => {
726
962
  var {
727
963
  size = 24,
728
- color = 'currentColor'
964
+ color = 'currentColor',
965
+ filled = false,
966
+ strokeWidth = 1
729
967
  } = _ref27,
730
968
  props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
731
969
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -733,17 +971,23 @@
733
971
  color: color
734
972
  }, props), /*#__PURE__*/React__default.createElement("svg", {
735
973
  viewBox: "0 0 24 24",
736
- fill: "none",
737
- stroke: 'currentColor',
738
- strokeWidth: "1"
974
+ fill: filled ? color : 'none',
975
+ stroke: filled ? 'none' : color,
976
+ strokeWidth: strokeWidth,
977
+ strokeLinecap: "round",
978
+ strokeLinejoin: "round"
739
979
  }, /*#__PURE__*/React__default.createElement("path", {
740
- d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
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"
741
983
  })));
742
984
  };
743
- var ShareIcon = _ref28 => {
985
+ var OpenEyeIcon = _ref28 => {
744
986
  var {
745
987
  size = 24,
746
- color = 'currentColor'
988
+ color = 'currentColor',
989
+ filled = true,
990
+ strokeWidth = 1
747
991
  } = _ref28,
748
992
  props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
749
993
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -751,17 +995,21 @@
751
995
  color: color
752
996
  }, props), /*#__PURE__*/React__default.createElement("svg", {
753
997
  viewBox: "0 0 24 24",
754
- fill: "none",
755
- stroke: 'currentColor',
756
- strokeWidth: "1"
998
+ fill: filled ? color : 'none',
999
+ stroke: filled ? 'none' : color,
1000
+ strokeWidth: strokeWidth,
1001
+ strokeLinecap: "round",
1002
+ strokeLinejoin: "round"
757
1003
  }, /*#__PURE__*/React__default.createElement("path", {
758
- 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"
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"
759
1005
  })));
760
1006
  };
761
- var FilterIcon = _ref29 => {
1007
+ var ProfileIcon = _ref29 => {
762
1008
  var {
763
1009
  size = 24,
764
- color = 'currentColor'
1010
+ color = 'currentColor',
1011
+ filled = true,
1012
+ strokeWidth = 1
765
1013
  } = _ref29,
766
1014
  props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
767
1015
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -769,17 +1017,22 @@
769
1017
  color: color
770
1018
  }, props), /*#__PURE__*/React__default.createElement("svg", {
771
1019
  viewBox: "0 0 24 24",
772
- fill: "none",
773
- stroke: 'currentColor',
774
- strokeWidth: "1"
1020
+ fill: filled ? color : 'none',
1021
+ stroke: filled ? 'none' : color,
1022
+ strokeWidth: strokeWidth,
1023
+ strokeLinecap: "round",
1024
+ strokeLinejoin: "round"
775
1025
  }, /*#__PURE__*/React__default.createElement("path", {
776
- d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
777
- })));
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
+ }), ' '));
778
1029
  };
779
- var RefreshIcon = _ref30 => {
1030
+ var SettingsIcon = _ref30 => {
780
1031
  var {
781
1032
  size = 24,
782
- color = 'currentColor'
1033
+ color = 'currentColor',
1034
+ filled = false,
1035
+ strokeWidth = 1
783
1036
  } = _ref30,
784
1037
  props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
785
1038
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -787,17 +1040,21 @@
787
1040
  color: color
788
1041
  }, props), /*#__PURE__*/React__default.createElement("svg", {
789
1042
  viewBox: "0 0 24 24",
790
- fill: "none",
791
- stroke: 'currentColor',
792
- strokeWidth: "1"
1043
+ fill: filled ? color : 'none',
1044
+ stroke: filled ? 'none' : color,
1045
+ strokeWidth: strokeWidth,
1046
+ strokeLinecap: "round",
1047
+ strokeLinejoin: "round"
793
1048
  }, /*#__PURE__*/React__default.createElement("path", {
794
- 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"
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"
795
1050
  })));
796
1051
  };
797
- var CopyIcon = _ref31 => {
1052
+ var SuccessIcon = _ref31 => {
798
1053
  var {
799
1054
  size = 24,
800
- color = 'currentColor'
1055
+ color = 'currentColor',
1056
+ filled = true,
1057
+ strokeWidth = 1
801
1058
  } = _ref31,
802
1059
  props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
803
1060
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -805,17 +1062,21 @@
805
1062
  color: color
806
1063
  }, props), /*#__PURE__*/React__default.createElement("svg", {
807
1064
  viewBox: "0 0 24 24",
808
- fill: "none",
809
- stroke: 'currentColor',
810
- strokeWidth: "1"
1065
+ fill: filled ? color : 'none',
1066
+ stroke: filled ? 'none' : color,
1067
+ strokeWidth: strokeWidth,
1068
+ strokeLinecap: "round",
1069
+ strokeLinejoin: "round"
811
1070
  }, /*#__PURE__*/React__default.createElement("path", {
812
- 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"
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"
813
1072
  })));
814
1073
  };
815
- var SaveIcon = _ref32 => {
1074
+ var UnLikeIcon = _ref32 => {
816
1075
  var {
817
1076
  size = 24,
818
- color = 'currentColor'
1077
+ color = 'currentColor',
1078
+ filled = true,
1079
+ strokeWidth = 1
819
1080
  } = _ref32,
820
1081
  props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
821
1082
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -823,14 +1084,16 @@
823
1084
  color: color
824
1085
  }, props), /*#__PURE__*/React__default.createElement("svg", {
825
1086
  viewBox: "0 0 24 24",
826
- fill: "none",
827
- stroke: 'currentColor',
828
- strokeWidth: "1"
1087
+ fill: filled ? color : 'none',
1088
+ stroke: filled ? 'none' : color,
1089
+ strokeWidth: strokeWidth,
1090
+ strokeLinecap: "round",
1091
+ strokeLinejoin: "round"
829
1092
  }, /*#__PURE__*/React__default.createElement("path", {
830
- 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"
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"
831
1094
  })));
832
1095
  };
833
- var PrintIcon = _ref33 => {
1096
+ var ClockIcon = _ref33 => {
834
1097
  var {
835
1098
  size = 24,
836
1099
  color = 'currentColor'
@@ -842,13 +1105,19 @@
842
1105
  }, props), /*#__PURE__*/React__default.createElement("svg", {
843
1106
  viewBox: "0 0 24 24",
844
1107
  fill: "none",
845
- stroke: 'currentColor',
846
- strokeWidth: "1"
847
- }, /*#__PURE__*/React__default.createElement("path", {
848
- 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"
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"
849
1118
  })));
850
1119
  };
851
- var LockIcon = _ref34 => {
1120
+ var CameraIcon = _ref34 => {
852
1121
  var {
853
1122
  size = 24,
854
1123
  color = 'currentColor'
@@ -860,14 +1129,19 @@
860
1129
  }, props), /*#__PURE__*/React__default.createElement("svg", {
861
1130
  viewBox: "0 0 24 24",
862
1131
  fill: "none",
863
- stroke: 'currentColor',
864
- strokeWidth: "1"
1132
+ stroke: "currentColor",
1133
+ strokeWidth: "1",
1134
+ strokeLinecap: "round",
1135
+ strokeLinejoin: "round"
865
1136
  }, /*#__PURE__*/React__default.createElement("path", {
866
- 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"
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"
867
1142
  })));
868
1143
  };
869
- // Previous icons remain the same...
870
- var UnlockIcon = _ref35 => {
1144
+ var BluetoothIcon = _ref35 => {
871
1145
  var {
872
1146
  size = 24,
873
1147
  color = 'currentColor'
@@ -878,17 +1152,17 @@
878
1152
  color: color
879
1153
  }, props), /*#__PURE__*/React__default.createElement("svg", {
880
1154
  viewBox: "0 0 24 24",
881
- fill: "none",
882
- stroke: 'currentColor',
883
- strokeWidth: "1"
1155
+ fill: 'currentColor'
884
1156
  }, /*#__PURE__*/React__default.createElement("path", {
885
- 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"
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"
886
1158
  })));
887
1159
  };
888
- var StarIcon = _ref36 => {
1160
+ var LikeIcon = _ref36 => {
889
1161
  var {
890
1162
  size = 24,
891
- color = 'currentColor'
1163
+ color = 'currentColor',
1164
+ filled = true,
1165
+ strokeWidth = 1
892
1166
  } = _ref36,
893
1167
  props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
894
1168
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -896,17 +1170,21 @@
896
1170
  color: color
897
1171
  }, props), /*#__PURE__*/React__default.createElement("svg", {
898
1172
  viewBox: "0 0 24 24",
899
- fill: "none",
900
- stroke: 'currentColor',
901
- strokeWidth: "1"
1173
+ fill: filled ? color : 'none',
1174
+ stroke: filled ? 'none' : color,
1175
+ strokeWidth: strokeWidth,
1176
+ strokeLinecap: "round",
1177
+ strokeLinejoin: "round"
902
1178
  }, /*#__PURE__*/React__default.createElement("path", {
903
- 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"
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"
904
1180
  })));
905
1181
  };
906
- var HeartIcon = _ref37 => {
1182
+ var UnlockIcon = _ref37 => {
907
1183
  var {
908
1184
  size = 24,
909
- color = 'currentColor'
1185
+ color = 'currentColor',
1186
+ filled = false,
1187
+ strokeWidth = 1
910
1188
  } = _ref37,
911
1189
  props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
912
1190
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -914,17 +1192,28 @@
914
1192
  color: color
915
1193
  }, props), /*#__PURE__*/React__default.createElement("svg", {
916
1194
  viewBox: "0 0 24 24",
917
- fill: "none",
918
- stroke: 'currentColor',
919
- strokeWidth: "1"
920
- }, /*#__PURE__*/React__default.createElement("path", {
921
- 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"
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"
922
1209
  })));
923
1210
  };
924
- var ThumbUpIcon = _ref38 => {
1211
+ var WifiIcon = _ref38 => {
925
1212
  var {
926
1213
  size = 24,
927
- color = 'currentColor'
1214
+ color = 'currentColor',
1215
+ filled = false,
1216
+ strokeWidth = 1
928
1217
  } = _ref38,
929
1218
  props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
930
1219
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -932,17 +1221,21 @@
932
1221
  color: color
933
1222
  }, props), /*#__PURE__*/React__default.createElement("svg", {
934
1223
  viewBox: "0 0 24 24",
935
- fill: "none",
936
- stroke: 'currentColor',
937
- strokeWidth: "1"
1224
+ fill: filled ? color : 'none',
1225
+ stroke: filled ? 'none' : color,
1226
+ strokeWidth: strokeWidth,
1227
+ strokeLinecap: "round",
1228
+ strokeLinejoin: "round"
938
1229
  }, /*#__PURE__*/React__default.createElement("path", {
939
- 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"
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"
940
1231
  })));
941
1232
  };
942
- var ThumbDownIcon = _ref39 => {
1233
+ var UploadIcon = _ref39 => {
943
1234
  var {
944
1235
  size = 24,
945
- color = 'currentColor'
1236
+ color = 'currentColor',
1237
+ filled = false,
1238
+ strokeWidth = 1
946
1239
  } = _ref39,
947
1240
  props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
948
1241
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
@@ -950,14 +1243,20 @@
950
1243
  color: color
951
1244
  }, props), /*#__PURE__*/React__default.createElement("svg", {
952
1245
  viewBox: "0 0 24 24",
953
- fill: "none",
954
- stroke: 'currentColor',
955
- strokeWidth: "1"
1246
+ fill: filled ? color : 'none',
1247
+ stroke: filled ? 'none' : color,
1248
+ strokeWidth: strokeWidth,
1249
+ strokeLinecap: "round",
1250
+ strokeLinejoin: "round"
956
1251
  }, /*#__PURE__*/React__default.createElement("path", {
957
- 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"
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"
958
1257
  })));
959
1258
  };
960
- var LocationIcon = _ref40 => {
1259
+ var SearchIcon = _ref40 => {
961
1260
  var {
962
1261
  size = 24,
963
1262
  color = 'currentColor'
@@ -968,14 +1267,12 @@
968
1267
  color: color
969
1268
  }, props), /*#__PURE__*/React__default.createElement("svg", {
970
1269
  viewBox: "0 0 24 24",
971
- fill: "none",
972
- stroke: 'currentColor',
973
- strokeWidth: "1"
1270
+ fill: 'currentColor'
974
1271
  }, /*#__PURE__*/React__default.createElement("path", {
975
- 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"
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"
976
1273
  })));
977
1274
  };
978
- var ClockIcon = _ref41 => {
1275
+ var CloseEyeIcon = _ref41 => {
979
1276
  var {
980
1277
  size = 24,
981
1278
  color = 'currentColor'
@@ -986,14 +1283,13 @@
986
1283
  color: color
987
1284
  }, props), /*#__PURE__*/React__default.createElement("svg", {
988
1285
  viewBox: "0 0 24 24",
989
- fill: "none",
990
- stroke: 'currentColor',
991
- strokeWidth: "1"
1286
+ fill: color
992
1287
  }, /*#__PURE__*/React__default.createElement("path", {
993
- 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"
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"
994
1290
  })));
995
1291
  };
996
- var CameraIcon = _ref42 => {
1292
+ var ExternalLinkIcon = _ref42 => {
997
1293
  var {
998
1294
  size = 24,
999
1295
  color = 'currentColor'
@@ -1004,22 +1300,19 @@
1004
1300
  color: color
1005
1301
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1006
1302
  viewBox: "0 0 24 24",
1007
- fill: "none",
1008
- stroke: 'currentColor',
1009
- strokeWidth: "1"
1303
+ fill: 'currentColor'
1010
1304
  }, /*#__PURE__*/React__default.createElement("path", {
1011
- 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"
1012
- }), /*#__PURE__*/React__default.createElement("path", {
1013
- 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"
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"
1014
1306
  })));
1015
1307
  };
1016
- var MicrophoneIcon = _ref43 => {
1308
+ var MinusIcon = _ref43 => {
1017
1309
  var {
1018
1310
  size = 24,
1019
1311
  color = 'currentColor'
1020
1312
  } = _ref43,
1021
1313
  props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1022
1314
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1315
+ padding: 2,
1023
1316
  size: size,
1024
1317
  color: color
1025
1318
  }, props), /*#__PURE__*/React__default.createElement("svg", {
@@ -1028,12 +1321,12 @@
1028
1321
  stroke: 'currentColor',
1029
1322
  strokeWidth: "1"
1030
1323
  }, /*#__PURE__*/React__default.createElement("path", {
1031
- 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"
1032
- }), /*#__PURE__*/React__default.createElement("path", {
1033
- 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"
1324
+ d: "M7 12h10",
1325
+ strokeLinecap: "round",
1326
+ strokeLinejoin: "round"
1034
1327
  })));
1035
1328
  };
1036
- var WifiIcon = _ref44 => {
1329
+ var InfoIcon = _ref44 => {
1037
1330
  var {
1038
1331
  size = 24,
1039
1332
  color = 'currentColor'
@@ -1044,14 +1337,12 @@
1044
1337
  color: color
1045
1338
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1046
1339
  viewBox: "0 0 24 24",
1047
- fill: "none",
1048
- stroke: 'currentColor',
1049
- strokeWidth: "1"
1340
+ fill: 'currentColor'
1050
1341
  }, /*#__PURE__*/React__default.createElement("path", {
1051
- 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"
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"
1052
1343
  })));
1053
1344
  };
1054
- var BluetoothIcon = _ref45 => {
1345
+ var PlusIcon = _ref45 => {
1055
1346
  var {
1056
1347
  size = 24,
1057
1348
  color = 'currentColor'
@@ -1064,10 +1355,10 @@
1064
1355
  viewBox: "0 0 24 24",
1065
1356
  fill: 'currentColor'
1066
1357
  }, /*#__PURE__*/React__default.createElement("path", {
1067
- 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"
1358
+ d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1068
1359
  })));
1069
1360
  };
1070
- var BatteryIcon = _ref46 => {
1361
+ var TickIcon = _ref46 => {
1071
1362
  var {
1072
1363
  size = 24,
1073
1364
  color = 'currentColor'
@@ -1082,11 +1373,12 @@
1082
1373
  stroke: 'currentColor',
1083
1374
  strokeWidth: "1"
1084
1375
  }, /*#__PURE__*/React__default.createElement("path", {
1085
- 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"
1376
+ d: "M5 13l4 4L19 7",
1377
+ strokeLinecap: "round",
1378
+ strokeLinejoin: "round"
1086
1379
  })));
1087
1380
  };
1088
- // More modern UI icons
1089
- var SunIcon = _ref47 => {
1381
+ var BoldArrowIcon = _ref47 => {
1090
1382
  var {
1091
1383
  size = 24,
1092
1384
  color = 'currentColor'
@@ -1097,18 +1389,12 @@
1097
1389
  color: color
1098
1390
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1099
1391
  viewBox: "0 0 24 24",
1100
- fill: "none",
1101
- stroke: 'currentColor',
1102
- strokeWidth: "1"
1103
- }, /*#__PURE__*/React__default.createElement("circle", {
1104
- cx: "12",
1105
- cy: "12",
1106
- r: "5"
1107
- }), /*#__PURE__*/React__default.createElement("path", {
1108
- 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"
1392
+ fill: 'currentColor'
1393
+ }, /*#__PURE__*/React__default.createElement("path", {
1394
+ d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1109
1395
  })));
1110
1396
  };
1111
- var MoonIcon = _ref48 => {
1397
+ var ArrowIcon = _ref48 => {
1112
1398
  var {
1113
1399
  size = 24,
1114
1400
  color = 'currentColor'
@@ -1118,129 +1404,144 @@
1118
1404
  size: size,
1119
1405
  color: color
1120
1406
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1407
+ width: "24",
1408
+ height: "24",
1121
1409
  viewBox: "0 0 24 24",
1122
- fill: "none",
1410
+ strokeWidth: "1",
1123
1411
  stroke: 'currentColor',
1124
- strokeWidth: "1"
1125
- }, /*#__PURE__*/React__default.createElement("path", {
1126
- d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
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"
1127
1422
  })));
1128
1423
  };
1129
- var ErrorIcon = _ref49 => {
1424
+ var SpinnerIcon = _ref49 => {
1130
1425
  var {
1131
1426
  size = 24,
1132
- color = 'white'
1427
+ color = 'currentColor'
1133
1428
  } = _ref49,
1134
1429
  props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1135
1430
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1136
1431
  size: size,
1137
1432
  color: color
1138
1433
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1139
- viewBox: "0 0 510 510"
1140
- }, /*#__PURE__*/React__default.createElement("path", {
1141
- 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"
1142
- }), /*#__PURE__*/React__default.createElement("path", {
1143
- 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"
1434
+ xmlns: "http://www.w3.org/2000/svg",
1435
+ width: "24",
1436
+ height: "24",
1437
+ viewBox: "0 0 24 24",
1438
+ fill: "none",
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"
1144
1448
  }), /*#__PURE__*/React__default.createElement("path", {
1145
- 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"
1146
1451
  })));
1147
1452
  };
1148
- var WarningIcon = _ref50 => {
1453
+ var CalendarIcon = _ref50 => {
1149
1454
  var {
1150
1455
  size = 24,
1151
- color = 'white'
1456
+ color = 'currentColor'
1152
1457
  } = _ref50,
1153
1458
  props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1154
1459
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1155
1460
  size: size,
1156
1461
  color: color
1157
- }, props), /*#__PURE__*/React__default.createElement("svg", {
1158
- version: "1.1",
1159
- id: "Capa_1",
1160
- xmlns: "http://www.w3.org/2000/svg",
1161
- viewBox: "0 0 192.146 192.146",
1162
- fill: 'currentColor'
1163
- }, /*#__PURE__*/React__default.createElement("g", {
1164
- id: "SVGRepo_bgCarrier"
1165
- }), /*#__PURE__*/React__default.createElement("g", {
1166
- id: "SVGRepo_tracerCarrier"
1167
- }), /*#__PURE__*/React__default.createElement("g", {
1168
- id: "SVGRepo_iconCarrier"
1169
- }, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("g", null, /*#__PURE__*/React__default.createElement("path", {
1170
- 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"
1171
- })))))));
1172
- };
1173
- var CloudIcon = _ref51 => {
1174
- var {
1175
- size = 24,
1176
- color = 'currentColor'
1177
- } = _ref51,
1178
- props = _objectWithoutPropertiesLoose(_ref51, _excluded50);
1179
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1180
- size: size,
1181
- color: color
1182
1462
  }, props), /*#__PURE__*/React__default.createElement("svg", {
1183
1463
  viewBox: "0 0 24 24",
1184
1464
  fill: "none",
1185
- stroke: 'currentColor',
1186
- strokeWidth: "1"
1187
- }, /*#__PURE__*/React__default.createElement("path", {
1188
- 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"
1189
1491
  })));
1190
1492
  };
1191
1493
 
1192
1494
  var Icon = {
1193
1495
  __proto__: null,
1194
1496
  ChevronIcon: ChevronIcon,
1195
- CheckIcon: CheckIcon,
1196
1497
  CloseIcon: CloseIcon,
1197
- 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,
1198
1506
  DustBinIcon: DustBinIcon,
1199
1507
  EditIcon: EditIcon,
1200
- ExternalLinkIcon: ExternalLinkIcon,
1201
- MinusIcon: MinusIcon,
1202
- InfoIcon: InfoIcon,
1203
- OpenEyeIcon: OpenEyeIcon,
1204
- PlusIcon: PlusIcon,
1205
- SpinnerIcon: SpinnerIcon,
1206
- ProfileIcon: ProfileIcon,
1207
- ArrowIcon: ArrowIcon,
1208
- SearchIcon: SearchIcon,
1209
- SuccessIcon: SuccessIcon,
1210
- TickIcon: TickIcon,
1211
- NotificationIcon: NotificationIcon,
1212
- SettingsIcon: SettingsIcon,
1213
- CalendarIcon: CalendarIcon,
1214
- AddIcon: AddIcon,
1508
+ ErrorIcon: ErrorIcon,
1215
1509
  DownloadIcon: DownloadIcon,
1216
- UploadIcon: UploadIcon,
1217
- BookmarkIcon: BookmarkIcon,
1218
- HomeIcon: HomeIcon,
1219
1510
  MenuIcon: MenuIcon,
1220
1511
  ShareIcon: ShareIcon,
1221
- FilterIcon: FilterIcon,
1222
1512
  RefreshIcon: RefreshIcon,
1223
- CopyIcon: CopyIcon,
1224
- SaveIcon: SaveIcon,
1225
1513
  PrintIcon: PrintIcon,
1226
- LockIcon: LockIcon,
1227
- UnlockIcon: UnlockIcon,
1228
- StarIcon: StarIcon,
1229
- HeartIcon: HeartIcon,
1230
- ThumbUpIcon: ThumbUpIcon,
1231
- ThumbDownIcon: ThumbDownIcon,
1514
+ PanelIcon: PanelIcon,
1515
+ FilterIcon: FilterIcon,
1516
+ HomeIcon: HomeIcon,
1232
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,
1233
1527
  ClockIcon: ClockIcon,
1234
1528
  CameraIcon: CameraIcon,
1235
- MicrophoneIcon: MicrophoneIcon,
1236
- WifiIcon: WifiIcon,
1237
1529
  BluetoothIcon: BluetoothIcon,
1238
- BatteryIcon: BatteryIcon,
1239
- SunIcon: SunIcon,
1240
- MoonIcon: MoonIcon,
1241
- ErrorIcon: ErrorIcon,
1242
- WarningIcon: WarningIcon,
1243
- 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
1244
1545
  };
1245
1546
 
1246
1547
  // Define a constant object 'Themes' exporting various theme styles.
@@ -1868,7 +2169,7 @@
1868
2169
  viewBox: "0 0 24 24",
1869
2170
  fill: "none",
1870
2171
  stroke: colorStyle,
1871
- strokeWidth: "2",
2172
+ strokeWidth: "1",
1872
2173
  strokeLinecap: "round",
1873
2174
  strokeLinejoin: "round",
1874
2175
  style: {
@@ -6895,7 +7196,6 @@
6895
7196
  // Expose the ToggleGroupComponent for import into other modules
6896
7197
  var ToggleGroup = ToggleGroupComponent;
6897
7198
 
6898
- exports.AddIcon = AddIcon;
6899
7199
  exports.Alert = Alert;
6900
7200
  exports.ArrowIcon = ArrowIcon;
6901
7201
  exports.AspectRatio = AspectRatio;
@@ -6903,13 +7203,13 @@
6903
7203
  exports.Badge = Badge;
6904
7204
  exports.BatteryIcon = BatteryIcon;
6905
7205
  exports.BluetoothIcon = BluetoothIcon;
7206
+ exports.BoldArrowIcon = BoldArrowIcon;
6906
7207
  exports.BookmarkIcon = BookmarkIcon;
6907
7208
  exports.Bottom = Bottom;
6908
7209
  exports.Button = Button;
6909
7210
  exports.CalendarIcon = CalendarIcon;
6910
7211
  exports.CameraIcon = CameraIcon;
6911
7212
  exports.Center = Center;
6912
- exports.CheckIcon = CheckIcon;
6913
7213
  exports.Checkbox = Checkbox;
6914
7214
  exports.ChevronIcon = ChevronIcon;
6915
7215
  exports.ClockIcon = ClockIcon;
@@ -6945,6 +7245,7 @@
6945
7245
  exports.InfoIcon = InfoIcon;
6946
7246
  exports.Inline = Inline;
6947
7247
  exports.Left = Left;
7248
+ exports.LikeIcon = LikeIcon;
6948
7249
  exports.Link = Link;
6949
7250
  exports.Loader = Loader;
6950
7251
  exports.LocationIcon = LocationIcon;
@@ -6958,6 +7259,7 @@
6958
7259
  exports.MoonIcon = MoonIcon;
6959
7260
  exports.NotificationIcon = NotificationIcon;
6960
7261
  exports.OpenEyeIcon = OpenEyeIcon;
7262
+ exports.PanelIcon = PanelIcon;
6961
7263
  exports.Password = Password;
6962
7264
  exports.PlusIcon = PlusIcon;
6963
7265
  exports.PrintIcon = PrintIcon;
@@ -6972,19 +7274,17 @@
6972
7274
  exports.SpinnerIcon = SpinnerIcon;
6973
7275
  exports.StarIcon = StarIcon;
6974
7276
  exports.SuccessIcon = SuccessIcon;
6975
- exports.SunIcon = SunIcon;
6976
7277
  exports.Switch = Switch;
6977
7278
  exports.Table = Table;
6978
7279
  exports.Tabs = Tabs;
6979
7280
  exports.Text = Text;
6980
7281
  exports.TextArea = TextArea;
6981
7282
  exports.TextField = TextField;
6982
- exports.ThumbDownIcon = ThumbDownIcon;
6983
- exports.ThumbUpIcon = ThumbUpIcon;
6984
7283
  exports.TickIcon = TickIcon;
6985
7284
  exports.Toggle = Toggle;
6986
7285
  exports.ToggleGroup = ToggleGroup;
6987
7286
  exports.Top = Top;
7287
+ exports.UnLikeIcon = UnLikeIcon;
6988
7288
  exports.UnlockIcon = UnlockIcon;
6989
7289
  exports.UploadIcon = UploadIcon;
6990
7290
  exports.Vertical = Vertical;