@iconify-svelte/material-symbols 1.0.25 → 1.0.26
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/s/speed-2-outline-rounded.svelte +17 -0
- package/components/s/speed-2-outline-sharp.svelte +17 -0
- package/components/s/speed-2-outline.svelte +17 -0
- package/components/s/speed-2-rounded.svelte +17 -0
- package/components/s/speed-2-sharp.svelte +17 -0
- package/components/s/speed-2.svelte +17 -0
- package/components/s/speed-3-outline-rounded.svelte +17 -0
- package/components/s/speed-3-outline-sharp.svelte +17 -0
- package/components/s/speed-3-outline.svelte +17 -0
- package/components/s/speed-3-rounded.svelte +17 -0
- package/components/s/speed-3-sharp.svelte +17 -0
- package/components/s/speed-3.svelte +17 -0
- package/components/s/speed-4-outline-rounded.svelte +17 -0
- package/components/s/speed-4-outline-sharp.svelte +17 -0
- package/components/s/speed-4-outline.svelte +17 -0
- package/components/s/speed-4-rounded.svelte +17 -0
- package/components/s/speed-4-sharp.svelte +17 -0
- package/components/s/speed-4.svelte +17 -0
- package/components/t/touch-double-2-outline-rounded.svelte +17 -0
- package/components/t/touch-double-2-outline-sharp.svelte +17 -0
- package/components/t/touch-double-2-outline.svelte +17 -0
- package/components/t/touch-double-2-rounded.svelte +17 -0
- package/components/t/touch-double-2-sharp.svelte +17 -0
- package/components/t/touch-double-2.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +97 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="wj39rjbt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wj39rjbt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.4 15.425q.65-.65.6-1.513t-.75-1.387q-1.5-1.175-3.05-2.175t-3.125-2q-.35-.225-.65.075t-.075.65q1 1.575 2 3.138t2.1 3.112q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q0-.875.175-1.725t.525-1.65q.15-.375.55-.512t.75.062t.487.588t-.012.787q-.225.6-.35 1.225T3.975 13.9q0 1.1.287 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.675 0-1.325.125t-1.275.35q-.4.125-.775-.012T8.05 5.95T8 5.187t.525-.537q.825-.325 1.7-.488T12 4q2.075 0 3.888.788t3.175 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="iy_j1hnc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.iy_j1hnc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20zm8.075-5.95");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="igttgrdl"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.igttgrdl) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="lz4i5ofp"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lz4i5ofp) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.55 15.5q.65-.65.613-1.525T13.4 12.6l-3.15-2.1L7.1 8.4q-.35-.225-.65.063t-.075.637q1.05 1.575 2.112 3.15T10.6 15.4q.475.725 1.375.75t1.575-.65M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="krqtpqbb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.krqtpqbb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="xks3l7bt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.xks3l7bt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.9.838-3.725T4.975 6.95q1.4-1.4 3.238-2.175T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="uhl7_nbh"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.uhl7_nbh) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.525 0-1.012-.238t-.738-.712q-.7-1.15-1.025-2.437T2.025 14q0-1.725.588-3.463t1.862-3.112q.375-.425.8-.412t.7.262t.35.625t-.225.725q-.95 1.05-1.512 2.475T4.025 14q0 1.025.263 2.038T5.125 18H18.9q.525-.9.813-1.925T20 14q0-1.875-.812-3.475T17.025 7.8q-1.05-.875-2.375-1.35T11.95 6q-.4 0-.712-.262t-.363-.663t.15-.725t.6-.35q1.825-.075 3.563.525T18.35 6.3q1.675 1.4 2.663 3.375T22 14q0 1.4-.35 2.663t-1 2.387q-.275.475-.75.713t-1 .237zm6.9-6.025");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="cpgrg-bn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.cpgrg-bn) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.6-.55 3.1T20.125 20h-16.2q-.8-1.4-1.362-2.887T2.025 14m10.8 1.8q.85-.375 1.15-1.225t-.2-1.575q-1.425-2.05-2.925-4.038T7.8 5.025q.475 2.45 1.05 4.863t1.3 4.812q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="uo83dzbd"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.uo83dzbd) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.125 20q-.55 0-1.012-.238t-.738-.712Q2.7 17.9 2.35 16.625T2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.35-.35 2.613t-1 2.437q-.275.475-.737.713T18.9 20zm7.7-4.2q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="h9ud6ihr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.h9ud6ihr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="kjf0z31o"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.kjf0z31o) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.05-2.937-4.05T7.775 4.975Q8.3 7.45 8.863 9.863T10.15 14.7q.25.825 1.063 1.138t1.612-.038M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="y2yzn0lu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-3" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.y2yzn0lu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="l8mz89wa"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.l8mz89wa) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.525 0-1-.238t-.75-.712q-.65-1.125-1-2.387T2.025 14q0-2.35.988-4.325T5.675 6.3Q7.1 5.125 8.838 4.525T12.4 4q.4.025.6.35t.15.725t-.363.662t-.712.263q-1.375-.025-2.7.45T7 7.8q-1.35 1.125-2.162 2.725T4.025 14q0 1.05.288 2.075T5.125 18H18.9q.575-.95.838-1.963T20 14q0-1.475-.562-2.9t-1.513-2.475q-.3-.35-.225-.725t.35-.625t.7-.262t.8.412q1.275 1.375 1.863 3.113T22 14q0 1.325-.325 2.613T20.65 19.05q-.25.475-.737.713T18.9 20zM12 13.975");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="jgu6v4bo"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jgu6v4bo) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.9 20q-.775-1.4-1.325-2.9t-.55-3.1q0-2.075.788-3.9T4.95 6.925t3.175-2.137t3.9-.788q.575 0 1.15.075t1.15.2L13 6.075q-.25-.05-.488-.062T12.026 6Q8.675 6 6.35 8.325T4.025 14q0 1.05.287 2.063T5.125 18H18.9q.55-.9.825-1.925T20 14q0-1.65-.638-3.15t-1.837-2.625l.525-2.175q1.875 1.425 2.9 3.512T22 14q0 1.625-.55 3.113T20.1 20zm7.3-4.2q.8.35 1.613.038t1.062-1.138q.725-2.4 1.3-4.812t1.05-4.863q-1.55 1.95-3.05 3.938T10.25 13q-.5.725-.2 1.575T11.2 15.8m.8-1.825");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="hc1623bf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.hc1623bf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.1 20q-.55 0-1.012-.238t-.738-.712q-.65-1.175-1-2.437T2 14q0-2.075.788-3.9t2.137-3.175T8.1 4.788T12 4q.575 0 1.15.075t1.15.2l-1.325 1.8q-.25-.05-.487-.062T12 6Q8.65 6 6.325 8.325T4 14q0 1.05.287 2.063T5.1 18h13.775q.55-.9.825-1.925T19.975 14q0-1.65-.638-3.15T17.5 8.225l.525-2.175q1.875 1.425 2.913 3.512T21.975 14q.025 1.35-.325 2.625t-1.025 2.425q-.275.475-.737.713T18.875 20zm6.075-4.2q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225m.8-1.825");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="t_ozkacy"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.t_ozkacy) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="siv4h3xg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.siv4h3xg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.2 15.8q.8.35 1.613.038t1.062-1.138q.725-2.425 1.288-4.837t1.087-4.888Q14.675 6.95 13.188 8.95T10.25 13q-.5.725-.2 1.575T11.2 15.8M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="fmvkakbz"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:speed-4" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.fmvkakbz) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.175 15.8q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="y6qf54jr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.y6qf54jr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L3.2 14.65q-.225-.3-.2-.687t.3-.663q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v8.05q0 .575-.513.863T7.976 16.9l-.925-.575l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-1.5q-.425 0-.712-.288T14.5 12t.288-.712T15.5 11H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.838-9.287Q11 12.425 11 12V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12q0 .425-.288.713T12 13t-.712-.288M10.5 3q-1.05 0-1.963.4T6.95 4.475Q6.3 5.125 5.913 6t-.438 1.8q-.025.425-.262.763t-.663.387t-.775-.187t-.35-.663q-.025-1.3.6-2.725T5.55 3.05q.95-.95 2.225-1.5T10.5 1t2.725.55t2.225 1.5q1.025 1.025 1.525 2.275t.5 2.675q0 .425-.313.675t-.737.2t-.675-.362t-.275-.738q-.05-.95-.413-1.787t-1.037-1.513T12.45 3.4T10.5 3m2.025 13");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ghi476bq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ghi476bq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.975 22L2.65 13.95L4.3 12.3l3.2 1.925V7h2v10.825l-2.45-1.5L9.95 20H18v-7h-3.5v-2H20v11zM11 13V5.25h2V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.9");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="z24xyxbn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.z24xyxbn) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L2.65 13.95l.65-.65q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v9.825l-2.45-1.5l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-2.5v-2H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.55-9V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.9");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="s0u-rvbj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.s0u-rvbj) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L3.2 14.65q-.225-.3-.2-.687t.3-.663q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v4H11V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12h4q1.25 0 2.125.875T20 15v3q0 1.675-1.175 2.838T16 22zm.05-19q-1.05 0-1.962.4T6.95 4.475Q6.3 5.125 5.913 6t-.438 1.8q-.025.425-.262.763t-.663.387t-.775-.187t-.35-.663q-.025-1.3.6-2.725T5.55 3.05q.95-.95 2.225-1.5T10.5 1t2.725.55t2.225 1.5q1.025 1.025 1.525 2.275t.5 2.675q0 .425-.313.675t-.737.2t-.675-.362t-.275-.738q-.05-.95-.413-1.787t-1.037-1.513T12.45 3.4T10.5 3");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="w49u-pbl"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.w49u-pbl) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.975 22L2.65 13.95L4.3 12.3l3.2 1.925V7h2v5H11V5.25h2V12h7v10zm-5.4-12.9Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ab800ubo"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:touch-double-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ab800ubo) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L2.65 13.95l.65-.65q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v4H11V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12h4q1.25 0 2.125.875T20 15v3q0 1.675-1.175 2.838T16 22zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15325,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
],
|
|
28
28
|
"palette": false
|
|
29
29
|
},
|
|
30
|
-
"lastModified":
|
|
30
|
+
"lastModified": 1776830580
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/material-symbols",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.26",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -53278,6 +53278,30 @@
|
|
|
53278
53278
|
"types": "./types/gfwqskkx.d.ts",
|
|
53279
53279
|
"svelte": "./components/s/speed-1-7x-sharp.svelte"
|
|
53280
53280
|
},
|
|
53281
|
+
"./speed-2": {
|
|
53282
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53283
|
+
"svelte": "./components/s/speed-2.svelte"
|
|
53284
|
+
},
|
|
53285
|
+
"./speed-2-outline": {
|
|
53286
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53287
|
+
"svelte": "./components/s/speed-2-outline.svelte"
|
|
53288
|
+
},
|
|
53289
|
+
"./speed-2-outline-rounded": {
|
|
53290
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53291
|
+
"svelte": "./components/s/speed-2-outline-rounded.svelte"
|
|
53292
|
+
},
|
|
53293
|
+
"./speed-2-outline-sharp": {
|
|
53294
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53295
|
+
"svelte": "./components/s/speed-2-outline-sharp.svelte"
|
|
53296
|
+
},
|
|
53297
|
+
"./speed-2-rounded": {
|
|
53298
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53299
|
+
"svelte": "./components/s/speed-2-rounded.svelte"
|
|
53300
|
+
},
|
|
53301
|
+
"./speed-2-sharp": {
|
|
53302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53303
|
+
"svelte": "./components/s/speed-2-sharp.svelte"
|
|
53304
|
+
},
|
|
53281
53305
|
"./speed-2x": {
|
|
53282
53306
|
"types": "./types/gfwqskkx.d.ts",
|
|
53283
53307
|
"svelte": "./components/s/speed-2x.svelte"
|
|
@@ -53290,6 +53314,54 @@
|
|
|
53290
53314
|
"types": "./types/gfwqskkx.d.ts",
|
|
53291
53315
|
"svelte": "./components/s/speed-2x-sharp.svelte"
|
|
53292
53316
|
},
|
|
53317
|
+
"./speed-3": {
|
|
53318
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53319
|
+
"svelte": "./components/s/speed-3.svelte"
|
|
53320
|
+
},
|
|
53321
|
+
"./speed-3-outline": {
|
|
53322
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53323
|
+
"svelte": "./components/s/speed-3-outline.svelte"
|
|
53324
|
+
},
|
|
53325
|
+
"./speed-3-outline-rounded": {
|
|
53326
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53327
|
+
"svelte": "./components/s/speed-3-outline-rounded.svelte"
|
|
53328
|
+
},
|
|
53329
|
+
"./speed-3-outline-sharp": {
|
|
53330
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53331
|
+
"svelte": "./components/s/speed-3-outline-sharp.svelte"
|
|
53332
|
+
},
|
|
53333
|
+
"./speed-3-rounded": {
|
|
53334
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53335
|
+
"svelte": "./components/s/speed-3-rounded.svelte"
|
|
53336
|
+
},
|
|
53337
|
+
"./speed-3-sharp": {
|
|
53338
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53339
|
+
"svelte": "./components/s/speed-3-sharp.svelte"
|
|
53340
|
+
},
|
|
53341
|
+
"./speed-4": {
|
|
53342
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53343
|
+
"svelte": "./components/s/speed-4.svelte"
|
|
53344
|
+
},
|
|
53345
|
+
"./speed-4-outline": {
|
|
53346
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53347
|
+
"svelte": "./components/s/speed-4-outline.svelte"
|
|
53348
|
+
},
|
|
53349
|
+
"./speed-4-outline-rounded": {
|
|
53350
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53351
|
+
"svelte": "./components/s/speed-4-outline-rounded.svelte"
|
|
53352
|
+
},
|
|
53353
|
+
"./speed-4-outline-sharp": {
|
|
53354
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53355
|
+
"svelte": "./components/s/speed-4-outline-sharp.svelte"
|
|
53356
|
+
},
|
|
53357
|
+
"./speed-4-rounded": {
|
|
53358
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53359
|
+
"svelte": "./components/s/speed-4-rounded.svelte"
|
|
53360
|
+
},
|
|
53361
|
+
"./speed-4-sharp": {
|
|
53362
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53363
|
+
"svelte": "./components/s/speed-4-sharp.svelte"
|
|
53364
|
+
},
|
|
53293
53365
|
"./speed-camera": {
|
|
53294
53366
|
"types": "./types/gfwqskkx.d.ts",
|
|
53295
53367
|
"svelte": "./components/s/speed-camera.svelte"
|
|
@@ -58910,6 +58982,30 @@
|
|
|
58910
58982
|
"types": "./types/gfwqskkx.d.ts",
|
|
58911
58983
|
"svelte": "./components/t/touch-double.svelte"
|
|
58912
58984
|
},
|
|
58985
|
+
"./touch-double-2": {
|
|
58986
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58987
|
+
"svelte": "./components/t/touch-double-2.svelte"
|
|
58988
|
+
},
|
|
58989
|
+
"./touch-double-2-outline": {
|
|
58990
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58991
|
+
"svelte": "./components/t/touch-double-2-outline.svelte"
|
|
58992
|
+
},
|
|
58993
|
+
"./touch-double-2-outline-rounded": {
|
|
58994
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58995
|
+
"svelte": "./components/t/touch-double-2-outline-rounded.svelte"
|
|
58996
|
+
},
|
|
58997
|
+
"./touch-double-2-outline-sharp": {
|
|
58998
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58999
|
+
"svelte": "./components/t/touch-double-2-outline-sharp.svelte"
|
|
59000
|
+
},
|
|
59001
|
+
"./touch-double-2-rounded": {
|
|
59002
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59003
|
+
"svelte": "./components/t/touch-double-2-rounded.svelte"
|
|
59004
|
+
},
|
|
59005
|
+
"./touch-double-2-sharp": {
|
|
59006
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59007
|
+
"svelte": "./components/t/touch-double-2-sharp.svelte"
|
|
59008
|
+
},
|
|
58913
59009
|
"./touch-double-outline": {
|
|
58914
59010
|
"types": "./types/gfwqskkx.d.ts",
|
|
58915
59011
|
"svelte": "./components/t/touch-double-outline.svelte"
|