@iconify-vue/vscode-icons 1.0.38 → 1.0.39
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/f/file-type-fnox.vue +31 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b6b"><path class="rk_w2j-rj"/><path clip-rule="evenodd" class="lb7t2mb0u"/><path class="g9kl0pbgx"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-fnox" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ft5dv1b6b {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.g9kl0pbgx {
|
|
16
|
+
fill: var(--svg-color--0a0e1a, #0a0e1a);
|
|
17
|
+
d: path("m10.459 13.083l2.333.875l-1.458 1.167zm11.083 0l-2.333.875l1.458 1.167z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.lb7t2mb0u {
|
|
21
|
+
fill: var(--svg-color--d4af37, #d4af37);
|
|
22
|
+
fill-rule: evenodd;
|
|
23
|
+
d: path("M16 2.656c7.37 0 13.343 5.975 13.344 13.344c0 7.37-5.975 13.343-13.344 13.343C8.63 29.343 2.656 23.37 2.656 16S8.63 2.656 16 2.656M23.292 16L16 26.209L8.708 16l-.874-9.615A12.59 12.59 0 0 0 3.386 16c0 6.967 5.647 12.614 12.614 12.614S28.614 22.967 28.615 16c0-3.852-1.728-7.301-4.45-9.615zM16 11.783a2.48 2.48 0 0 0-2.415 3.04a2.5 2.5 0 0 0 .738 1.264l-.656 5.747h4.666l-.656-5.747a2.478 2.478 0 0 0-.278-3.872A2.5 2.5 0 0 0 16 11.783m0-8.397c-3.112 0-5.96 1.126-8.16 2.994l5.535 3.495h5.25l5.534-3.495A12.57 12.57 0 0 0 16 3.385");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.rk_w2j-rj {
|
|
27
|
+
fill: var(--svg-color--0a0e1a, #0a0e1a);
|
|
28
|
+
d: path("M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2S2 8.268 2 16s6.268 14 14 14");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "vscode-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "VSCode Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1560,
|
|
6
6
|
"version": "12.19.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Roberto Huertas",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
],
|
|
30
30
|
"palette": true
|
|
31
31
|
},
|
|
32
|
-
"lastModified":
|
|
32
|
+
"lastModified": 1783575213
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/vscode-icons",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.39",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -1134,6 +1134,10 @@
|
|
|
1134
1134
|
"types": "./types/dd0bq22g.d.ts",
|
|
1135
1135
|
"default": "./components/f/file-type-flyio.vue"
|
|
1136
1136
|
},
|
|
1137
|
+
"./file-type-fnox": {
|
|
1138
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1139
|
+
"default": "./components/f/file-type-fnox.vue"
|
|
1140
|
+
},
|
|
1137
1141
|
"./file-type-font": {
|
|
1138
1142
|
"types": "./types/dd0bq22g.d.ts",
|
|
1139
1143
|
"default": "./components/f/file-type-font.vue"
|