@icons-pack/react-simple-icons 13.12.0 → 13.13.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 16.10.0](https://github.com/simple-icons/simple-icons/releases/tag/16.10.0)
6
+ This package provides the [Simple Icons 16.12.0](https://github.com/simple-icons/simple-icons/releases/tag/16.12.0)
7
7
  packaged as a set of [React](https://facebook.github.io/react/) components.
8
8
 
9
9
  [![www.npmjs.com!](https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square)](https://www.npmjs.com/package/@icons-pack/react-simple-icons)
@@ -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 = "#18181B";
28
+ const SiCline = React__namespace.forwardRef(function SiCline2({ title = "Cline", 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: "m23.365 13.556-1.442-2.895V8.994c0-2.764-2.218-5.002-4.954-5.002h-2.464c.178-.367.276-.779.276-1.213A2.77 2.77 0 0 0 12.018 0a2.77 2.77 0 0 0-2.763 2.779c0 .434.098.846.276 1.213H7.067c-2.736 0-4.954 2.238-4.954 5.002v1.667L.64 13.549c-.149.29-.149.636 0 .927l1.472 2.855v1.667C2.113 21.762 4.33 24 7.067 24h9.902c2.736 0 4.954-2.238 4.954-5.002V17.33l1.44-2.865c.143-.286.143-.622.002-.91m-12.854 2.36a2.27 2.27 0 0 1-2.261 2.273 2.27 2.27 0 0 1-2.261-2.273v-4.042A2.27 2.27 0 0 1 8.249 9.6a2.267 2.267 0 0 1 2.262 2.274zm7.285 0a2.27 2.27 0 0 1-2.26 2.273 2.27 2.27 0 0 1-2.262-2.273v-4.042A2.267 2.267 0 0 1 15.535 9.6a2.267 2.267 0 0 1 2.261 2.274z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiCline;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#18181B";
3
+ declare const SiCline: IconType;
4
+ export { SiCline 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 = "#18181B";
5
+ const SiCline = React.forwardRef(function SiCline2({ title = "Cline", 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: "m23.365 13.556-1.442-2.895V8.994c0-2.764-2.218-5.002-4.954-5.002h-2.464c.178-.367.276-.779.276-1.213A2.77 2.77 0 0 0 12.018 0a2.77 2.77 0 0 0-2.763 2.779c0 .434.098.846.276 1.213H7.067c-2.736 0-4.954 2.238-4.954 5.002v1.667L.64 13.549c-.149.29-.149.636 0 .927l1.472 2.855v1.667C2.113 21.762 4.33 24 7.067 24h9.902c2.736 0 4.954-2.238 4.954-5.002V17.33l1.44-2.865c.143-.286.143-.622.002-.91m-12.854 2.36a2.27 2.27 0 0 1-2.261 2.273 2.27 2.27 0 0 1-2.261-2.273v-4.042A2.27 2.27 0 0 1 8.249 9.6a2.267 2.267 0 0 1 2.262 2.274zm7.285 0a2.27 2.27 0 0 1-2.26 2.273 2.27 2.27 0 0 1-2.262-2.273v-4.042A2.267 2.267 0 0 1 15.535 9.6a2.267 2.267 0 0 1 2.261 2.274z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiCline 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 = "#37BFA7";
28
+ const SiContensis = React__namespace.forwardRef(function SiContensis2({ title = "Contensis", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.92 0q-.131.009-.22.155c-2.795 4.728-6.555 7.99-6.792 10.154-.221 2.02.51 3.689 1.71 4.726a30 30 0 0 0 1.355-1.83c-.022-.417-.182-3.68.164-4.6.197 1.418.606 2.726.758 3.182a43 43 0 0 0 1.029-1.755c-.031-.83-.116-3.755.174-4.424.077.965.434 2.194.65 2.863.287-.571.444-.918.447-.926l1.016-2.256-.268 2.453c-.001.013-.09.823-.306 2.055.594-.483 1.539-1.297 1.998-1.935.04.77-1.667 2.833-2.322 3.597a42 42 0 0 1-.403 1.698c.569-.316 1.872-1.073 2.6-1.762-.11.785-2.422 2.783-3.033 3.299a30 30 0 0 1-.502 1.492c1.404-.08 2.878-.787 4.113-2.3C20.548 9.642 16.235-.09 14.92 0m-2.928 2.8c-.578 0-1.14.14-1.582.392L3.84 6.936c-.92.524-1.59 1.669-1.59 2.719v7.49c0 1.05.67 2.194 1.59 2.718l6.57 3.744c.443.253 1.008.392 1.59.392.58 0 1.146-.139 1.59-.392l6.57-3.744c.92-.524 1.59-1.67 1.59-2.72v-7.49c0-1.05-.67-2.191-1.59-2.717l-1.353-.774c.134.62.235 1.234.298 1.823a52 52 0 0 1 .135 1.67v7.49c0 .16-.194.49-.334.572l-6.572 3.743a.8.8 0 0 1-.334.06.8.8 0 0 1-.334-.06l-6.57-3.743c-.141-.08-.336-.412-.336-.572v-7.49c0-.16.195-.493.336-.573l3.648-2.08c.425-.58.913-1.194 1.436-1.855a92 92 0 0 0 1.812-2.348m1.79 7.302c-1.254 2.309-3.458 5.87-6.145 8.125.044.019.393.228 2.703 1.54 1.91-2.788 2.947-7.015 3.443-9.665M7.63 18.226v.002l.002.002.002-.004h-.002z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiContensis;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#37BFA7";
3
+ declare const SiContensis: IconType;
4
+ export { SiContensis 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 = "#37BFA7";
5
+ const SiContensis = React.forwardRef(function SiContensis2({ title = "Contensis", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M14.92 0q-.131.009-.22.155c-2.795 4.728-6.555 7.99-6.792 10.154-.221 2.02.51 3.689 1.71 4.726a30 30 0 0 0 1.355-1.83c-.022-.417-.182-3.68.164-4.6.197 1.418.606 2.726.758 3.182a43 43 0 0 0 1.029-1.755c-.031-.83-.116-3.755.174-4.424.077.965.434 2.194.65 2.863.287-.571.444-.918.447-.926l1.016-2.256-.268 2.453c-.001.013-.09.823-.306 2.055.594-.483 1.539-1.297 1.998-1.935.04.77-1.667 2.833-2.322 3.597a42 42 0 0 1-.403 1.698c.569-.316 1.872-1.073 2.6-1.762-.11.785-2.422 2.783-3.033 3.299a30 30 0 0 1-.502 1.492c1.404-.08 2.878-.787 4.113-2.3C20.548 9.642 16.235-.09 14.92 0m-2.928 2.8c-.578 0-1.14.14-1.582.392L3.84 6.936c-.92.524-1.59 1.669-1.59 2.719v7.49c0 1.05.67 2.194 1.59 2.718l6.57 3.744c.443.253 1.008.392 1.59.392.58 0 1.146-.139 1.59-.392l6.57-3.744c.92-.524 1.59-1.67 1.59-2.72v-7.49c0-1.05-.67-2.191-1.59-2.717l-1.353-.774c.134.62.235 1.234.298 1.823a52 52 0 0 1 .135 1.67v7.49c0 .16-.194.49-.334.572l-6.572 3.743a.8.8 0 0 1-.334.06.8.8 0 0 1-.334-.06l-6.57-3.743c-.141-.08-.336-.412-.336-.572v-7.49c0-.16.195-.493.336-.573l3.648-2.08c.425-.58.913-1.194 1.436-1.855a92 92 0 0 0 1.812-2.348m1.79 7.302c-1.254 2.309-3.458 5.87-6.145 8.125.044.019.393.228 2.703 1.54 1.91-2.788 2.947-7.015 3.443-9.665M7.63 18.226v.002l.002.002.002-.004h-.002z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiContensis 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 = "#0284C7";
28
+ const SiDicebear = React__namespace.forwardRef(function SiDicebear2({ title = "DiceBear", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 0A1.5 1.5 0 0 0 0 1.5v21A1.5 1.5 0 0 0 1.5 24h12.84a.99.99 0 0 0 .87-1.468c-.986-1.777-1.929-3.346-2.523-4.024-1.69-1.933-9.626-.13-9.877-6.435-.016-.415.262-.777.655-.908l3.872-1.29c.226-.076.418-.23.547-.43.365-.569 1.182-1.768 1.928-2.375.707-.574 1.85-1.301 3.936-1.636.417-.067.749-.379.952-.75.488-.89 1.457-1.432 2.478-1.285 1.332.192 2.249 1.483 2.048 2.883a.3.3 0 0 0 .094.276c.889.794 1.829 1.894 2.759 3.137.596.797 1.921.393 1.921-.602V1.5A1.5 1.5 0 0 0 22.5 0zm9.375 9.625a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 1 0-2.5 0" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiDicebear;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#0284C7";
3
+ declare const SiDicebear: IconType;
4
+ export { SiDicebear 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 = "#0284C7";
5
+ const SiDicebear = React.forwardRef(function SiDicebear2({ title = "DiceBear", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M1.5 0A1.5 1.5 0 0 0 0 1.5v21A1.5 1.5 0 0 0 1.5 24h12.84a.99.99 0 0 0 .87-1.468c-.986-1.777-1.929-3.346-2.523-4.024-1.69-1.933-9.626-.13-9.877-6.435-.016-.415.262-.777.655-.908l3.872-1.29c.226-.076.418-.23.547-.43.365-.569 1.182-1.768 1.928-2.375.707-.574 1.85-1.301 3.936-1.636.417-.067.749-.379.952-.75.488-.89 1.457-1.432 2.478-1.285 1.332.192 2.249 1.483 2.048 2.883a.3.3 0 0 0 .094.276c.889.794 1.829 1.894 2.759 3.137.596.797 1.921.393 1.921-.602V1.5A1.5 1.5 0 0 0 22.5 0zm9.375 9.625a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 1 0-2.5 0" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiDicebear 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 = "#59C1D5";
28
+ const SiDlthub = React__namespace.forwardRef(function SiDlthub2({ title = "dlthub", color = "currentColor", size = 24, ...others }, ref) {
29
+ if (color === "default") {
30
+ color = defaultColor;
31
+ }
32
+ return /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ fill: color,
39
+ viewBox: "0 0 24 24",
40
+ ref,
41
+ ...others,
42
+ children: [
43
+ /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.498h-1.008v3.01H24Zm-3.024 0h2.016v-1.004h-2.016V8.487h-1.008v7.025h3.024v-1.004h-2.016zm-2.986 3.01h-2.016v1.004h3.024v-5.017H17.99zm-2.016-4.013h-1.008v4.014h1.008zm-2.985 1.003h-2.016v-3.01H9.965v7.024h1.008v-3.01h2.016v3.01h1.008V8.488h-1.008zm-11.981 0H0v3.01h1.008zm2.016-1.003H1.008v1.003h2.016v3.01H1.008v1.004h3.024V8.488H3.024zM5 15.512h1.01V8.488H5.001Zm2.986-7.024H6.98v6.02h1.008v-3.01h1.008v-1.003H7.987zm1.008 6.02H7.987v1.004h1.008z" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiDlthub;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#59C1D5";
3
+ declare const SiDlthub: IconType;
4
+ export { SiDlthub 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 = "#59C1D5";
5
+ const SiDlthub = React.forwardRef(function SiDlthub2({ title = "dlthub", color = "currentColor", size = 24, ...others }, ref) {
6
+ if (color === "default") {
7
+ color = defaultColor;
8
+ }
9
+ return /* @__PURE__ */ jsxs(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ fill: color,
16
+ viewBox: "0 0 24 24",
17
+ ref,
18
+ ...others,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: title }),
21
+ /* @__PURE__ */ jsx("path", { d: "M24 11.498h-1.008v3.01H24Zm-3.024 0h2.016v-1.004h-2.016V8.487h-1.008v7.025h3.024v-1.004h-2.016zm-2.986 3.01h-2.016v1.004h3.024v-5.017H17.99zm-2.016-4.013h-1.008v4.014h1.008zm-2.985 1.003h-2.016v-3.01H9.965v7.024h1.008v-3.01h2.016v3.01h1.008V8.488h-1.008zm-11.981 0H0v3.01h1.008zm2.016-1.003H1.008v1.003h2.016v3.01H1.008v1.004h3.024V8.488H3.024zM5 15.512h1.01V8.488H5.001Zm2.986-7.024H6.98v6.02h1.008v-3.01h1.008v-1.003H7.987zm1.008 6.02H7.987v1.004h1.008z" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiDlthub 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 = "#5F224B";
28
+ const SiLonghorn = React__namespace.forwardRef(function SiLonghorn2({ title = "Longhorn", 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: "M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54m.427 5.138-.31 2.1a1.24 1.24 0 0 1-.98 1.032l-5.024 1.003-.002.015-.787 4.306a2.474 2.474 0 0 1-2.467 2.34h-.634a2.474 2.474 0 0 1-2.468-2.355l-.697-4.288-5.115-1.021a1.24 1.24 0 0 1-.98-1.032l-.31-2.1a1.235 1.235 0 0 1 2.445-.36L4.74 8.19 12 9.639l7.26-1.45.182-1.24a1.235 1.235 0 0 1 2.445.36M12 12.134a1.2 1.2 0 0 1-.242-.024l-.653-.13.562 3.457a1 1 0 0 1 .016.198h.634a1.2 1.2 0 0 1 .02-.222l.63-3.448-.725.145a1.2 1.2 0 0 1-.242.024" })
45
+ ]
46
+ }
47
+ );
48
+ });
49
+
50
+ exports.default = SiLonghorn;
51
+ exports.defaultColor = defaultColor;
@@ -0,0 +1,4 @@
1
+ import { IconType } from '../types';
2
+ declare const defaultColor = "#5F224B";
3
+ declare const SiLonghorn: IconType;
4
+ export { SiLonghorn 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 = "#5F224B";
5
+ const SiLonghorn = React.forwardRef(function SiLonghorn2({ title = "Longhorn", 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: "M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54m.427 5.138-.31 2.1a1.24 1.24 0 0 1-.98 1.032l-5.024 1.003-.002.015-.787 4.306a2.474 2.474 0 0 1-2.467 2.34h-.634a2.474 2.474 0 0 1-2.468-2.355l-.697-4.288-5.115-1.021a1.24 1.24 0 0 1-.98-1.032l-.31-2.1a1.235 1.235 0 0 1 2.445-.36L4.74 8.19 12 9.639l7.26-1.45.182-1.24a1.235 1.235 0 0 1 2.445.36M12 12.134a1.2 1.2 0 0 1-.242-.024l-.653-.13.562 3.457a1 1 0 0 1 .016.198h.634a1.2 1.2 0 0 1 .02-.222l.63-3.448-.725.145a1.2 1.2 0 0 1-.242.024" })
22
+ ]
23
+ }
24
+ );
25
+ });
26
+
27
+ export { SiLonghorn 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 = "#D3859B";
27
+ const defaultColor = "#EB7396";
28
28
  const SiVencord = React__namespace.forwardRef(function SiVencord2({ title = "Vencord", color = "currentColor", size = 24, ...others }, ref) {
29
29
  if (color === "default") {
30
30
  color = defaultColor;
@@ -41,7 +41,7 @@ const SiVencord = React__namespace.forwardRef(function SiVencord2({ title = "Ven
41
41
  ...others,
42
42
  children: [
43
43
  /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
44
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z" })
44
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.465 19.458a1.68 1.68 0 0 1 1.268-.221 1.68 1.68 0 0 1 .534 3.061 6.4 6.4 0 0 1-1.614.735 6.3 6.3 0 0 1-2.73.191 6.3 6.3 0 0 1-2.211-.764 6.4 6.4 0 0 1-1.735-1.453 6.57 6.57 0 0 1-1.529-4.22q0-.495.073-.982a6.6 6.6 0 0 1 .755-2.237 6.6 6.6 0 0 1 1.43-1.772 6.5 6.5 0 0 1 1.933-1.167 6.3 6.3 0 0 1 3.207-.354c.95.141 1.856.496 2.65 1.04a6.5 6.5 0 0 1 1.885 2.004 1.681 1.681 0 1 1-2.885 1.73 3.1 3.1 0 0 0-.903-.96 2.98 2.98 0 0 0-2.745-.321 3.1 3.1 0 0 0-.93.561 3.2 3.2 0 0 0-.698.864 3.3 3.3 0 0 0-.409 1.595 3.2 3.2 0 0 0 .747 2.062 3 3 0 0 0 .823.69 2.97 2.97 0 0 0 1.476.39c.284 0 .567-.041.84-.122a3 3 0 0 0 .768-.35M.64 5.584l4.317 9.217c.45.962 1.647 1.686 2.783 1.531s2.222-1.166 2.48-2.196l2.566-10.254c.258-1.03-.41-1.897-1.752-1.715-1.447.118-2.347 1.29-2.56 2.33L7.408 9.671c-.096.468-.337.496-.538.062L4.696 5.035c-.447-.964-1.564-1.777-2.74-1.617S.19 4.622.64 5.584M11.495.011q-.608.025-1.222.115a11.93 11.93 0 0 0-5.971 2.67A4.2 4.2 0 0 1 5.79 4.529L6.791 6.69l.502-2.435C7.603 2.744 8.87 1.152 10.9.97q.163-.021.327-.028c.828-.03 1.626.231 2.163.803.613.654.774 1.6.566 2.43l-1.6 6.397a7.7 7.7 0 0 1 1.861-1.035 7.5 7.5 0 0 1 2.836-.5 8 8 0 0 1 .963.08 7.5 7.5 0 0 1 3.14 1.232 7.65 7.65 0 0 1 2.228 2.369c.287.48.415 1.012.4 1.537.245-1.28.284-2.622.086-3.984C22.978 4.128 17.567-.25 11.495.011M.584 8.307a11.94 11.94 0 0 0-.456 5.418c.193 1.328.598 2.574.835 3.04.188.37.254.993.149 1.394l-.755 2.855c-.471 1.785.592 2.842 2.374 2.357l2.663-.723c.399-.109 1.016-.032 1.376.172 1.578.89 4.228 1.447 6.957 1.05l.146-.023a8 8 0 0 1-.743-.37v-.001a7.6 7.6 0 0 1-2.051-1.718 7.75 7.75 0 0 1-1.797-4.665c-.42.217-.884.367-1.38.434-1.746.238-3.337-.72-4.037-2.215zM17 14.743a1.8 1.8 0 0 0-.732.117 2 2 0 0 0-.58.351 2 2 0 0 0-.442.547 2.16 2.16 0 0 0-.264 1.031 2.04 2.04 0 0 0 .474 1.31 1.9 1.9 0 0 0 .506.424 1.8 1.8 0 0 0 .893.236h.002a1.8 1.8 0 0 0 .505-.073 2 2 0 0 0 .474-.216l.001-.001a2.86 2.86 0 0 1 2.15-.375 2.86 2.86 0 0 1 1.644 1.051 12 12 0 0 0 1.861-3.705c-.232.48-.6.898-1.085 1.19a2.87 2.87 0 0 1-3.916-.979 1.9 1.9 0 0 0-.56-.596 1.8 1.8 0 0 0-.932-.313z" })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,4 +1,4 @@
1
1
  import { IconType } from '../types';
2
- declare const defaultColor = "#D3859B";
2
+ declare const defaultColor = "#EB7396";
3
3
  declare const SiVencord: IconType;
4
4
  export { SiVencord 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 = "#D3859B";
4
+ const defaultColor = "#EB7396";
5
5
  const SiVencord = React.forwardRef(function SiVencord2({ title = "Vencord", color = "currentColor", size = 24, ...others }, ref) {
6
6
  if (color === "default") {
7
7
  color = defaultColor;
@@ -18,7 +18,7 @@ const SiVencord = React.forwardRef(function SiVencord2({ title = "Vencord", colo
18
18
  ...others,
19
19
  children: [
20
20
  /* @__PURE__ */ jsx("title", { children: title }),
21
- /* @__PURE__ */ jsx("path", { d: "M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z" })
21
+ /* @__PURE__ */ jsx("path", { d: "M18.465 19.458a1.68 1.68 0 0 1 1.268-.221 1.68 1.68 0 0 1 .534 3.061 6.4 6.4 0 0 1-1.614.735 6.3 6.3 0 0 1-2.73.191 6.3 6.3 0 0 1-2.211-.764 6.4 6.4 0 0 1-1.735-1.453 6.57 6.57 0 0 1-1.529-4.22q0-.495.073-.982a6.6 6.6 0 0 1 .755-2.237 6.6 6.6 0 0 1 1.43-1.772 6.5 6.5 0 0 1 1.933-1.167 6.3 6.3 0 0 1 3.207-.354c.95.141 1.856.496 2.65 1.04a6.5 6.5 0 0 1 1.885 2.004 1.681 1.681 0 1 1-2.885 1.73 3.1 3.1 0 0 0-.903-.96 2.98 2.98 0 0 0-2.745-.321 3.1 3.1 0 0 0-.93.561 3.2 3.2 0 0 0-.698.864 3.3 3.3 0 0 0-.409 1.595 3.2 3.2 0 0 0 .747 2.062 3 3 0 0 0 .823.69 2.97 2.97 0 0 0 1.476.39c.284 0 .567-.041.84-.122a3 3 0 0 0 .768-.35M.64 5.584l4.317 9.217c.45.962 1.647 1.686 2.783 1.531s2.222-1.166 2.48-2.196l2.566-10.254c.258-1.03-.41-1.897-1.752-1.715-1.447.118-2.347 1.29-2.56 2.33L7.408 9.671c-.096.468-.337.496-.538.062L4.696 5.035c-.447-.964-1.564-1.777-2.74-1.617S.19 4.622.64 5.584M11.495.011q-.608.025-1.222.115a11.93 11.93 0 0 0-5.971 2.67A4.2 4.2 0 0 1 5.79 4.529L6.791 6.69l.502-2.435C7.603 2.744 8.87 1.152 10.9.97q.163-.021.327-.028c.828-.03 1.626.231 2.163.803.613.654.774 1.6.566 2.43l-1.6 6.397a7.7 7.7 0 0 1 1.861-1.035 7.5 7.5 0 0 1 2.836-.5 8 8 0 0 1 .963.08 7.5 7.5 0 0 1 3.14 1.232 7.65 7.65 0 0 1 2.228 2.369c.287.48.415 1.012.4 1.537.245-1.28.284-2.622.086-3.984C22.978 4.128 17.567-.25 11.495.011M.584 8.307a11.94 11.94 0 0 0-.456 5.418c.193 1.328.598 2.574.835 3.04.188.37.254.993.149 1.394l-.755 2.855c-.471 1.785.592 2.842 2.374 2.357l2.663-.723c.399-.109 1.016-.032 1.376.172 1.578.89 4.228 1.447 6.957 1.05l.146-.023a8 8 0 0 1-.743-.37v-.001a7.6 7.6 0 0 1-2.051-1.718 7.75 7.75 0 0 1-1.797-4.665c-.42.217-.884.367-1.38.434-1.746.238-3.337-.72-4.037-2.215zM17 14.743a1.8 1.8 0 0 0-.732.117 2 2 0 0 0-.58.351 2 2 0 0 0-.442.547 2.16 2.16 0 0 0-.264 1.031 2.04 2.04 0 0 0 .474 1.31 1.9 1.9 0 0 0 .506.424 1.8 1.8 0 0 0 .893.236h.002a1.8 1.8 0 0 0 .505-.073 2 2 0 0 0 .474-.216l.001-.001a2.86 2.86 0 0 1 2.15-.375 2.86 2.86 0 0 1 1.644 1.051 12 12 0 0 0 1.861-3.705c-.232.48-.6.898-1.085 1.19a2.87 2.87 0 0 1-3.916-.979 1.9 1.9 0 0 0-.56-.596 1.8 1.8 0 0 0-.932-.313z" })
22
22
  ]
23
23
  }
24
24
  );
package/index.cjs CHANGED
@@ -524,6 +524,7 @@ const SiClerk = require('./icons/SiClerk.cjs');
524
524
  const SiClevercloud = require('./icons/SiClevercloud.cjs');
525
525
  const SiClickhouse = require('./icons/SiClickhouse.cjs');
526
526
  const SiClickup = require('./icons/SiClickup.cjs');
527
+ const SiCline = require('./icons/SiCline.cjs');
527
528
  const SiClion = require('./icons/SiClion.cjs');
528
529
  const SiClockify = require('./icons/SiClockify.cjs');
529
530
  const SiClojure = require('./icons/SiClojure.cjs');
@@ -612,6 +613,7 @@ const SiContabo = require('./icons/SiContabo.cjs');
612
613
  const SiContactlesspayment = require('./icons/SiContactlesspayment.cjs');
613
614
  const SiContainerd = require('./icons/SiContainerd.cjs');
614
615
  const SiContao = require('./icons/SiContao.cjs');
616
+ const SiContensis = require('./icons/SiContensis.cjs');
615
617
  const SiContentful = require('./icons/SiContentful.cjs');
616
618
  const SiContentstack = require('./icons/SiContentstack.cjs');
617
619
  const SiContinente = require('./icons/SiContinente.cjs');
@@ -754,6 +756,7 @@ const SiDhl = require('./icons/SiDhl.cjs');
754
756
  const SiDiagramsdotnet = require('./icons/SiDiagramsdotnet.cjs');
755
757
  const SiDialogflow = require('./icons/SiDialogflow.cjs');
756
758
  const SiDiaspora = require('./icons/SiDiaspora.cjs');
759
+ const SiDicebear = require('./icons/SiDicebear.cjs');
757
760
  const SiDictionarydotcom = require('./icons/SiDictionarydotcom.cjs');
758
761
  const SiDigg = require('./icons/SiDigg.cjs');
759
762
  const SiDigikeyelectronics = require('./icons/SiDigikeyelectronics.cjs');
@@ -774,6 +777,7 @@ const SiDjango = require('./icons/SiDjango.cjs');
774
777
  const SiDji = require('./icons/SiDji.cjs');
775
778
  const SiDlib = require('./icons/SiDlib.cjs');
776
779
  const SiDlna = require('./icons/SiDlna.cjs');
780
+ const SiDlthub = require('./icons/SiDlthub.cjs');
777
781
  const SiDm = require('./icons/SiDm.cjs');
778
782
  const SiDmm = require('./icons/SiDmm.cjs');
779
783
  const SiDocker = require('./icons/SiDocker.cjs');
@@ -1704,6 +1708,7 @@ const SiLodash = require('./icons/SiLodash.cjs');
1704
1708
  const SiLogmein = require('./icons/SiLogmein.cjs');
1705
1709
  const SiLogseq = require('./icons/SiLogseq.cjs');
1706
1710
  const SiLogstash = require('./icons/SiLogstash.cjs');
1711
+ const SiLonghorn = require('./icons/SiLonghorn.cjs');
1707
1712
  const SiLooker = require('./icons/SiLooker.cjs');
1708
1713
  const SiLoom = require('./icons/SiLoom.cjs');
1709
1714
  const SiLoop = require('./icons/SiLoop.cjs');
@@ -4456,6 +4461,8 @@ exports.SiClickhouse = SiClickhouse.default;
4456
4461
  exports.SiClickhouseHex = SiClickhouse.defaultColor;
4457
4462
  exports.SiClickup = SiClickup.default;
4458
4463
  exports.SiClickupHex = SiClickup.defaultColor;
4464
+ exports.SiCline = SiCline.default;
4465
+ exports.SiClineHex = SiCline.defaultColor;
4459
4466
  exports.SiClion = SiClion.default;
4460
4467
  exports.SiClionHex = SiClion.defaultColor;
4461
4468
  exports.SiClockify = SiClockify.default;
@@ -4632,6 +4639,8 @@ exports.SiContainerd = SiContainerd.default;
4632
4639
  exports.SiContainerdHex = SiContainerd.defaultColor;
4633
4640
  exports.SiContao = SiContao.default;
4634
4641
  exports.SiContaoHex = SiContao.defaultColor;
4642
+ exports.SiContensis = SiContensis.default;
4643
+ exports.SiContensisHex = SiContensis.defaultColor;
4635
4644
  exports.SiContentful = SiContentful.default;
4636
4645
  exports.SiContentfulHex = SiContentful.defaultColor;
4637
4646
  exports.SiContentstack = SiContentstack.default;
@@ -4916,6 +4925,8 @@ exports.SiDialogflow = SiDialogflow.default;
4916
4925
  exports.SiDialogflowHex = SiDialogflow.defaultColor;
4917
4926
  exports.SiDiaspora = SiDiaspora.default;
4918
4927
  exports.SiDiasporaHex = SiDiaspora.defaultColor;
4928
+ exports.SiDicebear = SiDicebear.default;
4929
+ exports.SiDicebearHex = SiDicebear.defaultColor;
4919
4930
  exports.SiDictionarydotcom = SiDictionarydotcom.default;
4920
4931
  exports.SiDictionarydotcomHex = SiDictionarydotcom.defaultColor;
4921
4932
  exports.SiDigg = SiDigg.default;
@@ -4956,6 +4967,8 @@ exports.SiDlib = SiDlib.default;
4956
4967
  exports.SiDlibHex = SiDlib.defaultColor;
4957
4968
  exports.SiDlna = SiDlna.default;
4958
4969
  exports.SiDlnaHex = SiDlna.defaultColor;
4970
+ exports.SiDlthub = SiDlthub.default;
4971
+ exports.SiDlthubHex = SiDlthub.defaultColor;
4959
4972
  exports.SiDm = SiDm.default;
4960
4973
  exports.SiDmHex = SiDm.defaultColor;
4961
4974
  exports.SiDmm = SiDmm.default;
@@ -6816,6 +6829,8 @@ exports.SiLogseq = SiLogseq.default;
6816
6829
  exports.SiLogseqHex = SiLogseq.defaultColor;
6817
6830
  exports.SiLogstash = SiLogstash.default;
6818
6831
  exports.SiLogstashHex = SiLogstash.defaultColor;
6832
+ exports.SiLonghorn = SiLonghorn.default;
6833
+ exports.SiLonghornHex = SiLonghorn.defaultColor;
6819
6834
  exports.SiLooker = SiLooker.default;
6820
6835
  exports.SiLookerHex = SiLooker.defaultColor;
6821
6836
  exports.SiLoom = SiLoom.default;
package/index.d.ts CHANGED
@@ -520,6 +520,7 @@ export { default as SiClerk, defaultColor as SiClerkHex } from './icons/SiClerk'
520
520
  export { default as SiClevercloud, defaultColor as SiClevercloudHex } from './icons/SiClevercloud';
521
521
  export { default as SiClickhouse, defaultColor as SiClickhouseHex } from './icons/SiClickhouse';
522
522
  export { default as SiClickup, defaultColor as SiClickupHex } from './icons/SiClickup';
523
+ export { default as SiCline, defaultColor as SiClineHex } from './icons/SiCline';
523
524
  export { default as SiClion, defaultColor as SiClionHex } from './icons/SiClion';
524
525
  export { default as SiClockify, defaultColor as SiClockifyHex } from './icons/SiClockify';
525
526
  export { default as SiClojure, defaultColor as SiClojureHex } from './icons/SiClojure';
@@ -608,6 +609,7 @@ export { default as SiContabo, defaultColor as SiContaboHex } from './icons/SiCo
608
609
  export { default as SiContactlesspayment, defaultColor as SiContactlesspaymentHex } from './icons/SiContactlesspayment';
609
610
  export { default as SiContainerd, defaultColor as SiContainerdHex } from './icons/SiContainerd';
610
611
  export { default as SiContao, defaultColor as SiContaoHex } from './icons/SiContao';
612
+ export { default as SiContensis, defaultColor as SiContensisHex } from './icons/SiContensis';
611
613
  export { default as SiContentful, defaultColor as SiContentfulHex } from './icons/SiContentful';
612
614
  export { default as SiContentstack, defaultColor as SiContentstackHex } from './icons/SiContentstack';
613
615
  export { default as SiContinente, defaultColor as SiContinenteHex } from './icons/SiContinente';
@@ -750,6 +752,7 @@ export { default as SiDhl, defaultColor as SiDhlHex } from './icons/SiDhl';
750
752
  export { default as SiDiagramsdotnet, defaultColor as SiDiagramsdotnetHex } from './icons/SiDiagramsdotnet';
751
753
  export { default as SiDialogflow, defaultColor as SiDialogflowHex } from './icons/SiDialogflow';
752
754
  export { default as SiDiaspora, defaultColor as SiDiasporaHex } from './icons/SiDiaspora';
755
+ export { default as SiDicebear, defaultColor as SiDicebearHex } from './icons/SiDicebear';
753
756
  export { default as SiDictionarydotcom, defaultColor as SiDictionarydotcomHex } from './icons/SiDictionarydotcom';
754
757
  export { default as SiDigg, defaultColor as SiDiggHex } from './icons/SiDigg';
755
758
  export { default as SiDigikeyelectronics, defaultColor as SiDigikeyelectronicsHex } from './icons/SiDigikeyelectronics';
@@ -770,6 +773,7 @@ export { default as SiDjango, defaultColor as SiDjangoHex } from './icons/SiDjan
770
773
  export { default as SiDji, defaultColor as SiDjiHex } from './icons/SiDji';
771
774
  export { default as SiDlib, defaultColor as SiDlibHex } from './icons/SiDlib';
772
775
  export { default as SiDlna, defaultColor as SiDlnaHex } from './icons/SiDlna';
776
+ export { default as SiDlthub, defaultColor as SiDlthubHex } from './icons/SiDlthub';
773
777
  export { default as SiDm, defaultColor as SiDmHex } from './icons/SiDm';
774
778
  export { default as SiDmm, defaultColor as SiDmmHex } from './icons/SiDmm';
775
779
  export { default as SiDocker, defaultColor as SiDockerHex } from './icons/SiDocker';
@@ -1700,6 +1704,7 @@ export { default as SiLodash, defaultColor as SiLodashHex } from './icons/SiLoda
1700
1704
  export { default as SiLogmein, defaultColor as SiLogmeinHex } from './icons/SiLogmein';
1701
1705
  export { default as SiLogseq, defaultColor as SiLogseqHex } from './icons/SiLogseq';
1702
1706
  export { default as SiLogstash, defaultColor as SiLogstashHex } from './icons/SiLogstash';
1707
+ export { default as SiLonghorn, defaultColor as SiLonghornHex } from './icons/SiLonghorn';
1703
1708
  export { default as SiLooker, defaultColor as SiLookerHex } from './icons/SiLooker';
1704
1709
  export { default as SiLoom, defaultColor as SiLoomHex } from './icons/SiLoom';
1705
1710
  export { default as SiLoop, defaultColor as SiLoopHex } from './icons/SiLoop';
package/index.mjs CHANGED
@@ -520,6 +520,7 @@ export { default as SiClerk, defaultColor as SiClerkHex } from './icons/SiClerk.
520
520
  export { default as SiClevercloud, defaultColor as SiClevercloudHex } from './icons/SiClevercloud.mjs';
521
521
  export { default as SiClickhouse, defaultColor as SiClickhouseHex } from './icons/SiClickhouse.mjs';
522
522
  export { default as SiClickup, defaultColor as SiClickupHex } from './icons/SiClickup.mjs';
523
+ export { default as SiCline, defaultColor as SiClineHex } from './icons/SiCline.mjs';
523
524
  export { default as SiClion, defaultColor as SiClionHex } from './icons/SiClion.mjs';
524
525
  export { default as SiClockify, defaultColor as SiClockifyHex } from './icons/SiClockify.mjs';
525
526
  export { default as SiClojure, defaultColor as SiClojureHex } from './icons/SiClojure.mjs';
@@ -608,6 +609,7 @@ export { default as SiContabo, defaultColor as SiContaboHex } from './icons/SiCo
608
609
  export { default as SiContactlesspayment, defaultColor as SiContactlesspaymentHex } from './icons/SiContactlesspayment.mjs';
609
610
  export { default as SiContainerd, defaultColor as SiContainerdHex } from './icons/SiContainerd.mjs';
610
611
  export { default as SiContao, defaultColor as SiContaoHex } from './icons/SiContao.mjs';
612
+ export { default as SiContensis, defaultColor as SiContensisHex } from './icons/SiContensis.mjs';
611
613
  export { default as SiContentful, defaultColor as SiContentfulHex } from './icons/SiContentful.mjs';
612
614
  export { default as SiContentstack, defaultColor as SiContentstackHex } from './icons/SiContentstack.mjs';
613
615
  export { default as SiContinente, defaultColor as SiContinenteHex } from './icons/SiContinente.mjs';
@@ -750,6 +752,7 @@ export { default as SiDhl, defaultColor as SiDhlHex } from './icons/SiDhl.mjs';
750
752
  export { default as SiDiagramsdotnet, defaultColor as SiDiagramsdotnetHex } from './icons/SiDiagramsdotnet.mjs';
751
753
  export { default as SiDialogflow, defaultColor as SiDialogflowHex } from './icons/SiDialogflow.mjs';
752
754
  export { default as SiDiaspora, defaultColor as SiDiasporaHex } from './icons/SiDiaspora.mjs';
755
+ export { default as SiDicebear, defaultColor as SiDicebearHex } from './icons/SiDicebear.mjs';
753
756
  export { default as SiDictionarydotcom, defaultColor as SiDictionarydotcomHex } from './icons/SiDictionarydotcom.mjs';
754
757
  export { default as SiDigg, defaultColor as SiDiggHex } from './icons/SiDigg.mjs';
755
758
  export { default as SiDigikeyelectronics, defaultColor as SiDigikeyelectronicsHex } from './icons/SiDigikeyelectronics.mjs';
@@ -770,6 +773,7 @@ export { default as SiDjango, defaultColor as SiDjangoHex } from './icons/SiDjan
770
773
  export { default as SiDji, defaultColor as SiDjiHex } from './icons/SiDji.mjs';
771
774
  export { default as SiDlib, defaultColor as SiDlibHex } from './icons/SiDlib.mjs';
772
775
  export { default as SiDlna, defaultColor as SiDlnaHex } from './icons/SiDlna.mjs';
776
+ export { default as SiDlthub, defaultColor as SiDlthubHex } from './icons/SiDlthub.mjs';
773
777
  export { default as SiDm, defaultColor as SiDmHex } from './icons/SiDm.mjs';
774
778
  export { default as SiDmm, defaultColor as SiDmmHex } from './icons/SiDmm.mjs';
775
779
  export { default as SiDocker, defaultColor as SiDockerHex } from './icons/SiDocker.mjs';
@@ -1700,6 +1704,7 @@ export { default as SiLodash, defaultColor as SiLodashHex } from './icons/SiLoda
1700
1704
  export { default as SiLogmein, defaultColor as SiLogmeinHex } from './icons/SiLogmein.mjs';
1701
1705
  export { default as SiLogseq, defaultColor as SiLogseqHex } from './icons/SiLogseq.mjs';
1702
1706
  export { default as SiLogstash, defaultColor as SiLogstashHex } from './icons/SiLogstash.mjs';
1707
+ export { default as SiLonghorn, defaultColor as SiLonghornHex } from './icons/SiLonghorn.mjs';
1703
1708
  export { default as SiLooker, defaultColor as SiLookerHex } from './icons/SiLooker.mjs';
1704
1709
  export { default as SiLoom, defaultColor as SiLoomHex } from './icons/SiLoom.mjs';
1705
1710
  export { default as SiLoop, defaultColor as SiLoopHex } from './icons/SiLoop.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icons-pack/react-simple-icons",
3
- "version": "13.12.0",
3
+ "version": "13.13.0",
4
4
  "description": "This package provides the Simple Icons packaged as a set of React components.",
5
5
  "keywords": [
6
6
  "react",
@@ -64,7 +64,7 @@
64
64
  "react": "^18",
65
65
  "rimraf": "6.0.1",
66
66
  "signale": "1.4.0",
67
- "simple-icons": "16.10.0",
67
+ "simple-icons": "16.12.0",
68
68
  "typescript": "5.5.4",
69
69
  "uppercamelcase": "3.0.0",
70
70
  "vite": "5.4.1",
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiClineProps = 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 = '#18181B';
22
+
23
+ const SiCline: IconType = React.forwardRef<SVGSVGElement, SiClineProps>(function SiCline({title = 'Cline', 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='m23.365 13.556-1.442-2.895V8.994c0-2.764-2.218-5.002-4.954-5.002h-2.464c.178-.367.276-.779.276-1.213A2.77 2.77 0 0 0 12.018 0a2.77 2.77 0 0 0-2.763 2.779c0 .434.098.846.276 1.213H7.067c-2.736 0-4.954 2.238-4.954 5.002v1.667L.64 13.549c-.149.29-.149.636 0 .927l1.472 2.855v1.667C2.113 21.762 4.33 24 7.067 24h9.902c2.736 0 4.954-2.238 4.954-5.002V17.33l1.44-2.865c.143-.286.143-.622.002-.91m-12.854 2.36a2.27 2.27 0 0 1-2.261 2.273 2.27 2.27 0 0 1-2.261-2.273v-4.042A2.27 2.27 0 0 1 8.249 9.6a2.267 2.267 0 0 1 2.262 2.274zm7.285 0a2.27 2.27 0 0 1-2.26 2.273 2.27 2.27 0 0 1-2.262-2.273v-4.042A2.267 2.267 0 0 1 15.535 9.6a2.267 2.267 0 0 1 2.261 2.274z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiCline as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiContensisProps = 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 = '#37BFA7';
22
+
23
+ const SiContensis: IconType = React.forwardRef<SVGSVGElement, SiContensisProps>(function SiContensis({title = 'Contensis', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M14.92 0q-.131.009-.22.155c-2.795 4.728-6.555 7.99-6.792 10.154-.221 2.02.51 3.689 1.71 4.726a30 30 0 0 0 1.355-1.83c-.022-.417-.182-3.68.164-4.6.197 1.418.606 2.726.758 3.182a43 43 0 0 0 1.029-1.755c-.031-.83-.116-3.755.174-4.424.077.965.434 2.194.65 2.863.287-.571.444-.918.447-.926l1.016-2.256-.268 2.453c-.001.013-.09.823-.306 2.055.594-.483 1.539-1.297 1.998-1.935.04.77-1.667 2.833-2.322 3.597a42 42 0 0 1-.403 1.698c.569-.316 1.872-1.073 2.6-1.762-.11.785-2.422 2.783-3.033 3.299a30 30 0 0 1-.502 1.492c1.404-.08 2.878-.787 4.113-2.3C20.548 9.642 16.235-.09 14.92 0m-2.928 2.8c-.578 0-1.14.14-1.582.392L3.84 6.936c-.92.524-1.59 1.669-1.59 2.719v7.49c0 1.05.67 2.194 1.59 2.718l6.57 3.744c.443.253 1.008.392 1.59.392.58 0 1.146-.139 1.59-.392l6.57-3.744c.92-.524 1.59-1.67 1.59-2.72v-7.49c0-1.05-.67-2.191-1.59-2.717l-1.353-.774c.134.62.235 1.234.298 1.823a52 52 0 0 1 .135 1.67v7.49c0 .16-.194.49-.334.572l-6.572 3.743a.8.8 0 0 1-.334.06.8.8 0 0 1-.334-.06l-6.57-3.743c-.141-.08-.336-.412-.336-.572v-7.49c0-.16.195-.493.336-.573l3.648-2.08c.425-.58.913-1.194 1.436-1.855a92 92 0 0 0 1.812-2.348m1.79 7.302c-1.254 2.309-3.458 5.87-6.145 8.125.044.019.393.228 2.703 1.54 1.91-2.788 2.947-7.015 3.443-9.665M7.63 18.226v.002l.002.002.002-.004h-.002z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiContensis as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiDicebearProps = 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 = '#0284C7';
22
+
23
+ const SiDicebear: IconType = React.forwardRef<SVGSVGElement, SiDicebearProps>(function SiDicebear({title = 'DiceBear', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M1.5 0A1.5 1.5 0 0 0 0 1.5v21A1.5 1.5 0 0 0 1.5 24h12.84a.99.99 0 0 0 .87-1.468c-.986-1.777-1.929-3.346-2.523-4.024-1.69-1.933-9.626-.13-9.877-6.435-.016-.415.262-.777.655-.908l3.872-1.29c.226-.076.418-.23.547-.43.365-.569 1.182-1.768 1.928-2.375.707-.574 1.85-1.301 3.936-1.636.417-.067.749-.379.952-.75.488-.89 1.457-1.432 2.478-1.285 1.332.192 2.249 1.483 2.048 2.883a.3.3 0 0 0 .094.276c.889.794 1.829 1.894 2.759 3.137.596.797 1.921.393 1.921-.602V1.5A1.5 1.5 0 0 0 22.5 0zm9.375 9.625a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 1 0-2.5 0' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiDicebear as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiDlthubProps = 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 = '#59C1D5';
22
+
23
+ const SiDlthub: IconType = React.forwardRef<SVGSVGElement, SiDlthubProps>(function SiDlthub({title = 'dlthub', color = 'currentColor', size = 24, ...others }, ref) {
24
+ if (color === 'default') {
25
+ color = defaultColor;
26
+ }
27
+
28
+ return (
29
+ <svg
30
+ xmlns='http://www.w3.org/2000/svg'
31
+ width={size}
32
+ height={size}
33
+ fill={color}
34
+ viewBox='0 0 24 24'
35
+ ref={ref}
36
+ {...others}
37
+ >
38
+ <title>{title}</title>
39
+ <path d='M24 11.498h-1.008v3.01H24Zm-3.024 0h2.016v-1.004h-2.016V8.487h-1.008v7.025h3.024v-1.004h-2.016zm-2.986 3.01h-2.016v1.004h3.024v-5.017H17.99zm-2.016-4.013h-1.008v4.014h1.008zm-2.985 1.003h-2.016v-3.01H9.965v7.024h1.008v-3.01h2.016v3.01h1.008V8.488h-1.008zm-11.981 0H0v3.01h1.008zm2.016-1.003H1.008v1.003h2.016v3.01H1.008v1.004h3.024V8.488H3.024zM5 15.512h1.01V8.488H5.001Zm2.986-7.024H6.98v6.02h1.008v-3.01h1.008v-1.003H7.987zm1.008 6.02H7.987v1.004h1.008z' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiDlthub as default, defaultColor };
45
+
@@ -0,0 +1,45 @@
1
+
2
+ import * as React from 'react';
3
+
4
+ import { IconType } from '../types';
5
+
6
+ type SiLonghornProps = 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 = '#5F224B';
22
+
23
+ const SiLonghorn: IconType = React.forwardRef<SVGSVGElement, SiLonghornProps>(function SiLonghorn({title = 'Longhorn', 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='M21.46 2.172H2.54A2.55 2.55 0 0 0 0 4.712v14.575a2.55 2.55 0 0 0 2.54 2.54h18.92a2.55 2.55 0 0 0 2.54-2.54V4.713a2.55 2.55 0 0 0-2.54-2.54m.427 5.138-.31 2.1a1.24 1.24 0 0 1-.98 1.032l-5.024 1.003-.002.015-.787 4.306a2.474 2.474 0 0 1-2.467 2.34h-.634a2.474 2.474 0 0 1-2.468-2.355l-.697-4.288-5.115-1.021a1.24 1.24 0 0 1-.98-1.032l-.31-2.1a1.235 1.235 0 0 1 2.445-.36L4.74 8.19 12 9.639l7.26-1.45.182-1.24a1.235 1.235 0 0 1 2.445.36M12 12.134a1.2 1.2 0 0 1-.242-.024l-.653-.13.562 3.457a1 1 0 0 1 .016.198h.634a1.2 1.2 0 0 1 .02-.222l.63-3.448-.725.145a1.2 1.2 0 0 1-.242.024' />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ export { SiLonghorn as default, defaultColor };
45
+
@@ -18,7 +18,7 @@
18
18
  size?: string | number;
19
19
  }
20
20
 
21
- const defaultColor = '#D3859B';
21
+ const defaultColor = '#EB7396';
22
22
 
23
23
  const SiVencord: IconType = React.forwardRef<SVGSVGElement, SiVencordProps>(function SiVencord({title = 'Vencord', 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='M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z' />
39
+ <path d='M18.465 19.458a1.68 1.68 0 0 1 1.268-.221 1.68 1.68 0 0 1 .534 3.061 6.4 6.4 0 0 1-1.614.735 6.3 6.3 0 0 1-2.73.191 6.3 6.3 0 0 1-2.211-.764 6.4 6.4 0 0 1-1.735-1.453 6.57 6.57 0 0 1-1.529-4.22q0-.495.073-.982a6.6 6.6 0 0 1 .755-2.237 6.6 6.6 0 0 1 1.43-1.772 6.5 6.5 0 0 1 1.933-1.167 6.3 6.3 0 0 1 3.207-.354c.95.141 1.856.496 2.65 1.04a6.5 6.5 0 0 1 1.885 2.004 1.681 1.681 0 1 1-2.885 1.73 3.1 3.1 0 0 0-.903-.96 2.98 2.98 0 0 0-2.745-.321 3.1 3.1 0 0 0-.93.561 3.2 3.2 0 0 0-.698.864 3.3 3.3 0 0 0-.409 1.595 3.2 3.2 0 0 0 .747 2.062 3 3 0 0 0 .823.69 2.97 2.97 0 0 0 1.476.39c.284 0 .567-.041.84-.122a3 3 0 0 0 .768-.35M.64 5.584l4.317 9.217c.45.962 1.647 1.686 2.783 1.531s2.222-1.166 2.48-2.196l2.566-10.254c.258-1.03-.41-1.897-1.752-1.715-1.447.118-2.347 1.29-2.56 2.33L7.408 9.671c-.096.468-.337.496-.538.062L4.696 5.035c-.447-.964-1.564-1.777-2.74-1.617S.19 4.622.64 5.584M11.495.011q-.608.025-1.222.115a11.93 11.93 0 0 0-5.971 2.67A4.2 4.2 0 0 1 5.79 4.529L6.791 6.69l.502-2.435C7.603 2.744 8.87 1.152 10.9.97q.163-.021.327-.028c.828-.03 1.626.231 2.163.803.613.654.774 1.6.566 2.43l-1.6 6.397a7.7 7.7 0 0 1 1.861-1.035 7.5 7.5 0 0 1 2.836-.5 8 8 0 0 1 .963.08 7.5 7.5 0 0 1 3.14 1.232 7.65 7.65 0 0 1 2.228 2.369c.287.48.415 1.012.4 1.537.245-1.28.284-2.622.086-3.984C22.978 4.128 17.567-.25 11.495.011M.584 8.307a11.94 11.94 0 0 0-.456 5.418c.193 1.328.598 2.574.835 3.04.188.37.254.993.149 1.394l-.755 2.855c-.471 1.785.592 2.842 2.374 2.357l2.663-.723c.399-.109 1.016-.032 1.376.172 1.578.89 4.228 1.447 6.957 1.05l.146-.023a8 8 0 0 1-.743-.37v-.001a7.6 7.6 0 0 1-2.051-1.718 7.75 7.75 0 0 1-1.797-4.665c-.42.217-.884.367-1.38.434-1.746.238-3.337-.72-4.037-2.215zM17 14.743a1.8 1.8 0 0 0-.732.117 2 2 0 0 0-.58.351 2 2 0 0 0-.442.547 2.16 2.16 0 0 0-.264 1.031 2.04 2.04 0 0 0 .474 1.31 1.9 1.9 0 0 0 .506.424 1.8 1.8 0 0 0 .893.236h.002a1.8 1.8 0 0 0 .505-.073 2 2 0 0 0 .474-.216l.001-.001a2.86 2.86 0 0 1 2.15-.375 2.86 2.86 0 0 1 1.644 1.051 12 12 0 0 0 1.861-3.705c-.232.48-.6.898-1.085 1.19a2.87 2.87 0 0 1-3.916-.979 1.9 1.9 0 0 0-.56-.596 1.8 1.8 0 0 0-.932-.313z' />
40
40
  </svg>
41
41
  );
42
42
  });