@iconify-svelte/codicon 1.0.4 → 1.0.5
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/cloud-small.svelte +10 -0
- package/components/c/collection-small.svelte +10 -0
- package/components/v/vm-small.svelte +10 -0
- package/css/e/eee2krbt.css +4 -0
- package/css/f/fl0qf5j.css +4 -0
- package/css/p/p2a315b.css +4 -0
- package/iconify.json +2 -2
- package/package.json +13 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/eee2krbt.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":10,"height":10};
|
|
8
|
+
const content = `<path class="eee2krbt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="codicon:cloud-small" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/f/fl0qf5j.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":10,"height":10};
|
|
8
|
+
const content = `<path class="fl0qf5j"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="codicon:collection-small" {...props}></Icon>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/p/p2a315b.css';
|
|
4
|
+
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":10,"height":10};
|
|
8
|
+
const content = `<path class="p2a315b"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="codicon:vm-small" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.eee2krbt {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M7.75 8h-5.5C1.01 8 0 6.99 0 5.75c0-1.17.897-2.134 2.04-2.24A3.005 3.005 0 0 1 5 1a3.005 3.005 0 0 1 2.96 2.51A2.25 2.25 0 0 1 10 5.75C10 6.99 8.99 8 7.75 8m-5.5-3.5C1.561 4.5 1 5.061 1 5.75S1.561 7 2.25 7h5.5C8.439 7 9 6.439 9 5.75S8.439 4.5 7.75 4.5H7.5A.5.5 0 0 1 7 4c0-1.103-.897-2-2-2s-2 .897-2 2a.5.5 0 0 1-.5.5z");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "codicon",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Codicons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 530,
|
|
6
6
|
"version": "0.0.43",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Microsoft Corporation",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1765002977
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/codicon",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/codicon/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC-BY-4.0",
|
|
@@ -298,6 +298,10 @@
|
|
|
298
298
|
"types": "./types/gfwqskkx.d.ts",
|
|
299
299
|
"svelte": "./components/c/cloud-download.svelte"
|
|
300
300
|
},
|
|
301
|
+
"./cloud-small": {
|
|
302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
303
|
+
"svelte": "./components/c/cloud-small.svelte"
|
|
304
|
+
},
|
|
301
305
|
"./cloud-upload": {
|
|
302
306
|
"types": "./types/gfwqskkx.d.ts",
|
|
303
307
|
"svelte": "./components/c/cloud-upload.svelte"
|
|
@@ -326,6 +330,10 @@
|
|
|
326
330
|
"types": "./types/gfwqskkx.d.ts",
|
|
327
331
|
"svelte": "./components/c/collection.svelte"
|
|
328
332
|
},
|
|
333
|
+
"./collection-small": {
|
|
334
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
335
|
+
"svelte": "./components/c/collection-small.svelte"
|
|
336
|
+
},
|
|
329
337
|
"./color-mode": {
|
|
330
338
|
"types": "./types/gfwqskkx.d.ts",
|
|
331
339
|
"svelte": "./components/c/color-mode.svelte"
|
|
@@ -2070,6 +2078,10 @@
|
|
|
2070
2078
|
"types": "./types/gfwqskkx.d.ts",
|
|
2071
2079
|
"svelte": "./components/v/vm-running.svelte"
|
|
2072
2080
|
},
|
|
2081
|
+
"./vm-small": {
|
|
2082
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
2083
|
+
"svelte": "./components/v/vm-small.svelte"
|
|
2084
|
+
},
|
|
2073
2085
|
"./vr": {
|
|
2074
2086
|
"types": "./types/gfwqskkx.d.ts",
|
|
2075
2087
|
"svelte": "./components/v/vr.svelte"
|