@iconify-svelte/vscode-icons 1.0.8 → 1.0.10
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-affinity.svelte +29 -0
- package/components/f/file-type-alchemy.svelte +140 -0
- package/components/f/file-type-allure.svelte +93 -0
- package/components/f/file-type-apache.svelte +7 -44
- package/components/f/file-type-assembly-script.svelte +21 -0
- package/components/f/file-type-design-tokens.svelte +34 -0
- package/components/f/file-type-devvit.svelte +16 -0
- package/components/f/file-type-electron.svelte +43 -0
- package/components/f/file-type-gduid.svelte +57 -0
- package/components/f/file-type-gimp.svelte +112 -0
- package/components/f/file-type-jetbrains.svelte +41 -0
- package/components/f/file-type-libreoffice-base.svelte +31 -17
- package/components/f/file-type-libreoffice-calc.svelte +22 -65
- package/components/f/file-type-libreoffice-draw.svelte +36 -30
- package/components/f/file-type-libreoffice-impress.svelte +83 -19
- package/components/f/file-type-libreoffice-math.svelte +58 -24
- package/components/f/file-type-libreoffice-writer.svelte +57 -50
- package/components/f/file-type-light-oxc.svelte +142 -0
- package/components/f/file-type-light-rolldown.svelte +110 -0
- package/components/f/file-type-light-toon.svelte +26 -0
- package/components/f/file-type-light-vite.svelte +134 -0
- package/components/f/file-type-light-vitest.svelte +70 -0
- package/components/f/file-type-nushell.svelte +16 -0
- package/components/f/file-type-oxc.svelte +116 -26
- package/components/f/file-type-oxlint.svelte +116 -26
- package/components/f/file-type-polyglot.svelte +112 -0
- package/components/f/file-type-postscript.svelte +16 -0
- package/components/f/file-type-prismaconfig.svelte +22 -0
- package/components/f/file-type-rolldown.svelte +90 -11
- package/components/f/file-type-sitemap.svelte +68 -0
- package/components/f/file-type-toon.svelte +25 -0
- package/components/f/file-type-vite.svelte +106 -15
- package/components/f/file-type-vitest.svelte +54 -11
- package/components/f/file-type-vroom.svelte +31 -0
- package/components/f/file-type-vvvvvv.svelte +16 -0
- package/components/f/file-type-xaml.svelte +67 -0
- package/components/f/folder-type-apache-opened.svelte +84 -0
- package/components/f/folder-type-apache.svelte +84 -0
- package/components/f/folder-type-cursor-opened.svelte +30 -0
- package/components/f/folder-type-cursor.svelte +25 -0
- package/components/f/folder-type-flutter-opened.svelte +41 -0
- package/components/f/folder-type-flutter.svelte +41 -0
- package/components/f/folder-type-godot-opened.svelte +46 -0
- package/components/f/folder-type-godot.svelte +46 -0
- package/components/f/folder-type-histoire-opened.svelte +29 -0
- package/components/f/folder-type-histoire.svelte +29 -0
- package/components/f/folder-type-idea-opened.svelte +14 -28
- package/components/f/folder-type-idea.svelte +14 -28
- package/components/f/folder-type-kotlin-opened.svelte +32 -0
- package/components/f/folder-type-kotlin.svelte +32 -0
- package/components/f/folder-type-light-cursor-opened.svelte +30 -0
- package/components/f/folder-type-light-cursor.svelte +25 -0
- package/components/f/folder-type-vitepress-opened.svelte +61 -0
- package/components/f/folder-type-vitepress.svelte +61 -0
- package/components/f/folder-type-wasm-opened.svelte +26 -0
- package/components/f/folder-type-wasm.svelte +26 -0
- package/iconify.json +3 -3
- package/package.json +169 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="iu8ccbc"><g transform="translate(-2 .955)scale(3.9999)" class="pz2e5eg"><rect class="hzxox5b"/><rect class="k_qjxcn"/><rect class="rib3g8k"/><rect class="it84hrk"/></g><path class="n7xp5lb"/><path class="dm9xkhb"/><path class="bttmy5t"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-sitemap" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .iu8ccbc {
|
|
12
|
+
fill: #f16427;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:global .pz2e5eg {
|
|
16
|
+
stroke: #f16427;
|
|
17
|
+
stroke-width: .234px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
:global .hzxox5b {
|
|
21
|
+
width: 1.766px;
|
|
22
|
+
height: 1.766px;
|
|
23
|
+
x: 1.117px;
|
|
24
|
+
y: 5.117px;
|
|
25
|
+
rx: .442px;
|
|
26
|
+
ry: .442px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
:global .k_qjxcn {
|
|
30
|
+
width: 1.766px;
|
|
31
|
+
height: 1.766px;
|
|
32
|
+
x: 3.617px;
|
|
33
|
+
y: .639px;
|
|
34
|
+
rx: .442px;
|
|
35
|
+
ry: .442px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
:global .rib3g8k {
|
|
39
|
+
width: 1.766px;
|
|
40
|
+
height: 1.766px;
|
|
41
|
+
x: 3.617px;
|
|
42
|
+
y: 5.117px;
|
|
43
|
+
rx: .442px;
|
|
44
|
+
ry: .442px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:global .it84hrk {
|
|
48
|
+
width: 1.766px;
|
|
49
|
+
height: 1.766px;
|
|
50
|
+
x: 6.117px;
|
|
51
|
+
y: 5.117px;
|
|
52
|
+
rx: .442px;
|
|
53
|
+
ry: .442px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
:global .n7xp5lb {
|
|
57
|
+
d: path("M15 10.367h2v11.395h-2zM5 15.339h2v5.96H5z");
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
:global .dm9xkhb {
|
|
61
|
+
d: path("M27 15.067v2H4.995v-2z");
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
:global .bttmy5t {
|
|
65
|
+
d: path("M25 15.85h2v5.52h-2z");
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
</style>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
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
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-toon" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .s99h27g {
|
|
12
|
+
stroke: #dedede;
|
|
13
|
+
stroke-width: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
:global .pbgzjtv {
|
|
17
|
+
d: path("M20 4v8h8V4zM4 20v8h8v-8z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
:global .kouv-md {
|
|
21
|
+
fill: none;
|
|
22
|
+
d: path("M8 14V4H2h12m14 18v8m-8 0V20h6");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -4,40 +4,131 @@ import Icon from '@iconify/css-svelte';
|
|
|
4
4
|
let {width, height, ...props} = $props();
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":32,"height":32};
|
|
7
|
-
const content = `<g class="ft5dv1b"><
|
|
7
|
+
const content = `<mask id="SVGgudELdDz"><path class="ehnba6gb"/></mask><g class="ft5dv1b"><g mask="url(#SVGgudELdDz)" transform="translate(1 6.8)scale(.393)"><path class="vwpu1-n"/><g filter="url(#SVGNp06lekD)"><ellipse transform="rotate(89.8 24.46 37.75)" class="ru69jxf"/></g><g filter="url(#SVGNp06lekD)"><ellipse transform="rotate(89.8 4.76 18.96)" class="duzks2b"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(89.8 4.24 17.5)" class="q_zxoir"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(89.8 8.95 35.5)" class="mwts-gb"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(89.8 10.48 36.65)" class="ira2e-x"/></g><g filter="url(#SVGNp06lekD)"><ellipse transform="rotate(-86.7 67.34 12.3)" class="dq1fi7b"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(-91 68.44 15.74)" class="o5_ixxt"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(-91 68.44 15.74)" class="o5_ixxt"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(39.5 14.6 9.74)" class="omy7wdb"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 61.73 -5.32)" class="lyry4pb"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 55.62 7.1)" class="nwdbn1b"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 12.33 39.1)" class="b5n_b5b"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 12.33 39.1)" class="b5n_b5b"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 49.86 30.68)" class="fb7h-tb"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(37.9 52.62 33.17)" class="dzbi4-v"/></g></g><path class="jrx6axvt"/><defs><filter id="SVGNp06lekD" width="4" height="4" x="-2" y="-2" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="7.66"/></filter><filter id="SVGQv8P6csY" width="4" height="4" x="-2" y="-2" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="4.6"/></filter></defs></g>`;
|
|
8
8
|
</script>
|
|
9
9
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-vite" {...props}></Icon>
|
|
10
10
|
<style>
|
|
11
|
+
:global .ehnba6gb {
|
|
12
|
+
fill: #fff;
|
|
13
|
+
d: path("M40.05 45.7c-.67.85-2.02.38-2.02-.69v-10.3a2.26 2.26 0 0 0-2.27-2.26H24.4a1.13 1.13 0 0 1-.92-1.8l7.48-10.46c1.07-1.5 0-3.58-1.84-3.58H15.34a1.13 1.13 0 0 1-.92-1.79l9.7-13.57c.2-.3.55-.48.92-.48h28.89c.92 0 1.46 1.04.92 1.79l-7.48 10.47a2.26 2.26 0 0 0 1.84 3.58H60.6c.94 0 1.47 1.09.89 1.83z");
|
|
14
|
+
}
|
|
15
|
+
|
|
11
16
|
:global .ft5dv1b {
|
|
12
17
|
fill: none;
|
|
13
18
|
}
|
|
14
19
|
|
|
15
|
-
:global .
|
|
16
|
-
|
|
20
|
+
:global .vwpu1-n {
|
|
21
|
+
fill: #9135ff;
|
|
22
|
+
d: path("M0 0h62v47H0z");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
:global .ru69jxf {
|
|
26
|
+
cx: 24.46px;
|
|
27
|
+
cy: 37.75px;
|
|
28
|
+
fill: #eee6ff;
|
|
29
|
+
rx: 5.51px;
|
|
30
|
+
ry: 14.7px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
:global .duzks2b {
|
|
34
|
+
cx: 4.76px;
|
|
35
|
+
cy: 18.96px;
|
|
36
|
+
fill: #eee6ff;
|
|
37
|
+
rx: 10.4px;
|
|
38
|
+
ry: 29.85px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
:global .q_zxoir {
|
|
42
|
+
cx: 4.24px;
|
|
43
|
+
cy: 17.5px;
|
|
44
|
+
fill: #8900ff;
|
|
45
|
+
rx: 5.51px;
|
|
46
|
+
ry: 30.49px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
:global .mwts-gb {
|
|
50
|
+
cx: 8.95px;
|
|
51
|
+
cy: 35.5px;
|
|
52
|
+
fill: #8900ff;
|
|
53
|
+
rx: 5.51px;
|
|
54
|
+
ry: 30.6px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
:global .ira2e-x {
|
|
58
|
+
cx: 10.48px;
|
|
59
|
+
cy: 36.65px;
|
|
60
|
+
fill: #8900ff;
|
|
61
|
+
rx: 5.51px;
|
|
62
|
+
ry: 30.6px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
:global .dq1fi7b {
|
|
66
|
+
cx: 67.34px;
|
|
67
|
+
cy: 12.3px;
|
|
68
|
+
fill: #eee6ff;
|
|
69
|
+
rx: 14.07px;
|
|
70
|
+
ry: 22.08px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
:global .o5_ixxt {
|
|
74
|
+
cx: 68.44px;
|
|
75
|
+
cy: 15.74px;
|
|
76
|
+
fill: #8900ff;
|
|
77
|
+
rx: 3.47px;
|
|
78
|
+
ry: 21.5px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
:global .omy7wdb {
|
|
82
|
+
cx: 14.59px;
|
|
83
|
+
cy: 9.74px;
|
|
84
|
+
fill: #8900ff;
|
|
85
|
+
rx: 4.41px;
|
|
86
|
+
ry: 29.11px;
|
|
17
87
|
}
|
|
18
88
|
|
|
19
|
-
:global .
|
|
20
|
-
|
|
89
|
+
:global .lyry4pb {
|
|
90
|
+
cx: 61.73px;
|
|
91
|
+
cy: -5.32px;
|
|
92
|
+
fill: #8900ff;
|
|
93
|
+
rx: 4.41px;
|
|
94
|
+
ry: 29.11px;
|
|
21
95
|
}
|
|
22
96
|
|
|
23
|
-
:global .
|
|
24
|
-
|
|
97
|
+
:global .nwdbn1b {
|
|
98
|
+
cx: 55.62px;
|
|
99
|
+
cy: 7.1px;
|
|
100
|
+
fill: #00c2ff;
|
|
101
|
+
rx: 5.97px;
|
|
102
|
+
ry: 9.67px;
|
|
25
103
|
}
|
|
26
104
|
|
|
27
|
-
:global .
|
|
28
|
-
|
|
105
|
+
:global .b5n_b5b {
|
|
106
|
+
cx: 12.33px;
|
|
107
|
+
cy: 39.1px;
|
|
108
|
+
fill: #8900ff;
|
|
109
|
+
rx: 4.41px;
|
|
110
|
+
ry: 29.11px;
|
|
29
111
|
}
|
|
30
112
|
|
|
31
|
-
:global .
|
|
32
|
-
|
|
113
|
+
:global .fb7h-tb {
|
|
114
|
+
cx: 49.86px;
|
|
115
|
+
cy: 30.68px;
|
|
116
|
+
fill: #8900ff;
|
|
117
|
+
rx: 4.41px;
|
|
118
|
+
ry: 29.11px;
|
|
33
119
|
}
|
|
34
120
|
|
|
35
|
-
:global .
|
|
36
|
-
|
|
121
|
+
:global .dzbi4-v {
|
|
122
|
+
cx: 52.62px;
|
|
123
|
+
cy: 33.17px;
|
|
124
|
+
fill: #00c2ff;
|
|
125
|
+
rx: 5.97px;
|
|
126
|
+
ry: 15.3px;
|
|
37
127
|
}
|
|
38
128
|
|
|
39
|
-
:global .
|
|
40
|
-
|
|
129
|
+
:global .jrx6axvt {
|
|
130
|
+
fill: #fff;
|
|
131
|
+
d: path("M3.72 6.8C.1 11.98.08 20 3.72 25.2h2.45c-3.64-5.2-3.62-13.22 0-18.4zm24.56 0h-2.45c3.62 5.18 3.64 13.2 0 18.4h2.45c3.64-5.2 3.62-13.22 0-18.4");
|
|
41
132
|
}
|
|
42
133
|
|
|
43
134
|
</style>
|
|
@@ -4,24 +4,67 @@ import Icon from '@iconify/css-svelte';
|
|
|
4
4
|
let {width, height, ...props} = $props();
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":32,"height":32};
|
|
7
|
-
const content = `<path class="
|
|
7
|
+
const content = `<mask id="SVGTUBgmdJX"><path class="vgkt4tbo"/></mask><g class="ft5dv1b"><g mask="url(#SVGTUBgmdJX)" transform="translate(1 6.8)scale(.393)"><path class="k2urqqz"/><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(130.6 41.46 10.01)" class="n_ftmwp"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(234 18.43 30.5)" class="ur1vqsd"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(23.1 21.94 12.96)" class="jrt793z"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(23.1 56.27 16.72)" class="h2xadjb"/></g><g filter="url(#SVGQv8P6csY)"><ellipse transform="rotate(-45 51.35 1.06)" class="mefnlvc"/></g></g><path class="jrx6axvt"/><defs><filter id="SVGQv8P6csY" width="4" height="4" x="-2" y="-2" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="4.6"/></filter></defs></g>`;
|
|
8
8
|
</script>
|
|
9
9
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-vitest" {...props}></Icon>
|
|
10
10
|
<style>
|
|
11
|
-
:global .
|
|
12
|
-
fill: #
|
|
13
|
-
d: path("
|
|
11
|
+
:global .vgkt4tbo {
|
|
12
|
+
fill: #fff;
|
|
13
|
+
d: path("M36.76 42.97c-.33.6-1.1.76-1.65.36L15.96 29.41a1.2 1.2 0 0 1-.46-.92V11.71c0-.93 1.05-1.46 1.8-.92L29 19.31c1.1.8 2.65.46 3.3-.72l9.71-17.25c.2-.35.58-.57.99-.57h15.57c.87 0 1.41.93.99 1.68z");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
:global .
|
|
17
|
-
fill:
|
|
18
|
-
d: path("M16 28.49a1.4 1.4 0 0 1-.5-.1a1.3 1.3 0 0 1-.43-.29l-6.19-6.19A1.28 1.28 0 0 1 8.5 21a1.3 1.3 0 0 1 1.32-1.32a1.32 1.32 0 0 1 .94.38L16 25.29l11.43-11.43a1.32 1.32 0 0 1 .94-.38a1.3 1.3 0 0 1 .93.39a1.3 1.3 0 0 1 .39.93a1.34 1.34 0 0 1-.38.93L16.94 28.1a1.4 1.4 0 0 1-.43.29a1.5 1.5 0 0 1-.51.1");
|
|
16
|
+
:global .ft5dv1b {
|
|
17
|
+
fill: none;
|
|
19
18
|
}
|
|
20
19
|
|
|
21
|
-
:global .
|
|
22
|
-
fill: #
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
:global .k2urqqz {
|
|
21
|
+
fill: #00ff74;
|
|
22
|
+
d: path("M0 0h60v44H0z");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
:global .n_ftmwp {
|
|
26
|
+
cx: 41.46px;
|
|
27
|
+
cy: 10.01px;
|
|
28
|
+
fill: #00d0c7;
|
|
29
|
+
rx: 14.03px;
|
|
30
|
+
ry: 3.39px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
:global .ur1vqsd {
|
|
34
|
+
cx: 18.43px;
|
|
35
|
+
cy: 30.51px;
|
|
36
|
+
fill: #00d0c7;
|
|
37
|
+
rx: 14.03px;
|
|
38
|
+
ry: 6.09px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
:global .jrt793z {
|
|
42
|
+
cx: 21.94px;
|
|
43
|
+
cy: 12.96px;
|
|
44
|
+
fill: #03ff00;
|
|
45
|
+
rx: 6.37px;
|
|
46
|
+
ry: 5.55px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
:global .h2xadjb {
|
|
50
|
+
cx: 56.27px;
|
|
51
|
+
cy: 16.72px;
|
|
52
|
+
fill: #03ff00;
|
|
53
|
+
rx: 5.61px;
|
|
54
|
+
ry: 24.53px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
:global .mefnlvc {
|
|
58
|
+
cx: 51.35px;
|
|
59
|
+
cy: 1.06px;
|
|
60
|
+
fill: #6effe1;
|
|
61
|
+
rx: 4.99px;
|
|
62
|
+
ry: 10.07px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
:global .jrx6axvt {
|
|
66
|
+
fill: #fff;
|
|
67
|
+
d: path("M3.72 6.8C.1 11.98.08 20 3.72 25.2h2.45c-3.64-5.2-3.62-13.22 0-18.4zm24.56 0h-2.45c3.62 5.18 3.64 13.2 0 18.4h2.45c3.64-5.2 3.62-13.22 0-18.4");
|
|
25
68
|
}
|
|
26
69
|
|
|
27
70
|
</style>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
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
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-vroom" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .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
|
+
:global .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
|
+
:global .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
|
+
:global .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,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<path class="vnj14zbk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-vvvvvv" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .vnj14zbk {
|
|
12
|
+
fill: #51e7f4;
|
|
13
|
+
d: path("M3.153 3.08v1.084H2v3.257h1.153v2.188H4.24v2.102h1.017V13.9l1.086-.017v2.137l1.127.014v2.106h.976v2.188h1.153l-.034 2.17h1.068l.034 2.087h1.035v2.204h1.153v1.103h1.051l.003 1.03h4.271V27.84h1.069v-1.07h1.136v-2.187h1.018V22.48h1.102v-2.17h1.136v-2.103h.984v-2.17h1.051v-2.172h1.086v-2.137h1.085v-2.17h1.086v-2.12H30v-3.24h-1.068V3.08h-3.223l.01.983h-1.061V5.25h-1.153v2.17h-1.052v2.172h-1.034v2.035h-1.103v2.238H19.3v2.103l-1.115.02v2.15h-1.056v2.24H14.89v-2.171h-1.017V15.9h-1.035v-2.035h-1v-2.17h-1.222V9.557h-.983V7.42H8.546V5.25H7.427V4.232H6.274V3.08z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b"><path fill="url(#SVGajMI2Gxo)" transform="translate(2 3.262)scale(.07671)" class="dwz8g1bi"/><path fill="url(#SVGVE8enzjD)" transform="translate(2 3.262)scale(.07671)" class="x0hqslbl"/><path fill="url(#SVGUi0kec3s)" transform="translate(2 3.262)scale(.07671)" class="f_rr16bk"/><path fill="url(#SVGJIgqk7Us)" transform="translate(2 3.262)scale(.07671)" class="ltylpibi"/><path fill="url(#SVGvNDOMc3v)" transform="translate(2 3.262)scale(.07671)" class="y-wxasbo"/><path fill="url(#SVGEdbocEqq)" transform="translate(2 3.262)scale(.07671)" class="m4au074e"/><defs><linearGradient id="SVGajMI2Gxo" x1="99.545" x2="28.425" y1="8.398" y2="121.15" gradientUnits="userSpaceOnUse"><stop offset="0" class="ij33p_k"/><stop offset="1" class="gyualcb"/></linearGradient><linearGradient id="SVGVE8enzjD" x1="99.546" x2="86.823" y1="166.01" y2="333.58" gradientUnits="userSpaceOnUse"><stop offset="0" class="gyualcb"/><stop offset="1" class="wq11urn"/></linearGradient><linearGradient id="SVGUi0kec3s" x1="197.71" x2="459.94" y1="6.77" y2="144.51" gradientUnits="userSpaceOnUse"><stop offset="0" class="wq11urn"/><stop offset="1" class="uwevdja"/></linearGradient><linearGradient id="SVGJIgqk7Us" x1="51.233" x2="166.71" y1="49.876" y2="180.3" gradientUnits="userSpaceOnUse"><stop offset="0" class="t7vm1ac"/><stop offset="1" class="qoj0hsb"/></linearGradient><linearGradient id="SVGvNDOMc3v" x1="51.233" x2="149.65" y1="180.47" y2="307.67" gradientUnits="userSpaceOnUse"><stop offset="0" class="qoj0hsb"/><stop offset="1" class="md8t5jb"/></linearGradient><linearGradient id="SVGEdbocEqq" x1="215.23" x2="382.36" y1="49.876" y2="120.85" gradientUnits="userSpaceOnUse"><stop offset="0" class="md8t5jb"/><stop offset="1" class="ij33p_k"/></linearGradient></defs></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:file-type-xaml" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .ft5dv1b {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:global .dwz8g1bi {
|
|
16
|
+
d: path("M248.74.103H116.26a49.77 49.77 0 0 0-43.105 24.886L7.157 139.299A53.4 53.4 0 0 0 0 166.009h182.5c0-1.052.277-1.885.803-2.796l90.324-156.44A49.74 49.74 0 0 0 248.741.105z");
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:global .x0hqslbl {
|
|
20
|
+
d: path("M248.74 331.92H116.26a49.77 49.77 0 0 1-43.104-24.887L7.157 192.723C2.502 184.66.035 175.321 0 166.014h182.5c0 .79.207 1.765.602 2.449l90.524 156.79a49.73 49.73 0 0 1-24.885 6.668z");
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:global .f_rr16bk {
|
|
24
|
+
d: path("m357.84 192.72l-65.999 114.31a49.75 49.75 0 0 1-18.218 18.218l-90.524-156.79a4.5 4.5 0 0 1-.602-2.248c0-1.052.277-2.086.803-2.997l90.324-156.44a49.74 49.74 0 0 1 18.217 18.218l65.999 114.31a53.43 53.43 0 0 1 0 53.419");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:global .ltylpibi {
|
|
28
|
+
d: path("m182.62 49.876l-33.525 58.068l-32.453 56.245a3.7 3.7 0 0 0-.489 1.836l.006.188H51.237l-.002-.201c0-2.124.547-4.247 1.64-6.16c5.693-9.96 17.618-30.641 29.897-51.908h-.04l28.736-49.773a16.59 16.59 0 0 1 14.368-8.295z");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:global .y-wxasbo {
|
|
32
|
+
d: path("M149.03 224.2h.024l-32.414-56.358a3.65 3.65 0 0 1-.483-1.623l-.006-.187H51.233a12.4 12.4 0 0 0 1.64 6.145c5.703 9.978 17.66 30.715 29.96 52.019h-.039l28.672 49.66a16.59 16.59 0 0 0 14.368 8.296h56.8z");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:global .m4au074e {
|
|
36
|
+
d: path("m215.23 107.94l33.588 58.186l-33.523 58.063l1.795 3.122l31.645 54.833l60.876-105.39l2.624-4.596a12.39 12.39 0 0 0 0-12.291l-2.649-4.638l-27.241-47.168h-.02l-33.59-58.186z");
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
:global .ij33p_k {
|
|
40
|
+
stop-color: #3bd5ff;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:global .gyualcb {
|
|
44
|
+
stop-color: #0fafff;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:global .wq11urn {
|
|
48
|
+
stop-color: #0078d4;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
:global .uwevdja {
|
|
52
|
+
stop-color: #004695;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
:global .t7vm1ac {
|
|
56
|
+
stop-color: #fefefe;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
:global .qoj0hsb {
|
|
60
|
+
stop-color: #e6f9fe;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
:global .md8t5jb {
|
|
64
|
+
stop-color: #9deaff;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
</style>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<defs><linearGradient id="SVGIntx1bfw" x1="-5602.7" x2="-5598.7" y1="768.54" y2="763.92" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset="0" class="n3uud4b"/><stop offset=".312" class="k0_6myv"/><stop offset=".838" class="dhfcpqb"/></linearGradient><linearGradient id="SVGhbeGpeuf" x1="-5632" x2="-5603.7" y1="769.05" y2="769.05" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset=".323" class="gs3319b"/><stop offset=".63" class="cp8ji5b"/><stop offset=".751" class="zbjxxeb"/><stop offset="1" class="dhfcpqb"/></linearGradient><linearGradient id="SVGUjpq0cHl" x1="-5628.5" x2="-5611.7" y1="766.22" y2="766.22" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset="0" class="io_nt6b"/><stop offset=".095" class="yr7h90e"/><stop offset=".788" class="ys-stkx"/><stop offset=".949" class="aihgedc"/></linearGradient><linearGradient id="SVGQecMKbOg" x1="-5630.4" x2="-5602.2" y1="769.32" y2="769.32" href="#SVGhbeGpeuf"/><linearGradient id="SVGUv29KppQ" x1="-5628.3" x2="-5613.5" y1="768.93" y2="768.93" href="#SVGUjpq0cHl"/><linearGradient id="SVG0Xgwrc8Z" x1="-5630.4" x2="-5602.2" y1="766.39" y2="766.39" href="#SVGhbeGpeuf"/><linearGradient id="SVG322JIcOv" x1="-5632.1" x2="-5603.9" y1="766.54" y2="766.54" href="#SVGhbeGpeuf"/><linearGradient id="SVGouoSOZFU" x1="-5632" x2="-5603.7" y1="769.05" y2="769.05" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse" href="#SVGhbeGpeuf"/><linearGradient id="SVG7T75KdaO" x1="-5628.5" x2="-5611.7" y1="766.22" y2="766.22" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse" href="#SVGUjpq0cHl"/></defs><path class="p9br7obr"/><path fill="url(#SVGIntx1bfw)" transform="translate(17.294 10.834)scale(.58274)" class="ubtk7f5m"/><path fill="url(#SVGouoSOZFU)" transform="translate(17.294 10.834)scale(.58274)" class="a9s6ekvj"/><path fill="url(#SVG7T75KdaO)" transform="translate(17.294 10.834)scale(.58274)" class="hosq_bfx"/><path fill="url(#SVGQecMKbOg)" transform="translate(17.294 10.834)scale(.58274)" class="ij-6t25t"/><path fill="url(#SVGUv29KppQ)" transform="translate(17.294 10.834)scale(.58274)" class="n2z0z-bz"/><path fill="url(#SVG0Xgwrc8Z)" transform="translate(17.294 10.834)scale(.58274)" class="vj9309bn"/><path fill="url(#SVG322JIcOv)" transform="translate(17.294 10.834)scale(.58274)" class="u0vz5jjm"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:folder-type-apache-opened" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .n3uud4b {
|
|
12
|
+
stop-color: #f69923;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:global .k0_6myv {
|
|
16
|
+
stop-color: #f79a23;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:global .dhfcpqb {
|
|
20
|
+
stop-color: #e97826;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:global .gs3319b {
|
|
24
|
+
stop-color: #9e2064;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:global .cp8ji5b {
|
|
28
|
+
stop-color: #c92037;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:global .zbjxxeb {
|
|
32
|
+
stop-color: #cd2335;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:global .io_nt6b {
|
|
36
|
+
stop-color: #282662;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
:global .yr7h90e {
|
|
40
|
+
stop-color: #662e8d;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:global .ys-stkx {
|
|
44
|
+
stop-color: #9f2064;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:global .aihgedc {
|
|
48
|
+
stop-color: #cd2032;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
:global .p9br7obr {
|
|
52
|
+
fill: #a838a8;
|
|
53
|
+
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");
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
:global .ubtk7f5m {
|
|
57
|
+
d: path("M19.993 2.133a10.3 10.3 0 0 0-2.04 2.056l.8 1.51a20 20 0 0 1 1.708-2.144q.067-.073.068-.072l-.068.072a18 18 0 0 0-1.6 2.174a30 30 0 0 0 3.111-.385a3.3 3.3 0 0 0-.3-2.5S20.9 1.6 19.993 2.133");
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
:global .a9s6ekvj {
|
|
61
|
+
d: path("M16.394 9.6q.365-.682.739-1.332q.388-.674.784-1.305l.046-.075q.392-.62.79-1.191l-.8-1.51l-.182.225c-.231.288-.47.6-.716.925q-.416.556-.851 1.179q-.401.575-.809 1.2a48 48 0 0 0-.692 1.09l-.026.042l1.041 2.052q.334-.656.676-1.3");
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
:global .hosq_bfx {
|
|
65
|
+
d: path("M11.651 21.192q-.207.568-.415 1.159l-.006.017l-.059.167c-.093.266-.175.5-.361 1.049a2.1 2.1 0 0 1 .786.926a1.68 1.68 0 0 0-.544-1.154a3.62 3.62 0 0 0 3.489-1.42a3 3 0 0 0 .165-.313a1.45 1.45 0 0 1-1.4.513a4.06 4.06 0 0 0 2.046-1.672a8 8 0 0 0 .328-.587a3.3 3.3 0 0 1-3.109 1.01l-.842.092c-.029.071-.052.142-.078.213");
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
:global .ij-6t25t {
|
|
69
|
+
d: path("M12.044 19.306q.273-.706.562-1.426q.276-.69.567-1.387t.594-1.4q.308-.711.629-1.419t.645-1.389q.118-.248.238-.495q.207-.426.417-.845l.023-.045l-1.042-2.053l-.051.083c-.242.4-.484.8-.721 1.216s-.475.844-.7 1.276q-.291.547-.568 1.1l-.11.225q-.34.7-.617 1.352q-.315.737-.556 1.406c-.107.293-.2.576-.292.847q-.11.347-.208.7q-.234.818-.4 1.631l1.046 2.065q.208-.554.426-1.124z");
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:global .n2z0z-bz {
|
|
73
|
+
d: path("M10.435 18.755a16 16 0 0 0-.272 1.974q.001.035-.005.069a4.2 4.2 0 0 0-1.2-1.029a5.8 5.8 0 0 1 1.172 2.693a2.64 2.64 0 0 1-1.325-.226a2.66 2.66 0 0 0 1.13.686a3.25 3.25 0 0 0-1.571.783a3.36 3.36 0 0 1 1.861-.342A154 154 0 0 0 8.076 30a.63.63 0 0 0 .425-.413c.128-.43.976-3.251 2.306-6.959l.115-.318l.032-.089q.211-.583.437-1.19l.1-.277v-.005l-1.041-2.065z");
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
:global .vj9309bn {
|
|
77
|
+
d: path("m15.88 11.078l-.09.185l-.274.57q-.15.315-.3.645c-.052.111-.1.222-.155.335q-.234.508-.474 1.049q-.3.666-.6 1.384q-.291.685-.59 1.418q-.284.7-.575 1.436q-.259.661-.523 1.357l-.025.068q-.262.693-.529 1.422l-.012.033l.842-.092l-.05-.009a6 6 0 0 0 3.21-1.807a8 8 0 0 0 1.1-1.524a13 13 0 0 0 .706-1.467q.292-.706.562-1.536a3 3 0 0 1-.788.274c-.051.011-.1.021-.156.03s-.107.018-.161.025a3.67 3.67 0 0 0 1.962-1.913a3.3 3.3 0 0 1-1.13.495a3 3 0 0 1-.2.036l-.05.007a3.8 3.8 0 0 0 .839-.469q.076-.057.148-.12a2.6 2.6 0 0 0 .331-.338a3 3 0 0 0 .263-.362q.038-.06.074-.122l.09-.178q.196-.396.319-.706c.042-.1.078-.2.109-.288l.036-.1q.05-.149.081-.265a3 3 0 0 0 .062-.275a1 1 0 0 1-.109.075a4 4 0 0 1-1.162.4l.773-.085l-.773.085h-.018l-.119.019l.021-.009l-2.645.29z");
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
:global .u0vz5jjm {
|
|
81
|
+
d: path("M18.858 5.73a35 35 0 0 0-.768 1.236l-.044.074q-.358.6-.759 1.327q-.346.626-.719 1.347q-.326.629-.672 1.336l2.645-.29a3.2 3.2 0 0 0 1.449-1.14q.134-.193.267-.4c.272-.424.538-.891.776-1.355a14 14 0 0 0 .588-1.294a7 7 0 0 0 .233-.7q.072-.275.115-.524a30 30 0 0 1-3.111.383");
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
</style>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<defs><linearGradient id="SVGIntx1bfw" x1="-5602.7" x2="-5598.7" y1="768.54" y2="763.92" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset="0" class="n3uud4b"/><stop offset=".312" class="k0_6myv"/><stop offset=".838" class="dhfcpqb"/></linearGradient><linearGradient id="SVGhbeGpeuf" x1="-5632" x2="-5603.7" y1="769.05" y2="769.05" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset=".323" class="gs3319b"/><stop offset=".63" class="cp8ji5b"/><stop offset=".751" class="zbjxxeb"/><stop offset="1" class="dhfcpqb"/></linearGradient><linearGradient id="SVGUjpq0cHl" x1="-5628.5" x2="-5611.7" y1="766.22" y2="766.22" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse"><stop offset="0" class="io_nt6b"/><stop offset=".095" class="yr7h90e"/><stop offset=".788" class="ys-stkx"/><stop offset=".949" class="aihgedc"/></linearGradient><linearGradient id="SVGQecMKbOg" x1="-5630.4" x2="-5602.2" y1="769.32" y2="769.32" href="#SVGhbeGpeuf"/><linearGradient id="SVGUv29KppQ" x1="-5628.3" x2="-5613.5" y1="768.93" y2="768.93" href="#SVGUjpq0cHl"/><linearGradient id="SVG0Xgwrc8Z" x1="-5630.4" x2="-5602.2" y1="766.39" y2="766.39" href="#SVGhbeGpeuf"/><linearGradient id="SVG322JIcOv" x1="-5632.1" x2="-5603.9" y1="766.54" y2="766.54" href="#SVGhbeGpeuf"/><linearGradient id="SVGouoSOZFU" x1="-5632" x2="-5603.7" y1="769.05" y2="769.05" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse" href="#SVGhbeGpeuf"/><linearGradient id="SVG7T75KdaO" x1="-5628.5" x2="-5611.7" y1="766.22" y2="766.22" gradientTransform="rotate(115.03 3053.251 -1392.804)scale(-1 1)" gradientUnits="userSpaceOnUse" href="#SVGUjpq0cHl"/></defs><path class="ml_g-fyt"/><path fill="url(#SVGIntx1bfw)" transform="translate(17.294 10.834)scale(.58272)" class="ubtk7f5m"/><path fill="url(#SVGouoSOZFU)" transform="translate(17.294 10.834)scale(.58272)" class="a9s6ekvj"/><path fill="url(#SVG7T75KdaO)" transform="translate(17.294 10.834)scale(.58272)" class="hosq_bfx"/><path fill="url(#SVGQecMKbOg)" transform="translate(17.294 10.834)scale(.58272)" class="ij-6t25t"/><path fill="url(#SVGUv29KppQ)" transform="translate(17.294 10.834)scale(.58272)" class="n2z0z-bz"/><path fill="url(#SVG0Xgwrc8Z)" transform="translate(17.294 10.834)scale(.58272)" class="vj9309bn"/><path fill="url(#SVG322JIcOv)" transform="translate(17.294 10.834)scale(.58272)" class="u0vz5jjm"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:folder-type-apache" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .n3uud4b {
|
|
12
|
+
stop-color: #f69923;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:global .k0_6myv {
|
|
16
|
+
stop-color: #f79a23;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:global .dhfcpqb {
|
|
20
|
+
stop-color: #e97826;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:global .gs3319b {
|
|
24
|
+
stop-color: #9e2064;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:global .cp8ji5b {
|
|
28
|
+
stop-color: #c92037;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:global .zbjxxeb {
|
|
32
|
+
stop-color: #cd2335;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:global .io_nt6b {
|
|
36
|
+
stop-color: #282662;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
:global .yr7h90e {
|
|
40
|
+
stop-color: #662e8d;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:global .ys-stkx {
|
|
44
|
+
stop-color: #9f2064;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
:global .aihgedc {
|
|
48
|
+
stop-color: #cd2032;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
:global .ml_g-fyt {
|
|
52
|
+
fill: #822b82;
|
|
53
|
+
d: path("M27.417 5.5H18.19l-2.083 4.2H4.5v16.8h25v-21Zm0 4.2h-8.135l1.091-2.1h7.044Z");
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
:global .ubtk7f5m {
|
|
57
|
+
d: path("M19.993 2.133a10.3 10.3 0 0 0-2.04 2.056l.8 1.51a20 20 0 0 1 1.708-2.144q.067-.073.068-.072l-.068.072a18 18 0 0 0-1.6 2.174a30 30 0 0 0 3.111-.385a3.3 3.3 0 0 0-.3-2.5S20.9 1.6 19.993 2.133");
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
:global .a9s6ekvj {
|
|
61
|
+
d: path("M16.394 9.6q.365-.682.739-1.332q.388-.674.784-1.305l.046-.075q.392-.62.79-1.191l-.8-1.51l-.182.225c-.231.288-.47.6-.716.925q-.416.556-.851 1.179q-.401.575-.809 1.2a48 48 0 0 0-.692 1.09l-.026.042l1.041 2.052q.334-.656.676-1.3");
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
:global .hosq_bfx {
|
|
65
|
+
d: path("M11.651 21.192q-.207.568-.415 1.159l-.006.017l-.059.167c-.093.266-.175.5-.361 1.049a2.1 2.1 0 0 1 .786.926a1.68 1.68 0 0 0-.544-1.154a3.62 3.62 0 0 0 3.489-1.42a3 3 0 0 0 .165-.313a1.45 1.45 0 0 1-1.4.513a4.06 4.06 0 0 0 2.046-1.672a8 8 0 0 0 .328-.587a3.3 3.3 0 0 1-3.109 1.01l-.842.092c-.029.071-.052.142-.078.213");
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
:global .ij-6t25t {
|
|
69
|
+
d: path("M12.044 19.306q.273-.706.562-1.426q.276-.69.567-1.387t.594-1.4q.308-.711.629-1.419t.645-1.389q.118-.248.238-.495q.207-.426.417-.845l.023-.045l-1.042-2.053l-.051.083c-.242.4-.484.8-.721 1.216s-.475.844-.7 1.276q-.291.547-.568 1.1l-.11.225q-.34.7-.617 1.352q-.315.737-.556 1.406c-.107.293-.2.576-.292.847q-.11.347-.208.7q-.234.818-.4 1.631l1.046 2.065q.208-.554.426-1.124z");
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:global .n2z0z-bz {
|
|
73
|
+
d: path("M10.435 18.755a16 16 0 0 0-.272 1.974q.001.035-.005.069a4.2 4.2 0 0 0-1.2-1.029a5.8 5.8 0 0 1 1.172 2.693a2.64 2.64 0 0 1-1.325-.226a2.66 2.66 0 0 0 1.13.686a3.25 3.25 0 0 0-1.571.783a3.36 3.36 0 0 1 1.861-.342A154 154 0 0 0 8.076 30a.63.63 0 0 0 .425-.413c.128-.43.976-3.251 2.306-6.959l.115-.318l.032-.089q.211-.583.437-1.19l.1-.277v-.005l-1.041-2.065z");
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
:global .vj9309bn {
|
|
77
|
+
d: path("m15.88 11.078l-.09.185l-.274.57q-.15.315-.3.645c-.052.111-.1.222-.155.335q-.234.508-.474 1.049q-.3.666-.6 1.384q-.291.685-.59 1.418q-.284.7-.575 1.436q-.259.661-.523 1.357l-.025.068q-.262.693-.529 1.422l-.012.033l.842-.092l-.05-.009a6 6 0 0 0 3.21-1.807a8 8 0 0 0 1.1-1.524a13 13 0 0 0 .706-1.467q.292-.706.562-1.536a3 3 0 0 1-.788.274c-.051.011-.1.021-.156.03s-.107.018-.161.025a3.67 3.67 0 0 0 1.962-1.913a3.3 3.3 0 0 1-1.13.495a3 3 0 0 1-.2.036l-.05.007a3.8 3.8 0 0 0 .839-.469q.076-.057.148-.12a2.6 2.6 0 0 0 .331-.338a3 3 0 0 0 .263-.362q.038-.06.074-.122l.09-.178q.196-.396.319-.706c.042-.1.078-.2.109-.288l.036-.1q.05-.149.081-.265a3 3 0 0 0 .062-.275a1 1 0 0 1-.109.075a4 4 0 0 1-1.162.4l.773-.085l-.773.085h-.018l-.119.019l.021-.009l-2.645.29z");
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
:global .u0vz5jjm {
|
|
81
|
+
d: path("M18.858 5.73a35 35 0 0 0-.768 1.236l-.044.074q-.358.6-.759 1.327q-.346.626-.719 1.347q-.326.629-.672 1.336l2.645-.29a3.2 3.2 0 0 0 1.449-1.14q.134-.193.267-.4c.272-.424.538-.891.776-1.355a14 14 0 0 0 .588-1.294a7 7 0 0 0 .233-.7q.072-.275.115-.524a30 30 0 0 1-3.111.383");
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
</style>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
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
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="vscode-icons:folder-type-cursor-opened" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .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
|
+
:global .nj63fsm {
|
|
17
|
+
fill: #a4a4a4;
|
|
18
|
+
d: path("m29.622 26.5l-3.8-12.8H.622l3.8 12.8z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
:global .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
|
+
:global .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>
|