@icons-pack/react-simple-icons 12.3.0 → 12.4.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 CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # react-simple-icons
5
5
 
6
- This package provides the [Simple Icons 14.11.0](https://github.com/simple-icons/simple-icons/releases/tag/14.11.0)
6
+ This package provides the [Simple Icons 14.12.0](https://github.com/simple-icons/simple-icons/releases/tag/14.12.0)
7
7
  packaged as a set of [React](https://facebook.github.io/react/) components.
8
8
 
9
9
  <a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
@@ -0,0 +1,51 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const jsxRuntime = require('react/jsx-runtime');
6
+ const React = require('react');
7
+
8
+ function _interopNamespaceDefault(e) {
9
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
10
+ if (e) {
11
+ for (const k in e) {
12
+ if (k !== 'default') {
13
+ const d = Object.getOwnPropertyDescriptor(e, k);
14
+ Object.defineProperty(n, k, d.get ? d : {
15
+ enumerable: true,
16
+ get: () => e[k]
17
+ });
18
+ }
19
+ }
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
+
27
+ const defaultColor = "#6640FE";
28
+ const SiGandi = React__namespace.forwardRef(function SiGandi2({ title = "Gandi", 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.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiGandi;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#6640FE";
3
+ declare const SiGandi: IconType;
4
+ export { SiGandi 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 = "#6640FE";
5
+ const SiGandi = React.forwardRef(function SiGandi2({ title = "Gandi", 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.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiGandi 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 = "#09476B";
28
+ const SiH2database = React__namespace.forwardRef(function SiH2database2({ title = "H2 Database", 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: "M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiH2database;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#09476B";
3
+ declare const SiH2database: IconType;
4
+ export { SiH2database 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 = "#09476B";
5
+ const SiH2database = React.forwardRef(function SiH2database2({ title = "H2 Database", 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: "M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiH2database 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 = "#FF8800";
28
+ const SiOsmand = React__namespace.forwardRef(function SiOsmand2({ title = "OsmAnd", 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 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiOsmand;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FF8800";
3
+ declare const SiOsmand: IconType;
4
+ export { SiOsmand 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 = "#FF8800";
5
+ const SiOsmand = React.forwardRef(function SiOsmand2({ title = "OsmAnd", 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 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiOsmand as default, defaultColor };
package/icons/SiTrakt.cjs CHANGED
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
 
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
- const defaultColor = "#ED1C24";
27
+ const defaultColor = "#9F42C6";
28
28
  const SiTrakt = React__namespace.forwardRef(function SiTrakt2({ title = "Trakt", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiTrakt = React__namespace.forwardRef(function SiTrakt2({ title = "Trakt",
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm0-22.789C6.05 1.211 1.211 6.05 1.211 12S6.05 22.79 12 22.79 22.79 17.95 22.79 12 17.95 1.211 12 1.211zm-7.11 17.32c1.756 1.92 4.294 3.113 7.11 3.113 1.439 0 2.801-.313 4.027-.876l-6.697-6.68-4.44 4.443zm14.288-.067c1.541-1.71 2.484-3.99 2.484-6.466 0-3.885-2.287-7.215-5.568-8.76l-6.089 6.076 9.164 9.15h.009zm-9.877-8.429L4.227 15.09l-.679-.68 5.337-5.336 6.23-6.225c-.978-.328-2.02-.509-3.115-.509C6.663 2.337 2.337 6.663 2.337 12c0 2.172.713 4.178 1.939 5.801l5.056-5.055.359.329 7.245 7.245c.15-.082.285-.164.42-.266L9.33 12.05l-4.854 4.855-.679-.679 5.535-5.535.359.331 8.46 8.437c.135-.1.255-.215.375-.316L9.39 10.027l-.083.015-.006-.007zm3.047 1.028l-.678-.676 4.788-4.79.679.689-4.789 4.785v-.008zm4.542-6.578l-5.52 5.52-.68-.679 5.521-5.52.679.684v-.005z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z" })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#ED1C24";
2
+ declare const defaultColor = "#9F42C6";
3
3
  declare const SiTrakt: IconType;
4
4
  export { SiTrakt as default, defaultColor };
package/icons/SiTrakt.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
- const defaultColor = "#ED1C24";
4
+ const defaultColor = "#9F42C6";
5
5
  const SiTrakt = React.forwardRef(function SiTrakt2({ title = "Trakt", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiTrakt = React.forwardRef(function SiTrakt2({ title = "Trakt", color = "c
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm0-22.789C6.05 1.211 1.211 6.05 1.211 12S6.05 22.79 12 22.79 22.79 17.95 22.79 12 17.95 1.211 12 1.211zm-7.11 17.32c1.756 1.92 4.294 3.113 7.11 3.113 1.439 0 2.801-.313 4.027-.876l-6.697-6.68-4.44 4.443zm14.288-.067c1.541-1.71 2.484-3.99 2.484-6.466 0-3.885-2.287-7.215-5.568-8.76l-6.089 6.076 9.164 9.15h.009zm-9.877-8.429L4.227 15.09l-.679-.68 5.337-5.336 6.23-6.225c-.978-.328-2.02-.509-3.115-.509C6.663 2.337 2.337 6.663 2.337 12c0 2.172.713 4.178 1.939 5.801l5.056-5.055.359.329 7.245 7.245c.15-.082.285-.164.42-.266L9.33 12.05l-4.854 4.855-.679-.679 5.535-5.535.359.331 8.46 8.437c.135-.1.255-.215.375-.316L9.39 10.027l-.083.015-.006-.007zm3.047 1.028l-.678-.676 4.788-4.79.679.689-4.789 4.785v-.008zm4.542-6.578l-5.52 5.52-.68-.679 5.521-5.52.679.684v-.005z" })
21
+ /* @__PURE__ */ jsx("path", { d: "m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z" })
22
22
  ]
23
23
  }
24
24
  );
@@ -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 = "#F76F53";
28
+ const SiZenbrowser = React__namespace.forwardRef(function SiZenbrowser2({ title = "Zen Browser", 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 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiZenbrowser;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#F76F53";
3
+ declare const SiZenbrowser: IconType;
4
+ export { SiZenbrowser 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 = "#F76F53";
5
+ const SiZenbrowser = React.forwardRef(function SiZenbrowser2({ title = "Zen Browser", 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 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiZenbrowser as default, defaultColor };
package/index.cjs CHANGED
@@ -1064,6 +1064,7 @@ const SiGamescience = require('./icons/SiGamescience.cjs');
1064
1064
  const SiGamebanana = require('./icons/SiGamebanana.cjs');
1065
1065
  const SiGameloft = require('./icons/SiGameloft.cjs');
1066
1066
  const SiGamemaker = require('./icons/SiGamemaker.cjs');
1067
+ const SiGandi = require('./icons/SiGandi.cjs');
1067
1068
  const SiGarmin = require('./icons/SiGarmin.cjs');
1068
1069
  const SiGatling = require('./icons/SiGatling.cjs');
1069
1070
  const SiGatsby = require('./icons/SiGatsby.cjs');
@@ -1227,6 +1228,7 @@ const SiGurobi = require('./icons/SiGurobi.cjs');
1227
1228
  const SiGusto = require('./icons/SiGusto.cjs');
1228
1229
  const SiGutenberg = require('./icons/SiGutenberg.cjs');
1229
1230
  const SiHandm = require('./icons/SiHandm.cjs');
1231
+ const SiH2database = require('./icons/SiH2database.cjs');
1230
1232
  const SiH3 = require('./icons/SiH3.cjs');
1231
1233
  const SiHabr = require('./icons/SiHabr.cjs');
1232
1234
  const SiHackclub = require('./icons/SiHackclub.cjs');
@@ -2048,6 +2050,7 @@ const SiOsano = require('./icons/SiOsano.cjs');
2048
2050
  const SiOsf = require('./icons/SiOsf.cjs');
2049
2051
  const SiOsgeo = require('./icons/SiOsgeo.cjs');
2050
2052
  const SiOshkosh = require('./icons/SiOshkosh.cjs');
2053
+ const SiOsmand = require('./icons/SiOsmand.cjs');
2051
2054
  const SiOsmc = require('./icons/SiOsmc.cjs');
2052
2055
  const SiOsu = require('./icons/SiOsu.cjs');
2053
2056
  const SiOtto = require('./icons/SiOtto.cjs');
@@ -3253,6 +3256,7 @@ const SiZebpay = require('./icons/SiZebpay.cjs');
3253
3256
  const SiZebratechnologies = require('./icons/SiZebratechnologies.cjs');
3254
3257
  const SiZedindustries = require('./icons/SiZedindustries.cjs');
3255
3258
  const SiZelle = require('./icons/SiZelle.cjs');
3259
+ const SiZenbrowser = require('./icons/SiZenbrowser.cjs');
3256
3260
  const SiZend = require('./icons/SiZend.cjs');
3257
3261
  const SiZendesk = require('./icons/SiZendesk.cjs');
3258
3262
  const SiZenn = require('./icons/SiZenn.cjs');
@@ -5407,6 +5411,8 @@ exports.SiGameloft = SiGameloft.default;
5407
5411
  exports.SiGameloftHex = SiGameloft.defaultColor;
5408
5412
  exports.SiGamemaker = SiGamemaker.default;
5409
5413
  exports.SiGamemakerHex = SiGamemaker.defaultColor;
5414
+ exports.SiGandi = SiGandi.default;
5415
+ exports.SiGandiHex = SiGandi.defaultColor;
5410
5416
  exports.SiGarmin = SiGarmin.default;
5411
5417
  exports.SiGarminHex = SiGarmin.defaultColor;
5412
5418
  exports.SiGatling = SiGatling.default;
@@ -5733,6 +5739,8 @@ exports.SiGutenberg = SiGutenberg.default;
5733
5739
  exports.SiGutenbergHex = SiGutenberg.defaultColor;
5734
5740
  exports.SiHandm = SiHandm.default;
5735
5741
  exports.SiHandmHex = SiHandm.defaultColor;
5742
+ exports.SiH2database = SiH2database.default;
5743
+ exports.SiH2databaseHex = SiH2database.defaultColor;
5736
5744
  exports.SiH3 = SiH3.default;
5737
5745
  exports.SiH3Hex = SiH3.defaultColor;
5738
5746
  exports.SiHabr = SiHabr.default;
@@ -7375,6 +7383,8 @@ exports.SiOsgeo = SiOsgeo.default;
7375
7383
  exports.SiOsgeoHex = SiOsgeo.defaultColor;
7376
7384
  exports.SiOshkosh = SiOshkosh.default;
7377
7385
  exports.SiOshkoshHex = SiOshkosh.defaultColor;
7386
+ exports.SiOsmand = SiOsmand.default;
7387
+ exports.SiOsmandHex = SiOsmand.defaultColor;
7378
7388
  exports.SiOsmc = SiOsmc.default;
7379
7389
  exports.SiOsmcHex = SiOsmc.defaultColor;
7380
7390
  exports.SiOsu = SiOsu.default;
@@ -9785,6 +9795,8 @@ exports.SiZedindustries = SiZedindustries.default;
9785
9795
  exports.SiZedindustriesHex = SiZedindustries.defaultColor;
9786
9796
  exports.SiZelle = SiZelle.default;
9787
9797
  exports.SiZelleHex = SiZelle.defaultColor;
9798
+ exports.SiZenbrowser = SiZenbrowser.default;
9799
+ exports.SiZenbrowserHex = SiZenbrowser.defaultColor;
9788
9800
  exports.SiZend = SiZend.default;
9789
9801
  exports.SiZendHex = SiZend.defaultColor;
9790
9802
  exports.SiZendesk = SiZendesk.default;
package/index.d.ts CHANGED
@@ -1060,6 +1060,7 @@ export { default as SiGamescience, defaultColor as SiGamescienceHex } from './ic
1060
1060
  export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana';
1061
1061
  export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft';
1062
1062
  export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker';
1063
+ export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi';
1063
1064
  export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin';
1064
1065
  export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling';
1065
1066
  export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby';
@@ -1223,6 +1224,7 @@ export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGuro
1223
1224
  export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto';
1224
1225
  export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg';
1225
1226
  export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm';
1227
+ export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database';
1226
1228
  export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3';
1227
1229
  export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr';
1228
1230
  export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub';
@@ -2044,6 +2046,7 @@ export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano'
2044
2046
  export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf';
2045
2047
  export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo';
2046
2048
  export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh';
2049
+ export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand';
2047
2050
  export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc';
2048
2051
  export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu';
2049
2052
  export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto';
@@ -3249,6 +3252,7 @@ export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebp
3249
3252
  export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies';
3250
3253
  export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries';
3251
3254
  export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle';
3255
+ export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser';
3252
3256
  export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend';
3253
3257
  export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk';
3254
3258
  export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn';
package/index.mjs CHANGED
@@ -1060,6 +1060,7 @@ export { default as SiGamescience, defaultColor as SiGamescienceHex } from './ic
1060
1060
  export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana.mjs';
1061
1061
  export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft.mjs';
1062
1062
  export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker.mjs';
1063
+ export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi.mjs';
1063
1064
  export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin.mjs';
1064
1065
  export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling.mjs';
1065
1066
  export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby.mjs';
@@ -1223,6 +1224,7 @@ export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGuro
1223
1224
  export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto.mjs';
1224
1225
  export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg.mjs';
1225
1226
  export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm.mjs';
1227
+ export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database.mjs';
1226
1228
  export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3.mjs';
1227
1229
  export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr.mjs';
1228
1230
  export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub.mjs';
@@ -2044,6 +2046,7 @@ export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano.
2044
2046
  export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf.mjs';
2045
2047
  export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo.mjs';
2046
2048
  export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh.mjs';
2049
+ export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand.mjs';
2047
2050
  export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc.mjs';
2048
2051
  export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu.mjs';
2049
2052
  export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto.mjs';
@@ -3249,6 +3252,7 @@ export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebp
3249
3252
  export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies.mjs';
3250
3253
  export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries.mjs';
3251
3254
  export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle.mjs';
3255
+ export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser.mjs';
3252
3256
  export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend.mjs';
3253
3257
  export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk.mjs';
3254
3258
  export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "12.3.0",
3
+ "version": "12.4.0",
4
4
  "description": "This package provides the Simple Icons packaged as a set of React components.",
5
5
  "keywords": [
6
6
  "react",
@@ -68,7 +68,7 @@
68
68
  "react": "^18",
69
69
  "rimraf": "6.0.1",
70
70
  "signale": "1.4.0",
71
- "simple-icons": "14.11.0",
71
+ "simple-icons": "14.12.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 SiGandiProps = 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 = '#6640FE';
22
+
23
+ const SiGandi: IconType = React.forwardRef<SVGSVGElement, SiGandiProps>(function SiGandi({title = 'Gandi', 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.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiGandi as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiH2databaseProps = 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 = '#09476B';
22
+
23
+ const SiH2database: IconType = React.forwardRef<SVGSVGElement, SiH2databaseProps>(function SiH2database({title = 'H2 Database', 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='M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiH2database as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiOsmandProps = 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 = '#FF8800';
22
+
23
+ const SiOsmand: IconType = React.forwardRef<SVGSVGElement, SiOsmandProps>(function SiOsmand({title = 'OsmAnd', 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='M12 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiOsmand as default, defaultColor };
45
+
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#ED1C24';
21
+ const defaultColor = '#9F42C6';
22
22
 
23
23
  const SiTrakt: IconType = React.forwardRef<SVGSVGElement, SiTraktProps>(function SiTrakt({title = 'Trakt', color = 'currentColor', size = 24, ...others }, ref) {
24
24
  if (color === 'default') {
@@ -36,7 +36,7 @@
36
36
  {...others}
37
37
  >
38
38
  <title>{title}</title>
39
- <path d='M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm0-22.789C6.05 1.211 1.211 6.05 1.211 12S6.05 22.79 12 22.79 22.79 17.95 22.79 12 17.95 1.211 12 1.211zm-7.11 17.32c1.756 1.92 4.294 3.113 7.11 3.113 1.439 0 2.801-.313 4.027-.876l-6.697-6.68-4.44 4.443zm14.288-.067c1.541-1.71 2.484-3.99 2.484-6.466 0-3.885-2.287-7.215-5.568-8.76l-6.089 6.076 9.164 9.15h.009zm-9.877-8.429L4.227 15.09l-.679-.68 5.337-5.336 6.23-6.225c-.978-.328-2.02-.509-3.115-.509C6.663 2.337 2.337 6.663 2.337 12c0 2.172.713 4.178 1.939 5.801l5.056-5.055.359.329 7.245 7.245c.15-.082.285-.164.42-.266L9.33 12.05l-4.854 4.855-.679-.679 5.535-5.535.359.331 8.46 8.437c.135-.1.255-.215.375-.316L9.39 10.027l-.083.015-.006-.007zm3.047 1.028l-.678-.676 4.788-4.79.679.689-4.789 4.785v-.008zm4.542-6.578l-5.52 5.52-.68-.679 5.521-5.52.679.684v-.005z' />
39
+ <path d='m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z' />
40
40
  </svg>
41
41
  );
42
42
  });
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiZenbrowserProps = 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 = '#F76F53';
22
+
23
+ const SiZenbrowser: IconType = React.forwardRef<SVGSVGElement, SiZenbrowserProps>(function SiZenbrowser({title = 'Zen Browser', 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 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiZenbrowser as default, defaultColor };
45
+