@iconify-solid/simple-icons 1.0.4 → 1.0.6
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/components/c/cachyos.jsx +15 -0
- package/components/c/corsair.jsx +2 -2
- package/components/f/fluxer.jsx +15 -0
- package/components/r/rustfs.jsx +15 -0
- package/components/s/spidermonkey.jsx +15 -0
- package/components/t/trmnl.jsx +15 -0
- package/components/t/ty.jsx +15 -0
- package/css/c/c7poqunh.css +4 -0
- package/css/d/d1v1xeby.css +4 -0
- package/css/d/dht2r7p.css +4 -0
- package/css/p/p2-vukbc.css +4 -0
- package/css/p/p80c_5dm.css +4 -0
- package/css/t/taj7iwbk.css +4 -0
- package/css/u/u-oj7jbg.css +4 -0
- package/iconify.json +3 -3
- package/package.json +25 -1
- package/css/f/fbgurdby.css +0 -4
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/c/c7poqunh.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="c7poqunh"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:cachyos"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
package/components/c/corsair.jsx
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Icon } from '@iconify/css-solid';
|
|
2
2
|
import { splitProps } from 'solid-js';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/d/d1v1xeby.css';
|
|
4
4
|
|
|
5
5
|
const viewBox = {"width":24,"height":24};
|
|
6
|
-
const content = `<path class="
|
|
6
|
+
const content = `<path class="d1v1xeby"/>`;
|
|
7
7
|
|
|
8
8
|
/** @param props {{width?: string; height?: string;}} */
|
|
9
9
|
function Component(props) {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/p/p80c_5dm.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="p80c_5dm"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:fluxer"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/t/taj7iwbk.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="taj7iwbk"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:rustfs"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/p/p2-vukbc.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="p2-vukbc"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:spidermonkey"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/u/u-oj7jbg.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="u-oj7jbg"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:trmnl"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/d/dht2r7p.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":24,"height":24};
|
|
6
|
+
const content = `<path class="dht2r7p"/>`;
|
|
7
|
+
|
|
8
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
9
|
+
function Component(props) {
|
|
10
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
11
|
+
|
|
12
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"simple-icons:ty"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.c7poqunh {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5.301 2.646L0 11.771l5.541 9.583h11.486l2.904-5.017H8.102l-2.56-4.429L8.067 7.54h6.063l2.83-4.893ZM20.058 4.12a.748.748 0 0 0 0 1.496a.748.748 0 0 0 0-1.496m-1.983 4.303a1.45 1.45 0 0 0 0 2.9a1.45 1.45 0 0 0 0-2.9m4.02 3.98a1.904 1.904 0 0 0 0 3.809a1.904 1.904 0 0 0 0-3.81");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.d1v1xeby {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M13.073.411s1.912 3.883 1.56 5.5c0 0 4.988 1.615 5.543 4.275c0 0 2.731-3.595-7.103-9.775m-1.922 5.825c.487 1.021.707 2.118.994 3.264L9.301 8.42c.264-1.726-1.416-4.354-1.416-4.354zM6.107 8.91c.314.83.672 1.87.862 2.768l-2.564-.638c.263-1.726-1.362-3.813-1.362-3.813zm5.585-4.15s11.436 8.031 12.19 11.147c.568 2.344-1.085 4.51-1.085 4.51s-.881-6.12-22.796 3.172c2.218-2.475 3.426-5.635 3.107-9.045a11.5 11.5 0 0 0-1.076-3.93l5.136 2.722l.02.244c.195 2.085.043 4.112-.428 5.99a14.1 14.1 0 0 0 1.306-7.348A14.1 14.1 0 0 0 6.907 7.76l5.49 3.657c.023.182.035.366.052.55c.216 2.307.001 4.545-.592 6.587c1.291-2.393 1.925-5.155 1.655-8.04a14.1 14.1 0 0 0-1.82-5.753");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.p2-vukbc {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.414 1.851c-.768-.027-1.613.236-2.753.774c-1.215.39-1.91 1.447-.482 1.446l-.035.93l-.9.345l-.033.902s-.138 1.05 1.004.989c-.15.035-.272.11-.105.276c.31.31.718.207 2.198.241c1.48.035 1.64 1.682 1.64 1.682s.332 2.698.283 5.327c-1.604-.853-3.205-1.609-3.703-1.5c-1.102.24-2.043 1.328-1.102 2.891c.862 1.432 2.318 2.45 3.784 3.37c-.438.723-.981 1.106-2.08.839c-.554-.135-.508-.447-2.005-1.267c-2.755-1.11-2.28-.318-1.603.335c1.42 1.013 2.118 1.933 3.17 2.362c1.033.423 2.416.377 4.179-1.129l.082-.094l-.057.07c2.255 1.404 5.062 1.838 7.649 1.266c.127-.041.537-.095.503-.144l.06.008c.012-.067 2.582.276 4.479-.492c1.837-.745 3.036-2.14 3.29-3.587c1.044-5.95-4.87-6.422-5.645-6.663l-1.774-.481c-.335-.84-.783-1.661-1.357-2.56a5.8 5.8 0 0 0-1.26-1.41l.004.004s.174-.55.835-1.118c.134-.107 2.36-1.808 6.407-.085l.286 2.758l1.839-.095L22.99 4.3c-.65-.762-6.17-3.052-10.155-.012c-.586.507-.952 1.213-.952 1.213q.006.001.013.007a9 9 0 0 0-1.95-.443v-.007s-.774-2.13-2.184-2.84a3.2 3.2 0 0 0-1.348-.366Zm-.887 2.838l.002.012zm4.978 3.535l.017.008l-.016-.003zm-.168 3.76c.598 1.004 1.035 1.904 1.225 3.017a11.6 11.6 0 0 1-.44 1.977s-.51-.309-1.242-.736c.136-.839.226-1.743.337-2.76c.036-.485.078-.996.12-1.498m6.65.357l.015.069c.025.128.046.262.069.39l1.923.537s3.167.617 2.684 3.811c-.455 3.007-4.992 2.77-4.976 2.67c.543-3.396.65-5.612.286-7.477z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.p80c_5dm {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12S5.373 0 12 0M8.79 12.471q-1.092 0-2.078.493q-.975.493-1.586 1.575q-.395.712-.52 1.726c-.078.626.448 1.135 1.079 1.135c.645 0 1.128-.543 1.284-1.17q.133-.531.429-.844q.568-.6 1.435-.6q.58 0 1.061.289q.482.279 1.254.954q1.178 1.038 2.078 1.51q.9.46 1.993.461q1.093 0 2.079-.493q.985-.492 1.596-1.575q.404-.714.522-1.734c.072-.623-.455-1.127-1.083-1.127c-.65 0-1.134.549-1.307 1.176a2.1 2.1 0 0 1-.382.774q-.535.665-1.468.665q-.579 0-1.05-.279q-.46-.29-1.264-.964q-1.19-.996-2.09-1.479a4 4 0 0 0-1.982-.493M8.79 6q-1.092 0-2.078.493q-.975.492-1.586 1.575q-.395.712-.52 1.726c-.078.625.448 1.135 1.079 1.135c.645 0 1.128-.543 1.284-1.17q.133-.533.429-.845q.568-.6 1.435-.6q.58 0 1.061.29q.482.278 1.254.953q1.178 1.04 2.078 1.51q.9.462 1.993.462t2.079-.493q.985-.493 1.596-1.575q.404-.716.522-1.734c.072-.624-.455-1.127-1.083-1.127c-.65 0-1.134.549-1.307 1.175a2.1 2.1 0 0 1-.382.775q-.535.664-1.468.664q-.579 0-1.05-.278q-.46-.29-1.264-.965q-1.19-.996-2.09-1.478A4 4 0 0 0 8.79 6");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.taj7iwbk {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M0 9.997v4.006h1.086v-1.495h.773c.142.013.268.05.364.209l.621 1.286h1.238l-.611-1.225c-.187-.392-.369-.478-.718-.57c.516-.08.965-.386.965-1.084c0-.306-.116-.661-.348-.851c-.228-.19-.536-.276-.915-.276H1.86zm5.335 0l-1.022.231v2.473c0 .502.158.83.458 1.016s.758.286 1.398.286c.616 0 1.073-.1 1.384-.286q.473-.28.473-.96v-2.76l-1.017.231v2.25c0 .31-.045.495-.177.631c-.132.143-.373.193-.663.193c-.3 0-.52-.056-.662-.193c-.132-.13-.172-.405-.172-.708Zm4.74 0q-.864.002-1.337.297c-.315.195-.481.592-.481.972c0 .326.119.575.368.764q.365.265 1.32.433c.195.036.356.06.48.095q.19.053.28.1c.113.06.172.149.172.244q0 .186-.214.284c-.422.202-1.61.077-2.085-.136l-.202.764c.053.006.142.024.25.042c.873.136 2.014.314 2.792-.178c.333-.207.505-.504.505-.919a.93.93 0 0 0-.339-.729q-.321-.284-1.206-.438c-.178-.036-.339-.06-.47-.095c-.873-.196-.748-.688.114-.688c.463 0 .909.143 1.348.22l.095.017l.096-.853c-.464-.142-1.01-.196-1.486-.196m2.079 0v.9h1.42v3.106h1.32v-3.105h1.413v-.9Zm4.39 0v4.006h1.321v-1.495h2.114l-.13-.771h-1.984v-.84h1.575l.124-.9zm5.546 0c-.596 0-1.056.1-1.37.302c-.338.2-.51.59-.51.975c0 .325.13.573.381.75c.258.19.713.332 1.364.444c.135.018.245.036.344.06l.012-.208l.909.61l-.952.531l.006-.183c-.559.041-1.363-.06-1.732-.23l-.203.762c.05.012.142.017.252.047c.903.136 2.082.313 2.887-.183c.35-.201.522-.509.522-.91a.92.92 0 0 0-.344-.733q-.332-.279-1.247-.432c-.19-.035-.35-.07-.491-.094q-.01.002-.012-.006v.23l-.94-.573l.94-.567v.224h.129c.479 0 .94.148 1.4.225c.061.006.086.006.092.006l.098-.852a6 6 0 0 0-1.535-.195m-21.034.748h.909q.339 0 .526.134c.116.086.171.22.171.417c0 .208-.07.361-.222.447c-.131.08-.328.122-.58.135h-.804Z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.u-oj7jbg {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m6.024.913l6.661 2.498l-1.237 3.299l-6.661-2.498ZM16.705.097l2.2 6.766l-3.35 1.09l-2.2-6.766zM24 7.942l-3.917 5.939l-2.941-1.94L21.06 6Zm-1.583 10.593l-7.086.64l-.317-3.509l7.086-.64zm-9.271 5.367L8.228 18.76l2.546-2.436l4.918 5.141zm-9.976-3.9l.953-7.05l3.491.472l-.953 7.05zM0 9.768l6.107-3.65L7.915 9.14l-6.107 3.65Z");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "simple-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Simple Icons",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "16.
|
|
5
|
+
"total": 3423,
|
|
6
|
+
"version": "16.16.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Simple Icons Collaborators",
|
|
9
9
|
"url": "https://github.com/simple-icons/simple-icons"
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"category": "Logos",
|
|
26
26
|
"palette": false
|
|
27
27
|
},
|
|
28
|
-
"lastModified":
|
|
28
|
+
"lastModified": 1776056252
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/simple-icons",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/simple-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC0-1.0",
|
|
@@ -2066,6 +2066,10 @@
|
|
|
2066
2066
|
"types": "./types/vn2rmosy.d.ts",
|
|
2067
2067
|
"default": "./components/c/cachet.jsx"
|
|
2068
2068
|
},
|
|
2069
|
+
"./cachyos": {
|
|
2070
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
2071
|
+
"default": "./components/c/cachyos.jsx"
|
|
2072
|
+
},
|
|
2069
2073
|
"./caddy": {
|
|
2070
2074
|
"types": "./types/vn2rmosy.d.ts",
|
|
2071
2075
|
"default": "./components/c/caddy.jsx"
|
|
@@ -4466,6 +4470,10 @@
|
|
|
4466
4470
|
"types": "./types/vn2rmosy.d.ts",
|
|
4467
4471
|
"default": "./components/f/flux.jsx"
|
|
4468
4472
|
},
|
|
4473
|
+
"./fluxer": {
|
|
4474
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
4475
|
+
"default": "./components/f/fluxer.jsx"
|
|
4476
|
+
},
|
|
4469
4477
|
"./fluxus": {
|
|
4470
4478
|
"types": "./types/vn2rmosy.d.ts",
|
|
4471
4479
|
"default": "./components/f/fluxus.jsx"
|
|
@@ -11170,6 +11178,10 @@
|
|
|
11170
11178
|
"types": "./types/vn2rmosy.d.ts",
|
|
11171
11179
|
"default": "./components/r/rustdesk.jsx"
|
|
11172
11180
|
},
|
|
11181
|
+
"./rustfs": {
|
|
11182
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
11183
|
+
"default": "./components/r/rustfs.jsx"
|
|
11184
|
+
},
|
|
11173
11185
|
"./rxdb": {
|
|
11174
11186
|
"types": "./types/vn2rmosy.d.ts",
|
|
11175
11187
|
"default": "./components/r/rxdb.jsx"
|
|
@@ -12014,6 +12026,10 @@
|
|
|
12014
12026
|
"types": "./types/vn2rmosy.d.ts",
|
|
12015
12027
|
"default": "./components/s/sphinx.jsx"
|
|
12016
12028
|
},
|
|
12029
|
+
"./spidermonkey": {
|
|
12030
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
12031
|
+
"default": "./components/s/spidermonkey.jsx"
|
|
12032
|
+
},
|
|
12017
12033
|
"./spigotmc": {
|
|
12018
12034
|
"types": "./types/vn2rmosy.d.ts",
|
|
12019
12035
|
"default": "./components/s/spigotmc.jsx"
|
|
@@ -13182,6 +13198,10 @@
|
|
|
13182
13198
|
"types": "./types/vn2rmosy.d.ts",
|
|
13183
13199
|
"default": "./components/t/trivy.jsx"
|
|
13184
13200
|
},
|
|
13201
|
+
"./trmnl": {
|
|
13202
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
13203
|
+
"default": "./components/t/trmnl.jsx"
|
|
13204
|
+
},
|
|
13185
13205
|
"./trove": {
|
|
13186
13206
|
"types": "./types/vn2rmosy.d.ts",
|
|
13187
13207
|
"default": "./components/t/trove.jsx"
|
|
@@ -13306,6 +13326,10 @@
|
|
|
13306
13326
|
"types": "./types/vn2rmosy.d.ts",
|
|
13307
13327
|
"default": "./components/t/twoo.jsx"
|
|
13308
13328
|
},
|
|
13329
|
+
"./ty": {
|
|
13330
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
13331
|
+
"default": "./components/t/ty.jsx"
|
|
13332
|
+
},
|
|
13309
13333
|
"./typeform": {
|
|
13310
13334
|
"types": "./types/vn2rmosy.d.ts",
|
|
13311
13335
|
"default": "./components/t/typeform.jsx"
|
package/css/f/fbgurdby.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.fbgurdby {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M13.072.412s1.913 3.881 1.563 5.5c0 0 4.987 1.612 5.54 4.272c0 0 2.73-3.594-7.103-9.772M7.908 4.067s1.678 2.625 1.417 4.35l2.818 1.067a17.6 17.6 0 0 0-.991-3.248zm3.784.691a14.16 14.16 0 0 1 .163 13.794a17.7 17.7 0 0 0 .594-6.585c-.017-.186-.031-.368-.053-.55L6.908 7.759a14.1 14.1 0 0 1 1.133 4.465a14 14 0 0 1-1.305 7.347a17.8 17.8 0 0 0 .442-5.988a1 1 0 0 1-.022-.243l-5.133-2.726a11.6 11.6 0 0 1 1.075 3.93A11.8 11.8 0 0 1 0 23.587c21.91-9.29 22.795-3.173 22.795-3.173s1.656-2.164 1.085-4.51C23.128 12.79 11.692 4.759 11.692 4.759zM3.04 7.245s1.629 2.09 1.363 3.815l2.567.637a20 20 0 0 0-.863-2.788z");
|
|
4
|
-
}
|