@iconify-vue/vscode-icons 1.0.13 → 1.0.14
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-n64.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 = `<path class="j5hz47bh"/><path class="tz_7jr9p"/><path class="qzw47mbe"/><path class="wnjhthlv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-n64" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j5hz47bh {
|
|
12
|
+
fill: #0222a9;
|
|
13
|
+
d: path("m5.97 25.75l3.72-1.65l-3.72-7.22zm20.07 0l-5.84-7.61V28.2L16 29.98V12.8l4.2-1.6l5.84 8.33V8.92L30 7.4v16.7zM16 5.04l-3.23 5.76L16 9.57l3.08 1.18l.83-.93v-6.3z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.tz_7jr9p {
|
|
17
|
+
fill: #069330;
|
|
18
|
+
d: path("M5.97 8.92L2 7.39v16.7l3.97 1.66v-8.87L11.8 28.2l4.2 1.78v-17.2l-4.2-1.6v8.72zm3.96-1.53l1.87 3.79l.97-.37L16 5.04l-3.9-1.52zm9.15 3.36l2.99-3.36l3.96 1.53v10.6l-5.83-8.34z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.qzw47mbe {
|
|
22
|
+
fill: #fe2015;
|
|
23
|
+
d: path("M11.8 11.18v8.73l-5.83-11L9.93 7.4zm14.23 14.57l-5.83-7.61v4.16l1.19 1.67z");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.wnjhthlv {
|
|
27
|
+
fill: #ffc001;
|
|
28
|
+
d: path("m20.2 11.18l-4.2 1.6l-4.2-1.6l4.2-1.6zm1.87-3.8l3.96-1.52L30 7.4l-3.97 1.53zM2 7.39l3.96-1.52L9.93 7.4L5.96 8.92zm17.9-3.85L16 2.03l-3.91 1.5l3.9 1.52z");
|
|
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": 1471,
|
|
6
6
|
"version": "12.17.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": 1771310484
|
|
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.14",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -2498,6 +2498,10 @@
|
|
|
2498
2498
|
"types": "./types/dd0bq22g.d.ts",
|
|
2499
2499
|
"default": "./components/f/file-type-mysql.vue"
|
|
2500
2500
|
},
|
|
2501
|
+
"./file-type-n64": {
|
|
2502
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2503
|
+
"default": "./components/f/file-type-n64.vue"
|
|
2504
|
+
},
|
|
2501
2505
|
"./file-type-nanostaged": {
|
|
2502
2506
|
"types": "./types/dd0bq22g.d.ts",
|
|
2503
2507
|
"default": "./components/f/file-type-nanostaged.vue"
|