@iconify-solid/selfhst 1.0.8 → 1.0.9
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/r/rimgo-dark.jsx +16 -0
- package/components/r/rimgo-light.jsx +16 -0
- package/components/r/rimgo.jsx +16 -0
- package/css/b/beyjpfbcd.css +6 -0
- package/css/e/eb1q3ccfq.css +7 -0
- package/css/j/jdcotzpev.css +6 -0
- package/css/k/k4aqbt3rt.css +3 -0
- package/css/q/q615-bq5v.css +4 -0
- package/css/z/z15mw-brh.css +3 -0
- package/iconify.json +2 -2
- package/package.json +13 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/z/z15mw-brh.css';
|
|
4
|
+
import '../../css/j/jdcotzpev.css';
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":512,"height":512};
|
|
7
|
+
const content = `<path class="z15mw-brh"/><circle class="jdcotzpev"/>`;
|
|
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={"selfhst:rimgo-dark"} {...others} />);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default Component;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/q/q615-bq5v.css';
|
|
4
|
+
import '../../css/e/eb1q3ccfq.css';
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":512,"height":512};
|
|
7
|
+
const content = `<path class="q615-bq5v"/><circle class="eb1q3ccfq"/>`;
|
|
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={"selfhst:rimgo-light"} {...others} />);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default Component;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
import '../../css/k/k4aqbt3rt.css';
|
|
4
|
+
import '../../css/b/beyjpfbcd.css';
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":512,"height":512};
|
|
7
|
+
const content = `<path class="k4aqbt3rt"/><circle class="beyjpfbcd"/>`;
|
|
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={"selfhst:rimgo"} {...others} />);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "selfhst",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "selfh.st/icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 6993,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "selfh.st",
|
|
8
8
|
"url": "https://github.com/selfhst/icons"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"category": "Logos",
|
|
24
24
|
"palette": true
|
|
25
25
|
},
|
|
26
|
-
"lastModified":
|
|
26
|
+
"lastModified": 1785042908
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/selfhst",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.9",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/selfhst/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC-BY-4.0",
|
|
@@ -21398,6 +21398,18 @@
|
|
|
21398
21398
|
"types": "./types/vn2rmosy.d.ts",
|
|
21399
21399
|
"default": "./components/r/richy-light.jsx"
|
|
21400
21400
|
},
|
|
21401
|
+
"./rimgo": {
|
|
21402
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
21403
|
+
"default": "./components/r/rimgo.jsx"
|
|
21404
|
+
},
|
|
21405
|
+
"./rimgo-dark": {
|
|
21406
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
21407
|
+
"default": "./components/r/rimgo-dark.jsx"
|
|
21408
|
+
},
|
|
21409
|
+
"./rimgo-light": {
|
|
21410
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
21411
|
+
"default": "./components/r/rimgo-light.jsx"
|
|
21412
|
+
},
|
|
21401
21413
|
"./ring": {
|
|
21402
21414
|
"types": "./types/vn2rmosy.d.ts",
|
|
21403
21415
|
"default": "./components/r/ring.jsx"
|