@xplortech/apollo-core 2.7.1 → 2.8.1
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.
- package/.typings/apollo-components.html-data.json +8 -4
- package/AGENTS.md +27 -0
- package/dist/apollo-core/apollo-core.esm.js +1 -1
- package/dist/apollo-core/p-689f1dae.entry.js +1 -0
- package/dist/apollo-core/p-cd56a3d5.entry.js +1 -0
- package/dist/cjs/apollo-core.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/xpl-avatar_54.cjs.entry.js +1071 -40
- package/dist/cjs/xpl-toggle.cjs.entry.js +8 -3
- package/dist/collection/components/xpl-avatar/xpl-avatar.js +4 -4
- package/dist/collection/components/xpl-badge/xpl-badge.js +1 -1
- package/dist/collection/components/xpl-checkbox/xpl-checkbox.js +7 -12
- package/dist/collection/components/xpl-choicelist/xpl-choicelist.js +7 -6
- package/dist/collection/components/xpl-input/xpl-input.js +28 -24
- package/dist/collection/components/xpl-popover/xpl-popover.js +1 -1
- package/dist/collection/components/xpl-radio/radio.stories.js +10 -1
- package/dist/collection/components/xpl-radio/xpl-radio.js +30 -5
- package/dist/collection/components/xpl-spotlight/xpl-spotlight.js +2 -2
- package/dist/collection/components/xpl-tag/xpl-tag.js +2 -2
- package/dist/collection/components/xpl-toggle/xpl-toggle.js +26 -4
- package/dist/components/xpl-checkbox2.js +1 -1
- package/dist/components/xpl-choicelist.js +1 -1
- package/dist/components/xpl-icon2.js +1 -1
- package/dist/components/xpl-input2.js +1 -1
- package/dist/components/xpl-radio2.js +1 -1
- package/dist/components/xpl-toggle.js +1 -1
- package/dist/docs/xpl-checkbox/readme.md +5 -3
- package/dist/docs/xpl-radio/readme.md +10 -9
- package/dist/docs/xpl-toggle/readme.md +16 -9
- package/dist/esm/apollo-core.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/xpl-avatar_54.entry.js +1071 -40
- package/dist/esm/xpl-toggle.entry.js +9 -4
- package/dist/types/components/xpl-checkbox/xpl-checkbox.d.ts +1 -1
- package/dist/types/components/xpl-input/xpl-input.d.ts +3 -2
- package/dist/types/components/xpl-radio/radio.stories.d.ts +10 -1
- package/dist/types/components/xpl-radio/xpl-radio.d.ts +2 -0
- package/dist/types/components/xpl-toggle/xpl-toggle.d.ts +3 -0
- package/dist/types/components.d.ts +39 -11
- package/package.json +33 -5
- package/dist/apollo-core/p-d1c9c233.entry.js +0 -1
- package/dist/apollo-core/p-e2a5d41c.entry.js +0 -1
- /package/dist/types/{home/runner/work/apollo → Users/roc/Sites}/apollo/packages/apollo-core/.stencil/css/typography.stories.d.ts +0 -0
|
@@ -378,24 +378,19 @@ const Checkbox = class {
|
|
|
378
378
|
this.ariaLabel = '';
|
|
379
379
|
this.onChange = (event) => {
|
|
380
380
|
const target = event.target;
|
|
381
|
-
|
|
382
|
-
this.checkboxChange.emit(this.value);
|
|
383
|
-
}
|
|
384
|
-
else {
|
|
385
|
-
this.checkboxChange.emit(target.checked);
|
|
386
|
-
}
|
|
381
|
+
this.checkboxChange.emit(target.checked);
|
|
387
382
|
};
|
|
388
383
|
}
|
|
389
384
|
render() {
|
|
390
385
|
var _a;
|
|
391
|
-
return (index.h(index.Host, { key: '
|
|
386
|
+
return (index.h(index.Host, { key: 'dd508c61fc68052f2bbdfccd606ea8f0109783f3', class: {
|
|
392
387
|
'xpl-checkbox-radio-container': true,
|
|
393
388
|
styled: this.styled,
|
|
394
389
|
disabled: this.disabled,
|
|
395
|
-
} }, index.h("input", { key: '
|
|
390
|
+
} }, index.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 }), index.h("label", { key: 'e5ae6eef395457ff6021b008bbb4221e7c36a3c9', class: {
|
|
396
391
|
'xpl-label': true,
|
|
397
392
|
'xpl-label--disabled': this.disabled,
|
|
398
|
-
}, htmlFor: this.id }, index.h("slot", { key: '
|
|
393
|
+
}, htmlFor: this.id }, index.h("slot", { key: '71ae02b761df01bea00b483e21a9b442b8fbdd9f' }), this.description && (index.h("small", { key: 'f34f7e323cd9c39ce1094177e7a4d3cf4b06f788', class: {
|
|
399
394
|
'xpl-description': true,
|
|
400
395
|
'xpl-description--disabled': this.disabled,
|
|
401
396
|
} }, this.description)))));
|
|
@@ -408,20 +403,21 @@ const Choicelist = class {
|
|
|
408
403
|
this.choicelistChange = index.createEvent(this, "choicelistChange", 7);
|
|
409
404
|
this.choicelistValueChange = index.createEvent(this, "choicelistValueChange", 7);
|
|
410
405
|
this.name = v4.v4();
|
|
411
|
-
this.onChoiceChange = (
|
|
406
|
+
this.onChoiceChange = (_value, choiceIndex) => {
|
|
407
|
+
const choice = this.choices[choiceIndex];
|
|
412
408
|
if (this.multi) {
|
|
413
409
|
this.selected = this.selected.map((isSelected, index) => index === choiceIndex ? !isSelected : isSelected);
|
|
414
|
-
if (
|
|
410
|
+
if ((choice === null || choice === void 0 ? void 0 : choice.value) !== undefined) {
|
|
415
411
|
const changedValues = this.choices
|
|
416
412
|
.filter((_, index) => this.selected[index])
|
|
417
|
-
.map((
|
|
413
|
+
.map((c, index) => { var _a; return (_a = c.value) !== null && _a !== void 0 ? _a : this.selected[index]; });
|
|
418
414
|
this.choicelistValueChange.emit(changedValues);
|
|
419
415
|
}
|
|
420
416
|
}
|
|
421
417
|
else {
|
|
422
418
|
this.selected = this.selected.map((_, index) => index === choiceIndex);
|
|
423
|
-
if (
|
|
424
|
-
this.choicelistValueChange.emit(value);
|
|
419
|
+
if ((choice === null || choice === void 0 ? void 0 : choice.value) !== undefined) {
|
|
420
|
+
this.choicelistValueChange.emit(choice.value);
|
|
425
421
|
}
|
|
426
422
|
}
|
|
427
423
|
};
|
|
@@ -440,7 +436,7 @@ const Choicelist = class {
|
|
|
440
436
|
this.onChoicesPropChange(this.choices);
|
|
441
437
|
}
|
|
442
438
|
render() {
|
|
443
|
-
return (index.h(index.Host, { key: '
|
|
439
|
+
return (index.h(index.Host, { key: 'd2da0f5aeb424a36fb117711f34c0631c464ef6a', class: "xpl-choicelist-container" }, this.heading !== undefined || this.description !== undefined ? (index.h("div", { class: "xpl-choicelist-heading" }, this.heading && index.h("h3", null, this.heading), this.description && index.h("p", null, this.description))) : null, this.choices && (index.h("ul", { key: 'a40e08f0fd60a5268ed9f4d15a97b3fa677e2e46', class: {
|
|
444
440
|
'xpl-choicelist': true,
|
|
445
441
|
'xpl-choicelist--styled': this.styled,
|
|
446
442
|
} }, this.choices.map((choice, i) => {
|
|
@@ -2789,6 +2785,23 @@ const antarctica = {
|
|
|
2789
2785
|
}
|
|
2790
2786
|
}
|
|
2791
2787
|
};
|
|
2788
|
+
const apple = {
|
|
2789
|
+
name: "apple",
|
|
2790
|
+
keywords: [
|
|
2791
|
+
"apple",
|
|
2792
|
+
"pay",
|
|
2793
|
+
"credit",
|
|
2794
|
+
"card",
|
|
2795
|
+
"debit",
|
|
2796
|
+
"logo"
|
|
2797
|
+
],
|
|
2798
|
+
heights: {
|
|
2799
|
+
"32": {
|
|
2800
|
+
width: 32,
|
|
2801
|
+
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>"
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
};
|
|
2792
2805
|
const argentina = {
|
|
2793
2806
|
name: "argentina",
|
|
2794
2807
|
keywords: [
|
|
@@ -3056,6 +3069,22 @@ const bhutan = {
|
|
|
3056
3069
|
}
|
|
3057
3070
|
}
|
|
3058
3071
|
};
|
|
3072
|
+
const bitcoin = {
|
|
3073
|
+
name: "bitcoin",
|
|
3074
|
+
keywords: [
|
|
3075
|
+
"credit",
|
|
3076
|
+
"card",
|
|
3077
|
+
"bitcoin",
|
|
3078
|
+
"debit"
|
|
3079
|
+
],
|
|
3080
|
+
style: "colored",
|
|
3081
|
+
heights: {
|
|
3082
|
+
"32": {
|
|
3083
|
+
width: 32,
|
|
3084
|
+
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>"
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
};
|
|
3059
3088
|
const blog = {
|
|
3060
3089
|
name: "blog",
|
|
3061
3090
|
keywords: [
|
|
@@ -3623,6 +3652,23 @@ const curacao = {
|
|
|
3623
3652
|
}
|
|
3624
3653
|
}
|
|
3625
3654
|
};
|
|
3655
|
+
const cvc = {
|
|
3656
|
+
name: "cvc",
|
|
3657
|
+
keywords: [
|
|
3658
|
+
"credit",
|
|
3659
|
+
"card",
|
|
3660
|
+
"cvc",
|
|
3661
|
+
"cvv",
|
|
3662
|
+
"debit"
|
|
3663
|
+
],
|
|
3664
|
+
style: "colored",
|
|
3665
|
+
heights: {
|
|
3666
|
+
"32": {
|
|
3667
|
+
width: 32,
|
|
3668
|
+
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>"
|
|
3669
|
+
}
|
|
3670
|
+
}
|
|
3671
|
+
};
|
|
3626
3672
|
const cyprus = {
|
|
3627
3673
|
name: "cyprus",
|
|
3628
3674
|
keywords: [
|
|
@@ -3698,6 +3744,22 @@ const denmark = {
|
|
|
3698
3744
|
}
|
|
3699
3745
|
}
|
|
3700
3746
|
};
|
|
3747
|
+
const discover = {
|
|
3748
|
+
name: "discover",
|
|
3749
|
+
keywords: [
|
|
3750
|
+
"credit",
|
|
3751
|
+
"card",
|
|
3752
|
+
"discover",
|
|
3753
|
+
"debit"
|
|
3754
|
+
],
|
|
3755
|
+
style: "colored",
|
|
3756
|
+
heights: {
|
|
3757
|
+
"32": {
|
|
3758
|
+
width: 32,
|
|
3759
|
+
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>"
|
|
3760
|
+
}
|
|
3761
|
+
}
|
|
3762
|
+
};
|
|
3701
3763
|
const djibouti = {
|
|
3702
3764
|
name: "djibouti",
|
|
3703
3765
|
keywords: [
|
|
@@ -3996,6 +4058,19 @@ const eye = {
|
|
|
3996
4058
|
}
|
|
3997
4059
|
}
|
|
3998
4060
|
};
|
|
4061
|
+
const facebook = {
|
|
4062
|
+
name: "facebook",
|
|
4063
|
+
keywords: [
|
|
4064
|
+
"logo",
|
|
4065
|
+
"facebook"
|
|
4066
|
+
],
|
|
4067
|
+
heights: {
|
|
4068
|
+
"32": {
|
|
4069
|
+
width: 32,
|
|
4070
|
+
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>"
|
|
4071
|
+
}
|
|
4072
|
+
}
|
|
4073
|
+
};
|
|
3999
4074
|
const fiji = {
|
|
4000
4075
|
name: "fiji",
|
|
4001
4076
|
keywords: [
|
|
@@ -4041,6 +4116,63 @@ const file = {
|
|
|
4041
4116
|
}
|
|
4042
4117
|
}
|
|
4043
4118
|
};
|
|
4119
|
+
const files = {
|
|
4120
|
+
name: "files",
|
|
4121
|
+
keywords: [
|
|
4122
|
+
"page",
|
|
4123
|
+
"data",
|
|
4124
|
+
"document",
|
|
4125
|
+
"paper",
|
|
4126
|
+
"file",
|
|
4127
|
+
"files"
|
|
4128
|
+
],
|
|
4129
|
+
heights: {
|
|
4130
|
+
"16": {
|
|
4131
|
+
width: 16,
|
|
4132
|
+
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>"
|
|
4133
|
+
},
|
|
4134
|
+
"20": {
|
|
4135
|
+
width: 20,
|
|
4136
|
+
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>"
|
|
4137
|
+
},
|
|
4138
|
+
"24": {
|
|
4139
|
+
width: 24,
|
|
4140
|
+
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>"
|
|
4141
|
+
},
|
|
4142
|
+
"32": {
|
|
4143
|
+
width: 32,
|
|
4144
|
+
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>"
|
|
4145
|
+
}
|
|
4146
|
+
}
|
|
4147
|
+
};
|
|
4148
|
+
const fill = {
|
|
4149
|
+
name: "fill",
|
|
4150
|
+
keywords: [
|
|
4151
|
+
"drop",
|
|
4152
|
+
"color",
|
|
4153
|
+
"paint",
|
|
4154
|
+
"fill",
|
|
4155
|
+
"bucket"
|
|
4156
|
+
],
|
|
4157
|
+
heights: {
|
|
4158
|
+
"16": {
|
|
4159
|
+
width: 16,
|
|
4160
|
+
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>"
|
|
4161
|
+
},
|
|
4162
|
+
"20": {
|
|
4163
|
+
width: 20,
|
|
4164
|
+
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>"
|
|
4165
|
+
},
|
|
4166
|
+
"24": {
|
|
4167
|
+
width: 24,
|
|
4168
|
+
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>"
|
|
4169
|
+
},
|
|
4170
|
+
"32": {
|
|
4171
|
+
width: 32,
|
|
4172
|
+
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>"
|
|
4173
|
+
}
|
|
4174
|
+
}
|
|
4175
|
+
};
|
|
4044
4176
|
const fingerprint = {
|
|
4045
4177
|
name: "fingerprint",
|
|
4046
4178
|
keywords: [
|
|
@@ -4307,6 +4439,19 @@ const gift = {
|
|
|
4307
4439
|
}
|
|
4308
4440
|
}
|
|
4309
4441
|
};
|
|
4442
|
+
const google = {
|
|
4443
|
+
name: "google",
|
|
4444
|
+
keywords: [
|
|
4445
|
+
"logo",
|
|
4446
|
+
"google"
|
|
4447
|
+
],
|
|
4448
|
+
heights: {
|
|
4449
|
+
"32": {
|
|
4450
|
+
width: 32,
|
|
4451
|
+
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>"
|
|
4452
|
+
}
|
|
4453
|
+
}
|
|
4454
|
+
};
|
|
4310
4455
|
const greece = {
|
|
4311
4456
|
name: "greece",
|
|
4312
4457
|
keywords: [
|
|
@@ -4608,6 +4753,19 @@ const indonesia = {
|
|
|
4608
4753
|
}
|
|
4609
4754
|
}
|
|
4610
4755
|
};
|
|
4756
|
+
const instagram = {
|
|
4757
|
+
name: "instagram",
|
|
4758
|
+
keywords: [
|
|
4759
|
+
"logo",
|
|
4760
|
+
"instagram"
|
|
4761
|
+
],
|
|
4762
|
+
heights: {
|
|
4763
|
+
"32": {
|
|
4764
|
+
width: 32,
|
|
4765
|
+
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>"
|
|
4766
|
+
}
|
|
4767
|
+
}
|
|
4768
|
+
};
|
|
4611
4769
|
const iran = {
|
|
4612
4770
|
name: "iran",
|
|
4613
4771
|
keywords: [
|
|
@@ -5054,6 +5212,19 @@ const link = {
|
|
|
5054
5212
|
}
|
|
5055
5213
|
}
|
|
5056
5214
|
};
|
|
5215
|
+
const linkedin = {
|
|
5216
|
+
name: "linkedin",
|
|
5217
|
+
keywords: [
|
|
5218
|
+
"logo",
|
|
5219
|
+
"linkedin"
|
|
5220
|
+
],
|
|
5221
|
+
heights: {
|
|
5222
|
+
"32": {
|
|
5223
|
+
width: 32,
|
|
5224
|
+
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>"
|
|
5225
|
+
}
|
|
5226
|
+
}
|
|
5227
|
+
};
|
|
5057
5228
|
const lithuania = {
|
|
5058
5229
|
name: "lithuania",
|
|
5059
5230
|
keywords: [
|
|
@@ -5141,6 +5312,22 @@ const madagascar = {
|
|
|
5141
5312
|
}
|
|
5142
5313
|
}
|
|
5143
5314
|
};
|
|
5315
|
+
const maestro = {
|
|
5316
|
+
name: "maestro",
|
|
5317
|
+
keywords: [
|
|
5318
|
+
"credit",
|
|
5319
|
+
"card",
|
|
5320
|
+
"debit",
|
|
5321
|
+
"maestro"
|
|
5322
|
+
],
|
|
5323
|
+
style: "colored",
|
|
5324
|
+
heights: {
|
|
5325
|
+
"32": {
|
|
5326
|
+
width: 32,
|
|
5327
|
+
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>"
|
|
5328
|
+
}
|
|
5329
|
+
}
|
|
5330
|
+
};
|
|
5144
5331
|
const magnifier = {
|
|
5145
5332
|
name: "magnifier",
|
|
5146
5333
|
keywords: [
|
|
@@ -5282,6 +5469,22 @@ const martinique = {
|
|
|
5282
5469
|
}
|
|
5283
5470
|
}
|
|
5284
5471
|
};
|
|
5472
|
+
const mastercard = {
|
|
5473
|
+
name: "mastercard",
|
|
5474
|
+
keywords: [
|
|
5475
|
+
"credit",
|
|
5476
|
+
"card",
|
|
5477
|
+
"debit",
|
|
5478
|
+
"mastercard"
|
|
5479
|
+
],
|
|
5480
|
+
style: "colored",
|
|
5481
|
+
heights: {
|
|
5482
|
+
"32": {
|
|
5483
|
+
width: 32,
|
|
5484
|
+
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>"
|
|
5485
|
+
}
|
|
5486
|
+
}
|
|
5487
|
+
};
|
|
5285
5488
|
const mauritania = {
|
|
5286
5489
|
name: "mauritania",
|
|
5287
5490
|
keywords: [
|
|
@@ -5508,6 +5711,35 @@ const mongolia = {
|
|
|
5508
5711
|
}
|
|
5509
5712
|
}
|
|
5510
5713
|
};
|
|
5714
|
+
const monitor = {
|
|
5715
|
+
name: "monitor",
|
|
5716
|
+
keywords: [
|
|
5717
|
+
"desktop",
|
|
5718
|
+
"screen",
|
|
5719
|
+
"monitor",
|
|
5720
|
+
"computer",
|
|
5721
|
+
"device",
|
|
5722
|
+
"display"
|
|
5723
|
+
],
|
|
5724
|
+
heights: {
|
|
5725
|
+
"16": {
|
|
5726
|
+
width: 16,
|
|
5727
|
+
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>"
|
|
5728
|
+
},
|
|
5729
|
+
"20": {
|
|
5730
|
+
width: 20,
|
|
5731
|
+
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>"
|
|
5732
|
+
},
|
|
5733
|
+
"24": {
|
|
5734
|
+
width: 24,
|
|
5735
|
+
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>"
|
|
5736
|
+
},
|
|
5737
|
+
"32": {
|
|
5738
|
+
width: 32,
|
|
5739
|
+
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>"
|
|
5740
|
+
}
|
|
5741
|
+
}
|
|
5742
|
+
};
|
|
5511
5743
|
const montenegro = {
|
|
5512
5744
|
name: "montenegro",
|
|
5513
5745
|
keywords: [
|
|
@@ -5802,6 +6034,22 @@ const paraguay = {
|
|
|
5802
6034
|
}
|
|
5803
6035
|
}
|
|
5804
6036
|
};
|
|
6037
|
+
const paypal = {
|
|
6038
|
+
name: "paypal",
|
|
6039
|
+
keywords: [
|
|
6040
|
+
"credit",
|
|
6041
|
+
"card",
|
|
6042
|
+
"debit",
|
|
6043
|
+
"paypal"
|
|
6044
|
+
],
|
|
6045
|
+
style: "colored",
|
|
6046
|
+
heights: {
|
|
6047
|
+
"32": {
|
|
6048
|
+
width: 32,
|
|
6049
|
+
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>"
|
|
6050
|
+
}
|
|
6051
|
+
}
|
|
6052
|
+
};
|
|
5805
6053
|
const percentage = {
|
|
5806
6054
|
name: "percentage",
|
|
5807
6055
|
keywords: [
|
|
@@ -5940,6 +6188,19 @@ const pin = {
|
|
|
5940
6188
|
}
|
|
5941
6189
|
}
|
|
5942
6190
|
};
|
|
6191
|
+
const pinterest = {
|
|
6192
|
+
name: "pinterest",
|
|
6193
|
+
keywords: [
|
|
6194
|
+
"logo",
|
|
6195
|
+
"pinterest"
|
|
6196
|
+
],
|
|
6197
|
+
heights: {
|
|
6198
|
+
"32": {
|
|
6199
|
+
width: 32,
|
|
6200
|
+
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>"
|
|
6201
|
+
}
|
|
6202
|
+
}
|
|
6203
|
+
};
|
|
5943
6204
|
const pinwheel = {
|
|
5944
6205
|
name: "pinwheel",
|
|
5945
6206
|
keywords: [
|
|
@@ -6429,6 +6690,19 @@ const singapore = {
|
|
|
6429
6690
|
}
|
|
6430
6691
|
}
|
|
6431
6692
|
};
|
|
6693
|
+
const slack = {
|
|
6694
|
+
name: "slack",
|
|
6695
|
+
keywords: [
|
|
6696
|
+
"logo",
|
|
6697
|
+
"slack"
|
|
6698
|
+
],
|
|
6699
|
+
heights: {
|
|
6700
|
+
"32": {
|
|
6701
|
+
width: 32,
|
|
6702
|
+
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>"
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6705
|
+
};
|
|
6432
6706
|
const slovakia = {
|
|
6433
6707
|
name: "slovakia",
|
|
6434
6708
|
keywords: [
|
|
@@ -7040,6 +7314,52 @@ const vietnam = {
|
|
|
7040
7314
|
}
|
|
7041
7315
|
}
|
|
7042
7316
|
};
|
|
7317
|
+
const visa = {
|
|
7318
|
+
name: "visa",
|
|
7319
|
+
keywords: [
|
|
7320
|
+
"credit",
|
|
7321
|
+
"card",
|
|
7322
|
+
"debit",
|
|
7323
|
+
"visa"
|
|
7324
|
+
],
|
|
7325
|
+
style: "colored",
|
|
7326
|
+
heights: {
|
|
7327
|
+
"32": {
|
|
7328
|
+
width: 32,
|
|
7329
|
+
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>"
|
|
7330
|
+
}
|
|
7331
|
+
}
|
|
7332
|
+
};
|
|
7333
|
+
const voicemail = {
|
|
7334
|
+
name: "voicemail",
|
|
7335
|
+
keywords: [
|
|
7336
|
+
"message",
|
|
7337
|
+
"phone",
|
|
7338
|
+
"audio",
|
|
7339
|
+
"voice",
|
|
7340
|
+
"mail",
|
|
7341
|
+
"voicemail",
|
|
7342
|
+
"recording"
|
|
7343
|
+
],
|
|
7344
|
+
heights: {
|
|
7345
|
+
"16": {
|
|
7346
|
+
width: 16,
|
|
7347
|
+
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>"
|
|
7348
|
+
},
|
|
7349
|
+
"20": {
|
|
7350
|
+
width: 20,
|
|
7351
|
+
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>"
|
|
7352
|
+
},
|
|
7353
|
+
"24": {
|
|
7354
|
+
width: 24,
|
|
7355
|
+
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>"
|
|
7356
|
+
},
|
|
7357
|
+
"32": {
|
|
7358
|
+
width: 32,
|
|
7359
|
+
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>"
|
|
7360
|
+
}
|
|
7361
|
+
}
|
|
7362
|
+
};
|
|
7043
7363
|
const volume = {
|
|
7044
7364
|
name: "volume",
|
|
7045
7365
|
keywords: [
|
|
@@ -7229,6 +7549,20 @@ const yoga = {
|
|
|
7229
7549
|
}
|
|
7230
7550
|
}
|
|
7231
7551
|
};
|
|
7552
|
+
const youtube = {
|
|
7553
|
+
name: "youtube",
|
|
7554
|
+
keywords: [
|
|
7555
|
+
"logo",
|
|
7556
|
+
"youtube",
|
|
7557
|
+
"google"
|
|
7558
|
+
],
|
|
7559
|
+
heights: {
|
|
7560
|
+
"32": {
|
|
7561
|
+
width: 32,
|
|
7562
|
+
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>"
|
|
7563
|
+
}
|
|
7564
|
+
}
|
|
7565
|
+
};
|
|
7232
7566
|
const zambia = {
|
|
7233
7567
|
name: "zambia",
|
|
7234
7568
|
keywords: [
|
|
@@ -7377,6 +7711,24 @@ var data = {
|
|
|
7377
7711
|
},
|
|
7378
7712
|
albania: albania,
|
|
7379
7713
|
algeria: algeria,
|
|
7714
|
+
"american-express": {
|
|
7715
|
+
name: "american-express",
|
|
7716
|
+
keywords: [
|
|
7717
|
+
"credit",
|
|
7718
|
+
"card",
|
|
7719
|
+
"american",
|
|
7720
|
+
"express",
|
|
7721
|
+
"amex",
|
|
7722
|
+
"debit"
|
|
7723
|
+
],
|
|
7724
|
+
style: "colored",
|
|
7725
|
+
heights: {
|
|
7726
|
+
"32": {
|
|
7727
|
+
width: 32,
|
|
7728
|
+
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>"
|
|
7729
|
+
}
|
|
7730
|
+
}
|
|
7731
|
+
},
|
|
7380
7732
|
andorra: andorra,
|
|
7381
7733
|
angola: angola,
|
|
7382
7734
|
anguilla: anguilla,
|
|
@@ -7396,6 +7748,7 @@ var data = {
|
|
|
7396
7748
|
}
|
|
7397
7749
|
}
|
|
7398
7750
|
},
|
|
7751
|
+
apple: apple,
|
|
7399
7752
|
argentina: argentina,
|
|
7400
7753
|
armenia: armenia,
|
|
7401
7754
|
"arrow-bold-left-1": {
|
|
@@ -8213,14 +8566,31 @@ var data = {
|
|
|
8213
8566
|
}
|
|
8214
8567
|
},
|
|
8215
8568
|
bangladesh: bangladesh,
|
|
8216
|
-
"
|
|
8217
|
-
name: "
|
|
8569
|
+
"bank-account": {
|
|
8570
|
+
name: "bank-account",
|
|
8218
8571
|
keywords: [
|
|
8219
|
-
"
|
|
8220
|
-
"
|
|
8221
|
-
"
|
|
8222
|
-
"
|
|
8223
|
-
"
|
|
8572
|
+
"credit",
|
|
8573
|
+
"card",
|
|
8574
|
+
"bank",
|
|
8575
|
+
"account",
|
|
8576
|
+
"debit"
|
|
8577
|
+
],
|
|
8578
|
+
style: "colored",
|
|
8579
|
+
heights: {
|
|
8580
|
+
"32": {
|
|
8581
|
+
width: 32,
|
|
8582
|
+
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>"
|
|
8583
|
+
}
|
|
8584
|
+
}
|
|
8585
|
+
},
|
|
8586
|
+
"banking-mobile": {
|
|
8587
|
+
name: "banking-mobile",
|
|
8588
|
+
keywords: [
|
|
8589
|
+
"banking-mobile",
|
|
8590
|
+
"app",
|
|
8591
|
+
"online",
|
|
8592
|
+
"payment",
|
|
8593
|
+
"dollar",
|
|
8224
8594
|
"money",
|
|
8225
8595
|
"mobile",
|
|
8226
8596
|
"banking"
|
|
@@ -8318,6 +8688,7 @@ var data = {
|
|
|
8318
8688
|
}
|
|
8319
8689
|
}
|
|
8320
8690
|
},
|
|
8691
|
+
bitcoin: bitcoin,
|
|
8321
8692
|
blog: blog,
|
|
8322
8693
|
bolivia: bolivia,
|
|
8323
8694
|
"bolt-lightning": {
|
|
@@ -8480,6 +8851,37 @@ var data = {
|
|
|
8480
8851
|
}
|
|
8481
8852
|
},
|
|
8482
8853
|
botswana: botswana,
|
|
8854
|
+
"box-archive-1": {
|
|
8855
|
+
name: "box-archive-1",
|
|
8856
|
+
keywords: [
|
|
8857
|
+
"box",
|
|
8858
|
+
"storage",
|
|
8859
|
+
"email",
|
|
8860
|
+
"mail",
|
|
8861
|
+
"mailbox",
|
|
8862
|
+
"inbox",
|
|
8863
|
+
"drawer",
|
|
8864
|
+
"archive"
|
|
8865
|
+
],
|
|
8866
|
+
heights: {
|
|
8867
|
+
"16": {
|
|
8868
|
+
width: 16,
|
|
8869
|
+
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>"
|
|
8870
|
+
},
|
|
8871
|
+
"20": {
|
|
8872
|
+
width: 20,
|
|
8873
|
+
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>"
|
|
8874
|
+
},
|
|
8875
|
+
"24": {
|
|
8876
|
+
width: 24,
|
|
8877
|
+
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>"
|
|
8878
|
+
},
|
|
8879
|
+
"32": {
|
|
8880
|
+
width: 32,
|
|
8881
|
+
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>"
|
|
8882
|
+
}
|
|
8883
|
+
}
|
|
8884
|
+
},
|
|
8483
8885
|
"box-archive": {
|
|
8484
8886
|
name: "box-archive",
|
|
8485
8887
|
keywords: [
|
|
@@ -9431,6 +9833,38 @@ var data = {
|
|
|
9431
9833
|
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>"
|
|
9432
9834
|
}
|
|
9433
9835
|
}
|
|
9836
|
+
},
|
|
9837
|
+
"check-double": {
|
|
9838
|
+
name: "check-double",
|
|
9839
|
+
keywords: [
|
|
9840
|
+
"double",
|
|
9841
|
+
"mark",
|
|
9842
|
+
"tick",
|
|
9843
|
+
"success",
|
|
9844
|
+
"complete",
|
|
9845
|
+
"checked",
|
|
9846
|
+
"check",
|
|
9847
|
+
"approved",
|
|
9848
|
+
"done"
|
|
9849
|
+
],
|
|
9850
|
+
heights: {
|
|
9851
|
+
"16": {
|
|
9852
|
+
width: 16,
|
|
9853
|
+
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>"
|
|
9854
|
+
},
|
|
9855
|
+
"20": {
|
|
9856
|
+
width: 20,
|
|
9857
|
+
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>"
|
|
9858
|
+
},
|
|
9859
|
+
"24": {
|
|
9860
|
+
width: 24,
|
|
9861
|
+
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>"
|
|
9862
|
+
},
|
|
9863
|
+
"32": {
|
|
9864
|
+
width: 32,
|
|
9865
|
+
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>"
|
|
9866
|
+
}
|
|
9867
|
+
}
|
|
9434
9868
|
},
|
|
9435
9869
|
"chevron-down": {
|
|
9436
9870
|
name: "chevron-down",
|
|
@@ -10139,6 +10573,36 @@ var data = {
|
|
|
10139
10573
|
}
|
|
10140
10574
|
},
|
|
10141
10575
|
clipboard: clipboard,
|
|
10576
|
+
"clipboard-content": {
|
|
10577
|
+
name: "clipboard-content",
|
|
10578
|
+
keywords: [
|
|
10579
|
+
"text",
|
|
10580
|
+
"list",
|
|
10581
|
+
"note",
|
|
10582
|
+
"paper",
|
|
10583
|
+
"content",
|
|
10584
|
+
"clipboard",
|
|
10585
|
+
"task"
|
|
10586
|
+
],
|
|
10587
|
+
heights: {
|
|
10588
|
+
"16": {
|
|
10589
|
+
width: 16,
|
|
10590
|
+
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>"
|
|
10591
|
+
},
|
|
10592
|
+
"20": {
|
|
10593
|
+
width: 20,
|
|
10594
|
+
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>"
|
|
10595
|
+
},
|
|
10596
|
+
"24": {
|
|
10597
|
+
width: 24,
|
|
10598
|
+
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>"
|
|
10599
|
+
},
|
|
10600
|
+
"32": {
|
|
10601
|
+
width: 32,
|
|
10602
|
+
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>"
|
|
10603
|
+
}
|
|
10604
|
+
}
|
|
10605
|
+
},
|
|
10142
10606
|
clock: clock,
|
|
10143
10607
|
"clock-minus": {
|
|
10144
10608
|
name: "clock-minus",
|
|
@@ -10309,6 +10773,22 @@ var data = {
|
|
|
10309
10773
|
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>"
|
|
10310
10774
|
}
|
|
10311
10775
|
}
|
|
10776
|
+
},
|
|
10777
|
+
"credit-card-front": {
|
|
10778
|
+
name: "credit-card-front",
|
|
10779
|
+
keywords: [
|
|
10780
|
+
"credit",
|
|
10781
|
+
"debit",
|
|
10782
|
+
"card",
|
|
10783
|
+
"front"
|
|
10784
|
+
],
|
|
10785
|
+
style: "colored",
|
|
10786
|
+
heights: {
|
|
10787
|
+
"32": {
|
|
10788
|
+
width: 32,
|
|
10789
|
+
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>"
|
|
10790
|
+
}
|
|
10791
|
+
}
|
|
10312
10792
|
},
|
|
10313
10793
|
croatia: croatia,
|
|
10314
10794
|
cuba: cuba,
|
|
@@ -10346,6 +10826,7 @@ var data = {
|
|
|
10346
10826
|
}
|
|
10347
10827
|
}
|
|
10348
10828
|
},
|
|
10829
|
+
cvc: cvc,
|
|
10349
10830
|
cyprus: cyprus,
|
|
10350
10831
|
czechia: czechia,
|
|
10351
10832
|
deaf: deaf,
|
|
@@ -10366,6 +10847,24 @@ var data = {
|
|
|
10366
10847
|
}
|
|
10367
10848
|
},
|
|
10368
10849
|
denmark: denmark,
|
|
10850
|
+
"diners-club": {
|
|
10851
|
+
name: "diners-club",
|
|
10852
|
+
keywords: [
|
|
10853
|
+
"credit",
|
|
10854
|
+
"card",
|
|
10855
|
+
"diners",
|
|
10856
|
+
"club",
|
|
10857
|
+
"debit"
|
|
10858
|
+
],
|
|
10859
|
+
style: "colored",
|
|
10860
|
+
heights: {
|
|
10861
|
+
"32": {
|
|
10862
|
+
width: 32,
|
|
10863
|
+
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>"
|
|
10864
|
+
}
|
|
10865
|
+
}
|
|
10866
|
+
},
|
|
10867
|
+
discover: discover,
|
|
10369
10868
|
djibouti: djibouti,
|
|
10370
10869
|
dominica: dominica,
|
|
10371
10870
|
"dominican-republic": {
|
|
@@ -10834,6 +11333,38 @@ var data = {
|
|
|
10834
11333
|
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>"
|
|
10835
11334
|
}
|
|
10836
11335
|
}
|
|
11336
|
+
},
|
|
11337
|
+
"external-link": {
|
|
11338
|
+
name: "external-link",
|
|
11339
|
+
keywords: [
|
|
11340
|
+
"exit",
|
|
11341
|
+
"chevron",
|
|
11342
|
+
"arrow",
|
|
11343
|
+
"caret",
|
|
11344
|
+
"logout",
|
|
11345
|
+
"url",
|
|
11346
|
+
"hyperlink",
|
|
11347
|
+
"external",
|
|
11348
|
+
"link"
|
|
11349
|
+
],
|
|
11350
|
+
heights: {
|
|
11351
|
+
"16": {
|
|
11352
|
+
width: 16,
|
|
11353
|
+
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>"
|
|
11354
|
+
},
|
|
11355
|
+
"20": {
|
|
11356
|
+
width: 20,
|
|
11357
|
+
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>"
|
|
11358
|
+
},
|
|
11359
|
+
"24": {
|
|
11360
|
+
width: 24,
|
|
11361
|
+
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>"
|
|
11362
|
+
},
|
|
11363
|
+
"32": {
|
|
11364
|
+
width: 32,
|
|
11365
|
+
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>"
|
|
11366
|
+
}
|
|
11367
|
+
}
|
|
10837
11368
|
},
|
|
10838
11369
|
eye: eye,
|
|
10839
11370
|
"eye-dropper": {
|
|
@@ -10901,6 +11432,37 @@ var data = {
|
|
|
10901
11432
|
}
|
|
10902
11433
|
}
|
|
10903
11434
|
},
|
|
11435
|
+
"face-smile": {
|
|
11436
|
+
name: "face-smile",
|
|
11437
|
+
keywords: [
|
|
11438
|
+
"emoji",
|
|
11439
|
+
"emoticon",
|
|
11440
|
+
"head",
|
|
11441
|
+
"smile",
|
|
11442
|
+
"happy",
|
|
11443
|
+
"laugh",
|
|
11444
|
+
"face"
|
|
11445
|
+
],
|
|
11446
|
+
heights: {
|
|
11447
|
+
"16": {
|
|
11448
|
+
width: 16,
|
|
11449
|
+
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>"
|
|
11450
|
+
},
|
|
11451
|
+
"20": {
|
|
11452
|
+
width: 20,
|
|
11453
|
+
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>"
|
|
11454
|
+
},
|
|
11455
|
+
"24": {
|
|
11456
|
+
width: 24,
|
|
11457
|
+
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>"
|
|
11458
|
+
},
|
|
11459
|
+
"32": {
|
|
11460
|
+
width: 32,
|
|
11461
|
+
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>"
|
|
11462
|
+
}
|
|
11463
|
+
}
|
|
11464
|
+
},
|
|
11465
|
+
facebook: facebook,
|
|
10904
11466
|
"facial-recognition": {
|
|
10905
11467
|
name: "facial-recognition",
|
|
10906
11468
|
keywords: [
|
|
@@ -11105,8 +11667,40 @@ var data = {
|
|
|
11105
11667
|
}
|
|
11106
11668
|
}
|
|
11107
11669
|
},
|
|
11670
|
+
files: files,
|
|
11671
|
+
fill: fill,
|
|
11108
11672
|
fingerprint: fingerprint,
|
|
11109
11673
|
finland: finland,
|
|
11674
|
+
"flag-3-1": {
|
|
11675
|
+
name: "flag-3-1",
|
|
11676
|
+
keywords: [
|
|
11677
|
+
"winner",
|
|
11678
|
+
"success",
|
|
11679
|
+
"location",
|
|
11680
|
+
"banner",
|
|
11681
|
+
"finish",
|
|
11682
|
+
"start",
|
|
11683
|
+
"flag"
|
|
11684
|
+
],
|
|
11685
|
+
heights: {
|
|
11686
|
+
"16": {
|
|
11687
|
+
width: 16,
|
|
11688
|
+
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>"
|
|
11689
|
+
},
|
|
11690
|
+
"20": {
|
|
11691
|
+
width: 20,
|
|
11692
|
+
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>"
|
|
11693
|
+
},
|
|
11694
|
+
"24": {
|
|
11695
|
+
width: 24,
|
|
11696
|
+
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>"
|
|
11697
|
+
},
|
|
11698
|
+
"32": {
|
|
11699
|
+
width: 32,
|
|
11700
|
+
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>"
|
|
11701
|
+
}
|
|
11702
|
+
}
|
|
11703
|
+
},
|
|
11110
11704
|
"flag-3": {
|
|
11111
11705
|
name: "flag-3",
|
|
11112
11706
|
keywords: [
|
|
@@ -11335,6 +11929,24 @@ var data = {
|
|
|
11335
11929
|
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>"
|
|
11336
11930
|
}
|
|
11337
11931
|
}
|
|
11932
|
+
},
|
|
11933
|
+
google: google,
|
|
11934
|
+
"google-pay": {
|
|
11935
|
+
name: "google-pay",
|
|
11936
|
+
keywords: [
|
|
11937
|
+
"credit",
|
|
11938
|
+
"card",
|
|
11939
|
+
"debit",
|
|
11940
|
+
"google",
|
|
11941
|
+
"pay"
|
|
11942
|
+
],
|
|
11943
|
+
style: "colored",
|
|
11944
|
+
heights: {
|
|
11945
|
+
"32": {
|
|
11946
|
+
width: 32,
|
|
11947
|
+
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>"
|
|
11948
|
+
}
|
|
11949
|
+
}
|
|
11338
11950
|
},
|
|
11339
11951
|
greece: greece,
|
|
11340
11952
|
greenland: greenland,
|
|
@@ -11642,6 +12254,7 @@ var data = {
|
|
|
11642
12254
|
iceland: iceland,
|
|
11643
12255
|
india: india,
|
|
11644
12256
|
indonesia: indonesia,
|
|
12257
|
+
instagram: instagram,
|
|
11645
12258
|
"invoice-dollar": {
|
|
11646
12259
|
name: "invoice-dollar",
|
|
11647
12260
|
keywords: [
|
|
@@ -11800,6 +12413,7 @@ var data = {
|
|
|
11800
12413
|
}
|
|
11801
12414
|
},
|
|
11802
12415
|
link: link,
|
|
12416
|
+
linkedin: linkedin,
|
|
11803
12417
|
lithuania: lithuania,
|
|
11804
12418
|
"loader-4": {
|
|
11805
12419
|
name: "loader-4",
|
|
@@ -11874,6 +12488,7 @@ var data = {
|
|
|
11874
12488
|
luxembourg: luxembourg,
|
|
11875
12489
|
macau: macau,
|
|
11876
12490
|
madagascar: madagascar,
|
|
12491
|
+
maestro: maestro,
|
|
11877
12492
|
magnifier: magnifier,
|
|
11878
12493
|
"magnifier-minus": {
|
|
11879
12494
|
name: "magnifier-minus",
|
|
@@ -11963,8 +12578,53 @@ var data = {
|
|
|
11963
12578
|
}
|
|
11964
12579
|
},
|
|
11965
12580
|
martinique: martinique,
|
|
12581
|
+
"mastercard-2": {
|
|
12582
|
+
name: "mastercard-2",
|
|
12583
|
+
keywords: [
|
|
12584
|
+
"credit",
|
|
12585
|
+
"card",
|
|
12586
|
+
"debit",
|
|
12587
|
+
"mastercard"
|
|
12588
|
+
],
|
|
12589
|
+
style: "colored",
|
|
12590
|
+
heights: {
|
|
12591
|
+
"32": {
|
|
12592
|
+
width: 32,
|
|
12593
|
+
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>"
|
|
12594
|
+
}
|
|
12595
|
+
}
|
|
12596
|
+
},
|
|
12597
|
+
mastercard: mastercard,
|
|
11966
12598
|
mauritania: mauritania,
|
|
11967
12599
|
mauritius: mauritius,
|
|
12600
|
+
"media-record": {
|
|
12601
|
+
name: "media-record",
|
|
12602
|
+
keywords: [
|
|
12603
|
+
"control",
|
|
12604
|
+
"circle",
|
|
12605
|
+
"record",
|
|
12606
|
+
"media",
|
|
12607
|
+
"button"
|
|
12608
|
+
],
|
|
12609
|
+
heights: {
|
|
12610
|
+
"16": {
|
|
12611
|
+
width: 16,
|
|
12612
|
+
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>"
|
|
12613
|
+
},
|
|
12614
|
+
"20": {
|
|
12615
|
+
width: 20,
|
|
12616
|
+
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>"
|
|
12617
|
+
},
|
|
12618
|
+
"24": {
|
|
12619
|
+
width: 24,
|
|
12620
|
+
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>"
|
|
12621
|
+
},
|
|
12622
|
+
"32": {
|
|
12623
|
+
width: 32,
|
|
12624
|
+
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>"
|
|
12625
|
+
}
|
|
12626
|
+
}
|
|
12627
|
+
},
|
|
11968
12628
|
menu: menu,
|
|
11969
12629
|
message: message,
|
|
11970
12630
|
"message-arrow-right": {
|
|
@@ -12370,10 +13030,45 @@ var data = {
|
|
|
12370
13030
|
}
|
|
12371
13031
|
},
|
|
12372
13032
|
mongolia: mongolia,
|
|
13033
|
+
monitor: monitor,
|
|
12373
13034
|
montenegro: montenegro,
|
|
12374
13035
|
moon: moon,
|
|
12375
13036
|
morocco: morocco,
|
|
12376
13037
|
mozanbique: mozanbique,
|
|
13038
|
+
"music-playlist-2": {
|
|
13039
|
+
name: "music-playlist-2",
|
|
13040
|
+
keywords: [
|
|
13041
|
+
"sound",
|
|
13042
|
+
"music",
|
|
13043
|
+
"play",
|
|
13044
|
+
"list",
|
|
13045
|
+
"song",
|
|
13046
|
+
"note",
|
|
13047
|
+
"audio",
|
|
13048
|
+
"playlist",
|
|
13049
|
+
"album",
|
|
13050
|
+
"tracks",
|
|
13051
|
+
"media"
|
|
13052
|
+
],
|
|
13053
|
+
heights: {
|
|
13054
|
+
"16": {
|
|
13055
|
+
width: 16,
|
|
13056
|
+
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>"
|
|
13057
|
+
},
|
|
13058
|
+
"20": {
|
|
13059
|
+
width: 20,
|
|
13060
|
+
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>"
|
|
13061
|
+
},
|
|
13062
|
+
"24": {
|
|
13063
|
+
width: 24,
|
|
13064
|
+
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>"
|
|
13065
|
+
},
|
|
13066
|
+
"32": {
|
|
13067
|
+
width: 32,
|
|
13068
|
+
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>"
|
|
13069
|
+
}
|
|
13070
|
+
}
|
|
13071
|
+
},
|
|
12377
13072
|
myanmar: myanmar,
|
|
12378
13073
|
namibia: namibia,
|
|
12379
13074
|
nauru: nauru,
|
|
@@ -12740,6 +13435,23 @@ var data = {
|
|
|
12740
13435
|
}
|
|
12741
13436
|
},
|
|
12742
13437
|
paraguay: paraguay,
|
|
13438
|
+
"paypal-2": {
|
|
13439
|
+
name: "paypal-2",
|
|
13440
|
+
keywords: [
|
|
13441
|
+
"credit",
|
|
13442
|
+
"card",
|
|
13443
|
+
"debit",
|
|
13444
|
+
"paypal"
|
|
13445
|
+
],
|
|
13446
|
+
style: "colored",
|
|
13447
|
+
heights: {
|
|
13448
|
+
"32": {
|
|
13449
|
+
width: 32,
|
|
13450
|
+
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>"
|
|
13451
|
+
}
|
|
13452
|
+
}
|
|
13453
|
+
},
|
|
13454
|
+
paypal: paypal,
|
|
12743
13455
|
"pen-2": {
|
|
12744
13456
|
name: "pen-2",
|
|
12745
13457
|
keywords: [
|
|
@@ -13207,6 +13919,7 @@ var data = {
|
|
|
13207
13919
|
}
|
|
13208
13920
|
}
|
|
13209
13921
|
},
|
|
13922
|
+
pinterest: pinterest,
|
|
13210
13923
|
pinwheel: pinwheel,
|
|
13211
13924
|
plus: plus,
|
|
13212
13925
|
pointer: pointer,
|
|
@@ -13298,6 +14011,38 @@ var data = {
|
|
|
13298
14011
|
receipt: receipt,
|
|
13299
14012
|
recycle: recycle,
|
|
13300
14013
|
refresh: refresh,
|
|
14014
|
+
"refresh-clockwise-slash": {
|
|
14015
|
+
name: "refresh-clockwise-slash",
|
|
14016
|
+
keywords: [
|
|
14017
|
+
"control",
|
|
14018
|
+
"disabled",
|
|
14019
|
+
"reload",
|
|
14020
|
+
"update",
|
|
14021
|
+
"refresh",
|
|
14022
|
+
"clockwise",
|
|
14023
|
+
"slash",
|
|
14024
|
+
"blocked",
|
|
14025
|
+
"action"
|
|
14026
|
+
],
|
|
14027
|
+
heights: {
|
|
14028
|
+
"16": {
|
|
14029
|
+
width: 16,
|
|
14030
|
+
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>"
|
|
14031
|
+
},
|
|
14032
|
+
"20": {
|
|
14033
|
+
width: 20,
|
|
14034
|
+
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>"
|
|
14035
|
+
},
|
|
14036
|
+
"24": {
|
|
14037
|
+
width: 24,
|
|
14038
|
+
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>"
|
|
14039
|
+
},
|
|
14040
|
+
"32": {
|
|
14041
|
+
width: 32,
|
|
14042
|
+
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>"
|
|
14043
|
+
}
|
|
14044
|
+
}
|
|
14045
|
+
},
|
|
13301
14046
|
"repeat-3": {
|
|
13302
14047
|
name: "repeat-3",
|
|
13303
14048
|
keywords: [
|
|
@@ -13624,6 +14369,23 @@ var data = {
|
|
|
13624
14369
|
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>"
|
|
13625
14370
|
}
|
|
13626
14371
|
}
|
|
14372
|
+
},
|
|
14373
|
+
"shop-pay": {
|
|
14374
|
+
name: "shop-pay",
|
|
14375
|
+
keywords: [
|
|
14376
|
+
"credit",
|
|
14377
|
+
"card",
|
|
14378
|
+
"debit",
|
|
14379
|
+
"shop",
|
|
14380
|
+
"pay"
|
|
14381
|
+
],
|
|
14382
|
+
style: "colored",
|
|
14383
|
+
heights: {
|
|
14384
|
+
"32": {
|
|
14385
|
+
width: 32,
|
|
14386
|
+
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>"
|
|
14387
|
+
}
|
|
14388
|
+
}
|
|
13627
14389
|
},
|
|
13628
14390
|
"sidebar-left-hide": {
|
|
13629
14391
|
name: "sidebar-left-hide",
|
|
@@ -13840,6 +14602,7 @@ var data = {
|
|
|
13840
14602
|
}
|
|
13841
14603
|
}
|
|
13842
14604
|
},
|
|
14605
|
+
slack: slack,
|
|
13843
14606
|
"sliders-3": {
|
|
13844
14607
|
name: "sliders-3",
|
|
13845
14608
|
keywords: [
|
|
@@ -14247,7 +15010,228 @@ var data = {
|
|
|
14247
15010
|
taiwan: taiwan,
|
|
14248
15011
|
tajikistan: tajikistan,
|
|
14249
15012
|
tanzania: tanzania,
|
|
15013
|
+
"text-align-center-2": {
|
|
15014
|
+
name: "text-align-center-2",
|
|
15015
|
+
keywords: [
|
|
15016
|
+
"text",
|
|
15017
|
+
"paragraph",
|
|
15018
|
+
"alignment",
|
|
15019
|
+
"center",
|
|
15020
|
+
"line",
|
|
15021
|
+
"typography",
|
|
15022
|
+
"align"
|
|
15023
|
+
],
|
|
15024
|
+
heights: {
|
|
15025
|
+
"16": {
|
|
15026
|
+
width: 16,
|
|
15027
|
+
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>"
|
|
15028
|
+
},
|
|
15029
|
+
"20": {
|
|
15030
|
+
width: 20,
|
|
15031
|
+
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>"
|
|
15032
|
+
},
|
|
15033
|
+
"24": {
|
|
15034
|
+
width: 24,
|
|
15035
|
+
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>"
|
|
15036
|
+
},
|
|
15037
|
+
"32": {
|
|
15038
|
+
width: 32,
|
|
15039
|
+
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>"
|
|
15040
|
+
}
|
|
15041
|
+
}
|
|
15042
|
+
},
|
|
15043
|
+
"text-align-left-2": {
|
|
15044
|
+
name: "text-align-left-2",
|
|
15045
|
+
keywords: [
|
|
15046
|
+
"text",
|
|
15047
|
+
"left",
|
|
15048
|
+
"paragraph",
|
|
15049
|
+
"alignment",
|
|
15050
|
+
"line",
|
|
15051
|
+
"typography",
|
|
15052
|
+
"align"
|
|
15053
|
+
],
|
|
15054
|
+
heights: {
|
|
15055
|
+
"16": {
|
|
15056
|
+
width: 16,
|
|
15057
|
+
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>"
|
|
15058
|
+
},
|
|
15059
|
+
"20": {
|
|
15060
|
+
width: 20,
|
|
15061
|
+
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>"
|
|
15062
|
+
},
|
|
15063
|
+
"24": {
|
|
15064
|
+
width: 24,
|
|
15065
|
+
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>"
|
|
15066
|
+
},
|
|
15067
|
+
"32": {
|
|
15068
|
+
width: 32,
|
|
15069
|
+
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>"
|
|
15070
|
+
}
|
|
15071
|
+
}
|
|
15072
|
+
},
|
|
15073
|
+
"text-align-right-2": {
|
|
15074
|
+
name: "text-align-right-2",
|
|
15075
|
+
keywords: [
|
|
15076
|
+
"text",
|
|
15077
|
+
"paragraph",
|
|
15078
|
+
"alignment",
|
|
15079
|
+
"right",
|
|
15080
|
+
"line",
|
|
15081
|
+
"typography",
|
|
15082
|
+
"align"
|
|
15083
|
+
],
|
|
15084
|
+
heights: {
|
|
15085
|
+
"16": {
|
|
15086
|
+
width: 16,
|
|
15087
|
+
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>"
|
|
15088
|
+
},
|
|
15089
|
+
"20": {
|
|
15090
|
+
width: 20,
|
|
15091
|
+
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>"
|
|
15092
|
+
},
|
|
15093
|
+
"24": {
|
|
15094
|
+
width: 24,
|
|
15095
|
+
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>"
|
|
15096
|
+
},
|
|
15097
|
+
"32": {
|
|
15098
|
+
width: 32,
|
|
15099
|
+
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>"
|
|
15100
|
+
}
|
|
15101
|
+
}
|
|
15102
|
+
},
|
|
15103
|
+
"text-bold": {
|
|
15104
|
+
name: "text-bold",
|
|
15105
|
+
keywords: [
|
|
15106
|
+
"text",
|
|
15107
|
+
"letter",
|
|
15108
|
+
"typography",
|
|
15109
|
+
"bold",
|
|
15110
|
+
"font"
|
|
15111
|
+
],
|
|
15112
|
+
heights: {
|
|
15113
|
+
"16": {
|
|
15114
|
+
width: 16,
|
|
15115
|
+
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>"
|
|
15116
|
+
},
|
|
15117
|
+
"20": {
|
|
15118
|
+
width: 20,
|
|
15119
|
+
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>"
|
|
15120
|
+
},
|
|
15121
|
+
"24": {
|
|
15122
|
+
width: 24,
|
|
15123
|
+
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>"
|
|
15124
|
+
},
|
|
15125
|
+
"32": {
|
|
15126
|
+
width: 32,
|
|
15127
|
+
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>"
|
|
15128
|
+
}
|
|
15129
|
+
}
|
|
15130
|
+
},
|
|
15131
|
+
"text-italic": {
|
|
15132
|
+
name: "text-italic",
|
|
15133
|
+
keywords: [
|
|
15134
|
+
"text",
|
|
15135
|
+
"font",
|
|
15136
|
+
"letter",
|
|
15137
|
+
"typography",
|
|
15138
|
+
"format",
|
|
15139
|
+
"italic"
|
|
15140
|
+
],
|
|
15141
|
+
heights: {
|
|
15142
|
+
"16": {
|
|
15143
|
+
width: 16,
|
|
15144
|
+
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>"
|
|
15145
|
+
},
|
|
15146
|
+
"20": {
|
|
15147
|
+
width: 20,
|
|
15148
|
+
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>"
|
|
15149
|
+
},
|
|
15150
|
+
"24": {
|
|
15151
|
+
width: 24,
|
|
15152
|
+
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>"
|
|
15153
|
+
},
|
|
15154
|
+
"32": {
|
|
15155
|
+
width: 32,
|
|
15156
|
+
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>"
|
|
15157
|
+
}
|
|
15158
|
+
}
|
|
15159
|
+
},
|
|
14250
15160
|
thailand: thailand,
|
|
15161
|
+
"thumbs-down": {
|
|
15162
|
+
name: "thumbs-down",
|
|
15163
|
+
keywords: [
|
|
15164
|
+
"down",
|
|
15165
|
+
"vote",
|
|
15166
|
+
"emoji",
|
|
15167
|
+
"emoticon",
|
|
15168
|
+
"hand",
|
|
15169
|
+
"dislike",
|
|
15170
|
+
"thumbs"
|
|
15171
|
+
],
|
|
15172
|
+
heights: {
|
|
15173
|
+
"16": {
|
|
15174
|
+
width: 16,
|
|
15175
|
+
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>"
|
|
15176
|
+
},
|
|
15177
|
+
"20": {
|
|
15178
|
+
width: 20,
|
|
15179
|
+
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>"
|
|
15180
|
+
},
|
|
15181
|
+
"24": {
|
|
15182
|
+
width: 24,
|
|
15183
|
+
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>"
|
|
15184
|
+
},
|
|
15185
|
+
"32": {
|
|
15186
|
+
width: 32,
|
|
15187
|
+
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>"
|
|
15188
|
+
}
|
|
15189
|
+
}
|
|
15190
|
+
},
|
|
15191
|
+
"thumbs-up": {
|
|
15192
|
+
name: "thumbs-up",
|
|
15193
|
+
keywords: [
|
|
15194
|
+
"up",
|
|
15195
|
+
"like",
|
|
15196
|
+
"vote",
|
|
15197
|
+
"emoji",
|
|
15198
|
+
"emoticon",
|
|
15199
|
+
"hand",
|
|
15200
|
+
"thumbs"
|
|
15201
|
+
],
|
|
15202
|
+
heights: {
|
|
15203
|
+
"16": {
|
|
15204
|
+
width: 16,
|
|
15205
|
+
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>"
|
|
15206
|
+
},
|
|
15207
|
+
"20": {
|
|
15208
|
+
width: 20,
|
|
15209
|
+
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>"
|
|
15210
|
+
},
|
|
15211
|
+
"24": {
|
|
15212
|
+
width: 24,
|
|
15213
|
+
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>"
|
|
15214
|
+
},
|
|
15215
|
+
"32": {
|
|
15216
|
+
width: 32,
|
|
15217
|
+
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>"
|
|
15218
|
+
}
|
|
15219
|
+
}
|
|
15220
|
+
},
|
|
15221
|
+
"tik-tok": {
|
|
15222
|
+
name: "tik-tok",
|
|
15223
|
+
keywords: [
|
|
15224
|
+
"logo",
|
|
15225
|
+
"tik",
|
|
15226
|
+
"tok"
|
|
15227
|
+
],
|
|
15228
|
+
heights: {
|
|
15229
|
+
"32": {
|
|
15230
|
+
width: 32,
|
|
15231
|
+
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>"
|
|
15232
|
+
}
|
|
15233
|
+
}
|
|
15234
|
+
},
|
|
14251
15235
|
"timeline-vertical-2": {
|
|
14252
15236
|
name: "timeline-vertical-2",
|
|
14253
15237
|
keywords: [
|
|
@@ -14769,6 +15753,24 @@ var data = {
|
|
|
14769
15753
|
venezuela: venezuela,
|
|
14770
15754
|
video: video,
|
|
14771
15755
|
vietnam: vietnam,
|
|
15756
|
+
"visa-2": {
|
|
15757
|
+
name: "visa-2",
|
|
15758
|
+
keywords: [
|
|
15759
|
+
"credit",
|
|
15760
|
+
"card",
|
|
15761
|
+
"debit",
|
|
15762
|
+
"visa"
|
|
15763
|
+
],
|
|
15764
|
+
style: "colored",
|
|
15765
|
+
heights: {
|
|
15766
|
+
"32": {
|
|
15767
|
+
width: 32,
|
|
15768
|
+
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>"
|
|
15769
|
+
}
|
|
15770
|
+
}
|
|
15771
|
+
},
|
|
15772
|
+
visa: visa,
|
|
15773
|
+
voicemail: voicemail,
|
|
14772
15774
|
volume: volume,
|
|
14773
15775
|
"volume-disabled": {
|
|
14774
15776
|
name: "volume-disabled",
|
|
@@ -15094,6 +16096,20 @@ var data = {
|
|
|
15094
16096
|
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>"
|
|
15095
16097
|
}
|
|
15096
16098
|
}
|
|
16099
|
+
},
|
|
16100
|
+
"x-twitter": {
|
|
16101
|
+
name: "x-twitter",
|
|
16102
|
+
keywords: [
|
|
16103
|
+
"logo",
|
|
16104
|
+
"twitter",
|
|
16105
|
+
"x.com"
|
|
16106
|
+
],
|
|
16107
|
+
heights: {
|
|
16108
|
+
"32": {
|
|
16109
|
+
width: 32,
|
|
16110
|
+
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>"
|
|
16111
|
+
}
|
|
16112
|
+
}
|
|
15097
16113
|
},
|
|
15098
16114
|
xmark: xmark,
|
|
15099
16115
|
yemen: yemen,
|
|
@@ -15133,6 +16149,7 @@ var data = {
|
|
|
15133
16149
|
}
|
|
15134
16150
|
}
|
|
15135
16151
|
},
|
|
16152
|
+
youtube: youtube,
|
|
15136
16153
|
zambia: zambia,
|
|
15137
16154
|
zimbabwe: zimbabwe
|
|
15138
16155
|
};
|
|
@@ -15391,11 +16408,12 @@ function getDefaultExportFromCjs (x) {
|
|
|
15391
16408
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
15392
16409
|
}
|
|
15393
16410
|
|
|
15394
|
-
var createIcons$1;
|
|
16411
|
+
var createIcons$1 = {exports: {}};
|
|
16412
|
+
|
|
15395
16413
|
var hasRequiredCreateIcons;
|
|
15396
16414
|
|
|
15397
16415
|
function requireCreateIcons () {
|
|
15398
|
-
if (hasRequiredCreateIcons) return createIcons$1;
|
|
16416
|
+
if (hasRequiredCreateIcons) return createIcons$1.exports;
|
|
15399
16417
|
hasRequiredCreateIcons = 1;
|
|
15400
16418
|
const DEFAULT_HEIGHT = 16;
|
|
15401
16419
|
|
|
@@ -15413,7 +16431,7 @@ function requireCreateIcons () {
|
|
|
15413
16431
|
* with SVG rendering helpers, and returns a Proxy that supports
|
|
15414
16432
|
* deprecated-name lookups with console warnings.
|
|
15415
16433
|
*/
|
|
15416
|
-
|
|
16434
|
+
function createIcons(data, nameAliases) {
|
|
15417
16435
|
const warnedNames = new Set();
|
|
15418
16436
|
|
|
15419
16437
|
function warnDeprecation(apolloName, nucleoName) {
|
|
@@ -15556,8 +16574,11 @@ function requireCreateIcons () {
|
|
|
15556
16574
|
});
|
|
15557
16575
|
|
|
15558
16576
|
return { default: proxiedData, getIcon, getIconsByTag };
|
|
15559
|
-
}
|
|
15560
|
-
|
|
16577
|
+
}
|
|
16578
|
+
|
|
16579
|
+
createIcons$1.exports = createIcons;
|
|
16580
|
+
createIcons$1.exports.default = createIcons;
|
|
16581
|
+
return createIcons$1.exports;
|
|
15561
16582
|
}
|
|
15562
16583
|
|
|
15563
16584
|
var createIconsExports = requireCreateIcons();
|
|
@@ -15598,11 +16619,11 @@ Icon.style = xplIconCss();
|
|
|
15598
16619
|
const Input = class {
|
|
15599
16620
|
constructor(hostRef) {
|
|
15600
16621
|
index.registerInstance(this, hostRef);
|
|
15601
|
-
this.focusEvent = index.createEvent(this, "focusEvent", 7);
|
|
15602
16622
|
this.blurEvent = index.createEvent(this, "blurEvent", 7);
|
|
15603
|
-
this.
|
|
16623
|
+
this.focusEvent = index.createEvent(this, "focusEvent", 7);
|
|
15604
16624
|
this.inputEvent = index.createEvent(this, "inputEvent", 7);
|
|
15605
16625
|
this.search = index.createEvent(this, "search", 7);
|
|
16626
|
+
this.valueChange = index.createEvent(this, "valueChange", 7);
|
|
15606
16627
|
this.multiline = false;
|
|
15607
16628
|
this.dateFormat = 'Y-m-d';
|
|
15608
16629
|
this.timeFormat = '24h';
|
|
@@ -15617,6 +16638,10 @@ const Input = class {
|
|
|
15617
16638
|
this.isInternational = true;
|
|
15618
16639
|
this.ariaLabel = '';
|
|
15619
16640
|
this.type = 'text';
|
|
16641
|
+
this.handleChildValueChange = (event) => {
|
|
16642
|
+
event.stopPropagation();
|
|
16643
|
+
this.valueChange.emit(event.detail);
|
|
16644
|
+
};
|
|
15620
16645
|
this.valueChanged = (event) => {
|
|
15621
16646
|
const target = event.target;
|
|
15622
16647
|
this.valueChange.emit(target.value);
|
|
@@ -15704,19 +16729,19 @@ const Input = class {
|
|
|
15704
16729
|
var _a, _b, _c, _d, _e, _f;
|
|
15705
16730
|
switch (this.type) {
|
|
15706
16731
|
case 'file':
|
|
15707
|
-
return (index.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 }, index.h("slot", { name: "trigger" })));
|
|
16732
|
+
return (index.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 }, index.h("slot", { name: "trigger" })));
|
|
15708
16733
|
case 'color':
|
|
15709
|
-
return (index.h("xpl-input-color", { disabled: this.disabled, value: this.value, placeholder: this.placeholder, required: this.required, hideEyeDropper: this.hideEyeDropper }));
|
|
16734
|
+
return (index.h("xpl-input-color", { disabled: this.disabled, value: this.value, placeholder: this.placeholder, required: this.required, hideEyeDropper: this.hideEyeDropper, onInputChange: this.handleChildValueChange }));
|
|
15710
16735
|
case 'date':
|
|
15711
|
-
return (index.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 }));
|
|
16736
|
+
return (index.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 }));
|
|
15712
16737
|
case 'time':
|
|
15713
|
-
return (index.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 }));
|
|
16738
|
+
return (index.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 }));
|
|
15714
16739
|
case 'phone':
|
|
15715
|
-
return (index.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 }));
|
|
16740
|
+
return (index.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 }));
|
|
15716
16741
|
case 'search': {
|
|
15717
16742
|
const hasVisibleLabel = Boolean(((_a = this.label) !== null && _a !== void 0 ? _a : '').trim());
|
|
15718
16743
|
const hasErrorMessage = Boolean(this.error && this.error.length > 0);
|
|
15719
|
-
return (index.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) => {
|
|
16744
|
+
return (index.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) => {
|
|
15720
16745
|
this.searchInputRef = el !== null && el !== void 0 ? el : undefined;
|
|
15721
16746
|
}, required: this.required, shape: (_e = this.shape) !== null && _e !== void 0 ? _e : 'rounded', value: (_f = this.value) !== null && _f !== void 0 ? _f : '' }));
|
|
15722
16747
|
}
|
|
@@ -15744,13 +16769,13 @@ const Input = class {
|
|
|
15744
16769
|
this.characterCount > this.maxCharacterCount) {
|
|
15745
16770
|
hasError = true;
|
|
15746
16771
|
}
|
|
15747
|
-
return (index.h(index.Host, { key: '
|
|
16772
|
+
return (index.h(index.Host, { key: '406ab6d1b4d43ceb06cdb819cec8699d2d3322b3', class: {
|
|
15748
16773
|
'xpl-input': true,
|
|
15749
16774
|
'xpl-input--disabled': this.disabled,
|
|
15750
16775
|
'xpl-input--error': hasError,
|
|
15751
16776
|
'xpl-input--readonly': this.readonly,
|
|
15752
16777
|
[`xpl-input--${this.type}`]: true,
|
|
15753
|
-
} }, this.label && (index.h("label", { key: '
|
|
16778
|
+
} }, this.label && (index.h("label", { key: 'ab7ea9eb5cb82e6b602ce93ab3da482c12f59078', class: "xpl-input-label", htmlFor: this._id }, this.label, this.description && index.h("small", { key: '37435c5f1d3d8a30acba7788a7d215921e679327' }, this.description))), this.renderInput(), ((_a = this.error) === null || _a === void 0 ? void 0 : _a.length) > 0 && (index.h("label", { key: '57b66daa234d93d9f6d7ad582380960013596919', class: "xpl-input-error", htmlFor: this._id, id: `${this._id}-error` }, index.h("xpl-icon", { key: '9a14b46934a8d7edc5f5e48c3fecf87441e741ca', icon: "alert-circle", size: 16 }), index.h("span", { key: 'badecb1aba3b3ff35cbcf6d7cb4d5355844951e6' }, this.error)))));
|
|
15754
16779
|
}
|
|
15755
16780
|
get el() { return index.getElement(this); }
|
|
15756
16781
|
};
|
|
@@ -19125,15 +20150,21 @@ const Radio = class {
|
|
|
19125
20150
|
}
|
|
19126
20151
|
};
|
|
19127
20152
|
}
|
|
20153
|
+
get isChecked() {
|
|
20154
|
+
if (this.selectedValue !== undefined && this.value !== undefined) {
|
|
20155
|
+
return this.selectedValue === this.value;
|
|
20156
|
+
}
|
|
20157
|
+
return Boolean(this.checked);
|
|
20158
|
+
}
|
|
19128
20159
|
render() {
|
|
19129
|
-
return (index.h(index.Host, { key: '
|
|
20160
|
+
return (index.h(index.Host, { key: '1cda65b10ee03e06c30b2c501d7f2ec4153619f6', class: {
|
|
19130
20161
|
'xpl-checkbox-radio-container': true,
|
|
19131
20162
|
styled: this.styled,
|
|
19132
20163
|
disabled: this.disabled,
|
|
19133
|
-
} }, index.h("input", { key: '
|
|
20164
|
+
} }, index.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 }), index.h("label", { key: 'd07051460f7503a182b969eeafcb8eba5d61bef2', class: {
|
|
19134
20165
|
'xpl-label': true,
|
|
19135
20166
|
'xpl-label--disabled': this.disabled,
|
|
19136
|
-
}, htmlFor: this.id }, index.h("slot", { key: '
|
|
20167
|
+
}, htmlFor: this.id }, index.h("slot", { key: '06835704869d514a0d3eb01d671b6bec42524e89' }), this.description && (index.h("small", { key: '3e798a699fa53ca6c932e6466b438ed47aa46148', class: {
|
|
19137
20168
|
'xpl-description': true,
|
|
19138
20169
|
'xpl-description--disabled': this.disabled,
|
|
19139
20170
|
} }, this.description)))));
|