@icons-pack/react-simple-icons 13.11.2 → 13.12.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.
Files changed (61) hide show
  1. package/README.md +1 -1
  2. package/icons/SiBaseui.cjs +51 -0
  3. package/icons/SiBaseui.d.ts +4 -0
  4. package/icons/SiBaseui.mjs +27 -0
  5. package/icons/SiGhostfolio.cjs +51 -0
  6. package/icons/SiGhostfolio.d.ts +4 -0
  7. package/icons/SiGhostfolio.mjs +27 -0
  8. package/icons/SiIndieweb.cjs +51 -0
  9. package/icons/SiIndieweb.d.ts +4 -0
  10. package/icons/SiIndieweb.mjs +27 -0
  11. package/icons/SiKarakeep.cjs +51 -0
  12. package/icons/SiKarakeep.d.ts +4 -0
  13. package/icons/SiKarakeep.mjs +27 -0
  14. package/icons/SiLinkvertise.cjs +51 -0
  15. package/icons/SiLinkvertise.d.ts +4 -0
  16. package/icons/SiLinkvertise.mjs +27 -0
  17. package/icons/SiLoops.cjs +51 -0
  18. package/icons/SiLoops.d.ts +4 -0
  19. package/icons/SiLoops.mjs +27 -0
  20. package/icons/SiOrchardcore.cjs +51 -0
  21. package/icons/SiOrchardcore.d.ts +4 -0
  22. package/icons/SiOrchardcore.mjs +27 -0
  23. package/icons/SiPangolin.cjs +51 -0
  24. package/icons/SiPangolin.d.ts +4 -0
  25. package/icons/SiPangolin.mjs +27 -0
  26. package/icons/SiSolveddotac.cjs +51 -0
  27. package/icons/SiSolveddotac.d.ts +4 -0
  28. package/icons/SiSolveddotac.mjs +27 -0
  29. package/icons/SiSupercell.cjs +51 -0
  30. package/icons/SiSupercell.d.ts +4 -0
  31. package/icons/SiSupercell.mjs +27 -0
  32. package/icons/SiTarteaucitron.cjs +51 -0
  33. package/icons/SiTarteaucitron.d.ts +4 -0
  34. package/icons/SiTarteaucitron.mjs +27 -0
  35. package/icons/SiTidb.cjs +51 -0
  36. package/icons/SiTidb.d.ts +4 -0
  37. package/icons/SiTidb.mjs +27 -0
  38. package/icons/SiTrezor.cjs +51 -0
  39. package/icons/SiTrezor.d.ts +4 -0
  40. package/icons/SiTrezor.mjs +27 -0
  41. package/icons/SiYew.cjs +51 -0
  42. package/icons/SiYew.d.ts +4 -0
  43. package/icons/SiYew.mjs +27 -0
  44. package/index.cjs +42 -0
  45. package/index.d.ts +14 -0
  46. package/index.mjs +14 -0
  47. package/package.json +2 -2
  48. package/src/icons/SiBaseui.tsx +45 -0
  49. package/src/icons/SiGhostfolio.tsx +45 -0
  50. package/src/icons/SiIndieweb.tsx +45 -0
  51. package/src/icons/SiKarakeep.tsx +45 -0
  52. package/src/icons/SiLinkvertise.tsx +45 -0
  53. package/src/icons/SiLoops.tsx +45 -0
  54. package/src/icons/SiOrchardcore.tsx +45 -0
  55. package/src/icons/SiPangolin.tsx +45 -0
  56. package/src/icons/SiSolveddotac.tsx +45 -0
  57. package/src/icons/SiSupercell.tsx +45 -0
  58. package/src/icons/SiTarteaucitron.tsx +45 -0
  59. package/src/icons/SiTidb.tsx +45 -0
  60. package/src/icons/SiTrezor.tsx +45 -0
  61. package/src/icons/SiYew.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 16.8.0](https://github.com/simple-icons/simple-icons/releases/tag/16.8.0)
6
+ This package provides the [Simple Icons 16.10.0](https://github.com/simple-icons/simple-icons/releases/tag/16.10.0)
7
7
  packaged as a set of [React](https://facebook.github.io/react/) components.
8
8
 
9
9
  [![www.npmjs.com!](https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square)](https://www.npmjs.com/package/@icons-pack/react-simple-icons)
@@ -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 = "#EDEDED";
28
+ const SiBaseui = React__namespace.forwardRef(function SiBaseui2({ title = "Base UI", 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.082 6.562a.52.52 0 0 0-.546.529V24a8.727 8.727 0 0 0 .546-17.438M11.446 9.6V24c-4.82 0-8.728-4.298-8.728-9.6V0c4.82 0 8.728 4.298 8.728 9.6Z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiBaseui;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#EDEDED";
3
+ declare const SiBaseui: IconType;
4
+ export { SiBaseui as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#EDEDED";
5
+ const SiBaseui = React.forwardRef(function SiBaseui2({ title = "Base UI", 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.082 6.562a.52.52 0 0 0-.546.529V24a8.727 8.727 0 0 0 .546-17.438M11.446 9.6V24c-4.82 0-8.728-4.298-8.728-9.6V0c4.82 0 8.728 4.298 8.728 9.6Z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiBaseui 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 = "#36CFCC";
28
+ const SiGhostfolio = React__namespace.forwardRef(function SiGhostfolio2({ title = "Ghostfolio", 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: "M11.983 0a9.375 9.375 0 0 0-9.358 9.375v13.062a.781.781 0 0 0 1.334.553l1.791-1.844 2.573 2.625c.305.305.8.305 1.105 0L12 21.146l2.573 2.625c.305.305.8.305 1.105 0l2.572-2.625 1.792 1.844a.781.781 0 0 0 1.333-.553V9.455c0-5.166-4.226-9.464-9.392-9.455m-3.89 12.5a2.346 2.346 0 0 1-2.343-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.344 2.344A2.346 2.346 0 0 1 8.094 12.5m7.814 0a2.346 2.346 0 0 1-2.344-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.343 2.344 2.346 2.346 0 0 1-2.343 2.344" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiGhostfolio;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#36CFCC";
3
+ declare const SiGhostfolio: IconType;
4
+ export { SiGhostfolio as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#36CFCC";
5
+ const SiGhostfolio = React.forwardRef(function SiGhostfolio2({ title = "Ghostfolio", 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: "M11.983 0a9.375 9.375 0 0 0-9.358 9.375v13.062a.781.781 0 0 0 1.334.553l1.791-1.844 2.573 2.625c.305.305.8.305 1.105 0L12 21.146l2.573 2.625c.305.305.8.305 1.105 0l2.572-2.625 1.792 1.844a.781.781 0 0 0 1.333-.553V9.455c0-5.166-4.226-9.464-9.392-9.455m-3.89 12.5a2.346 2.346 0 0 1-2.343-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.344 2.344A2.346 2.346 0 0 1 8.094 12.5m7.814 0a2.346 2.346 0 0 1-2.344-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.343 2.344 2.346 2.346 0 0 1-2.343 2.344" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiGhostfolio 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 = "#FF0000";
28
+ const SiIndieweb = React__namespace.forwardRef(function SiIndieweb2({ title = "IndieWeb", 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: "M20.387 8.258A3.643 3.643 0 0 1 24 11.54h-3.613a.35.35 0 0 0-.348.348c.009.182.13.32.312.346l.036.002H24c-.178 1.872-1.75 3.258-3.613 3.282a3.63 3.63 0 1 1 0-7.26m-9.938.247 3.359 7.237 3.39-7.237zm-2.941 0 3.359 7.237 1.099-2.283-2.338-4.954zM0 11.083h6.78v4.125H0zm0-2.578h6.78v1.897H0z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiIndieweb;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FF0000";
3
+ declare const SiIndieweb: IconType;
4
+ export { SiIndieweb as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#FF0000";
5
+ const SiIndieweb = React.forwardRef(function SiIndieweb2({ title = "IndieWeb", 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: "M20.387 8.258A3.643 3.643 0 0 1 24 11.54h-3.613a.35.35 0 0 0-.348.348c.009.182.13.32.312.346l.036.002H24c-.178 1.872-1.75 3.258-3.613 3.282a3.63 3.63 0 1 1 0-7.26m-9.938.247 3.359 7.237 3.39-7.237zm-2.941 0 3.359 7.237 1.099-2.283-2.338-4.954zM0 11.083h6.78v4.125H0zm0-2.578h6.78v1.897H0z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiIndieweb 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 SiKarakeep = React__namespace.forwardRef(function SiKarakeep2({ title = "Karakeep", 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: "M22.582.054H1.418C.635.054 0 .69 0 1.472v21.056c0 .783.635 1.418 1.418 1.418h21.164c.783 0 1.418-.635 1.418-1.418V1.472C24 .69 23.365.054 22.582.054M10.487 20.437a.37.37 0 0 1-.37.37H3.592a.37.37 0 0 1-.37-.37V3.485a.37.37 0 0 1 .37-.37h6.422a.37.37 0 0 1 .37.37v6.452s-.035 2.776.103 4.955zm10.188 0a.371.371 0 0 1-.575.31l-2.975-1.945a.37.37 0 0 0-.42.01l-2.608 1.887a.36.36 0 0 1-.345.042.37.37 0 0 1-.159-.302V7.274c.353-.07.746-.106 1.2-.106 2.229 0 5.882 1.257 5.882 4.81z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiKarakeep;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#000000";
3
+ declare const SiKarakeep: IconType;
4
+ export { SiKarakeep as default, 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 SiKarakeep = React.forwardRef(function SiKarakeep2({ title = "Karakeep", 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: "M22.582.054H1.418C.635.054 0 .69 0 1.472v21.056c0 .783.635 1.418 1.418 1.418h21.164c.783 0 1.418-.635 1.418-1.418V1.472C24 .69 23.365.054 22.582.054M10.487 20.437a.37.37 0 0 1-.37.37H3.592a.37.37 0 0 1-.37-.37V3.485a.37.37 0 0 1 .37-.37h6.422a.37.37 0 0 1 .37.37v6.452s-.035 2.776.103 4.955zm10.188 0a.371.371 0 0 1-.575.31l-2.975-1.945a.37.37 0 0 0-.42.01l-2.608 1.887a.36.36 0 0 1-.345.042.37.37 0 0 1-.159-.302V7.274c.353-.07.746-.106 1.2-.106 2.229 0 5.882 1.257 5.882 4.81z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiKarakeep 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 = "#FF8114";
28
+ const SiLinkvertise = React__namespace.forwardRef(function SiLinkvertise2({ title = "Linkvertise", 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: "M7.876 23.998c-.008.006.009-.003.028-.011a606 606 0 0 1 3.027-1.48.6.6 0 0 1 .25-.056q3.705-.004 7.412-.003c.178 0 .36-.01.535-.039a4.1 4.1 0 0 0 3.475-4.064l.002-7.571c0-.1.026-.207.07-.3.25-.53.512-1.06.771-1.588.156-.322.312-.643.476-.985zM.078 16.021l.016.011A45293 45293 0 0 1 16.001.025L15.98 0l-.123.056c-.807.394-1.612.794-2.422 1.183a.8.8 0 0 1-.331.078c-2.453.006-4.906.003-7.362.006q-.368-.001-.732.056a4.096 4.096 0 0 0-3.44 4.055q0 3.68-.003 7.357c0 .092-.022.19-.064.274q-.636 1.317-1.28 2.634zm11.12-6.344c.276 0 .524-.03.763.006 1.056.162 1.802.747 2.175 1.748.379 1.015.195 1.966-.524 2.778-.45.506-.952.967-1.43 1.448q-1.192 1.197-2.384 2.389l-4.096 4.109c-.022.022-.042.047-.072.08.036.004.056.006.075.01.79 0 1.582.002 2.37-.004.052 0 .12-.036.158-.075q1.705-1.699 3.405-3.401 1.543-1.55 3.091-3.1c.922-.92 1.387-2.03 1.384-3.339-.003-1.936-1.309-3.709-3.152-4.274-.086-.025-.142-.017-.209.05-.487.496-.98.988-1.47 1.483-.025.025-.045.05-.084.092m1.74 4.459q-.003-.016-.008-.031c-.247 0-.5.025-.743-.006-1.309-.165-2.333-1.334-2.342-2.662-.002-.772.26-1.438.802-1.986.888-.898 1.782-1.79 2.673-2.685l4.761-4.789c.031-.03.056-.061.103-.117h-.172c-.727 0-1.456.003-2.183-.003a.36.36 0 0 0-.273.115q-3.083 3.105-6.17 6.209c-.83.836-1.261 1.852-1.323 3.024a4.35 4.35 0 0 0 .452 2.17c.57 1.158 1.478 1.935 2.7 2.335.048.017.131.009.165-.022.526-.512 1.041-1.032 1.559-1.552zm-11.34 4.416c.044-.039.075-.064.103-.092 1.949-1.958 3.895-3.919 5.847-5.877.07-.07.092-.134.07-.23a4.9 4.9 0 0 1 0-1.94c.038-.196.091-.392.141-.601-.025.022-.036.03-.05.041a6082 6082 0 0 0-6.047 6.081.27.27 0 0 0-.07.174c-.005.777-.003 1.555-.003 2.33 0 .03.003.064.009.114m14.849-4.632.07-.067c1.792-1.801 3.588-3.602 5.379-5.406a.28.28 0 0 0 .072-.185c.006-.76.003-1.522.003-2.28 0-.033-.006-.07-.009-.125l-.114.109-3.088 3.102q-1.067 1.073-2.135 2.142c-.059.056-.078.106-.064.196q.064.364.086.733a5.6 5.6 0 0 1-.2 1.781" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiLinkvertise;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FF8114";
3
+ declare const SiLinkvertise: IconType;
4
+ export { SiLinkvertise as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#FF8114";
5
+ const SiLinkvertise = React.forwardRef(function SiLinkvertise2({ title = "Linkvertise", 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: "M7.876 23.998c-.008.006.009-.003.028-.011a606 606 0 0 1 3.027-1.48.6.6 0 0 1 .25-.056q3.705-.004 7.412-.003c.178 0 .36-.01.535-.039a4.1 4.1 0 0 0 3.475-4.064l.002-7.571c0-.1.026-.207.07-.3.25-.53.512-1.06.771-1.588.156-.322.312-.643.476-.985zM.078 16.021l.016.011A45293 45293 0 0 1 16.001.025L15.98 0l-.123.056c-.807.394-1.612.794-2.422 1.183a.8.8 0 0 1-.331.078c-2.453.006-4.906.003-7.362.006q-.368-.001-.732.056a4.096 4.096 0 0 0-3.44 4.055q0 3.68-.003 7.357c0 .092-.022.19-.064.274q-.636 1.317-1.28 2.634zm11.12-6.344c.276 0 .524-.03.763.006 1.056.162 1.802.747 2.175 1.748.379 1.015.195 1.966-.524 2.778-.45.506-.952.967-1.43 1.448q-1.192 1.197-2.384 2.389l-4.096 4.109c-.022.022-.042.047-.072.08.036.004.056.006.075.01.79 0 1.582.002 2.37-.004.052 0 .12-.036.158-.075q1.705-1.699 3.405-3.401 1.543-1.55 3.091-3.1c.922-.92 1.387-2.03 1.384-3.339-.003-1.936-1.309-3.709-3.152-4.274-.086-.025-.142-.017-.209.05-.487.496-.98.988-1.47 1.483-.025.025-.045.05-.084.092m1.74 4.459q-.003-.016-.008-.031c-.247 0-.5.025-.743-.006-1.309-.165-2.333-1.334-2.342-2.662-.002-.772.26-1.438.802-1.986.888-.898 1.782-1.79 2.673-2.685l4.761-4.789c.031-.03.056-.061.103-.117h-.172c-.727 0-1.456.003-2.183-.003a.36.36 0 0 0-.273.115q-3.083 3.105-6.17 6.209c-.83.836-1.261 1.852-1.323 3.024a4.35 4.35 0 0 0 .452 2.17c.57 1.158 1.478 1.935 2.7 2.335.048.017.131.009.165-.022.526-.512 1.041-1.032 1.559-1.552zm-11.34 4.416c.044-.039.075-.064.103-.092 1.949-1.958 3.895-3.919 5.847-5.877.07-.07.092-.134.07-.23a4.9 4.9 0 0 1 0-1.94c.038-.196.091-.392.141-.601-.025.022-.036.03-.05.041a6082 6082 0 0 0-6.047 6.081.27.27 0 0 0-.07.174c-.005.777-.003 1.555-.003 2.33 0 .03.003.064.009.114m14.849-4.632.07-.067c1.792-1.801 3.588-3.602 5.379-5.406a.28.28 0 0 0 .072-.185c.006-.76.003-1.522.003-2.28 0-.033-.006-.07-.009-.125l-.114.109-3.088 3.102q-1.067 1.073-2.135 2.142c-.059.056-.078.106-.064.196q.064.364.086.733a5.6 5.6 0 0 1-.2 1.781" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiLinkvertise 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 = "#FC5200";
28
+ const SiLoops = React__namespace.forwardRef(function SiLoops2({ title = "Loops", 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.608 1.622h-3.231A10.39 10.39 0 0 0 0 12.002a10.39 10.39 0 0 0 10.377 10.376h3.243A10.39 10.39 0 0 0 24 12.001 10.39 10.39 0 0 0 13.608 1.622M1.284 12a9.085 9.085 0 0 1 10.6-8.96 9.044 9.044 0 0 1 7.568 8.955 5.85 5.85 0 0 1-4.87 5.756 7.12 7.12 0 0 0 2.923-5.756 7.121 7.121 0 0 0-12.17-5.038 7.14 7.14 0 0 0-2.087 5.038 10.35 10.35 0 0 0 4.83 8.783A9.1 9.1 0 0 1 1.291 12zm10.704-5.606A5.83 5.83 0 0 1 16.204 12a5.83 5.83 0 0 1-4.216 5.603A5.83 5.83 0 0 1 7.772 12a5.83 5.83 0 0 1 4.216-5.606m1.62 14.686h-.036a9 9 0 0 1-1.474-.125 9.04 9.04 0 0 1-7.558-8.651V12a5.844 5.844 0 0 1 4.87-5.756A7.12 7.12 0 0 0 6.485 12a7.12 7.12 0 0 0 5.35 6.907A7.143 7.143 0 0 0 20.756 12a10.34 10.34 0 0 0-4.828-8.784A9.086 9.086 0 0 1 22.702 12a9.086 9.086 0 0 1-9.092 9.08" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiLoops;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FC5200";
3
+ declare const SiLoops: IconType;
4
+ export { SiLoops as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#FC5200";
5
+ const SiLoops = React.forwardRef(function SiLoops2({ title = "Loops", 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.608 1.622h-3.231A10.39 10.39 0 0 0 0 12.002a10.39 10.39 0 0 0 10.377 10.376h3.243A10.39 10.39 0 0 0 24 12.001 10.39 10.39 0 0 0 13.608 1.622M1.284 12a9.085 9.085 0 0 1 10.6-8.96 9.044 9.044 0 0 1 7.568 8.955 5.85 5.85 0 0 1-4.87 5.756 7.12 7.12 0 0 0 2.923-5.756 7.121 7.121 0 0 0-12.17-5.038 7.14 7.14 0 0 0-2.087 5.038 10.35 10.35 0 0 0 4.83 8.783A9.1 9.1 0 0 1 1.291 12zm10.704-5.606A5.83 5.83 0 0 1 16.204 12a5.83 5.83 0 0 1-4.216 5.603A5.83 5.83 0 0 1 7.772 12a5.83 5.83 0 0 1 4.216-5.606m1.62 14.686h-.036a9 9 0 0 1-1.474-.125 9.04 9.04 0 0 1-7.558-8.651V12a5.844 5.844 0 0 1 4.87-5.756A7.12 7.12 0 0 0 6.485 12a7.12 7.12 0 0 0 5.35 6.907A7.143 7.143 0 0 0 20.756 12a10.34 10.34 0 0 0-4.828-8.784A9.086 9.086 0 0 1 22.702 12a9.086 9.086 0 0 1-9.092 9.08" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiLoops 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 = "#41B670";
28
+ const SiOrchardcore = React__namespace.forwardRef(function SiOrchardcore2({ title = "Orchard Core", 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: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.629 0 12 0m0 21.69c-5.352 0-9.692-4.338-9.692-9.692 0-5.352 4.338-9.691 9.692-9.691 5.352 0 9.692 4.338 9.692 9.691A9.69 9.69 0 0 1 12 21.69m5.778-3.964a7.996 7.996 0 0 1 0-11.305 7.993 7.993 0 0 1 0 11.305m-3.212-3.211A7.994 7.994 0 0 1 6.572 6.52a7.996 7.996 0 0 1 7.994 7.994m-8.13 3.242a7.996 7.996 0 0 1 11.306 0 7.996 7.996 0 0 1-11.305 0" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiOrchardcore;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#41B670";
3
+ declare const SiOrchardcore: IconType;
4
+ export { SiOrchardcore as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#41B670";
5
+ const SiOrchardcore = React.forwardRef(function SiOrchardcore2({ title = "Orchard Core", 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: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.629 0 12 0m0 21.69c-5.352 0-9.692-4.338-9.692-9.692 0-5.352 4.338-9.691 9.692-9.691 5.352 0 9.692 4.338 9.692 9.691A9.69 9.69 0 0 1 12 21.69m5.778-3.964a7.996 7.996 0 0 1 0-11.305 7.993 7.993 0 0 1 0 11.305m-3.212-3.211A7.994 7.994 0 0 1 6.572 6.52a7.996 7.996 0 0 1 7.994 7.994m-8.13 3.242a7.996 7.996 0 0 1 11.306 0 7.996 7.996 0 0 1-11.305 0" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiOrchardcore as default, defaultColor };