@iconify-vue/vscode-icons 1.0.21 → 1.0.22
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-textlint.vue +40 -0
- package/iconify.json +2 -2
- package/package.json +5 -1
|
@@ -0,0 +1,40 @@
|
|
|
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="oxzvejbxe"/><linearGradient id="SVGoKyyWbqs" x1="24.809" x2="24.809" y1="24.809" y2="11.113" gradientUnits="userSpaceOnUse"><stop offset="0" class="e825e26io"/><stop offset="1" class="vcr8t9iqi"/></linearGradient><path fill="url(#SVGoKyyWbqs)" class="y5ie2_bzr"/><linearGradient id="SVGgoVFYdsg" x1="7.191" x2="7.191" y1="7.191" y2="24.809" gradientUnits="userSpaceOnUse"><stop offset="0" class="tdx55c_vw"/><stop offset="1" class="opud24xap"/></linearGradient><path fill="url(#SVGgoVFYdsg)" class="jp4t3bbcr"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-textlint" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.e825e26io {
|
|
12
|
+
stop-color: var(--svg-color--f28b95, #f28b95);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.jp4t3bbcr {
|
|
16
|
+
d: path("M7.191 7.191h17.618v3.922h-6.831V24.81h-3.956V11.113H7.191Z");
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.opud24xap {
|
|
20
|
+
stop-color: var(--svg-color--3c84b0, #3c84b0);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.oxzvejbxe {
|
|
24
|
+
fill: var(--svg-color--f4f4f4, #f4f4f4);
|
|
25
|
+
d: path("M16 32c8.837 0 16-7.163 16-16S24.837 0 16 0S0 7.163 0 16s7.163 16 16 16");
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.tdx55c_vw {
|
|
29
|
+
stop-color: var(--svg-color--28ebf8, #28ebf8);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.vcr8t9iqi {
|
|
33
|
+
stop-color: var(--svg-color--f34c6f, #f34c6f);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.y5ie2_bzr {
|
|
37
|
+
d: path("M11.113 11.113H7.191V24.81h17.618v-3.922H11.113Z");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
</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": 1489,
|
|
6
6
|
"version": "12.18.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": 1778041381
|
|
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.22",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -3986,6 +3986,10 @@
|
|
|
3986
3986
|
"types": "./types/dd0bq22g.d.ts",
|
|
3987
3987
|
"default": "./components/f/file-type-textile.vue"
|
|
3988
3988
|
},
|
|
3989
|
+
"./file-type-textlint": {
|
|
3990
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3991
|
+
"default": "./components/f/file-type-textlint.vue"
|
|
3992
|
+
},
|
|
3989
3993
|
"./file-type-tfs": {
|
|
3990
3994
|
"types": "./types/dd0bq22g.d.ts",
|
|
3991
3995
|
"default": "./components/f/file-type-tfs.vue"
|