@iconify-solid/thesvg-color 1.0.1 → 1.0.2
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/k/knowbe4.jsx +15 -0
- package/components/r/rippling.jsx +16 -0
- package/css/d/dq9-xobpt.css +4 -0
- package/css/n/nhikcvf6f.css +4 -0
- package/css/p/p5-oqd5ef.css +4 -0
- package/iconify.json +2 -2
- package/package.json +9 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/d/dq9-xobpt.css';
|
|
4
|
+
|
|
5
|
+
const viewBox = {"width":62.846,"height":60.485,"left":98.638,"top":11.193};
|
|
6
|
+
const content = `<path class="dq9-xobpt"/>`;
|
|
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={"thesvg-color:knowbe4"} {...others} />);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default Component;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/p/p5-oqd5ef.css';
|
|
4
|
+
import '../../css/n/nhikcvf6f.css';
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":16,"height":16};
|
|
7
|
+
const content = `<path class="p5-oqd5ef"/><path class="nhikcvf6f"/>`;
|
|
8
|
+
|
|
9
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
10
|
+
function Component(props) {
|
|
11
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
12
|
+
|
|
13
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"thesvg-color:rippling"} {...others} />);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default Component;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.dq9-xobpt {
|
|
2
|
+
fill: var(--svg-color--ef4623, #ef4623);
|
|
3
|
+
d: path("M121.538 63.581h-22.9l6.688-6.606a30.17 30.17 0 0 1-4.31-15.587c0-16.737 13.458-30.195 30.195-30.195s30.274 13.458 30.274 30.195c0 16.42-12.919 29.789-29.216 30.29l.055-13.275c9.02-.519 16.174-7.997 16.174-17.147c0-9.486-7.69-16.954-17.177-16.954s-17.175 7.468-17.175 16.954c0 2.014.346 3.948.983 5.744l6.43-6.34v22.956");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.nhikcvf6f {
|
|
2
|
+
fill: var(--svg-color--fff, #fff);
|
|
3
|
+
d: path("M4.203 6.33c0-.825-.42-1.507-1.203-2.08h1.821a2.612 2.612 0 0 1 .001 4.16c.59.245.927.845.927 1.704v1.636h-1.65v-1.636c0-.819-.391-1.391-1.099-1.705c.783-.573 1.203-1.254 1.203-2.08m3.573 0c0-.825-.419-1.507-1.202-2.08h1.82a2.61 2.61 0 0 1 .001 4.16c.59.245.928.845.928 1.704v1.636h-1.65v-1.636c0-.819-.392-1.391-1.1-1.705c.784-.573 1.203-1.254 1.203-2.08m3.575 0c0-.825-.42-1.507-1.203-2.08h1.821A2.6 2.6 0 0 1 13 6.33c0 .838-.392 1.588-1.03 2.08c.59.245.927.845.927 1.704v1.636h-1.65v-1.636c0-.819-.391-1.391-1.099-1.705c.783-.573 1.203-1.254 1.203-2.08");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "thesvg-color",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "theSVG Color",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 4842,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "thesvg.org",
|
|
8
8
|
"url": "https://github.com/glincker/thesvg"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"category": "Logos",
|
|
24
24
|
"palette": true
|
|
25
25
|
},
|
|
26
|
-
"lastModified":
|
|
26
|
+
"lastModified": 1787067702
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/thesvg-color",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/thesvg-color/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -8806,6 +8806,10 @@
|
|
|
8806
8806
|
"types": "./types/vn2rmosy.d.ts",
|
|
8807
8807
|
"default": "./components/k/knip.jsx"
|
|
8808
8808
|
},
|
|
8809
|
+
"./knowbe4": {
|
|
8810
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
8811
|
+
"default": "./components/k/knowbe4.jsx"
|
|
8812
|
+
},
|
|
8809
8813
|
"./knowledgebase": {
|
|
8810
8814
|
"types": "./types/vn2rmosy.d.ts",
|
|
8811
8815
|
"default": "./components/k/knowledgebase.jsx"
|
|
@@ -14462,6 +14466,10 @@
|
|
|
14462
14466
|
"types": "./types/vn2rmosy.d.ts",
|
|
14463
14467
|
"default": "./components/r/ripple.jsx"
|
|
14464
14468
|
},
|
|
14469
|
+
"./rippling": {
|
|
14470
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
14471
|
+
"default": "./components/r/rippling.jsx"
|
|
14472
|
+
},
|
|
14465
14473
|
"./risc-v": {
|
|
14466
14474
|
"types": "./types/vn2rmosy.d.ts",
|
|
14467
14475
|
"default": "./components/r/risc-v.jsx"
|