@icons-pack/react-simple-icons 12.2.0 → 12.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/icons/SiDuckduckgo.cjs +1 -1
- package/icons/SiDuckduckgo.mjs +1 -1
- package/icons/SiGandi.cjs +51 -0
- package/icons/SiGandi.d.ts +4 -0
- package/icons/SiGandi.mjs +27 -0
- package/icons/SiGleam.cjs +51 -0
- package/icons/SiGleam.d.ts +4 -0
- package/icons/SiGleam.mjs +27 -0
- package/icons/SiH2database.cjs +51 -0
- package/icons/SiH2database.d.ts +4 -0
- package/icons/SiH2database.mjs +27 -0
- package/icons/SiMessenger.cjs +2 -2
- package/icons/SiMessenger.d.ts +1 -1
- package/icons/SiMessenger.mjs +2 -2
- package/icons/SiOsmand.cjs +51 -0
- package/icons/SiOsmand.d.ts +4 -0
- package/icons/SiOsmand.mjs +27 -0
- package/icons/SiPortableappsdotcom.cjs +51 -0
- package/icons/SiPortableappsdotcom.d.ts +4 -0
- package/icons/SiPortableappsdotcom.mjs +27 -0
- package/icons/SiTrakt.cjs +2 -2
- package/icons/SiTrakt.d.ts +1 -1
- package/icons/SiTrakt.mjs +2 -2
- package/icons/SiZenbrowser.cjs +51 -0
- package/icons/SiZenbrowser.d.ts +4 -0
- package/icons/SiZenbrowser.mjs +27 -0
- package/index.cjs +18 -0
- package/index.d.ts +6 -0
- package/index.mjs +6 -0
- package/package.json +2 -2
- package/src/icons/SiDuckduckgo.tsx +1 -1
- package/src/icons/SiGandi.tsx +45 -0
- package/src/icons/SiGleam.tsx +45 -0
- package/src/icons/SiH2database.tsx +45 -0
- package/src/icons/SiMessenger.tsx +2 -2
- package/src/icons/SiOsmand.tsx +45 -0
- package/src/icons/SiPortableappsdotcom.tsx +45 -0
- package/src/icons/SiTrakt.tsx +2 -2
- package/src/icons/SiZenbrowser.tsx +45 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
|
+
|
|
5
|
+
const jsxRuntime = require('react/jsx-runtime');
|
|
6
|
+
const React = require('react');
|
|
7
|
+
|
|
8
|
+
function _interopNamespaceDefault(e) {
|
|
9
|
+
const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
|
|
10
|
+
if (e) {
|
|
11
|
+
for (const k in e) {
|
|
12
|
+
if (k !== 'default') {
|
|
13
|
+
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: () => e[k]
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
n.default = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
26
|
+
|
|
27
|
+
const defaultColor = "#F76F53";
|
|
28
|
+
const SiZenbrowser = React__namespace.forwardRef(function SiZenbrowser2({ title = "Zen Browser", color = "currentColor", size = 24, ...others }, ref) {
|
|
29
|
+
if (color === "default") {
|
|
30
|
+
color = defaultColor;
|
|
31
|
+
}
|
|
32
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
33
|
+
"svg",
|
|
34
|
+
{
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
fill: color,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
ref,
|
|
41
|
+
...others,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
|
|
44
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiZenbrowser;
|
|
51
|
+
exports.defaultColor = defaultColor;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const defaultColor = "#F76F53";
|
|
5
|
+
const SiZenbrowser = React.forwardRef(function SiZenbrowser2({ title = "Zen Browser", color = "currentColor", size = 24, ...others }, ref) {
|
|
6
|
+
if (color === "default") {
|
|
7
|
+
color = defaultColor;
|
|
8
|
+
}
|
|
9
|
+
return /* @__PURE__ */ jsxs(
|
|
10
|
+
"svg",
|
|
11
|
+
{
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
fill: color,
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
ref,
|
|
18
|
+
...others,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: title }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiZenbrowser as default, defaultColor };
|
package/index.cjs
CHANGED
|
@@ -1064,6 +1064,7 @@ const SiGamescience = require('./icons/SiGamescience.cjs');
|
|
|
1064
1064
|
const SiGamebanana = require('./icons/SiGamebanana.cjs');
|
|
1065
1065
|
const SiGameloft = require('./icons/SiGameloft.cjs');
|
|
1066
1066
|
const SiGamemaker = require('./icons/SiGamemaker.cjs');
|
|
1067
|
+
const SiGandi = require('./icons/SiGandi.cjs');
|
|
1067
1068
|
const SiGarmin = require('./icons/SiGarmin.cjs');
|
|
1068
1069
|
const SiGatling = require('./icons/SiGatling.cjs');
|
|
1069
1070
|
const SiGatsby = require('./icons/SiGatsby.cjs');
|
|
@@ -1104,6 +1105,7 @@ const SiGitpod = require('./icons/SiGitpod.cjs');
|
|
|
1104
1105
|
const SiGitter = require('./icons/SiGitter.cjs');
|
|
1105
1106
|
const SiGldotinet = require('./icons/SiGldotinet.cjs');
|
|
1106
1107
|
const SiGlassdoor = require('./icons/SiGlassdoor.cjs');
|
|
1108
|
+
const SiGleam = require('./icons/SiGleam.cjs');
|
|
1107
1109
|
const SiGlide = require('./icons/SiGlide.cjs');
|
|
1108
1110
|
const SiGlitch = require('./icons/SiGlitch.cjs');
|
|
1109
1111
|
const SiGlobus = require('./icons/SiGlobus.cjs');
|
|
@@ -1226,6 +1228,7 @@ const SiGurobi = require('./icons/SiGurobi.cjs');
|
|
|
1226
1228
|
const SiGusto = require('./icons/SiGusto.cjs');
|
|
1227
1229
|
const SiGutenberg = require('./icons/SiGutenberg.cjs');
|
|
1228
1230
|
const SiHandm = require('./icons/SiHandm.cjs');
|
|
1231
|
+
const SiH2database = require('./icons/SiH2database.cjs');
|
|
1229
1232
|
const SiH3 = require('./icons/SiH3.cjs');
|
|
1230
1233
|
const SiHabr = require('./icons/SiHabr.cjs');
|
|
1231
1234
|
const SiHackclub = require('./icons/SiHackclub.cjs');
|
|
@@ -2047,6 +2050,7 @@ const SiOsano = require('./icons/SiOsano.cjs');
|
|
|
2047
2050
|
const SiOsf = require('./icons/SiOsf.cjs');
|
|
2048
2051
|
const SiOsgeo = require('./icons/SiOsgeo.cjs');
|
|
2049
2052
|
const SiOshkosh = require('./icons/SiOshkosh.cjs');
|
|
2053
|
+
const SiOsmand = require('./icons/SiOsmand.cjs');
|
|
2050
2054
|
const SiOsmc = require('./icons/SiOsmc.cjs');
|
|
2051
2055
|
const SiOsu = require('./icons/SiOsu.cjs');
|
|
2052
2056
|
const SiOtto = require('./icons/SiOtto.cjs');
|
|
@@ -2204,6 +2208,7 @@ const SiPond5 = require('./icons/SiPond5.cjs');
|
|
|
2204
2208
|
const SiPopos = require('./icons/SiPopos.cjs');
|
|
2205
2209
|
const SiPorkbun = require('./icons/SiPorkbun.cjs');
|
|
2206
2210
|
const SiPorsche = require('./icons/SiPorsche.cjs');
|
|
2211
|
+
const SiPortableappsdotcom = require('./icons/SiPortableappsdotcom.cjs');
|
|
2207
2212
|
const SiPortainer = require('./icons/SiPortainer.cjs');
|
|
2208
2213
|
const SiPortswigger = require('./icons/SiPortswigger.cjs');
|
|
2209
2214
|
const SiPosit = require('./icons/SiPosit.cjs');
|
|
@@ -3251,6 +3256,7 @@ const SiZebpay = require('./icons/SiZebpay.cjs');
|
|
|
3251
3256
|
const SiZebratechnologies = require('./icons/SiZebratechnologies.cjs');
|
|
3252
3257
|
const SiZedindustries = require('./icons/SiZedindustries.cjs');
|
|
3253
3258
|
const SiZelle = require('./icons/SiZelle.cjs');
|
|
3259
|
+
const SiZenbrowser = require('./icons/SiZenbrowser.cjs');
|
|
3254
3260
|
const SiZend = require('./icons/SiZend.cjs');
|
|
3255
3261
|
const SiZendesk = require('./icons/SiZendesk.cjs');
|
|
3256
3262
|
const SiZenn = require('./icons/SiZenn.cjs');
|
|
@@ -5405,6 +5411,8 @@ exports.SiGameloft = SiGameloft.default;
|
|
|
5405
5411
|
exports.SiGameloftHex = SiGameloft.defaultColor;
|
|
5406
5412
|
exports.SiGamemaker = SiGamemaker.default;
|
|
5407
5413
|
exports.SiGamemakerHex = SiGamemaker.defaultColor;
|
|
5414
|
+
exports.SiGandi = SiGandi.default;
|
|
5415
|
+
exports.SiGandiHex = SiGandi.defaultColor;
|
|
5408
5416
|
exports.SiGarmin = SiGarmin.default;
|
|
5409
5417
|
exports.SiGarminHex = SiGarmin.defaultColor;
|
|
5410
5418
|
exports.SiGatling = SiGatling.default;
|
|
@@ -5485,6 +5493,8 @@ exports.SiGldotinet = SiGldotinet.default;
|
|
|
5485
5493
|
exports.SiGldotinetHex = SiGldotinet.defaultColor;
|
|
5486
5494
|
exports.SiGlassdoor = SiGlassdoor.default;
|
|
5487
5495
|
exports.SiGlassdoorHex = SiGlassdoor.defaultColor;
|
|
5496
|
+
exports.SiGleam = SiGleam.default;
|
|
5497
|
+
exports.SiGleamHex = SiGleam.defaultColor;
|
|
5488
5498
|
exports.SiGlide = SiGlide.default;
|
|
5489
5499
|
exports.SiGlideHex = SiGlide.defaultColor;
|
|
5490
5500
|
exports.SiGlitch = SiGlitch.default;
|
|
@@ -5729,6 +5739,8 @@ exports.SiGutenberg = SiGutenberg.default;
|
|
|
5729
5739
|
exports.SiGutenbergHex = SiGutenberg.defaultColor;
|
|
5730
5740
|
exports.SiHandm = SiHandm.default;
|
|
5731
5741
|
exports.SiHandmHex = SiHandm.defaultColor;
|
|
5742
|
+
exports.SiH2database = SiH2database.default;
|
|
5743
|
+
exports.SiH2databaseHex = SiH2database.defaultColor;
|
|
5732
5744
|
exports.SiH3 = SiH3.default;
|
|
5733
5745
|
exports.SiH3Hex = SiH3.defaultColor;
|
|
5734
5746
|
exports.SiHabr = SiHabr.default;
|
|
@@ -7371,6 +7383,8 @@ exports.SiOsgeo = SiOsgeo.default;
|
|
|
7371
7383
|
exports.SiOsgeoHex = SiOsgeo.defaultColor;
|
|
7372
7384
|
exports.SiOshkosh = SiOshkosh.default;
|
|
7373
7385
|
exports.SiOshkoshHex = SiOshkosh.defaultColor;
|
|
7386
|
+
exports.SiOsmand = SiOsmand.default;
|
|
7387
|
+
exports.SiOsmandHex = SiOsmand.defaultColor;
|
|
7374
7388
|
exports.SiOsmc = SiOsmc.default;
|
|
7375
7389
|
exports.SiOsmcHex = SiOsmc.defaultColor;
|
|
7376
7390
|
exports.SiOsu = SiOsu.default;
|
|
@@ -7685,6 +7699,8 @@ exports.SiPorkbun = SiPorkbun.default;
|
|
|
7685
7699
|
exports.SiPorkbunHex = SiPorkbun.defaultColor;
|
|
7686
7700
|
exports.SiPorsche = SiPorsche.default;
|
|
7687
7701
|
exports.SiPorscheHex = SiPorsche.defaultColor;
|
|
7702
|
+
exports.SiPortableappsdotcom = SiPortableappsdotcom.default;
|
|
7703
|
+
exports.SiPortableappsdotcomHex = SiPortableappsdotcom.defaultColor;
|
|
7688
7704
|
exports.SiPortainer = SiPortainer.default;
|
|
7689
7705
|
exports.SiPortainerHex = SiPortainer.defaultColor;
|
|
7690
7706
|
exports.SiPortswigger = SiPortswigger.default;
|
|
@@ -9779,6 +9795,8 @@ exports.SiZedindustries = SiZedindustries.default;
|
|
|
9779
9795
|
exports.SiZedindustriesHex = SiZedindustries.defaultColor;
|
|
9780
9796
|
exports.SiZelle = SiZelle.default;
|
|
9781
9797
|
exports.SiZelleHex = SiZelle.defaultColor;
|
|
9798
|
+
exports.SiZenbrowser = SiZenbrowser.default;
|
|
9799
|
+
exports.SiZenbrowserHex = SiZenbrowser.defaultColor;
|
|
9782
9800
|
exports.SiZend = SiZend.default;
|
|
9783
9801
|
exports.SiZendHex = SiZend.defaultColor;
|
|
9784
9802
|
exports.SiZendesk = SiZendesk.default;
|
package/index.d.ts
CHANGED
|
@@ -1060,6 +1060,7 @@ export { default as SiGamescience, defaultColor as SiGamescienceHex } from './ic
|
|
|
1060
1060
|
export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana';
|
|
1061
1061
|
export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft';
|
|
1062
1062
|
export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker';
|
|
1063
|
+
export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi';
|
|
1063
1064
|
export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin';
|
|
1064
1065
|
export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling';
|
|
1065
1066
|
export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby';
|
|
@@ -1100,6 +1101,7 @@ export { default as SiGitpod, defaultColor as SiGitpodHex } from './icons/SiGitp
|
|
|
1100
1101
|
export { default as SiGitter, defaultColor as SiGitterHex } from './icons/SiGitter';
|
|
1101
1102
|
export { default as SiGldotinet, defaultColor as SiGldotinetHex } from './icons/SiGldotinet';
|
|
1102
1103
|
export { default as SiGlassdoor, defaultColor as SiGlassdoorHex } from './icons/SiGlassdoor';
|
|
1104
|
+
export { default as SiGleam, defaultColor as SiGleamHex } from './icons/SiGleam';
|
|
1103
1105
|
export { default as SiGlide, defaultColor as SiGlideHex } from './icons/SiGlide';
|
|
1104
1106
|
export { default as SiGlitch, defaultColor as SiGlitchHex } from './icons/SiGlitch';
|
|
1105
1107
|
export { default as SiGlobus, defaultColor as SiGlobusHex } from './icons/SiGlobus';
|
|
@@ -1222,6 +1224,7 @@ export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGuro
|
|
|
1222
1224
|
export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto';
|
|
1223
1225
|
export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg';
|
|
1224
1226
|
export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm';
|
|
1227
|
+
export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database';
|
|
1225
1228
|
export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3';
|
|
1226
1229
|
export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr';
|
|
1227
1230
|
export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub';
|
|
@@ -2043,6 +2046,7 @@ export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano'
|
|
|
2043
2046
|
export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf';
|
|
2044
2047
|
export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo';
|
|
2045
2048
|
export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh';
|
|
2049
|
+
export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand';
|
|
2046
2050
|
export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc';
|
|
2047
2051
|
export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu';
|
|
2048
2052
|
export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto';
|
|
@@ -2200,6 +2204,7 @@ export { default as SiPond5, defaultColor as SiPond5Hex } from './icons/SiPond5'
|
|
|
2200
2204
|
export { default as SiPopos, defaultColor as SiPoposHex } from './icons/SiPopos';
|
|
2201
2205
|
export { default as SiPorkbun, defaultColor as SiPorkbunHex } from './icons/SiPorkbun';
|
|
2202
2206
|
export { default as SiPorsche, defaultColor as SiPorscheHex } from './icons/SiPorsche';
|
|
2207
|
+
export { default as SiPortableappsdotcom, defaultColor as SiPortableappsdotcomHex } from './icons/SiPortableappsdotcom';
|
|
2203
2208
|
export { default as SiPortainer, defaultColor as SiPortainerHex } from './icons/SiPortainer';
|
|
2204
2209
|
export { default as SiPortswigger, defaultColor as SiPortswiggerHex } from './icons/SiPortswigger';
|
|
2205
2210
|
export { default as SiPosit, defaultColor as SiPositHex } from './icons/SiPosit';
|
|
@@ -3247,6 +3252,7 @@ export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebp
|
|
|
3247
3252
|
export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies';
|
|
3248
3253
|
export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries';
|
|
3249
3254
|
export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle';
|
|
3255
|
+
export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser';
|
|
3250
3256
|
export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend';
|
|
3251
3257
|
export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk';
|
|
3252
3258
|
export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn';
|
package/index.mjs
CHANGED
|
@@ -1060,6 +1060,7 @@ export { default as SiGamescience, defaultColor as SiGamescienceHex } from './ic
|
|
|
1060
1060
|
export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana.mjs';
|
|
1061
1061
|
export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft.mjs';
|
|
1062
1062
|
export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker.mjs';
|
|
1063
|
+
export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi.mjs';
|
|
1063
1064
|
export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin.mjs';
|
|
1064
1065
|
export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling.mjs';
|
|
1065
1066
|
export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby.mjs';
|
|
@@ -1100,6 +1101,7 @@ export { default as SiGitpod, defaultColor as SiGitpodHex } from './icons/SiGitp
|
|
|
1100
1101
|
export { default as SiGitter, defaultColor as SiGitterHex } from './icons/SiGitter.mjs';
|
|
1101
1102
|
export { default as SiGldotinet, defaultColor as SiGldotinetHex } from './icons/SiGldotinet.mjs';
|
|
1102
1103
|
export { default as SiGlassdoor, defaultColor as SiGlassdoorHex } from './icons/SiGlassdoor.mjs';
|
|
1104
|
+
export { default as SiGleam, defaultColor as SiGleamHex } from './icons/SiGleam.mjs';
|
|
1103
1105
|
export { default as SiGlide, defaultColor as SiGlideHex } from './icons/SiGlide.mjs';
|
|
1104
1106
|
export { default as SiGlitch, defaultColor as SiGlitchHex } from './icons/SiGlitch.mjs';
|
|
1105
1107
|
export { default as SiGlobus, defaultColor as SiGlobusHex } from './icons/SiGlobus.mjs';
|
|
@@ -1222,6 +1224,7 @@ export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGuro
|
|
|
1222
1224
|
export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto.mjs';
|
|
1223
1225
|
export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg.mjs';
|
|
1224
1226
|
export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm.mjs';
|
|
1227
|
+
export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database.mjs';
|
|
1225
1228
|
export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3.mjs';
|
|
1226
1229
|
export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr.mjs';
|
|
1227
1230
|
export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub.mjs';
|
|
@@ -2043,6 +2046,7 @@ export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano.
|
|
|
2043
2046
|
export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf.mjs';
|
|
2044
2047
|
export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo.mjs';
|
|
2045
2048
|
export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh.mjs';
|
|
2049
|
+
export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand.mjs';
|
|
2046
2050
|
export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc.mjs';
|
|
2047
2051
|
export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu.mjs';
|
|
2048
2052
|
export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto.mjs';
|
|
@@ -2200,6 +2204,7 @@ export { default as SiPond5, defaultColor as SiPond5Hex } from './icons/SiPond5.
|
|
|
2200
2204
|
export { default as SiPopos, defaultColor as SiPoposHex } from './icons/SiPopos.mjs';
|
|
2201
2205
|
export { default as SiPorkbun, defaultColor as SiPorkbunHex } from './icons/SiPorkbun.mjs';
|
|
2202
2206
|
export { default as SiPorsche, defaultColor as SiPorscheHex } from './icons/SiPorsche.mjs';
|
|
2207
|
+
export { default as SiPortableappsdotcom, defaultColor as SiPortableappsdotcomHex } from './icons/SiPortableappsdotcom.mjs';
|
|
2203
2208
|
export { default as SiPortainer, defaultColor as SiPortainerHex } from './icons/SiPortainer.mjs';
|
|
2204
2209
|
export { default as SiPortswigger, defaultColor as SiPortswiggerHex } from './icons/SiPortswigger.mjs';
|
|
2205
2210
|
export { default as SiPosit, defaultColor as SiPositHex } from './icons/SiPosit.mjs';
|
|
@@ -3247,6 +3252,7 @@ export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebp
|
|
|
3247
3252
|
export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies.mjs';
|
|
3248
3253
|
export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries.mjs';
|
|
3249
3254
|
export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle.mjs';
|
|
3255
|
+
export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser.mjs';
|
|
3250
3256
|
export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend.mjs';
|
|
3251
3257
|
export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk.mjs';
|
|
3252
3258
|
export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icons-pack/react-simple-icons",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.4.0",
|
|
4
4
|
"description": "This package provides the Simple Icons packaged as a set of React components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"react": "^18",
|
|
69
69
|
"rimraf": "6.0.1",
|
|
70
70
|
"signale": "1.4.0",
|
|
71
|
-
"simple-icons": "14.
|
|
71
|
+
"simple-icons": "14.12.0",
|
|
72
72
|
"turbo": "2.0.14",
|
|
73
73
|
"typescript": "5.5.4",
|
|
74
74
|
"uppercamelcase": "3.0.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{...others}
|
|
37
37
|
>
|
|
38
38
|
<title>{title}</title>
|
|
39
|
-
<path d='M12 0C5.
|
|
39
|
+
<path d='M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm0 .984C18.083.984 23.016 5.916 23.016 12S18.084 23.016 12 23.016.984 18.084.984 12C.984 5.917 5.916.984 12 .984zm0 .938C6.434 1.922 1.922 6.434 1.922 12c0 4.437 2.867 8.205 6.85 9.55-.237-.82-.776-2.753-1.6-6.052-1.184-4.741-2.064-8.606 2.379-9.813.047-.011.064-.064.03-.093-.514-.467-1.382-.548-2.233-.38a.06.06 0 0 1-.07-.058c0-.011 0-.023.011-.035.205-.286.572-.507.822-.64a1.843 1.843 0 0 0-.607-.335c-.059-.022-.059-.12-.006-.144.006-.006.012-.012.024-.012 1.749-.233 3.586.292 4.49 1.448.011.011.023.017.035.023 2.968.635 3.509 4.837 3.328 5.998a9.607 9.607 0 0 0 2.346-.576c.746-.286 1.008-.222 1.101-.053.1.193-.018.513-.28.81-.496.567-1.393 1.01-2.974 1.137-.546.044-1.029.024-1.445.006-.789-.035-1.339-.059-1.633.39-.192.298-.041.998 1.487 1.22 1.09.157 2.078.047 2.798-.034.643-.07 1.073-.118 1.172.069.21.402-.996 1.207-3.066 1.224-.158 0-.315-.006-.467-.011-1.283-.065-2.227-.414-2.816-.735a.094.094 0 0 1-.035-.017c-.105-.059-.31.045-.188.267.07.134.444.478 1.004.776-.058.466.087 1.184.338 2l.088-.016c.041-.009.087-.019.134-.025.507-.082.775.012.926.175.717-.536 1.913-1.294 2.03-1.154.583.694.66 2.332.53 2.99-.004.012-.017.024-.04.035-.274.117-1.783-.296-1.783-.511-.059-1.075-.26-1.173-.493-1.225h-.156c.006.006.012.018.018.03l.052.12c.093.257.24 1.063.13 1.26-.112.199-.835.297-1.284.303-.443.006-.543-.158-.637-.408-.07-.204-.103-.675-.103-.95a.857.857 0 0 1 .012-.216c-.134.058-.333.193-.397.281-.017.262-.017.682.123 1.149.07.221-1.518 1.164-1.74.99-.227-.181-.634-1.952-.459-2.67-.187.017-.338.075-.42.191-.367.508.093 2.933.582 3.248.257.169 1.54-.553 2.176-1.095.105.145.305.158.553.158.326-.012.782-.06 1.103-.158.192.45.423.972.613 1.388 4.47-1.032 7.803-5.037 7.803-9.82 0-5.566-4.512-10.078-10.078-10.078zm1.791 5.646c-.42 0-.678.146-.795.332-.023.047.047.094.094.07.14-.075.357-.161.701-.156.328.006.516.09.67.159l.023.01c.041.017.088-.03.059-.065-.134-.18-.332-.35-.752-.35zm-5.078.198a1.24 1.24 0 0 0-.522.082c-.454.169-.67.526-.67.76 0 .051.112.057.141.011.081-.123.21-.31.617-.478.408-.17.73-.146.951-.094.047.012.083-.041.041-.07a.989.989 0 0 0-.558-.211zm5.434 1.423a.651.651 0 0 0-.655.647.652.652 0 0 0 1.307 0 .646.646 0 0 0-.652-.647zm.283.262h.008a.17.17 0 0 1 .17.17c0 .093-.077.17-.17.17a.17.17 0 0 1-.17-.17c0-.09.072-.165.162-.17zm-5.358.076a.752.752 0 0 0-.758.758c0 .42.338.758.758.758s.758-.337.758-.758a.756.756 0 0 0-.758-.758zm.328.303h.01c.112 0 .2.089.2.2 0 .11-.088.197-.2.197a.195.195 0 0 1-.197-.198c0-.107.082-.194.187-.199z' />
|
|
40
40
|
</svg>
|
|
41
41
|
);
|
|
42
42
|
});
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiGandiProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#6640FE';
|
|
22
|
+
|
|
23
|
+
const SiGandi: IconType = React.forwardRef<SVGSVGElement, SiGandiProps>(function SiGandi({title = 'Gandi', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M16.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiGandi as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiGleamProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#FFAFF3';
|
|
22
|
+
|
|
23
|
+
const SiGleam: IconType = React.forwardRef<SVGSVGElement, SiGleamProps>(function SiGleam({title = 'Gleam', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M10.6144.0026a1.9 1.9 0 0 0-.229.0261l.0001.0002C9.78.1358 9.2263.538 8.9971 1.1873l-1.7855 5.059A1.8 1.8 0 0 1 6.1704 7.323L1.1706 9.282c-1.283.5027-1.531 2.2673-.4373 3.1027l4.2646 3.257a1.795 1.795 0 0 1 .7031 1.3212l.3179 5.3537c.0815 1.3735 1.6836 2.1548 2.819 1.3729v-.0002l4.4212-3.0459v-.0001a1.8 1.8 0 0 1 1.4757-.2601l5.1962 1.3498c1.3342.3467 2.5725-.9356 2.1794-2.2543v.0002l-1.532-5.1397a1.796 1.796 0 0 1 .209-1.482v-.0002l2.8934-4.5194c.742-1.1591-.0945-2.7324-1.472-2.766l-5.368-.1303a1.8 1.8 0 0 1-1.3467-.6558L12.0862.6422c-.3827-.4654-.9342-.6678-1.4718-.6396m5.7066 10.4086c.4626-.0106.8762.3176.959.7872a.953.953 0 0 1-.773 1.1038.9528.9528 0 1 1-.186-1.891M8.6439 11.765a.953.953 0 0 1 .959.7873c.0913.5182-.2548 1.0123-.773 1.1038s-1.0125-.2547-1.1038-.7729c-.0914-.5182.2547-1.0124.773-1.1038a.96.96 0 0 1 .1448-.0144m4.928 1.3841a.486.486 0 0 1 .3397.15.485.485 0 0 1 .1339.3463 1.264 1.264 0 0 1-.3917.8853v.0001h-.0002a1.266 1.266 0 0 1-.9026.3488h-.0004a1.26 1.26 0 0 1-.4812-.1079 1.26 1.26 0 0 1-.4038-.284 1.27 1.27 0 0 1-.2642-.4168.485.485 0 0 1 .278-.6272.483.483 0 0 1 .371.009.485.485 0 0 1 .2561.2687.29.29 0 0 0 .0615.097v.0002a.3.3 0 0 0 .0938.0658v.0001h.0003a.295.295 0 0 0 .2252.0055l.0003-.0001a.292.292 0 0 0 .1628-.1553l.0002-.0002v-.0001a.29.29 0 0 0 .025-.1116.486.486 0 0 1 .15-.3395.485.485 0 0 1 .3463-.134z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiGleam as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiH2databaseProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#09476B';
|
|
22
|
+
|
|
23
|
+
const SiH2database: IconType = React.forwardRef<SVGSVGElement, SiH2databaseProps>(function SiH2database({title = 'H2 Database', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiH2database as default, defaultColor };
|
|
45
|
+
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
size?: string | number;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
const defaultColor = '#
|
|
21
|
+
const defaultColor = '#0866FF';
|
|
22
22
|
|
|
23
23
|
const SiMessenger: IconType = React.forwardRef<SVGSVGElement, SiMessengerProps>(function SiMessenger({title = 'Messenger', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
24
|
if (color === 'default') {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{...others}
|
|
37
37
|
>
|
|
38
38
|
<title>{title}</title>
|
|
39
|
-
<path d='
|
|
39
|
+
<path d='M12 0C5.24 0 0 4.952 0 11.64c0 3.499 1.434 6.521 3.769 8.61a.96.96 0 0 1 .323.683l.065 2.135a.96.96 0 0 0 1.347.85l2.381-1.053a.96.96 0 0 1 .641-.046A13 13 0 0 0 12 23.28c6.76 0 12-4.952 12-11.64S18.76 0 12 0m6.806 7.44c.522-.03.971.567.63 1.094l-4.178 6.457a.707.707 0 0 1-.977.208l-3.87-2.504a.44.44 0 0 0-.49.007l-4.363 3.01c-.637.438-1.415-.317-.995-.966l4.179-6.457a.706.706 0 0 1 .977-.21l3.87 2.505c.15.097.344.094.491-.007l4.362-3.008a.7.7 0 0 1 .364-.13' />
|
|
40
40
|
</svg>
|
|
41
41
|
);
|
|
42
42
|
});
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiOsmandProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#FF8800';
|
|
22
|
+
|
|
23
|
+
const SiOsmand: IconType = React.forwardRef<SVGSVGElement, SiOsmandProps>(function SiOsmand({title = 'OsmAnd', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M12 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiOsmand as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiPortableappsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & {
|
|
7
|
+
/**
|
|
8
|
+
* The title provides an accessible short text description to the SVG
|
|
9
|
+
*/
|
|
10
|
+
title?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Hex color or color name or "default" to use the default hex for each icon
|
|
13
|
+
*/
|
|
14
|
+
color?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The size of the Icon.
|
|
17
|
+
*/
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const defaultColor = '#818F95';
|
|
22
|
+
|
|
23
|
+
const SiPortableappsdotcom: IconType = React.forwardRef<SVGSVGElement, SiPortableappsdotcomProps>(function SiPortableappsdotcom({title = 'PortableApps.com', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
|
+
if (color === 'default') {
|
|
25
|
+
color = defaultColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
fill={color}
|
|
34
|
+
viewBox='0 0 24 24'
|
|
35
|
+
ref={ref}
|
|
36
|
+
{...others}
|
|
37
|
+
>
|
|
38
|
+
<title>{title}</title>
|
|
39
|
+
<path d='M12 0C7.977 0 4.419 1.984 2.24 5.022c-1.816 4.295.987 7.619 4.001 7.532 2.925-.084 5.264-1.365 7.04-3.4l-3.02-3.015h10.635l-.037 10.577-2.788-2.782c-2.739 2.974-5.493 5.443-9.741 5.208C3.168 18.855.553 14.7.09 10.558.033 11.032 0 11.512 0 12 0 18.63 5.37 24 12 24s12-5.371 12-12S18.625 0 12 0z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiPortableappsdotcom as default, defaultColor };
|
|
45
|
+
|
package/src/icons/SiTrakt.tsx
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
size?: string | number;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
const defaultColor = '#
|
|
21
|
+
const defaultColor = '#9F42C6';
|
|
22
22
|
|
|
23
23
|
const SiTrakt: IconType = React.forwardRef<SVGSVGElement, SiTraktProps>(function SiTrakt({title = 'Trakt', color = 'currentColor', size = 24, ...others }, ref) {
|
|
24
24
|
if (color === 'default') {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{...others}
|
|
37
37
|
>
|
|
38
38
|
<title>{title}</title>
|
|
39
|
-
<path d='
|
|
39
|
+
<path d='m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z' />
|
|
40
40
|
</svg>
|
|
41
41
|
);
|
|
42
42
|
});
|