@icons-pack/react-simple-icons 12.7.0 → 12.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/icons/SiMihon.cjs +51 -0
- package/icons/SiMihon.d.ts +4 -0
- package/icons/SiMihon.mjs +27 -0
- package/icons/SiRakutenkobo.cjs +51 -0
- package/icons/SiRakutenkobo.d.ts +4 -0
- package/icons/SiRakutenkobo.mjs +27 -0
- package/index.cjs +6 -0
- package/index.d.ts +2 -0
- package/index.mjs +2 -0
- package/package.json +2 -2
- package/src/icons/SiMihon.tsx +45 -0
- package/src/icons/SiRakutenkobo.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 = "#0058A0";
|
|
28
|
+
const SiMihon = React__namespace.forwardRef(function SiMihon2({ title = "Mihon", 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: "M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiMihon;
|
|
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 = "#0058A0";
|
|
5
|
+
const SiMihon = React.forwardRef(function SiMihon2({ title = "Mihon", 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: "M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiMihon as default, defaultColor };
|
|
@@ -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 = "#BF0000";
|
|
28
|
+
const SiRakutenkobo = React__namespace.forwardRef(function SiRakutenkobo2({ title = "Rakuten Kobo", 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: "M0 13.192h.874v3.115l1.21-1.432h1.047l-1.385 1.619 1.51 2.125H2.21L.889 16.732H.874v1.887H0zm3.177 3.555c0-1.227.575-1.957 1.653-1.957 1.077 0 1.655.73 1.655 1.957s-.575 1.957-1.651 1.957-1.652-.731-1.652-1.957zm1.653 1.341c.627 0 .722-.643.722-1.344 0-.7-.095-1.343-.722-1.343-.628 0-.722.646-.722 1.346s.091 1.341.722 1.341m2.999-2.764h.016a1.09 1.09 0 0 1 .967-.535c.898 0 1.29.763 1.29 1.957 0 1.045-.362 1.957-1.581 1.957-.978 0-1.564-.559-1.564-1.678v-3.83h.872zm.699 2.767c.56 0 .653-.73.653-1.344 0-.676-.07-1.398-.653-1.398-.527 0-.699.771-.699 1.398 0 .935.14 1.344.699 1.344m2.011-1.344c0-1.227.573-1.957 1.65-1.957 1.078 0 1.653.731 1.653 1.957s-.575 1.957-1.653 1.957c-1.077 0-1.65-.73-1.65-1.957m1.655 1.341c.629 0 .724-.643.724-1.344 0-.7-.095-1.343-.724-1.343s-.723.643-.723 1.343c0 .701.094 1.344.723 1.344m7.126-6.807L5.956 12.439 4.8 11.281zM6.141 6.604h.903v3.935h-.903v-.17c-.245.174-.538.27-.839.272-1.018 0-1.791-.928-1.791-2.067s.773-2.068 1.791-2.068c.301.003.594.098.839.273zm-.839 3.088c.502 0 .857-.493.857-1.118s-.355-1.118-.857-1.118-.868.494-.868 1.118c0 .623.366 1.118.868 1.118m8.006-3.088h.894v3.935h-.894v-.14a1.37 1.37 0 0 1-.759.242c-.951 0-1.599-.773-1.599-1.723V6.604h.893v2.314c0 .434.297.801.732.801s.733-.367.733-.801zm8.332 3.935h-.897V6.61h.897v.14c.224-.155.489-.239.761-.244.95 0 1.599.773 1.599 1.723v2.31h-.893v-2.31c0-.434-.298-.8-.733-.8-.434 0-.734.366-.734.8zm-20.705 0H.013V5.627H1.55c.927.006 1.686.77 1.686 1.697 0 .546-.264 1.06-.707 1.378l1.384 1.837H2.741L1.592 9.017H.935zm0-3.982v1.525h.642a.767.767 0 0 0 .764-.763.77.77 0 0 0-.764-.763l-.032.001zm15.679 3.054v.003l.588.785a1.8 1.8 0 0 1-.875.245 1.353 1.353 0 0 1-1.331-1.346l.002-.059v-1.7h-.473v-.935h.473v-.978h.894v.978h.768v.935h-.765v1.686l-.002.043c0 .234.187.43.422.441a.54.54 0 0 0 .299-.098m-7.352-1.16 1.78 2.092H9.789L8.47 8.925v1.618h-.922V5.296h.922v2.68l1.073-1.372h1.253zm9.416-1.947c1.014 0 1.934.931 1.713 2.345h-2.577c.118.9 1.137 1.358 1.748.457l.79.456c-.508.72-1.113.882-1.584.882-.935 0-1.866-.85-1.866-2.07 0-1.16.742-2.07 1.776-2.07m.782 1.561c-.175-.979-1.423-.923-1.612 0z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiRakutenkobo;
|
|
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 = "#BF0000";
|
|
5
|
+
const SiRakutenkobo = React.forwardRef(function SiRakutenkobo2({ title = "Rakuten Kobo", 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: "M0 13.192h.874v3.115l1.21-1.432h1.047l-1.385 1.619 1.51 2.125H2.21L.889 16.732H.874v1.887H0zm3.177 3.555c0-1.227.575-1.957 1.653-1.957 1.077 0 1.655.73 1.655 1.957s-.575 1.957-1.651 1.957-1.652-.731-1.652-1.957zm1.653 1.341c.627 0 .722-.643.722-1.344 0-.7-.095-1.343-.722-1.343-.628 0-.722.646-.722 1.346s.091 1.341.722 1.341m2.999-2.764h.016a1.09 1.09 0 0 1 .967-.535c.898 0 1.29.763 1.29 1.957 0 1.045-.362 1.957-1.581 1.957-.978 0-1.564-.559-1.564-1.678v-3.83h.872zm.699 2.767c.56 0 .653-.73.653-1.344 0-.676-.07-1.398-.653-1.398-.527 0-.699.771-.699 1.398 0 .935.14 1.344.699 1.344m2.011-1.344c0-1.227.573-1.957 1.65-1.957 1.078 0 1.653.731 1.653 1.957s-.575 1.957-1.653 1.957c-1.077 0-1.65-.73-1.65-1.957m1.655 1.341c.629 0 .724-.643.724-1.344 0-.7-.095-1.343-.724-1.343s-.723.643-.723 1.343c0 .701.094 1.344.723 1.344m7.126-6.807L5.956 12.439 4.8 11.281zM6.141 6.604h.903v3.935h-.903v-.17c-.245.174-.538.27-.839.272-1.018 0-1.791-.928-1.791-2.067s.773-2.068 1.791-2.068c.301.003.594.098.839.273zm-.839 3.088c.502 0 .857-.493.857-1.118s-.355-1.118-.857-1.118-.868.494-.868 1.118c0 .623.366 1.118.868 1.118m8.006-3.088h.894v3.935h-.894v-.14a1.37 1.37 0 0 1-.759.242c-.951 0-1.599-.773-1.599-1.723V6.604h.893v2.314c0 .434.297.801.732.801s.733-.367.733-.801zm8.332 3.935h-.897V6.61h.897v.14c.224-.155.489-.239.761-.244.95 0 1.599.773 1.599 1.723v2.31h-.893v-2.31c0-.434-.298-.8-.733-.8-.434 0-.734.366-.734.8zm-20.705 0H.013V5.627H1.55c.927.006 1.686.77 1.686 1.697 0 .546-.264 1.06-.707 1.378l1.384 1.837H2.741L1.592 9.017H.935zm0-3.982v1.525h.642a.767.767 0 0 0 .764-.763.77.77 0 0 0-.764-.763l-.032.001zm15.679 3.054v.003l.588.785a1.8 1.8 0 0 1-.875.245 1.353 1.353 0 0 1-1.331-1.346l.002-.059v-1.7h-.473v-.935h.473v-.978h.894v.978h.768v.935h-.765v1.686l-.002.043c0 .234.187.43.422.441a.54.54 0 0 0 .299-.098m-7.352-1.16 1.78 2.092H9.789L8.47 8.925v1.618h-.922V5.296h.922v2.68l1.073-1.372h1.253zm9.416-1.947c1.014 0 1.934.931 1.713 2.345h-2.577c.118.9 1.137 1.358 1.748.457l.79.456c-.508.72-1.113.882-1.584.882-.935 0-1.866-.85-1.866-2.07 0-1.16.742-2.07 1.776-2.07m.782 1.561c-.175-.979-1.423-.923-1.612 0z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiRakutenkobo as default, defaultColor };
|
package/index.cjs
CHANGED
|
@@ -1784,6 +1784,7 @@ const SiMicrostation = require('./icons/SiMicrostation.cjs');
|
|
|
1784
1784
|
const SiMicrostrategy = require('./icons/SiMicrostrategy.cjs');
|
|
1785
1785
|
const SiMidi = require('./icons/SiMidi.cjs');
|
|
1786
1786
|
const SiMigadu = require('./icons/SiMigadu.cjs');
|
|
1787
|
+
const SiMihon = require('./icons/SiMihon.cjs');
|
|
1787
1788
|
const SiMihoyo = require('./icons/SiMihoyo.cjs');
|
|
1788
1789
|
const SiMikrotik = require('./icons/SiMikrotik.cjs');
|
|
1789
1790
|
const SiMilanote = require('./icons/SiMilanote.cjs');
|
|
@@ -2337,6 +2338,7 @@ const SiRadixui = require('./icons/SiRadixui.cjs');
|
|
|
2337
2338
|
const SiRailway = require('./icons/SiRailway.cjs');
|
|
2338
2339
|
const SiRainmeter = require('./icons/SiRainmeter.cjs');
|
|
2339
2340
|
const SiRakuten = require('./icons/SiRakuten.cjs');
|
|
2341
|
+
const SiRakutenkobo = require('./icons/SiRakutenkobo.cjs');
|
|
2340
2342
|
const SiRam = require('./icons/SiRam.cjs');
|
|
2341
2343
|
const SiRancher = require('./icons/SiRancher.cjs');
|
|
2342
2344
|
const SiRapid = require('./icons/SiRapid.cjs');
|
|
@@ -6851,6 +6853,8 @@ exports.SiMidi = SiMidi.default;
|
|
|
6851
6853
|
exports.SiMidiHex = SiMidi.defaultColor;
|
|
6852
6854
|
exports.SiMigadu = SiMigadu.default;
|
|
6853
6855
|
exports.SiMigaduHex = SiMigadu.defaultColor;
|
|
6856
|
+
exports.SiMihon = SiMihon.default;
|
|
6857
|
+
exports.SiMihonHex = SiMihon.defaultColor;
|
|
6854
6858
|
exports.SiMihoyo = SiMihoyo.default;
|
|
6855
6859
|
exports.SiMihoyoHex = SiMihoyo.defaultColor;
|
|
6856
6860
|
exports.SiMikrotik = SiMikrotik.default;
|
|
@@ -7957,6 +7961,8 @@ exports.SiRainmeter = SiRainmeter.default;
|
|
|
7957
7961
|
exports.SiRainmeterHex = SiRainmeter.defaultColor;
|
|
7958
7962
|
exports.SiRakuten = SiRakuten.default;
|
|
7959
7963
|
exports.SiRakutenHex = SiRakuten.defaultColor;
|
|
7964
|
+
exports.SiRakutenkobo = SiRakutenkobo.default;
|
|
7965
|
+
exports.SiRakutenkoboHex = SiRakutenkobo.defaultColor;
|
|
7960
7966
|
exports.SiRam = SiRam.default;
|
|
7961
7967
|
exports.SiRamHex = SiRam.defaultColor;
|
|
7962
7968
|
exports.SiRancher = SiRancher.default;
|
package/index.d.ts
CHANGED
|
@@ -1780,6 +1780,7 @@ export { default as SiMicrostation, defaultColor as SiMicrostationHex } from './
|
|
|
1780
1780
|
export { default as SiMicrostrategy, defaultColor as SiMicrostrategyHex } from './icons/SiMicrostrategy';
|
|
1781
1781
|
export { default as SiMidi, defaultColor as SiMidiHex } from './icons/SiMidi';
|
|
1782
1782
|
export { default as SiMigadu, defaultColor as SiMigaduHex } from './icons/SiMigadu';
|
|
1783
|
+
export { default as SiMihon, defaultColor as SiMihonHex } from './icons/SiMihon';
|
|
1783
1784
|
export { default as SiMihoyo, defaultColor as SiMihoyoHex } from './icons/SiMihoyo';
|
|
1784
1785
|
export { default as SiMikrotik, defaultColor as SiMikrotikHex } from './icons/SiMikrotik';
|
|
1785
1786
|
export { default as SiMilanote, defaultColor as SiMilanoteHex } from './icons/SiMilanote';
|
|
@@ -2333,6 +2334,7 @@ export { default as SiRadixui, defaultColor as SiRadixuiHex } from './icons/SiRa
|
|
|
2333
2334
|
export { default as SiRailway, defaultColor as SiRailwayHex } from './icons/SiRailway';
|
|
2334
2335
|
export { default as SiRainmeter, defaultColor as SiRainmeterHex } from './icons/SiRainmeter';
|
|
2335
2336
|
export { default as SiRakuten, defaultColor as SiRakutenHex } from './icons/SiRakuten';
|
|
2337
|
+
export { default as SiRakutenkobo, defaultColor as SiRakutenkoboHex } from './icons/SiRakutenkobo';
|
|
2336
2338
|
export { default as SiRam, defaultColor as SiRamHex } from './icons/SiRam';
|
|
2337
2339
|
export { default as SiRancher, defaultColor as SiRancherHex } from './icons/SiRancher';
|
|
2338
2340
|
export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid';
|
package/index.mjs
CHANGED
|
@@ -1780,6 +1780,7 @@ export { default as SiMicrostation, defaultColor as SiMicrostationHex } from './
|
|
|
1780
1780
|
export { default as SiMicrostrategy, defaultColor as SiMicrostrategyHex } from './icons/SiMicrostrategy.mjs';
|
|
1781
1781
|
export { default as SiMidi, defaultColor as SiMidiHex } from './icons/SiMidi.mjs';
|
|
1782
1782
|
export { default as SiMigadu, defaultColor as SiMigaduHex } from './icons/SiMigadu.mjs';
|
|
1783
|
+
export { default as SiMihon, defaultColor as SiMihonHex } from './icons/SiMihon.mjs';
|
|
1783
1784
|
export { default as SiMihoyo, defaultColor as SiMihoyoHex } from './icons/SiMihoyo.mjs';
|
|
1784
1785
|
export { default as SiMikrotik, defaultColor as SiMikrotikHex } from './icons/SiMikrotik.mjs';
|
|
1785
1786
|
export { default as SiMilanote, defaultColor as SiMilanoteHex } from './icons/SiMilanote.mjs';
|
|
@@ -2333,6 +2334,7 @@ export { default as SiRadixui, defaultColor as SiRadixuiHex } from './icons/SiRa
|
|
|
2333
2334
|
export { default as SiRailway, defaultColor as SiRailwayHex } from './icons/SiRailway.mjs';
|
|
2334
2335
|
export { default as SiRainmeter, defaultColor as SiRainmeterHex } from './icons/SiRainmeter.mjs';
|
|
2335
2336
|
export { default as SiRakuten, defaultColor as SiRakutenHex } from './icons/SiRakuten.mjs';
|
|
2337
|
+
export { default as SiRakutenkobo, defaultColor as SiRakutenkoboHex } from './icons/SiRakutenkobo.mjs';
|
|
2336
2338
|
export { default as SiRam, defaultColor as SiRamHex } from './icons/SiRam.mjs';
|
|
2337
2339
|
export { default as SiRancher, defaultColor as SiRancherHex } from './icons/SiRancher.mjs';
|
|
2338
2340
|
export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid.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.8.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.13.0",
|
|
72
72
|
"turbo": "2.0.14",
|
|
73
73
|
"typescript": "5.5.4",
|
|
74
74
|
"uppercamelcase": "3.0.0",
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiMihonProps = 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 = '#0058A0';
|
|
22
|
+
|
|
23
|
+
const SiMihon: IconType = React.forwardRef<SVGSVGElement, SiMihonProps>(function SiMihon({title = 'Mihon', 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='M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiMihon as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiRakutenkoboProps = 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 = '#BF0000';
|
|
22
|
+
|
|
23
|
+
const SiRakutenkobo: IconType = React.forwardRef<SVGSVGElement, SiRakutenkoboProps>(function SiRakutenkobo({title = 'Rakuten Kobo', 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='M0 13.192h.874v3.115l1.21-1.432h1.047l-1.385 1.619 1.51 2.125H2.21L.889 16.732H.874v1.887H0zm3.177 3.555c0-1.227.575-1.957 1.653-1.957 1.077 0 1.655.73 1.655 1.957s-.575 1.957-1.651 1.957-1.652-.731-1.652-1.957zm1.653 1.341c.627 0 .722-.643.722-1.344 0-.7-.095-1.343-.722-1.343-.628 0-.722.646-.722 1.346s.091 1.341.722 1.341m2.999-2.764h.016a1.09 1.09 0 0 1 .967-.535c.898 0 1.29.763 1.29 1.957 0 1.045-.362 1.957-1.581 1.957-.978 0-1.564-.559-1.564-1.678v-3.83h.872zm.699 2.767c.56 0 .653-.73.653-1.344 0-.676-.07-1.398-.653-1.398-.527 0-.699.771-.699 1.398 0 .935.14 1.344.699 1.344m2.011-1.344c0-1.227.573-1.957 1.65-1.957 1.078 0 1.653.731 1.653 1.957s-.575 1.957-1.653 1.957c-1.077 0-1.65-.73-1.65-1.957m1.655 1.341c.629 0 .724-.643.724-1.344 0-.7-.095-1.343-.724-1.343s-.723.643-.723 1.343c0 .701.094 1.344.723 1.344m7.126-6.807L5.956 12.439 4.8 11.281zM6.141 6.604h.903v3.935h-.903v-.17c-.245.174-.538.27-.839.272-1.018 0-1.791-.928-1.791-2.067s.773-2.068 1.791-2.068c.301.003.594.098.839.273zm-.839 3.088c.502 0 .857-.493.857-1.118s-.355-1.118-.857-1.118-.868.494-.868 1.118c0 .623.366 1.118.868 1.118m8.006-3.088h.894v3.935h-.894v-.14a1.37 1.37 0 0 1-.759.242c-.951 0-1.599-.773-1.599-1.723V6.604h.893v2.314c0 .434.297.801.732.801s.733-.367.733-.801zm8.332 3.935h-.897V6.61h.897v.14c.224-.155.489-.239.761-.244.95 0 1.599.773 1.599 1.723v2.31h-.893v-2.31c0-.434-.298-.8-.733-.8-.434 0-.734.366-.734.8zm-20.705 0H.013V5.627H1.55c.927.006 1.686.77 1.686 1.697 0 .546-.264 1.06-.707 1.378l1.384 1.837H2.741L1.592 9.017H.935zm0-3.982v1.525h.642a.767.767 0 0 0 .764-.763.77.77 0 0 0-.764-.763l-.032.001zm15.679 3.054v.003l.588.785a1.8 1.8 0 0 1-.875.245 1.353 1.353 0 0 1-1.331-1.346l.002-.059v-1.7h-.473v-.935h.473v-.978h.894v.978h.768v.935h-.765v1.686l-.002.043c0 .234.187.43.422.441a.54.54 0 0 0 .299-.098m-7.352-1.16 1.78 2.092H9.789L8.47 8.925v1.618h-.922V5.296h.922v2.68l1.073-1.372h1.253zm9.416-1.947c1.014 0 1.934.931 1.713 2.345h-2.577c.118.9 1.137 1.358 1.748.457l.79.456c-.508.72-1.113.882-1.584.882-.935 0-1.866-.85-1.866-2.07 0-1.16.742-2.07 1.776-2.07m.782 1.561c-.175-.979-1.423-.923-1.612 0z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiRakutenkobo as default, defaultColor };
|
|
45
|
+
|