@icons-pack/react-simple-icons 13.3.0 → 13.5.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 +6 -6
- package/icons/SiBlack.cjs +51 -0
- package/icons/SiBlack.d.ts +4 -0
- package/icons/SiBlack.mjs +27 -0
- package/icons/SiCardmarket.cjs +51 -0
- package/icons/SiCardmarket.d.ts +4 -0
- package/icons/SiCardmarket.mjs +27 -0
- package/icons/SiFolo.cjs +51 -0
- package/icons/SiFolo.d.ts +4 -0
- package/icons/SiFolo.mjs +27 -0
- package/icons/SiModelcontextprotocol.cjs +51 -0
- package/icons/SiModelcontextprotocol.d.ts +4 -0
- package/icons/SiModelcontextprotocol.mjs +27 -0
- package/icons/SiPayback.cjs +51 -0
- package/icons/SiPayback.d.ts +4 -0
- package/icons/SiPayback.mjs +27 -0
- package/icons/SiRollbar.cjs +51 -0
- package/icons/SiRollbar.d.ts +4 -0
- package/icons/SiRollbar.mjs +27 -0
- package/icons/SiTokio.cjs +51 -0
- package/icons/SiTokio.d.ts +4 -0
- package/icons/SiTokio.mjs +27 -0
- package/index.cjs +21 -0
- package/index.d.ts +7 -0
- package/index.mjs +7 -0
- package/package.json +2 -2
- package/src/icons/SiBlack.tsx +45 -0
- package/src/icons/SiCardmarket.tsx +45 -0
- package/src/icons/SiFolo.tsx +45 -0
- package/src/icons/SiModelcontextprotocol.tsx +45 -0
- package/src/icons/SiPayback.tsx +45 -0
- package/src/icons/SiRollbar.tsx +45 -0
- package/src/icons/SiTokio.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.6.0](https://github.com/simple-icons/simple-icons/releases/tag/15.6.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">
|
|
@@ -23,17 +23,17 @@ packaged as a set of [React](https://facebook.github.io/react/) components.
|
|
|
23
23
|
|
|
24
24
|
Install the package in your project directory with:
|
|
25
25
|
|
|
26
|
-
```
|
|
27
|
-
|
|
26
|
+
```shell
|
|
27
|
+
# with yarn
|
|
28
28
|
yarn add @icons-pack/react-simple-icons
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
# with npm
|
|
31
31
|
npm add @icons-pack/react-simple-icons
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
# with pnpm
|
|
34
34
|
pnpm add @icons-pack/react-simple-icons
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
# with bun
|
|
37
37
|
bun add @icons-pack/react-simple-icons
|
|
38
38
|
```
|
|
39
39
|
|
|
@@ -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 SiBlack = React__namespace.forwardRef(function SiBlack2({ title = "Black", 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: "M10.506 17.772c-3.358-.211-6.452-1.124-8.347-2.462-.484-.342-1.137-.954-1.43-1.34-.6-.794-.85-1.735-.674-2.548.32-1.478 1.763-2.846 4.016-3.807 1.668-.71 3.533-1.142 5.958-1.379.844-.082 3.291-.069 4.184.024 2.67.276 4.656.795 6.416 1.677 2.259 1.132 3.457 2.63 3.366 4.204q-.103 1.815-2.347 3.303c-2.536 1.684-6.902 2.596-11.142 2.328m3.642-.493c2.17-.206 4.068-.66 5.652-1.35.594-.26.588-.257 1.185-.6 1.687-.972 2.656-2.273 2.58-3.47-.046-.75-.37-1.365-1.112-2.106-1.489-1.489-4.112-2.54-7.46-2.99-.842-.112-1.744-.161-2.991-.16-1.337 0-1.774.022-2.797.142-2.907.343-5.51 1.262-7.108 2.51-.39.305-.89.815-1.102 1.123-.325.472-.567 1.16-.567 1.611 0 .307.123.766.301 1.127 1.13 2.28 5.24 3.992 10.189 4.244.634.032 2.546-.015 3.23-.08m-4.162-.283c-2.184-.21-3.922-.621-5.523-1.305-1.972-.842-3.357-2.079-3.669-3.276-.205-.79.16-1.638 1.087-2.524 1.574-1.504 4.443-2.557 7.927-2.908 1.192-.12 3.207-.121 4.391-.001 2.979.3 5.467 1.092 7.188 2.288.438.304 1.298 1.167 1.49 1.494.478.814.516 1.433.134 2.179-.952 1.861-3.956 3.366-7.825 3.92-1.628.232-3.643.284-5.2.134zM20.237 14.4c.294-.112.716-.42 1.013-.74.237-.257.291-.348.205-.348-.022 0-.186.135-.365.3-.364.338-.6.504-.775.547-.1.024-.12.015-.12-.057 0-.047.051-.197.113-.332.133-.29.118-.47-.054-.675l-.111-.132.183-.205.29-.324c.147-.165.216-.154.195.029-.014.12.003.16.09.218.207.135.447-.009.494-.294.021-.133.006-.174-.107-.287-.236-.236-.463-.152-.928.341-.228.242-.374.358-.52.414-.212.08-.338.068-.338-.032 0-.031.359-.637.798-1.345l.798-1.288h-.72l-.3.358-.728.878c-1.204 1.455-1.92 2.212-2.391 2.524-.208.139-.285.164-.537.178-.278.016-.298.01-.37-.098-.065-.1-.068-.138-.02-.297.116-.39.556-1.143.82-1.407.17-.17.336-.195.287-.044-.08.246-.074.402.019.485.126.115.343.107.443-.016.092-.114.105-.376.028-.546-.16-.352-.914-.306-1.547.095-.134.085-.588.503-1.009.93-.602.61-.788.775-.877.775-.08 0-.113-.022-.113-.075 0-.105.16-.436.464-.97.142-.248.32-.562.395-.7l.138-.249h-.686l-.118.203-.119.202-.083-.16c-.13-.255-.304-.34-.646-.319-.557.035-1.035.345-1.925 1.247-.552.56-1.03.951-1.16.951-.108 0-.122-.118-.054-.447.085-.413.166-.562 1.14-2.12.458-.731.833-1.341.833-1.354s-.152-.023-.336-.022l-.336.002-.282.42a15 15 0 0 1-1.34 1.701c-.227.25-.426.46-.442.468-.015.007-.03-.11-.034-.26-.011-.534-.16-.843-.523-1.095-.096-.067-.176-.136-.176-.153s.147-.103.326-.192c.377-.186.7-.487.85-.791.132-.267.142-.771.02-1.022-.092-.19-.386-.489-.556-.565-.154-.068-.135-.116.097-.245.16-.089.176-.11.107-.134-.103-.036-.367.02-.577.125-.14.07-.212.074-.635.038-1.55-.129-2.884.158-3.88.835-.359.243-.866.8-1.033 1.132-.128.254-.141.311-.114.498.033.225.114.42.23.553.287.326 1.174.36 1.772.069.333-.163.514-.376.757-.89.17-.359.184-.419.2-.82.029-.717.019-.72-.286-.12-.365.72-.599 1.07-.904 1.36-.332.315-.492.394-.849.42l-.292.02-.174-.174c-.16-.16-.174-.192-.174-.41 0-.48.237-.881.758-1.278.751-.572 1.947-.976 2.905-.98.554-.002 1.063.053 1.06.114-.001.028-.11.128-.241.222-.309.221-.873.781-1.2 1.193-.513.643-1.111 1.603-1.354 2.172-.55 1.287-.885 1.66-1.592 1.772-.482.077-.817-.038-1.134-.389-.224-.248-.21-.327.066-.36.491-.058.698-.3.587-.688-.04-.143-.088-.204-.203-.264-.181-.093-.328-.073-.554.077-.249.164-.369.352-.39.608-.038.454.29.909.797 1.107.327.128 1.046.14 1.513.025 1.168-.286 2.071-1.267 2.58-2.802.197-.59.605-1.48.827-1.804.18-.262.729-.84.797-.84.174 0 .456.562.456.91 0 .405-.23.82-.623 1.124-.233.18-.239.182-.35.11-.166-.11-.488-.064-.618.087-.11.126-.122.203-.054.33.052.096.216.109.433.033.136-.047.15-.042.281.1.255.28.244.81-.029 1.351-.3.595-.65.999-1.006 1.16-.235.107-.352.104-.46-.011-.171-.184-.082-.752.149-.944.038-.032.149-.153.246-.269.173-.207.174-.21.053-.164-.438.167-.758.738-.682 1.216.065.403.425.576 1 .48.58-.095.776-.23 1.645-1.126.433-.446.798-.8.81-.788s-.056.148-.153.301c-.36.566-.517 1.177-.362 1.413.09.136.31.236.524.236.294 0 .619-.23 1.22-.861.217-.23.407-.407.42-.394s-.015.15-.064.303c-.145.46-.05.745.296.893.306.13.6.04 1.032-.314.46-.377.417-.366.385-.092-.026.223-.02.25.09.358.098.099.143.114.283.095.307-.041.544-.204 1.037-.71.264-.27.499-.492.522-.492s.013.08-.022.179c-.146.416-.038.774.284.94.167.087.244.099.542.085.298-.015.392-.04.672-.183.289-.147.43-.273 1.267-1.124.519-.528.943-.943.943-.924 0 .041-.464.825-.97 1.634l-.365.585.328.013c.18.007.353.003.382-.008s.225-.306.433-.655c.3-.502.392-.627.448-.602a.8.8 0 0 0 .255.022c.128-.006.192.01.21.055.013.035-.046.224-.132.421-.185.428-.197.608-.048.756.131.132.327.14.629.025zm-7.82-.333c-.088-.087-.086-.143.015-.43.258-.736 1.054-1.566 1.349-1.408.192.103.147.502-.096.855-.373.543-.917 1.051-1.124 1.051a.24.24 0 0 1-.144-.068" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiBlack;
|
|
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 SiBlack = React.forwardRef(function SiBlack2({ title = "Black", 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: "M10.506 17.772c-3.358-.211-6.452-1.124-8.347-2.462-.484-.342-1.137-.954-1.43-1.34-.6-.794-.85-1.735-.674-2.548.32-1.478 1.763-2.846 4.016-3.807 1.668-.71 3.533-1.142 5.958-1.379.844-.082 3.291-.069 4.184.024 2.67.276 4.656.795 6.416 1.677 2.259 1.132 3.457 2.63 3.366 4.204q-.103 1.815-2.347 3.303c-2.536 1.684-6.902 2.596-11.142 2.328m3.642-.493c2.17-.206 4.068-.66 5.652-1.35.594-.26.588-.257 1.185-.6 1.687-.972 2.656-2.273 2.58-3.47-.046-.75-.37-1.365-1.112-2.106-1.489-1.489-4.112-2.54-7.46-2.99-.842-.112-1.744-.161-2.991-.16-1.337 0-1.774.022-2.797.142-2.907.343-5.51 1.262-7.108 2.51-.39.305-.89.815-1.102 1.123-.325.472-.567 1.16-.567 1.611 0 .307.123.766.301 1.127 1.13 2.28 5.24 3.992 10.189 4.244.634.032 2.546-.015 3.23-.08m-4.162-.283c-2.184-.21-3.922-.621-5.523-1.305-1.972-.842-3.357-2.079-3.669-3.276-.205-.79.16-1.638 1.087-2.524 1.574-1.504 4.443-2.557 7.927-2.908 1.192-.12 3.207-.121 4.391-.001 2.979.3 5.467 1.092 7.188 2.288.438.304 1.298 1.167 1.49 1.494.478.814.516 1.433.134 2.179-.952 1.861-3.956 3.366-7.825 3.92-1.628.232-3.643.284-5.2.134zM20.237 14.4c.294-.112.716-.42 1.013-.74.237-.257.291-.348.205-.348-.022 0-.186.135-.365.3-.364.338-.6.504-.775.547-.1.024-.12.015-.12-.057 0-.047.051-.197.113-.332.133-.29.118-.47-.054-.675l-.111-.132.183-.205.29-.324c.147-.165.216-.154.195.029-.014.12.003.16.09.218.207.135.447-.009.494-.294.021-.133.006-.174-.107-.287-.236-.236-.463-.152-.928.341-.228.242-.374.358-.52.414-.212.08-.338.068-.338-.032 0-.031.359-.637.798-1.345l.798-1.288h-.72l-.3.358-.728.878c-1.204 1.455-1.92 2.212-2.391 2.524-.208.139-.285.164-.537.178-.278.016-.298.01-.37-.098-.065-.1-.068-.138-.02-.297.116-.39.556-1.143.82-1.407.17-.17.336-.195.287-.044-.08.246-.074.402.019.485.126.115.343.107.443-.016.092-.114.105-.376.028-.546-.16-.352-.914-.306-1.547.095-.134.085-.588.503-1.009.93-.602.61-.788.775-.877.775-.08 0-.113-.022-.113-.075 0-.105.16-.436.464-.97.142-.248.32-.562.395-.7l.138-.249h-.686l-.118.203-.119.202-.083-.16c-.13-.255-.304-.34-.646-.319-.557.035-1.035.345-1.925 1.247-.552.56-1.03.951-1.16.951-.108 0-.122-.118-.054-.447.085-.413.166-.562 1.14-2.12.458-.731.833-1.341.833-1.354s-.152-.023-.336-.022l-.336.002-.282.42a15 15 0 0 1-1.34 1.701c-.227.25-.426.46-.442.468-.015.007-.03-.11-.034-.26-.011-.534-.16-.843-.523-1.095-.096-.067-.176-.136-.176-.153s.147-.103.326-.192c.377-.186.7-.487.85-.791.132-.267.142-.771.02-1.022-.092-.19-.386-.489-.556-.565-.154-.068-.135-.116.097-.245.16-.089.176-.11.107-.134-.103-.036-.367.02-.577.125-.14.07-.212.074-.635.038-1.55-.129-2.884.158-3.88.835-.359.243-.866.8-1.033 1.132-.128.254-.141.311-.114.498.033.225.114.42.23.553.287.326 1.174.36 1.772.069.333-.163.514-.376.757-.89.17-.359.184-.419.2-.82.029-.717.019-.72-.286-.12-.365.72-.599 1.07-.904 1.36-.332.315-.492.394-.849.42l-.292.02-.174-.174c-.16-.16-.174-.192-.174-.41 0-.48.237-.881.758-1.278.751-.572 1.947-.976 2.905-.98.554-.002 1.063.053 1.06.114-.001.028-.11.128-.241.222-.309.221-.873.781-1.2 1.193-.513.643-1.111 1.603-1.354 2.172-.55 1.287-.885 1.66-1.592 1.772-.482.077-.817-.038-1.134-.389-.224-.248-.21-.327.066-.36.491-.058.698-.3.587-.688-.04-.143-.088-.204-.203-.264-.181-.093-.328-.073-.554.077-.249.164-.369.352-.39.608-.038.454.29.909.797 1.107.327.128 1.046.14 1.513.025 1.168-.286 2.071-1.267 2.58-2.802.197-.59.605-1.48.827-1.804.18-.262.729-.84.797-.84.174 0 .456.562.456.91 0 .405-.23.82-.623 1.124-.233.18-.239.182-.35.11-.166-.11-.488-.064-.618.087-.11.126-.122.203-.054.33.052.096.216.109.433.033.136-.047.15-.042.281.1.255.28.244.81-.029 1.351-.3.595-.65.999-1.006 1.16-.235.107-.352.104-.46-.011-.171-.184-.082-.752.149-.944.038-.032.149-.153.246-.269.173-.207.174-.21.053-.164-.438.167-.758.738-.682 1.216.065.403.425.576 1 .48.58-.095.776-.23 1.645-1.126.433-.446.798-.8.81-.788s-.056.148-.153.301c-.36.566-.517 1.177-.362 1.413.09.136.31.236.524.236.294 0 .619-.23 1.22-.861.217-.23.407-.407.42-.394s-.015.15-.064.303c-.145.46-.05.745.296.893.306.13.6.04 1.032-.314.46-.377.417-.366.385-.092-.026.223-.02.25.09.358.098.099.143.114.283.095.307-.041.544-.204 1.037-.71.264-.27.499-.492.522-.492s.013.08-.022.179c-.146.416-.038.774.284.94.167.087.244.099.542.085.298-.015.392-.04.672-.183.289-.147.43-.273 1.267-1.124.519-.528.943-.943.943-.924 0 .041-.464.825-.97 1.634l-.365.585.328.013c.18.007.353.003.382-.008s.225-.306.433-.655c.3-.502.392-.627.448-.602a.8.8 0 0 0 .255.022c.128-.006.192.01.21.055.013.035-.046.224-.132.421-.185.428-.197.608-.048.756.131.132.327.14.629.025zm-7.82-.333c-.088-.087-.086-.143.015-.43.258-.736 1.054-1.566 1.349-1.408.192.103.147.502-.096.855-.373.543-.917 1.051-1.124 1.051a.24.24 0 0 1-.144-.068" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiBlack 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 = "#012169";
|
|
28
|
+
const SiCardmarket = React__namespace.forwardRef(function SiCardmarket2({ title = "Cardmarket", 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: "M14.837.772c-.45 0-.6.255-.645.366-.044.11-.113.4.213.711l1.54 1.478a.124.124 0 0 1 .002.18L10.021 9.47a.934.934 0 0 0-.274.673.936.936 0 0 0 .289.669l3.977 3.82a.955.955 0 0 0 .664.267v.001c.259 0 .5-.1.68-.281l5.815-5.853a.142.142 0 0 1 .103-.042c.023 0 .065.005.1.04l1.54 1.478c.198.19.383.23.504.23.277 0 .577-.217.577-.691L24 1.726a.951.951 0 0 0-.95-.95zm-8.06.793-2.351.461s-.365.064-.606.428c-.192.286-.124.616-.124.616l3.082 14.66V1.566ZM2.843 4.907v.001L.52 5.752s-.308.106-.445.452c-.15.385-.03.634-.03.634L6.04 23.224h.86C6.559 21.8 2.843 4.907 2.843 4.907ZM23.31 12.63a.59.59 0 0 0-.417.175l-6.716 6.787a.976.976 0 0 0-.287.706c.004.267.11.515.303.7l1.084 1.046-7.668-.006.005-7.574 2.473 2.494a.592.592 0 0 0 .835.004.59.59 0 0 0 .004-.835l-3.2-3.227c-.246-.25-.562-.33-.843-.214-.282.116-.45.396-.45.747l-.006 8.794c0 .266.103.515.291.703a.986.986 0 0 0 .702.291l8.92.007v-.002c.354 0 .633-.168.747-.45.114-.283.03-.599-.224-.845l-1.708-1.647 6.578-6.648a.591.591 0 0 0-.005-.835.589.589 0 0 0-.418-.17z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiCardmarket;
|
|
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 = "#012169";
|
|
5
|
+
const SiCardmarket = React.forwardRef(function SiCardmarket2({ title = "Cardmarket", 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: "M14.837.772c-.45 0-.6.255-.645.366-.044.11-.113.4.213.711l1.54 1.478a.124.124 0 0 1 .002.18L10.021 9.47a.934.934 0 0 0-.274.673.936.936 0 0 0 .289.669l3.977 3.82a.955.955 0 0 0 .664.267v.001c.259 0 .5-.1.68-.281l5.815-5.853a.142.142 0 0 1 .103-.042c.023 0 .065.005.1.04l1.54 1.478c.198.19.383.23.504.23.277 0 .577-.217.577-.691L24 1.726a.951.951 0 0 0-.95-.95zm-8.06.793-2.351.461s-.365.064-.606.428c-.192.286-.124.616-.124.616l3.082 14.66V1.566ZM2.843 4.907v.001L.52 5.752s-.308.106-.445.452c-.15.385-.03.634-.03.634L6.04 23.224h.86C6.559 21.8 2.843 4.907 2.843 4.907ZM23.31 12.63a.59.59 0 0 0-.417.175l-6.716 6.787a.976.976 0 0 0-.287.706c.004.267.11.515.303.7l1.084 1.046-7.668-.006.005-7.574 2.473 2.494a.592.592 0 0 0 .835.004.59.59 0 0 0 .004-.835l-3.2-3.227c-.246-.25-.562-.33-.843-.214-.282.116-.45.396-.45.747l-.006 8.794c0 .266.103.515.291.703a.986.986 0 0 0 .702.291l8.92.007v-.002c.354 0 .633-.168.747-.45.114-.283.03-.599-.224-.845l-1.708-1.647 6.578-6.648a.591.591 0 0 0-.005-.835.589.589 0 0 0-.418-.17z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiCardmarket as default, defaultColor };
|
package/icons/SiFolo.cjs
ADDED
|
@@ -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 = "#FF5C00";
|
|
28
|
+
const SiFolo = React__namespace.forwardRef(function SiFolo2({ title = "Folo", 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: "M5.382 0h13.236A5.37 5.37 0 0 1 24 5.383v13.235A5.37 5.37 0 0 1 18.618 24H5.382A5.37 5.37 0 0 1 0 18.618V5.383A5.37 5.37 0 0 1 5.382.001Zm7.887 17.31a1.813 1.813 0 1 0-3.626.002 1.813 1.813 0 0 0 3.626-.002m-.535-6.527H7.213a1.813 1.813 0 1 0 0 3.624h5.521a1.813 1.813 0 1 0 0-3.624m4.417-4.712H8.87a1.813 1.813 0 1 0 0 3.625h8.283a1.813 1.813 0 1 0 0-3.624z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiFolo;
|
|
51
|
+
exports.defaultColor = defaultColor;
|
package/icons/SiFolo.mjs
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const defaultColor = "#FF5C00";
|
|
5
|
+
const SiFolo = React.forwardRef(function SiFolo2({ title = "Folo", 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: "M5.382 0h13.236A5.37 5.37 0 0 1 24 5.383v13.235A5.37 5.37 0 0 1 18.618 24H5.382A5.37 5.37 0 0 1 0 18.618V5.383A5.37 5.37 0 0 1 5.382.001Zm7.887 17.31a1.813 1.813 0 1 0-3.626.002 1.813 1.813 0 0 0 3.626-.002m-.535-6.527H7.213a1.813 1.813 0 1 0 0 3.624h5.521a1.813 1.813 0 1 0 0-3.624m4.417-4.712H8.87a1.813 1.813 0 1 0 0 3.625h8.283a1.813 1.813 0 1 0 0-3.624z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiFolo 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 SiModelcontextprotocol = React__namespace.forwardRef(function SiModelcontextprotocol2({ title = "Model Context Protocol", 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: "M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiModelcontextprotocol;
|
|
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 SiModelcontextprotocol = React.forwardRef(function SiModelcontextprotocol2({ title = "Model Context Protocol", 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: "M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiModelcontextprotocol 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 = "#003EB0";
|
|
28
|
+
const SiPayback = React__namespace.forwardRef(function SiPayback2({ title = "PAYBACK", 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: "M16.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiPayback;
|
|
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 = "#003EB0";
|
|
5
|
+
const SiPayback = React.forwardRef(function SiPayback2({ title = "PAYBACK", 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: "M16.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiPayback 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 = "#3569F3";
|
|
28
|
+
const SiRollbar = React__namespace.forwardRef(function SiRollbar2({ title = "Rollbar", 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 2.5795c-.0019-.1956-.1152-.5064-.484-.584-.0578-.0162-.1178-.0113-.177-.0104-.3082.0276-4.3793.4162-8.9551 2.4569-2.7478 1.2221-4.8747 3.0984-6.213 5.376l-.3449.1494C2.9271 12.1542 0 16.4046 0 21.338v.0828c0 .3392.2786.5955.5967.5955h16.2625c.1045 0 .2506-.0351.3748-.1391l6.5533-5.5255a.5932.5932 0 0 0 .2116-.4598V2.5795Zm-6.5544 17.5582V8.382l5.3622-4.5195v11.7557ZM7.3684 16.4908h8.885v4.3333H2.227ZM14.868 5.532a30.7234 30.7234 0 0 1 6.5315-2.043L16.6063 7.53a30.4061 30.4061 0 0 0-6.489 1.528c1.1866-1.4487 2.787-2.6501 4.7506-3.5262ZM8.978 10.7722a30.7706 30.7706 0 0 1 7.2753-1.9947v6.5211h-8.494a10.5382 10.5382 0 0 1 1.2187-4.5264zm-1.636.7611a11.8074 11.8074 0 0 0-.7887 4.0826l-5.2886 4.4632c.4-3.6262 2.5535-6.6591 6.0773-8.5458z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiRollbar;
|
|
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 = "#3569F3";
|
|
5
|
+
const SiRollbar = React.forwardRef(function SiRollbar2({ title = "Rollbar", 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 2.5795c-.0019-.1956-.1152-.5064-.484-.584-.0578-.0162-.1178-.0113-.177-.0104-.3082.0276-4.3793.4162-8.9551 2.4569-2.7478 1.2221-4.8747 3.0984-6.213 5.376l-.3449.1494C2.9271 12.1542 0 16.4046 0 21.338v.0828c0 .3392.2786.5955.5967.5955h16.2625c.1045 0 .2506-.0351.3748-.1391l6.5533-5.5255a.5932.5932 0 0 0 .2116-.4598V2.5795Zm-6.5544 17.5582V8.382l5.3622-4.5195v11.7557ZM7.3684 16.4908h8.885v4.3333H2.227ZM14.868 5.532a30.7234 30.7234 0 0 1 6.5315-2.043L16.6063 7.53a30.4061 30.4061 0 0 0-6.489 1.528c1.1866-1.4487 2.787-2.6501 4.7506-3.5262ZM8.978 10.7722a30.7706 30.7706 0 0 1 7.2753-1.9947v6.5211h-8.494a10.5382 10.5382 0 0 1 1.2187-4.5264zm-1.636.7611a11.8074 11.8074 0 0 0-.7887 4.0826l-5.2886 4.4632c.4-3.6262 2.5535-6.6591 6.0773-8.5458z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiRollbar 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 SiTokio = React__namespace.forwardRef(function SiTokio2({ title = "Tokio", 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: "m6.314 1.326-.691.403.201.345L9.65 8.641l.069.117a4 4 0 0 0-.992.988L6.379 8.391l-.338-.194-.4.692.338.195 2.355 1.36a4 4 0 0 0-.312 1.198H.4l-.4.001v.8h8.021a4 4 0 0 0 .313 1.2l-2.356 1.359-.337.195.4.692.338-.193 2.347-1.358a4 4 0 0 0 .834.873l-.086.148-3.826 6.567-.2.346.69.402.202-.344 3.826-6.568.074-.127a4 4 0 0 0 1.36.387v3.021h.8v-3.021a4 4 0 0 0 1.409-.413l.066.114 3.826 6.568.201.346.692-.405-.201-.345-3.827-6.567-.084-.142a4 4 0 0 0 .791-.84l2.348 1.357.338.194.4-.692-.337-.195-2.356-1.36a4 4 0 0 0 .313-1.198H24v-.801h-8.021a4 4 0 0 0-.313-1.2l2.356-1.359.337-.195-.4-.692-.338.194-2.348 1.355a4 4 0 0 0-1.015-1.004l.058-.101 3.827-6.567.2-.345-.69-.403-.202.344-3.826 6.568-.068.12a4 4 0 0 0-1.157-.294V5.043h-.8v3.021a4 4 0 0 0-1.182.305l-.076-.13L6.516 1.67ZM12 3.043a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .602-.6.6.6 0 0 0-.602-.6M12 8.888a3.153 3.153 0 1 1 0 6.307 3.153 3.153 0 1 1 0-6.307m0 2.555a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.599.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.601.6.6 0 0 0 .6-.602.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.602.6.6 0 0 0 .602-.602.6.6 0 0 0-.602-.6M12 19.845a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
exports.default = SiTokio;
|
|
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 SiTokio = React.forwardRef(function SiTokio2({ title = "Tokio", 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: "m6.314 1.326-.691.403.201.345L9.65 8.641l.069.117a4 4 0 0 0-.992.988L6.379 8.391l-.338-.194-.4.692.338.195 2.355 1.36a4 4 0 0 0-.312 1.198H.4l-.4.001v.8h8.021a4 4 0 0 0 .313 1.2l-2.356 1.359-.337.195.4.692.338-.193 2.347-1.358a4 4 0 0 0 .834.873l-.086.148-3.826 6.567-.2.346.69.402.202-.344 3.826-6.568.074-.127a4 4 0 0 0 1.36.387v3.021h.8v-3.021a4 4 0 0 0 1.409-.413l.066.114 3.826 6.568.201.346.692-.405-.201-.345-3.827-6.567-.084-.142a4 4 0 0 0 .791-.84l2.348 1.357.338.194.4-.692-.337-.195-2.356-1.36a4 4 0 0 0 .313-1.198H24v-.801h-8.021a4 4 0 0 0-.313-1.2l2.356-1.359.337-.195-.4-.692-.338.194-2.348 1.355a4 4 0 0 0-1.015-1.004l.058-.101 3.827-6.567.2-.345-.69-.403-.202.344-3.826 6.568-.068.12a4 4 0 0 0-1.157-.294V5.043h-.8v3.021a4 4 0 0 0-1.182.305l-.076-.13L6.516 1.67ZM12 3.043a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .602-.6.6.6 0 0 0-.602-.6M12 8.888a3.153 3.153 0 1 1 0 6.307 3.153 3.153 0 1 1 0-6.307m0 2.555a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.599.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.601.6.6 0 0 0 .6-.602.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.602.6.6 0 0 0 .602-.602.6.6 0 0 0-.602-.6M12 19.845a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export { SiTokio as default, defaultColor };
|
package/index.cjs
CHANGED
|
@@ -351,6 +351,7 @@ const SiBitrise = require('./icons/SiBitrise.cjs');
|
|
|
351
351
|
const SiBittorrent = require('./icons/SiBittorrent.cjs');
|
|
352
352
|
const SiBitwarden = require('./icons/SiBitwarden.cjs');
|
|
353
353
|
const SiBitwig = require('./icons/SiBitwig.cjs');
|
|
354
|
+
const SiBlack = require('./icons/SiBlack.cjs');
|
|
354
355
|
const SiBlackberry = require('./icons/SiBlackberry.cjs');
|
|
355
356
|
const SiBlackmagicdesign = require('./icons/SiBlackmagicdesign.cjs');
|
|
356
357
|
const SiBlazemeter = require('./icons/SiBlazemeter.cjs');
|
|
@@ -452,6 +453,7 @@ const SiCanvas = require('./icons/SiCanvas.cjs');
|
|
|
452
453
|
const SiCapacitor = require('./icons/SiCapacitor.cjs');
|
|
453
454
|
const SiCaprover = require('./icons/SiCaprover.cjs');
|
|
454
455
|
const SiCardano = require('./icons/SiCardano.cjs');
|
|
456
|
+
const SiCardmarket = require('./icons/SiCardmarket.cjs');
|
|
455
457
|
const SiCarlsberggroup = require('./icons/SiCarlsberggroup.cjs');
|
|
456
458
|
const SiCarrd = require('./icons/SiCarrd.cjs');
|
|
457
459
|
const SiCarrefour = require('./icons/SiCarrefour.cjs');
|
|
@@ -993,6 +995,7 @@ const SiFlyway = require('./icons/SiFlyway.cjs');
|
|
|
993
995
|
const SiFmod = require('./icons/SiFmod.cjs');
|
|
994
996
|
const SiFnac = require('./icons/SiFnac.cjs');
|
|
995
997
|
const SiFolium = require('./icons/SiFolium.cjs');
|
|
998
|
+
const SiFolo = require('./icons/SiFolo.cjs');
|
|
996
999
|
const SiFonoma = require('./icons/SiFonoma.cjs');
|
|
997
1000
|
const SiFontawesome = require('./icons/SiFontawesome.cjs');
|
|
998
1001
|
const SiFontbase = require('./icons/SiFontbase.cjs');
|
|
@@ -1825,6 +1828,7 @@ const SiMobxstatetree = require('./icons/SiMobxstatetree.cjs');
|
|
|
1825
1828
|
const SiMocha = require('./icons/SiMocha.cjs');
|
|
1826
1829
|
const SiMockserviceworker = require('./icons/SiMockserviceworker.cjs');
|
|
1827
1830
|
const SiModal = require('./icons/SiModal.cjs');
|
|
1831
|
+
const SiModelcontextprotocol = require('./icons/SiModelcontextprotocol.cjs');
|
|
1828
1832
|
const SiModin = require('./icons/SiModin.cjs');
|
|
1829
1833
|
const SiModrinth = require('./icons/SiModrinth.cjs');
|
|
1830
1834
|
const SiModx = require('./icons/SiModx.cjs');
|
|
@@ -2118,6 +2122,7 @@ const SiParsedotly = require('./icons/SiParsedotly.cjs');
|
|
|
2118
2122
|
const SiPassport = require('./icons/SiPassport.cjs');
|
|
2119
2123
|
const SiPastebin = require('./icons/SiPastebin.cjs');
|
|
2120
2124
|
const SiPatreon = require('./icons/SiPatreon.cjs');
|
|
2125
|
+
const SiPayback = require('./icons/SiPayback.cjs');
|
|
2121
2126
|
const SiPaychex = require('./icons/SiPaychex.cjs');
|
|
2122
2127
|
const SiPayhip = require('./icons/SiPayhip.cjs');
|
|
2123
2128
|
const SiPayloadcms = require('./icons/SiPayloadcms.cjs');
|
|
@@ -2470,6 +2475,7 @@ const SiRockwellautomation = require('./icons/SiRockwellautomation.cjs');
|
|
|
2470
2475
|
const SiRockylinux = require('./icons/SiRockylinux.cjs');
|
|
2471
2476
|
const SiRoku = require('./icons/SiRoku.cjs');
|
|
2472
2477
|
const SiRoll20 = require('./icons/SiRoll20.cjs');
|
|
2478
|
+
const SiRollbar = require('./icons/SiRollbar.cjs');
|
|
2473
2479
|
const SiRollsroyce = require('./icons/SiRollsroyce.cjs');
|
|
2474
2480
|
const SiRollupdotjs = require('./icons/SiRollupdotjs.cjs');
|
|
2475
2481
|
const SiRook = require('./icons/SiRook.cjs');
|
|
@@ -2928,6 +2934,7 @@ const SiTmux = require('./icons/SiTmux.cjs');
|
|
|
2928
2934
|
const SiTodoist = require('./icons/SiTodoist.cjs');
|
|
2929
2935
|
const SiToggl = require('./icons/SiToggl.cjs');
|
|
2930
2936
|
const SiToggltrack = require('./icons/SiToggltrack.cjs');
|
|
2937
|
+
const SiTokio = require('./icons/SiTokio.cjs');
|
|
2931
2938
|
const SiTokyometro = require('./icons/SiTokyometro.cjs');
|
|
2932
2939
|
const SiToll = require('./icons/SiToll.cjs');
|
|
2933
2940
|
const SiToml = require('./icons/SiToml.cjs');
|
|
@@ -4030,6 +4037,8 @@ exports.SiBitwarden = SiBitwarden.default;
|
|
|
4030
4037
|
exports.SiBitwardenHex = SiBitwarden.defaultColor;
|
|
4031
4038
|
exports.SiBitwig = SiBitwig.default;
|
|
4032
4039
|
exports.SiBitwigHex = SiBitwig.defaultColor;
|
|
4040
|
+
exports.SiBlack = SiBlack.default;
|
|
4041
|
+
exports.SiBlackHex = SiBlack.defaultColor;
|
|
4033
4042
|
exports.SiBlackberry = SiBlackberry.default;
|
|
4034
4043
|
exports.SiBlackberryHex = SiBlackberry.defaultColor;
|
|
4035
4044
|
exports.SiBlackmagicdesign = SiBlackmagicdesign.default;
|
|
@@ -4232,6 +4241,8 @@ exports.SiCaprover = SiCaprover.default;
|
|
|
4232
4241
|
exports.SiCaproverHex = SiCaprover.defaultColor;
|
|
4233
4242
|
exports.SiCardano = SiCardano.default;
|
|
4234
4243
|
exports.SiCardanoHex = SiCardano.defaultColor;
|
|
4244
|
+
exports.SiCardmarket = SiCardmarket.default;
|
|
4245
|
+
exports.SiCardmarketHex = SiCardmarket.defaultColor;
|
|
4235
4246
|
exports.SiCarlsberggroup = SiCarlsberggroup.default;
|
|
4236
4247
|
exports.SiCarlsberggroupHex = SiCarlsberggroup.defaultColor;
|
|
4237
4248
|
exports.SiCarrd = SiCarrd.default;
|
|
@@ -5314,6 +5325,8 @@ exports.SiFnac = SiFnac.default;
|
|
|
5314
5325
|
exports.SiFnacHex = SiFnac.defaultColor;
|
|
5315
5326
|
exports.SiFolium = SiFolium.default;
|
|
5316
5327
|
exports.SiFoliumHex = SiFolium.defaultColor;
|
|
5328
|
+
exports.SiFolo = SiFolo.default;
|
|
5329
|
+
exports.SiFoloHex = SiFolo.defaultColor;
|
|
5317
5330
|
exports.SiFonoma = SiFonoma.default;
|
|
5318
5331
|
exports.SiFonomaHex = SiFonoma.defaultColor;
|
|
5319
5332
|
exports.SiFontawesome = SiFontawesome.default;
|
|
@@ -6978,6 +6991,8 @@ exports.SiMockserviceworker = SiMockserviceworker.default;
|
|
|
6978
6991
|
exports.SiMockserviceworkerHex = SiMockserviceworker.defaultColor;
|
|
6979
6992
|
exports.SiModal = SiModal.default;
|
|
6980
6993
|
exports.SiModalHex = SiModal.defaultColor;
|
|
6994
|
+
exports.SiModelcontextprotocol = SiModelcontextprotocol.default;
|
|
6995
|
+
exports.SiModelcontextprotocolHex = SiModelcontextprotocol.defaultColor;
|
|
6981
6996
|
exports.SiModin = SiModin.default;
|
|
6982
6997
|
exports.SiModinHex = SiModin.defaultColor;
|
|
6983
6998
|
exports.SiModrinth = SiModrinth.default;
|
|
@@ -7564,6 +7579,8 @@ exports.SiPastebin = SiPastebin.default;
|
|
|
7564
7579
|
exports.SiPastebinHex = SiPastebin.defaultColor;
|
|
7565
7580
|
exports.SiPatreon = SiPatreon.default;
|
|
7566
7581
|
exports.SiPatreonHex = SiPatreon.defaultColor;
|
|
7582
|
+
exports.SiPayback = SiPayback.default;
|
|
7583
|
+
exports.SiPaybackHex = SiPayback.defaultColor;
|
|
7567
7584
|
exports.SiPaychex = SiPaychex.default;
|
|
7568
7585
|
exports.SiPaychexHex = SiPaychex.defaultColor;
|
|
7569
7586
|
exports.SiPayhip = SiPayhip.default;
|
|
@@ -8268,6 +8285,8 @@ exports.SiRoku = SiRoku.default;
|
|
|
8268
8285
|
exports.SiRokuHex = SiRoku.defaultColor;
|
|
8269
8286
|
exports.SiRoll20 = SiRoll20.default;
|
|
8270
8287
|
exports.SiRoll20Hex = SiRoll20.defaultColor;
|
|
8288
|
+
exports.SiRollbar = SiRollbar.default;
|
|
8289
|
+
exports.SiRollbarHex = SiRollbar.defaultColor;
|
|
8271
8290
|
exports.SiRollsroyce = SiRollsroyce.default;
|
|
8272
8291
|
exports.SiRollsroyceHex = SiRollsroyce.defaultColor;
|
|
8273
8292
|
exports.SiRollupdotjs = SiRollupdotjs.default;
|
|
@@ -9184,6 +9203,8 @@ exports.SiToggl = SiToggl.default;
|
|
|
9184
9203
|
exports.SiTogglHex = SiToggl.defaultColor;
|
|
9185
9204
|
exports.SiToggltrack = SiToggltrack.default;
|
|
9186
9205
|
exports.SiToggltrackHex = SiToggltrack.defaultColor;
|
|
9206
|
+
exports.SiTokio = SiTokio.default;
|
|
9207
|
+
exports.SiTokioHex = SiTokio.defaultColor;
|
|
9187
9208
|
exports.SiTokyometro = SiTokyometro.default;
|
|
9188
9209
|
exports.SiTokyometroHex = SiTokyometro.defaultColor;
|
|
9189
9210
|
exports.SiToll = SiToll.default;
|
package/index.d.ts
CHANGED
|
@@ -347,6 +347,7 @@ export { default as SiBitrise, defaultColor as SiBitriseHex } from './icons/SiBi
|
|
|
347
347
|
export { default as SiBittorrent, defaultColor as SiBittorrentHex } from './icons/SiBittorrent';
|
|
348
348
|
export { default as SiBitwarden, defaultColor as SiBitwardenHex } from './icons/SiBitwarden';
|
|
349
349
|
export { default as SiBitwig, defaultColor as SiBitwigHex } from './icons/SiBitwig';
|
|
350
|
+
export { default as SiBlack, defaultColor as SiBlackHex } from './icons/SiBlack';
|
|
350
351
|
export { default as SiBlackberry, defaultColor as SiBlackberryHex } from './icons/SiBlackberry';
|
|
351
352
|
export { default as SiBlackmagicdesign, defaultColor as SiBlackmagicdesignHex } from './icons/SiBlackmagicdesign';
|
|
352
353
|
export { default as SiBlazemeter, defaultColor as SiBlazemeterHex } from './icons/SiBlazemeter';
|
|
@@ -448,6 +449,7 @@ export { default as SiCanvas, defaultColor as SiCanvasHex } from './icons/SiCanv
|
|
|
448
449
|
export { default as SiCapacitor, defaultColor as SiCapacitorHex } from './icons/SiCapacitor';
|
|
449
450
|
export { default as SiCaprover, defaultColor as SiCaproverHex } from './icons/SiCaprover';
|
|
450
451
|
export { default as SiCardano, defaultColor as SiCardanoHex } from './icons/SiCardano';
|
|
452
|
+
export { default as SiCardmarket, defaultColor as SiCardmarketHex } from './icons/SiCardmarket';
|
|
451
453
|
export { default as SiCarlsberggroup, defaultColor as SiCarlsberggroupHex } from './icons/SiCarlsberggroup';
|
|
452
454
|
export { default as SiCarrd, defaultColor as SiCarrdHex } from './icons/SiCarrd';
|
|
453
455
|
export { default as SiCarrefour, defaultColor as SiCarrefourHex } from './icons/SiCarrefour';
|
|
@@ -989,6 +991,7 @@ export { default as SiFlyway, defaultColor as SiFlywayHex } from './icons/SiFlyw
|
|
|
989
991
|
export { default as SiFmod, defaultColor as SiFmodHex } from './icons/SiFmod';
|
|
990
992
|
export { default as SiFnac, defaultColor as SiFnacHex } from './icons/SiFnac';
|
|
991
993
|
export { default as SiFolium, defaultColor as SiFoliumHex } from './icons/SiFolium';
|
|
994
|
+
export { default as SiFolo, defaultColor as SiFoloHex } from './icons/SiFolo';
|
|
992
995
|
export { default as SiFonoma, defaultColor as SiFonomaHex } from './icons/SiFonoma';
|
|
993
996
|
export { default as SiFontawesome, defaultColor as SiFontawesomeHex } from './icons/SiFontawesome';
|
|
994
997
|
export { default as SiFontbase, defaultColor as SiFontbaseHex } from './icons/SiFontbase';
|
|
@@ -1821,6 +1824,7 @@ export { default as SiMobxstatetree, defaultColor as SiMobxstatetreeHex } from '
|
|
|
1821
1824
|
export { default as SiMocha, defaultColor as SiMochaHex } from './icons/SiMocha';
|
|
1822
1825
|
export { default as SiMockserviceworker, defaultColor as SiMockserviceworkerHex } from './icons/SiMockserviceworker';
|
|
1823
1826
|
export { default as SiModal, defaultColor as SiModalHex } from './icons/SiModal';
|
|
1827
|
+
export { default as SiModelcontextprotocol, defaultColor as SiModelcontextprotocolHex } from './icons/SiModelcontextprotocol';
|
|
1824
1828
|
export { default as SiModin, defaultColor as SiModinHex } from './icons/SiModin';
|
|
1825
1829
|
export { default as SiModrinth, defaultColor as SiModrinthHex } from './icons/SiModrinth';
|
|
1826
1830
|
export { default as SiModx, defaultColor as SiModxHex } from './icons/SiModx';
|
|
@@ -2114,6 +2118,7 @@ export { default as SiParsedotly, defaultColor as SiParsedotlyHex } from './icon
|
|
|
2114
2118
|
export { default as SiPassport, defaultColor as SiPassportHex } from './icons/SiPassport';
|
|
2115
2119
|
export { default as SiPastebin, defaultColor as SiPastebinHex } from './icons/SiPastebin';
|
|
2116
2120
|
export { default as SiPatreon, defaultColor as SiPatreonHex } from './icons/SiPatreon';
|
|
2121
|
+
export { default as SiPayback, defaultColor as SiPaybackHex } from './icons/SiPayback';
|
|
2117
2122
|
export { default as SiPaychex, defaultColor as SiPaychexHex } from './icons/SiPaychex';
|
|
2118
2123
|
export { default as SiPayhip, defaultColor as SiPayhipHex } from './icons/SiPayhip';
|
|
2119
2124
|
export { default as SiPayloadcms, defaultColor as SiPayloadcmsHex } from './icons/SiPayloadcms';
|
|
@@ -2466,6 +2471,7 @@ export { default as SiRockwellautomation, defaultColor as SiRockwellautomationHe
|
|
|
2466
2471
|
export { default as SiRockylinux, defaultColor as SiRockylinuxHex } from './icons/SiRockylinux';
|
|
2467
2472
|
export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku';
|
|
2468
2473
|
export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20';
|
|
2474
|
+
export { default as SiRollbar, defaultColor as SiRollbarHex } from './icons/SiRollbar';
|
|
2469
2475
|
export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce';
|
|
2470
2476
|
export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs';
|
|
2471
2477
|
export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook';
|
|
@@ -2924,6 +2930,7 @@ export { default as SiTmux, defaultColor as SiTmuxHex } from './icons/SiTmux';
|
|
|
2924
2930
|
export { default as SiTodoist, defaultColor as SiTodoistHex } from './icons/SiTodoist';
|
|
2925
2931
|
export { default as SiToggl, defaultColor as SiTogglHex } from './icons/SiToggl';
|
|
2926
2932
|
export { default as SiToggltrack, defaultColor as SiToggltrackHex } from './icons/SiToggltrack';
|
|
2933
|
+
export { default as SiTokio, defaultColor as SiTokioHex } from './icons/SiTokio';
|
|
2927
2934
|
export { default as SiTokyometro, defaultColor as SiTokyometroHex } from './icons/SiTokyometro';
|
|
2928
2935
|
export { default as SiToll, defaultColor as SiTollHex } from './icons/SiToll';
|
|
2929
2936
|
export { default as SiToml, defaultColor as SiTomlHex } from './icons/SiToml';
|
package/index.mjs
CHANGED
|
@@ -347,6 +347,7 @@ export { default as SiBitrise, defaultColor as SiBitriseHex } from './icons/SiBi
|
|
|
347
347
|
export { default as SiBittorrent, defaultColor as SiBittorrentHex } from './icons/SiBittorrent.mjs';
|
|
348
348
|
export { default as SiBitwarden, defaultColor as SiBitwardenHex } from './icons/SiBitwarden.mjs';
|
|
349
349
|
export { default as SiBitwig, defaultColor as SiBitwigHex } from './icons/SiBitwig.mjs';
|
|
350
|
+
export { default as SiBlack, defaultColor as SiBlackHex } from './icons/SiBlack.mjs';
|
|
350
351
|
export { default as SiBlackberry, defaultColor as SiBlackberryHex } from './icons/SiBlackberry.mjs';
|
|
351
352
|
export { default as SiBlackmagicdesign, defaultColor as SiBlackmagicdesignHex } from './icons/SiBlackmagicdesign.mjs';
|
|
352
353
|
export { default as SiBlazemeter, defaultColor as SiBlazemeterHex } from './icons/SiBlazemeter.mjs';
|
|
@@ -448,6 +449,7 @@ export { default as SiCanvas, defaultColor as SiCanvasHex } from './icons/SiCanv
|
|
|
448
449
|
export { default as SiCapacitor, defaultColor as SiCapacitorHex } from './icons/SiCapacitor.mjs';
|
|
449
450
|
export { default as SiCaprover, defaultColor as SiCaproverHex } from './icons/SiCaprover.mjs';
|
|
450
451
|
export { default as SiCardano, defaultColor as SiCardanoHex } from './icons/SiCardano.mjs';
|
|
452
|
+
export { default as SiCardmarket, defaultColor as SiCardmarketHex } from './icons/SiCardmarket.mjs';
|
|
451
453
|
export { default as SiCarlsberggroup, defaultColor as SiCarlsberggroupHex } from './icons/SiCarlsberggroup.mjs';
|
|
452
454
|
export { default as SiCarrd, defaultColor as SiCarrdHex } from './icons/SiCarrd.mjs';
|
|
453
455
|
export { default as SiCarrefour, defaultColor as SiCarrefourHex } from './icons/SiCarrefour.mjs';
|
|
@@ -989,6 +991,7 @@ export { default as SiFlyway, defaultColor as SiFlywayHex } from './icons/SiFlyw
|
|
|
989
991
|
export { default as SiFmod, defaultColor as SiFmodHex } from './icons/SiFmod.mjs';
|
|
990
992
|
export { default as SiFnac, defaultColor as SiFnacHex } from './icons/SiFnac.mjs';
|
|
991
993
|
export { default as SiFolium, defaultColor as SiFoliumHex } from './icons/SiFolium.mjs';
|
|
994
|
+
export { default as SiFolo, defaultColor as SiFoloHex } from './icons/SiFolo.mjs';
|
|
992
995
|
export { default as SiFonoma, defaultColor as SiFonomaHex } from './icons/SiFonoma.mjs';
|
|
993
996
|
export { default as SiFontawesome, defaultColor as SiFontawesomeHex } from './icons/SiFontawesome.mjs';
|
|
994
997
|
export { default as SiFontbase, defaultColor as SiFontbaseHex } from './icons/SiFontbase.mjs';
|
|
@@ -1821,6 +1824,7 @@ export { default as SiMobxstatetree, defaultColor as SiMobxstatetreeHex } from '
|
|
|
1821
1824
|
export { default as SiMocha, defaultColor as SiMochaHex } from './icons/SiMocha.mjs';
|
|
1822
1825
|
export { default as SiMockserviceworker, defaultColor as SiMockserviceworkerHex } from './icons/SiMockserviceworker.mjs';
|
|
1823
1826
|
export { default as SiModal, defaultColor as SiModalHex } from './icons/SiModal.mjs';
|
|
1827
|
+
export { default as SiModelcontextprotocol, defaultColor as SiModelcontextprotocolHex } from './icons/SiModelcontextprotocol.mjs';
|
|
1824
1828
|
export { default as SiModin, defaultColor as SiModinHex } from './icons/SiModin.mjs';
|
|
1825
1829
|
export { default as SiModrinth, defaultColor as SiModrinthHex } from './icons/SiModrinth.mjs';
|
|
1826
1830
|
export { default as SiModx, defaultColor as SiModxHex } from './icons/SiModx.mjs';
|
|
@@ -2114,6 +2118,7 @@ export { default as SiParsedotly, defaultColor as SiParsedotlyHex } from './icon
|
|
|
2114
2118
|
export { default as SiPassport, defaultColor as SiPassportHex } from './icons/SiPassport.mjs';
|
|
2115
2119
|
export { default as SiPastebin, defaultColor as SiPastebinHex } from './icons/SiPastebin.mjs';
|
|
2116
2120
|
export { default as SiPatreon, defaultColor as SiPatreonHex } from './icons/SiPatreon.mjs';
|
|
2121
|
+
export { default as SiPayback, defaultColor as SiPaybackHex } from './icons/SiPayback.mjs';
|
|
2117
2122
|
export { default as SiPaychex, defaultColor as SiPaychexHex } from './icons/SiPaychex.mjs';
|
|
2118
2123
|
export { default as SiPayhip, defaultColor as SiPayhipHex } from './icons/SiPayhip.mjs';
|
|
2119
2124
|
export { default as SiPayloadcms, defaultColor as SiPayloadcmsHex } from './icons/SiPayloadcms.mjs';
|
|
@@ -2466,6 +2471,7 @@ export { default as SiRockwellautomation, defaultColor as SiRockwellautomationHe
|
|
|
2466
2471
|
export { default as SiRockylinux, defaultColor as SiRockylinuxHex } from './icons/SiRockylinux.mjs';
|
|
2467
2472
|
export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku.mjs';
|
|
2468
2473
|
export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20.mjs';
|
|
2474
|
+
export { default as SiRollbar, defaultColor as SiRollbarHex } from './icons/SiRollbar.mjs';
|
|
2469
2475
|
export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce.mjs';
|
|
2470
2476
|
export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs.mjs';
|
|
2471
2477
|
export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook.mjs';
|
|
@@ -2924,6 +2930,7 @@ export { default as SiTmux, defaultColor as SiTmuxHex } from './icons/SiTmux.mjs
|
|
|
2924
2930
|
export { default as SiTodoist, defaultColor as SiTodoistHex } from './icons/SiTodoist.mjs';
|
|
2925
2931
|
export { default as SiToggl, defaultColor as SiTogglHex } from './icons/SiToggl.mjs';
|
|
2926
2932
|
export { default as SiToggltrack, defaultColor as SiToggltrackHex } from './icons/SiToggltrack.mjs';
|
|
2933
|
+
export { default as SiTokio, defaultColor as SiTokioHex } from './icons/SiTokio.mjs';
|
|
2927
2934
|
export { default as SiTokyometro, defaultColor as SiTokyometroHex } from './icons/SiTokyometro.mjs';
|
|
2928
2935
|
export { default as SiToll, defaultColor as SiTollHex } from './icons/SiToll.mjs';
|
|
2929
2936
|
export { default as SiToml, defaultColor as SiTomlHex } from './icons/SiToml.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.5.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.6.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 SiBlackProps = 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 SiBlack: IconType = React.forwardRef<SVGSVGElement, SiBlackProps>(function SiBlack({title = 'Black', 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.506 17.772c-3.358-.211-6.452-1.124-8.347-2.462-.484-.342-1.137-.954-1.43-1.34-.6-.794-.85-1.735-.674-2.548.32-1.478 1.763-2.846 4.016-3.807 1.668-.71 3.533-1.142 5.958-1.379.844-.082 3.291-.069 4.184.024 2.67.276 4.656.795 6.416 1.677 2.259 1.132 3.457 2.63 3.366 4.204q-.103 1.815-2.347 3.303c-2.536 1.684-6.902 2.596-11.142 2.328m3.642-.493c2.17-.206 4.068-.66 5.652-1.35.594-.26.588-.257 1.185-.6 1.687-.972 2.656-2.273 2.58-3.47-.046-.75-.37-1.365-1.112-2.106-1.489-1.489-4.112-2.54-7.46-2.99-.842-.112-1.744-.161-2.991-.16-1.337 0-1.774.022-2.797.142-2.907.343-5.51 1.262-7.108 2.51-.39.305-.89.815-1.102 1.123-.325.472-.567 1.16-.567 1.611 0 .307.123.766.301 1.127 1.13 2.28 5.24 3.992 10.189 4.244.634.032 2.546-.015 3.23-.08m-4.162-.283c-2.184-.21-3.922-.621-5.523-1.305-1.972-.842-3.357-2.079-3.669-3.276-.205-.79.16-1.638 1.087-2.524 1.574-1.504 4.443-2.557 7.927-2.908 1.192-.12 3.207-.121 4.391-.001 2.979.3 5.467 1.092 7.188 2.288.438.304 1.298 1.167 1.49 1.494.478.814.516 1.433.134 2.179-.952 1.861-3.956 3.366-7.825 3.92-1.628.232-3.643.284-5.2.134zM20.237 14.4c.294-.112.716-.42 1.013-.74.237-.257.291-.348.205-.348-.022 0-.186.135-.365.3-.364.338-.6.504-.775.547-.1.024-.12.015-.12-.057 0-.047.051-.197.113-.332.133-.29.118-.47-.054-.675l-.111-.132.183-.205.29-.324c.147-.165.216-.154.195.029-.014.12.003.16.09.218.207.135.447-.009.494-.294.021-.133.006-.174-.107-.287-.236-.236-.463-.152-.928.341-.228.242-.374.358-.52.414-.212.08-.338.068-.338-.032 0-.031.359-.637.798-1.345l.798-1.288h-.72l-.3.358-.728.878c-1.204 1.455-1.92 2.212-2.391 2.524-.208.139-.285.164-.537.178-.278.016-.298.01-.37-.098-.065-.1-.068-.138-.02-.297.116-.39.556-1.143.82-1.407.17-.17.336-.195.287-.044-.08.246-.074.402.019.485.126.115.343.107.443-.016.092-.114.105-.376.028-.546-.16-.352-.914-.306-1.547.095-.134.085-.588.503-1.009.93-.602.61-.788.775-.877.775-.08 0-.113-.022-.113-.075 0-.105.16-.436.464-.97.142-.248.32-.562.395-.7l.138-.249h-.686l-.118.203-.119.202-.083-.16c-.13-.255-.304-.34-.646-.319-.557.035-1.035.345-1.925 1.247-.552.56-1.03.951-1.16.951-.108 0-.122-.118-.054-.447.085-.413.166-.562 1.14-2.12.458-.731.833-1.341.833-1.354s-.152-.023-.336-.022l-.336.002-.282.42a15 15 0 0 1-1.34 1.701c-.227.25-.426.46-.442.468-.015.007-.03-.11-.034-.26-.011-.534-.16-.843-.523-1.095-.096-.067-.176-.136-.176-.153s.147-.103.326-.192c.377-.186.7-.487.85-.791.132-.267.142-.771.02-1.022-.092-.19-.386-.489-.556-.565-.154-.068-.135-.116.097-.245.16-.089.176-.11.107-.134-.103-.036-.367.02-.577.125-.14.07-.212.074-.635.038-1.55-.129-2.884.158-3.88.835-.359.243-.866.8-1.033 1.132-.128.254-.141.311-.114.498.033.225.114.42.23.553.287.326 1.174.36 1.772.069.333-.163.514-.376.757-.89.17-.359.184-.419.2-.82.029-.717.019-.72-.286-.12-.365.72-.599 1.07-.904 1.36-.332.315-.492.394-.849.42l-.292.02-.174-.174c-.16-.16-.174-.192-.174-.41 0-.48.237-.881.758-1.278.751-.572 1.947-.976 2.905-.98.554-.002 1.063.053 1.06.114-.001.028-.11.128-.241.222-.309.221-.873.781-1.2 1.193-.513.643-1.111 1.603-1.354 2.172-.55 1.287-.885 1.66-1.592 1.772-.482.077-.817-.038-1.134-.389-.224-.248-.21-.327.066-.36.491-.058.698-.3.587-.688-.04-.143-.088-.204-.203-.264-.181-.093-.328-.073-.554.077-.249.164-.369.352-.39.608-.038.454.29.909.797 1.107.327.128 1.046.14 1.513.025 1.168-.286 2.071-1.267 2.58-2.802.197-.59.605-1.48.827-1.804.18-.262.729-.84.797-.84.174 0 .456.562.456.91 0 .405-.23.82-.623 1.124-.233.18-.239.182-.35.11-.166-.11-.488-.064-.618.087-.11.126-.122.203-.054.33.052.096.216.109.433.033.136-.047.15-.042.281.1.255.28.244.81-.029 1.351-.3.595-.65.999-1.006 1.16-.235.107-.352.104-.46-.011-.171-.184-.082-.752.149-.944.038-.032.149-.153.246-.269.173-.207.174-.21.053-.164-.438.167-.758.738-.682 1.216.065.403.425.576 1 .48.58-.095.776-.23 1.645-1.126.433-.446.798-.8.81-.788s-.056.148-.153.301c-.36.566-.517 1.177-.362 1.413.09.136.31.236.524.236.294 0 .619-.23 1.22-.861.217-.23.407-.407.42-.394s-.015.15-.064.303c-.145.46-.05.745.296.893.306.13.6.04 1.032-.314.46-.377.417-.366.385-.092-.026.223-.02.25.09.358.098.099.143.114.283.095.307-.041.544-.204 1.037-.71.264-.27.499-.492.522-.492s.013.08-.022.179c-.146.416-.038.774.284.94.167.087.244.099.542.085.298-.015.392-.04.672-.183.289-.147.43-.273 1.267-1.124.519-.528.943-.943.943-.924 0 .041-.464.825-.97 1.634l-.365.585.328.013c.18.007.353.003.382-.008s.225-.306.433-.655c.3-.502.392-.627.448-.602a.8.8 0 0 0 .255.022c.128-.006.192.01.21.055.013.035-.046.224-.132.421-.185.428-.197.608-.048.756.131.132.327.14.629.025zm-7.82-.333c-.088-.087-.086-.143.015-.43.258-.736 1.054-1.566 1.349-1.408.192.103.147.502-.096.855-.373.543-.917 1.051-1.124 1.051a.24.24 0 0 1-.144-.068' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiBlack as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiCardmarketProps = 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 = '#012169';
|
|
22
|
+
|
|
23
|
+
const SiCardmarket: IconType = React.forwardRef<SVGSVGElement, SiCardmarketProps>(function SiCardmarket({title = 'Cardmarket', 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='M14.837.772c-.45 0-.6.255-.645.366-.044.11-.113.4.213.711l1.54 1.478a.124.124 0 0 1 .002.18L10.021 9.47a.934.934 0 0 0-.274.673.936.936 0 0 0 .289.669l3.977 3.82a.955.955 0 0 0 .664.267v.001c.259 0 .5-.1.68-.281l5.815-5.853a.142.142 0 0 1 .103-.042c.023 0 .065.005.1.04l1.54 1.478c.198.19.383.23.504.23.277 0 .577-.217.577-.691L24 1.726a.951.951 0 0 0-.95-.95zm-8.06.793-2.351.461s-.365.064-.606.428c-.192.286-.124.616-.124.616l3.082 14.66V1.566ZM2.843 4.907v.001L.52 5.752s-.308.106-.445.452c-.15.385-.03.634-.03.634L6.04 23.224h.86C6.559 21.8 2.843 4.907 2.843 4.907ZM23.31 12.63a.59.59 0 0 0-.417.175l-6.716 6.787a.976.976 0 0 0-.287.706c.004.267.11.515.303.7l1.084 1.046-7.668-.006.005-7.574 2.473 2.494a.592.592 0 0 0 .835.004.59.59 0 0 0 .004-.835l-3.2-3.227c-.246-.25-.562-.33-.843-.214-.282.116-.45.396-.45.747l-.006 8.794c0 .266.103.515.291.703a.986.986 0 0 0 .702.291l8.92.007v-.002c.354 0 .633-.168.747-.45.114-.283.03-.599-.224-.845l-1.708-1.647 6.578-6.648a.591.591 0 0 0-.005-.835.589.589 0 0 0-.418-.17z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiCardmarket as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiFoloProps = 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 = '#FF5C00';
|
|
22
|
+
|
|
23
|
+
const SiFolo: IconType = React.forwardRef<SVGSVGElement, SiFoloProps>(function SiFolo({title = 'Folo', 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='M5.382 0h13.236A5.37 5.37 0 0 1 24 5.383v13.235A5.37 5.37 0 0 1 18.618 24H5.382A5.37 5.37 0 0 1 0 18.618V5.383A5.37 5.37 0 0 1 5.382.001Zm7.887 17.31a1.813 1.813 0 1 0-3.626.002 1.813 1.813 0 0 0 3.626-.002m-.535-6.527H7.213a1.813 1.813 0 1 0 0 3.624h5.521a1.813 1.813 0 1 0 0-3.624m4.417-4.712H8.87a1.813 1.813 0 1 0 0 3.625h8.283a1.813 1.813 0 1 0 0-3.624z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiFolo as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiModelcontextprotocolProps = 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 SiModelcontextprotocol: IconType = React.forwardRef<SVGSVGElement, SiModelcontextprotocolProps>(function SiModelcontextprotocol({title = 'Model Context Protocol', 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='M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiModelcontextprotocol as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiPaybackProps = 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 = '#003EB0';
|
|
22
|
+
|
|
23
|
+
const SiPayback: IconType = React.forwardRef<SVGSVGElement, SiPaybackProps>(function SiPayback({title = 'PAYBACK', 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.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiPayback as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiRollbarProps = 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 = '#3569F3';
|
|
22
|
+
|
|
23
|
+
const SiRollbar: IconType = React.forwardRef<SVGSVGElement, SiRollbarProps>(function SiRollbar({title = 'Rollbar', 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='M24 2.5795c-.0019-.1956-.1152-.5064-.484-.584-.0578-.0162-.1178-.0113-.177-.0104-.3082.0276-4.3793.4162-8.9551 2.4569-2.7478 1.2221-4.8747 3.0984-6.213 5.376l-.3449.1494C2.9271 12.1542 0 16.4046 0 21.338v.0828c0 .3392.2786.5955.5967.5955h16.2625c.1045 0 .2506-.0351.3748-.1391l6.5533-5.5255a.5932.5932 0 0 0 .2116-.4598V2.5795Zm-6.5544 17.5582V8.382l5.3622-4.5195v11.7557ZM7.3684 16.4908h8.885v4.3333H2.227ZM14.868 5.532a30.7234 30.7234 0 0 1 6.5315-2.043L16.6063 7.53a30.4061 30.4061 0 0 0-6.489 1.528c1.1866-1.4487 2.787-2.6501 4.7506-3.5262ZM8.978 10.7722a30.7706 30.7706 0 0 1 7.2753-1.9947v6.5211h-8.494a10.5382 10.5382 0 0 1 1.2187-4.5264zm-1.636.7611a11.8074 11.8074 0 0 0-.7887 4.0826l-5.2886 4.4632c.4-3.6262 2.5535-6.6591 6.0773-8.5458z' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiRollbar as default, defaultColor };
|
|
45
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import { IconType } from '../types';
|
|
5
|
+
|
|
6
|
+
type SiTokioProps = 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 SiTokio: IconType = React.forwardRef<SVGSVGElement, SiTokioProps>(function SiTokio({title = 'Tokio', 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='m6.314 1.326-.691.403.201.345L9.65 8.641l.069.117a4 4 0 0 0-.992.988L6.379 8.391l-.338-.194-.4.692.338.195 2.355 1.36a4 4 0 0 0-.312 1.198H.4l-.4.001v.8h8.021a4 4 0 0 0 .313 1.2l-2.356 1.359-.337.195.4.692.338-.193 2.347-1.358a4 4 0 0 0 .834.873l-.086.148-3.826 6.567-.2.346.69.402.202-.344 3.826-6.568.074-.127a4 4 0 0 0 1.36.387v3.021h.8v-3.021a4 4 0 0 0 1.409-.413l.066.114 3.826 6.568.201.346.692-.405-.201-.345-3.827-6.567-.084-.142a4 4 0 0 0 .791-.84l2.348 1.357.338.194.4-.692-.337-.195-2.356-1.36a4 4 0 0 0 .313-1.198H24v-.801h-8.021a4 4 0 0 0-.313-1.2l2.356-1.359.337-.195-.4-.692-.338.194-2.348 1.355a4 4 0 0 0-1.015-1.004l.058-.101 3.827-6.567.2-.345-.69-.403-.202.344-3.826 6.568-.068.12a4 4 0 0 0-1.157-.294V5.043h-.8v3.021a4 4 0 0 0-1.182.305l-.076-.13L6.516 1.67ZM12 3.043a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .602-.6.6.6 0 0 0-.602-.6M12 8.888a3.153 3.153 0 1 1 0 6.307 3.153 3.153 0 1 1 0-6.307m0 2.555a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.599.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.601.6.6 0 0 0 .6-.602.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.602.6.6 0 0 0 .602-.602.6.6 0 0 0-.602-.6M12 19.845a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6' />
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { SiTokio as default, defaultColor };
|
|
45
|
+
|