@iconify-vue/vscode-icons 1.0.16 → 1.0.17
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-brew.vue +50 -0
- package/components/f/file-type-duckdb.vue +28 -0
- package/components/f/file-type-light-duckdb.vue +28 -0
- package/components/f/file-type-orval.vue +52 -0
- package/components/f/file-type-parquet.vue +16 -0
- package/components/f/file-type-pixi.vue +91 -0
- package/components/f/file-type-ruff.vue +16 -0
- package/iconify.json +3 -3
- package/package.json +29 -1
|
@@ -0,0 +1,50 @@
|
|
|
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="x7yqflb"><path class="ysr7b2bl"/><path class="o1yfewbu"/><path class="j14x9ebs"/><path class="lx-iwwbm"/><path class="gqi8d4n"/><path class="gx5b2sve"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-brew" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.gqi8d4n {
|
|
12
|
+
stroke: #ffdb96;
|
|
13
|
+
stroke-width: 1.15px;
|
|
14
|
+
d: path("M11.33 16.12v10.01");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.gx5b2sve {
|
|
18
|
+
fill: #fff;
|
|
19
|
+
d: path("M16.89 16.59c0-.2-.12-.46-.32-.58a2 2 0 0 1-.73-.87a23 23 0 0 1-6.34-.71a10 10 0 0 0-.96-.22a1.6 1.6 0 0 1-1.3-1.57c0-.86.68-1.55 1.53-1.58a1.94 1.94 0 1 1 3.73.98h0a1.85 1.85 0 0 1 3.53 0v-.21a2.01 2.01 0 0 1 3.93-.6l.17-.05a1.6 1.6 0 0 1 .78-.2a1.58 1.58 0 0 1 .22 3.14a2 2 0 0 0-.52.14q-.68.25-1.4.43a2 2 0 0 1-.2.65a2 2 0 0 0-.24 1.18v.18c0 .51-.42.83-.94.83a.94.94 0 0 1-.94-.94");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.j14x9ebs {
|
|
23
|
+
fill: #fff;
|
|
24
|
+
d: path("M22.86 25.98a1.9 1.9 0 0 0 1.89-1.88v-6.77a1.9 1.9 0 0 0-1.88-1.88h-1.55a.4.4 0 0 1-.42-.42v-.98H8.68l.03 14.44a.4.4 0 0 0 .2.35c.54.31 2.28.91 5.95.91c3.74 0 5.41-.8 5.89-1.16a.4.4 0 0 0 .15-.32V26.4a.4.4 0 0 1 .43-.42zm-1.96-8.34q0-.21.15-.36a.5.5 0 0 1 .37-.16h1.33q.21 0 .37.16a.5.5 0 0 1 .15.36v6.08a.5.5 0 0 1-.15.37a.5.5 0 0 1-.37.15h-1.33a.5.5 0 0 1-.37-.15a.5.5 0 0 1-.15-.37z");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.lx-iwwbm {
|
|
28
|
+
fill: #fbb040;
|
|
29
|
+
d: path("M9.89 13.93v12.95q0 .24.2.36c.53.25 2.07.86 4.76.86c2.7 0 4.19-.74 4.69-1.04a.4.4 0 0 0 .19-.35V13.93z");
|
|
30
|
+
stroke: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.o1yfewbu {
|
|
34
|
+
fill: #d1d3d4;
|
|
35
|
+
d: path("M20.83 11.26c.08-2.01-.43-2.83-.81-3.4c-.4-.55-1.32-1.4-2.46-1.44c-1.08-.03-1.34.56-2.34.6c-.16-1.81 1.2-2.81 1.2-2.81s-.37-.53-.68-.66c-.44.4-1.67 1.72-1.38 3.42c-.92-.18-1.57-.7-2.53-.51c-1.31.26-2.4 1.05-3.01 2.79c-.62 1.74.22 3.77.4 4.35s1.52 3.05 2.57 3.41s1.05.2 1.62-.02c.56-.22 1.41-.61 2.66-.16s1.42.56 2.2.05c.78-.5 1.79-2.08 2.03-2.53c.23-.46.36-.7.43-.93c.76-.38.03-.35.1-2.16");
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.x7yqflb {
|
|
39
|
+
stroke: #000;
|
|
40
|
+
stroke-linecap: round;
|
|
41
|
+
stroke-linejoin: round;
|
|
42
|
+
stroke-width: .5px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ysr7b2bl {
|
|
46
|
+
fill: #d1d3d4;
|
|
47
|
+
d: path("M14.39 7.1c.08-2.45-.75-3.9-3.12-4.85c-.68 2.36 2.1 4.54 3.12 4.85");
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
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="yvhi7wbb"/><path class="q9bgstpz"/><path class="her5devk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-duckdb" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.her5devk {
|
|
12
|
+
fill: #1d1d1b;
|
|
13
|
+
d: path("M23.01 13.93h-2.73v4.14h2.73c1.14 0 2.06-.93 2.06-2.07s-.92-2.07-2.06-2.07");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.q9bgstpz {
|
|
17
|
+
fill: #1d1d1b;
|
|
18
|
+
fill-rule: evenodd;
|
|
19
|
+
d: path("M12.67 21.75c-3.18 0-5.74-2.57-5.74-5.75s2.56-5.75 5.74-5.75s5.74 2.57 5.74 5.75s-2.56 5.75-5.74 5.75");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.yvhi7wbb {
|
|
23
|
+
fill: #fff100;
|
|
24
|
+
fill-rule: evenodd;
|
|
25
|
+
d: path("M16 29.89C8.32 29.89 2.11 23.68 2.11 16S8.32 2.11 16 2.11S29.89 8.32 29.89 16S23.68 29.89 16 29.89");
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
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="e653hvbg"/><path class="vh0jjdbc"/><path class="awp6yhba"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-light-duckdb" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.awp6yhba {
|
|
12
|
+
fill: #fff100;
|
|
13
|
+
d: path("M23.06 13.92h-2.75v4.16h2.75c1.15 0 2.09-.93 2.09-2.08s-.94-2.08-2.09-2.08");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.e653hvbg {
|
|
17
|
+
fill: #1a1a1a;
|
|
18
|
+
fill-rule: evenodd;
|
|
19
|
+
d: path("M16 30C8.26 30 2 23.74 2 16S8.26 2 16 2s14 6.26 14 14s-6.26 14-14 14");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vh0jjdbc {
|
|
23
|
+
fill: #fff100;
|
|
24
|
+
fill-rule: evenodd;
|
|
25
|
+
d: path("M12.64 21.79c-3.2 0-5.79-2.59-5.79-5.79s2.59-5.79 5.79-5.79c3.21 0 5.79 2.59 5.79 5.79s-2.58 5.79-5.79 5.79");
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
</style>
|
|
@@ -0,0 +1,52 @@
|
|
|
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="ft5dv1b"><path class="d4h84mb"/><path clip-rule="evenodd" class="tu50l9-z"/><path class="vndytebl"/><path class="k1a5sobv"/><path clip-rule="evenodd" class="zmiq_knm"/><path class="rqle2iby"/><path class="cj0triob"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-orval" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.cj0triob {
|
|
12
|
+
fill: #f89e53;
|
|
13
|
+
d: path("M18.88 28c1-.76 1.7-1.54 2.34-1.26c.31.14.52.5.58.8q.05.29-.06.56a13 13 0 0 1-4.18 1.85a13 13 0 0 1-3.7.3a7.5 7.5 0 0 0 4.88-2.1zm7.88-14.2a12.8 12.8 0 0 1-1.78 11.14l-.56.73c.56-1.14.97-2.53.5-3.83c-.64-1.73-2.43-2.16-2.32-3.34c.1-1.2 2-1.32 3.3-2.99q.59-.8.85-1.75zM6.34 16.09q.2 0 .36.1a.38.38 0 0 1 .04.6q0 .03-.03.04a2 2 0 0 0-.66.92L6 17.9l-.06.25a1 1 0 0 0 .03.44a1 1 0 0 0 .26.36c.2.15.42.22.47.23c.18.04.32.04.55.03c.25 0 .37-.04.7-.05h.36q.17 0 .35.02q.37.02.72.12q.37.11.64.34q.28.23.4.53q.08.15.09.3q.01.17-.02.32t-.1.3a1 1 0 0 1-.34.36a1 1 0 0 1-.85-.04a1 1 0 0 1-.24-.22s.09.12.25.2c.04.01.16.07.32.08a.9.9 0 0 0 .46-.1l.06-.05l.06-.05q.19-.21.2-.5a1 1 0 0 0-.11-.53q-.15-.24-.38-.41a2 2 0 0 0-.55-.23c-.4-.09-.84-.06-1.29-.02c-.32.02-.32.06-.65.1c-.34.03-.54.05-.8 0a2 2 0 0 1-.74-.29a2 2 0 0 1-.3-.26a1 1 0 0 1-.22-.33a1.5 1.5 0 0 1-.13-.71q0-.18.03-.33l.03-.16q.01-.07.04-.17q.21-.67.75-1.19q.15-.14.34-.14m7.36-2.95c.82.08.96.95 2.36 1.34c.86.23 1.24.07 1.91.44c.83.47 1.2 1.26 1.3 1.47c.36.84.3 1.8-.03 2.7a6.8 6.8 0 0 0-6.41-2.53a4.2 4.2 0 0 0 .44-3.42zm1.55-8.2a12.8 12.8 0 0 1 10.02 5.7c-.24.35-.63.8-1.2.9c-1.17.2-1.73-1.36-3.38-2.1c-2.42-1.08-4.58.8-5.39-.26c-.3-.4-.23-1.5-.09-3.7z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.d4h84mb {
|
|
17
|
+
fill: #fff;
|
|
18
|
+
d: path("M8.9 11.54a2.75 2.75 0 1 1 0 5.5a2.75 2.75 0 0 1 0-5.5");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ft5dv1b {
|
|
22
|
+
fill: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.k1a5sobv {
|
|
26
|
+
fill: #7b48d5;
|
|
27
|
+
d: path("M13.64 17.03c1.3-.03 2.57.33 3.66 1.02c.25.17 2 1.34 2.62 3.61q.19.7.23 1.43a3.1 3.1 0 0 1-2.23 1.07a3 3 0 0 1-1.92-.63q.12-.24.25-.64q.3-1.14.04-2.28a4.8 4.8 0 0 0-2.09-2.94a4 4 0 0 0-1.45-.55a6 6 0 0 1 .9-.1");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.rqle2iby {
|
|
31
|
+
fill: #7b48d5;
|
|
32
|
+
d: path("M14.02 4.22c1.17-2 3.04-2.86 4.28-2.36c.22.09.78.37 1.2 1.25c2.48-1.12 5.04-.65 6.2.89c.67.89.72 1.94.68 2.56a3.6 3.6 0 0 1 2.74 2.47a3.7 3.7 0 0 1-.53 2.99a3.6 3.6 0 0 1-1.3 1.11a13.6 13.6 0 0 0-7.3-7.8a14 14 0 0 0-5.97-1.11");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.tu50l9-z {
|
|
36
|
+
fill: #45239b;
|
|
37
|
+
fill-rule: evenodd;
|
|
38
|
+
d: path("M8.9 13.01a1.28 1.28 0 1 1 0 2.56a1.28 1.28 0 0 1 0-2.56m-.14.28c-.28.02-.63.18-.76.49c-.02.05-.13.34.03.53c.11.13.28.13.31.13a.5.5 0 0 0 .38-.2c.1-.16 0-.29.07-.42c.06-.11.24-.22.8-.18l-.08-.08c-.13-.11-.4-.3-.75-.27");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vndytebl {
|
|
42
|
+
fill: #7b48d5;
|
|
43
|
+
d: path("M5.13 22.15c1.96-.88 3.9.42 4.04.51q-.19.36-.36.98c-.11.43-.42 1.73.13 3.21a5.2 5.2 0 0 0 2.23 2.63a6 6 0 0 0 2.1.73a12.9 12.9 0 0 1-9.76-6.61c.23-.37.73-1.05 1.62-1.45m7-16.97c1.02-.2 2.08-.33 3.11-.23l-.04.54c-.14 2.2-.2 3.3.1 3.7c.8 1.06 2.96-.82 5.38.27c1.65.74 2.21 2.3 3.39 2.09c.56-.1.95-.55 1.19-.9c.55.84 1.08 1.85 1.46 3.03l.03.08a5 5 0 0 1-.86 1.75c-1.28 1.67-3.18 1.8-3.3 2.99c-.1 1.18 1.7 1.62 2.32 3.34c.48 1.3.07 2.7-.5 3.83c-.37.39-1.7 1.77-2.67 2.42q.11-.26.06-.55c-.06-.3-.27-.66-.58-.8c-.77-.33-2.81 1.82-2.18 1.08a6.88 6.88 0 0 0 .19-8.73c.33-.89.39-1.85.03-2.69c-.1-.2-.47-1-1.3-1.47c-.67-.37-1.05-.2-1.91-.44c-1.4-.39-1.54-1.26-2.36-1.34h-.43a4.85 4.85 0 0 0-1.45-2.18a5 5 0 0 0 .65-.96c.19-.36.82-1.64.45-3.2a4 4 0 0 0-.78-1.63");
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.zmiq_knm {
|
|
47
|
+
fill: #7b48d5;
|
|
48
|
+
fill-rule: evenodd;
|
|
49
|
+
d: path("M11.62 5.29a4.7 4.7 0 0 1 .89 2.85c-.04.57-.19.99-.27 1.2a3.95 3.95 0 0 1-1.07 1.6c.26.2 1.43 1.1 1.7 2.73a4.3 4.3 0 0 1-2.9 4.67a4.1 4.1 0 0 1-4.46-1.38c-.15.07-.53.22-.98.13a1.6 1.6 0 0 1-.75-.4c-.81-.68-.94-1.7-.98-2.05c-.05-.36-.1-.75.08-1.2a2 2 0 0 1 .54-.76A7.7 7.7 0 0 1 5.87 8.5a13 13 0 0 1 5.75-3.21M8.9 11.54a2.75 2.75 0 1 0 0 5.5a2.75 2.75 0 0 0 0-5.5");
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
</style>
|
|
@@ -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="xuvx-kbh"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-parquet" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xuvx-kbh {
|
|
12
|
+
fill: #50abf1;
|
|
13
|
+
d: path("M14.67 26.604c-1.015-1.218-1.116-1.32-1.015-1.522L27.861 11.18c.102-.102 1.827.71 2.131 1.116c.203.203-1.015 1.42-6.799 7.915l-7.103 7.712s-.811-.609-1.42-1.32m-3.146-3.348l-1.015-1.319c.102-.203 7.915-7.001 8.118-7.001c.102 0 2.03 1.522 2.03 1.724c0 .203-7.915 7.611-8.118 7.611zm-2.74-3.247q-.811-1.015-.71-1.116l3.856-2.841l1.725 1.623c0 .203-3.653 3.247-3.856 3.247q-.304 0-1.015-1.014M6.45 17.37q-1.014-.913-.608-1.015l11.162-7.813c.202 0 1.725 1.014 1.725 1.116L7.364 18.283zm7.306-1.116q-.811-.71-.811-1.015l.811-.71l4.77-3.653l4.059-3.045c.304 0 1.826 1.015 1.725 1.015c0 .305-9.437 8.118-9.64 8.118zm-9.335-1.218q-.71-.71-.406-.913l7.61-4.77a4.06 4.06 0 0 1 1.421 1.117a80 80 0 0 1-8.016 5.48zm16.236 0l-1.015-.812l5.378-4.769q.102-.304 1.218.304l1.015.71a70 70 0 0 1-5.581 5.277zm-17.961-2.03l-.71-.71l.304-.203l7.103-4.16l6.495-3.856l.608.304l.71.508c0 .101-14.002 8.93-14.205 8.93zm10.147-3.45q-.609-.405-.609-.608q.203-.406 2.841-2.03l2.842-1.624l.71.406l.71.508c0 .203-5.58 3.957-5.784 3.957zm5.682-.811l-.71-.61l2.334-1.623l1.522.913l-.203.305c-.304.406-2.03 1.522-2.03 1.522z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,91 @@
|
|
|
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="bi12bsk"><path class="x5soxcbn"/><path class="siykbyb"/><path class="e7i-nxbw"/><path class="dnykk89z"/><path class="vmg2erbo"/><path class="sug302bg"/><path class="lmj9l0b"/><path class="x4tx5wbx"/><path class="bsjtek6z"/><path class="bd8rvkb"/><path class="xp9xn8b"/><path class="qgyam0u"/><path class="j1h5q6bp"/><path class="mjoodetv"/><path class="iofk_3or"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-pixi" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bd8rvkb {
|
|
12
|
+
fill: #778292;
|
|
13
|
+
d: path("m20.43 24.77l-.15.48l.92 1.1l.09-.16q-.62-.57-.86-1.42");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.bi12bsk {
|
|
17
|
+
fill: none;
|
|
18
|
+
fill-rule: evenodd;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.bsjtek6z {
|
|
22
|
+
fill: #080604;
|
|
23
|
+
d: path("M14.7 25.95q.06-.1.16-.16q.4.57.88 1.03h-1.05q-.22-.52 0-.87m3.19.87h.4l-.98-1.45c-.17.59.02 1.18.58 1.45");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dnykk89z {
|
|
27
|
+
fill: #aab0c2;
|
|
28
|
+
d: path("M15.03 22.06c.4-.54.93-.99 1.55-1.22l-1.9-2.26c-.53-.09-1.29.5-1.34 1.03z");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e7i-nxbw {
|
|
32
|
+
fill: #778292;
|
|
33
|
+
d: path("M14.46 18.6c-.41.09-.82.4-1.03.76l-1.57-2.16q.42-.41.92-.7zm-2.33-2.93c-.3.2-.63.44-.88.68l-.88-1.22c.22-.22.54-.47.82-.63zm-1.53-1.9c-.26.17-.55.4-.78.6l-.85-1.18c.2-.2.48-.42.73-.56zm-2.55-2.55c.23-.18.49-.05.6.09l.54.68c-.24.14-.5.35-.7.53l-.51-.7c-.11-.14-.17-.42.07-.6");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.iofk_3or {
|
|
37
|
+
fill: #778292;
|
|
38
|
+
d: path("M18.27 22.25c-1.54 1.01-2.39 2.38-2.35 3.65q.01.48.21.92h1.74c-.56-.27-.73-.87-.57-1.45l-.08-.1a4 4 0 0 1 1.51-1.86l.07.07l.2-.14l-.71-1.1z");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.j1h5q6bp {
|
|
42
|
+
fill: #080604;
|
|
43
|
+
d: path("M20.31 23.98q0-.14-.02-.24a1.5 1.5 0 0 0-1.21-1.27q-.04.27-.28.56l.2.31l-.2.14l1.48 1.77l.15-.48a4 4 0 0 1-.12-.8");
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.lmj9l0b {
|
|
47
|
+
fill: #fff;
|
|
48
|
+
d: path("M5.62 18.96a.31.31 0 1 1-.62 0a.31.31 0 0 1 .62 0");
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.mjoodetv {
|
|
52
|
+
fill: #566576;
|
|
53
|
+
d: path("M15.74 26.82h.4A2.6 2.6 0 0 1 16 25.1a5 5 0 0 1 2.26-2.86l-1.1-1.56c-2.06.27-3.4 2.96-2.76 4.3c.33.7.8 1.33 1.33 1.83");
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.qgyam0u {
|
|
57
|
+
fill: #aab0c2;
|
|
58
|
+
d: path("M18.73 23.4a4 4 0 0 0-1.5 1.86l1.06 1.56h3.3l-.4-.47z");
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.siykbyb {
|
|
62
|
+
fill: #aab0c2;
|
|
63
|
+
d: path("m20.3 23.75l-.03-.98l-.33-.32l-.86.02c.65.15 1.1.62 1.2 1.27z");
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.sug302bg {
|
|
67
|
+
fill: #fcd006;
|
|
68
|
+
d: path("M14.62 15.45c.35.46.2 1.34-.84 2.3l-.5-.63c.47-.46.66-.86.67-1.01c-.19-.04-.84.09-1.64.7c-.8.6-1.1 1.2-1.11 1.39c.14.03.57-.04 1.12-.36l.48.66c-1.2.72-2.07.63-2.42.17c-.4-.52-.15-1.58 1.3-2.69c1.46-1.1 2.55-1.05 2.94-.53m-1.84-1.87c.3.4.17 1.16-.73 2l-.43-.54c.41-.4.57-.75.58-.88c-.17-.03-.73.09-1.43.62s-.96 1.04-.97 1.2c.12.03.49-.03.96-.3l.4.57c-1.02.62-1.78.53-2.08.14c-.35-.45-.14-1.38 1.13-2.35c1.27-.96 2.22-.91 2.57-.46m4.39.42q.05.13.2.13h.52l-.47.21a.2.2 0 0 0-.12.21l.06.8l-.3-.74a.2.2 0 0 0-.2-.14l-.52.02l.48-.22a.2.2 0 0 0 .11-.2l-.05-.8zm-6.12-2.17c.26.34.15 1-.62 1.72l-.37-.45c.35-.34.5-.64.5-.75c-.14-.03-.63.07-1.24.53c-.6.45-.83.9-.84 1.04c.11.02.42-.03.83-.26l.34.48c-.89.53-1.54.46-1.8.12c-.3-.4-.11-1.2.99-2.03s1.91-.8 2.21-.4M8.76 7.69a.2.2 0 0 1 .29.2l-.33 1.77l1.36 1.19c.12.1.06.31-.1.33l-1.3.17c-.16-.2-.4-.3-.63-.13s-.2.44-.05.64l-.52 1.22a.19.19 0 0 1-.34 0l-.78-1.62l-1.8-.16a.2.2 0 0 1-.11-.33l1.3-1.24l-.4-1.76a.19.19 0 0 1 .28-.21l1.58.86z");
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.vmg2erbo {
|
|
72
|
+
fill: #fff;
|
|
73
|
+
d: path("m26.21 23.84l-.09 1.1q0 .2.17.3l.67.33l-.73-.02a.3.3 0 0 0-.29.18l-.42 1.06l.09-1.13a.3.3 0 0 0-.17-.3l-.68-.3h.74a.3.3 0 0 0 .28-.18z");
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.x4tx5wbx {
|
|
77
|
+
fill: #778292;
|
|
78
|
+
d: path("m14.61 25.4l.25.39a1 1 0 0 0-.17.16q-.22.34 0 .87q-.95-.02-1.76 0l.34-.57c.23-.44.8-.8 1.34-.86");
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.x5soxcbn {
|
|
82
|
+
fill: #2a486b;
|
|
83
|
+
d: path("M5.2 5.52A3.2 3.2 0 0 0 2 8.72v14.91a3.2 3.2 0 0 0 3.2 3.2h7.63c.5 0 1.19-.53 1.94-1.19q-.21-.3-.36-.64c-.64-1.35.7-4.04 2.76-4.3q.84 1.15 1.63 2.33c.7-.2.63-.12 1.48-.12c0-.66-.06-2.82-.07-3.87c0-.82.65-1.43 1.48-1.43q.66.02 1.09.44q.39.31.67.72c.22.3.45.6.78.8q.89.6 2.05.6c2.07 0 3.73-1.5 3.73-3.75c0-1.15-.4-2.1-1.09-2.75a4 4 0 0 0-2.77-1.05c-1.44 0-2.09.65-2.91 1.48l-.44.43q-.42.45-1.1.46c-.8 0-1.49-.62-1.49-1.43c0-1.33-.06-3.62 0-5.21a3.1 3.1 0 0 1 2.33-2.83q-8.67.01-17.35 0");
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.xp9xn8b {
|
|
87
|
+
fill: #2a486b;
|
|
88
|
+
d: path("m21.2 26.35l.09-.16q.48.44 1.19.63h-.88z");
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
</style>
|
|
@@ -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="kn7q7rbp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-ruff" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kn7q7rbp {
|
|
12
|
+
fill: #d7ff64;
|
|
13
|
+
d: path("M30 4.8A2.8 2.8 0 0 0 27.2 2H2v28h12.88v-8.4h2.24V30H30V19.36h-5.6v-2.24h2.8a2.8 2.8 0 0 0 2.8-2.8zM19.36 14.88h-6.72v-2.24h6.72z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "vscode-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "VSCode Icons",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "12.
|
|
5
|
+
"total": 1482,
|
|
6
|
+
"version": "12.18.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Roberto Huertas",
|
|
9
9
|
"url": "https://github.com/vscode-icons/vscode-icons"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
],
|
|
30
30
|
"palette": true
|
|
31
31
|
},
|
|
32
|
-
"lastModified":
|
|
32
|
+
"lastModified": 1776830621
|
|
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.17",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -350,6 +350,10 @@
|
|
|
350
350
|
"types": "./types/dd0bq22g.d.ts",
|
|
351
351
|
"default": "./components/f/file-type-bower2.vue"
|
|
352
352
|
},
|
|
353
|
+
"./file-type-brew": {
|
|
354
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
355
|
+
"default": "./components/f/file-type-brew.vue"
|
|
356
|
+
},
|
|
353
357
|
"./file-type-browserslist": {
|
|
354
358
|
"types": "./types/dd0bq22g.d.ts",
|
|
355
359
|
"default": "./components/f/file-type-browserslist.vue"
|
|
@@ -846,6 +850,10 @@
|
|
|
846
850
|
"types": "./types/dd0bq22g.d.ts",
|
|
847
851
|
"default": "./components/f/file-type-dtd.vue"
|
|
848
852
|
},
|
|
853
|
+
"./file-type-duckdb": {
|
|
854
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
855
|
+
"default": "./components/f/file-type-duckdb.vue"
|
|
856
|
+
},
|
|
849
857
|
"./file-type-dune": {
|
|
850
858
|
"types": "./types/dd0bq22g.d.ts",
|
|
851
859
|
"default": "./components/f/file-type-dune.vue"
|
|
@@ -1870,6 +1878,10 @@
|
|
|
1870
1878
|
"types": "./types/dd0bq22g.d.ts",
|
|
1871
1879
|
"default": "./components/f/file-type-light-drone.vue"
|
|
1872
1880
|
},
|
|
1881
|
+
"./file-type-light-duckdb": {
|
|
1882
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1883
|
+
"default": "./components/f/file-type-light-duckdb.vue"
|
|
1884
|
+
},
|
|
1873
1885
|
"./file-type-light-eas-metadata": {
|
|
1874
1886
|
"types": "./types/dd0bq22g.d.ts",
|
|
1875
1887
|
"default": "./components/f/file-type-light-eas-metadata.vue"
|
|
@@ -2966,6 +2978,10 @@
|
|
|
2966
2978
|
"types": "./types/dd0bq22g.d.ts",
|
|
2967
2979
|
"default": "./components/f/file-type-org.vue"
|
|
2968
2980
|
},
|
|
2981
|
+
"./file-type-orval": {
|
|
2982
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2983
|
+
"default": "./components/f/file-type-orval.vue"
|
|
2984
|
+
},
|
|
2969
2985
|
"./file-type-outlook": {
|
|
2970
2986
|
"types": "./types/dd0bq22g.d.ts",
|
|
2971
2987
|
"default": "./components/f/file-type-outlook.vue"
|
|
@@ -2994,6 +3010,10 @@
|
|
|
2994
3010
|
"types": "./types/dd0bq22g.d.ts",
|
|
2995
3011
|
"default": "./components/f/file-type-pandacss.vue"
|
|
2996
3012
|
},
|
|
3013
|
+
"./file-type-parquet": {
|
|
3014
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3015
|
+
"default": "./components/f/file-type-parquet.vue"
|
|
3016
|
+
},
|
|
2997
3017
|
"./file-type-patch": {
|
|
2998
3018
|
"types": "./types/dd0bq22g.d.ts",
|
|
2999
3019
|
"default": "./components/f/file-type-patch.vue"
|
|
@@ -3090,6 +3110,10 @@
|
|
|
3090
3110
|
"types": "./types/dd0bq22g.d.ts",
|
|
3091
3111
|
"default": "./components/f/file-type-pipeline.vue"
|
|
3092
3112
|
},
|
|
3113
|
+
"./file-type-pixi": {
|
|
3114
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3115
|
+
"default": "./components/f/file-type-pixi.vue"
|
|
3116
|
+
},
|
|
3093
3117
|
"./file-type-plantuml": {
|
|
3094
3118
|
"types": "./types/dd0bq22g.d.ts",
|
|
3095
3119
|
"default": "./components/f/file-type-plantuml.vue"
|
|
@@ -3510,6 +3534,10 @@
|
|
|
3510
3534
|
"types": "./types/dd0bq22g.d.ts",
|
|
3511
3535
|
"default": "./components/f/file-type-ruby.vue"
|
|
3512
3536
|
},
|
|
3537
|
+
"./file-type-ruff": {
|
|
3538
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3539
|
+
"default": "./components/f/file-type-ruff.vue"
|
|
3540
|
+
},
|
|
3513
3541
|
"./file-type-rust": {
|
|
3514
3542
|
"types": "./types/dd0bq22g.d.ts",
|
|
3515
3543
|
"default": "./components/f/file-type-rust.vue"
|