@iconify-vue/vscode-icons 1.0.36 → 1.0.37
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-cairo.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,16 @@
|
|
|
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="arkaz54aa"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-cairo" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.arkaz54aa {
|
|
12
|
+
fill: var(--svg-color--fe4a3c, #fe4a3c);
|
|
13
|
+
d: path("M16 2.03a14 14 0 0 0-10.97 22.7a28 28 0 0 1 5.21-5.85q.1-.09.4-.27a4 4 0 0 0 1.6-2.64v-.03c.52-3.42 1.91-4.6 5.82-4.6c.33 0 .73 0 1.1.02c2 .1 3.14.67 3.26.97c.1.15.07.34.03.52l-.15-.03c-1.24-.15-3.12.21-3.4 1.57c-.14.76.04 1.61.1 2.37q.15 1.2.15 2.4c0 .05-.06.36 0 .39c-2.12-2.03-7.03.51-8.57 1.63l.48-.18c1.49-.52 5.94-1.85 7.67-.36c1.45 1.78.15 5.09-.94 6.72q-.98 1.46-2.3 2.61H16a14 14 0 0 0 14-14c0-7.73-6.24-13.94-14-13.94m1.6 7.58a2.77 2.77 0 0 1-2.75-2.76a2.77 2.77 0 0 1 2.76-2.76a2.77 2.77 0 0 1 2.75 2.76a2.75 2.75 0 0 1-2.75 2.76");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</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": 1551,
|
|
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": 1783227701
|
|
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.37",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -414,6 +414,10 @@
|
|
|
414
414
|
"types": "./types/dd0bq22g.d.ts",
|
|
415
415
|
"default": "./components/f/file-type-caddy.vue"
|
|
416
416
|
},
|
|
417
|
+
"./file-type-cairo": {
|
|
418
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
419
|
+
"default": "./components/f/file-type-cairo.vue"
|
|
420
|
+
},
|
|
417
421
|
"./file-type-cake": {
|
|
418
422
|
"types": "./types/dd0bq22g.d.ts",
|
|
419
423
|
"default": "./components/f/file-type-cake.vue"
|