@icons-pack/react-simple-icons 13.5.0 → 13.6.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/SiGitcode.cjs +51 -0
- package/icons/SiGitcode.d.ts +4 -0
- package/icons/SiGitcode.mjs +27 -0
- package/icons/SiRatatui.cjs +51 -0
- package/icons/SiRatatui.d.ts +4 -0
- package/icons/SiRatatui.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/SiGitcode.tsx +45 -0
- package/src/icons/SiRatatui.tsx +45 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# react-simple-icons
|
|
5
5
|
|
|
6
|
-
This package provides the [Simple Icons 15.
|
|
6
|
+
This package provides the [Simple Icons 15.7.0](https://github.com/simple-icons/simple-icons/releases/tag/15.7.0)
|
|
7
7
|
packaged as a set of [React](https://facebook.github.io/react/) components.
|
|
8
8
|
|
|
9
9
|
<a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
|
|
@@ -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 = "#DA203E";
|
|
28
|
+
const SiGitcode = React__namespace.forwardRef(function SiGitcode2({ title = "GitCode", 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: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiGitcode;
|
|
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 = "#DA203E";
|
|
5
|
+
const SiGitcode = React.forwardRef(function SiGitcode2({ title = "GitCode", 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: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiGitcode 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 = "#000000";
|
|
28
|
+
const SiRatatui = React__namespace.forwardRef(function SiRatatui2({ title = "Ratatui", 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: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiRatatui;
|
|
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 = "#000000";
|
|
5
|
+
const SiRatatui = React.forwardRef(function SiRatatui2({ title = "Ratatui", 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: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiRatatui as default, defaultColor };
|
package/index.cjs
CHANGED
|
@@ -1083,6 +1083,7 @@ const SiGin = require('./icons/SiGin.cjs');
|
|
|
1083
1083
|
const SiGiphy = require('./icons/SiGiphy.cjs');
|
|
1084
1084
|
const SiGit = require('./icons/SiGit.cjs');
|
|
1085
1085
|
const SiGitbook = require('./icons/SiGitbook.cjs');
|
|
1086
|
+
const SiGitcode = require('./icons/SiGitcode.cjs');
|
|
1086
1087
|
const SiGitconnected = require('./icons/SiGitconnected.cjs');
|
|
1087
1088
|
const SiGitea = require('./icons/SiGitea.cjs');
|
|
1088
1089
|
const SiGitee = require('./icons/SiGitee.cjs');
|
|
@@ -2376,6 +2377,7 @@ const SiRapid = require('./icons/SiRapid.cjs');
|
|
|
2376
2377
|
const SiRarible = require('./icons/SiRarible.cjs');
|
|
2377
2378
|
const SiRasa = require('./icons/SiRasa.cjs');
|
|
2378
2379
|
const SiRaspberrypi = require('./icons/SiRaspberrypi.cjs');
|
|
2380
|
+
const SiRatatui = require('./icons/SiRatatui.cjs');
|
|
2379
2381
|
const SiRavelry = require('./icons/SiRavelry.cjs');
|
|
2380
2382
|
const SiRay = require('./icons/SiRay.cjs');
|
|
2381
2383
|
const SiRaycast = require('./icons/SiRaycast.cjs');
|
|
@@ -5501,6 +5503,8 @@ exports.SiGit = SiGit.default;
|
|
|
5501
5503
|
exports.SiGitHex = SiGit.defaultColor;
|
|
5502
5504
|
exports.SiGitbook = SiGitbook.default;
|
|
5503
5505
|
exports.SiGitbookHex = SiGitbook.defaultColor;
|
|
5506
|
+
exports.SiGitcode = SiGitcode.default;
|
|
5507
|
+
exports.SiGitcodeHex = SiGitcode.defaultColor;
|
|
5504
5508
|
exports.SiGitconnected = SiGitconnected.default;
|
|
5505
5509
|
exports.SiGitconnectedHex = SiGitconnected.defaultColor;
|
|
5506
5510
|
exports.SiGitea = SiGitea.default;
|
|
@@ -8087,6 +8091,8 @@ exports.SiRasa = SiRasa.default;
|
|
|
8087
8091
|
exports.SiRasaHex = SiRasa.defaultColor;
|
|
8088
8092
|
exports.SiRaspberrypi = SiRaspberrypi.default;
|
|
8089
8093
|
exports.SiRaspberrypiHex = SiRaspberrypi.defaultColor;
|
|
8094
|
+
exports.SiRatatui = SiRatatui.default;
|
|
8095
|
+
exports.SiRatatuiHex = SiRatatui.defaultColor;
|
|
8090
8096
|
exports.SiRavelry = SiRavelry.default;
|
|
8091
8097
|
exports.SiRavelryHex = SiRavelry.defaultColor;
|
|
8092
8098
|
exports.SiRay = SiRay.default;
|
package/index.d.ts
CHANGED
|
@@ -1079,6 +1079,7 @@ export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin';
|
|
|
1079
1079
|
export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy';
|
|
1080
1080
|
export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit';
|
|
1081
1081
|
export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook';
|
|
1082
|
+
export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode';
|
|
1082
1083
|
export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected';
|
|
1083
1084
|
export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea';
|
|
1084
1085
|
export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee';
|
|
@@ -2372,6 +2373,7 @@ export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid'
|
|
|
2372
2373
|
export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible';
|
|
2373
2374
|
export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa';
|
|
2374
2375
|
export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi';
|
|
2376
|
+
export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui';
|
|
2375
2377
|
export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry';
|
|
2376
2378
|
export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay';
|
|
2377
2379
|
export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast';
|
package/index.mjs
CHANGED
|
@@ -1079,6 +1079,7 @@ export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin.mjs';
|
|
|
1079
1079
|
export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy.mjs';
|
|
1080
1080
|
export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit.mjs';
|
|
1081
1081
|
export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook.mjs';
|
|
1082
|
+
export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode.mjs';
|
|
1082
1083
|
export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected.mjs';
|
|
1083
1084
|
export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea.mjs';
|
|
1084
1085
|
export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee.mjs';
|
|
@@ -2372,6 +2373,7 @@ export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid.
|
|
|
2372
2373
|
export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible.mjs';
|
|
2373
2374
|
export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa.mjs';
|
|
2374
2375
|
export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi.mjs';
|
|
2376
|
+
export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui.mjs';
|
|
2375
2377
|
export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry.mjs';
|
|
2376
2378
|
export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay.mjs';
|
|
2377
2379
|
export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icons-pack/react-simple-icons",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.6.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": "15.
|
|
71
|
+
"simple-icons": "15.7.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 SiGitcodeProps = 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 = '#DA203E';
|
|
22
|
+
|
|
23
|
+
const SiGitcode: IconType = React.forwardRef<SVGSVGElement, SiGitcodeProps>(function SiGitcode({title = 'GitCode', 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='m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiGitcode as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiRatatuiProps = 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 = '#000000';
|
|
22
|
+
|
|
23
|
+
const SiRatatui: IconType = React.forwardRef<SVGSVGElement, SiRatatuiProps>(function SiRatatui({title = 'Ratatui', 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='M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiRatatui as default, defaultColor };
|
|
45
|
+
|