@icons-pack/react-simple-icons 13.11.2 → 13.13.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 (85) 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/SiCline.cjs +51 -0
  6. package/icons/SiCline.d.ts +4 -0
  7. package/icons/SiCline.mjs +27 -0
  8. package/icons/SiContensis.cjs +51 -0
  9. package/icons/SiContensis.d.ts +4 -0
  10. package/icons/SiContensis.mjs +27 -0
  11. package/icons/SiDicebear.cjs +51 -0
  12. package/icons/SiDicebear.d.ts +4 -0
  13. package/icons/SiDicebear.mjs +27 -0
  14. package/icons/SiDlthub.cjs +51 -0
  15. package/icons/SiDlthub.d.ts +4 -0
  16. package/icons/SiDlthub.mjs +27 -0
  17. package/icons/SiGhostfolio.cjs +51 -0
  18. package/icons/SiGhostfolio.d.ts +4 -0
  19. package/icons/SiGhostfolio.mjs +27 -0
  20. package/icons/SiIndieweb.cjs +51 -0
  21. package/icons/SiIndieweb.d.ts +4 -0
  22. package/icons/SiIndieweb.mjs +27 -0
  23. package/icons/SiKarakeep.cjs +51 -0
  24. package/icons/SiKarakeep.d.ts +4 -0
  25. package/icons/SiKarakeep.mjs +27 -0
  26. package/icons/SiLinkvertise.cjs +51 -0
  27. package/icons/SiLinkvertise.d.ts +4 -0
  28. package/icons/SiLinkvertise.mjs +27 -0
  29. package/icons/SiLonghorn.cjs +51 -0
  30. package/icons/SiLonghorn.d.ts +4 -0
  31. package/icons/SiLonghorn.mjs +27 -0
  32. package/icons/SiLoops.cjs +51 -0
  33. package/icons/SiLoops.d.ts +4 -0
  34. package/icons/SiLoops.mjs +27 -0
  35. package/icons/SiOrchardcore.cjs +51 -0
  36. package/icons/SiOrchardcore.d.ts +4 -0
  37. package/icons/SiOrchardcore.mjs +27 -0
  38. package/icons/SiPangolin.cjs +51 -0
  39. package/icons/SiPangolin.d.ts +4 -0
  40. package/icons/SiPangolin.mjs +27 -0
  41. package/icons/SiSolveddotac.cjs +51 -0
  42. package/icons/SiSolveddotac.d.ts +4 -0
  43. package/icons/SiSolveddotac.mjs +27 -0
  44. package/icons/SiSupercell.cjs +51 -0
  45. package/icons/SiSupercell.d.ts +4 -0
  46. package/icons/SiSupercell.mjs +27 -0
  47. package/icons/SiTarteaucitron.cjs +51 -0
  48. package/icons/SiTarteaucitron.d.ts +4 -0
  49. package/icons/SiTarteaucitron.mjs +27 -0
  50. package/icons/SiTidb.cjs +51 -0
  51. package/icons/SiTidb.d.ts +4 -0
  52. package/icons/SiTidb.mjs +27 -0
  53. package/icons/SiTrezor.cjs +51 -0
  54. package/icons/SiTrezor.d.ts +4 -0
  55. package/icons/SiTrezor.mjs +27 -0
  56. package/icons/SiVencord.cjs +2 -2
  57. package/icons/SiVencord.d.ts +1 -1
  58. package/icons/SiVencord.mjs +2 -2
  59. package/icons/SiYew.cjs +51 -0
  60. package/icons/SiYew.d.ts +4 -0
  61. package/icons/SiYew.mjs +27 -0
  62. package/index.cjs +57 -0
  63. package/index.d.ts +19 -0
  64. package/index.mjs +19 -0
  65. package/package.json +2 -2
  66. package/src/icons/SiBaseui.tsx +45 -0
  67. package/src/icons/SiCline.tsx +45 -0
  68. package/src/icons/SiContensis.tsx +45 -0
  69. package/src/icons/SiDicebear.tsx +45 -0
  70. package/src/icons/SiDlthub.tsx +45 -0
  71. package/src/icons/SiGhostfolio.tsx +45 -0
  72. package/src/icons/SiIndieweb.tsx +45 -0
  73. package/src/icons/SiKarakeep.tsx +45 -0
  74. package/src/icons/SiLinkvertise.tsx +45 -0
  75. package/src/icons/SiLonghorn.tsx +45 -0
  76. package/src/icons/SiLoops.tsx +45 -0
  77. package/src/icons/SiOrchardcore.tsx +45 -0
  78. package/src/icons/SiPangolin.tsx +45 -0
  79. package/src/icons/SiSolveddotac.tsx +45 -0
  80. package/src/icons/SiSupercell.tsx +45 -0
  81. package/src/icons/SiTarteaucitron.tsx +45 -0
  82. package/src/icons/SiTidb.tsx +45 -0
  83. package/src/icons/SiTrezor.tsx +45 -0
  84. package/src/icons/SiVencord.tsx +2 -2
  85. package/src/icons/SiYew.tsx +45 -0
