@icons-pack/react-simple-icons 11.0.0 → 11.0.1

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,17 +3,13 @@
3
3
 
4
4
  # react-simple-icons
5
5
 
6
- This package provides the [Simple Icons 14.1.0](https://github.com/simple-icons/simple-icons/releases/tag/14.1.0)
6
+ This package provides the [Simple Icons 14.2.0](https://github.com/simple-icons/simple-icons/releases/tag/14.2.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">
10
10
  <img src="https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square" alt="www.npmjs.com!" />
11
11
  </a>
12
12
 
13
- <a href="https://travis-ci.com/github/icons-pack/react-simple-icons" target="_blank">
14
- <img src="https://img.shields.io/travis/icons-pack/react-simple-icons?color=008660&style=flat-square" alt="builds!" />
15
- </a>
16
-
17
13
  <a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
18
14
  <img src="https://img.shields.io/npm/dw/@icons-pack/react-simple-icons?color=087BB4&style=flat-square" alt="downloads" />
19
15
  </a>
@@ -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 = "#FF2E63";
28
+ const SiFyle = React__namespace.forwardRef(function SiFyle2({ title = "Fyle", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928V0Z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiFyle;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FF2E63";
3
+ declare const SiFyle: IconType;
4
+ export { SiFyle 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 = "#FF2E63";
5
+ const SiFyle = React.forwardRef(function SiFyle2({ title = "Fyle", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928V0Z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiFyle 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 = "#F97316";
28
+ const SiGradio = React__namespace.forwardRef(function SiGradio2({ title = "Gradio", 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: "M 12 1.527 A 1.532 1.532 0 0 0 11.24 1.73 L 0.7695 7.732 A 1.532 1.532 0 0 0 0 9.021 L 0 9.109 A 1.532 1.532 0 0 0 0.7695 10.4 L 3.57 12 L 0.7695 13.61 C 0.256 13.9 0 14.42 0 14.94 C 0 15.45 0.256 15.97 0.7695 16.26 L 11.24 22.27 C 11.71 22.54 12.29 22.54 12.76 22.27 L 23.23 16.26 C 23.73 15.98 23.99 15.48 24 14.97 L 24 14.9 C 23.99 14.4 23.73 13.89 23.23 13.61 L 20.42 12 L 23.23 10.4 A 1.532 1.532 0 0 0 24 9.223 L 24 8.91 A 1.532 1.532 0 0 0 23.23 7.732 L 12.76 1.73 A 1.532 1.532 0 0 0 12 1.527 z M 12 4.826 L 19.39 9.061 L 17.34 10.24 L 12.76 7.602 C 12.53 7.47 12.27 7.398 12 7.398 C 11.73 7.398 11.47 7.469 11.24 7.602 L 6.652 10.24 L 4.613 9.061 L 12 4.826 z M 12 10.7 L 14.27 12 L 12 13.3 L 9.734 12 L 12 10.7 z M 6.652 13.77 L 11.24 16.39 A 1.532 1.532 0 0 0 12.76 16.39 L 17.34 13.77 L 19.39 14.94 L 12 19.17 L 4.613 14.94 L 6.652 13.77 z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiGradio;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#F97316";
3
+ declare const SiGradio: IconType;
4
+ export { SiGradio 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 = "#F97316";
5
+ const SiGradio = React.forwardRef(function SiGradio2({ title = "Gradio", 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: "M 12 1.527 A 1.532 1.532 0 0 0 11.24 1.73 L 0.7695 7.732 A 1.532 1.532 0 0 0 0 9.021 L 0 9.109 A 1.532 1.532 0 0 0 0.7695 10.4 L 3.57 12 L 0.7695 13.61 C 0.256 13.9 0 14.42 0 14.94 C 0 15.45 0.256 15.97 0.7695 16.26 L 11.24 22.27 C 11.71 22.54 12.29 22.54 12.76 22.27 L 23.23 16.26 C 23.73 15.98 23.99 15.48 24 14.97 L 24 14.9 C 23.99 14.4 23.73 13.89 23.23 13.61 L 20.42 12 L 23.23 10.4 A 1.532 1.532 0 0 0 24 9.223 L 24 8.91 A 1.532 1.532 0 0 0 23.23 7.732 L 12.76 1.73 A 1.532 1.532 0 0 0 12 1.527 z M 12 4.826 L 19.39 9.061 L 17.34 10.24 L 12.76 7.602 C 12.53 7.47 12.27 7.398 12 7.398 C 11.73 7.398 11.47 7.469 11.24 7.602 L 6.652 10.24 L 4.613 9.061 L 12 4.826 z M 12 10.7 L 14.27 12 L 12 13.3 L 9.734 12 L 12 10.7 z M 6.652 13.77 L 11.24 16.39 A 1.532 1.532 0 0 0 12.76 16.39 L 17.34 13.77 L 19.39 14.94 L 12 19.17 L 4.613 14.94 L 6.652 13.77 z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiGradio as default, defaultColor };
package/icons/SiV0.cjs ADDED
@@ -0,0 +1,51 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const jsxRuntime = require('react/jsx-runtime');
6
+ const React = require('react');
7
+
8
+ function _interopNamespaceDefault(e) {
9
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
10
+ if (e) {
11
+ for (const k in e) {
12
+ if (k !== 'default') {
13
+ const d = Object.getOwnPropertyDescriptor(e, k);
14
+ Object.defineProperty(n, k, d.get ? d : {
15
+ enumerable: true,
16
+ get: () => e[k]
17
+ });
18
+ }
19
+ }
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
+
27
+ const defaultColor = "#000000";
28
+ const SiV0 = React__namespace.forwardRef(function SiV02({ title = "v0", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiV0;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#000000";
3
+ declare const SiV0: IconType;
4
+ export { SiV0 as default, defaultColor };
package/icons/SiV0.mjs ADDED
@@ -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 SiV0 = React.forwardRef(function SiV02({ title = "v0", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiV0 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 = "#67D55E";
28
+ const SiWxt = React__namespace.forwardRef(function SiWxt2({ title = "WXT", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiWxt;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#67D55E";
3
+ declare const SiWxt: IconType;
4
+ export { SiWxt 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 = "#67D55E";
5
+ const SiWxt = React.forwardRef(function SiWxt2({ title = "WXT", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiWxt as default, defaultColor };
package/index.cjs CHANGED
@@ -1047,6 +1047,7 @@ const SiFuraffinity = require('./icons/SiFuraffinity.cjs');
1047
1047
  const SiFurrynetwork = require('./icons/SiFurrynetwork.cjs');
1048
1048
  const SiFusionauth = require('./icons/SiFusionauth.cjs');
1049
1049
  const SiFuturelearn = require('./icons/SiFuturelearn.cjs');
1050
+ const SiFyle = require('./icons/SiFyle.cjs');
1050
1051
  const SiG2 = require('./icons/SiG2.cjs');
1051
1052
  const SiG2a = require('./icons/SiG2a.cjs');
1052
1053
  const SiG2g = require('./icons/SiG2g.cjs');
@@ -1180,6 +1181,7 @@ const SiGoogletasks = require('./icons/SiGoogletasks.cjs');
1180
1181
  const SiGoogletranslate = require('./icons/SiGoogletranslate.cjs');
1181
1182
  const SiGotomeeting = require('./icons/SiGotomeeting.cjs');
1182
1183
  const SiGrab = require('./icons/SiGrab.cjs');
1184
+ const SiGradio = require('./icons/SiGradio.cjs');
1183
1185
  const SiGradle = require('./icons/SiGradle.cjs');
1184
1186
  const SiGradleplaypublisher = require('./icons/SiGradleplaypublisher.cjs');
1185
1187
  const SiGrafana = require('./icons/SiGrafana.cjs');
@@ -2996,6 +2998,7 @@ const SiUsps = require('./icons/SiUsps.cjs');
2996
2998
  const SiUtorrent = require('./icons/SiUtorrent.cjs');
2997
2999
  const SiUv = require('./icons/SiUv.cjs');
2998
3000
  const SiV = require('./icons/SiV.cjs');
3001
+ const SiV0 = require('./icons/SiV0.cjs');
2999
3002
  const SiV2ex = require('./icons/SiV2ex.cjs');
3000
3003
  const SiV8 = require('./icons/SiV8.cjs');
3001
3004
  const SiVaadin = require('./icons/SiVaadin.cjs');
@@ -3166,6 +3169,7 @@ const SiWpexplorer = require('./icons/SiWpexplorer.cjs');
3166
3169
  const SiWritedotas = require('./icons/SiWritedotas.cjs');
3167
3170
  const SiWwe = require('./icons/SiWwe.cjs');
3168
3171
  const SiWwise = require('./icons/SiWwise.cjs');
3172
+ const SiWxt = require('./icons/SiWxt.cjs');
3169
3173
  const SiWykop = require('./icons/SiWykop.cjs');
3170
3174
  const SiWyze = require('./icons/SiWyze.cjs');
3171
3175
  const SiX = require('./icons/SiX.cjs');
@@ -5344,6 +5348,8 @@ exports.SiFusionauth = SiFusionauth.default;
5344
5348
  exports.SiFusionauthHex = SiFusionauth.defaultColor;
5345
5349
  exports.SiFuturelearn = SiFuturelearn.default;
5346
5350
  exports.SiFuturelearnHex = SiFuturelearn.defaultColor;
5351
+ exports.SiFyle = SiFyle.default;
5352
+ exports.SiFyleHex = SiFyle.defaultColor;
5347
5353
  exports.SiG2 = SiG2.default;
5348
5354
  exports.SiG2Hex = SiG2.defaultColor;
5349
5355
  exports.SiG2a = SiG2a.default;
@@ -5610,6 +5616,8 @@ exports.SiGotomeeting = SiGotomeeting.default;
5610
5616
  exports.SiGotomeetingHex = SiGotomeeting.defaultColor;
5611
5617
  exports.SiGrab = SiGrab.default;
5612
5618
  exports.SiGrabHex = SiGrab.defaultColor;
5619
+ exports.SiGradio = SiGradio.default;
5620
+ exports.SiGradioHex = SiGradio.defaultColor;
5613
5621
  exports.SiGradle = SiGradle.default;
5614
5622
  exports.SiGradleHex = SiGradle.defaultColor;
5615
5623
  exports.SiGradleplaypublisher = SiGradleplaypublisher.default;
@@ -9242,6 +9250,8 @@ exports.SiUv = SiUv.default;
9242
9250
  exports.SiUvHex = SiUv.defaultColor;
9243
9251
  exports.SiV = SiV.default;
9244
9252
  exports.SiVHex = SiV.defaultColor;
9253
+ exports.SiV0 = SiV0.default;
9254
+ exports.SiV0Hex = SiV0.defaultColor;
9245
9255
  exports.SiV2ex = SiV2ex.default;
9246
9256
  exports.SiV2exHex = SiV2ex.defaultColor;
9247
9257
  exports.SiV8 = SiV8.default;
@@ -9582,6 +9592,8 @@ exports.SiWwe = SiWwe.default;
9582
9592
  exports.SiWweHex = SiWwe.defaultColor;
9583
9593
  exports.SiWwise = SiWwise.default;
9584
9594
  exports.SiWwiseHex = SiWwise.defaultColor;
9595
+ exports.SiWxt = SiWxt.default;
9596
+ exports.SiWxtHex = SiWxt.defaultColor;
9585
9597
  exports.SiWykop = SiWykop.default;
9586
9598
  exports.SiWykopHex = SiWykop.defaultColor;
9587
9599
  exports.SiWyze = SiWyze.default;
package/index.d.ts CHANGED
@@ -1043,6 +1043,7 @@ export { default as SiFuraffinity, defaultColor as SiFuraffinityHex } from './ic
1043
1043
  export { default as SiFurrynetwork, defaultColor as SiFurrynetworkHex } from './icons/SiFurrynetwork';
1044
1044
  export { default as SiFusionauth, defaultColor as SiFusionauthHex } from './icons/SiFusionauth';
1045
1045
  export { default as SiFuturelearn, defaultColor as SiFuturelearnHex } from './icons/SiFuturelearn';
1046
+ export { default as SiFyle, defaultColor as SiFyleHex } from './icons/SiFyle';
1046
1047
  export { default as SiG2, defaultColor as SiG2Hex } from './icons/SiG2';
1047
1048
  export { default as SiG2a, defaultColor as SiG2aHex } from './icons/SiG2a';
1048
1049
  export { default as SiG2g, defaultColor as SiG2gHex } from './icons/SiG2g';
@@ -1176,6 +1177,7 @@ export { default as SiGoogletasks, defaultColor as SiGoogletasksHex } from './ic
1176
1177
  export { default as SiGoogletranslate, defaultColor as SiGoogletranslateHex } from './icons/SiGoogletranslate';
1177
1178
  export { default as SiGotomeeting, defaultColor as SiGotomeetingHex } from './icons/SiGotomeeting';
1178
1179
  export { default as SiGrab, defaultColor as SiGrabHex } from './icons/SiGrab';
1180
+ export { default as SiGradio, defaultColor as SiGradioHex } from './icons/SiGradio';
1179
1181
  export { default as SiGradle, defaultColor as SiGradleHex } from './icons/SiGradle';
1180
1182
  export { default as SiGradleplaypublisher, defaultColor as SiGradleplaypublisherHex } from './icons/SiGradleplaypublisher';
1181
1183
  export { default as SiGrafana, defaultColor as SiGrafanaHex } from './icons/SiGrafana';
@@ -2992,6 +2994,7 @@ export { default as SiUsps, defaultColor as SiUspsHex } from './icons/SiUsps';
2992
2994
  export { default as SiUtorrent, defaultColor as SiUtorrentHex } from './icons/SiUtorrent';
2993
2995
  export { default as SiUv, defaultColor as SiUvHex } from './icons/SiUv';
2994
2996
  export { default as SiV, defaultColor as SiVHex } from './icons/SiV';
2997
+ export { default as SiV0, defaultColor as SiV0Hex } from './icons/SiV0';
2995
2998
  export { default as SiV2ex, defaultColor as SiV2exHex } from './icons/SiV2ex';
2996
2999
  export { default as SiV8, defaultColor as SiV8Hex } from './icons/SiV8';
2997
3000
  export { default as SiVaadin, defaultColor as SiVaadinHex } from './icons/SiVaadin';
@@ -3162,6 +3165,7 @@ export { default as SiWpexplorer, defaultColor as SiWpexplorerHex } from './icon
3162
3165
  export { default as SiWritedotas, defaultColor as SiWritedotasHex } from './icons/SiWritedotas';
3163
3166
  export { default as SiWwe, defaultColor as SiWweHex } from './icons/SiWwe';
3164
3167
  export { default as SiWwise, defaultColor as SiWwiseHex } from './icons/SiWwise';
3168
+ export { default as SiWxt, defaultColor as SiWxtHex } from './icons/SiWxt';
3165
3169
  export { default as SiWykop, defaultColor as SiWykopHex } from './icons/SiWykop';
3166
3170
  export { default as SiWyze, defaultColor as SiWyzeHex } from './icons/SiWyze';
3167
3171
  export { default as SiX, defaultColor as SiXHex } from './icons/SiX';
package/index.mjs CHANGED
@@ -1043,6 +1043,7 @@ export { default as SiFuraffinity, defaultColor as SiFuraffinityHex } from './ic
1043
1043
  export { default as SiFurrynetwork, defaultColor as SiFurrynetworkHex } from './icons/SiFurrynetwork.mjs';
1044
1044
  export { default as SiFusionauth, defaultColor as SiFusionauthHex } from './icons/SiFusionauth.mjs';
1045
1045
  export { default as SiFuturelearn, defaultColor as SiFuturelearnHex } from './icons/SiFuturelearn.mjs';
1046
+ export { default as SiFyle, defaultColor as SiFyleHex } from './icons/SiFyle.mjs';
1046
1047
  export { default as SiG2, defaultColor as SiG2Hex } from './icons/SiG2.mjs';
1047
1048
  export { default as SiG2a, defaultColor as SiG2aHex } from './icons/SiG2a.mjs';
1048
1049
  export { default as SiG2g, defaultColor as SiG2gHex } from './icons/SiG2g.mjs';
@@ -1176,6 +1177,7 @@ export { default as SiGoogletasks, defaultColor as SiGoogletasksHex } from './ic
1176
1177
  export { default as SiGoogletranslate, defaultColor as SiGoogletranslateHex } from './icons/SiGoogletranslate.mjs';
1177
1178
  export { default as SiGotomeeting, defaultColor as SiGotomeetingHex } from './icons/SiGotomeeting.mjs';
1178
1179
  export { default as SiGrab, defaultColor as SiGrabHex } from './icons/SiGrab.mjs';
1180
+ export { default as SiGradio, defaultColor as SiGradioHex } from './icons/SiGradio.mjs';
1179
1181
  export { default as SiGradle, defaultColor as SiGradleHex } from './icons/SiGradle.mjs';
1180
1182
  export { default as SiGradleplaypublisher, defaultColor as SiGradleplaypublisherHex } from './icons/SiGradleplaypublisher.mjs';
1181
1183
  export { default as SiGrafana, defaultColor as SiGrafanaHex } from './icons/SiGrafana.mjs';
@@ -2992,6 +2994,7 @@ export { default as SiUsps, defaultColor as SiUspsHex } from './icons/SiUsps.mjs
2992
2994
  export { default as SiUtorrent, defaultColor as SiUtorrentHex } from './icons/SiUtorrent.mjs';
2993
2995
  export { default as SiUv, defaultColor as SiUvHex } from './icons/SiUv.mjs';
2994
2996
  export { default as SiV, defaultColor as SiVHex } from './icons/SiV.mjs';
2997
+ export { default as SiV0, defaultColor as SiV0Hex } from './icons/SiV0.mjs';
2995
2998
  export { default as SiV2ex, defaultColor as SiV2exHex } from './icons/SiV2ex.mjs';
2996
2999
  export { default as SiV8, defaultColor as SiV8Hex } from './icons/SiV8.mjs';
2997
3000
  export { default as SiVaadin, defaultColor as SiVaadinHex } from './icons/SiVaadin.mjs';
@@ -3162,6 +3165,7 @@ export { default as SiWpexplorer, defaultColor as SiWpexplorerHex } from './icon
3162
3165
  export { default as SiWritedotas, defaultColor as SiWritedotasHex } from './icons/SiWritedotas.mjs';
3163
3166
  export { default as SiWwe, defaultColor as SiWweHex } from './icons/SiWwe.mjs';
3164
3167
  export { default as SiWwise, defaultColor as SiWwiseHex } from './icons/SiWwise.mjs';
3168
+ export { default as SiWxt, defaultColor as SiWxtHex } from './icons/SiWxt.mjs';
3165
3169
  export { default as SiWykop, defaultColor as SiWykopHex } from './icons/SiWykop.mjs';
3166
3170
  export { default as SiWyze, defaultColor as SiWyzeHex } from './icons/SiWyze.mjs';
3167
3171
  export { default as SiX, defaultColor as SiXHex } from './icons/SiX.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "11.0.0",
3
+ "version": "11.0.1",
4
4
  "description": "This package provides the Simple Icons packaged as a set of React components.",
5
5
  "keywords": [
6
6
  "react",
@@ -83,7 +83,7 @@
83
83
  "react": "^18",
84
84
  "rimraf": "6.0.1",
85
85
  "signale": "1.4.0",
86
- "simple-icons": "14.1.0",
86
+ "simple-icons": "14.2.0",
87
87
  "turbo": "2.0.14",
88
88
  "typescript": "5.5.4",
89
89
  "uppercamelcase": "3.0.0",
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiFyleProps = 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 = '#FF2E63';
22
+
23
+ const SiFyle: IconType = React.forwardRef<SVGSVGElement, SiFyleProps>(function SiFyle({title = 'Fyle', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928V0Z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiFyle as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiGradioProps = 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 = '#F97316';
22
+
23
+ const SiGradio: IconType = React.forwardRef<SVGSVGElement, SiGradioProps>(function SiGradio({title = 'Gradio', 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='M 12 1.527 A 1.532 1.532 0 0 0 11.24 1.73 L 0.7695 7.732 A 1.532 1.532 0 0 0 0 9.021 L 0 9.109 A 1.532 1.532 0 0 0 0.7695 10.4 L 3.57 12 L 0.7695 13.61 C 0.256 13.9 0 14.42 0 14.94 C 0 15.45 0.256 15.97 0.7695 16.26 L 11.24 22.27 C 11.71 22.54 12.29 22.54 12.76 22.27 L 23.23 16.26 C 23.73 15.98 23.99 15.48 24 14.97 L 24 14.9 C 23.99 14.4 23.73 13.89 23.23 13.61 L 20.42 12 L 23.23 10.4 A 1.532 1.532 0 0 0 24 9.223 L 24 8.91 A 1.532 1.532 0 0 0 23.23 7.732 L 12.76 1.73 A 1.532 1.532 0 0 0 12 1.527 z M 12 4.826 L 19.39 9.061 L 17.34 10.24 L 12.76 7.602 C 12.53 7.47 12.27 7.398 12 7.398 C 11.73 7.398 11.47 7.469 11.24 7.602 L 6.652 10.24 L 4.613 9.061 L 12 4.826 z M 12 10.7 L 14.27 12 L 12 13.3 L 9.734 12 L 12 10.7 z M 6.652 13.77 L 11.24 16.39 A 1.532 1.532 0 0 0 12.76 16.39 L 17.34 13.77 L 19.39 14.94 L 12 19.17 L 4.613 14.94 L 6.652 13.77 z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiGradio as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiV0Props = React.ComponentPropsWithoutRef<'svg'> & {
7
+ /**
8
+ * The title provides an accessible short text description to the SVG
9
+ */
10
+ title?: string;
11
+ /**
12
+ * Hex color or color name or "default" to use the default hex for each icon
13
+ */
14
+ color?: string;
15
+ /**
16
+ * The size of the Icon.
17
+ */
18
+ size?: string | number;
19
+ }
20
+
21
+ const defaultColor = '#000000';
22
+
23
+ const SiV0: IconType = React.forwardRef<SVGSVGElement, SiV0Props>(function SiV0({title = 'v0', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiV0 as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiWxtProps = 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 = '#67D55E';
22
+
23
+ const SiWxt: IconType = React.forwardRef<SVGSVGElement, SiWxtProps>(function SiWxt({title = 'WXT', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiWxt as default, defaultColor };
45
+