@icons-pack/react-simple-icons 13.6.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.7.0](https://github.com/simple-icons/simple-icons/releases/tag/15.7.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 };
@@ -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 };
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');
@@ -2273,6 +2274,7 @@ const SiPrivatedivision = require('./icons/SiPrivatedivision.cjs');
2273
2274
  const SiPrivateinternetaccess = require('./icons/SiPrivateinternetaccess.cjs');
2274
2275
  const SiProbot = require('./icons/SiProbot.cjs');
2275
2276
  const SiProcessingfoundation = require('./icons/SiProcessingfoundation.cjs');
2277
+ const SiProcesson = require('./icons/SiProcesson.cjs');
2276
2278
  const SiProcesswire = require('./icons/SiProcesswire.cjs');
2277
2279
  const SiProducthunt = require('./icons/SiProducthunt.cjs');
2278
2280
  const SiProgate = require('./icons/SiProgate.cjs');
@@ -3879,6 +3881,8 @@ exports.SiAutozone = SiAutozone.default;
3879
3881
  exports.SiAutozoneHex = SiAutozone.defaultColor;
3880
3882
  exports.SiAvajs = SiAvajs.default;
3881
3883
  exports.SiAvajsHex = SiAvajs.defaultColor;
3884
+ exports.SiAvaloniaui = SiAvaloniaui.default;
3885
+ exports.SiAvaloniauiHex = SiAvaloniaui.defaultColor;
3882
3886
  exports.SiAvast = SiAvast.default;
3883
3887
  exports.SiAvastHex = SiAvast.defaultColor;
3884
3888
  exports.SiAvianca = SiAvianca.default;
@@ -7883,6 +7887,8 @@ exports.SiProbot = SiProbot.default;
7883
7887
  exports.SiProbotHex = SiProbot.defaultColor;
7884
7888
  exports.SiProcessingfoundation = SiProcessingfoundation.default;
7885
7889
  exports.SiProcessingfoundationHex = SiProcessingfoundation.defaultColor;
7890
+ exports.SiProcesson = SiProcesson.default;
7891
+ exports.SiProcessonHex = SiProcesson.defaultColor;
7886
7892
  exports.SiProcesswire = SiProcesswire.default;
7887
7893
  exports.SiProcesswireHex = SiProcesswire.defaultColor;
7888
7894
  exports.SiProducthunt = SiProducthunt.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';
@@ -2269,6 +2270,7 @@ export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } fr
2269
2270
  export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess';
2270
2271
  export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot';
2271
2272
  export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation';
2273
+ export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson';
2272
2274
  export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire';
2273
2275
  export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt';
2274
2276
  export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate';
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';
@@ -2269,6 +2270,7 @@ export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } fr
2269
2270
  export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess.mjs';
2270
2271
  export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot.mjs';
2271
2272
  export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation.mjs';
2273
+ export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson.mjs';
2272
2274
  export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire.mjs';
2273
2275
  export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt.mjs';
2274
2276
  export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "13.6.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.7.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
+
@@ -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
+