@@ -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 = "#5F224B";
28
+ const SiLonghorn = React__namespace.forwardRef(function SiLonghorn2({ title = "Longhorn", 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: "M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54m.427 5.138-.31 2.1a1.24 1.24 0 0 1-.98 1.032l-5.024 1.003-.002.015-.787 4.306a2.474 2.474 0 0 1-2.467 2.34h-.634a2.474 2.474 0 0 1-2.468-2.355l-.697-4.288-5.115-1.021a1.24 1.24 0 0 1-.98-1.032l-.31-2.1a1.235 1.235 0 0 1 2.445-.36L4.74 8.19 12 9.639l7.26-1.45.182-1.24a1.235 1.235 0 0 1 2.445.36M12 12.134a1.2 1.2 0 0 1-.242-.024l-.653-.13.562 3.457a1 1 0 0 1 .016.198h.634a1.2 1.2 0 0 1 .02-.222l.63-3.448-.725.145a1.2 1.2 0 0 1-.242.024" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiLonghorn;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#5F224B";
3
+ declare const SiLonghorn: IconType;
4
+ export { SiLonghorn 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 = "#5F224B";
5
+ const SiLonghorn = React.forwardRef(function SiLonghorn2({ title = "Longhorn", 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: "M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54m.427 5.138-.31 2.1a1.24 1.24 0 0 1-.98 1.032l-5.024 1.003-.002.015-.787 4.306a2.474 2.474 0 0 1-2.467 2.34h-.634a2.474 2.474 0 0 1-2.468-2.355l-.697-4.288-5.115-1.021a1.24 1.24 0 0 1-.98-1.032l-.31-2.1a1.235 1.235 0 0 1 2.445-.36L4.74 8.19 12 9.639l7.26-1.45.182-1.24a1.235 1.235 0 0 1 2.445.36M12 12.134a1.2 1.2 0 0 1-.242-.024l-.653-.13.562 3.457a1 1 0 0 1 .016.198h.634a1.2 1.2 0 0 1 .02-.222l.63-3.448-.725.145a1.2 1.2 0 0 1-.242.024" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiLonghorn 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 };
@@ -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 = "#F36118";
28
+ const SiPangolin = React__namespace.forwardRef(function SiPangolin2({ title = "Pangolin", 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: "M19.729 7.988a.852.852 0 1 1 0 1.705.85.85 0 0 1 0-1.701m3.345 3.557c-.087 2.835-2.249 6.577-5.178 7.537-3.425 1.123-6.022-.563-6.846-2.54-.642-1.542-.159-3.383 1.04-4.162 1.013-.661 2.895-.831 4.479.208-.556-1.459-2.053-2.419-3.38-2.706a5.67 5.67 0 0 0-3.681.54c1.263-1.398 4.218-2.748 7.431-1.043 2.155 1.145 3.081 2.748 3.996 4.914C23.33 10.63 21.66 6.219 18.75 3.6A14.44 14.44 0 0 0 8.71.009c1.013.627 2.2 1.52 3.3 2.562-4.853-.6-8.856.503-11.328 3.867a21.6 21.6 0 0 1 5.02-.355C2.164 8.578.107 12.766 1.154 17.139a20.2 20.2 0 0 1 2.73-3.666c-.353 3.262.136 7.673 4.33 10.527a19 19 0 0 1-.465-3.137c1.962 1.534 4.812 2.797 8.35 1.924 6.245-1.543 7.915-7.58 6.974-11.242" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiPangolin;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#F36118";
3
+ declare const SiPangolin: IconType;
4
+ export { SiPangolin 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 = "#F36118";
5
+ const SiPangolin = React.forwardRef(function SiPangolin2({ title = "Pangolin", 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: "M19.729 7.988a.852.852 0 1 1 0 1.705.85.85 0 0 1 0-1.701m3.345 3.557c-.087 2.835-2.249 6.577-5.178 7.537-3.425 1.123-6.022-.563-6.846-2.54-.642-1.542-.159-3.383 1.04-4.162 1.013-.661 2.895-.831 4.479.208-.556-1.459-2.053-2.419-3.38-2.706a5.67 5.67 0 0 0-3.681.54c1.263-1.398 4.218-2.748 7.431-1.043 2.155 1.145 3.081 2.748 3.996 4.914C23.33 10.63 21.66 6.219 18.75 3.6A14.44 14.44 0 0 0 8.71.009c1.013.627 2.2 1.52 3.3 2.562-4.853-.6-8.856.503-11.328 3.867a21.6 21.6 0 0 1 5.02-.355C2.164 8.578.107 12.766 1.154 17.139a20.2 20.2 0 0 1 2.73-3.666c-.353 3.262.136 7.673 4.33 10.527a19 19 0 0 1-.465-3.137c1.962 1.534 4.812 2.797 8.35 1.924 6.245-1.543 7.915-7.58 6.974-11.242" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiPangolin 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 = "#17CE3A";
28
+ const SiSolveddotac = React__namespace.forwardRef(function SiSolveddotac2({ title = "solved.ac", 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: "M2.452 5.44A2.446 2.446 0 0 0 0 7.892v8.216a2.446 2.446 0 0 0 2.452 2.452h19.096A2.446 2.446 0 0 0 24 16.108V7.892a2.446 2.446 0 0 0-2.452-2.452zM15.73 8.9c.964 0 1.616.257 2.149.651a.7.7 0 0 1 .275.56.69.69 0 0 1-.698.689.74.74 0 0 1-.422-.137c-.395-.295-.809-.46-1.314-.46-1.083 0-1.863.9-1.863 2.002v.019c0 1.102.762 2.02 1.861 2.02.597 0 .993-.184 1.396-.506a.655.655 0 1 1 .845 1.001c-.578.505-1.258.808-2.286.808-1.89 0-3.295-1.458-3.295-3.305v-.018c0-1.828 1.377-3.325 3.352-3.325m-6.98.008h.084c.385 0 .661.212.817.56l2.24 5.061a.7.7 0 0 1 .074.284.67.67 0 0 1-.668.68c-.33 0-.551-.193-.68-.487l-.431-1.01H7.358l-.45 1.056a.695.695 0 0 1-.652.441.65.65 0 0 1-.652-.661.75.75 0 0 1 .08-.303l2.242-5.06c.154-.35.44-.56.826-.56m.02 1.718-.891 2.121H9.66z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiSolveddotac;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#17CE3A";
3
+ declare const SiSolveddotac: IconType;
4
+ export { SiSolveddotac 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 = "#17CE3A";
5
+ const SiSolveddotac = React.forwardRef(function SiSolveddotac2({ title = "solved.ac", 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: "M2.452 5.44A2.446 2.446 0 0 0 0 7.892v8.216a2.446 2.446 0 0 0 2.452 2.452h19.096A2.446 2.446 0 0 0 24 16.108V7.892a2.446 2.446 0 0 0-2.452-2.452zM15.73 8.9c.964 0 1.616.257 2.149.651a.7.7 0 0 1 .275.56.69.69 0 0 1-.698.689.74.74 0 0 1-.422-.137c-.395-.295-.809-.46-1.314-.46-1.083 0-1.863.9-1.863 2.002v.019c0 1.102.762 2.02 1.861 2.02.597 0 .993-.184 1.396-.506a.655.655 0 1 1 .845 1.001c-.578.505-1.258.808-2.286.808-1.89 0-3.295-1.458-3.295-3.305v-.018c0-1.828 1.377-3.325 3.352-3.325m-6.98.008h.084c.385 0 .661.212.817.56l2.24 5.061a.7.7 0 0 1 .074.284.67.67 0 0 1-.668.68c-.33 0-.551-.193-.68-.487l-.431-1.01H7.358l-.45 1.056a.695.695 0 0 1-.652.441.65.65 0 0 1-.652-.661.75.75 0 0 1 .08-.303l2.242-5.06c.154-.35.44-.56.826-.56m.02 1.718-.891 2.121H9.66z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiSolveddotac 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 = "#FFFFFF";
28
+ const SiSupercell = React__namespace.forwardRef(function SiSupercell2({ title = "Supercell", 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.997 21.76H0v-1.583h.673v-3.01H0v-1.592h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.15H3.134v.934h2.624v-1.296h1.92v2.14zm0-6.68H0V13.5h.673v-3.01H0V8.896h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.149H3.134v.934h2.624v-1.295h1.92v2.14zm-.51-6.65h-4.29l-.507-.54-.451.542H0V6.545h1.73v.534h3.232v-.903H1.116L0 5.15V3.625l1.28-1.378h3.854l.509.542.45-.542h1.24v1.887H5.6V3.6H2.674v.902h3.748l1.263 1.19v1.443zm16.83 13.33H16.31v-1.584h.672v-3.01h-.672v-1.592h3.805v1.592h-.672v3.01h2.636v-1.997h1.92v2.842zm-8.157 0H8.153v-1.583h.673v-3.01h-.673v-1.592h3.806v1.592h-.673v3.01h2.636V18.18h1.92v2.842zm7.452-6.68h-4.676l-1.615-1.581v-3.02l1.616-1.584h3.684l.459.575.45-.575H24V11.5h-1.92v-1.02h-3.24v3.02h3.24v-1.04h1.919v1.27zM21.555 3.829h-2.1v1.083h2.1zm1.476 2.157h-3.576v.853h.673v1.584h-3.806V6.839h.672v-3.01h-.672v-1.59h6.595l1.082 1.082v1.698zm-7.772-2.15v3.233l-1.37 1.362h-3.69L8.836 7.069V3.837h-.673V2.246h3.724v1.59h-.59v3.01h2.083v-3.01h-.509v-1.59h2.97v1.59zm-2.562 6.65h-1.41v1.026h1.41zm.681 4.593-.68-.68V12.47h-1.412v1.025h.5v1.583H8.154v-1.583h.673v-3.01h-.673v-1.59h6.078l1.026 1.025v1.28l-.911.68.91.69v1.148h.575v1.361z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiSupercell;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FFFFFF";
3
+ declare const SiSupercell: IconType;
4
+ export { SiSupercell 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 = "#FFFFFF";
5
+ const SiSupercell = React.forwardRef(function SiSupercell2({ title = "Supercell", 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.997 21.76H0v-1.583h.673v-3.01H0v-1.592h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.15H3.134v.934h2.624v-1.296h1.92v2.14zm0-6.68H0V13.5h.673v-3.01H0V8.896h6.997l.68.747v2.14H5.759v-1.296H3.134v.927h1.132v1.149H3.134v.934h2.624v-1.295h1.92v2.14zm-.51-6.65h-4.29l-.507-.54-.451.542H0V6.545h1.73v.534h3.232v-.903H1.116L0 5.15V3.625l1.28-1.378h3.854l.509.542.45-.542h1.24v1.887H5.6V3.6H2.674v.902h3.748l1.263 1.19v1.443zm16.83 13.33H16.31v-1.584h.672v-3.01h-.672v-1.592h3.805v1.592h-.672v3.01h2.636v-1.997h1.92v2.842zm-8.157 0H8.153v-1.583h.673v-3.01h-.673v-1.592h3.806v1.592h-.673v3.01h2.636V18.18h1.92v2.842zm7.452-6.68h-4.676l-1.615-1.581v-3.02l1.616-1.584h3.684l.459.575.45-.575H24V11.5h-1.92v-1.02h-3.24v3.02h3.24v-1.04h1.919v1.27zM21.555 3.829h-2.1v1.083h2.1zm1.476 2.157h-3.576v.853h.673v1.584h-3.806V6.839h.672v-3.01h-.672v-1.59h6.595l1.082 1.082v1.698zm-7.772-2.15v3.233l-1.37 1.362h-3.69L8.836 7.069V3.837h-.673V2.246h3.724v1.59h-.59v3.01h2.083v-3.01h-.509v-1.59h2.97v1.59zm-2.562 6.65h-1.41v1.026h1.41zm.681 4.593-.68-.68V12.47h-1.412v1.025h.5v1.583H8.154v-1.583h.673v-3.01h-.673v-1.59h6.078l1.026 1.025v1.28l-.911.68.91.69v1.148h.575v1.361z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiSupercell as default, defaultColor };