@icons-pack/react-simple-icons 11.0.1 → 11.1.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.2.0](https://github.com/simple-icons/simple-icons/releases/tag/14.2.0)
6
+ This package provides the [Simple Icons 14.3.0](https://github.com/simple-icons/simple-icons/releases/tag/14.3.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 = "#3E82E5";
28
+ const SiBetterdiscord = React__namespace.forwardRef(function SiBetterdiscord2({ title = "BetterDiscord", 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.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiBetterdiscord;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#3E82E5";
3
+ declare const SiBetterdiscord: IconType;
4
+ export { SiBetterdiscord 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 = "#3E82E5";
5
+ const SiBetterdiscord = React.forwardRef(function SiBetterdiscord2({ title = "BetterDiscord", 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.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiBetterdiscord 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 = "#FF5A50";
28
+ const SiCrewai = React__namespace.forwardRef(function SiCrewai2({ title = "CrewAI", 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.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiCrewai;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#FF5A50";
3
+ declare const SiCrewai: IconType;
4
+ export { SiCrewai 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 = "#FF5A50";
5
+ const SiCrewai = React.forwardRef(function SiCrewai2({ title = "CrewAI", 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.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiCrewai 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 = "#1C3C3C";
28
+ const SiLanggraph = React__namespace.forwardRef(function SiLanggraph2({ title = "LangGraph", 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.099 5.88H17.9C21.264 5.88 24 8.625 24 12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12Zm5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a1.539 1.539 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.575 1.575 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075-.13.095-.245.203-.342.334-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a.989.989 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.29.29 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.357.357 0 0 1-.008.057c-.009.046-.017.09.018.13a.605.605 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223-.026.047-.054.097-.094.143-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036.016 0 .033 0 .05-.002-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665 0-.06 0-.119.005-.176.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568.008-.026.016-.048.026-.074.019.003.039.008.059.014.086.021.178.045.223-.057zm6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01c-.126 0-.25.023-.364.068l-.58-.848-.405.278.583.851a1.009 1.009 0 0 0 .05 1.376zm-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm.932-3.586v-.503h-1.55a1.003 1.003 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1.014 1.014 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiLanggraph;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#1C3C3C";
3
+ declare const SiLanggraph: IconType;
4
+ export { SiLanggraph 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 = "#1C3C3C";
5
+ const SiLanggraph = React.forwardRef(function SiLanggraph2({ title = "LangGraph", 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.099 5.88H17.9C21.264 5.88 24 8.625 24 12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12Zm5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a1.539 1.539 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.575 1.575 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075-.13.095-.245.203-.342.334-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a.989.989 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.29.29 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.357.357 0 0 1-.008.057c-.009.046-.017.09.018.13a.605.605 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223-.026.047-.054.097-.094.143-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036.016 0 .033 0 .05-.002-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665 0-.06 0-.119.005-.176.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568.008-.026.016-.048.026-.074.019.003.039.008.059.014.086.021.178.045.223-.057zm6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01c-.126 0-.25.023-.364.068l-.58-.848-.405.278.583.851a1.009 1.009 0 0 0 .05 1.376zm-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm.932-3.586v-.503h-1.55a1.003 1.003 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1.014 1.014 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiLanggraph as default, defaultColor };
@@ -25,7 +25,7 @@ function _interopNamespaceDefault(e) {
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
27
  const defaultColor = "#293239";
28
- const SiMikrotik = React__namespace.forwardRef(function SiMikrotik2({ title = "Mikrotik", color = "currentColor", size = 24, ...others }, ref) {
28
+ const SiMikrotik = React__namespace.forwardRef(function SiMikrotik2({ title = "MikroTik", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
31
31
  }
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const defaultColor = "#293239";
5
- const SiMikrotik = React.forwardRef(function SiMikrotik2({ title = "Mikrotik", color = "currentColor", size = 24, ...others }, ref) {
5
+ const SiMikrotik = React.forwardRef(function SiMikrotik2({ title = "MikroTik", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
8
8
  }
package/icons/SiNexon.cjs CHANGED
@@ -25,7 +25,7 @@ function _interopNamespaceDefault(e) {
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
27
  const defaultColor = "#000000";
28
- const SiNexon = React__namespace.forwardRef(function SiNexon2({ title = "Nexon", color = "currentColor", size = 24, ...others }, ref) {
28
+ const SiNexon = React__namespace.forwardRef(function SiNexon2({ title = "NEXON", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
31
31
  }
@@ -41,7 +41,7 @@ const SiNexon = React__namespace.forwardRef(function SiNexon2({ title = "Nexon",
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.138 10.158v3.693h3.775v-.783H6.126v-.706h2.787v-.789H6.126v-.632h2.787v-.783zm15.778 3.693v-2.234l2.34 2.234H24v-3.693h-.987v2.234l-2.34-2.234h-.745v3.693zm-2.051-3.701h-4.072v3.7h4.072zm-.988 2.918H15.78v-2.127h2.097zm-16.89.783v-2.234l2.34 2.234h.748v-3.693h-.99v2.234l-2.34-2.234H0v3.693zm10.241-1.844-1.633 1.844h1.249l1.009-1.14 1.012 1.14h1.249l-1.637-1.844 1.64-1.849h-1.25l-1.014 1.145-1.012-1.145H9.589z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z" })
45
45
  ]
46
46
  }
47
47
  );
package/icons/SiNexon.mjs CHANGED
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const defaultColor = "#000000";
5
- const SiNexon = React.forwardRef(function SiNexon2({ title = "Nexon", color = "currentColor", size = 24, ...others }, ref) {
5
+ const SiNexon = React.forwardRef(function SiNexon2({ title = "NEXON", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
8
8
  }
@@ -18,7 +18,7 @@ const SiNexon = React.forwardRef(function SiNexon2({ title = "Nexon", color = "c
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M5.138 10.158v3.693h3.775v-.783H6.126v-.706h2.787v-.789H6.126v-.632h2.787v-.783zm15.778 3.693v-2.234l2.34 2.234H24v-3.693h-.987v2.234l-2.34-2.234h-.745v3.693zm-2.051-3.701h-4.072v3.7h4.072zm-.988 2.918H15.78v-2.127h2.097zm-16.89.783v-2.234l2.34 2.234h.748v-3.693h-.99v2.234l-2.34-2.234H0v3.693zm10.241-1.844-1.633 1.844h1.249l1.009-1.14 1.012 1.14h1.249l-1.637-1.844 1.64-1.849h-1.25l-1.014 1.145-1.012-1.145H9.589z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z" })
22
22
  ]
23
23
  }
24
24
  );
package/icons/SiPerl.cjs CHANGED
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
 
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
- const defaultColor = "#39457E";
27
+ const defaultColor = "#0073A1";
28
28
  const SiPerl = React__namespace.forwardRef(function SiPerl2({ title = "Perl", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiPerl = React__namespace.forwardRef(function SiPerl2({ title = "Perl", co
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.638 0c-.148 0-.207.689-.252 2.925-.058 2.86-.07 2.949-.51 3.914-.36.793-1.623 2.676-2.037 3.04-.373.328-1.183 1.56-1.58 2.401-.71 1.504-.659 3.52-.04 5.047.518 1.194 1.262 2.156 2.46 3.182.94.805 1.23.919 1.375.544.049-.128-.162-.572-.483-1.018-.313-.436-.843-1.362-1.178-2.059-1.382-2.926-.7-5.357.902-8.045.89-1.393 1.403-2.642 1.579-3.852.22-1.515.043-6.079-.236-6.079zm-.757 1.215c-.186 0-.228.26-.228 1.422 0 .782-.08 1.654-.177 1.938-.312.914-1.154 1.737-3.482 3.404-1.684 1.205-3.096 2.652-3.64 3.732-1.666 3.299-.195 7.311 3.42 9.333 1.613.902 2.966 1.253 2.966.768 0-.126-.054-.228-.121-.228s-.632-.332-1.254-.738c-2.69-1.755-3.947-3.927-3.747-6.482.15-1.91.873-3.08 3.796-6.135 2.522-2.636 2.69-2.97 2.693-5.304.001-1.42-.036-1.71-.226-1.71zm1.508.632c-.103.017-.14.905-.142 2.903l-.004 2.926-.744 2.812c-.83 2.54-.954 5.133-.345 7.725.558 2.202.796 2.638 1.567 2.857.343.098.89.355 1.216.572.736.49 1.395.435 2.715-.232 1.92-.97 3.209-2.222 4.067-3.953.745-1.648.856-3.71.068-5.35-.7-1.414-1.882-2.554-4.358-4.197-2.162-1.436-2.617-1.82-3.15-2.652-.322-.503-.369-.724-.308-1.444.04-.468.126-.978.192-1.134.101-.239.069-.268-.202-.182-.26.082-.34.027-.42-.286-.061-.245-.112-.372-.152-.365zm.714 4.586c.034-.007.135.113.252.306.144.237 1.022 1 1.952 1.697 2.888 2.189 5.27 4.378 4.087 8.2-.405 1.146-.99 2.07-1.963 3.098-.544.575-1.266 1.09-1.53 1.09-.047 0 .252-.43.664-.954 1.337-1.7 1.972-3.718 1.79-5.674-.168-1.796-1.557-3.975-3.753-5.89-.912-.796-1.518-1.536-1.512-1.846 0-.016.005-.025.013-.027zm-1.089 15.492c-.208-.006-.297.349-.297 1.121 0 .94.018.988.342.942.302-.042.347-.15.387-.899.032-.613-.019-.902-.183-1.039-.097-.08-.18-.123-.249-.125zm-1.052.28c-.124-.002-.226.14-.327.43-.085.245-.253.481-.373.527-.322.124-.264.55.075.55.162 0 .402-.109.534-.24.441-.442.579-.824.382-1.062-.111-.134-.206-.203-.29-.205zm2.074.063c-.312 0-.28.61.053 1.034.309.392.908.567.908.264 0-.252-.775-1.298-.961-1.298z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38" })
45
45
  ]
46
46
  }
47
47
  );
package/icons/SiPerl.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#39457E";
2
+ declare const defaultColor = "#0073A1";
3
3
  declare const SiPerl: IconType;
4
4
  export { SiPerl as default, defaultColor };
package/icons/SiPerl.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 = "#39457E";
4
+ const defaultColor = "#0073A1";
5
5
  const SiPerl = React.forwardRef(function SiPerl2({ title = "Perl", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiPerl = React.forwardRef(function SiPerl2({ title = "Perl", color = "curr
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M11.638 0c-.148 0-.207.689-.252 2.925-.058 2.86-.07 2.949-.51 3.914-.36.793-1.623 2.676-2.037 3.04-.373.328-1.183 1.56-1.58 2.401-.71 1.504-.659 3.52-.04 5.047.518 1.194 1.262 2.156 2.46 3.182.94.805 1.23.919 1.375.544.049-.128-.162-.572-.483-1.018-.313-.436-.843-1.362-1.178-2.059-1.382-2.926-.7-5.357.902-8.045.89-1.393 1.403-2.642 1.579-3.852.22-1.515.043-6.079-.236-6.079zm-.757 1.215c-.186 0-.228.26-.228 1.422 0 .782-.08 1.654-.177 1.938-.312.914-1.154 1.737-3.482 3.404-1.684 1.205-3.096 2.652-3.64 3.732-1.666 3.299-.195 7.311 3.42 9.333 1.613.902 2.966 1.253 2.966.768 0-.126-.054-.228-.121-.228s-.632-.332-1.254-.738c-2.69-1.755-3.947-3.927-3.747-6.482.15-1.91.873-3.08 3.796-6.135 2.522-2.636 2.69-2.97 2.693-5.304.001-1.42-.036-1.71-.226-1.71zm1.508.632c-.103.017-.14.905-.142 2.903l-.004 2.926-.744 2.812c-.83 2.54-.954 5.133-.345 7.725.558 2.202.796 2.638 1.567 2.857.343.098.89.355 1.216.572.736.49 1.395.435 2.715-.232 1.92-.97 3.209-2.222 4.067-3.953.745-1.648.856-3.71.068-5.35-.7-1.414-1.882-2.554-4.358-4.197-2.162-1.436-2.617-1.82-3.15-2.652-.322-.503-.369-.724-.308-1.444.04-.468.126-.978.192-1.134.101-.239.069-.268-.202-.182-.26.082-.34.027-.42-.286-.061-.245-.112-.372-.152-.365zm.714 4.586c.034-.007.135.113.252.306.144.237 1.022 1 1.952 1.697 2.888 2.189 5.27 4.378 4.087 8.2-.405 1.146-.99 2.07-1.963 3.098-.544.575-1.266 1.09-1.53 1.09-.047 0 .252-.43.664-.954 1.337-1.7 1.972-3.718 1.79-5.674-.168-1.796-1.557-3.975-3.753-5.89-.912-.796-1.518-1.536-1.512-1.846 0-.016.005-.025.013-.027zm-1.089 15.492c-.208-.006-.297.349-.297 1.121 0 .94.018.988.342.942.302-.042.347-.15.387-.899.032-.613-.019-.902-.183-1.039-.097-.08-.18-.123-.249-.125zm-1.052.28c-.124-.002-.226.14-.327.43-.085.245-.253.481-.373.527-.322.124-.264.55.075.55.162 0 .402-.109.534-.24.441-.442.579-.824.382-1.062-.111-.134-.206-.203-.29-.205zm2.074.063c-.312 0-.28.61.053 1.034.309.392.908.567.908.264 0-.252-.775-1.298-.961-1.298z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38" })
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 = "#2AC6EA";
28
+ const SiRook = React__namespace.forwardRef(function SiRook2({ title = "Rook", 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: "M1.8246 0c-.4424 0-.774.3685-.774.774v6.1198c0 .4424.3685.7747.774.7747H5.88c.4424 0 .774-.3323.774-.7747 0-.4424-.3684-.774-.774-.774H2.562V1.548h2.544v1.2903c0 .2212.0736.4056.221.553.1475.1475.3687.2218.553.2218h4.092c.4425 0 .7749-.3692.7749-.7748V1.5481H13.29v1.2903c0 .4424.3692.7748.7747.7748h4.092c.2213 0 .4056-.0743.553-.2218.1476-.1474.2211-.3686.2211-.553V1.5481h2.544V6.083H18.12c-.4424 0-.7748.3685-.7748.774 0 .4424.3692.774.7748.774h4.092c.1843 0 .4055-.0735.553-.221.1475-.1474.221-.3686.221-.553V.774c0-.4055-.3689-.7371-.6638-.774h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904h-2.544V.774c0-.4424-.3685-.7741-.774-.7741h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904H6.6914V.774C6.6914.3317 6.3222 0 5.9167 0ZM1.788 9.069c-.4424 0-.774.3686-.774.774v8.8113C1.0138 21.6037 3.4101 24 6.3594 24h11.281c2.9493 0 5.3457-2.3963 5.3457-5.3457V9.8431c0-.4424-.3686-.774-.774-.774zm.774 1.5114h18.8762v8.074c0 2.1013-1.6962 3.7975-3.7976 3.7975H6.3595c-2.1014 0-3.7976-1.6962-3.7976-3.7976zm9.4377 2.544c-1.8802 0-3.4281 1.5486-3.4281 3.4288v2.6541c0 .4424.3685.7741.774.7741h5.309c.4424 0 .774-.3685.774-.774v-2.6542c0-1.8802-1.5487-3.4288-3.4289-3.4288zm-.0367 1.4746c1.0691 0 1.9175.8484 1.9175 1.9175v1.9168h-3.8343v-1.9168c0-1.0691.8477-1.9175 1.9168-1.9175z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiRook;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#2AC6EA";
3
+ declare const SiRook: IconType;
4
+ export { SiRook 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 = "#2AC6EA";
5
+ const SiRook = React.forwardRef(function SiRook2({ title = "Rook", 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: "M1.8246 0c-.4424 0-.774.3685-.774.774v6.1198c0 .4424.3685.7747.774.7747H5.88c.4424 0 .774-.3323.774-.7747 0-.4424-.3684-.774-.774-.774H2.562V1.548h2.544v1.2903c0 .2212.0736.4056.221.553.1475.1475.3687.2218.553.2218h4.092c.4425 0 .7749-.3692.7749-.7748V1.5481H13.29v1.2903c0 .4424.3692.7748.7747.7748h4.092c.2213 0 .4056-.0743.553-.2218.1476-.1474.2211-.3686.2211-.553V1.5481h2.544V6.083H18.12c-.4424 0-.7748.3685-.7748.774 0 .4424.3692.774.7748.774h4.092c.1843 0 .4055-.0735.553-.221.1475-.1474.221-.3686.221-.553V.774c0-.4055-.3689-.7371-.6638-.774h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904h-2.544V.774c0-.4424-.3685-.7741-.774-.7741h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904H6.6914V.774C6.6914.3317 6.3222 0 5.9167 0ZM1.788 9.069c-.4424 0-.774.3686-.774.774v8.8113C1.0138 21.6037 3.4101 24 6.3594 24h11.281c2.9493 0 5.3457-2.3963 5.3457-5.3457V9.8431c0-.4424-.3686-.774-.774-.774zm.774 1.5114h18.8762v8.074c0 2.1013-1.6962 3.7975-3.7976 3.7975H6.3595c-2.1014 0-3.7976-1.6962-3.7976-3.7976zm9.4377 2.544c-1.8802 0-3.4281 1.5486-3.4281 3.4288v2.6541c0 .4424.3685.7741.774.7741h5.309c.4424 0 .774-.3685.774-.774v-2.6542c0-1.8802-1.5487-3.4288-3.4289-3.4288zm-.0367 1.4746c1.0691 0 1.9175.8484 1.9175 1.9175v1.9168h-3.8343v-1.9168c0-1.0691.8477-1.9175 1.9168-1.9175z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiRook 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 = "#111F68";
28
+ const SiUltralytics = React__namespace.forwardRef(function SiUltralytics2({ title = "Ultralytics", 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.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiUltralytics;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#111F68";
3
+ declare const SiUltralytics: IconType;
4
+ export { SiUltralytics 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 = "#111F68";
5
+ const SiUltralytics = React.forwardRef(function SiUltralytics2({ title = "Ultralytics", 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.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiUltralytics as default, defaultColor };
package/index.cjs CHANGED
@@ -351,6 +351,7 @@ const SiBentoml = require('./icons/SiBentoml.cjs');
351
351
  const SiBereal = require('./icons/SiBereal.cjs');
352
352
  const SiBetfair = require('./icons/SiBetfair.cjs');
353
353
  const SiBetterstack = require('./icons/SiBetterstack.cjs');
354
+ const SiBetterdiscord = require('./icons/SiBetterdiscord.cjs');
354
355
  const SiBevy = require('./icons/SiBevy.cjs');
355
356
  const SiBigcartel = require('./icons/SiBigcartel.cjs');
356
357
  const SiBigbasket = require('./icons/SiBigbasket.cjs');
@@ -665,6 +666,7 @@ const SiCreativetechnology = require('./icons/SiCreativetechnology.cjs');
665
666
  const SiCredly = require('./icons/SiCredly.cjs');
666
667
  const SiCrehana = require('./icons/SiCrehana.cjs');
667
668
  const SiCrewunited = require('./icons/SiCrewunited.cjs');
669
+ const SiCrewai = require('./icons/SiCrewai.cjs');
668
670
  const SiCriticalrole = require('./icons/SiCriticalrole.cjs');
669
671
  const SiCrowdin = require('./icons/SiCrowdin.cjs');
670
672
  const SiCrowdsource = require('./icons/SiCrowdsource.cjs');
@@ -1554,6 +1556,7 @@ const SiLada = require('./icons/SiLada.cjs');
1554
1556
  const SiLamborghini = require('./icons/SiLamborghini.cjs');
1555
1557
  const SiLandrover = require('./icons/SiLandrover.cjs');
1556
1558
  const SiLangchain = require('./icons/SiLangchain.cjs');
1559
+ const SiLanggraph = require('./icons/SiLanggraph.cjs');
1557
1560
  const SiLanguagetool = require('./icons/SiLanguagetool.cjs');
1558
1561
  const SiLapce = require('./icons/SiLapce.cjs');
1559
1562
  const SiLaragon = require('./icons/SiLaragon.cjs');
@@ -2424,6 +2427,7 @@ const SiRoku = require('./icons/SiRoku.cjs');
2424
2427
  const SiRoll20 = require('./icons/SiRoll20.cjs');
2425
2428
  const SiRollsroyce = require('./icons/SiRollsroyce.cjs');
2426
2429
  const SiRollupdotjs = require('./icons/SiRollupdotjs.cjs');
2430
+ const SiRook = require('./icons/SiRook.cjs');
2427
2431
  const SiRoon = require('./icons/SiRoon.cjs');
2428
2432
  const SiRootme = require('./icons/SiRootme.cjs');
2429
2433
  const SiRoots = require('./icons/SiRoots.cjs');
@@ -2963,6 +2967,7 @@ const SiUfc = require('./icons/SiUfc.cjs');
2963
2967
  const SiUikit = require('./icons/SiUikit.cjs');
2964
2968
  const SiUipath = require('./icons/SiUipath.cjs');
2965
2969
  const SiUkca = require('./icons/SiUkca.cjs');
2970
+ const SiUltralytics = require('./icons/SiUltralytics.cjs');
2966
2971
  const SiUlule = require('./icons/SiUlule.cjs');
2967
2972
  const SiUmami = require('./icons/SiUmami.cjs');
2968
2973
  const SiUmbraco = require('./icons/SiUmbraco.cjs');
@@ -3956,6 +3961,8 @@ exports.SiBetfair = SiBetfair.default;
3956
3961
  exports.SiBetfairHex = SiBetfair.defaultColor;
3957
3962
  exports.SiBetterstack = SiBetterstack.default;
3958
3963
  exports.SiBetterstackHex = SiBetterstack.defaultColor;
3964
+ exports.SiBetterdiscord = SiBetterdiscord.default;
3965
+ exports.SiBetterdiscordHex = SiBetterdiscord.defaultColor;
3959
3966
  exports.SiBevy = SiBevy.default;
3960
3967
  exports.SiBevyHex = SiBevy.defaultColor;
3961
3968
  exports.SiBigcartel = SiBigcartel.default;
@@ -4584,6 +4591,8 @@ exports.SiCrehana = SiCrehana.default;
4584
4591
  exports.SiCrehanaHex = SiCrehana.defaultColor;
4585
4592
  exports.SiCrewunited = SiCrewunited.default;
4586
4593
  exports.SiCrewunitedHex = SiCrewunited.defaultColor;
4594
+ exports.SiCrewai = SiCrewai.default;
4595
+ exports.SiCrewaiHex = SiCrewai.defaultColor;
4587
4596
  exports.SiCriticalrole = SiCriticalrole.default;
4588
4597
  exports.SiCriticalroleHex = SiCriticalrole.defaultColor;
4589
4598
  exports.SiCrowdin = SiCrowdin.default;
@@ -6362,6 +6371,8 @@ exports.SiLandrover = SiLandrover.default;
6362
6371
  exports.SiLandroverHex = SiLandrover.defaultColor;
6363
6372
  exports.SiLangchain = SiLangchain.default;
6364
6373
  exports.SiLangchainHex = SiLangchain.defaultColor;
6374
+ exports.SiLanggraph = SiLanggraph.default;
6375
+ exports.SiLanggraphHex = SiLanggraph.defaultColor;
6365
6376
  exports.SiLanguagetool = SiLanguagetool.default;
6366
6377
  exports.SiLanguagetoolHex = SiLanguagetool.defaultColor;
6367
6378
  exports.SiLapce = SiLapce.default;
@@ -8102,6 +8113,8 @@ exports.SiRollsroyce = SiRollsroyce.default;
8102
8113
  exports.SiRollsroyceHex = SiRollsroyce.defaultColor;
8103
8114
  exports.SiRollupdotjs = SiRollupdotjs.default;
8104
8115
  exports.SiRollupdotjsHex = SiRollupdotjs.defaultColor;
8116
+ exports.SiRook = SiRook.default;
8117
+ exports.SiRookHex = SiRook.defaultColor;
8105
8118
  exports.SiRoon = SiRoon.default;
8106
8119
  exports.SiRoonHex = SiRoon.defaultColor;
8107
8120
  exports.SiRootme = SiRootme.default;
@@ -9180,6 +9193,8 @@ exports.SiUipath = SiUipath.default;
9180
9193
  exports.SiUipathHex = SiUipath.defaultColor;
9181
9194
  exports.SiUkca = SiUkca.default;
9182
9195
  exports.SiUkcaHex = SiUkca.defaultColor;
9196
+ exports.SiUltralytics = SiUltralytics.default;
9197
+ exports.SiUltralyticsHex = SiUltralytics.defaultColor;
9183
9198
  exports.SiUlule = SiUlule.default;
9184
9199
  exports.SiUluleHex = SiUlule.defaultColor;
9185
9200
  exports.SiUmami = SiUmami.default;
package/index.d.ts CHANGED
@@ -347,6 +347,7 @@ export { default as SiBentoml, defaultColor as SiBentomlHex } from './icons/SiBe
347
347
  export { default as SiBereal, defaultColor as SiBerealHex } from './icons/SiBereal';
348
348
  export { default as SiBetfair, defaultColor as SiBetfairHex } from './icons/SiBetfair';
349
349
  export { default as SiBetterstack, defaultColor as SiBetterstackHex } from './icons/SiBetterstack';
350
+ export { default as SiBetterdiscord, defaultColor as SiBetterdiscordHex } from './icons/SiBetterdiscord';
350
351
  export { default as SiBevy, defaultColor as SiBevyHex } from './icons/SiBevy';
351
352
  export { default as SiBigcartel, defaultColor as SiBigcartelHex } from './icons/SiBigcartel';
352
353
  export { default as SiBigbasket, defaultColor as SiBigbasketHex } from './icons/SiBigbasket';
@@ -661,6 +662,7 @@ export { default as SiCreativetechnology, defaultColor as SiCreativetechnologyHe
661
662
  export { default as SiCredly, defaultColor as SiCredlyHex } from './icons/SiCredly';
662
663
  export { default as SiCrehana, defaultColor as SiCrehanaHex } from './icons/SiCrehana';
663
664
  export { default as SiCrewunited, defaultColor as SiCrewunitedHex } from './icons/SiCrewunited';
665
+ export { default as SiCrewai, defaultColor as SiCrewaiHex } from './icons/SiCrewai';
664
666
  export { default as SiCriticalrole, defaultColor as SiCriticalroleHex } from './icons/SiCriticalrole';
665
667
  export { default as SiCrowdin, defaultColor as SiCrowdinHex } from './icons/SiCrowdin';
666
668
  export { default as SiCrowdsource, defaultColor as SiCrowdsourceHex } from './icons/SiCrowdsource';
@@ -1550,6 +1552,7 @@ export { default as SiLada, defaultColor as SiLadaHex } from './icons/SiLada';
1550
1552
  export { default as SiLamborghini, defaultColor as SiLamborghiniHex } from './icons/SiLamborghini';
1551
1553
  export { default as SiLandrover, defaultColor as SiLandroverHex } from './icons/SiLandrover';
1552
1554
  export { default as SiLangchain, defaultColor as SiLangchainHex } from './icons/SiLangchain';
1555
+ export { default as SiLanggraph, defaultColor as SiLanggraphHex } from './icons/SiLanggraph';
1553
1556
  export { default as SiLanguagetool, defaultColor as SiLanguagetoolHex } from './icons/SiLanguagetool';
1554
1557
  export { default as SiLapce, defaultColor as SiLapceHex } from './icons/SiLapce';
1555
1558
  export { default as SiLaragon, defaultColor as SiLaragonHex } from './icons/SiLaragon';
@@ -2420,6 +2423,7 @@ export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku';
2420
2423
  export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20';
2421
2424
  export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce';
2422
2425
  export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs';
2426
+ export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook';
2423
2427
  export { default as SiRoon, defaultColor as SiRoonHex } from './icons/SiRoon';
2424
2428
  export { default as SiRootme, defaultColor as SiRootmeHex } from './icons/SiRootme';
2425
2429
  export { default as SiRoots, defaultColor as SiRootsHex } from './icons/SiRoots';
@@ -2959,6 +2963,7 @@ export { default as SiUfc, defaultColor as SiUfcHex } from './icons/SiUfc';
2959
2963
  export { default as SiUikit, defaultColor as SiUikitHex } from './icons/SiUikit';
2960
2964
  export { default as SiUipath, defaultColor as SiUipathHex } from './icons/SiUipath';
2961
2965
  export { default as SiUkca, defaultColor as SiUkcaHex } from './icons/SiUkca';
2966
+ export { default as SiUltralytics, defaultColor as SiUltralyticsHex } from './icons/SiUltralytics';
2962
2967
  export { default as SiUlule, defaultColor as SiUluleHex } from './icons/SiUlule';
2963
2968
  export { default as SiUmami, defaultColor as SiUmamiHex } from './icons/SiUmami';
2964
2969
  export { default as SiUmbraco, defaultColor as SiUmbracoHex } from './icons/SiUmbraco';
package/index.mjs CHANGED
@@ -347,6 +347,7 @@ export { default as SiBentoml, defaultColor as SiBentomlHex } from './icons/SiBe
347
347
  export { default as SiBereal, defaultColor as SiBerealHex } from './icons/SiBereal.mjs';
348
348
  export { default as SiBetfair, defaultColor as SiBetfairHex } from './icons/SiBetfair.mjs';
349
349
  export { default as SiBetterstack, defaultColor as SiBetterstackHex } from './icons/SiBetterstack.mjs';
350
+ export { default as SiBetterdiscord, defaultColor as SiBetterdiscordHex } from './icons/SiBetterdiscord.mjs';
350
351
  export { default as SiBevy, defaultColor as SiBevyHex } from './icons/SiBevy.mjs';
351
352
  export { default as SiBigcartel, defaultColor as SiBigcartelHex } from './icons/SiBigcartel.mjs';
352
353
  export { default as SiBigbasket, defaultColor as SiBigbasketHex } from './icons/SiBigbasket.mjs';
@@ -661,6 +662,7 @@ export { default as SiCreativetechnology, defaultColor as SiCreativetechnologyHe
661
662
  export { default as SiCredly, defaultColor as SiCredlyHex } from './icons/SiCredly.mjs';
662
663
  export { default as SiCrehana, defaultColor as SiCrehanaHex } from './icons/SiCrehana.mjs';
663
664
  export { default as SiCrewunited, defaultColor as SiCrewunitedHex } from './icons/SiCrewunited.mjs';
665
+ export { default as SiCrewai, defaultColor as SiCrewaiHex } from './icons/SiCrewai.mjs';
664
666
  export { default as SiCriticalrole, defaultColor as SiCriticalroleHex } from './icons/SiCriticalrole.mjs';
665
667
  export { default as SiCrowdin, defaultColor as SiCrowdinHex } from './icons/SiCrowdin.mjs';
666
668
  export { default as SiCrowdsource, defaultColor as SiCrowdsourceHex } from './icons/SiCrowdsource.mjs';
@@ -1550,6 +1552,7 @@ export { default as SiLada, defaultColor as SiLadaHex } from './icons/SiLada.mjs
1550
1552
  export { default as SiLamborghini, defaultColor as SiLamborghiniHex } from './icons/SiLamborghini.mjs';
1551
1553
  export { default as SiLandrover, defaultColor as SiLandroverHex } from './icons/SiLandrover.mjs';
1552
1554
  export { default as SiLangchain, defaultColor as SiLangchainHex } from './icons/SiLangchain.mjs';
1555
+ export { default as SiLanggraph, defaultColor as SiLanggraphHex } from './icons/SiLanggraph.mjs';
1553
1556
  export { default as SiLanguagetool, defaultColor as SiLanguagetoolHex } from './icons/SiLanguagetool.mjs';
1554
1557
  export { default as SiLapce, defaultColor as SiLapceHex } from './icons/SiLapce.mjs';
1555
1558
  export { default as SiLaragon, defaultColor as SiLaragonHex } from './icons/SiLaragon.mjs';
@@ -2420,6 +2423,7 @@ export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku.mjs
2420
2423
  export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20.mjs';
2421
2424
  export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce.mjs';
2422
2425
  export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs.mjs';
2426
+ export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook.mjs';
2423
2427
  export { default as SiRoon, defaultColor as SiRoonHex } from './icons/SiRoon.mjs';
2424
2428
  export { default as SiRootme, defaultColor as SiRootmeHex } from './icons/SiRootme.mjs';
2425
2429
  export { default as SiRoots, defaultColor as SiRootsHex } from './icons/SiRoots.mjs';
@@ -2959,6 +2963,7 @@ export { default as SiUfc, defaultColor as SiUfcHex } from './icons/SiUfc.mjs';
2959
2963
  export { default as SiUikit, defaultColor as SiUikitHex } from './icons/SiUikit.mjs';
2960
2964
  export { default as SiUipath, defaultColor as SiUipathHex } from './icons/SiUipath.mjs';
2961
2965
  export { default as SiUkca, defaultColor as SiUkcaHex } from './icons/SiUkca.mjs';
2966
+ export { default as SiUltralytics, defaultColor as SiUltralyticsHex } from './icons/SiUltralytics.mjs';
2962
2967
  export { default as SiUlule, defaultColor as SiUluleHex } from './icons/SiUlule.mjs';
2963
2968
  export { default as SiUmami, defaultColor as SiUmamiHex } from './icons/SiUmami.mjs';
2964
2969
  export { default as SiUmbraco, defaultColor as SiUmbracoHex } from './icons/SiUmbraco.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "11.0.1",
3
+ "version": "11.1.0",
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.2.0",
86
+ "simple-icons": "14.3.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 SiBetterdiscordProps = 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 = '#3E82E5';
22
+
23
+ const SiBetterdiscord: IconType = React.forwardRef<SVGSVGElement, SiBetterdiscordProps>(function SiBetterdiscord({title = 'BetterDiscord', 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.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiBetterdiscord as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiCrewaiProps = 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 = '#FF5A50';
22
+
23
+ const SiCrewai: IconType = React.forwardRef<SVGSVGElement, SiCrewaiProps>(function SiCrewai({title = 'CrewAI', 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.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiCrewai as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiLanggraphProps = 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 = '#1C3C3C';
22
+
23
+ const SiLanggraph: IconType = React.forwardRef<SVGSVGElement, SiLanggraphProps>(function SiLanggraph({title = 'LangGraph', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M6.099 5.88H17.9C21.264 5.88 24 8.625 24 12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12Zm5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a1.539 1.539 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.575 1.575 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075-.13.095-.245.203-.342.334-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a.989.989 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.29.29 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.357.357 0 0 1-.008.057c-.009.046-.017.09.018.13a.605.605 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223-.026.047-.054.097-.094.143-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036.016 0 .033 0 .05-.002-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665 0-.06 0-.119.005-.176.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568.008-.026.016-.048.026-.074.019.003.039.008.059.014.086.021.178.045.223-.057zm6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01c-.126 0-.25.023-.364.068l-.58-.848-.405.278.583.851a1.009 1.009 0 0 0 .05 1.376zm-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm.932-3.586v-.503h-1.55a1.003 1.003 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1.014 1.014 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiLanggraph as default, defaultColor };
45
+
@@ -20,7 +20,7 @@
20
20
 
21
21
  const defaultColor = '#293239';
22
22
 
23
- const SiMikrotik: IconType = React.forwardRef<SVGSVGElement, SiMikrotikProps>(function SiMikrotik({title = 'Mikrotik', color = 'currentColor', size = 24, ...others }, ref) {
23
+ const SiMikrotik: IconType = React.forwardRef<SVGSVGElement, SiMikrotikProps>(function SiMikrotik({title = 'MikroTik', color = 'currentColor', size = 24, ...others }, ref) {
24
24
  if (color === 'default') {
25
25
  color = defaultColor;
26
26
  }
@@ -20,7 +20,7 @@
20
20
 
21
21
  const defaultColor = '#000000';
22
22
 
23
- const SiNexon: IconType = React.forwardRef<SVGSVGElement, SiNexonProps>(function SiNexon({title = 'Nexon', color = 'currentColor', size = 24, ...others }, ref) {
23
+ const SiNexon: IconType = React.forwardRef<SVGSVGElement, SiNexonProps>(function SiNexon({title = 'NEXON', color = 'currentColor', size = 24, ...others }, ref) {
24
24
  if (color === 'default') {
25
25
  color = defaultColor;
26
26
  }
@@ -36,7 +36,7 @@
36
36
  {...others}
37
37
  >
38
38
  <title>{title}</title>
39
- <path d='M5.138 10.158v3.693h3.775v-.783H6.126v-.706h2.787v-.789H6.126v-.632h2.787v-.783zm15.778 3.693v-2.234l2.34 2.234H24v-3.693h-.987v2.234l-2.34-2.234h-.745v3.693zm-2.051-3.701h-4.072v3.7h4.072zm-.988 2.918H15.78v-2.127h2.097zm-16.89.783v-2.234l2.34 2.234h.748v-3.693h-.99v2.234l-2.34-2.234H0v3.693zm10.241-1.844-1.633 1.844h1.249l1.009-1.14 1.012 1.14h1.249l-1.637-1.844 1.64-1.849h-1.25l-1.014 1.145-1.012-1.145H9.589z' />
39
+ <path d='M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z' />
40
40
  </svg>
41
41
  );
42
42
  });
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#39457E';
21
+ const defaultColor = '#0073A1';
22
22
 
23
23
  const SiPerl: IconType = React.forwardRef<SVGSVGElement, SiPerlProps>(function SiPerl({title = 'Perl', 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='M11.638 0c-.148 0-.207.689-.252 2.925-.058 2.86-.07 2.949-.51 3.914-.36.793-1.623 2.676-2.037 3.04-.373.328-1.183 1.56-1.58 2.401-.71 1.504-.659 3.52-.04 5.047.518 1.194 1.262 2.156 2.46 3.182.94.805 1.23.919 1.375.544.049-.128-.162-.572-.483-1.018-.313-.436-.843-1.362-1.178-2.059-1.382-2.926-.7-5.357.902-8.045.89-1.393 1.403-2.642 1.579-3.852.22-1.515.043-6.079-.236-6.079zm-.757 1.215c-.186 0-.228.26-.228 1.422 0 .782-.08 1.654-.177 1.938-.312.914-1.154 1.737-3.482 3.404-1.684 1.205-3.096 2.652-3.64 3.732-1.666 3.299-.195 7.311 3.42 9.333 1.613.902 2.966 1.253 2.966.768 0-.126-.054-.228-.121-.228s-.632-.332-1.254-.738c-2.69-1.755-3.947-3.927-3.747-6.482.15-1.91.873-3.08 3.796-6.135 2.522-2.636 2.69-2.97 2.693-5.304.001-1.42-.036-1.71-.226-1.71zm1.508.632c-.103.017-.14.905-.142 2.903l-.004 2.926-.744 2.812c-.83 2.54-.954 5.133-.345 7.725.558 2.202.796 2.638 1.567 2.857.343.098.89.355 1.216.572.736.49 1.395.435 2.715-.232 1.92-.97 3.209-2.222 4.067-3.953.745-1.648.856-3.71.068-5.35-.7-1.414-1.882-2.554-4.358-4.197-2.162-1.436-2.617-1.82-3.15-2.652-.322-.503-.369-.724-.308-1.444.04-.468.126-.978.192-1.134.101-.239.069-.268-.202-.182-.26.082-.34.027-.42-.286-.061-.245-.112-.372-.152-.365zm.714 4.586c.034-.007.135.113.252.306.144.237 1.022 1 1.952 1.697 2.888 2.189 5.27 4.378 4.087 8.2-.405 1.146-.99 2.07-1.963 3.098-.544.575-1.266 1.09-1.53 1.09-.047 0 .252-.43.664-.954 1.337-1.7 1.972-3.718 1.79-5.674-.168-1.796-1.557-3.975-3.753-5.89-.912-.796-1.518-1.536-1.512-1.846 0-.016.005-.025.013-.027zm-1.089 15.492c-.208-.006-.297.349-.297 1.121 0 .94.018.988.342.942.302-.042.347-.15.387-.899.032-.613-.019-.902-.183-1.039-.097-.08-.18-.123-.249-.125zm-1.052.28c-.124-.002-.226.14-.327.43-.085.245-.253.481-.373.527-.322.124-.264.55.075.55.162 0 .402-.109.534-.24.441-.442.579-.824.382-1.062-.111-.134-.206-.203-.29-.205zm2.074.063c-.312 0-.28.61.053 1.034.309.392.908.567.908.264 0-.252-.775-1.298-.961-1.298z' />
39
+ <path d='M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38' />
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 SiRookProps = 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 = '#2AC6EA';
22
+
23
+ const SiRook: IconType = React.forwardRef<SVGSVGElement, SiRookProps>(function SiRook({title = 'Rook', 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='M1.8246 0c-.4424 0-.774.3685-.774.774v6.1198c0 .4424.3685.7747.774.7747H5.88c.4424 0 .774-.3323.774-.7747 0-.4424-.3684-.774-.774-.774H2.562V1.548h2.544v1.2903c0 .2212.0736.4056.221.553.1475.1475.3687.2218.553.2218h4.092c.4425 0 .7749-.3692.7749-.7748V1.5481H13.29v1.2903c0 .4424.3692.7748.7747.7748h4.092c.2213 0 .4056-.0743.553-.2218.1476-.1474.2211-.3686.2211-.553V1.5481h2.544V6.083H18.12c-.4424 0-.7748.3685-.7748.774 0 .4424.3692.774.7748.774h4.092c.1843 0 .4055-.0735.553-.221.1475-.1474.221-.3686.221-.553V.774c0-.4055-.3689-.7371-.6638-.774h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904h-2.544V.774c0-.4424-.3685-.7741-.774-.7741h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904H6.6914V.774C6.6914.3317 6.3222 0 5.9167 0ZM1.788 9.069c-.4424 0-.774.3686-.774.774v8.8113C1.0138 21.6037 3.4101 24 6.3594 24h11.281c2.9493 0 5.3457-2.3963 5.3457-5.3457V9.8431c0-.4424-.3686-.774-.774-.774zm.774 1.5114h18.8762v8.074c0 2.1013-1.6962 3.7975-3.7976 3.7975H6.3595c-2.1014 0-3.7976-1.6962-3.7976-3.7976zm9.4377 2.544c-1.8802 0-3.4281 1.5486-3.4281 3.4288v2.6541c0 .4424.3685.7741.774.7741h5.309c.4424 0 .774-.3685.774-.774v-2.6542c0-1.8802-1.5487-3.4288-3.4289-3.4288zm-.0367 1.4746c1.0691 0 1.9175.8484 1.9175 1.9175v1.9168h-3.8343v-1.9168c0-1.0691.8477-1.9175 1.9168-1.9175z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiRook as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiUltralyticsProps = 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 = '#111F68';
22
+
23
+ const SiUltralytics: IconType = React.forwardRef<SVGSVGElement, SiUltralyticsProps>(function SiUltralytics({title = 'Ultralytics', 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.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiUltralytics as default, defaultColor };
45
+