@xplortech/apollo-core 2.7.1 → 2.8.0

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.
Files changed (36) hide show
  1. package/.typings/apollo-components.html-data.json +8 -4
  2. package/dist/apollo-core/apollo-core.esm.js +1 -1
  3. package/dist/apollo-core/p-689f1dae.entry.js +1 -0
  4. package/dist/apollo-core/p-cd56a3d5.entry.js +1 -0
  5. package/dist/cjs/apollo-core.cjs.js +1 -1
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/xpl-avatar_54.cjs.entry.js +1071 -40
  8. package/dist/cjs/xpl-toggle.cjs.entry.js +8 -3
  9. package/dist/collection/components/xpl-checkbox/xpl-checkbox.js +7 -12
  10. package/dist/collection/components/xpl-choicelist/xpl-choicelist.js +7 -6
  11. package/dist/collection/components/xpl-input/xpl-input.js +28 -24
  12. package/dist/collection/components/xpl-radio/radio.stories.js +10 -1
  13. package/dist/collection/components/xpl-radio/xpl-radio.js +30 -5
  14. package/dist/collection/components/xpl-toggle/xpl-toggle.js +26 -4
  15. package/dist/components/xpl-checkbox2.js +1 -1
  16. package/dist/components/xpl-choicelist.js +1 -1
  17. package/dist/components/xpl-icon2.js +1 -1
  18. package/dist/components/xpl-input2.js +1 -1
  19. package/dist/components/xpl-radio2.js +1 -1
  20. package/dist/components/xpl-toggle.js +1 -1
  21. package/dist/docs/xpl-checkbox/readme.md +5 -3
  22. package/dist/docs/xpl-radio/readme.md +10 -9
  23. package/dist/docs/xpl-toggle/readme.md +16 -9
  24. package/dist/esm/apollo-core.js +1 -1
  25. package/dist/esm/loader.js +1 -1
  26. package/dist/esm/xpl-avatar_54.entry.js +1071 -40
  27. package/dist/esm/xpl-toggle.entry.js +9 -4
  28. package/dist/types/components/xpl-checkbox/xpl-checkbox.d.ts +1 -1
  29. package/dist/types/components/xpl-input/xpl-input.d.ts +3 -2
  30. package/dist/types/components/xpl-radio/radio.stories.d.ts +10 -1
  31. package/dist/types/components/xpl-radio/xpl-radio.d.ts +2 -0
  32. package/dist/types/components/xpl-toggle/xpl-toggle.d.ts +3 -0
  33. package/dist/types/components.d.ts +39 -11
  34. package/package.json +29 -4
  35. package/dist/apollo-core/p-d1c9c233.entry.js +0 -1
  36. package/dist/apollo-core/p-e2a5d41c.entry.js +0 -1
@@ -376,24 +376,19 @@ const Checkbox = class {
376
376
  this.ariaLabel = '';
377
377
  this.onChange = (event) => {
378
378
  const target = event.target;
379
- if (this.value) {
380
- this.checkboxChange.emit(this.value);
381
- }
382
- else {
383
- this.checkboxChange.emit(target.checked);
384
- }
379
+ this.checkboxChange.emit(target.checked);
385
380
  };
386
381
  }
