@iconify-solid/selfhst 1.0.7 → 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/a/audiobookshelf-dark.jsx +2 -2
- package/components/a/audiobookshelf-light.jsx +2 -2
- 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/s/shr813boy.css +4 -0
- package/css/x/xz238-fks.css +3 -0
- package/css/z/z15mw-brh.css +3 -0
- package/iconify.json +2 -2
- package/package.json +13 -1
- package/css/k/kpm4yx0kw.css +0 -4
- package/css/o/okj75kbtq.css +0 -3
|
@@ -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/x/xz238-fks.css';
|
|
4
4
|
|
|
5
5
|
const viewBox = {"width":512,"height":512};
|
|
6
|
-
const content = `<path class="
|
|
6
|
+
const content = `<path class="xz238-fks"/>`;
|
|
7
7
|
|
|
8
8
|
/** @param props {{width?: string; height?: string;}} */
|
|
9
9
|
function Component(props) {
|
|
@@ -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/s/shr813boy.css';
|
|
4
4
|
|
|
5
5
|
const viewBox = {"width":512,"height":512};
|
|
6
|
-
const content = `<path class="
|
|
6
|
+
const content = `<path class="shr813boy"/>`;
|
|
7
7
|
|
|
8
8
|
/** @param props {{width?: string; height?: string;}} */
|
|
9
9
|
function Component(props) {
|
|
@@ -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;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.shr813boy {
|
|
2
|
+
fill: var(--svg-color--fff, #fff);
|
|
3
|
+
d: path("M213.9 217.3h-40.8V213h40.8zm62-4.3h-40.8v4.3h40.8zm62 0h-40.8v4.3h40.8zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0s256 114.6 256 256M389.1 421c0-7.5-6.1-13.5-13.5-13.5H135.4c-7.5 0-13.5 6-13.5 13.5s6.1 13.5 13.5 13.5h240.2c7.5 0 13.5-6.1 13.5-13.5m-204.9-19.7h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m62 0h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m62.1 0h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m110.6-157.9c-.1-2.3-1-4.4-2.7-5.8c-2-1.7-5.1-4.1-9.4-7v-32.8c0-83.6-67.7-151.3-151.3-151.3s-151.3 67.7-151.3 151.3v32.8c-4.2 2.9-7.3 5.4-9.4 7c-1.7 1.4-2.7 3.5-2.7 5.8v39.3c0 2.2 1 4.3 2.7 5.8c4.7 3.9 15.4 12 32.1 20.4v3.8c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-94.2c0-10.3-6.6-18.6-14.8-18.6c-7.9 0-14.3 7.7-14.8 17.3v-19.4c0-71 57.6-128.6 128.6-128.6c71.1 0 128.6 57.6 128.6 128.6v19.4c-.5-9.7-7-17.3-14.8-17.3c-8.2 0-14.8 8.4-14.8 18.6v94.2c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-3.8c16.7-8.4 27.4-16.5 32.1-20.4c1.7-1.4 2.7-3.6 2.7-5.8z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.xz238-fks {
|
|
2
|
+
d: path("M213.9 217.3h-40.8V213h40.8zm62-4.3h-40.8v4.3h40.8zm62 0h-40.8v4.3h40.8zM512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0s256 114.6 256 256M389.1 421c0-7.5-6.1-13.5-13.5-13.5H135.4c-7.5 0-13.5 6-13.5 13.5s6.1 13.5 13.5 13.5h240.2c7.5 0 13.5-6.1 13.5-13.5m-204.9-19.7h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m62 0h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m62.1 0h18.5c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9m110.6-157.9c-.1-2.3-1-4.4-2.7-5.8c-2-1.7-5.1-4.1-9.4-7v-32.8c0-83.6-67.7-151.3-151.3-151.3s-151.3 67.7-151.3 151.3v32.8c-4.2 2.9-7.3 5.4-9.4 7c-1.7 1.4-2.7 3.5-2.7 5.8v39.3c0 2.2 1 4.3 2.7 5.8c4.7 3.9 15.4 12 32.1 20.4v3.8c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-94.2c0-10.3-6.6-18.6-14.8-18.6c-7.9 0-14.3 7.7-14.8 17.3v-19.4c0-71 57.6-128.6 128.6-128.6c71.1 0 128.6 57.6 128.6 128.6v19.4c-.5-9.7-7-17.3-14.8-17.3c-8.2 0-14.8 8.4-14.8 18.6v94.2c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-3.8c16.7-8.4 27.4-16.5 32.1-20.4c1.7-1.4 2.7-3.6 2.7-5.8z");
|
|
3
|
+
}
|
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"
|
package/css/k/kpm4yx0kw.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.kpm4yx0kw {
|
|
2
|
-
fill: var(--svg-color--fff, #fff);
|
|
3
|
-
d: path("M326.8 401.3c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM297.1 213h40.8v4.3h-40.8zm-32.4 188.3c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM235.1 213h40.8v4.3h-40.8zm140.5 194.5H135.4c-7.5 0-13.5 6-13.5 13.5s6.1 13.5 13.5 13.5h240.2c7.5 0 13.5-6.1 13.5-13.5c0-7.5-6.1-13.5-13.5-13.5m-172.9-6.2c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM173.1 213h40.8v4.3h-40.8zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0m-.5 503.4C118.9 503.4 8.1 392.6 8.1 256S118.9 8.6 255.5 8.6S502.9 119.4 502.9 256S392.1 503.4 255.5 503.4m160.7-265.8c-2-1.7-5.1-4.1-9.4-7v-32.8c0-83.6-67.7-151.3-151.3-151.3s-151.3 67.7-151.3 151.3v32.8c-4.2 2.9-7.3 5.4-9.4 7c-1.7 1.4-2.7 3.5-2.7 5.8v39.3c0 2.2 1 4.3 2.7 5.8c4.7 3.9 15.4 12 32.1 20.4v3.8c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-94.2c0-10.3-6.6-18.6-14.8-18.6c-7.9 0-14.3 7.7-14.8 17.3v-19.4c0-71 57.6-128.6 128.6-128.6c71.1 0 128.6 57.6 128.6 128.6v19.4c-.5-9.7-7-17.3-14.8-17.3c-8.2 0-14.8 8.4-14.8 18.6v94.2c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-3.8c16.7-8.4 27.4-16.5 32.1-20.4c1.7-1.4 2.7-3.6 2.7-5.8v-39.3c-.1-2.3-1-4.4-2.7-5.8");
|
|
4
|
-
}
|
package/css/o/okj75kbtq.css
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
.okj75kbtq {
|
|
2
|
-
d: path("M326.8 401.3c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM297.1 213h40.8v4.3h-40.8zm-32.4 188.3c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM235.1 213h40.8v4.3h-40.8zm140.5 194.5H135.4c-7.5 0-13.5 6-13.5 13.5s6.1 13.5 13.5 13.5h240.2c7.5 0 13.5-6.1 13.5-13.5c0-7.5-6.1-13.5-13.5-13.5m-172.9-6.2c9.9 0 17.9-8 17.9-17.9V182.8c0-9.9-8-17.9-17.9-17.9h-18.5c-9.9 0-17.9 8-17.9 17.9v200.6c0 9.9 8 17.9 17.9 17.9zM173.1 213h40.8v4.3h-40.8zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0m-.5 503.4C118.9 503.4 8.1 392.6 8.1 256S118.9 8.6 255.5 8.6S502.9 119.4 502.9 256S392.1 503.4 255.5 503.4m160.7-265.8c-2-1.7-5.1-4.1-9.4-7v-32.8c0-83.6-67.7-151.3-151.3-151.3s-151.3 67.7-151.3 151.3v32.8c-4.2 2.9-7.3 5.4-9.4 7c-1.7 1.4-2.7 3.5-2.7 5.8v39.3c0 2.2 1 4.3 2.7 5.8c4.7 3.9 15.4 12 32.1 20.4v3.8c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-94.2c0-10.3-6.6-18.6-14.8-18.6c-7.9 0-14.3 7.7-14.8 17.3v-19.4c0-71 57.6-128.6 128.6-128.6c71.1 0 128.6 57.6 128.6 128.6v19.4c-.5-9.7-7-17.3-14.8-17.3c-8.2 0-14.8 8.4-14.8 18.6v94.2c0 10.3 6.6 18.6 14.8 18.6s14.8-8.4 14.8-18.6v-3.8c16.7-8.4 27.4-16.5 32.1-20.4c1.7-1.4 2.7-3.6 2.7-5.8v-39.3c-.1-2.3-1-4.4-2.7-5.8");
|
|
3
|
-
}
|