@icons-pack/react-simple-icons 13.5.0 → 13.7.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 15.6.0](https://github.com/simple-icons/simple-icons/releases/tag/15.6.0)
6
+ This package provides the [Simple Icons 15.8.0](https://github.com/simple-icons/simple-icons/releases/tag/15.8.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">
@@ -24,17 +24,7 @@ packaged as a set of [React](https://facebook.github.io/react/) components.
24
24
  Install the package in your project directory with:
25
25
 
26
26
  ```shell
27
- # with yarn
28
- yarn add @icons-pack/react-simple-icons
29
-
30
- # with npm
31
- npm add @icons-pack/react-simple-icons
32
-
33
- # with pnpm
34
- pnpm add @icons-pack/react-simple-icons
35
-
36
- # with bun
37
- bun add @icons-pack/react-simple-icons
27
+ npm i @icons-pack/react-simple-icons
38
28
  ```
39
29
 
40
30
  > TypeScript Support
@@ -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 = "#165BFF";
28
+ const SiAvaloniaui = React__namespace.forwardRef(function SiAvaloniaui2({ title = "AvaloniaUI", 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.034 8.208c-2.003 0-3.627 1.696-3.627 3.789s1.624 3.789 3.627 3.789 3.627-1.697 3.627-3.79-1.624-3.788-3.627-3.788m-7.392 2.067c.72.211 1.248.902 1.248 1.722s-.528 1.51-1.248 1.721c.752 3.54 3.776 6.188 7.392 6.188 1.316 0 2.554-.35 3.632-.967v.914h3.94v-7.528a5 5 0 0 0 0-.224v-.104c0-4.369-3.39-7.91-7.572-7.91-3.616 0-6.64 2.648-7.392 6.188m-.5 2.982c.67 0 1.212-.567 1.212-1.266s-.542-1.265-1.212-1.265-1.211.566-1.211 1.265c0 .7.542 1.266 1.211 1.266M20.682 24H11.8C5.549 23.887.515 18.556.515 12c0-6.627 5.143-12 11.487-12 6.241 0 11.32 5.2 11.483 11.678l-.02 9.743C23.3 22.876 22.12 24 20.683 24" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiAvaloniaui;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#165BFF";
3
+ declare const SiAvaloniaui: IconType;
4
+ export { SiAvaloniaui 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 = "#165BFF";
5
+ const SiAvaloniaui = React.forwardRef(function SiAvaloniaui2({ title = "AvaloniaUI", 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.034 8.208c-2.003 0-3.627 1.696-3.627 3.789s1.624 3.789 3.627 3.789 3.627-1.697 3.627-3.79-1.624-3.788-3.627-3.788m-7.392 2.067c.72.211 1.248.902 1.248 1.722s-.528 1.51-1.248 1.721c.752 3.54 3.776 6.188 7.392 6.188 1.316 0 2.554-.35 3.632-.967v.914h3.94v-7.528a5 5 0 0 0 0-.224v-.104c0-4.369-3.39-7.91-7.572-7.91-3.616 0-6.64 2.648-7.392 6.188m-.5 2.982c.67 0 1.212-.567 1.212-1.266s-.542-1.265-1.212-1.265-1.211.566-1.211 1.265c0 .7.542 1.266 1.211 1.266M20.682 24H11.8C5.549 23.887.515 18.556.515 12c0-6.627 5.143-12 11.487-12 6.241 0 11.32 5.2 11.483 11.678l-.02 9.743C23.3 22.876 22.12 24 20.683 24" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiAvaloniaui 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 = "#DA203E";
28
+ const SiGitcode = React__namespace.forwardRef(function SiGitcode2({ title = "GitCode", 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: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiGitcode;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#DA203E";
3
+ declare const SiGitcode: IconType;
4
+ export { SiGitcode 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 = "#DA203E";
5
+ const SiGitcode = React.forwardRef(function SiGitcode2({ title = "GitCode", 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: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiGitcode as default, defaultColor };
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
 
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
- const defaultColor = "#372213";
27
+ const defaultColor = "#1E1914";
28
28
  const SiGoodreads = React__namespace.forwardRef(function SiGoodreads2({ title = "Goodreads", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiGoodreads = React__namespace.forwardRef(function SiGoodreads2({ title =
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.43 23.995c-3.608-.208-6.274-2.077-6.448-5.078.695.007 1.375-.013 2.07-.006.224 1.342 1.065 2.43 2.683 3.026 1.583.496 3.737.46 5.082-.174 1.351-.636 2.145-1.822 2.503-3.577.212-1.042.236-1.734.231-2.92l-.005-1.631h-.059c-1.245 2.564-3.315 3.53-5.59 3.475-5.74-.054-7.68-4.534-7.528-8.606.01-5.241 3.22-8.537 7.557-8.495 2.354-.14 4.605 1.362 5.554 3.37l.059.002.002-2.918 2.099.004-.002 15.717c-.193 7.04-4.376 7.89-8.209 7.811zm6.1-15.633c-.096-3.26-1.601-6.62-5.503-6.645-3.954-.017-5.625 3.592-5.604 6.85-.013 3.439 1.643 6.305 4.703 6.762 4.532.591 6.551-3.411 6.404-6.967z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.346.026c.422-.083.859.037 1.179.325.346.284.55.705.557 1.153-.023.457-.247.88-.612 1.156l-2.182 1.748a.601.601 0 0 0-.255.43.52.52 0 0 0 .11.424 5.886 5.886 0 0 1 .832 6.58c-1.394 2.79-4.503 3.99-7.501 2.927a.792.792 0 0 0-.499-.01c-.224.07-.303.18-.453.383l-.014.02-.941 1.254s-.792.985.457.935c3.027-.119 3.817-.119 5.439-.01 2.641.18 3.806 1.903 3.806 3.275 0 1.623-1.036 3.383-3.809 3.383a117.46 117.46 0 0 0-5.517-.03c-.31.005-.597.013-.835.02-.228.006-.41.011-.52.011-.712 0-1.648-.186-1.66-1.068-.008-.729.624-1.12 1.11-1.172.43-.045.815.007 1.24.064.252.034.518.07.815.088.185.011.366.025.552.038.53.038 1.102.08 1.926.087.427.005.759.01 1.025.015.695.012.941.016 1.28-.015 1.248-.112 1.832-.61 1.832-1.376 0-.805-.584-1.264-1.698-1.414-1.564-.213-2.33-.163-3.72-.074a87.66 87.66 0 0 1-1.669.095c-.608.029-2.449.026-2.682-1.492-.053-.416-.073-1.116.807-2.325l.75-1.003c.36-.49.582-.898.053-1.559 0 0-.39-.468-.52-.638-1.215-1.587-1.512-4.08-.448-6.114 1.577-3.011 5.4-4.26 8.37-2.581.253.143.438.203.655.163.201-.032.27-.167.363-.344.02-.04.042-.082.067-.126.004-.01.241-.465.535-1.028l.734-1.41a1.493 1.493 0 0 1 1.041-.785ZM9.193 13.243c1.854.903 3.912.208 5.254-2.47 1.352-2.699.827-5.11-1.041-6.023C10.918 3.537 8.81 5.831 8.017 7.41c-1.355 2.698-.717 4.886 1.147 5.818Z" })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#372213";
2
+ declare const defaultColor = "#1E1914";
3
3
  declare const SiGoodreads: IconType;
4
4
  export { SiGoodreads as default, defaultColor };
@@ -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 = "#372213";
4
+ const defaultColor = "#1E1914";
5
5
  const SiGoodreads = React.forwardRef(function SiGoodreads2({ title = "Goodreads", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiGoodreads = React.forwardRef(function SiGoodreads2({ title = "Goodreads"
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M11.43 23.995c-3.608-.208-6.274-2.077-6.448-5.078.695.007 1.375-.013 2.07-.006.224 1.342 1.065 2.43 2.683 3.026 1.583.496 3.737.46 5.082-.174 1.351-.636 2.145-1.822 2.503-3.577.212-1.042.236-1.734.231-2.92l-.005-1.631h-.059c-1.245 2.564-3.315 3.53-5.59 3.475-5.74-.054-7.68-4.534-7.528-8.606.01-5.241 3.22-8.537 7.557-8.495 2.354-.14 4.605 1.362 5.554 3.37l.059.002.002-2.918 2.099.004-.002 15.717c-.193 7.04-4.376 7.89-8.209 7.811zm6.1-15.633c-.096-3.26-1.601-6.62-5.503-6.645-3.954-.017-5.625 3.592-5.604 6.85-.013 3.439 1.643 6.305 4.703 6.762 4.532.591 6.551-3.411 6.404-6.967z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M17.346.026c.422-.083.859.037 1.179.325.346.284.55.705.557 1.153-.023.457-.247.88-.612 1.156l-2.182 1.748a.601.601 0 0 0-.255.43.52.52 0 0 0 .11.424 5.886 5.886 0 0 1 .832 6.58c-1.394 2.79-4.503 3.99-7.501 2.927a.792.792 0 0 0-.499-.01c-.224.07-.303.18-.453.383l-.014.02-.941 1.254s-.792.985.457.935c3.027-.119 3.817-.119 5.439-.01 2.641.18 3.806 1.903 3.806 3.275 0 1.623-1.036 3.383-3.809 3.383a117.46 117.46 0 0 0-5.517-.03c-.31.005-.597.013-.835.02-.228.006-.41.011-.52.011-.712 0-1.648-.186-1.66-1.068-.008-.729.624-1.12 1.11-1.172.43-.045.815.007 1.24.064.252.034.518.07.815.088.185.011.366.025.552.038.53.038 1.102.08 1.926.087.427.005.759.01 1.025.015.695.012.941.016 1.28-.015 1.248-.112 1.832-.61 1.832-1.376 0-.805-.584-1.264-1.698-1.414-1.564-.213-2.33-.163-3.72-.074a87.66 87.66 0 0 1-1.669.095c-.608.029-2.449.026-2.682-1.492-.053-.416-.073-1.116.807-2.325l.75-1.003c.36-.49.582-.898.053-1.559 0 0-.39-.468-.52-.638-1.215-1.587-1.512-4.08-.448-6.114 1.577-3.011 5.4-4.26 8.37-2.581.253.143.438.203.655.163.201-.032.27-.167.363-.344.02-.04.042-.082.067-.126.004-.01.241-.465.535-1.028l.734-1.41a1.493 1.493 0 0 1 1.041-.785ZM9.193 13.243c1.854.903 3.912.208 5.254-2.47 1.352-2.699.827-5.11-1.041-6.023C10.918 3.537 8.81 5.831 8.017 7.41c-1.355 2.698-.717 4.886 1.147 5.818Z" })
22
22
  ]
23
23
  }
24
24
  );
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
 
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
- const defaultColor = "#003087";
27
+ const defaultColor = "#002991";
28
28
  const SiPaypal = React__namespace.forwardRef(function SiPaypal2({ title = "PayPal", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiPaypal = React__namespace.forwardRef(function SiPaypal2({ title = "PayPa
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.016 19.198h-4.2a.562.562 0 0 1-.555-.65L5.093.584A.692.692 0 0 1 5.776 0h7.222c3.417 0 5.904 2.488 5.846 5.5-.006.25-.027.5-.066.747A6.794 6.794 0 0 1 12.071 12H8.743a.69.69 0 0 0-.682.583l-.325 2.056-.013.083-.692 4.39-.015.087zM19.79 6.142c-.01.087-.01.175-.023.261a7.76 7.76 0 0 1-7.695 6.598H9.007l-.283 1.795-.013.083-.692 4.39-.134.843-.014.088H6.86l-.497 3.15a.562.562 0 0 0 .555.65h3.612c.34 0 .63-.249.683-.585l.952-6.031a.692.692 0 0 1 .683-.584h2.126a6.793 6.793 0 0 0 6.707-5.752c.306-1.95-.466-3.744-1.89-4.906z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.607 4.653H8.941L6.645 19.251H1.82L4.862 0h7.995c3.754 0 6.375 2.294 6.473 5.513-.648-.478-2.105-.86-3.722-.86m6.57 5.546c0 3.41-3.01 6.853-6.958 6.853h-2.493L11.595 24H6.74l1.845-11.538h3.592c4.208 0 7.346-3.634 7.153-6.949a5.24 5.24 0 0 1 2.848 4.686M9.653 5.546h6.408c.907 0 1.942.222 2.363.541-.195 2.741-2.655 5.483-6.441 5.483H8.714Z" })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#003087";
2
+ declare const defaultColor = "#002991";
3
3
  declare const SiPaypal: IconType;
4
4
  export { SiPaypal as default, defaultColor };
@@ -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 = "#003087";
4
+ const defaultColor = "#002991";
5
5
  const SiPaypal = React.forwardRef(function SiPaypal2({ title = "PayPal", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiPaypal = React.forwardRef(function SiPaypal2({ title = "PayPal", color =
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M7.016 19.198h-4.2a.562.562 0 0 1-.555-.65L5.093.584A.692.692 0 0 1 5.776 0h7.222c3.417 0 5.904 2.488 5.846 5.5-.006.25-.027.5-.066.747A6.794 6.794 0 0 1 12.071 12H8.743a.69.69 0 0 0-.682.583l-.325 2.056-.013.083-.692 4.39-.015.087zM19.79 6.142c-.01.087-.01.175-.023.261a7.76 7.76 0 0 1-7.695 6.598H9.007l-.283 1.795-.013.083-.692 4.39-.134.843-.014.088H6.86l-.497 3.15a.562.562 0 0 0 .555.65h3.612c.34 0 .63-.249.683-.585l.952-6.031a.692.692 0 0 1 .683-.584h2.126a6.793 6.793 0 0 0 6.707-5.752c.306-1.95-.466-3.744-1.89-4.906z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M15.607 4.653H8.941L6.645 19.251H1.82L4.862 0h7.995c3.754 0 6.375 2.294 6.473 5.513-.648-.478-2.105-.86-3.722-.86m6.57 5.546c0 3.41-3.01 6.853-6.958 6.853h-2.493L11.595 24H6.74l1.845-11.538h3.592c4.208 0 7.346-3.634 7.153-6.949a5.24 5.24 0 0 1 2.848 4.686M9.653 5.546h6.408c.907 0 1.942.222 2.363.541-.195 2.741-2.655 5.483-6.441 5.483H8.714Z" })
22
22
  ]
23
23
  }
24
24
  );
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
 
25
25
  const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
26
 
27
- const defaultColor = "#404040";
27
+ const defaultColor = "#4C00FF";
28
28
  const SiPerforce = React__namespace.forwardRef(function SiPerforce2({ title = "Perforce", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiPerforce = React__namespace.forwardRef(function SiPerforce2({ title = "P
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.741 8.755c.164-.425.352-.834.573-1.219-.213-.196-.745-.613-.712-.646 2.774-3.322 6.391-4.32 9.59-3.74.655.09 1.31.246 1.956.483 4.583 1.702 6.898 6.75 5.18 11.284a9.33 9.33 0 0 1-.614 1.285c.254.22.81.63.778.663-3.077 3.641-7.177 4.484-10.589 3.47a11.18 11.18 0 0 1-.982-.295c-4.574-1.702-6.898-6.751-5.18-11.285zM19.371.982c-.581.556-1.277 1.227-1.62 1.53a11.886 11.886 0 0 0-1.727-.802C10.819-.221 5.337 1.964 2.317 6.03.738 8.364-.195 11.236.034 14.19c0 0 .009 5.556 5.14 8.83.417-.574.948-1.31 1.3-1.785a12.36 12.36 0 0 0 1.817.86c5.892 2.184 12.422-.606 14.557-6.228 0 0 1.563-3.428 1.048-7.176 0 0-.401-5.057-4.525-7.708z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.386 14.957 2.279-1.316-.576-.333A1.48 1.48 0 0 1 8.334 12c0-.262.073-.915.755-1.308l10.31-5.953a1.49 1.49 0 0 1 1.51 0c.228.13.755.52.755 1.308v11.906c0 .788-.527 1.178-.754 1.308s-.828.393-1.51 0l-2.732-1.577-2.334 1.348 3.899 2.251a3.81 3.81 0 0 0 3.845 0A3.81 3.81 0 0 0 24 17.953V6.047a3.81 3.81 0 0 0-1.922-3.33 3.83 3.83 0 0 0-1.923-.52c-.66 0-1.32.173-1.922.52L7.923 8.67A3.81 3.81 0 0 0 6 12c0 1.17.51 2.234 1.386 2.956zm9.228-5.913-2.279 1.316.576.333c.682.393.755 1.046.755 1.308 0 .263-.073.915-.755 1.308l-10.31 5.954a1.49 1.49 0 0 1-1.51 0 1.48 1.48 0 0 1-.755-1.308V6.047c0-.788.527-1.178.754-1.308s.828-.393 1.51 0l2.732 1.577 2.334-1.348-3.899-2.251a3.81 3.81 0 0 0-3.845 0A3.81 3.81 0 0 0 0 6.047v11.906c0 1.39.72 2.635 1.922 3.33a3.83 3.83 0 0 0 1.923.52c.66 0 1.32-.173 1.922-.52l10.31-5.953A3.81 3.81 0 0 0 18 12c0-1.17-.51-2.234-1.386-2.956" })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#404040";
2
+ declare const defaultColor = "#4C00FF";
3
3
  declare const SiPerforce: IconType;
4
4
  export { SiPerforce as default, defaultColor };
@@ -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 = "#404040";
4
+ const defaultColor = "#4C00FF";
5
5
  const SiPerforce = React.forwardRef(function SiPerforce2({ title = "Perforce", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiPerforce = React.forwardRef(function SiPerforce2({ title = "Perforce", c
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M3.741 8.755c.164-.425.352-.834.573-1.219-.213-.196-.745-.613-.712-.646 2.774-3.322 6.391-4.32 9.59-3.74.655.09 1.31.246 1.956.483 4.583 1.702 6.898 6.75 5.18 11.284a9.33 9.33 0 0 1-.614 1.285c.254.22.81.63.778.663-3.077 3.641-7.177 4.484-10.589 3.47a11.18 11.18 0 0 1-.982-.295c-4.574-1.702-6.898-6.751-5.18-11.285zM19.371.982c-.581.556-1.277 1.227-1.62 1.53a11.886 11.886 0 0 0-1.727-.802C10.819-.221 5.337 1.964 2.317 6.03.738 8.364-.195 11.236.034 14.19c0 0 .009 5.556 5.14 8.83.417-.574.948-1.31 1.3-1.785a12.36 12.36 0 0 0 1.817.86c5.892 2.184 12.422-.606 14.557-6.228 0 0 1.563-3.428 1.048-7.176 0 0-.401-5.057-4.525-7.708z" })
21
+ /* @__PURE__ */ jsx("path", { d: "m7.386 14.957 2.279-1.316-.576-.333A1.48 1.48 0 0 1 8.334 12c0-.262.073-.915.755-1.308l10.31-5.953a1.49 1.49 0 0 1 1.51 0c.228.13.755.52.755 1.308v11.906c0 .788-.527 1.178-.754 1.308s-.828.393-1.51 0l-2.732-1.577-2.334 1.348 3.899 2.251a3.81 3.81 0 0 0 3.845 0A3.81 3.81 0 0 0 24 17.953V6.047a3.81 3.81 0 0 0-1.922-3.33 3.83 3.83 0 0 0-1.923-.52c-.66 0-1.32.173-1.922.52L7.923 8.67A3.81 3.81 0 0 0 6 12c0 1.17.51 2.234 1.386 2.956zm9.228-5.913-2.279 1.316.576.333c.682.393.755 1.046.755 1.308 0 .263-.073.915-.755 1.308l-10.31 5.954a1.49 1.49 0 0 1-1.51 0 1.48 1.48 0 0 1-.755-1.308V6.047c0-.788.527-1.178.754-1.308s.828-.393 1.51 0l2.732 1.577 2.334-1.348-3.899-2.251a3.81 3.81 0 0 0-3.845 0A3.81 3.81 0 0 0 0 6.047v11.906c0 1.39.72 2.635 1.922 3.33a3.83 3.83 0 0 0 1.923.52c.66 0 1.32-.173 1.922-.52l10.31-5.953A3.81 3.81 0 0 0 18 12c0-1.17-.51-2.234-1.386-2.956" })
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 = "#067BEF";
28
+ const SiProcesson = React__namespace.forwardRef(function SiProcesson2({ title = "ProcessOn", 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: "M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiProcesson;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#067BEF";
3
+ declare const SiProcesson: IconType;
4
+ export { SiProcesson 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 = "#067BEF";
5
+ const SiProcesson = React.forwardRef(function SiProcesson2({ title = "ProcessOn", 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: "M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiProcesson as default, defaultColor };
@@ -0,0 +1,51 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+
5
+ const jsxRuntime = require('react/jsx-runtime');
6
+ const React = require('react');
7
+
8
+ function _interopNamespaceDefault(e) {
9
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
10
+ if (e) {
11
+ for (const k in e) {
12
+ if (k !== 'default') {
13
+ const d = Object.getOwnPropertyDescriptor(e, k);
14
+ Object.defineProperty(n, k, d.get ? d : {
15
+ enumerable: true,
16
+ get: () => e[k]
17
+ });
18
+ }
19
+ }
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
26
+
27
+ const defaultColor = "#000000";
28
+ const SiRatatui = React__namespace.forwardRef(function SiRatatui2({ title = "Ratatui", 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: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiRatatui;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#000000";
3
+ declare const SiRatatui: IconType;
4
+ export { SiRatatui as default, defaultColor };
@@ -0,0 +1,27 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+
4
+ const defaultColor = "#000000";
5
+ const SiRatatui = React.forwardRef(function SiRatatui2({ title = "Ratatui", 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: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiRatatui as default, defaultColor };
package/index.cjs CHANGED
@@ -271,6 +271,7 @@ const SiAutomattic = require('./icons/SiAutomattic.cjs');
271
271
  const SiAutoprefixer = require('./icons/SiAutoprefixer.cjs');
272
272
  const SiAutozone = require('./icons/SiAutozone.cjs');
273
273
  const SiAvajs = require('./icons/SiAvajs.cjs');
274
+ const SiAvaloniaui = require('./icons/SiAvaloniaui.cjs');
274
275
  const SiAvast = require('./icons/SiAvast.cjs');
275
276
  const SiAvianca = require('./icons/SiAvianca.cjs');
276
277
  const SiAvira = require('./icons/SiAvira.cjs');
@@ -1083,6 +1084,7 @@ const SiGin = require('./icons/SiGin.cjs');
1083
1084
  const SiGiphy = require('./icons/SiGiphy.cjs');
1084
1085
  const SiGit = require('./icons/SiGit.cjs');
1085
1086
  const SiGitbook = require('./icons/SiGitbook.cjs');
1087
+ const SiGitcode = require('./icons/SiGitcode.cjs');
1086
1088
  const SiGitconnected = require('./icons/SiGitconnected.cjs');
1087
1089
  const SiGitea = require('./icons/SiGitea.cjs');
1088
1090
  const SiGitee = require('./icons/SiGitee.cjs');
@@ -2272,6 +2274,7 @@ const SiPrivatedivision = require('./icons/SiPrivatedivision.cjs');
2272
2274
  const SiPrivateinternetaccess = require('./icons/SiPrivateinternetaccess.cjs');
2273
2275
  const SiProbot = require('./icons/SiProbot.cjs');
2274
2276
  const SiProcessingfoundation = require('./icons/SiProcessingfoundation.cjs');
2277
+ const SiProcesson = require('./icons/SiProcesson.cjs');
2275
2278
  const SiProcesswire = require('./icons/SiProcesswire.cjs');
2276
2279
  const SiProducthunt = require('./icons/SiProducthunt.cjs');
2277
2280
  const SiProgate = require('./icons/SiProgate.cjs');
@@ -2376,6 +2379,7 @@ const SiRapid = require('./icons/SiRapid.cjs');
2376
2379
  const SiRarible = require('./icons/SiRarible.cjs');
2377
2380
  const SiRasa = require('./icons/SiRasa.cjs');
2378
2381
  const SiRaspberrypi = require('./icons/SiRaspberrypi.cjs');
2382
+ const SiRatatui = require('./icons/SiRatatui.cjs');
2379
2383
  const SiRavelry = require('./icons/SiRavelry.cjs');
2380
2384
  const SiRay = require('./icons/SiRay.cjs');
2381
2385
  const SiRaycast = require('./icons/SiRaycast.cjs');
@@ -3877,6 +3881,8 @@ exports.SiAutozone = SiAutozone.default;
3877
3881
  exports.SiAutozoneHex = SiAutozone.defaultColor;
3878
3882
  exports.SiAvajs = SiAvajs.default;
3879
3883
  exports.SiAvajsHex = SiAvajs.defaultColor;
3884
+ exports.SiAvaloniaui = SiAvaloniaui.default;
3885
+ exports.SiAvaloniauiHex = SiAvaloniaui.defaultColor;
3880
3886
  exports.SiAvast = SiAvast.default;
3881
3887
  exports.SiAvastHex = SiAvast.defaultColor;
3882
3888
  exports.SiAvianca = SiAvianca.default;
@@ -5501,6 +5507,8 @@ exports.SiGit = SiGit.default;
5501
5507
  exports.SiGitHex = SiGit.defaultColor;
5502
5508
  exports.SiGitbook = SiGitbook.default;
5503
5509
  exports.SiGitbookHex = SiGitbook.defaultColor;
5510
+ exports.SiGitcode = SiGitcode.default;
5511
+ exports.SiGitcodeHex = SiGitcode.defaultColor;
5504
5512
  exports.SiGitconnected = SiGitconnected.default;
5505
5513
  exports.SiGitconnectedHex = SiGitconnected.defaultColor;
5506
5514
  exports.SiGitea = SiGitea.default;
@@ -7879,6 +7887,8 @@ exports.SiProbot = SiProbot.default;
7879
7887
  exports.SiProbotHex = SiProbot.defaultColor;
7880
7888
  exports.SiProcessingfoundation = SiProcessingfoundation.default;
7881
7889
  exports.SiProcessingfoundationHex = SiProcessingfoundation.defaultColor;
7890
+ exports.SiProcesson = SiProcesson.default;
7891
+ exports.SiProcessonHex = SiProcesson.defaultColor;
7882
7892
  exports.SiProcesswire = SiProcesswire.default;
7883
7893
  exports.SiProcesswireHex = SiProcesswire.defaultColor;
7884
7894
  exports.SiProducthunt = SiProducthunt.default;
@@ -8087,6 +8097,8 @@ exports.SiRasa = SiRasa.default;
8087
8097
  exports.SiRasaHex = SiRasa.defaultColor;
8088
8098
  exports.SiRaspberrypi = SiRaspberrypi.default;
8089
8099
  exports.SiRaspberrypiHex = SiRaspberrypi.defaultColor;
8100
+ exports.SiRatatui = SiRatatui.default;
8101
+ exports.SiRatatuiHex = SiRatatui.defaultColor;
8090
8102
  exports.SiRavelry = SiRavelry.default;
8091
8103
  exports.SiRavelryHex = SiRavelry.defaultColor;
8092
8104
  exports.SiRay = SiRay.default;
package/index.d.ts CHANGED
@@ -267,6 +267,7 @@ export { default as SiAutomattic, defaultColor as SiAutomatticHex } from './icon
267
267
  export { default as SiAutoprefixer, defaultColor as SiAutoprefixerHex } from './icons/SiAutoprefixer';
268
268
  export { default as SiAutozone, defaultColor as SiAutozoneHex } from './icons/SiAutozone';
269
269
  export { default as SiAvajs, defaultColor as SiAvajsHex } from './icons/SiAvajs';
270
+ export { default as SiAvaloniaui, defaultColor as SiAvaloniauiHex } from './icons/SiAvaloniaui';
270
271
  export { default as SiAvast, defaultColor as SiAvastHex } from './icons/SiAvast';
271
272
  export { default as SiAvianca, defaultColor as SiAviancaHex } from './icons/SiAvianca';
272
273
  export { default as SiAvira, defaultColor as SiAviraHex } from './icons/SiAvira';
@@ -1079,6 +1080,7 @@ export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin';
1079
1080
  export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy';
1080
1081
  export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit';
1081
1082
  export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook';
1083
+ export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode';
1082
1084
  export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected';
1083
1085
  export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea';
1084
1086
  export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee';
@@ -2268,6 +2270,7 @@ export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } fr
2268
2270
  export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess';
2269
2271
  export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot';
2270
2272
  export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation';
2273
+ export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson';
2271
2274
  export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire';
2272
2275
  export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt';
2273
2276
  export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate';
@@ -2372,6 +2375,7 @@ export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid'
2372
2375
  export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible';
2373
2376
  export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa';
2374
2377
  export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi';
2378
+ export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui';
2375
2379
  export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry';
2376
2380
  export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay';
2377
2381
  export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast';
package/index.mjs CHANGED
@@ -267,6 +267,7 @@ export { default as SiAutomattic, defaultColor as SiAutomatticHex } from './icon
267
267
  export { default as SiAutoprefixer, defaultColor as SiAutoprefixerHex } from './icons/SiAutoprefixer.mjs';
268
268
  export { default as SiAutozone, defaultColor as SiAutozoneHex } from './icons/SiAutozone.mjs';
269
269
  export { default as SiAvajs, defaultColor as SiAvajsHex } from './icons/SiAvajs.mjs';
270
+ export { default as SiAvaloniaui, defaultColor as SiAvaloniauiHex } from './icons/SiAvaloniaui.mjs';
270
271
  export { default as SiAvast, defaultColor as SiAvastHex } from './icons/SiAvast.mjs';
271
272
  export { default as SiAvianca, defaultColor as SiAviancaHex } from './icons/SiAvianca.mjs';
272
273
  export { default as SiAvira, defaultColor as SiAviraHex } from './icons/SiAvira.mjs';
@@ -1079,6 +1080,7 @@ export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin.mjs';
1079
1080
  export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy.mjs';
1080
1081
  export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit.mjs';
1081
1082
  export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook.mjs';
1083
+ export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode.mjs';
1082
1084
  export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected.mjs';
1083
1085
  export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea.mjs';
1084
1086
  export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee.mjs';
@@ -2268,6 +2270,7 @@ export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } fr
2268
2270
  export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess.mjs';
2269
2271
  export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot.mjs';
2270
2272
  export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation.mjs';
2273
+ export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson.mjs';
2271
2274
  export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire.mjs';
2272
2275
  export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt.mjs';
2273
2276
  export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate.mjs';
@@ -2372,6 +2375,7 @@ export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid.
2372
2375
  export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible.mjs';
2373
2376
  export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa.mjs';
2374
2377
  export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi.mjs';
2378
+ export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui.mjs';
2375
2379
  export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry.mjs';
2376
2380
  export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay.mjs';
2377
2381
  export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "13.5.0",
3
+ "version": "13.7.0",
4
4
  "description": "This package provides the Simple Icons packaged as a set of React components.",
5
5
  "keywords": [
6
6
  "react",
@@ -68,7 +68,7 @@
68
68
  "react": "^18",
69
69
  "rimraf": "6.0.1",
70
70
  "signale": "1.4.0",
71
- "simple-icons": "15.6.0",
71
+ "simple-icons": "15.8.0",
72
72
  "turbo": "2.0.14",
73
73
  "typescript": "5.5.4",
74
74
  "uppercamelcase": "3.0.0",
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiAvaloniauiProps = 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 = '#165BFF';
22
+
23
+ const SiAvaloniaui: IconType = React.forwardRef<SVGSVGElement, SiAvaloniauiProps>(function SiAvaloniaui({title = 'AvaloniaUI', 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.034 8.208c-2.003 0-3.627 1.696-3.627 3.789s1.624 3.789 3.627 3.789 3.627-1.697 3.627-3.79-1.624-3.788-3.627-3.788m-7.392 2.067c.72.211 1.248.902 1.248 1.722s-.528 1.51-1.248 1.721c.752 3.54 3.776 6.188 7.392 6.188 1.316 0 2.554-.35 3.632-.967v.914h3.94v-7.528a5 5 0 0 0 0-.224v-.104c0-4.369-3.39-7.91-7.572-7.91-3.616 0-6.64 2.648-7.392 6.188m-.5 2.982c.67 0 1.212-.567 1.212-1.266s-.542-1.265-1.212-1.265-1.211.566-1.211 1.265c0 .7.542 1.266 1.211 1.266M20.682 24H11.8C5.549 23.887.515 18.556.515 12c0-6.627 5.143-12 11.487-12 6.241 0 11.32 5.2 11.483 11.678l-.02 9.743C23.3 22.876 22.12 24 20.683 24' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiAvaloniaui as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiGitcodeProps = 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 = '#DA203E';
22
+
23
+ const SiGitcode: IconType = React.forwardRef<SVGSVGElement, SiGitcodeProps>(function SiGitcode({title = 'GitCode', 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='m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiGitcode as default, defaultColor };
45
+
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#372213';
21
+ const defaultColor = '#1E1914';
22
22
 
23
23
  const SiGoodreads: IconType = React.forwardRef<SVGSVGElement, SiGoodreadsProps>(function SiGoodreads({title = 'Goodreads', 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.43 23.995c-3.608-.208-6.274-2.077-6.448-5.078.695.007 1.375-.013 2.07-.006.224 1.342 1.065 2.43 2.683 3.026 1.583.496 3.737.46 5.082-.174 1.351-.636 2.145-1.822 2.503-3.577.212-1.042.236-1.734.231-2.92l-.005-1.631h-.059c-1.245 2.564-3.315 3.53-5.59 3.475-5.74-.054-7.68-4.534-7.528-8.606.01-5.241 3.22-8.537 7.557-8.495 2.354-.14 4.605 1.362 5.554 3.37l.059.002.002-2.918 2.099.004-.002 15.717c-.193 7.04-4.376 7.89-8.209 7.811zm6.1-15.633c-.096-3.26-1.601-6.62-5.503-6.645-3.954-.017-5.625 3.592-5.604 6.85-.013 3.439 1.643 6.305 4.703 6.762 4.532.591 6.551-3.411 6.404-6.967z' />
39
+ <path d='M17.346.026c.422-.083.859.037 1.179.325.346.284.55.705.557 1.153-.023.457-.247.88-.612 1.156l-2.182 1.748a.601.601 0 0 0-.255.43.52.52 0 0 0 .11.424 5.886 5.886 0 0 1 .832 6.58c-1.394 2.79-4.503 3.99-7.501 2.927a.792.792 0 0 0-.499-.01c-.224.07-.303.18-.453.383l-.014.02-.941 1.254s-.792.985.457.935c3.027-.119 3.817-.119 5.439-.01 2.641.18 3.806 1.903 3.806 3.275 0 1.623-1.036 3.383-3.809 3.383a117.46 117.46 0 0 0-5.517-.03c-.31.005-.597.013-.835.02-.228.006-.41.011-.52.011-.712 0-1.648-.186-1.66-1.068-.008-.729.624-1.12 1.11-1.172.43-.045.815.007 1.24.064.252.034.518.07.815.088.185.011.366.025.552.038.53.038 1.102.08 1.926.087.427.005.759.01 1.025.015.695.012.941.016 1.28-.015 1.248-.112 1.832-.61 1.832-1.376 0-.805-.584-1.264-1.698-1.414-1.564-.213-2.33-.163-3.72-.074a87.66 87.66 0 0 1-1.669.095c-.608.029-2.449.026-2.682-1.492-.053-.416-.073-1.116.807-2.325l.75-1.003c.36-.49.582-.898.053-1.559 0 0-.39-.468-.52-.638-1.215-1.587-1.512-4.08-.448-6.114 1.577-3.011 5.4-4.26 8.37-2.581.253.143.438.203.655.163.201-.032.27-.167.363-.344.02-.04.042-.082.067-.126.004-.01.241-.465.535-1.028l.734-1.41a1.493 1.493 0 0 1 1.041-.785ZM9.193 13.243c1.854.903 3.912.208 5.254-2.47 1.352-2.699.827-5.11-1.041-6.023C10.918 3.537 8.81 5.831 8.017 7.41c-1.355 2.698-.717 4.886 1.147 5.818Z' />
40
40
  </svg>
41
41
  );
42
42
  });
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#003087';
21
+ const defaultColor = '#002991';
22
22
 
23
23
  const SiPaypal: IconType = React.forwardRef<SVGSVGElement, SiPaypalProps>(function SiPaypal({title = 'PayPal', 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='M7.016 19.198h-4.2a.562.562 0 0 1-.555-.65L5.093.584A.692.692 0 0 1 5.776 0h7.222c3.417 0 5.904 2.488 5.846 5.5-.006.25-.027.5-.066.747A6.794 6.794 0 0 1 12.071 12H8.743a.69.69 0 0 0-.682.583l-.325 2.056-.013.083-.692 4.39-.015.087zM19.79 6.142c-.01.087-.01.175-.023.261a7.76 7.76 0 0 1-7.695 6.598H9.007l-.283 1.795-.013.083-.692 4.39-.134.843-.014.088H6.86l-.497 3.15a.562.562 0 0 0 .555.65h3.612c.34 0 .63-.249.683-.585l.952-6.031a.692.692 0 0 1 .683-.584h2.126a6.793 6.793 0 0 0 6.707-5.752c.306-1.95-.466-3.744-1.89-4.906z' />
39
+ <path d='M15.607 4.653H8.941L6.645 19.251H1.82L4.862 0h7.995c3.754 0 6.375 2.294 6.473 5.513-.648-.478-2.105-.86-3.722-.86m6.57 5.546c0 3.41-3.01 6.853-6.958 6.853h-2.493L11.595 24H6.74l1.845-11.538h3.592c4.208 0 7.346-3.634 7.153-6.949a5.24 5.24 0 0 1 2.848 4.686M9.653 5.546h6.408c.907 0 1.942.222 2.363.541-.195 2.741-2.655 5.483-6.441 5.483H8.714Z' />
40
40
  </svg>
41
41
  );
42
42
  });
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#404040';
21
+ const defaultColor = '#4C00FF';
22
22
 
23
23
  const SiPerforce: IconType = React.forwardRef<SVGSVGElement, SiPerforceProps>(function SiPerforce({title = 'Perforce', 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='M3.741 8.755c.164-.425.352-.834.573-1.219-.213-.196-.745-.613-.712-.646 2.774-3.322 6.391-4.32 9.59-3.74.655.09 1.31.246 1.956.483 4.583 1.702 6.898 6.75 5.18 11.284a9.33 9.33 0 0 1-.614 1.285c.254.22.81.63.778.663-3.077 3.641-7.177 4.484-10.589 3.47a11.18 11.18 0 0 1-.982-.295c-4.574-1.702-6.898-6.751-5.18-11.285zM19.371.982c-.581.556-1.277 1.227-1.62 1.53a11.886 11.886 0 0 0-1.727-.802C10.819-.221 5.337 1.964 2.317 6.03.738 8.364-.195 11.236.034 14.19c0 0 .009 5.556 5.14 8.83.417-.574.948-1.31 1.3-1.785a12.36 12.36 0 0 0 1.817.86c5.892 2.184 12.422-.606 14.557-6.228 0 0 1.563-3.428 1.048-7.176 0 0-.401-5.057-4.525-7.708z' />
39
+ <path d='m7.386 14.957 2.279-1.316-.576-.333A1.48 1.48 0 0 1 8.334 12c0-.262.073-.915.755-1.308l10.31-5.953a1.49 1.49 0 0 1 1.51 0c.228.13.755.52.755 1.308v11.906c0 .788-.527 1.178-.754 1.308s-.828.393-1.51 0l-2.732-1.577-2.334 1.348 3.899 2.251a3.81 3.81 0 0 0 3.845 0A3.81 3.81 0 0 0 24 17.953V6.047a3.81 3.81 0 0 0-1.922-3.33 3.83 3.83 0 0 0-1.923-.52c-.66 0-1.32.173-1.922.52L7.923 8.67A3.81 3.81 0 0 0 6 12c0 1.17.51 2.234 1.386 2.956zm9.228-5.913-2.279 1.316.576.333c.682.393.755 1.046.755 1.308 0 .263-.073.915-.755 1.308l-10.31 5.954a1.49 1.49 0 0 1-1.51 0 1.48 1.48 0 0 1-.755-1.308V6.047c0-.788.527-1.178.754-1.308s.828-.393 1.51 0l2.732 1.577 2.334-1.348-3.899-2.251a3.81 3.81 0 0 0-3.845 0A3.81 3.81 0 0 0 0 6.047v11.906c0 1.39.72 2.635 1.922 3.33a3.83 3.83 0 0 0 1.923.52c.66 0 1.32-.173 1.922-.52l10.31-5.953A3.81 3.81 0 0 0 18 12c0-1.17-.51-2.234-1.386-2.956' />
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 SiProcessonProps = 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 = '#067BEF';
22
+
23
+ const SiProcesson: IconType = React.forwardRef<SVGSVGElement, SiProcessonProps>(function SiProcesson({title = 'ProcessOn', 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='M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiProcesson as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiRatatuiProps = 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 SiRatatui: IconType = React.forwardRef<SVGSVGElement, SiRatatuiProps>(function SiRatatui({title = 'Ratatui', 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='M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiRatatui as default, defaultColor };
45
+