387
382
  render() {
388
383
  var _a;
389
- return (h(Host, { key: 'a73acf5a3394c8f1060f9095682093a1db3b09db', class: {
384
+ return (h(Host, { key: 'dd508c61fc68052f2bbdfccd606ea8f0109783f3', class: {
390
385
  'xpl-checkbox-radio-container': true,
391
386
  styled: this.styled,
392
387
  disabled: this.disabled,
393
- } }, h("input", { key: '7da5f17d827bfb6d63a4933977daee75c9845899', class: "xpl-checkbox", type: "checkbox", "aria-label": ((_a = this.ariaLabel) !== null && _a !== void 0 ? _a : '').trim() || undefined, checked: this.checked, "data-id": this.dataId, disabled: this.disabled, id: this.id, indeterminate: this.indeterminate, onChange: this.onChange, name: this.name, required: this.required, value: this.value }), h("label", { key: '86669521b030289b55279bd6fceecb5d060c7138', class: {
388
+ } }, h("input", { key: 'c5b482a12c02cb4384444e3d385cccc17a8cbd3c', class: "xpl-checkbox", type: "checkbox", "aria-label": ((_a = this.ariaLabel) !== null && _a !== void 0 ? _a : '').trim() || undefined, checked: this.checked, "data-id": this.dataId, disabled: this.disabled, id: this.id, indeterminate: this.indeterminate, onChange: this.onChange, name: this.name, required: this.required, value: this.value }), h("label", { key: 'e5ae6eef395457ff6021b008bbb4221e7c36a3c9', class: {
394
389
  'xpl-label': true,
395
390
  'xpl-label--disabled': this.disabled,
396
- }, htmlFor: this.id }, h("slot", { key: 'b40aafb664cbac2092938afd45683cfc0313beac' }), this.description && (h("small", { key: '06e2245639b577f5d09afdf9000e43d076758e80', class: {
391
+ }, htmlFor: this.id }, h("slot", { key: '71ae02b761df01bea00b483e21a9b442b8fbdd9f' }), this.description && (h("small", { key: 'f34f7e323cd9c39ce1094177e7a4d3cf4b06f788', class: {
397
392
  'xpl-description': true,
398
393
  'xpl-description--disabled': this.disabled,
399
394
  } }, this.description)))));
@@ -406,20 +401,21 @@ const Choicelist = class {
406
401
  this.choicelistChange = createEvent(this, "choicelistChange", 7);
407
402
  this.choicelistValueChange = createEvent(this, "choicelistValueChange", 7);
408
403
  this.name = v4();
409
- this.onChoiceChange = (value, choiceIndex) => {
404
+ this.onChoiceChange = (_value, choiceIndex) => {
405
+ const choice = this.choices[choiceIndex];
410
406
  if (this.multi) {
411
407
  this.selected = this.selected.map((isSelected, index) => index === choiceIndex ? !isSelected : isSelected);
412
- if (typeof value === 'string') {
408
+ if ((choice === null || choice === void 0 ? void 0 : choice.value) !== undefined) {
413
409
  const changedValues = this.choices
414
410
  .filter((_, index) => this.selected[index])
415
- .map((choice, index) => { var _a; return (_a = choice.value) !== null && _a !== void 0 ? _a : this.selected[index]; });
411
+ .map((c, index) => { var _a; return (_a = c.value) !== null && _a !== void 0 ? _a : this.selected[index]; });
416
412
  this.choicelistValueChange.emit(changedValues);
417
413
  }
418
414
  }
419
415
  else {
420
416
  this.selected = this.selected.map((_, index) => index === choiceIndex);
421
- if (typeof value === 'string') {
422
- this.choicelistValueChange.emit(value);
417
+ if ((choice === null || choice === void 0 ? void 0 : choice.value) !== undefined) {
418
+ this.choicelistValueChange.emit(choice.value);
423
419
  }
424
420
  }
425
421
  };
@@ -438,7 +434,7 @@ const Choicelist = class {
438
434
  this.onChoicesPropChange(this.choices);
439
435
  }
440
436
  render() {
441
- return (h(Host, { key: '003270ebbe4ccd9c204774f2c41302e64697a358', class: "xpl-choicelist-container" }, this.heading !== undefined || this.description !== undefined ? (h("div", { class: "xpl-choicelist-heading" }, this.heading && h("h3", null, this.heading), this.description && h("p", null, this.description))) : null, this.choices && (h("ul", { key: '388763663e1e9dc48f53b4e8569c3c58942fb631', class: {
437
+ return (h(Host, { key: 'd2da0f5aeb424a36fb117711f34c0631c464ef6a', class: "xpl-choicelist-container" }, this.heading !== undefined || this.description !== undefined ? (h("div", { class: "xpl-choicelist-heading" }, this.heading && h("h3", null, this.heading), this.description && h("p", null, this.description))) : null, this.choices && (h("ul", { key: 'a40e08f0fd60a5268ed9f4d15a97b3fa677e2e46', class: {
442
438
  'xpl-choicelist': true,
443
439
  'xpl-choicelist--styled': this.styled,
444
440
  } }, this.choices.map((choice, i) => {
@@ -2787,6 +2783,23 @@ const antarctica = {
2787
2783
  }
2788
2784
  }
2789
2785
  };
2786
+ const apple = {
2787
+ name: "apple",
2788
+ keywords: [
2789
+ "apple",
2790
+ "pay",
2791
+ "credit",
2792
+ "card",
2793
+ "debit",
2794
+ "logo"
2795
+ ],
2796
+ heights: {
2797
+ "32": {
2798
+ width: 32,
2799
+ path: "<g fill=\"currentColor\"><path d=\"M19.61,4.808c1.035-1.294,1.737-3.032,1.552-4.808-1.515,.075-3.363,.999-4.433,2.295-.961,1.109-1.811,2.92-1.59,4.621,1.7,.147,3.399-.85,4.471-2.108\"></path><path d=\"M21.143,7.248c-2.469-.147-4.569,1.401-5.748,1.401s-2.986-1.327-4.939-1.292c-2.542,.037-4.901,1.475-6.191,3.761-2.653,4.573-.7,11.357,1.88,15.081,1.253,1.843,2.763,3.872,4.753,3.799,1.88-.074,2.617-1.217,4.902-1.217s2.947,1.217,4.937,1.18c2.064-.037,3.354-1.844,4.607-3.688,1.437-2.101,2.026-4.129,2.063-4.24-.037-.037-3.98-1.549-4.016-6.084-.037-3.797,3.095-5.603,3.243-5.716-1.769-2.616-4.533-2.911-5.491-2.985\"></path></g>"
2800
+ }
2801
+ }
2802
+ };
2790
2803
  const argentina = {
2791
2804
  name: "argentina",
2792
2805
  keywords: [
@@ -3054,6 +3067,22 @@ const bhutan = {
3054
3067
  }
3055
3068
  }
3056
3069
  };
3070
+ const bitcoin = {
3071
+ name: "bitcoin",
3072
+ keywords: [
3073
+ "credit",
3074
+ "card",
3075
+ "bitcoin",
3076
+ "debit"
3077
+ ],
3078
+ style: "colored",
3079
+ heights: {
3080
+ "32": {
3081
+ width: 32,
3082
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#f7931a\" stroke-width=\"0\" d=\"m22.79,17.693c-.935,3.75-4.733,6.032-8.483,5.097-3.749-.935-6.031-4.733-5.096-8.483.934-3.75,4.733-6.033,8.482-5.098,3.75.935,6.032,4.734,5.097,8.484Z\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m19.086,15.003c.139-.931-.57-1.432-1.54-1.766l.315-1.262-.768-.191-.306,1.228c-.202-.05-.409-.098-.615-.145l.308-1.237-.768-.191-.315,1.261c-.167-.038-.331-.076-.49-.115v-.004s-1.058-.264-1.058-.264l-.204.82s.57.131.558.139c.311.078.367.283.358.447l-.862,3.456c-.038.094-.135.236-.352.182.008.011-.558-.139-.558-.139l-.381.879.999.249c.186.047.368.095.548.141l-.318,1.276.767.191.315-1.263c.21.057.413.109.612.159l-.314,1.257.768.191.318-1.274c1.31.248,2.294.148,2.709-1.037.334-.954-.017-1.504-.706-1.863.502-.116.88-.446.981-1.128Zm-1.755,2.461c-.237.954-1.843.438-2.364.309l.422-1.691c.521.13,2.19.387,1.942,1.382Zm.238-2.474c-.217.868-1.553.427-1.987.319l.382-1.533c.434.108,1.83.31,1.604,1.215Z\"></path></g>"
3083
+ }
3084
+ }
3085
+ };
3057
3086
  const blog = {
3058
3087
  name: "blog",
3059
3088
  keywords: [
@@ -3621,6 +3650,23 @@ const curacao = {
3621
3650
  }
3622
3651
  }
3623
3652
  };
3653
+ const cvc = {
3654
+ name: "cvc",
3655
+ keywords: [
3656
+ "credit",
3657
+ "card",
3658
+ "cvc",
3659
+ "cvv",
3660
+ "debit"
3661
+ ],
3662
+ style: "colored",
3663
+ heights: {
3664
+ "32": {
3665
+ width: 32,
3666
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#e6e6e6\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path fill=\"#fff\" stroke-width=\"0\" d=\"M6 18H19V21H6z\"></path><path fill=\"#1a1a1a\" stroke-width=\"0\" d=\"m24.5,13.5c1.519,0,2.902.569,3.96,1.5h1.54v-4H2v4h18.541c1.057-.931,2.44-1.5,3.959-1.5Z\"></path><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><circle cx=\"24.5\" cy=\"19.5\" r=\"6\" fill=\"#e6e6e6\" stroke-width=\"0\"></circle><path fill=\"#fff\" stroke-width=\"0\" d=\"M19 17H29V22H19z\"></path><circle cx=\"24.5\" cy=\"19.5\" r=\"6\" fill=\"none\" stroke=\"#ed1c24\" stroke-miterlimit=\"10\"></circle><circle cx=\"21.75\" cy=\"19.5\" r=\".75\" fill=\"#1a1a1a\" stroke-width=\"0\"></circle><circle cx=\"24.25\" cy=\"19.5\" r=\".75\" fill=\"#1a1a1a\" stroke-width=\"0\"></circle><circle cx=\"26.75\" cy=\"19.5\" r=\".75\" fill=\"#1a1a1a\" stroke-width=\"0\"></circle></g>"
3667
+ }
3668
+ }
3669
+ };
3624
3670
  const cyprus = {
3625
3671
  name: "cyprus",
3626
3672
  keywords: [
@@ -3696,6 +3742,22 @@ const denmark = {
3696
3742
  }
3697
3743
  }
3698
3744
  };
3745
+ const discover = {
3746
+ name: "discover",
3747
+ keywords: [
3748
+ "credit",
3749
+ "card",
3750
+ "discover",
3751
+ "debit"
3752
+ ],
3753
+ style: "colored",
3754
+ heights: {
3755
+ "32": {
3756
+ width: 32,
3757
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path fill=\"#f47922\" stroke-width=\"0\" d=\"m27,7h-8c4.971,0,9,4.029,9,9s-4.029,9-9,9h8c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Z\"></path><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"m5.081,14.116h-1.081v3.777h1.076c.572,0,.985-.135,1.348-.436.431-.357.686-.894.686-1.45,0-1.115-.833-1.891-2.027-1.891Zm.86,2.837c-.231.209-.532.3-1.008.3h-.198v-2.497h.198c.476,0,.765.085,1.008.305.255.227.408.578.408.94s-.153.725-.408.952Z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"M7.448 14.116H8.185V17.893H7.448z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"m9.986,15.565c-.442-.164-.572-.271-.572-.475,0-.238.231-.419.549-.419.221,0,.402.091.594.306l.386-.505c-.317-.277-.696-.419-1.11-.419-.668,0-1.178.464-1.178,1.082,0,.52.237.787.929,1.036.288.102.435.17.509.215.147.096.221.232.221.391,0,.306-.243.533-.572.533-.351,0-.634-.175-.804-.504l-.476.458c.339.498.747.719,1.308.719.766,0,1.303-.509,1.303-1.24,0-.6-.248-.872-1.086-1.178Z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"m11.305,16.007c0,1.11.872,1.971,1.994,1.971.317,0,.589-.062.924-.22v-.867c-.295.295-.555.414-.889.414-.742,0-1.269-.538-1.269-1.303,0-.725.543-1.297,1.234-1.297.351,0,.617.125.924.425v-.867c-.323-.164-.589-.232-.906-.232-1.116,0-2.011.878-2.011,1.976Z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"M20.063 16.653L19.056 14.116 18.251 14.116 19.854 17.99 20.25 17.99 21.882 14.116 21.083 14.116 20.063 16.653z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"M22.215 17.893L24.304 17.893 24.304 17.253 22.951 17.253 22.951 16.234 24.254 16.234 24.254 15.594 22.951 15.594 22.951 14.756 24.304 14.756 24.304 14.116 22.215 14.116 22.215 17.893z\"></path><path fill=\"#231f20\" stroke-width=\"0\" d=\"m27.221,15.231c0-.707-.487-1.115-1.337-1.115h-1.092v3.777h.736v-1.517h.096l1.02,1.517h.906l-1.189-1.591c.555-.113.861-.492.861-1.071Zm-1.478.624h-.216v-1.144h.227c.459,0,.708.192.708.56,0,.38-.249.584-.72.584Z\"></path><path fill=\"#f47922\" stroke-width=\"0\" d=\"m18.461,16c0,1.105-.895,2-2,2s-2-.895-2-2,.895-2,2-2,2,.895,2,2Z\"></path></g>"
3758
+ }
3759
+ }
3760
+ };
3699
3761
  const djibouti = {
3700
3762
  name: "djibouti",
3701
3763
  keywords: [
@@ -3994,6 +4056,19 @@ const eye = {
3994
4056
  }
3995
4057
  }
3996
4058
  };
4059
+ const facebook = {
4060
+ name: "facebook",
4061
+ keywords: [
4062
+ "logo",
4063
+ "facebook"
4064
+ ],
4065
+ heights: {
4066
+ "32": {
4067
+ width: 32,
4068
+ path: "<g fill=\"currentColor\"><path d=\"M16,2c-7.732,0-14,6.268-14,14,0,6.566,4.52,12.075,10.618,13.588v-9.31h-2.887v-4.278h2.887v-1.843c0-4.765,2.156-6.974,6.835-6.974,.887,0,2.417,.174,3.043,.348v3.878c-.33-.035-.904-.052-1.617-.052-2.296,0-3.183,.87-3.183,3.13v1.513h4.573l-.786,4.278h-3.787v9.619c6.932-.837,12.304-6.74,12.304-13.897,0-7.732-6.268-14-14-14Z\"></path></g>"
4069
+ }
4070
+ }
4071
+ };
3997
4072
  const fiji = {
3998
4073
  name: "fiji",
3999
4074
  keywords: [
@@ -4039,6 +4114,63 @@ const file = {
4039
4114
  }
4040
4115
  }
4041
4116
  };
4117
+ const files = {
4118
+ name: "files",
4119
+ keywords: [
4120
+ "page",
4121
+ "data",
4122
+ "document",
4123
+ "paper",
4124
+ "file",
4125
+ "files"
4126
+ ],
4127
+ heights: {
4128
+ "16": {
4129
+ width: 16,
4130
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M4.67 11.79h-0.89a1.78 1.78 0 0 1-1.78-1.78v-7.12a1.78 1.78 0 0 1 1.78-1.78h4.45a1.78 1.78 0 0 1 1.78 1.78v0.94\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M4.67 12.68v-7.12a1.78 1.78 0 0 1 1.78-1.78h3.64c0.24 0 0.46 0.09 0.63 0.26l2.59 2.6a0.89 0.89 0 0 1 0.26 0.63v5.41a1.78 1.78 0 0 1-1.78 1.78h-5.34a1.78 1.78 0 0 1-1.78-1.78z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M13.57 7.34h-2.67a0.89 0.89 0 0 1-0.89-0.89v-2.67\"></path></g>"
4131
+ },
4132
+ "20": {
4133
+ width: 20,
4134
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M5.84 14.74h-1.11a2.23 2.23 0 0 1-2.23-2.23v-8.9a2.23 2.23 0 0 1 2.23-2.22h5.56a2.23 2.23 0 0 1 2.22 2.22v1.18\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M5.84 15.85v-8.9a2.23 2.23 0 0 1 2.22-2.23h4.55c0.3 0 0.58 0.11 0.79 0.33l3.24 3.25a1.11 1.11 0 0 1 0.32 0.79v6.76a2.23 2.23 0 0 1-2.22 2.23h-6.68a2.23 2.23 0 0 1-2.22-2.23z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M16.96 9.18h-3.34a1.11 1.11 0 0 1-1.11-1.12v-3.33\"></path></g>"
4135
+ },
4136
+ "24": {
4137
+ width: 24,
4138
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.01 17.69h-1.33a2.68 2.68 0 0 1-2.68-2.68v-10.68a2.68 2.68 0 0 1 2.68-2.66h6.67a2.68 2.68 0 0 1 2.66 2.66v1.42\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.01 19.02v-10.68a2.68 2.68 0 0 1 2.66-2.68h5.46c0.36 0 0.7 0.13 0.95 0.4l3.89 3.9a1.33 1.33 0 0 1 0.38 0.95v8.11a2.68 2.68 0 0 1-2.66 2.68h-8.02a2.68 2.68 0 0 1-2.66-2.68z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M20.35 11.02h-4.01a1.33 1.33 0 0 1-1.33-1.35v-3.99\"></path></g>"
4139
+ },
4140
+ "32": {
4141
+ width: 32,
4142
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.32 23.53h-1.77a3.56 3.56 0 0 1-3.56-3.57v-14.2a3.56 3.56 0 0 1 3.56-3.54h8.88a3.56 3.56 0 0 1 3.53 3.54v1.89\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.32 25.3v-14.21a3.56 3.56 0 0 1 3.54-3.56h7.26c0.48 0 0.93 0.17 1.27 0.53l5.17 5.19a1.77 1.77 0 0 1 0.51 1.26v10.79a3.56 3.56 0 0 1-3.54 3.56h-10.67a3.56 3.56 0 0 1-3.54-3.56z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M27.07 14.66h-5.34a1.77 1.77 0 0 1-1.77-1.8v-5.31\"></path></g>"
4143
+ }
4144
+ }
4145
+ };
4146
+ const fill = {
4147
+ name: "fill",
4148
+ keywords: [
4149
+ "drop",
4150
+ "color",
4151
+ "paint",
4152
+ "fill",
4153
+ "bucket"
4154
+ ],
4155
+ heights: {
4156
+ "16": {
4157
+ width: 16,
4158
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M13.69 10.8c-0.19-0.19-0.37-0.39-0.55-0.62a0.46 0.46 0 0 0-0.69 0c-0.18 0.22-0.37 0.42-0.56 0.62-0.6 0.63-1.21 1.28-1.21 2.41 0 1.18 0.95 2.14 2.11 2.14s2.11-0.96 2.12-2.14c0-1.14-0.62-1.79-1.22-2.41z\"></path><path fill=\"currentColor\" d=\"M12.87 7.51l-6.11-7.27a0.67 0.67 0 0 0-1.02 0.86l0.77 0.92-4.72 3.86a2.45 2.45 0 0 0-0.34 3.45l2.63 3.19a2.43 2.43 0 0 0 1.9 0.9c0.57 0 1.12-0.2 1.57-0.57l5.24-4.4a0.67 0.67 0 0 0 0.08-0.94z m-5.5-4.47l3.43 4.08h-8.33c0.05-0.07 0.1-0.15 0.16-0.2l4.74-3.88z\"></path></g>"
4159
+ },
4160
+ "20": {
4161
+ width: 20,
4162
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M17.08 13.47c-0.23-0.24-0.47-0.49-0.69-0.77a0.57 0.57 0 0 0-0.87 0c-0.22 0.28-0.46 0.53-0.69 0.77-0.74 0.78-1.51 1.6-1.51 3.01 0 1.47 1.18 2.67 2.64 2.67s2.64-1.2 2.63-2.67c0-1.42-0.77-2.23-1.51-3.01z\"></path><path fill=\"currentColor\" d=\"M16.06 9.36l-7.63-9.06a0.83 0.83 0 0 0-1.27 1.07l0.97 1.15-5.9 4.81a3.06 3.06 0 0 0-0.43 4.3l3.29 3.99a3.03 3.03 0 0 0 2.37 1.12c0.72 0 1.4-0.25 1.96-0.71l6.53-5.49a0.83 0.83 0 0 0 0.11-1.18z m-6.86-5.57l4.28 5.09h-10.4c0.07-0.09 0.12-0.18 0.21-0.26l5.91-4.83z\"></path></g>"
4163
+ },
4164
+ "24": {
4165
+ width: 24,
4166
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M20.46 16.14c-0.28-0.29-0.56-0.59-0.82-0.93a0.69 0.69 0 0 0-1.04 0c-0.27 0.33-0.55 0.63-0.83 0.93-0.89 0.94-1.81 1.91-1.81 3.61 0 1.76 1.42 3.19 3.16 3.19s3.16-1.43 3.16-3.19c0-1.7-0.92-2.67-1.82-3.61z\"></path><path fill=\"currentColor\" d=\"M19.24 11.22l-9.13-10.86a1 1 0 0 0-1.53 1.28l1.16 1.38-7.07 5.77a3.67 3.67 0 0 0-0.51 5.15l3.94 4.78a3.63 3.63 0 0 0 2.84 1.34c0.86 0 1.68-0.3 2.35-0.86l7.83-6.58a1 1 0 0 0 0.12-1.4z m-8.22-6.68l5.13 6.1h-12.46c0.08-0.11 0.14-0.22 0.25-0.31l7.08-5.79z\"></path></g>"
4167
+ },
4168
+ "32": {
4169
+ width: 32,
4170
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M27.39 21.59c-0.37-0.39-0.75-0.79-1.11-1.23a0.92 0.92 0 0 0-1.39 0c-0.36 0.45-0.74 0.85-1.1 1.23-1.19 1.26-2.43 2.56-2.43 4.84 0 2.36 1.9 4.28 4.23 4.27s4.23-1.92 4.23-4.27c0-2.28-1.23-3.58-2.43-4.84z\"></path><path fill=\"currentColor\" d=\"M25.75 15.01l-12.23-14.53a1.34 1.34 0 0 0-2.04 1.71l1.55 1.85-9.45 7.72a4.91 4.91 0 0 0-0.69 6.9l5.28 6.39a4.86 4.86 0 0 0 3.8 1.8c1.15 0 2.25-0.4 3.14-1.15l10.47-8.8a1.34 1.34 0 0 0 0.17-1.88z m-11-8.93l6.86 8.16h-16.68c0.11-0.14 0.19-0.29 0.34-0.41l9.48-7.75z\"></path></g>"
4171
+ }
4172
+ }
4173
+ };
4042
4174
  const fingerprint = {
4043
4175
  name: "fingerprint",
4044
4176
  keywords: [
@@ -4305,6 +4437,19 @@ const gift = {
4305
4437
  }
4306
4438
  }
4307
4439
  };
4440
+ const google = {
4441
+ name: "google",
4442
+ keywords: [
4443
+ "logo",
4444
+ "google"
4445
+ ],
4446
+ heights: {
4447
+ "32": {
4448
+ width: 32,
4449
+ path: "<g fill=\"currentColor\"><path d=\"M29.44,16.318c0-.993-.089-1.947-.255-2.864h-13.185v5.422h7.535c-.331,1.744-1.324,3.22-2.813,4.213v3.525h4.544c2.647-2.444,4.175-6.033,4.175-10.296Z\" opacity=\".4\"></path><path d=\"M16,30c3.78,0,6.949-1.247,9.265-3.385l-4.544-3.525c-1.247,.84-2.838,1.349-4.722,1.349-3.64,0-6.733-2.456-7.84-5.765l-2.717,2.09-1.941,1.525c2.304,4.569,7.025,7.713,12.498,7.713Z\"></path><path d=\"M8.16,18.66c-.28-.84-.445-1.731-.445-2.66s.165-1.82,.445-2.66v-3.615H3.502c-.955,1.884-1.502,4.009-1.502,6.275s.547,4.391,1.502,6.275h3.332s1.327-3.615,1.327-3.615Z\" opacity=\".4\"></path><path d=\"M16,7.575c2.062,0,3.895,.713,5.358,2.087l4.009-4.009c-2.431-2.265-5.587-3.653-9.367-3.653-5.473,0-10.195,3.144-12.498,7.725l4.658,3.615c1.107-3.309,4.2-5.765,7.84-5.765Z\"></path></g>"
4450
+ }
4451
+ }
4452
+ };
4308
4453
  const greece = {
4309
4454
  name: "greece",
4310
4455
  keywords: [
@@ -4606,6 +4751,19 @@ const indonesia = {
4606
4751
  }
4607
4752
  }
4608
4753
  };
4754
+ const instagram = {
4755
+ name: "instagram",
4756
+ keywords: [
4757
+ "logo",
4758
+ "instagram"
4759
+ ],
4760
+ heights: {
4761
+ "32": {
4762
+ width: 32,
4763
+ path: "<g fill=\"currentColor\"><path d=\"M10.202,2.098c-1.49,.07-2.507,.308-3.396,.657-.92,.359-1.7,.84-2.477,1.619-.776,.779-1.254,1.56-1.61,2.481-.345,.891-.578,1.909-.644,3.4-.066,1.49-.08,1.97-.073,5.771s.024,4.278,.096,5.772c.071,1.489,.308,2.506,.657,3.396,.359,.92,.84,1.7,1.619,2.477,.779,.776,1.559,1.253,2.483,1.61,.89,.344,1.909,.579,3.399,.644,1.49,.065,1.97,.08,5.771,.073,3.801-.007,4.279-.024,5.773-.095s2.505-.309,3.395-.657c.92-.36,1.701-.84,2.477-1.62s1.254-1.561,1.609-2.483c.345-.89,.579-1.909,.644-3.398,.065-1.494,.081-1.971,.073-5.773s-.024-4.278-.095-5.771-.308-2.507-.657-3.397c-.36-.92-.84-1.7-1.619-2.477s-1.561-1.254-2.483-1.609c-.891-.345-1.909-.58-3.399-.644s-1.97-.081-5.772-.074-4.278,.024-5.771,.096m.164,25.309c-1.365-.059-2.106-.286-2.6-.476-.654-.252-1.12-.557-1.612-1.044s-.795-.955-1.05-1.608c-.192-.494-.423-1.234-.487-2.599-.069-1.475-.084-1.918-.092-5.656s.006-4.18,.071-5.656c.058-1.364,.286-2.106,.476-2.6,.252-.655,.556-1.12,1.044-1.612s.955-.795,1.608-1.05c.493-.193,1.234-.422,2.598-.487,1.476-.07,1.919-.084,5.656-.092,3.737-.008,4.181,.006,5.658,.071,1.364,.059,2.106,.285,2.599,.476,.654,.252,1.12,.555,1.612,1.044s.795,.954,1.051,1.609c.193,.492,.422,1.232,.486,2.597,.07,1.476,.086,1.919,.093,5.656,.007,3.737-.006,4.181-.071,5.656-.06,1.365-.286,2.106-.476,2.601-.252,.654-.556,1.12-1.045,1.612s-.955,.795-1.608,1.05c-.493,.192-1.234,.422-2.597,.487-1.476,.069-1.919,.084-5.657,.092s-4.18-.007-5.656-.071M21.779,8.517c.002,.928,.755,1.679,1.683,1.677s1.679-.755,1.677-1.683c-.002-.928-.755-1.679-1.683-1.677,0,0,0,0,0,0-.928,.002-1.678,.755-1.677,1.683m-12.967,7.496c.008,3.97,3.232,7.182,7.202,7.174s7.183-3.232,7.176-7.202c-.008-3.97-3.233-7.183-7.203-7.175s-7.182,3.233-7.174,7.203m2.522-.005c-.005-2.577,2.08-4.671,4.658-4.676,2.577-.005,4.671,2.08,4.676,4.658,.005,2.577-2.08,4.671-4.658,4.676-2.577,.005-4.671-2.079-4.676-4.656h0\"></path></g>"
4764
+ }
4765
+ }
4766
+ };
4609
4767
  const iran = {
4610
4768
  name: "iran",
4611
4769
  keywords: [
@@ -5052,6 +5210,19 @@ const link = {
5052
5210
  }
5053
5211
  }
5054
5212
  };
5213
+ const linkedin = {
5214
+ name: "linkedin",
5215
+ keywords: [
5216
+ "logo",
5217
+ "linkedin"
5218
+ ],
5219
+ heights: {
5220
+ "32": {
5221
+ width: 32,
5222
+ path: "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M26.111,3H5.889c-1.595,0-2.889,1.293-2.889,2.889V26.111c0,1.595,1.293,2.889,2.889,2.889H26.111c1.595,0,2.889-1.293,2.889-2.889V5.889c0-1.595-1.293-2.889-2.889-2.889ZM10.861,25.389h-3.877V12.87h3.877v12.519Zm-1.957-14.158c-1.267,0-2.293-1.034-2.293-2.31s1.026-2.31,2.293-2.31,2.292,1.034,2.292,2.31-1.026,2.31-2.292,2.31Zm16.485,14.158h-3.858v-6.571c0-1.802-.685-2.809-2.111-2.809-1.551,0-2.362,1.048-2.362,2.809v6.571h-3.718V12.87h3.718v1.686s1.118-2.069,3.775-2.069,4.556,1.621,4.556,4.975v7.926Z\"></path></g>"
5223
+ }
5224
+ }
5225
+ };
5055
5226
  const lithuania = {
5056
5227
  name: "lithuania",
5057
5228
  keywords: [
@@ -5139,6 +5310,22 @@ const madagascar = {
5139
5310
  }
5140
5311
  }
5141
5312
  };
5313
+ const maestro = {
5314
+ name: "maestro",
5315
+ keywords: [
5316
+ "credit",
5317
+ "card",
5318
+ "debit",
5319
+ "maestro"
5320
+ ],
5321
+ style: "colored",
5322
+ heights: {
5323
+ "32": {
5324
+ width: 32,
5325
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#7375cf\" stroke-width=\"0\" d=\"M13.597 11.677H18.407V20.32H13.597z\"></path><path fill=\"#eb001b\" stroke-width=\"0\" d=\"m13.902,15.999c0-1.68.779-3.283,2.092-4.322-2.382-1.878-5.849-1.466-7.727.932-1.863,2.382-1.451,5.833.947,7.712,2,1.573,4.795,1.573,6.795,0-1.329-1.038-2.107-2.642-2.107-4.322Z\"></path><path fill=\"#00a2e5\" stroke-width=\"0\" d=\"m24.897,15.999c0,3.039-2.459,5.497-5.497,5.497-1.237,0-2.428-.412-3.39-1.176,2.382-1.878,2.795-5.329.916-7.727-.275-.336-.58-.657-.916-.916,2.382-1.878,5.849-1.466,7.712.932.764.962,1.176,2.153,1.176,3.39Z\"></path></g>"
5326
+ }
5327
+ }
5328
+ };
5142
5329
  const magnifier = {
5143
5330
  name: "magnifier",
5144
5331
  keywords: [
@@ -5280,6 +5467,22 @@ const martinique = {
5280
5467
  }
5281
5468
  }
5282
5469
  };
5470
+ const mastercard = {
5471
+ name: "mastercard",
5472
+ keywords: [
5473
+ "credit",
5474
+ "card",
5475
+ "debit",
5476
+ "mastercard"
5477
+ ],
5478
+ style: "colored",
5479
+ heights: {
5480
+ "32": {
5481
+ width: 32,
5482
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#141413\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#ff5f00\" stroke-width=\"0\" d=\"M13.597 11.677H18.407V20.32H13.597z\"></path><path fill=\"#eb001b\" stroke-width=\"0\" d=\"m13.902,15.999c0-1.68.779-3.283,2.092-4.322-2.382-1.878-5.849-1.466-7.727.932-1.863,2.382-1.451,5.833.947,7.712,2,1.573,4.795,1.573,6.795,0-1.329-1.038-2.107-2.642-2.107-4.322Z\"></path><path fill=\"#f79e1b\" stroke-width=\"0\" d=\"m24.897,15.999c0,3.039-2.459,5.497-5.497,5.497-1.237,0-2.428-.412-3.39-1.176,2.382-1.878,2.795-5.329.916-7.727-.275-.336-.58-.657-.916-.916,2.382-1.878,5.849-1.466,7.712.932.764.962,1.176,2.153,1.176,3.39Z\"></path></g>"
5483
+ }
5484
+ }
5485
+ };
5283
5486
  const mauritania = {
5284
5487
  name: "mauritania",
5285
5488
  keywords: [
@@ -5506,6 +5709,35 @@ const mongolia = {
5506
5709
  }
5507
5710
  }
5508
5711
  };
5712
+ const monitor = {
5713
+ name: "monitor",
5714
+ keywords: [
5715
+ "desktop",
5716
+ "screen",
5717
+ "monitor",
5718
+ "computer",
5719
+ "device",
5720
+ "display"
5721
+ ],
5722
+ heights: {
5723
+ "16": {
5724
+ width: 16,
5725
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.12 14.02a9.62 9.62 0 0 1 5.78 0\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M8.01 11.35v2.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M12.68 2.45h-9.34a1.78 1.78 0 0 0-1.78 1.78v5.34a1.78 1.78 0 0 0 1.78 1.78h9.34a1.78 1.78 0 0 0 1.78-1.78v-5.34a1.78 1.78 0 0 0-1.78-1.78z\"></path></g>"
5726
+ },
5727
+ "20": {
5728
+ width: 20,
5729
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.38 17.48a12 12 0 0 1 7.22 0\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.99 14.15v2.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M15.82 3.05h-11.66a2.22 2.22 0 0 0-2.22 2.22v6.66a2.22 2.22 0 0 0 2.22 2.22h11.66a2.22 2.22 0 0 0 2.22-2.22v-6.66a2.22 2.22 0 0 0-2.22-2.22z\"></path></g>"
5730
+ },
5731
+ "24": {
5732
+ width: 24,
5733
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.65 20.95a14.38 14.38 0 0 1 8.64 0\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M11.97 16.96v3.32\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M18.95 3.66h-13.96a2.66 2.66 0 0 0-2.66 2.66v7.98a2.66 2.66 0 0 0 2.66 2.66h13.96a2.66 2.66 0 0 0 2.66-2.66v-7.98a2.66 2.66 0 0 0-2.66-2.66z\"></path></g>"
5734
+ },
5735
+ "32": {
5736
+ width: 32,
5737
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.23 28.04a19.25 19.25 0 0 1 11.57 0\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.02 22.7v4.45\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M25.37 4.9h-18.7a3.56 3.56 0 0 0-3.56 3.56v10.68a3.56 3.56 0 0 0 3.56 3.56h18.7a3.56 3.56 0 0 0 3.56-3.56v-10.68a3.56 3.56 0 0 0-3.56-3.56z\"></path></g>"
5738
+ }
5739
+ }
5740
+ };
5509
5741
  const montenegro = {
5510
5742
  name: "montenegro",
5511
5743
  keywords: [
@@ -5800,6 +6032,22 @@ const paraguay = {
5800
6032
  }
5801
6033
  }
5802
6034
  };
6035
+ const paypal = {
6036
+ name: "paypal",
6037
+ keywords: [
6038
+ "credit",
6039
+ "card",
6040
+ "debit",
6041
+ "paypal"
6042
+ ],
6043
+ style: "colored",
6044
+ heights: {
6045
+ "32": {
6046
+ width: 32,
6047
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#003087\" stroke-width=\"0\" d=\"m5.03,12.792c-.069,0-.128.05-.139.119l-.801,5.082c-.011.071.037.138.108.149.007.001.013.002.02.002h.95c.069,0,.128-.05.139-.119l.235-1.492c.011-.068.07-.119.139-.119h.864c1.01,0,1.866-.737,2.023-1.735.158-1.007-.629-1.884-1.743-1.886h-1.796Zm.924,1.134h.691c.569,0,.754.336.696.707-.059.372-.346.646-.897.646h-.704l.213-1.353Zm4.548.345c-.24,0-.516.05-.826.179-.711.296-1.053.909-1.198,1.355,0,0-.462,1.362.581,2.111,0,0,.967.721,2.056-.044l-.019.119c-.011.071.037.138.108.149.007.001.013.002.02.002h.902c.069,0,.128-.05.139-.119l.549-3.48c.011-.071-.037-.138-.108-.149-.007-.001-.013-.002-.02-.002h-.902c-.069,0-.128.05-.139.119l-.029.187s-.394-.43-1.114-.428h0Zm.029,1.099c.104,0,.198.014.283.042.389.125.61.499.546.904-.079.499-.488.867-1.013.867-.103,0-.198-.014-.283-.042-.389-.125-.611-.499-.547-.904.079-.499.489-.867,1.014-.867h0Z\"></path><path fill=\"#0070e0\" stroke-width=\"0\" d=\"m18.022,12.792c-.069,0-.128.05-.139.119l-.801,5.082c-.011.071.037.138.108.149.007.001.013.002.02.002h.95c.069,0,.128-.05.139-.119l.235-1.492c.011-.068.07-.119.139-.119h.864c1.01,0,1.866-.737,2.023-1.735.158-1.007-.628-1.884-1.743-1.886h-1.796Zm.924,1.134h.691c.569,0,.754.336.696.707-.059.372-.346.646-.897.646h-.704l.213-1.353Zm4.548.345c-.24,0-.516.05-.826.179-.711.296-1.053.909-1.198,1.355,0,0-.461,1.362.581,2.111,0,0,.967.721,2.056-.044l-.019.119c-.011.071.037.138.108.149.007.001.013.002.02.002h.902c.069,0,.128-.05.139-.119l.549-3.48c.011-.071-.037-.138-.108-.149-.007-.001-.014-.002-.02-.002h-.902c-.069,0-.128.05-.139.119l-.029.187s-.394-.43-1.114-.428h0Zm.029,1.099c.104,0,.198.014.283.042.389.125.61.499.546.904-.079.499-.488.867-1.013.867-.103,0-.198-.014-.283-.042-.389-.125-.611-.499-.547-.904.079-.499.489-.867,1.014-.867h0Z\"></path><path fill=\"#003087\" stroke-width=\"0\" d=\"m13.243,14.394c-.072,0-.122.07-.101.138l.989,3.069-.894,1.446c-.043.07.007.161.09.161h1.057c.061,0,.118-.032.15-.085l2.762-4.569c.042-.07-.008-.16-.09-.16h-1.057c-.062,0-.12.033-.151.086l-1.087,1.836-.552-1.822c-.018-.059-.073-.1-.135-.1h-.981Z\"></path><path fill=\"#0070e0\" stroke-width=\"0\" d=\"m26.831,12.792c-.069,0-.128.05-.139.119l-.802,5.082c-.011.071.037.138.108.149.007.001.014.002.02.002h.95c.069,0,.128-.05.139-.119l.801-5.082c.011-.071-.037-.138-.108-.149-.007-.001-.013-.002-.02-.002h-.95Z\"></path></g>"
6048
+ }
6049
+ }
6050
+ };
5803
6051
  const percentage = {
5804
6052
  name: "percentage",
5805
6053
  keywords: [
@@ -5938,6 +6186,19 @@ const pin = {
5938
6186
  }
5939
6187
  }
5940
6188
  };
6189
+ const pinterest = {
6190
+ name: "pinterest",
6191
+ keywords: [
6192
+ "logo",
6193
+ "pinterest"
6194
+ ],
6195
+ heights: {
6196
+ "32": {
6197
+ width: 32,
6198
+ path: "<g fill=\"currentColor\"><path d=\"M16,2C8.268,2,2,8.268,2,16c0,5.931,3.69,11.001,8.898,13.041-.122-1.108-.233-2.811,.049-4.02,.254-1.093,1.642-6.959,1.642-6.959,0,0-.419-.839-.419-2.079,0-1.947,1.128-3.4,2.533-3.4,1.194,0,1.771,.897,1.771,1.972,0,1.201-.765,2.997-1.16,4.661-.33,1.393,.699,2.53,2.073,2.53,2.488,0,4.401-2.624,4.401-6.411,0-3.352-2.409-5.696-5.848-5.696-3.983,0-6.322,2.988-6.322,6.076,0,1.203,.464,2.494,1.042,3.195,.114,.139,.131,.26,.097,.402-.106,.442-.342,1.393-.389,1.588-.061,.256-.203,.311-.468,.187-1.749-.814-2.842-3.37-2.842-5.424,0-4.416,3.209-8.472,9.25-8.472,4.857,0,8.631,3.461,8.631,8.086,0,4.825-3.042,8.708-7.265,8.708-1.419,0-2.752-.737-3.209-1.608,0,0-.702,2.673-.872,3.328-.316,1.216-1.169,2.74-1.74,3.67,1.31,.406,2.702,.624,4.145,.624,7.732,0,14-6.268,14-14S23.732,2,16,2Z\"></path></g>"
6199
+ }
6200
+ }
6201
+ };
5941
6202
  const pinwheel = {
5942
6203
  name: "pinwheel",
5943
6204
  keywords: [
@@ -6427,6 +6688,19 @@ const singapore = {
6427
6688
  }
6428
6689
  }
6429
6690
  };
6691
+ const slack = {
6692
+ name: "slack",
6693
+ keywords: [
6694
+ "logo",
6695
+ "slack"
6696
+ ],
6697
+ heights: {
6698
+ "32": {
6699
+ width: 32,
6700
+ path: "<g fill=\"currentColor\"><path d=\"M8.463,19.43c0,1.503-1.228,2.731-2.731,2.731s-2.731-1.228-2.731-2.731,1.228-2.731,2.731-2.731h2.731v2.731Z\"></path><path d=\"M9.839,19.43c0-1.503,1.228-2.731,2.731-2.731s2.731,1.228,2.731,2.731v6.839c0,1.503-1.228,2.731-2.731,2.731s-2.731-1.228-2.731-2.731c0,0,0-6.839,0-6.839Z\"></path><path d=\"M12.57,8.463c-1.503,0-2.731-1.228-2.731-2.731s1.228-2.731,2.731-2.731,2.731,1.228,2.731,2.731v2.731h-2.731Z\"></path><path d=\"M12.57,9.839c1.503,0,2.731,1.228,2.731,2.731s-1.228,2.731-2.731,2.731H5.731c-1.503,0-2.731-1.228-2.731-2.731s1.228-2.731,2.731-2.731c0,0,6.839,0,6.839,0Z\"></path><path d=\"M23.537,12.57c0-1.503,1.228-2.731,2.731-2.731s2.731,1.228,2.731,2.731-1.228,2.731-2.731,2.731h-2.731v-2.731Z\"></path><path d=\"M22.161,12.57c0,1.503-1.228,2.731-2.731,2.731s-2.731-1.228-2.731-2.731V5.731c0-1.503,1.228-2.731,2.731-2.731s2.731,1.228,2.731,2.731v6.839Z\"></path><path d=\"M19.43,23.537c1.503,0,2.731,1.228,2.731,2.731s-1.228,2.731-2.731,2.731-2.731-1.228-2.731-2.731v-2.731h2.731Z\"></path><path d=\"M19.43,22.161c-1.503,0-2.731-1.228-2.731-2.731s1.228-2.731,2.731-2.731h6.839c1.503,0,2.731,1.228,2.731,2.731s-1.228,2.731-2.731,2.731h-6.839Z\"></path></g>"
6701
+ }
6702
+ }
6703
+ };
6430
6704
  const slovakia = {
6431
6705
  name: "slovakia",
6432
6706
  keywords: [
@@ -7038,6 +7312,52 @@ const vietnam = {
7038
7312
  }
7039
7313
  }
7040
7314
  };
7315
+ const visa = {
7316
+ name: "visa",
7317
+ keywords: [
7318
+ "credit",
7319
+ "card",
7320
+ "debit",
7321
+ "visa"
7322
+ ],
7323
+ style: "colored",
7324
+ heights: {
7325
+ "32": {
7326
+ width: 32,
7327
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#1434cb\" stroke-width=\"0\" d=\"m13.392,12.624l-2.838,6.77h-1.851l-1.397-5.403c-.085-.332-.158-.454-.416-.595-.421-.229-1.117-.443-1.728-.576l.041-.196h2.98c.38,0,.721.253.808.69l.738,3.918,1.822-4.608h1.84Z\"></path><path fill=\"#1434cb\" stroke-width=\"0\" d=\"m20.646,17.183c.008-1.787-2.47-1.886-2.453-2.684.005-.243.237-.501.743-.567.251-.032.943-.058,1.727.303l.307-1.436c-.421-.152-.964-.299-1.638-.299-1.732,0-2.95.92-2.959,2.238-.011.975.87,1.518,1.533,1.843.683.332.912.545.909.841-.005.454-.545.655-1.047.663-.881.014-1.392-.238-1.799-.428l-.318,1.484c.41.188,1.165.351,1.947.359,1.841,0,3.044-.909,3.05-2.317\"></path><path fill=\"#1434cb\" stroke-width=\"0\" d=\"m25.423,12.624h-1.494c-.337,0-.62.195-.746.496l-2.628,6.274h1.839l.365-1.011h2.247l.212,1.011h1.62l-1.415-6.77Zm-2.16,4.372l.922-2.542.53,2.542h-1.452Z\"></path><path fill=\"#1434cb\" stroke-width=\"0\" d=\"M15.894 12.624L14.446 19.394 12.695 19.394 14.143 12.624 15.894 12.624z\"></path></g>"
7328
+ }
7329
+ }
7330
+ };
7331
+ const voicemail = {
7332
+ name: "voicemail",
7333
+ keywords: [
7334
+ "message",
7335
+ "phone",
7336
+ "audio",
7337
+ "voice",
7338
+ "mail",
7339
+ "voicemail",
7340
+ "recording"
7341
+ ],
7342
+ heights: {
7343
+ "16": {
7344
+ width: 16,
7345
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M3.56 5.12a2.89 2.89 0 1 0 0 5.78 2.89 2.89 0 1 0 0-5.78z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M12.46 5.12a2.89 2.89 0 1 0 0 5.78 2.89 2.89 0 1 0 0-5.78z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M3.34 10.9h9.34\"></path></g>"
7346
+ },
7347
+ "20": {
7348
+ width: 20,
7349
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M4.44 6.38a3.61 3.61 0 1 0 0 7.22 3.61 3.61 0 1 0 0-7.22z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M15.54 6.38a3.61 3.61 0 1 0 0 7.22 3.61 3.61 0 1 0 0-7.22z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M4.16 13.6h11.66\"></path></g>"
7350
+ },
7351
+ "24": {
7352
+ width: 24,
7353
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M5.32 7.65a4.32 4.32 0 1 0 0 8.64 4.32 4.32 0 1 0 0-8.64z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M18.62 7.65a4.32 4.32 0 1 0 0 8.64 4.32 4.32 0 1 0 0-8.64z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M4.99 16.29h13.96\"></path></g>"
7354
+ },
7355
+ "32": {
7356
+ width: 32,
7357
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7.12 10.23a5.79 5.79 0 1 0 0 11.57 5.79 5.79 0 1 0 0-11.57z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.92 10.23a5.79 5.79 0 1 0 0 11.57 5.79 5.79 0 1 0 0-11.57z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.67 21.8h18.7\"></path></g>"
7358
+ }
7359
+ }
7360
+ };
7041
7361
  const volume = {
7042
7362
  name: "volume",
7043
7363
  keywords: [
@@ -7227,6 +7547,20 @@ const yoga = {
7227
7547
  }
7228
7548
  }
7229
7549
  };
7550
+ const youtube = {
7551
+ name: "youtube",
7552
+ keywords: [
7553
+ "logo",
7554
+ "youtube",
7555
+ "google"
7556
+ ],
7557
+ heights: {
7558
+ "32": {
7559
+ width: 32,
7560
+ path: "<g fill=\"currentColor\"><path d=\"M31.331,8.248c-.368-1.386-1.452-2.477-2.829-2.848-2.496-.673-12.502-.673-12.502-.673,0,0-10.007,0-12.502,.673-1.377,.37-2.461,1.462-2.829,2.848-.669,2.512-.669,7.752-.669,7.752,0,0,0,5.241,.669,7.752,.368,1.386,1.452,2.477,2.829,2.847,2.496,.673,12.502,.673,12.502,.673,0,0,10.007,0,12.502-.673,1.377-.37,2.461-1.462,2.829-2.847,.669-2.512,.669-7.752,.669-7.752,0,0,0-5.24-.669-7.752ZM12.727,20.758V11.242l8.364,4.758-8.364,4.758Z\"></path></g>"
7561
+ }
7562
+ }
7563
+ };
7230
7564
  const zambia = {
7231
7565
  name: "zambia",
7232
7566
  keywords: [
@@ -7375,6 +7709,24 @@ var data = {
7375
7709
  },
7376
7710
  albania: albania,
7377
7711
  algeria: algeria,
7712
+ "american-express": {
7713
+ name: "american-express",
7714
+ keywords: [
7715
+ "credit",
7716
+ "card",
7717
+ "american",
7718
+ "express",
7719
+ "amex",
7720
+ "debit"
7721
+ ],
7722
+ style: "colored",
7723
+ heights: {
7724
+ "32": {
7725
+ width: 32,
7726
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#0f70ce\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path fill=\"#fff\" stroke-width=\"0\" d=\"m27.026,9l-.719,1.965-.708-1.965h-3.885v2.582l-1.136-2.582h-3.119l-3.259,7.409h2.637v6.591h8.097l1.316-1.458,1.322,1.458h2.244c.112-.314.184-.647.184-1v-1.041l-1.58-1.698,1.58-1.655v-7.606c0-.353-.072-.686-.184-1h-2.79Z\"></path><path fill=\"#0f70ce\" stroke-width=\"0\" d=\"m17.679,14.433h2.61l.502,1.148h1.78l-2.531-5.754h-2.039l-2.531,5.754h1.734l.477-1.148Zm1.307-3.135l.775,1.844h-1.535l.761-1.844Z\"></path><path fill=\"#0f70ce\" stroke-width=\"0\" d=\"M22.542 9.827L25.018 9.827 26.302 13.39 27.604 9.827 30 9.827 30 15.581 28.45 15.581 28.45 11.603 26.977 15.581 25.608 15.581 24.124 11.631 24.124 15.581 22.542 15.581 22.542 9.827z\"></path><path fill=\"#0f70ce\" stroke-width=\"0\" d=\"M19.24 20.82L19.24 19.944 22.484 19.944 22.484 18.624 19.24 18.624 19.24 17.748 22.565 17.748 22.565 16.409 17.664 16.409 17.664 22.173 22.565 22.173 22.565 20.82 19.24 20.82z\"></path><path fill=\"#0f70ce\" stroke-width=\"0\" d=\"M24.638 16.409L26.271 18.234 27.968 16.409 30 16.409 27.283 19.254 30 22.173 27.939 22.173 26.249 20.309 24.567 22.173 22.537 22.173 25.272 19.275 22.537 16.409 24.638 16.409z\"></path><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path></g>"
7727
+ }
7728
+ }
7729
+ },
7378
7730
  andorra: andorra,
7379
7731
  angola: angola,
7380
7732
  anguilla: anguilla,
@@ -7394,6 +7746,7 @@ var data = {
7394
7746
  }
7395
7747
  }
7396
7748
  },
7749
+ apple: apple,
7397
7750
  argentina: argentina,
7398
7751
  armenia: armenia,
7399
7752
  "arrow-bold-left-1": {
@@ -8211,14 +8564,31 @@ var data = {
8211
8564
  }
8212
8565
  },
8213
8566
  bangladesh: bangladesh,
8214
- "banking-mobile": {
8215
- name: "banking-mobile",
8567
+ "bank-account": {
8568
+ name: "bank-account",
8216
8569
  keywords: [
8217
- "banking-mobile",
8218
- "app",
8219
- "online",
8220
- "payment",
8221
- "dollar",
8570
+ "credit",
8571
+ "card",
8572
+ "bank",
8573
+ "account",
8574
+ "debit"
8575
+ ],
8576
+ style: "colored",
8577
+ heights: {
8578
+ "32": {
8579
+ width: 32,
8580
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#e6e6e6\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" isolation=\"isolate\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" isolation=\"isolate\" opacity=\".2\"></path><path fill=\"#1a1a1a\" stroke-width=\"0\" d=\"m21.5,21h-11c-.2764,0-.5.2236-.5.5s.2236.5.5.5h11c.2764,0,.5-.2236.5-.5s-.2236-.5-.5-.5Z\" opacity=\".5\"></path><path fill=\"#1a1a1a\" stroke-width=\"0\" d=\"m21.6694,13.6787l-4.8486-3.2324c-.499-.332-1.1426-.332-1.6416,0l-4.8491,3.2324c-.2661.1777-.3823.5029-.2896.8096.0928.3062.3701.5117.6899.5117h1.0195v4h-.75c-.2764,0-.5.2236-.5.5s.2236.5.5.5h10c.2764,0,.5-.2236.5-.5s-.2236-.5-.5-.5h-.75v-4h1.0195c.3198,0,.5972-.2056.6899-.5117.0928-.3066-.0234-.6318-.29-.8096Zm-7.4194,5.3213h-1.5v-4h1.5v4Zm2.5,0h-1.5v-4h1.5v4Zm-.75-5.5c-.4142,0-.75-.3358-.75-.75s.3358-.75.75-.75.75.3358.75.75-.3358.75-.75.75Zm3.25,5.5h-1.5v-4h1.5v4Z\" opacity=\".5\"></path></g>"
8581
+ }
8582
+ }
8583
+ },
8584
+ "banking-mobile": {
8585
+ name: "banking-mobile",
8586
+ keywords: [
8587
+ "banking-mobile",
8588
+ "app",
8589
+ "online",
8590
+ "payment",
8591
+ "dollar",
8222
8592
  "money",
8223
8593
  "mobile",
8224
8594
  "banking"
@@ -8316,6 +8686,7 @@ var data = {
8316
8686
  }
8317
8687
  }
8318
8688
  },
8689
+ bitcoin: bitcoin,
8319
8690
  blog: blog,
8320
8691
  bolivia: bolivia,
8321
8692
  "bolt-lightning": {
@@ -8478,6 +8849,37 @@ var data = {
8478
8849
  }
8479
8850
  },
8480
8851
  botswana: botswana,
8852
+ "box-archive-1": {
8853
+ name: "box-archive-1",
8854
+ keywords: [
8855
+ "box",
8856
+ "storage",
8857
+ "email",
8858
+ "mail",
8859
+ "mailbox",
8860
+ "inbox",
8861
+ "drawer",
8862
+ "archive"
8863
+ ],
8864
+ heights: {
8865
+ "16": {
8866
+ width: 16,
8867
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M13.57 1.78h-11.12c-0.86 0-1.56 0.7-1.56 1.56v1.33c0 0.78 0.58 1.43 1.33 1.54v5.58a2.45 2.45 0 0 0 2.45 2.45h6.68a2.45 2.45 0 0 0 2.44-2.45v-5.58a1.55 1.55 0 0 0 1.34-1.54v-1.33c0-0.86-0.7-1.56-1.56-1.56z m-3.78 7.12h-3.56a0.67 0.67 0 0 1 0-1.33h3.56a0.67 0.67 0 0 1 0 1.33z m4-4.23a0.22 0.22 0 0 1-0.22 0.23h-11.12a0.22 0.22 0 0 1-0.23-0.23v-1.33a0.22 0.22 0 0 1 0.23-0.22h11.12a0.22 0.22 0 0 1 0.22 0.22v1.33z\"></path></g>"
8868
+ },
8869
+ "20": {
8870
+ width: 20,
8871
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M16.96 2.23h-13.9c-1.07 0-1.95 0.88-1.95 1.95v1.66c0 0.98 0.72 1.79 1.66 1.92v6.98a3.06 3.06 0 0 0 3.07 3.06h8.35a3.06 3.06 0 0 0 3.05-3.06v-6.98a1.94 1.94 0 0 0 1.67-1.92v-1.66c0-1.07-0.88-1.95-1.95-1.95z m-4.72 8.89h-4.45a0.84 0.84 0 0 1 0-1.66h4.45a0.84 0.84 0 0 1 0 1.66z m5-5.28a0.28 0.28 0 0 1-0.28 0.28h-13.9a0.28 0.28 0 0 1-0.29-0.28v-1.67a0.28 0.28 0 0 1 0.29-0.27h13.9a0.28 0.28 0 0 1 0.28 0.27v1.67z\"></path></g>"
8872
+ },
8873
+ "24": {
8874
+ width: 24,
8875
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M20.35 2.68h-16.68c-1.28 0-2.34 1.06-2.34 2.34v1.99c0 1.18 0.86 2.15 1.99 2.3v8.38a3.67 3.67 0 0 0 3.69 3.67h10.02a3.67 3.67 0 0 0 3.66-3.67v-8.38a2.33 2.33 0 0 0 2-2.3v-1.99c0-1.28-1.06-2.34-2.34-2.34z m-5.66 10.66h-5.34a1.01 1.01 0 0 1 0-1.99h5.34a1.01 1.01 0 0 1 0 1.99z m6-6.33a0.34 0.34 0 0 1-0.34 0.33h-16.68a0.34 0.34 0 0 1-0.35-0.33v-2.01a0.34 0.34 0 0 1 0.35-0.32h16.68a0.34 0.34 0 0 1 0.34 0.32v2.01z\"></path></g>"
8876
+ },
8877
+ "32": {
8878
+ width: 32,
8879
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M27.07 3.56h-22.19c-1.7 0-3.11 1.41-3.11 3.12v2.64c0 1.57 1.14 2.86 2.65 3.06v11.15a4.88 4.88 0 0 0 4.9 4.88h13.33a4.88 4.88 0 0 0 4.87-4.88v-11.15a3.1 3.1 0 0 0 2.66-3.06v-2.64c0-1.7-1.41-3.11-3.11-3.12z m-7.53 14.18h-7.1a1.34 1.34 0 0 1 0-2.64h7.1a1.34 1.34 0 0 1 0 2.64z m7.98-8.42a0.45 0.45 0 0 1-0.45 0.44h-22.19a0.45 0.45 0 0 1-0.46-0.44v-2.67a0.45 0.45 0 0 1 0.46-0.43h22.19a0.45 0.45 0 0 1 0.45 0.43v2.67z\"></path></g>"
8880
+ }
8881
+ }
8882
+ },
8481
8883
  "box-archive": {
8482
8884
  name: "box-archive",
8483
8885
  keywords: [
@@ -9429,6 +9831,38 @@ var data = {
9429
9831
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 16.91l6.67 6.67 15.58-15.57\"></path></g>"
9430
9832
  }
9431
9833
  }
9834
+ },
9835
+ "check-double": {
9836
+ name: "check-double",
9837
+ keywords: [
9838
+ "double",
9839
+ "mark",
9840
+ "tick",
9841
+ "success",
9842
+ "complete",
9843
+ "checked",
9844
+ "check",
9845
+ "approved",
9846
+ "done"
9847
+ ],
9848
+ heights: {
9849
+ "16": {
9850
+ width: 16,
9851
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M0.67 8.46l3.33 4.22 7.13-9.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.57 11.84l0.66 0.84 7.12-9.12\"></path></g>"
9852
+ },
9853
+ "20": {
9854
+ width: 20,
9855
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M0.84 10.58l4.16 5.27 8.91-11.4\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.46 14.8l0.83 1.05 8.9-11.4\"></path></g>"
9856
+ },
9857
+ "24": {
9858
+ width: 24,
9859
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M1.01 12.7l4.99 6.32 10.69-13.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M11.35 17.76l1 1.26 10.68-13.68\"></path></g>"
9860
+ },
9861
+ "32": {
9862
+ width: 32,
9863
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1.34 16.89l6.64 8.41 14.22-18.2\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.1 23.62l1.33 1.68 14.2-18.2\"></path></g>"
9864
+ }
9865
+ }
9432
9866
  },
9433
9867
  "chevron-down": {
9434
9868
  name: "chevron-down",
@@ -10137,6 +10571,36 @@ var data = {
10137
10571
  }
10138
10572
  },
10139
10573
  clipboard: clipboard,
10574
+ "clipboard-content": {
10575
+ name: "clipboard-content",
10576
+ keywords: [
10577
+ "text",
10578
+ "list",
10579
+ "note",
10580
+ "paper",
10581
+ "content",
10582
+ "clipboard",
10583
+ "task"
10584
+ ],
10585
+ heights: {
10586
+ "16": {
10587
+ width: 16,
10588
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.56 2.45h-0.89a1.78 1.78 0 0 0-1.78 1.78v8.45a1.78 1.78 0 0 0 1.78 1.78h6.68a1.78 1.78 0 0 0 1.78-1.78v-8.45a1.78 1.78 0 0 0-1.78-1.78h-0.89\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M6.45 1.11h3.12q0.89 0 0.89 0.89v0.89q0 0.89-0.89 0.89h-3.12q-0.89 0-0.89-0.89v-0.89q0-0.89 0.89-0.89z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.56 10.46h4.9\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.56 7.79h4.9\"></path></g>"
10589
+ },
10590
+ "20": {
10591
+ width: 20,
10592
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.95 3.06h-1.11a2.23 2.23 0 0 0-2.23 2.23v10.56a2.23 2.23 0 0 0 2.23 2.23h8.35a2.23 2.23 0 0 0 2.22-2.23v-10.56a2.23 2.23 0 0 0-2.22-2.23h-1.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M8.06 1.39h3.9q1.11 0 1.11 1.11v1.11q0 1.11-1.11 1.12h-3.9q-1.11 0-1.11-1.12v-1.11q0-1.11 1.11-1.11z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.95 13.08h6.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.95 9.74h6.12\"></path></g>"
10593
+ },
10594
+ "24": {
10595
+ width: 24,
10596
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.34 3.67h-1.33a2.68 2.68 0 0 0-2.68 2.68v12.67a2.68 2.68 0 0 0 2.68 2.68h10.02a2.68 2.68 0 0 0 2.66-2.68v-12.67a2.68 2.68 0 0 0-2.66-2.68h-1.35\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M9.67 1.67h4.68q1.33 0 1.33 1.33v1.33q0 1.33-1.33 1.35h-4.68q-1.33 0-1.33-1.35v-1.33q0-1.33 1.33-1.33z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.34 15.7h7.34\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.34 11.69h7.34\"></path></g>"
10597
+ },
10598
+ "32": {
10599
+ width: 32,
10600
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.09 4.88h-1.77a3.56 3.56 0 0 0-3.56 3.57v16.85a3.56 3.56 0 0 0 3.56 3.56h13.33a3.56 3.56 0 0 0 3.54-3.56v-16.85a3.56 3.56 0 0 0-3.54-3.57h-1.8\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12.86 2.22h6.23q1.77 0 1.76 1.77v1.77q0 1.77-1.76 1.79h-6.23q-1.77 0-1.77-1.79v-1.77q0-1.77 1.77-1.77z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.09 20.88h9.76\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.09 15.55h9.76\"></path></g>"
10601
+ }
10602
+ }
10603
+ },
10140
10604
  clock: clock,
10141
10605
  "clock-minus": {
10142
10606
  name: "clock-minus",
@@ -10307,6 +10771,22 @@ var data = {
10307
10771
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.12 12.9h25.8\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M25.37 25.37h-18.7q-3.56 0-3.56-3.56v-11.57q0-3.56 3.56-3.56h18.7q3.56 0 3.56 3.56v11.57q0 3.56-3.56 3.56z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7.57 20.02h5.33\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M22.7 20.02h1.78\"></path></g>"
10308
10772
  }
10309
10773
  }
10774
+ },
10775
+ "credit-card-front": {
10776
+ name: "credit-card-front",
10777
+ keywords: [
10778
+ "credit",
10779
+ "debit",
10780
+ "card",
10781
+ "front"
10782
+ ],
10783
+ style: "colored",
10784
+ heights: {
10785
+ "32": {
10786
+ width: 32,
10787
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#e6e6e6\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" isolation=\"isolate\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" isolation=\"isolate\" opacity=\".2\"></path><rect width=\"6\" height=\"5\" x=\"5\" y=\"11\" fill=\"#edab40\" stroke-width=\"0\" rx=\"1.5\" ry=\"1.5\"></rect><path stroke-width=\"0\" d=\"m9,20h-3.25c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h3.25c.4141,0,.75.3359.75.75s-.3359.75-.75.75Z\" isolation=\"isolate\" opacity=\".15\"></path><path stroke-width=\"0\" d=\"m14.75,20h-3.25c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h3.25c.4141,0,.75.3359.75.75s-.3359.75-.75.75Z\" isolation=\"isolate\" opacity=\".15\"></path><path stroke-width=\"0\" d=\"m20.5,20h-3.25c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h3.25c.4141,0,.75.3359.75.75s-.3359.75-.75.75Z\" isolation=\"isolate\" opacity=\".15\"></path><path stroke-width=\"0\" d=\"m26.25,20h-3.25c-.4141,0-.75-.3359-.75-.75s.3359-.75.75-.75h3.25c.4141,0,.75.3359.75.75s-.3359.75-.75.75Z\" isolation=\"isolate\" opacity=\".15\"></path></g>"
10788
+ }
10789
+ }
10310
10790
  },
10311
10791
  croatia: croatia,
10312
10792
  cuba: cuba,
@@ -10344,6 +10824,7 @@ var data = {
10344
10824
  }
10345
10825
  }
10346
10826
  },
10827
+ cvc: cvc,
10347
10828
  cyprus: cyprus,
10348
10829
  czechia: czechia,
10349
10830
  deaf: deaf,
@@ -10364,6 +10845,24 @@ var data = {
10364
10845
  }
10365
10846
  },
10366
10847
  denmark: denmark,
10848
+ "diners-club": {
10849
+ name: "diners-club",
10850
+ keywords: [
10851
+ "credit",
10852
+ "card",
10853
+ "diners",
10854
+ "club",
10855
+ "debit"
10856
+ ],
10857
+ style: "colored",
10858
+ heights: {
10859
+ "32": {
10860
+ width: 32,
10861
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#0d4e96\" stroke-width=\"0\" d=\"m15.111,22c-3.32.015-6.052-2.674-6.052-5.948,0-3.578,2.732-6.053,6.052-6.052h1.556c3.28,0,6.274,2.473,6.274,6.052,0,3.273-2.994,5.948-6.274,5.948h-1.556Zm.014-11.504c-3.034.001-5.492,2.459-5.492,5.493,0,3.033,2.458,5.491,5.492,5.492,3.034,0,5.492-2.458,5.493-5.492,0-3.034-2.459-5.492-5.493-5.493m-1.247,8.741v-6.497c-1.305.503-2.231,1.766-2.235,3.249.003,1.483.929,2.746,2.235,3.248m4.729-3.248c-.003-1.484-.93-2.748-2.236-3.25v6.499c1.307-.502,2.234-1.766,2.236-3.25\"></path></g>"
10862
+ }
10863
+ }
10864
+ },
10865
+ discover: discover,
10367
10866
  djibouti: djibouti,
10368
10867
  dominica: dominica,
10369
10868
  "dominican-republic": {
@@ -10832,6 +11331,38 @@ var data = {
10832
11331
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.91 12.9h1.78a3.56 3.56 0 0 1 3.56 3.56v8.9a3.56 3.56 0 0 1-3.56 3.56h-13.35a3.56 3.56 0 0 1-3.56-3.56v-8.9a3.56 3.56 0 0 1 3.56-3.56h1.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.68 7.57l5.34-5.34 5.34 5.33\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.02 2.23v19.13\"></path></g>"
10833
11332
  }
10834
11333
  }
11334
+ },
11335
+ "external-link": {
11336
+ name: "external-link",
11337
+ keywords: [
11338
+ "exit",
11339
+ "chevron",
11340
+ "arrow",
11341
+ "caret",
11342
+ "logout",
11343
+ "url",
11344
+ "hyperlink",
11345
+ "external",
11346
+ "link"
11347
+ ],
11348
+ heights: {
11349
+ "16": {
11350
+ width: 16,
11351
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M10.31 9.98v-4.33h-4.32\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M9.98 5.99l-8.98 8.97\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.69 13.63h3.95a2.66 2.66 0 0 0 2.66-2.66v-7.31a2.66 2.66 0 0 0-2.66-2.66h-6.65a2.66 2.66 0 0 0-2.66 2.66v4.61\"></path></g>"
11352
+ },
11353
+ "20": {
11354
+ width: 20,
11355
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M12.89 12.48v-5.42h-5.4\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M12.48 7.49l-11.23 11.21\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.61 17.04h4.94a3.33 3.33 0 0 0 3.33-3.33v-9.13a3.33 3.33 0 0 0-3.33-3.33h-8.31a3.33 3.33 0 0 0-3.33 3.33v5.76\"></path></g>"
11356
+ },
11357
+ "24": {
11358
+ width: 24,
11359
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M15.47 14.98v-6.51h-6.48\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M14.98 8.99l-13.48 13.45\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M11.53 20.45h5.93a4 4 0 0 0 4-4v-10.95a4 4 0 0 0-4-4h-9.97a4 4 0 0 0-4 4v6.91\"></path></g>"
11360
+ },
11361
+ "32": {
11362
+ width: 32,
11363
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.58 19.92v-8.65h-8.62\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19.92 11.96l-17.93 17.89\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.33 27.2h7.89a5.32 5.32 0 0 0 5.32-5.32v-14.56a5.32 5.32 0 0 0-5.32-5.32h-13.26a5.32 5.32 0 0 0-5.32 5.32v9.19\"></path></g>"
11364
+ }
11365
+ }
10835
11366
  },
10836
11367
  eye: eye,
10837
11368
  "eye-dropper": {
@@ -10899,6 +11430,37 @@ var data = {
10899
11430
  }
10900
11431
  }
10901
11432
  },
11433
+ "face-smile": {
11434
+ name: "face-smile",
11435
+ keywords: [
11436
+ "emoji",
11437
+ "emoticon",
11438
+ "head",
11439
+ "smile",
11440
+ "happy",
11441
+ "laugh",
11442
+ "face"
11443
+ ],
11444
+ heights: {
11445
+ "16": {
11446
+ width: 16,
11447
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M8.01 1.56a6.45 6.45 0 1 0 0 12.9 6.45 6.45 0 1 0 0-12.9z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M11.35 9.79c-0.64 1.19-1.89 2-3.34 2s-2.7-0.81-3.34-2\"></path><path fill=\"currentColor\" d=\"M6.23 6.23a0.89 0.89 0 1 0 0 1.78 0.89 0.89 0 1 0 0-1.78z\" data-stroke=\"none\"></path><path fill=\"currentColor\" d=\"M9.79 6.23a0.89 0.89 0 1 0 0 1.78 0.89 0.89 0 1 0 0-1.78z\" data-stroke=\"none\"></path></g>"
11448
+ },
11449
+ "20": {
11450
+ width: 20,
11451
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M10.01 1.95a8.06 8.06 0 1 0 0 16.13 8.06 8.06 0 1 0 0-16.13z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M14.19 12.24c-0.8 1.49-2.36 2.5-4.18 2.5s-3.38-1.01-4.17-2.5\"></path><path fill=\"currentColor\" d=\"M7.79 7.79a1.11 1.11 0 1 0 0 2.22 1.11 1.11 0 1 0 0-2.22z\" data-stroke=\"none\"></path><path fill=\"currentColor\" d=\"M12.24 7.79a1.11 1.11 0 1 0 0 2.22 1.11 1.11 0 1 0 0-2.22z\" data-stroke=\"none\"></path></g>"
11452
+ },
11453
+ "24": {
11454
+ width: 24,
11455
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M12.01 2.34a9.67 9.67 0 1 0 0 19.36 9.67 9.67 0 1 0 0-19.36z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M17.03 14.69c-0.96 1.79-2.83 3-5.02 3s-4.06-1.21-5-3\"></path><path fill=\"currentColor\" d=\"M9.35 9.35a1.33 1.33 0 1 0 0 2.66 1.33 1.33 0 1 0 0-2.66z\" data-stroke=\"none\"></path><path fill=\"currentColor\" d=\"M14.69 9.35a1.33 1.33 0 1 0 0 2.66 1.33 1.33 0 1 0 0-2.66z\" data-stroke=\"none\"></path></g>"
11456
+ },
11457
+ "32": {
11458
+ width: 32,
11459
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.97 3.11a12.86 12.86 0 1 0 0 25.75 12.86 12.86 0 1 0 0-25.75z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M22.65 19.54c-1.28 2.38-3.76 3.99-6.68 3.99s-5.4-1.61-6.65-3.99\"></path><path fill=\"currentColor\" d=\"M12.44 12.44a1.77 1.77 0 1 0 0 3.53 1.77 1.77 0 1 0 0-3.53z\" data-stroke=\"none\"></path><path fill=\"currentColor\" d=\"M19.54 12.44a1.77 1.77 0 1 0 0 3.53 1.77 1.77 0 1 0 0-3.53z\" data-stroke=\"none\"></path></g>"
11460
+ }
11461
+ }
11462
+ },
11463
+ facebook: facebook,
10902
11464
  "facial-recognition": {
10903
11465
  name: "facial-recognition",
10904
11466
  keywords: [
@@ -11103,8 +11665,40 @@ var data = {
11103
11665
  }
11104
11666
  }
11105
11667
  },
11668
+ files: files,
11669
+ fill: fill,
11106
11670
  fingerprint: fingerprint,
11107
11671
  finland: finland,
11672
+ "flag-3-1": {
11673
+ name: "flag-3-1",
11674
+ keywords: [
11675
+ "winner",
11676
+ "success",
11677
+ "location",
11678
+ "banner",
11679
+ "finish",
11680
+ "start",
11681
+ "flag"
11682
+ ],
11683
+ heights: {
11684
+ "16": {
11685
+ width: 16,
11686
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M11.34 6.01l2.29-2.68a0.67 0.67 0 0 0-0.5-1.11h-9.57v7.57h9.57a0.67 0.67 0 1 0 0.5-1.1l-2.29-2.68z\"></path><path fill=\"currentColor\" d=\"M3.34 15.13a0.67 0.67 0 0 1-0.67-0.67v-12.9a0.67 0.67 0 0 1 1.33 0v12.9a0.67 0.67 0 0 1-0.66 0.67z\"></path></g>"
11687
+ },
11688
+ "20": {
11689
+ width: 20,
11690
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M14.18 7.51l2.86-3.35a0.84 0.84 0 0 0-0.63-1.39h-11.96v9.47h11.96a0.84 0.84 0 1 0 0.63-1.38l-2.86-3.35z\"></path><path fill=\"currentColor\" d=\"M4.17 18.91a0.84 0.84 0 0 1-0.83-0.83v-16.13a0.84 0.84 0 0 1 1.66 0v16.13a0.84 0.84 0 0 1-0.83 0.83z\"></path></g>"
11691
+ },
11692
+ "24": {
11693
+ width: 24,
11694
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M17.02 9.01l3.43-4.02a1.01 1.01 0 0 0-0.76-1.67h-14.35v11.37h14.35a1.01 1.01 0 1 0 0.76-1.66l-3.43-4.02z\"></path><path fill=\"currentColor\" d=\"M5 22.69a1.01 1.01 0 0 1-0.99-0.99v-19.36a1.01 1.01 0 0 1 1.99 0v19.36a1.01 1.01 0 0 1-1 0.99z\"></path></g>"
11695
+ },
11696
+ "32": {
11697
+ width: 32,
11698
+ path: "<g fill=\"currentColor\"><path fill=\"currentColor\" d=\"M22.64 11.98l4.56-5.34a1.34 1.34 0 0 0-1.01-2.22h-19.09v15.12h19.09a1.34 1.34 0 1 0 1.01-2.21l-4.56-5.35z\"></path><path fill=\"currentColor\" d=\"M6.65 30.18a1.34 1.34 0 0 1-1.32-1.32v-25.75a1.34 1.34 0 0 1 2.65 0v25.75a1.34 1.34 0 0 1-1.33 1.32z\"></path></g>"
11699
+ }
11700
+ }
11701
+ },
11108
11702
  "flag-3": {
11109
11703
  name: "flag-3",
11110
11704
  keywords: [
@@ -11333,6 +11927,24 @@ var data = {
11333
11927
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.02 3.12a12.9 5.34 90 1 0 0 25.8 12.9 5.34 90 1 0 0-25.8z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.12 16.02h25.8\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.02 3.12a12.9 12.9 0 1 0 0 25.8 12.9 12.9 0 1 0 0-25.8z\"></path></g>"
11334
11928
  }
11335
11929
  }
11930
+ },
11931
+ google: google,
11932
+ "google-pay": {
11933
+ name: "google-pay",
11934
+ keywords: [
11935
+ "credit",
11936
+ "card",
11937
+ "debit",
11938
+ "google",
11939
+ "pay"
11940
+ ],
11941
+ style: "colored",
11942
+ heights: {
11943
+ "32": {
11944
+ width: 32,
11945
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.6569,0-3,1.3431-3,3v12c0,1.6569,1.3431,3,3,3h22c1.6569,0,3-1.3431,3-3v-12c0-1.6569-1.3431-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.1046,0-2,.8954-2,2v1c0-1.1046.8954-2,2-2h22c1.1046,0,2,.8954,2,2v-1c0-1.1046-.8954-2-2-2Z\" opacity=\".2\"></path><path fill=\"#5f6368\" stroke-width=\"0\" d=\"m14.8969,16.1308v2.7891h-.8997v-6.8978h2.3393c.5698,0,1.1097.2099,1.5295.5998.4199.3599.6298.8997.6298,1.4695s-.2099,1.0797-.6298,1.4695c-.4199.3899-.9297.5998-1.5295.5998l-1.4395-.03h0Zm0-3.269v2.3992h1.4995c.3299,0,.6598-.12.8697-.3599.4798-.4499.4798-1.1996.03-1.6495l-.03-.03c-.2399-.2399-.5398-.3899-.8697-.3599h-1.4995Z\"></path><path fill=\"#5f6368\" stroke-width=\"0\" d=\"m20.5651,14.0615c.6598,0,1.1696.1799,1.5595.5398s.5698.8397.5698,1.4396v2.8791h-.8397v-.6598h-.03c-.3599.5398-.8697.8097-1.4695.8097-.5098,0-.9597-.15-1.3196-.4499-.3299-.2999-.5398-.7198-.5398-1.1696,0-.4799.1799-.8697.5398-1.1696s.8697-.4199,1.4695-.4199c.5398,0,.9597.09,1.2896.2999v-.2099c0-.2999-.12-.5998-.3599-.7798-.2399-.2099-.5398-.3299-.8697-.3299-.5098,0-.8997.2099-1.1696.6298l-.7798-.4799c.4799-.6298,1.1097-.9297,1.9494-.9297Zm-1.1396,3.4189c0,.2399.12.4499.2999.5698.2099.15.4499.2399.6898.2399.3599,0,.7198-.15.9897-.4199.2999-.2699.4499-.5998.4499-.9597-.2699-.2099-.6598-.3299-1.1696-.3299-.3599,0-.6598.09-.8997.2699-.2399.15-.3599.3599-.3599.6298Z\"></path><path fill=\"#5f6368\" stroke-width=\"0\" d=\"m27.5529,14.2114l-2.9691,6.8079h-.8997l1.1097-2.3693-1.9494-4.4086h.9597l1.4096,3.3889h.03l1.3796-3.3889h.9297v-.03Z\"></path><path fill=\"#4285f4\" stroke-width=\"0\" d=\"m12.2324,15.531c0-.2699-.03-.5398-.06-.8097h-3.7488v1.5295h2.1293c-.09.4799-.3599.9297-.7798,1.1996v.9897h1.2896c.7498-.6898,1.1696-1.7095,1.1696-2.9091Z\"></path><path fill=\"#34a853\" stroke-width=\"0\" d=\"m8.4236,19.3998c1.0797,0,1.9794-.3599,2.6392-.9597l-1.2896-.9897c-.3599.2399-.8097.3899-1.3496.3899-1.0197,0-1.9194-.6898-2.2193-1.6495h-1.3196v1.0197c.6898,1.3496,2.0394,2.1893,3.5389,2.1893Z\"></path><path fill=\"#fbbc04\" stroke-width=\"0\" d=\"m6.2043,16.1908c-.1799-.4799-.1799-1.0197,0-1.5295v-1.0197h-1.3196c-.5698,1.1097-.5698,2.4292,0,3.5689l1.3196-1.0197Z\"></path><path fill=\"#ea4335\" stroke-width=\"0\" d=\"m8.4236,13.0418c.5698,0,1.1097.2099,1.5295.5998h0l1.1396-1.1396c-.7198-.6598-1.6795-1.0497-2.6392-1.0197-1.4995,0-2.8791.8397-3.5389,2.1893l1.3196,1.0197c.2699-.9597,1.1696-1.6495,2.1893-1.6495Z\"></path></g>"
11946
+ }
11947
+ }
11336
11948
  },
11337
11949
  greece: greece,
11338
11950
  greenland: greenland,
@@ -11640,6 +12252,7 @@ var data = {
11640
12252
  iceland: iceland,
11641
12253
  india: india,
11642
12254
  indonesia: indonesia,
12255
+ instagram: instagram,
11643
12256
  "invoice-dollar": {
11644
12257
  name: "invoice-dollar",
11645
12258
  keywords: [
@@ -11798,6 +12411,7 @@ var data = {
11798
12411
  }
11799
12412
  },
11800
12413
  link: link,
12414
+ linkedin: linkedin,
11801
12415
  lithuania: lithuania,
11802
12416
  "loader-4": {
11803
12417
  name: "loader-4",
@@ -11872,6 +12486,7 @@ var data = {
11872
12486
  luxembourg: luxembourg,
11873
12487
  macau: macau,
11874
12488
  madagascar: madagascar,
12489
+ maestro: maestro,
11875
12490
  magnifier: magnifier,
11876
12491
  "magnifier-minus": {
11877
12492
  name: "magnifier-minus",
@@ -11961,8 +12576,53 @@ var data = {
11961
12576
  }
11962
12577
  },
11963
12578
  martinique: martinique,
12579
+ "mastercard-2": {
12580
+ name: "mastercard-2",
12581
+ keywords: [
12582
+ "credit",
12583
+ "card",
12584
+ "debit",
12585
+ "mastercard"
12586
+ ],
12587
+ style: "colored",
12588
+ heights: {
12589
+ "32": {
12590
+ width: 32,
12591
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#ff5f00\" stroke-width=\"0\" d=\"M13.597 11.677H18.407V20.32H13.597z\"></path><path fill=\"#eb001b\" stroke-width=\"0\" d=\"m13.902,15.999c0-1.68.779-3.283,2.092-4.322-2.382-1.878-5.849-1.466-7.727.932-1.863,2.382-1.451,5.833.947,7.712,2,1.573,4.795,1.573,6.795,0-1.329-1.038-2.107-2.642-2.107-4.322Z\"></path><path fill=\"#f79e1b\" stroke-width=\"0\" d=\"m24.897,15.999c0,3.039-2.459,5.497-5.497,5.497-1.237,0-2.428-.412-3.39-1.176,2.382-1.878,2.795-5.329.916-7.727-.275-.336-.58-.657-.916-.916,2.382-1.878,5.849-1.466,7.712.932.764.962,1.176,2.153,1.176,3.39Z\"></path></g>"
12592
+ }
12593
+ }
12594
+ },
12595
+ mastercard: mastercard,
11964
12596
  mauritania: mauritania,
11965
12597
  mauritius: mauritius,
12598
+ "media-record": {
12599
+ name: "media-record",
12600
+ keywords: [
12601
+ "control",
12602
+ "circle",
12603
+ "record",
12604
+ "media",
12605
+ "button"
12606
+ ],
12607
+ heights: {
12608
+ "16": {
12609
+ width: 16,
12610
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M8.01 1.56a6.45 6.45 0 1 0 0 12.9 6.45 6.45 0 1 0 0-12.9z\"></path></g>"
12611
+ },
12612
+ "20": {
12613
+ width: 20,
12614
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M10.01 1.95a8.06 8.06 0 1 0 0 16.13 8.06 8.06 0 1 0 0-16.13z\"></path></g>"
12615
+ },
12616
+ "24": {
12617
+ width: 24,
12618
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M12.01 2.34a9.67 9.67 0 1 0 0 19.36 9.67 9.67 0 1 0 0-19.36z\"></path></g>"
12619
+ },
12620
+ "32": {
12621
+ width: 32,
12622
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.97 3.11a12.86 12.86 0 1 0 0 25.75 12.86 12.86 0 1 0 0-25.75z\"></path></g>"
12623
+ }
12624
+ }
12625
+ },
11966
12626
  menu: menu,
11967
12627
  message: message,
11968
12628
  "message-arrow-right": {
@@ -12368,10 +13028,45 @@ var data = {
12368
13028
  }
12369
13029
  },
12370
13030
  mongolia: mongolia,
13031
+ monitor: monitor,
12371
13032
  montenegro: montenegro,
12372
13033
  moon: moon,
12373
13034
  morocco: morocco,
12374
13035
  mozanbique: mozanbique,
13036
+ "music-playlist-2": {
13037
+ name: "music-playlist-2",
13038
+ keywords: [
13039
+ "sound",
13040
+ "music",
13041
+ "play",
13042
+ "list",
13043
+ "song",
13044
+ "note",
13045
+ "audio",
13046
+ "playlist",
13047
+ "album",
13048
+ "tracks",
13049
+ "media"
13050
+ ],
13051
+ heights: {
13052
+ "16": {
13053
+ width: 16,
13054
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M10.46 11.79v-9.79s1.33 2.28 3.56 3.56\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M8.23 9.57a2.23 2.23 0 1 0 0 4.45 2.23 2.23 0 1 0 0-4.45z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.34 3.34h-5.34\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.79 6.45h-3.79\"></path></g>"
13055
+ },
13056
+ "20": {
13057
+ width: 20,
13058
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M13.04 14.71v-12.21s1.67 2.84 4.44 4.44\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M10.27 11.93a2.78 2.78 0 1 0 0 5.55 2.78 2.78 0 1 0 0-5.55z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.16 4.16h-6.66\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M7.22 8.05h-4.72\"></path></g>"
13059
+ },
13060
+ "24": {
13061
+ width: 24,
13062
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M15.63 17.62v-14.63s2 3.41 5.32 5.32\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M12.3 14.3a3.33 3.33 0 1 0 0 6.65 3.33 3.33 0 1 0 0-6.65z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M10.97 4.99h-7.98\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.64 9.64h-5.65\"></path></g>"
13063
+ },
13064
+ "32": {
13065
+ width: 32,
13066
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.91 23.59v-19.59s2.67 4.56 7.12 7.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.46 19.14a4.45 4.45 0 1 0 0 8.9 4.45 4.45 0 1 0 0-8.9z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14.69 6.67h-10.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.57 12.9h-7.57\"></path></g>"
13067
+ }
13068
+ }
13069
+ },
12375
13070
  myanmar: myanmar,
12376
13071
  namibia: namibia,
12377
13072
  nauru: nauru,
@@ -12738,6 +13433,23 @@ var data = {
12738
13433
  }
12739
13434
  },
12740
13435
  paraguay: paraguay,
13436
+ "paypal-2": {
13437
+ name: "paypal-2",
13438
+ keywords: [
13439
+ "credit",
13440
+ "card",
13441
+ "debit",
13442
+ "paypal"
13443
+ ],
13444
+ style: "colored",
13445
+ heights: {
13446
+ "32": {
13447
+ width: 32,
13448
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#001c64\" stroke-width=\"0\" d=\"m14.939,12.4c-.17,0-.315.124-.342.292l-.568,3.6c.026-.168.171-.292.342-.292h1.663c1.674,0,3.094-1.221,3.354-2.876.019-.124.03-.248.033-.373-.425-.223-.925-.351-1.473-.351h-3.01Z\"></path><path fill=\"#0070e0\" stroke-width=\"0\" d=\"m19.422,12.751c-.002.125-.013.25-.033.373-.26,1.655-1.68,2.876-3.354,2.876h-1.663c-.17,0-.315.124-.342.292l-.522,3.308-.327,2.075c-.024.153.08.297.233.321.015.002.029.003.044.003h1.805c.17,0,.315-.124.342-.292l.476-3.016c.027-.168.172-.292.342-.292h1.063c1.674,0,3.094-1.221,3.354-2.876.184-1.175-.407-2.243-1.418-2.773h0Z\"></path><path fill=\"#003087\" stroke-width=\"0\" d=\"m12.888,10c-.17,0-.315.124-.342.292l-1.417,8.983c-.027.171.105.325.278.325h2.101l.522-3.308.568-3.6c.027-.168.171-.292.342-.292h3.01c.548,0,1.047.128,1.473.351.029-1.507-1.214-2.751-2.923-2.751h-3.61Z\"></path></g>"
13449
+ }
13450
+ }
13451
+ },
13452
+ paypal: paypal,
12741
13453
  "pen-2": {
12742
13454
  name: "pen-2",
12743
13455
  keywords: [
@@ -13205,6 +13917,7 @@ var data = {
13205
13917
  }
13206
13918
  }
13207
13919
  },
13920
+ pinterest: pinterest,
13208
13921
  pinwheel: pinwheel,
13209
13922
  plus: plus,
13210
13923
  pointer: pointer,
@@ -13296,6 +14009,38 @@ var data = {
13296
14009
  receipt: receipt,
13297
14010
  recycle: recycle,
13298
14011
  refresh: refresh,
14012
+ "refresh-clockwise-slash": {
14013
+ name: "refresh-clockwise-slash",
14014
+ keywords: [
14015
+ "control",
14016
+ "disabled",
14017
+ "reload",
14018
+ "update",
14019
+ "refresh",
14020
+ "clockwise",
14021
+ "slash",
14022
+ "blocked",
14023
+ "action"
14024
+ ],
14025
+ heights: {
14026
+ "16": {
14027
+ width: 16,
14028
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M12.57 3.45a6.43 6.43 0 0 0-4.38-1.89\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M10.49 13.97a6.45 6.45 0 0 0 3.56-8.23\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M10.82 11.36l-0.36 2.62 2.62 0.37\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.74 14.05a6.43 6.43 0 0 0 2.09 0.41\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.5 2.06a6.45 6.45 0 0 0-2.05 10.51\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.2 4.66l0.36-2.62-2.62-0.37\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M1.78 14.24l12.46-12.46\"></path></g>"
14029
+ },
14030
+ "20": {
14031
+ width: 20,
14032
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M15.68 4.3a8.02 8.02 0 0 0-5.46-2.35\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M13.08 17.42a8.05 8.05 0 0 0 4.45-10.26\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M13.49 14.17l-0.45 3.27 3.27 0.45\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M7.16 17.53a8.02 8.02 0 0 0 2.6 0.5\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.86 2.57a8.05 8.05 0 0 0-2.56 13.11\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.49 5.81l0.45-3.27-3.27-0.45\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M2.22 17.76l15.54-15.54\"></path></g>"
14033
+ },
14034
+ "24": {
14035
+ width: 24,
14036
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M18.79 5.15a9.61 9.61 0 0 0-6.55-2.82\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M15.68 20.87a9.65 9.65 0 0 0 5.32-12.29\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M16.17 16.98l-0.54 3.92 3.91 0.54\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.58 21a9.61 9.61 0 0 0 3.12 0.61\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M8.22 3.08a9.65 9.65 0 0 0-3.07 15.71\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.77 6.96l0.54-3.92-3.91-0.54\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M2.66 21.28l18.62-18.62\"></path></g>"
14037
+ },
14038
+ "32": {
14039
+ width: 32,
14040
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M25.15 6.89a12.86 12.86 0 0 0-8.77-3.77\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.98 27.94a12.91 12.91 0 0 0 7.13-16.46\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21.64 22.73l-0.73 5.24 5.25 0.72\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.48 28.11a12.87 12.87 0 0 0 4.18 0.81\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11.01 4.13a12.91 12.91 0 0 0-4.12 21.02\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.4 9.31l0.72-5.24-5.24-0.72\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.56 28.48l24.92-24.92\"></path></g>"
14041
+ }
14042
+ }
14043
+ },
13299
14044
  "repeat-3": {
13300
14045
  name: "repeat-3",
13301
14046
  keywords: [
@@ -13622,6 +14367,23 @@ var data = {
13622
14367
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.39 19.14h20.26\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2.23 16.14l5.84 1.28c1.08 0.24 1.99 0.98 2.46 1.98l1.93 4.18\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19.65 10l-1.43 2.29\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.86 7.31c-0.9 2.34-3.07 3.82-5.72 3.82s-4.91-1.67-5.81-4.01h-0.32a1.78 1.78 0 0 0-1.78 1.78v11.13a3.56 3.56 0 0 0 3.56 3.55h21.13a3.78 3.78 0 0 0 2.07-6.94l-14.67-10.43\"></path></g>"
13623
14368
  }
13624
14369
  }
14370
+ },
14371
+ "shop-pay": {
14372
+ name: "shop-pay",
14373
+ keywords: [
14374
+ "credit",
14375
+ "card",
14376
+ "debit",
14377
+ "shop",
14378
+ "pay"
14379
+ ],
14380
+ style: "colored",
14381
+ heights: {
14382
+ "32": {
14383
+ width: 32,
14384
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#fff\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m10.163,14.97c-.193-.405-.559-.666-1.11-.666-.169.003-.335.045-.486.122-.15.077-.281.188-.382.324l-.02.025v-1.586c0-.009-.004-.018-.01-.024-.006-.006-.015-.01-.024-.01h-.779c-.009,0-.018.004-.024.01-.006.006-.01.015-.01.024v4.551c0,.009.004.018.01.024.006.006.015.01.024.01h.835c.009,0,.018-.004.024-.01.006-.006.01-.015.01-.024v-1.94c0-.377.251-.644.654-.644.44,0,.551.362.551.731v1.854c0,.009.004.018.01.024.006.006.015.01.024.01h.833c.009,0,.018-.004.024-.01.006-.006.01-.015.01-.024v-1.964c0-.067,0-.133-.009-.197-.014-.21-.067-.416-.155-.607Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m5.996,15.644s-.425-.1-.581-.14c-.157-.04-.43-.126-.43-.332s.221-.273.444-.273.473.054.492.302c0,.009.005.017.012.023.007.006.015.009.024.009l.823-.003s.01,0,.014-.003.008-.005.012-.008c.003-.004.006-.008.007-.012.002-.005.002-.009.002-.014-.051-.794-.748-1.079-1.391-1.079-.762,0-1.32.503-1.32,1.057,0,.405.114.784,1.014,1.048.158.046.372.106.559.158.225.063.346.158.346.307,0,.173-.251.294-.498.294-.358,0-.612-.133-.632-.371-.001-.009-.005-.017-.012-.023-.007-.006-.015-.009-.024-.009l-.821.004s-.01,0-.014.003c-.004.002-.008.005-.012.008-.003.003-.006.008-.008.012-.002.004-.003.009-.002.014.038.75.762,1.154,1.437,1.154,1.006,0,1.46-.566,1.46-1.096.001-.249-.056-.816-.901-1.032Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m16.58,14.302c-.418,0-.768.231-.994.51v-.478c0-.009-.004-.017-.01-.024-.006-.006-.015-.01-.024-.01h-.781c-.009,0-.018.004-.024.01-.006.006-.01.015-.01.024v4.463c0,.009.004.017.01.024.006.006.015.01.024.01h.835c.009,0,.017-.004.024-.01.006-.006.01-.015.01-.024v-1.467h.013c.133.202.495.445.969.445.891,0,1.634-.739,1.634-1.738,0-.959-.739-1.735-1.677-1.735Zm-.077,2.623c-.176.004-.349-.044-.498-.138-.148-.095-.265-.231-.336-.392-.07-.161-.091-.34-.06-.513.031-.173.114-.333.237-.459.123-.126.28-.213.453-.249.172-.036.351-.02.514.046.163.066.303.179.401.325.099.146.151.318.152.494.002.115-.019.229-.062.336-.042.107-.106.204-.186.287-.08.082-.176.148-.282.194-.106.045-.219.069-.334.071Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m12.267,14.106c-.779,0-1.167.265-1.479.476l-.009.006c-.016.011-.027.028-.032.047-.004.019-.001.039.008.056l.308.53c.006.01.014.018.023.025.009.007.02.011.032.013.011.002.022.002.033-.001.011-.003.021-.008.03-.016l.024-.02c.16-.135.417-.314,1.04-.363.346-.028.646.063.866.269.243.224.388.585.388.967,0,.702-.414,1.143-1.078,1.152-.547-.003-.915-.288-.915-.71,0-.224.101-.37.299-.515.015-.011.026-.027.03-.045s.002-.037-.007-.053l-.277-.523c-.005-.009-.012-.018-.02-.024-.008-.007-.018-.012-.028-.015-.01-.003-.021-.004-.032-.003-.011.001-.021.005-.031.011-.31.184-.691.521-.671,1.168.025.824.71,1.453,1.601,1.479h.106c1.058-.035,1.823-.82,1.823-1.886,0-.978-.713-2.025-2.031-2.025Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m21.549,14.609h-.531c-.012,0-.024.005-.033.014-.009.009-.014.021-.014.033v1.113c0,.012.005.024.014.033.009.009.021.014.033.014h.531c.323,0,.561-.255.561-.603s-.238-.603-.561-.603Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m23.178,16.578c0,.162.136.251.374.251.323,0,.514-.175.514-.485v-.089l-.484.025c-.255.013-.404.119-.404.297Z\"></path><path fill=\"#5a31f4\" stroke-width=\"0\" d=\"m27.107,13.163h-7.128c-.117,0-.233.023-.341.068-.108.045-.206.11-.289.193-.083.083-.148.181-.193.289-.045.108-.068.224-.068.341v3.902c0,.236.094.463.261.63.167.167.393.261.629.261h7.128c.117,0,.233-.022.341-.067.108-.045.207-.11.29-.193.083-.083.149-.181.194-.289.045-.108.068-.224.068-.341v-3.902c0-.117-.023-.233-.068-.342-.045-.108-.111-.207-.194-.29-.083-.083-.182-.149-.29-.193-.108-.045-.225-.067-.342-.067Zm-5.531,3.091h-.561c-.012,0-.024.005-.033.014-.009.009-.014.021-.014.033v.798c0,.012-.005.024-.014.033-.009.009-.021.014-.033.014h-.395c-.012,0-.024-.005-.033-.014-.009-.009-.014-.021-.014-.033v-2.879c0-.012.005-.024.014-.033.009-.009.021-.014.033-.014h1.05c.595,0,1.02.433,1.02,1.041s-.422,1.041-1.017,1.041h-.003Zm2.954.845c0,.006-.001.012-.003.018-.002.006-.006.011-.01.016-.004.004-.01.008-.015.01-.006.002-.012.004-.018.004h-.373c-.006,0-.012-.001-.018-.004-.006-.002-.011-.006-.015-.01s-.008-.01-.01-.016c-.002-.006-.004-.012-.003-.018v-.086c0-.008-.001-.015-.005-.022-.004-.006-.01-.011-.017-.014-.007-.003-.015-.003-.022-.001-.007.002-.014.006-.018.012-.111.121-.292.209-.581.209-.425,0-.706-.221-.706-.603-.004-.093.015-.186.056-.27.041-.084.102-.156.178-.21.153-.115.391-.175.743-.189l.374-.013v-.109c0-.221-.148-.314-.387-.314s-.388.084-.424.222c-.003.01-.009.018-.017.024-.008.006-.018.009-.028.009h-.369c-.007,0-.014-.001-.02-.004-.006-.003-.012-.007-.016-.012-.004-.005-.008-.011-.01-.018-.002-.007-.002-.013-.001-.02.055-.327.326-.575.902-.575.612,0,.833.285.833.828l.002,1.155Zm2.322-1.868l-.83,2.213c-.189.514-.519.646-.88.646-.068.002-.136-.007-.202-.025-.01-.003-.019-.009-.026-.017-.006-.008-.01-.019-.01-.029v-.336c0-.007.002-.014.004-.02.003-.006.007-.012.013-.017.005-.005.012-.008.019-.01.007-.002.014-.002.021,0,.057.011.115.016.173.016.1.005.199-.024.28-.081.082-.058.142-.141.17-.237l.025-.077c.004-.01.004-.022,0-.032l-.776-1.992c-.002-.007-.003-.015-.002-.022.001-.007.004-.014.008-.021.004-.006.01-.011.017-.015.007-.003.014-.005.022-.005h.377c.01,0,.019.003.027.009.008.005.014.013.018.022l.527,1.405c.004.009.01.017.018.023.008.006.018.009.028.009.01,0,.019-.003.027-.009.008-.006.014-.013.018-.023l.457-1.402c.003-.01.009-.018.017-.024.008-.006.018-.009.028-.009h.387c.007,0,.015.002.022.005.007.003.012.008.017.014.004.006.007.013.009.02.001.007,0,.015-.001.022h0Z\"></path></g>"
14385
+ }
14386
+ }
13625
14387
  },
13626
14388
  "sidebar-left-hide": {
13627
14389
  name: "sidebar-left-hide",
@@ -13838,6 +14600,7 @@ var data = {
13838
14600
  }
13839
14601
  }
13840
14602
  },
14603
+ slack: slack,
13841
14604
  "sliders-3": {
13842
14605
  name: "sliders-3",
13843
14606
  keywords: [
@@ -14245,7 +15008,228 @@ var data = {
14245
15008
  taiwan: taiwan,
14246
15009
  tajikistan: tajikistan,
14247
15010
  tanzania: tanzania,
15011
+ "text-align-center-2": {
15012
+ name: "text-align-center-2",
15013
+ keywords: [
15014
+ "text",
15015
+ "paragraph",
15016
+ "alignment",
15017
+ "center",
15018
+ "line",
15019
+ "typography",
15020
+ "align"
15021
+ ],
15022
+ heights: {
15023
+ "16": {
15024
+ width: 16,
15025
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 9.57h11.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.12 12.68h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.12 6.45h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 3.34h11.12\"></path></g>"
15026
+ },
15027
+ "20": {
15028
+ width: 20,
15029
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.06 11.96h13.9\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.4 15.85h7.23\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.4 8.06h7.23\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.06 4.17h13.9\"></path></g>"
15030
+ },
15031
+ "24": {
15032
+ width: 24,
15033
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.67 14.35h16.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.68 19.02h8.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.68 9.67h8.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.67 5h16.68\"></path></g>"
15034
+ },
15035
+ "32": {
15036
+ width: 32,
15037
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.88 19.09h22.19\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.21 25.3h11.55\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.21 12.86h11.55\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.88 6.65h22.19\"></path></g>"
15038
+ }
15039
+ }
15040
+ },
15041
+ "text-align-left-2": {
15042
+ name: "text-align-left-2",
15043
+ keywords: [
15044
+ "text",
15045
+ "left",
15046
+ "paragraph",
15047
+ "alignment",
15048
+ "line",
15049
+ "typography",
15050
+ "align"
15051
+ ],
15052
+ heights: {
15053
+ "16": {
15054
+ width: 16,
15055
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 9.57h11.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 12.68h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 6.45h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 3.34h11.12\"></path></g>"
15056
+ },
15057
+ "20": {
15058
+ width: 20,
15059
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 11.93h13.88\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 15.82h7.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 8.05h7.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 4.16h13.88\"></path></g>"
15060
+ },
15061
+ "24": {
15062
+ width: 24,
15063
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 14.3h16.62\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 18.95h8.64\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 9.64h8.64\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 4.99h16.62\"></path></g>"
15064
+ },
15065
+ "32": {
15066
+ width: 32,
15067
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 19.14h22.25\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 25.37h11.57\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 12.9h11.57\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 6.67h22.25\"></path></g>"
15068
+ }
15069
+ }
15070
+ },
15071
+ "text-align-right-2": {
15072
+ name: "text-align-right-2",
15073
+ keywords: [
15074
+ "text",
15075
+ "paragraph",
15076
+ "alignment",
15077
+ "right",
15078
+ "line",
15079
+ "typography",
15080
+ "align"
15081
+ ],
15082
+ heights: {
15083
+ "16": {
15084
+ width: 16,
15085
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 9.57h11.12\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.79 12.68h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.79 6.45h5.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 3.34h11.12\"></path></g>"
15086
+ },
15087
+ "20": {
15088
+ width: 20,
15089
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 11.93h13.88\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.71 15.82h7.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.71 8.05h7.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.05 4.16h13.88\"></path></g>"
15090
+ },
15091
+ "24": {
15092
+ width: 24,
15093
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 14.3h16.62\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M11.64 18.95h8.64\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M11.64 9.64h8.64\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.66 4.99h16.62\"></path></g>"
15094
+ },
15095
+ "32": {
15096
+ width: 32,
15097
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 19.14h22.25\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.58 25.37h11.57\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.58 12.9h11.57\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.9 6.67h22.25\"></path></g>"
15098
+ }
15099
+ }
15100
+ },
15101
+ "text-bold": {
15102
+ name: "text-bold",
15103
+ keywords: [
15104
+ "text",
15105
+ "letter",
15106
+ "typography",
15107
+ "bold",
15108
+ "font"
15109
+ ],
15110
+ heights: {
15111
+ "16": {
15112
+ width: 16,
15113
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.8 8h-4v-4a0.8 0.8 0 0 1 0.8-0.8h3.2a2.4 2.4 0 1 1 0 4.8z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.6 12.8h-4a0.8 0.8 0 0 1-0.8-0.8v-4h4.8a2.4 2.4 0 1 1 0 4.8z\"></path></g>"
15114
+ },
15115
+ "20": {
15116
+ width: 20,
15117
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11 10h-5v-5a1 1 0 0 1 1-1h4a3 3 0 1 1 0 6z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 16h-5a1 1 0 0 1-1-1v-5h6a3 3 0 1 1 0 6z\"></path></g>"
15118
+ },
15119
+ "24": {
15120
+ width: 24,
15121
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13.2 12h-6v-6a1.2 1.2 0 0 1 1.2-1.2h4.8a3.6 3.6 0 1 1 0 7.2z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14.4 19.2h-6a1.2 1.2 0 0 1-1.2-1.2v-6h7.2a3.6 3.6 0 1 1 0 7.2z\"></path></g>"
15122
+ },
15123
+ "32": {
15124
+ width: 32,
15125
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17.6 16h-8v-8a1.6 1.6 0 0 1 1.6-1.6h6.4a4.8 4.8 0 1 1 0 9.6z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19.2 25.6h-8a1.6 1.6 0 0 1-1.6-1.6v-8h9.6a4.8 4.8 0 1 1 0 9.6z\"></path></g>"
15126
+ }
15127
+ }
15128
+ },
15129
+ "text-italic": {
15130
+ name: "text-italic",
15131
+ keywords: [
15132
+ "text",
15133
+ "font",
15134
+ "letter",
15135
+ "typography",
15136
+ "format",
15137
+ "italic"
15138
+ ],
15139
+ heights: {
15140
+ "16": {
15141
+ width: 16,
15142
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M7.34 12.68l2.23-7.56h-2.23\"></path><path fill=\"currentColor\" d=\"M10.68 0.89a0.89 0.89 0 1 0 0 1.78 0.89 0.89 0 1 0 0-1.78z\" data-stroke=\"none\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M5.12 12.68h4.45\"></path></g>"
15143
+ },
15144
+ "20": {
15145
+ width: 20,
15146
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M9.16 15.82l2.77-9.44h-2.77\"></path><path fill=\"currentColor\" d=\"M13.32 1.11a1.11 1.11 0 1 0 0 2.22 1.11 1.11 0 1 0 0-2.22z\" data-stroke=\"none\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M6.38 15.82h5.55\"></path></g>"
15147
+ },
15148
+ "24": {
15149
+ width: 24,
15150
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M10.97 18.95l3.33-11.3h-3.33\"></path><path fill=\"currentColor\" d=\"M15.96 1.33a1.33 1.33 0 1 0 0 2.66 1.33 1.33 0 1 0 0-2.66z\" data-stroke=\"none\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.65 18.95h6.65\"></path></g>"
15151
+ },
15152
+ "32": {
15153
+ width: 32,
15154
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14.69 25.37l4.45-15.13h-4.45\"></path><path fill=\"currentColor\" d=\"M21.36 1.78a1.78 1.78 0 1 0 0 3.56 1.78 1.78 0 1 0 0-3.56z\" data-stroke=\"none\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.23 25.37h8.9\"></path></g>"
15155
+ }
15156
+ }
15157
+ },
14248
15158
  thailand: thailand,
15159
+ "thumbs-down": {
15160
+ name: "thumbs-down",
15161
+ keywords: [
15162
+ "down",
15163
+ "vote",
15164
+ "emoji",
15165
+ "emoticon",
15166
+ "hand",
15167
+ "dislike",
15168
+ "thumbs"
15169
+ ],
15170
+ heights: {
15171
+ "16": {
15172
+ width: 16,
15173
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M4.67 9.35c0 0.43 0.15 0.84 0.44 1.16l3.79 4.4a1.67 1.67 0 0 0 0.82-2.07l-1.04-2.83h3.92a1.78 1.78 0 0 0 1.72-2.23l-1.06-4.01a1.78 1.78 0 0 0-1.72-1.32h-5.09a1.78 1.78 0 0 0-1.78 1.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 2.45h1.33q0.89 0 0.89 0.89v5.78q0 0.89-0.89 0.89h-1.33q-0.89 0-0.89-0.89v-5.78q0-0.89 0.89-0.89z\"></path></g>"
15174
+ },
15175
+ "20": {
15176
+ width: 20,
15177
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M5.84 11.69c0 0.54 0.19 1.05 0.55 1.45l4.74 5.5a2.09 2.09 0 0 0 1.02-2.59l-1.3-3.54h4.9a2.23 2.23 0 0 0 2.15-2.78l-1.33-5.02a2.23 2.23 0 0 0-2.15-1.65h-6.36a2.23 2.23 0 0 0-2.22 2.23\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.06 3.06h1.67q1.11 0 1.11 1.11v7.23q0 1.11-1.11 1.11h-1.67q-1.11 0-1.11-1.11v-7.23q0-1.11 1.11-1.11z\"></path></g>"
15178
+ },
15179
+ "24": {
15180
+ width: 24,
15181
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.01 14.03c0 0.65 0.23 1.26 0.66 1.74l5.69 6.6a2.51 2.51 0 0 0 1.22-3.11l-1.56-4.25h5.88a2.68 2.68 0 0 0 2.58-3.33l-1.6-6.03a2.68 2.68 0 0 0-2.58-1.98h-7.63a2.68 2.68 0 0 0-2.66 2.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.67 3.67h2.01q1.33 0 1.33 1.33v8.68q0 1.33-1.33 1.33h-2.01q-1.33 0-1.33-1.33v-8.68q0-1.33 1.33-1.33z\"></path></g>"
15182
+ },
15183
+ "32": {
15184
+ width: 32,
15185
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.32 18.66c0 0.86 0.31 1.68 0.88 2.31l7.57 8.78a3.34 3.34 0 0 0 1.62-4.13l-2.07-5.66h7.82a3.56 3.56 0 0 0 3.43-4.43l-2.13-8.02a3.56 3.56 0 0 0-3.43-2.63h-10.15a3.56 3.56 0 0 0-3.54 3.57\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.88 4.88h2.67q1.77 0 1.77 1.77v11.54q0 1.77-1.77 1.77h-2.67q-1.77 0-1.77-1.77v-11.54q0-1.77 1.77-1.77z\"></path></g>"
15186
+ }
15187
+ }
15188
+ },
15189
+ "thumbs-up": {
15190
+ name: "thumbs-up",
15191
+ keywords: [
15192
+ "up",
15193
+ "like",
15194
+ "vote",
15195
+ "emoji",
15196
+ "emoticon",
15197
+ "hand",
15198
+ "thumbs"
15199
+ ],
15200
+ heights: {
15201
+ "16": {
15202
+ width: 16,
15203
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M4.67 6.67c0-0.43 0.15-0.84 0.44-1.16l3.79-4.4a1.67 1.67 0 0 1 0.82 2.07l-1.04 2.83h3.92a1.78 1.78 0 0 1 1.72 2.23l-1.06 4.01a1.78 1.78 0 0 1-1.72 1.32h-5.09a1.78 1.78 0 0 1-1.78-1.78\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.4\" d=\"M2.45 6.01h1.33q0.89 0 0.89 0.89v5.78q0 0.89-0.89 0.89h-1.33q-0.89 0-0.89-0.89v-5.78q0-0.89 0.89-0.89z\"></path></g>"
15204
+ },
15205
+ "20": {
15206
+ width: 20,
15207
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M5.84 8.34c0-0.54 0.19-1.05 0.55-1.45l4.74-5.5a2.09 2.09 0 0 1 1.02 2.59l-1.3 3.53h4.9a2.23 2.23 0 0 1 2.15 2.79l-1.33 5.01a2.23 2.23 0 0 1-2.15 1.65h-6.36a2.23 2.23 0 0 1-2.22-2.22\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.6\" d=\"M3.06 7.51h1.67q1.11 0 1.11 1.11v7.23q0 1.11-1.11 1.11h-1.67q-1.11 0-1.11-1.11v-7.22q0-1.11 1.11-1.12z\"></path></g>"
15208
+ },
15209
+ "24": {
15210
+ width: 24,
15211
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M7.01 10.01c0-0.65 0.23-1.26 0.66-1.74l5.69-6.6a2.51 2.51 0 0 1 1.22 3.11l-1.56 4.23h5.88a2.68 2.68 0 0 1 2.58 3.35l-1.6 6.01a2.68 2.68 0 0 1-2.58 1.98h-7.63a2.68 2.68 0 0 1-2.66-2.66\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.75\" d=\"M3.67 9.01h2.01q1.33 0 1.33 1.33v8.68q0 1.33-1.33 1.33h-2.01q-1.33 0-1.33-1.33v-8.66q0-1.33 1.33-1.35z\"></path></g>"
15212
+ },
15213
+ "32": {
15214
+ width: 32,
15215
+ path: "<g fill=\"currentColor\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.32 13.31c0-0.86 0.31-1.68 0.88-2.31l7.57-8.78a3.34 3.34 0 0 1 1.62 4.14l-2.07 5.62h7.82a3.56 3.56 0 0 1 3.43 4.46l-2.13 7.99a3.56 3.56 0 0 1-3.43 2.64h-10.15a3.56 3.56 0 0 1-3.54-3.54\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.88 11.98h2.67q1.77 0 1.77 1.77v11.55q0 1.77-1.77 1.77h-2.67q-1.77 0-1.77-1.77v-11.52q0-1.77 1.77-1.8z\"></path></g>"
15216
+ }
15217
+ }
15218
+ },
15219
+ "tik-tok": {
15220
+ name: "tik-tok",
15221
+ keywords: [
15222
+ "logo",
15223
+ "tik",
15224
+ "tok"
15225
+ ],
15226
+ heights: {
15227
+ "32": {
15228
+ width: 32,
15229
+ path: "<g fill=\"currentColor\"><path d=\"M24.562,7.613c-1.508-.983-2.597-2.557-2.936-4.391-.073-.396-.114-.804-.114-1.221h-4.814l-.008,19.292c-.081,2.16-1.859,3.894-4.039,3.894-.677,0-1.315-.169-1.877-.465-1.288-.678-2.169-2.028-2.169-3.582,0-2.231,1.815-4.047,4.046-4.047,.417,0,.816,.069,1.194,.187v-4.914c-.391-.053-.788-.087-1.194-.087-4.886,0-8.86,3.975-8.86,8.86,0,2.998,1.498,5.65,3.783,7.254,1.439,1.01,3.19,1.606,5.078,1.606,4.886,0,8.86-3.975,8.86-8.86V11.357c1.888,1.355,4.201,2.154,6.697,2.154v-4.814c-1.345,0-2.597-.4-3.647-1.085Z\"></path></g>"
15230
+ }
15231
+ }
15232
+ },
14249
15233
  "timeline-vertical-2": {
14250
15234
  name: "timeline-vertical-2",
14251
15235
  keywords: [
@@ -14767,6 +15751,24 @@ var data = {
14767
15751
  venezuela: venezuela,
14768
15752
  video: video,
14769
15753
  vietnam: vietnam,
15754
+ "visa-2": {
15755
+ name: "visa-2",
15756
+ keywords: [
15757
+ "credit",
15758
+ "card",
15759
+ "debit",
15760
+ "visa"
15761
+ ],
15762
+ style: "colored",
15763
+ heights: {
15764
+ "32": {
15765
+ width: 32,
15766
+ path: "<g><rect width=\"28\" height=\"18\" x=\"2\" y=\"7\" fill=\"#1434cb\" stroke-width=\"0\" rx=\"3\" ry=\"3\"></rect><path stroke-width=\"0\" d=\"m27,7H5c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3v-12c0-1.657-1.343-3-3-3Zm2,15c0,1.103-.897,2-2,2H5c-1.103,0-2-.897-2-2v-12c0-1.103.897-2,2-2h22c1.103,0,2,.897,2,2v12Z\" opacity=\".15\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m27,8H5c-1.105,0-2,.895-2,2v1c0-1.105.895-2,2-2h22c1.105,0,2,.895,2,2v-1c0-1.105-.895-2-2-2Z\" opacity=\".2\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m13.392,12.624l-2.838,6.77h-1.851l-1.397-5.403c-.085-.332-.158-.454-.416-.595-.421-.229-1.117-.443-1.728-.576l.041-.196h2.98c.38,0,.721.253.808.69l.738,3.918,1.822-4.608h1.84Z\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m20.646,17.183c.008-1.787-2.47-1.886-2.453-2.684.005-.243.237-.501.743-.567.251-.032.943-.058,1.727.303l.307-1.436c-.421-.152-.964-.299-1.638-.299-1.732,0-2.95.92-2.959,2.238-.011.975.87,1.518,1.533,1.843.683.332.912.545.909.841-.005.454-.545.655-1.047.663-.881.014-1.392-.238-1.799-.428l-.318,1.484c.41.188,1.165.351,1.947.359,1.841,0,3.044-.909,3.05-2.317\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"m25.423,12.624h-1.494c-.337,0-.62.195-.746.496l-2.628,6.274h1.839l.365-1.011h2.247l.212,1.011h1.62l-1.415-6.77Zm-2.16,4.372l.922-2.542.53,2.542h-1.452Z\"></path><path fill=\"#fff\" stroke-width=\"0\" d=\"M15.894 12.624L14.446 19.394 12.695 19.394 14.143 12.624 15.894 12.624z\"></path></g>"
15767
+ }
15768
+ }
15769
+ },
15770
+ visa: visa,
15771
+ voicemail: voicemail,
14770
15772
  volume: volume,
14771
15773
  "volume-disabled": {
14772
15774
  name: "volume-disabled",
@@ -15092,6 +16094,20 @@ var data = {
15092
16094
  path: "<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.91 9.79c0-2.74-1.65-5.07-4-6.11v6.56h-5.34v-6.56a6.66 6.66 0 0 0-4.01 6.11c0 2.74 1.65 5.07 4 6.11v11.25c0 0.98 0.8 1.78 1.78 1.78h1.78c0.98 0 1.78-0.8 1.78-1.78v-11.25a6.66 6.66 0 0 0 4.01-6.11z\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M27.14 16.46v10.68c0 0.98-0.8 1.78-1.78 1.78h-1.78c-0.98 0-1.78-0.8-1.78-1.78v-10.68\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.02 16.46h8.9\"></path><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.48 16.46v-12.46\"></path><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.48 9.35l1.78-3.12-0.89-3.11h-1.78l-0.89 3.11 1.78 3.12z\"></path></g>"
15093
16095
  }
15094
16096
  }
16097
+ },
16098
+ "x-twitter": {
16099
+ name: "x-twitter",
16100
+ keywords: [
16101
+ "logo",
16102
+ "twitter",
16103
+ "x.com"
16104
+ ],
16105
+ heights: {
16106
+ "32": {
16107
+ width: 32,
16108
+ path: "<g fill=\"currentColor\"><path d=\"M18.42,14.009L27.891,3h-2.244l-8.224,9.559L10.855,3H3.28l9.932,14.455L3.28,29h2.244l8.684-10.095,6.936,10.095h7.576l-10.301-14.991h0Zm-3.074,3.573l-1.006-1.439L6.333,4.69h3.447l6.462,9.243,1.006,1.439,8.4,12.015h-3.447l-6.854-9.804h0Z\"></path></g>"
16109
+ }
16110
+ }
15095
16111
  },
15096
16112
  xmark: xmark,
15097
16113
  yemen: yemen,
@@ -15131,6 +16147,7 @@ var data = {
15131
16147
  }
15132
16148
  }
15133
16149
  },
16150
+ youtube: youtube,
15134
16151
  zambia: zambia,
15135
16152
  zimbabwe: zimbabwe
15136
16153
  };
@@ -15389,11 +16406,12 @@ function getDefaultExportFromCjs (x) {
15389
16406
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
15390
16407
  }
15391
16408
 
15392
- var createIcons$1;
16409
+ var createIcons$1 = {exports: {}};
16410
+
15393
16411
  var hasRequiredCreateIcons;
15394
16412
 
15395
16413
  function requireCreateIcons () {
15396
- if (hasRequiredCreateIcons) return createIcons$1;
16414
+ if (hasRequiredCreateIcons) return createIcons$1.exports;
15397
16415
  hasRequiredCreateIcons = 1;
15398
16416
  const DEFAULT_HEIGHT = 16;
15399
16417
 
@@ -15411,7 +16429,7 @@ function requireCreateIcons () {
15411
16429
  * with SVG rendering helpers, and returns a Proxy that supports
15412
16430
  * deprecated-name lookups with console warnings.
15413
16431
  */
15414
- createIcons$1 = function createIcons(data, nameAliases) {
16432
+ function createIcons(data, nameAliases) {
15415
16433
  const warnedNames = new Set();
15416
16434
 
15417
16435
  function warnDeprecation(apolloName, nucleoName) {
@@ -15554,8 +16572,11 @@ function requireCreateIcons () {
15554
16572
  });
15555
16573
 
15556
16574
  return { default: proxiedData, getIcon, getIconsByTag };
15557
- };
15558
- return createIcons$1;
16575
+ }
16576
+
16577
+ createIcons$1.exports = createIcons;
16578
+ createIcons$1.exports.default = createIcons;
16579
+ return createIcons$1.exports;
15559
16580
  }
15560
16581
 
15561
16582
  var createIconsExports = requireCreateIcons();
@@ -15596,11 +16617,11 @@ Icon.style = xplIconCss();
15596
16617
  const Input = class {
15597
16618
  constructor(hostRef) {
15598
16619
  registerInstance(this, hostRef);
15599
- this.focusEvent = createEvent(this, "focusEvent", 7);
15600
16620
  this.blurEvent = createEvent(this, "blurEvent", 7);
15601
- this.valueChange = createEvent(this, "valueChange", 7);
16621
+ this.focusEvent = createEvent(this, "focusEvent", 7);
15602
16622
  this.inputEvent = createEvent(this, "inputEvent", 7);
15603
16623
  this.search = createEvent(this, "search", 7);
16624
+ this.valueChange = createEvent(this, "valueChange", 7);
15604
16625
  this.multiline = false;
15605
16626
  this.dateFormat = 'Y-m-d';
15606
16627
  this.timeFormat = '24h';
@@ -15615,6 +16636,10 @@ const Input = class {
15615
16636
  this.isInternational = true;
15616
16637
  this.ariaLabel = '';
15617
16638
  this.type = 'text';
16639
+ this.handleChildValueChange = (event) => {
16640
+ event.stopPropagation();
16641
+ this.valueChange.emit(event.detail);
16642
+ };
15618
16643
  this.valueChanged = (event) => {
15619
16644
  const target = event.target;
15620
16645
  this.valueChange.emit(target.value);
@@ -15702,19 +16727,19 @@ const Input = class {
15702
16727
  var _a, _b, _c, _d, _e, _f;
15703
16728
  switch (this.type) {
15704
16729
  case 'file':
15705
- return (h("xpl-input-file", { accept: this.accept, disabled: this.disabled, hideAcceptText: this.hideAcceptText, hideFileNames: this.hideFileNames, hideTriggerOnSelect: this.hideTriggerOnSelect, multiple: this.multiple, name: this.name, _id: this._id }, h("slot", { name: "trigger" })));
16730
+ return (h("xpl-input-file", { accept: this.accept, disabled: this.disabled, hideAcceptText: this.hideAcceptText, hideFileNames: this.hideFileNames, hideTriggerOnSelect: this.hideTriggerOnSelect, multiple: this.multiple, name: this.name, onInputChange: this.handleChildValueChange, _id: this._id }, h("slot", { name: "trigger" })));
15706
16731
  case 'color':
15707
- return (h("xpl-input-color", { disabled: this.disabled, value: this.value, placeholder: this.placeholder, required: this.required, hideEyeDropper: this.hideEyeDropper }));
16732
+ return (h("xpl-input-color", { disabled: this.disabled, value: this.value, placeholder: this.placeholder, required: this.required, hideEyeDropper: this.hideEyeDropper, onInputChange: this.handleChildValueChange }));
15708
16733
  case 'date':
15709
- return (h("xpl-input-date", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, post: this.post, pre: this.pre, max: this.max, min: this.min, dateFormat: this.dateFormat, mode: this.mode }));
16734
+ return (h("xpl-input-date", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, post: this.post, pre: this.pre, max: this.max, min: this.min, dateFormat: this.dateFormat, mode: this.mode, onValueChange: this.handleChildValueChange }));
15710
16735
  case 'time':
15711
- return (h("xpl-input-time", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, max: this.max, min: this.min, step: this.step, mode: this.mode, timeFormat: this.timeFormat, allowCustomOption: this.allowCustomOption }));
16736
+ return (h("xpl-input-time", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, max: this.max, min: this.min, step: this.step, mode: this.mode, timeFormat: this.timeFormat, allowCustomOption: this.allowCustomOption, onValueChange: this.handleChildValueChange }));
15712
16737
  case 'phone':
15713
- return (h("xpl-input-phone", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, defaultCountry: this.defaultCountry, preferredCountries: this.preferredCountries, isInternational: this.isInternational }));
16738
+ return (h("xpl-input-phone", { inputId: this._id, disabled: this.disabled, name: this.name, required: this.required, readonly: this.readonly, value: this.value, placeholder: this.placeholder, defaultCountry: this.defaultCountry, preferredCountries: this.preferredCountries, isInternational: this.isInternational, onValueChange: this.handleChildValueChange }));
15714
16739
  case 'search': {
15715
16740
  const hasVisibleLabel = Boolean(((_a = this.label) !== null && _a !== void 0 ? _a : '').trim());
15716
16741
  const hasErrorMessage = Boolean(this.error && this.error.length > 0);
15717
- return (h("xpl-input-search", { ariaLabel: ((_b = this.ariaLabel) !== null && _b !== void 0 ? _b : '').trim() || 'Search', autocomplete: (_c = this.autocomplete) !== null && _c !== void 0 ? _c : 'off', disabled: this.disabled, errorMessageId: hasErrorMessage ? `${this._id}-error` : undefined, hasError: hasErrorMessage, hasVisibleLabel: hasVisibleLabel, inputId: this._id, name: this.name, onBlurEvent: this.handleSearchBlurForward, onFocusEvent: this.handleSearchFocusForward, onSearch: this.handleSearchCommit, placeholder: (_d = this.placeholder) !== null && _d !== void 0 ? _d : 'Search', readonly: this.readonly, ref: (el) => {
16742
+ return (h("xpl-input-search", { ariaLabel: ((_b = this.ariaLabel) !== null && _b !== void 0 ? _b : '').trim() || 'Search', autocomplete: (_c = this.autocomplete) !== null && _c !== void 0 ? _c : 'off', disabled: this.disabled, errorMessageId: hasErrorMessage ? `${this._id}-error` : undefined, hasError: hasErrorMessage, hasVisibleLabel: hasVisibleLabel, inputId: this._id, name: this.name, onBlurEvent: this.handleSearchBlurForward, onFocusEvent: this.handleSearchFocusForward, onSearch: this.handleSearchCommit, onValueChange: this.handleChildValueChange, placeholder: (_d = this.placeholder) !== null && _d !== void 0 ? _d : 'Search', readonly: this.readonly, ref: (el) => {
15718
16743
  this.searchInputRef = el !== null && el !== void 0 ? el : undefined;
15719
16744
  }, required: this.required, shape: (_e = this.shape) !== null && _e !== void 0 ? _e : 'rounded', value: (_f = this.value) !== null && _f !== void 0 ? _f : '' }));
15720
16745
  }
@@ -15742,13 +16767,13 @@ const Input = class {
15742
16767
  this.characterCount > this.maxCharacterCount) {
15743
16768
  hasError = true;
15744
16769
  }
15745
- return (h(Host, { key: '4b60d50e8b88f905777d76197afe181026ae5a94', class: {
16770
+ return (h(Host, { key: '406ab6d1b4d43ceb06cdb819cec8699d2d3322b3', class: {
15746
16771
  'xpl-input': true,
15747
16772
  'xpl-input--disabled': this.disabled,
15748
16773
  'xpl-input--error': hasError,
15749
16774
  'xpl-input--readonly': this.readonly,
15750
16775
  [`xpl-input--${this.type}`]: true,
15751
- } }, this.label && (h("label", { key: '8b0dc01150607c2943ccc541b9acd3a7fa5d2143', class: "xpl-input-label", htmlFor: this._id }, this.label, this.description && h("small", { key: '8d1f988983fd54e3bc231c0a8091b4fe83ed8ab8' }, this.description))), this.renderInput(), ((_a = this.error) === null || _a === void 0 ? void 0 : _a.length) > 0 && (h("label", { key: '349492ed192e6105dd549634da1ce2c0371f5b9d', class: "xpl-input-error", htmlFor: this._id, id: `${this._id}-error` }, h("xpl-icon", { key: '7903d2f35033ceefcf94eff8081997b4aec3c1a9', icon: "alert-circle", size: 16 }), h("span", { key: 'e3d557f705647eb304b4bf38151dcf01c17fce15' }, this.error)))));
16776
+ } }, this.label && (h("label", { key: 'ab7ea9eb5cb82e6b602ce93ab3da482c12f59078', class: "xpl-input-label", htmlFor: this._id }, this.label, this.description && h("small", { key: '37435c5f1d3d8a30acba7788a7d215921e679327' }, this.description))), this.renderInput(), ((_a = this.error) === null || _a === void 0 ? void 0 : _a.length) > 0 && (h("label", { key: '57b66daa234d93d9f6d7ad582380960013596919', class: "xpl-input-error", htmlFor: this._id, id: `${this._id}-error` }, h("xpl-icon", { key: '9a14b46934a8d7edc5f5e48c3fecf87441e741ca', icon: "alert-circle", size: 16 }), h("span", { key: 'badecb1aba3b3ff35cbcf6d7cb4d5355844951e6' }, this.error)))));
15752
16777
  }
15753
16778
  get el() { return getElement(this); }
15754
16779
  };
@@ -19123,15 +20148,21 @@ const Radio = class {
19123
20148
  }
19124
20149
  };
19125
20150
  }
20151
+ get isChecked() {
20152
+ if (this.selectedValue !== undefined && this.value !== undefined) {
20153
+ return this.selectedValue === this.value;
20154
+ }
20155
+ return Boolean(this.checked);
20156
+ }
19126
20157
  render() {
19127
- return (h(Host, { key: '959940093b1988f6e362c17e463fe2139cd828c5', class: {
20158
+ return (h(Host, { key: '1cda65b10ee03e06c30b2c501d7f2ec4153619f6', class: {
19128
20159
  'xpl-checkbox-radio-container': true,
19129
20160
  styled: this.styled,
19130
20161
  disabled: this.disabled,
19131
- } }, h("input", { key: 'cccccd581ee84a2c5c39a625565877cc080e9702', class: "xpl-radio", type: "radio", checked: this.checked, disabled: this.disabled, id: this.id, name: this.name, required: this.required, onChange: this.onChange, value: this.value }), h("label", { key: '3dd39b409818d7f2921c6dc7dc2c3d790a088833', class: {
20162
+ } }, h("input", { key: 'b19a87e42feb5953ace4b8bd049427959c40a7e6', class: "xpl-radio", type: "radio", checked: this.isChecked, disabled: this.disabled, id: this.id, name: this.name, required: this.required, onChange: this.onChange, value: this.value }), h("label", { key: 'd07051460f7503a182b969eeafcb8eba5d61bef2', class: {
19132
20163
  'xpl-label': true,
19133
20164
  'xpl-label--disabled': this.disabled,
19134
- }, htmlFor: this.id }, h("slot", { key: '0e0af25e2b1679bef0aa053d20df8f0ec7390d18' }), this.description && (h("small", { key: 'dcc8791c823ec66dcdb806ae4aeaf7daf6c72298', class: {
20165
+ }, htmlFor: this.id }, h("slot", { key: '06835704869d514a0d3eb01d671b6bec42524e89' }), this.description && (h("small", { key: '3e798a699fa53ca6c932e6466b438ed47aa46148', class: {
19135
20166
  'xpl-description': true,
19136
20167
  'xpl-description--disabled': this.disabled,
19137
20168
  } }, this.description)))));