@iconify-svelte/codicon 1.0.18 → 1.0.19
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/chat-export.svelte +11 -0
- package/components/c/chat-import.svelte +11 -0
- package/css/j/jm-ndgzz.css +4 -0
- package/css/u/uq8lmivj.css +4 -0
- package/iconify.json +2 -2
- package/package.json +9 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/j/jm-ndgzz.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":16,"height":16};
|
|
9
|
+
const content = `<path class="jm-ndgzz"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="codicon:chat-export" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/u/uq8lmivj.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":16,"height":16};
|
|
9
|
+
const content = `<path class="uq8lmivj"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="codicon:chat-import" {...props}></Icon>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.jm-ndgzz {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.037 12.117q.066.577.246 1.113l-1.658 1.451c-.633.555-1.625.105-1.625-.737v-1.942h-.5a2.5 2.5 0 0 1-2.5-2.5v-5a2.5 2.5 0 0 1 2.5-2.5h9c1.381 0 2.5 1.118 2.5 2.499v2.107a5.4 5.4 0 0 0-1-.394V4.502c0-.828-.672-1.501-1.5-1.501h-9c-.828 0-1.5.673-1.5 1.501v5a1.5 1.5 0 0 0 1.5 1.5H4V13.9zM16 11.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.146-.353a.5.5 0 0 0-.707 0l-1.146 1.146V9.5a.5.5 0 0 0-1 0v2.793l-1.146-1.146a.5.5 0 0 0-.707.707l2 2l.003.003a.5.5 0 0 0 .348.144h.006a.5.5 0 0 0 .35-.146l2-2a.5.5 0 0 0 0-.707z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.uq8lmivj {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.037 12.117q.066.577.246 1.113l-1.658 1.451c-.633.555-1.625.105-1.625-.737v-1.942h-.5a2.5 2.5 0 0 1-2.5-2.5v-5a2.5 2.5 0 0 1 2.5-2.5h9c1.381 0 2.5 1.118 2.5 2.499v2.107a5.4 5.4 0 0 0-1-.394V4.502c0-.828-.672-1.501-1.5-1.501h-9c-.828 0-1.5.673-1.5 1.501v5a1.5 1.5 0 0 0 1.5 1.5H4V13.9zM16 11.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.146-.353l-2-2l-.003-.003A.5.5 0 0 0 11.503 9h-.006a.5.5 0 0 0-.35.146l-2 2a.5.5 0 0 0 .707.707L11 10.707V13.5a.5.5 0 0 0 1 0v-2.793l1.146 1.146a.5.5 0 0 0 .707-.707z");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "codicon",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Codicons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 543,
|
|
6
6
|
"version": "0.0.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Microsoft Corporation",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1774503131
|
|
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.19",
|
|
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",
|
|
@@ -186,6 +186,14 @@
|
|
|
186
186
|
"types": "./types/gfwqskkx.d.ts",
|
|
187
187
|
"svelte": "./components/c/case-sensitive.svelte"
|
|
188
188
|
},
|
|
189
|
+
"./chat-export": {
|
|
190
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
191
|
+
"svelte": "./components/c/chat-export.svelte"
|
|
192
|
+
},
|
|
193
|
+
"./chat-import": {
|
|
194
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
195
|
+
"svelte": "./components/c/chat-import.svelte"
|
|
196
|
+
},
|
|
189
197
|
"./chat-sparkle": {
|
|
190
198
|
"types": "./types/gfwqskkx.d.ts",
|
|
191
199
|
"svelte": "./components/c/chat-sparkle.svelte"
|