@iconify-vue/vscode-icons 1.0.8 → 1.0.9
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-design-tokens.vue +34 -0
- package/components/f/file-type-light-toon.vue +26 -0
- package/components/f/file-type-toon.vue +25 -0
- package/components/f/file-type-vroom.vue +31 -0
- package/components/f/folder-type-cursor-opened.vue +30 -0
- package/components/f/folder-type-cursor.vue +25 -0
- package/components/f/folder-type-light-cursor-opened.vue +30 -0
- package/components/f/folder-type-light-cursor.vue +25 -0
- package/components/f/folder-type-wasm-opened.vue +26 -0
- package/components/f/folder-type-wasm.vue +26 -0
- package/iconify.json +2 -2
- package/package.json +41 -1
|
@@ -0,0 +1,34 @@
|
|
|
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="rrp47vh"><path class="fbkpqlb"/><path class="ea_fazi"/><path class="hr79gf1m"/><path class="r4ewhnbu"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-design-tokens" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rrp47vh {
|
|
12
|
+
fill: #2b5cf2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.fbkpqlb {
|
|
16
|
+
d: path("M4.18 9.31L16 2.62V9.1l-4.46 1.78l-2.23 4.46l.9 4.02l-6.03 3.34z");
|
|
17
|
+
opacity: .25;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ea_fazi {
|
|
21
|
+
d: path("M28.04 9.09L16 2.39v6.7l4.9 2l1.79 4.24l-.9 4.02l6.25 3.34z");
|
|
22
|
+
opacity: .5;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.hr79gf1m {
|
|
26
|
+
d: path("M16 29.6L4.18 22.91l5.8-3.34l2.67 2.23L16 22.9l3.34-1.11l2.68-2.23l5.8 3.34z");
|
|
27
|
+
opacity: .75;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.r4ewhnbu {
|
|
31
|
+
d: path("M15.55 2.06a1.8 1.8 0 0 1 1.33.18l10.7 6.11q.21.12.38.3l.03.02c.3.33.49.77.49 1.23v12.2c0 .64-.34 1.23-.9 1.55l-10.7 6.12q-.21.12-.44.17l-.15.04h-.04l-.17.02h-.05a2 2 0 0 1-.44-.05h-.04l-.33-.13l-.1-.05l-10.7-6.12c-.56-.32-.9-.9-.9-1.55V9.9q0-.25.06-.48V9.4l.03-.08V9.3l.03-.06l.08-.16l.02-.03l.09-.15l.02-.04a2 2 0 0 1 .46-.44l.1-.06l10.7-6.11q.21-.12.44-.18M4.86 22.88l10.69 6.1v-5.86a7.1 7.1 0 0 1-5.52-3.2zm17.1-2.96a7.1 7.1 0 0 1-5.51 3.2v5.87l10.69-6.11zm-11.59-6.63a6.2 6.2 0 0 0 .3 5.96a6.2 6.2 0 0 0 4.88 2.97v-5.96zm6.08 2.97v5.96a6.24 6.24 0 0 0 5.18-8.93zM4.4 22.1l5.19-2.97a7.1 7.1 0 0 1 0-6.3L4.4 9.89zm18-9.26a7.1 7.1 0 0 1 0 6.3l5.19 2.96V9.88zM16 9.75a6.3 6.3 0 0 0-5.2 2.77l5.2 2.96l5.18-2.96A6.2 6.2 0 0 0 16 9.75M4.85 9.12l5.18 2.95a7.1 7.1 0 0 1 5.52-3.2V3.02zm11.6-.25a7.1 7.1 0 0 1 5.5 3.2l5.19-2.95L16.45 3z");
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
</style>
|
|
@@ -0,0 +1,26 @@
|
|
|
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="ujl2itb"><path class="dsvmg9b"/><path class="kouv-md"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-light-toon" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ujl2itb {
|
|
12
|
+
stroke: #000;
|
|
13
|
+
stroke-width: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.dsvmg9b {
|
|
17
|
+
fill: #fff;
|
|
18
|
+
d: path("M20 4v8h8V4zM4 20v8h8v-8z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.kouv-md {
|
|
22
|
+
fill: none;
|
|
23
|
+
d: path("M8 14V4H2h12m14 18v8m-8 0V20h6");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
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="s99h27g"><path class="pbgzjtv"/><path class="kouv-md"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-toon" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.s99h27g {
|
|
12
|
+
stroke: #dedede;
|
|
13
|
+
stroke-width: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.pbgzjtv {
|
|
17
|
+
d: path("M20 4v8h8V4zM4 20v8h8v-8z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.kouv-md {
|
|
21
|
+
fill: none;
|
|
22
|
+
d: path("M8 14V4H2h12m14 18v8m-8 0V20h6");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -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="h9-8l0ux"/><path class="xd3f1njn"/><path id="SVG3P1CZbeQ" class="m7zr9qxu"/><use href="#SVG3P1CZbeQ" transform="translate(5.07)"/><path class="tf48i06l"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-vroom" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h9-8l0ux {
|
|
12
|
+
fill: #ccc;
|
|
13
|
+
d: path("M5.18 19.12q-.02.03-.07.04h-.79q-.06 0-.08-.06c-.73-2.14-1.56-4.47-2.23-6.37L2 12.69h.87q.06-.01.08.05l1.76 5.22c.67-1.73 1.16-3.56 1.84-5.23q.01-.03.05-.04h.9C6.6 15 6 17.04 5.17 19.12z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.xd3f1njn {
|
|
17
|
+
fill: #ea4335;
|
|
18
|
+
d: path("m12.17 18.29l.24.36l.3.44q.02.02.04.07h-.96l-.08-.04l-1.66-2.5q-.05-.09-.16-.08h-.8v2.62h-.84v-6.47h2.36q.37 0 .7.16q.4.17.68.48q.37.38.46.9q.04.3.03.59q-.04.49-.35.89a3 3 0 0 1-.45.44q-.28.23-.64.3q-.05 0-.12.04zm-3.07-4.8v2.27h1.36q.1 0 .19-.02q.47-.09.76-.47q.3-.4.19-.88a1 1 0 0 0-.36-.6q-.3-.3-.72-.29z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.m7zr9qxu {
|
|
22
|
+
fill: #fbbc05;
|
|
23
|
+
d: path("M17.15 15.55q.23.34.32.74a4 4 0 0 1 .07.88a2.3 2.3 0 0 1-.6 1.44q-.26.27-.58.45q-.34.19-.72.22q-.27.04-.54.03a2.2 2.2 0 0 1-1.53-.72a2 2 0 0 1-.51-1q-.05-.27-.06-.53a2.4 2.4 0 0 1 .47-1.63a2.2 2.2 0 0 1 1.55-.83q.58-.07 1.12.14q.36.13.64.4zM16 18.33q.25-.14.4-.36q.24-.34.29-.76q.04-.38-.04-.75q-.13-.5-.53-.8a1.4 1.4 0 0 0-1.28-.23q-.4.13-.67.47q-.3.38-.33.85q-.02.3.03.59q.1.6.6.96q.36.24.8.24l.26-.03q.25-.03.47-.18");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.tf48i06l {
|
|
27
|
+
fill: #34a853;
|
|
28
|
+
d: path("M27.06 19.16h-.84v-2.68q.01-.36-.14-.7a.7.7 0 0 0-.48-.38q-.39-.1-.76.04q-.22.1-.38.3q-.17.2-.26.46q-.06.18-.07.36l-.02 2.54v.06h-.84v-4.42h.81v.6h.02l.05-.08q.2-.27.5-.44q.27-.17.56-.2q.22-.03.46-.02q.28.01.53.14q.29.12.47.36l.21.3q.13-.16.3-.34q.36-.37.88-.44q.24-.04.5-.03q.43.01.8.26q.34.23.5.63q.14.4.14.86v2.82h-.84v-2.8q0-.32-.15-.62a.7.7 0 0 0-.53-.36a1 1 0 0 0-.57.02a1 1 0 0 0-.36.2q-.3.26-.4.63q-.07.22-.08.45v2.48z");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
</style>
|
|
@@ -0,0 +1,30 @@
|
|
|
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="cggat0bx"/><path class="nj63fsm"/><path class="m07sclbk"/><path class="ukynw26j"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-cursor-opened" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.cggat0bx {
|
|
12
|
+
fill: #a4a4a4;
|
|
13
|
+
d: path("M27.5 5.5h-9.2l-2.1 4.2H4.4v16.8h25.2v-21zm0 18.7H6.7V11.8h20.8zm0-14.5h-8.2l1-2.1h7.1v2.1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.nj63fsm {
|
|
17
|
+
fill: #a4a4a4;
|
|
18
|
+
d: path("m29.622 26.5l-3.8-12.8H.622l3.8 12.8z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.m07sclbk {
|
|
22
|
+
fill: #fff;
|
|
23
|
+
d: path("m20.576 10.113l-8.217 4.755a.718.72 0 0 0-.359.622v9.59c0 .257.138.493.359.62l8.214 4.758a.855.857 0 0 0 .853 0l8.215-4.757a.718.72 0 0 0 .359-.62V15.49a.718.72 0 0 0-.36-.622l-8.215-4.755a.863.866 0 0 0-.851 0m-7.56 5.32H28.87c.225 0 .367.247.254.442l-7.928 13.77c-.053.093-.195.056-.195-.05v-9.02a.504.506 0 0 0-.253-.438l-7.788-4.506c-.093-.054-.054-.197.053-.197");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.ukynw26j {
|
|
27
|
+
d: path("M21.046 25.075c0-3.567-.017-4.634-.073-4.745c-.051-.104-1.178-.784-4.04-2.438c-2.183-1.261-3.97-2.326-3.97-2.365c-.002-.057 1.635-.072 7.994-.072c7.303 0 8.004.008 8.089.093c.051.051.085.139.076.194c-.025.141-7.972 13.935-8.029 13.935c-.025 0-.046-2.07-.047-4.602");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
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="xn4bj4jf"/><path class="m07sclbk"/><path class="r29oqjqk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-cursor" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xn4bj4jf {
|
|
12
|
+
fill: #6c6c6c;
|
|
13
|
+
d: path("M27.5 5.5h-9.3l-2.1 4.2H4.4v16.8h25.2v-21zm0 4.2h-8.2l1.1-2.1h7.1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.m07sclbk {
|
|
17
|
+
fill: #fff;
|
|
18
|
+
d: path("m20.576 10.113l-8.217 4.755a.718.72 0 0 0-.359.622v9.59c0 .257.138.493.359.62l8.214 4.758a.855.857 0 0 0 .853 0l8.215-4.757a.718.72 0 0 0 .359-.62V15.49a.718.72 0 0 0-.36-.622l-8.215-4.755a.863.866 0 0 0-.851 0m-7.56 5.32H28.87c.225 0 .367.247.254.442l-7.928 13.77c-.053.093-.195.056-.195-.05v-9.02a.504.506 0 0 0-.253-.438l-7.788-4.506c-.093-.054-.054-.197.053-.197");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.r29oqjqk {
|
|
22
|
+
d: path("M21.047 25.092c0-3.916-.012-4.62-.084-4.757c-.065-.127-.95-.663-4.042-2.45c-2.177-1.257-3.959-2.318-3.96-2.358c0-.057 1.637-.071 7.996-.071c7.192 0 8.005.009 8.086.09c.05.05.09.126.09.17c0 .105-7.956 13.927-8.03 13.953c-.036.012-.056-1.616-.056-4.577");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -0,0 +1,30 @@
|
|
|
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="dd88m9qn"/><path class="nscok8b"/><path class="q_f5eccl"/><path class="e3dhgkmi"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-light-cursor-opened" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.dd88m9qn {
|
|
12
|
+
fill: #868686;
|
|
13
|
+
d: path("M27.5 5.5h-9.2l-2.1 4.2H4.4v16.8h25.2v-21zm0 18.7H6.7V11.8h20.8zm0-14.5h-8.2l1-2.1h7.1v2.1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.nscok8b {
|
|
17
|
+
fill: #868686;
|
|
18
|
+
d: path("m29.622 26.5l-3.8-12.8H.622l3.8 12.8z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.q_f5eccl {
|
|
22
|
+
d: path("m20.576 10.113l-8.217 4.755a.718.72 0 0 0-.359.622v9.59c0 .257.138.493.359.62l8.214 4.758a.855.857 0 0 0 .853 0l8.215-4.757a.718.72 0 0 0 .359-.62V15.49a.718.72 0 0 0-.36-.622l-8.215-4.755a.863.866 0 0 0-.851 0m-7.56 5.32H28.87c.225 0 .367.247.254.442l-7.928 13.77c-.053.093-.195.056-.195-.05v-9.02a.504.506 0 0 0-.253-.438l-7.788-4.506c-.093-.054-.054-.197.053-.197");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e3dhgkmi {
|
|
26
|
+
fill: #fff;
|
|
27
|
+
d: path("M21.046 25.075c0-3.567-.017-4.634-.073-4.745c-.051-.104-1.178-.784-4.04-2.438c-2.183-1.261-3.97-2.326-3.97-2.365c-.002-.057 1.635-.072 7.994-.072c7.303 0 8.004.008 8.089.093c.051.051.085.139.076.194c-.025.141-7.972 13.935-8.029 13.935c-.025 0-.046-2.07-.047-4.602");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
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="g6_cspbv"/><path class="q_f5eccl"/><path class="e3dhgkmi"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-light-cursor" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.g6_cspbv {
|
|
12
|
+
fill: #676767;
|
|
13
|
+
d: path("M27.5 5.5h-9.3l-2.1 4.2H4.4v16.8h25.2v-21zm0 4.2h-8.2l1.1-2.1h7.1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.q_f5eccl {
|
|
17
|
+
d: path("m20.576 10.113l-8.217 4.755a.718.72 0 0 0-.359.622v9.59c0 .257.138.493.359.62l8.214 4.758a.855.857 0 0 0 .853 0l8.215-4.757a.718.72 0 0 0 .359-.62V15.49a.718.72 0 0 0-.36-.622l-8.215-4.755a.863.866 0 0 0-.851 0m-7.56 5.32H28.87c.225 0 .367.247.254.442l-7.928 13.77c-.053.093-.195.056-.195-.05v-9.02a.504.506 0 0 0-.253-.438l-7.788-4.506c-.093-.054-.054-.197.053-.197");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e3dhgkmi {
|
|
21
|
+
fill: #fff;
|
|
22
|
+
d: path("M21.046 25.075c0-3.567-.017-4.634-.073-4.745c-.051-.104-1.178-.784-4.04-2.438c-2.183-1.261-3.97-2.326-3.97-2.365c-.002-.057 1.635-.072 7.994-.072c7.303 0 8.004.008 8.089.093c.051.051.085.139.076.194c-.025.141-7.972 13.935-8.029 13.935c-.025 0-.046-2.07-.047-4.602");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -0,0 +1,26 @@
|
|
|
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="bq3azlop"/><path class="ggrz8rb"/><path class="lrjz-6ke"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-wasm-opened" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bq3azlop {
|
|
12
|
+
fill: #8964c1;
|
|
13
|
+
d: path("M27.4 5.5h-9.2l-2.1 4.2H4.3v4H.5l3.8 12.8h25.2v-21Zm-7.2 2.1h7.1v2.1h-8.1Zm5.5 6.1H6.6v-1.9h20.8v7.626Z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ggrz8rb {
|
|
17
|
+
fill: #654ff0;
|
|
18
|
+
d: path("M23.06 12v.097a2.063 2.063 0 1 1-4.127 0V12H12v18h18V12z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.lrjz-6ke {
|
|
22
|
+
fill: #fff;
|
|
23
|
+
d: path("M16.181 21.703h1.193l.816 4.335h.015l.978-4.335h1.116l.884 4.39h.017l.928-4.39h1.17l-1.52 6.373h-1.184l-.877-4.337h-.023l-.939 4.337H17.55zm8.462 0h1.88l1.87 6.373h-1.232l-.406-1.418h-2.143l-.313 1.418h-1.198zm.715 1.571l-.52 2.339h1.62l-.596-2.342z");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
</style>
|
|
@@ -0,0 +1,26 @@
|
|
|
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="u3ej30bl"/><path class="ggrz8rb"/><path class="lrjz-6ke"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:folder-type-wasm" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.u3ej30bl {
|
|
12
|
+
fill: #7e4bbd;
|
|
13
|
+
d: path("M27.417 5.5H18.19l-2.083 4.2H4.5v16.8h25v-21Zm0 4.2h-8.135l1.091-2.1h7.044Z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ggrz8rb {
|
|
17
|
+
fill: #654ff0;
|
|
18
|
+
d: path("M23.06 12v.097a2.063 2.063 0 1 1-4.127 0V12H12v18h18V12z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.lrjz-6ke {
|
|
22
|
+
fill: #fff;
|
|
23
|
+
d: path("M16.181 21.703h1.193l.816 4.335h.015l.978-4.335h1.116l.884 4.39h.017l.928-4.39h1.17l-1.52 6.373h-1.184l-.877-4.337h-.023l-.939 4.337H17.55zm8.462 0h1.88l1.87 6.373h-1.232l-.406-1.418h-2.143l-.313 1.418h-1.198zm.715 1.571l-.52 2.339h1.62l-.596-2.342z");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
</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": 1432,
|
|
6
6
|
"version": "12.14.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": 1768114293
|
|
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.9",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -738,6 +738,10 @@
|
|
|
738
738
|
"types": "./types/dd0bq22g.d.ts",
|
|
739
739
|
"default": "./components/f/file-type-dependencies.vue"
|
|
740
740
|
},
|
|
741
|
+
"./file-type-design-tokens": {
|
|
742
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
743
|
+
"default": "./components/f/file-type-design-tokens.vue"
|
|
744
|
+
},
|
|
741
745
|
"./file-type-devcontainer": {
|
|
742
746
|
"types": "./types/dd0bq22g.d.ts",
|
|
743
747
|
"default": "./components/f/file-type-devcontainer.vue"
|
|
@@ -2134,6 +2138,10 @@
|
|
|
2134
2138
|
"types": "./types/dd0bq22g.d.ts",
|
|
2135
2139
|
"default": "./components/f/file-type-light-toml.vue"
|
|
2136
2140
|
},
|
|
2141
|
+
"./file-type-light-toon": {
|
|
2142
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2143
|
+
"default": "./components/f/file-type-light-toon.vue"
|
|
2144
|
+
},
|
|
2137
2145
|
"./file-type-light-tree": {
|
|
2138
2146
|
"types": "./types/dd0bq22g.d.ts",
|
|
2139
2147
|
"default": "./components/f/file-type-light-tree.vue"
|
|
@@ -3846,6 +3854,10 @@
|
|
|
3846
3854
|
"types": "./types/dd0bq22g.d.ts",
|
|
3847
3855
|
"default": "./components/f/file-type-toml.vue"
|
|
3848
3856
|
},
|
|
3857
|
+
"./file-type-toon": {
|
|
3858
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3859
|
+
"default": "./components/f/file-type-toon.vue"
|
|
3860
|
+
},
|
|
3849
3861
|
"./file-type-tox": {
|
|
3850
3862
|
"types": "./types/dd0bq22g.d.ts",
|
|
3851
3863
|
"default": "./components/f/file-type-tox.vue"
|
|
@@ -4058,6 +4070,10 @@
|
|
|
4058
4070
|
"types": "./types/dd0bq22g.d.ts",
|
|
4059
4071
|
"default": "./components/f/file-type-volt.vue"
|
|
4060
4072
|
},
|
|
4073
|
+
"./file-type-vroom": {
|
|
4074
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4075
|
+
"default": "./components/f/file-type-vroom.vue"
|
|
4076
|
+
},
|
|
4061
4077
|
"./file-type-vscode": {
|
|
4062
4078
|
"types": "./types/dd0bq22g.d.ts",
|
|
4063
4079
|
"default": "./components/f/file-type-vscode.vue"
|
|
@@ -4574,6 +4590,14 @@
|
|
|
4574
4590
|
"types": "./types/dd0bq22g.d.ts",
|
|
4575
4591
|
"default": "./components/f/folder-type-cubit-opened.vue"
|
|
4576
4592
|
},
|
|
4593
|
+
"./folder-type-cursor": {
|
|
4594
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4595
|
+
"default": "./components/f/folder-type-cursor.vue"
|
|
4596
|
+
},
|
|
4597
|
+
"./folder-type-cursor-opened": {
|
|
4598
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4599
|
+
"default": "./components/f/folder-type-cursor-opened.vue"
|
|
4600
|
+
},
|
|
4577
4601
|
"./folder-type-cypress": {
|
|
4578
4602
|
"types": "./types/dd0bq22g.d.ts",
|
|
4579
4603
|
"default": "./components/f/folder-type-cypress.vue"
|
|
@@ -4918,6 +4942,14 @@
|
|
|
4918
4942
|
"types": "./types/dd0bq22g.d.ts",
|
|
4919
4943
|
"default": "./components/f/folder-type-library-opened.vue"
|
|
4920
4944
|
},
|
|
4945
|
+
"./folder-type-light-cursor": {
|
|
4946
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4947
|
+
"default": "./components/f/folder-type-light-cursor.vue"
|
|
4948
|
+
},
|
|
4949
|
+
"./folder-type-light-cursor-opened": {
|
|
4950
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4951
|
+
"default": "./components/f/folder-type-light-cursor-opened.vue"
|
|
4952
|
+
},
|
|
4921
4953
|
"./folder-type-light-cypress": {
|
|
4922
4954
|
"types": "./types/dd0bq22g.d.ts",
|
|
4923
4955
|
"default": "./components/f/folder-type-light-cypress.vue"
|
|
@@ -5662,6 +5694,14 @@
|
|
|
5662
5694
|
"types": "./types/dd0bq22g.d.ts",
|
|
5663
5695
|
"default": "./components/f/folder-type-vscode3-opened.vue"
|
|
5664
5696
|
},
|
|
5697
|
+
"./folder-type-wasm": {
|
|
5698
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5699
|
+
"default": "./components/f/folder-type-wasm.vue"
|
|
5700
|
+
},
|
|
5701
|
+
"./folder-type-wasm-opened": {
|
|
5702
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5703
|
+
"default": "./components/f/folder-type-wasm-opened.vue"
|
|
5704
|
+
},
|
|
5665
5705
|
"./folder-type-webpack": {
|
|
5666
5706
|
"types": "./types/dd0bq22g.d.ts",
|
|
5667
5707
|
"default": "./components/f/folder-type-webpack.vue"
|