@iconify-svelte/selfhst 1.0.16 → 1.0.17
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/kohls-dark.svelte +11 -0
- package/components/k/kohls-light.svelte +11 -0
- package/components/k/kohls.svelte +11 -0
- package/css/b/bp6xqgbqk.css +3 -0
- package/css/o/onikkmh6o.css +4 -0
- package/css/y/yqm-erb8p.css +4 -0
- package/iconify.json +2 -2
- package/package.json +13 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/b/bp6xqgbqk.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":512,"height":512};
|
|
9
|
+
const content = `<path class="bp6xqgbqk"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="selfhst:kohls-dark" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/y/yqm-erb8p.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":512,"height":512};
|
|
9
|
+
const content = `<path class="yqm-erb8p"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="selfhst:kohls-light" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/o/onikkmh6o.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":512,"height":512};
|
|
9
|
+
const content = `<path class="onikkmh6o"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="selfhst:kohls" {...props}></Icon>
|
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": 7127,
|
|
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": 1789034597
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/selfhst",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.17",
|
|
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",
|
|
@@ -11554,6 +11554,18 @@
|
|
|
11554
11554
|
"types": "./types/gfwqskkx.d.ts",
|
|
11555
11555
|
"svelte": "./components/k/koel-light.svelte"
|
|
11556
11556
|
},
|
|
11557
|
+
"./kohls": {
|
|
11558
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
11559
|
+
"svelte": "./components/k/kohls.svelte"
|
|
11560
|
+
},
|
|
11561
|
+
"./kohls-dark": {
|
|
11562
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
11563
|
+
"svelte": "./components/k/kohls-dark.svelte"
|
|
11564
|
+
},
|
|
11565
|
+
"./kohls-light": {
|
|
11566
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
11567
|
+
"svelte": "./components/k/kohls-light.svelte"
|
|
11568
|
+
},
|
|
11557
11569
|
"./koito": {
|
|
11558
11570
|
"types": "./types/gfwqskkx.d.ts",
|
|
11559
11571
|
"svelte": "./components/k/koito.svelte"
|