@iconify-svelte/material-symbols-light 1.0.21 → 1.0.23
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/b/blinds-2-closed-outline-rounded.svelte +17 -0
- package/components/b/blinds-2-closed-outline.svelte +17 -0
- package/components/b/blinds-2-closed-rounded.svelte +17 -0
- package/components/b/blinds-2-closed.svelte +17 -0
- package/components/b/blinds-2-outline-rounded.svelte +17 -0
- package/components/b/blinds-2-outline.svelte +17 -0
- package/components/b/blinds-2-rounded.svelte +17 -0
- package/components/b/blinds-2.svelte +17 -0
- package/components/g/garage-door-open-outline-rounded.svelte +17 -0
- package/components/g/garage-door-open-outline.svelte +17 -0
- package/components/g/garage-door-open-rounded.svelte +17 -0
- package/components/g/garage-door-open.svelte +17 -0
- package/components/g/garage-door-outline-rounded.svelte +3 -3
- package/components/g/garage-door-outline.svelte +3 -3
- package/components/g/garage-door-rounded.svelte +3 -3
- package/components/g/garage-door.svelte +3 -3
- package/components/l/light-group-2-outline-rounded.svelte +17 -0
- package/components/l/light-group-2-outline.svelte +17 -0
- package/components/l/light-group-2-rounded.svelte +17 -0
- package/components/l/light-group-2.svelte +17 -0
- package/components/l/lightstrip-outline-sharp.svelte +17 -0
- package/components/l/lightstrip-outline.svelte +17 -0
- package/components/l/lightstrip-sharp.svelte +17 -0
- package/components/l/lightstrip.svelte +17 -0
- package/components/m/movie-edit-off-outline-rounded.svelte +17 -0
- package/components/m/movie-edit-off-outline-sharp.svelte +17 -0
- package/components/m/movie-edit-off-outline.svelte +17 -0
- package/components/m/movie-edit-off-rounded.svelte +17 -0
- package/components/m/movie-edit-off-sharp.svelte +17 -0
- package/components/m/movie-edit-off.svelte +17 -0
- package/components/s/sell-cloud-outline-rounded.svelte +17 -0
- package/components/s/sell-cloud-outline-sharp.svelte +17 -0
- package/components/s/sell-cloud-outline.svelte +17 -0
- package/components/s/sell-cloud-rounded.svelte +17 -0
- package/components/s/sell-cloud-sharp.svelte +17 -0
- package/components/s/sell-cloud.svelte +17 -0
- package/components/s/shades-closed-outline-rounded.svelte +17 -0
- package/components/s/shades-closed-outline.svelte +17 -0
- package/components/s/shades-closed-rounded.svelte +17 -0
- package/components/s/shades-closed.svelte +17 -0
- package/components/s/shades-outline-rounded.svelte +17 -0
- package/components/s/shades-outline.svelte +17 -0
- package/components/s/shades-rounded.svelte +17 -0
- package/components/s/shades.svelte +17 -0
- package/components/s/soundbar-outline-rounded.svelte +17 -0
- package/components/s/soundbar-outline-sharp.svelte +17 -0
- package/components/s/soundbar-outline.svelte +17 -0
- package/components/s/soundbar-rounded.svelte +17 -0
- package/components/s/soundbar-sharp.svelte +17 -0
- package/components/s/soundbar.svelte +17 -0
- package/components/s/speaker-2-outline-rounded.svelte +17 -0
- package/components/s/speaker-2-outline-sharp.svelte +17 -0
- package/components/s/speaker-2-outline.svelte +17 -0
- package/components/s/speaker-2-rounded.svelte +17 -0
- package/components/s/speaker-2-sharp.svelte +17 -0
- package/components/s/speaker-2.svelte +17 -0
- package/components/s/subwoofer-outline-rounded.svelte +17 -0
- package/components/s/subwoofer-outline-sharp.svelte +17 -0
- package/components/s/subwoofer-outline.svelte +17 -0
- package/components/s/subwoofer-rounded.svelte +17 -0
- package/components/s/subwoofer-sharp.svelte +17 -0
- package/components/s/subwoofer.svelte +17 -0
- package/components/s/switch-off-outline-rounded.svelte +17 -0
- package/components/s/switch-off-outline-sharp.svelte +17 -0
- package/components/s/switch-off-outline.svelte +17 -0
- package/components/s/switch-off-rounded.svelte +17 -0
- package/components/s/switch-off-sharp.svelte +17 -0
- package/components/s/switch-off.svelte +17 -0
- package/components/s/switch-outline-rounded.svelte +3 -3
- package/components/s/switch-outline-sharp.svelte +3 -3
- package/components/s/switch-outline.svelte +3 -3
- package/components/s/switch-rounded.svelte +3 -3
- package/components/s/switch-sharp.svelte +3 -3
- package/components/s/switch.svelte +3 -3
- package/components/v/vacuum-2-on-outline.svelte +17 -0
- package/components/v/vacuum-2-on.svelte +17 -0
- package/components/v/vacuum-2-outline.svelte +17 -0
- package/components/v/vacuum-2.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +273 -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="y9es4nbd"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.y9es4nbd) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zM14.5 7.712H9.542q-.351 0-.581.232t-.23.575v6.943q0 .343.232.575t.576.232h4.958q.351 0 .581-.232t.23-.575V8.519q0-.343-.232-.575t-.576-.232m-.192 1v4.673H9.73V8.71zm-2.304 9.25q-.29 0-.484.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m.02-13.288q-.29 0-.483.19t-.194.48t.19.483t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.193");
|
|
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="dmp2z3bi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.dmp2z3bi) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.98 21V3H19v18zm3.732-4.73h6.577V7.711H8.71zm5.577-7.558v4.672H9.712V8.712zM11.98 19.307q.292 0 .482-.201t.19-.469q0-.29-.188-.493q-.19-.203-.479-.203q-.267 0-.472.203q-.206.203-.206.493q0 .268.202.469t.47.2m.017-13.288q.29 0 .483-.2q.193-.202.193-.47q0-.29-.193-.492q-.193-.203-.488-.203q-.273 0-.469.203q-.196.202-.196.493q0 .267.2.468q.202.201.47.201");
|
|
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="l5170xbs"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.l5170xbs) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zm-2.096 4.712H8.73v8.557h6.577zm-1 1v4.673H9.73V8.71zm-2.305 9.25q-.29 0-.483.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m.02-13.288q-.29 0-.484.19t-.193.48t.19.483t.48.193t.483-.19t.193-.48t-.19-.483q-.189-.193-.48-.193");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="e60bw83j"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-outline-rounded" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.e60bw83j) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.452.173q-.183.173-.183.443v14.769q0 .269.183.442q.182.173.452.173m2.903-3.712h4.959q.35 0 .58-.232t.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-8.75q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 12.288q.29 0 .483-.19t.193-.48t-.19-.492t-.48-.203t-.483.203t-.193.493t.19.48t.48.189M12 12");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="jx7nwqbb"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-outline-sharp" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.jx7nwqbb) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M4.98 21V3H19v18zm1-1H18V4H5.98zm2.712-3.712h6.577V7.731H8.692zm1-1v-4.672h4.577v4.673zm2.303-8.73q.267 0 .472-.203q.206-.203.206-.493q0-.268-.202-.469t-.471-.2q-.292 0-.482.2q-.191.201-.191.469q0 .29.189.493q.19.203.479.203m0 12.269q.267 0 .472-.193q.206-.193.206-.489q0-.272-.202-.468T12 17.481q-.292 0-.482.2q-.191.201-.191.47q0 .29.189.483q.19.193.479.193M12 12");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="dg51wqbo"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-outline" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.dg51wqbo) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.443.173T6 4.616v14.769q0 .269.173.442t.443.173m2.096-3.712h6.577V7.731H8.71zm1-1v-4.672h4.577v4.673zM12 6.538q.287 0 .48-.193t.193-.48t-.193-.48t-.48-.193t-.48.194t-.193.48t.193.48t.48.193m0 12.288q.287 0 .48-.193t.193-.48t-.193-.49t-.48-.202t-.48.203t-.193.489t.193.48t.48.193M12 12");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="oje4zcbr"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-rounded" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.oje4zcbr) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm2.903-4.711h4.959q.35 0 .58-.233q.23-.232.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-9.25q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 13.288q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.193t-.483.19t-.193.48t.19.483t.48.193");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="on3e_0is"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-sharp" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.on3e_0is) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M4.98 21V3H19v18zm3.712-4.711h6.577V7.73H8.692zm1-1v-4.673h4.577v4.673zm2.303-9.231q.267 0 .472-.203q.206-.203.206-.493q0-.268-.202-.469t-.471-.2q-.292 0-.482.2q-.191.201-.191.469q0 .29.189.493q.19.203.479.203m-.006 13.288q.273 0 .469-.203t.196-.493q0-.267-.201-.468q-.2-.201-.469-.201q-.29 0-.483.2q-.193.201-.193.47q0 .29.193.492q.193.203.488.203");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
</style>
|
|
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
|
|
|
5
5
|
let {width, height, ...props} = $props();
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="u14p06bk"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch" {...props}></Icon>
|
|
11
11
|
<style>
|
|
12
|
-
:global(.
|
|
12
|
+
:global(.u14p06bk) {
|
|
13
13
|
fill: currentColor;
|
|
14
|
-
d: path("
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm2.096-4.711h6.577V7.73H8.71zm1-1v-4.673h4.577v4.673zm2.285-9.25q.29 0 .483-.19t.193-.48t-.19-.484t-.48-.193t-.483.19t-.193.48t.19.483t.48.193m0 13.289q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.193t-.483.19t-.193.48t.19.483t.48.193");
|
|
15
15
|
}
|
|
16
16
|
|
|
17
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="p69-_gsf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:vacuum-2-on-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.p69-_gsf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4 20.73q.31 0 .52-.22t.21-.51q0-.31-.21-.52T4 19.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m-2 2q.31 0 .52-.22t.21-.51q0-.31-.21-.52T2 21.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m10-10.922q-.31 0-.52-.22t-.21-.511q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m-1.671 4.443l-1.812 1.812q.771.46 1.65.698q.88.24 1.833.24t1.833-.24q.879-.239 1.65-.699l-1.825-1.811zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.69.724 3.108t1.959 2.367l1.958-1.958q-.858-.565-1.375-1.485q-.516-.92-.516-2.032q0-1.767 1.241-3.009T12 7.75t3.009 1.241Q16.25 10.233 16.25 12q0 1.112-.516 2.041q-.517.93-1.374 1.495l1.957 1.958q1.235-.95 1.959-2.377T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 3.75q-1.365 0-2.308.952T8.75 12q0 1.366.942 2.308T12 15.25q1.346 0 2.298-.942T15.25 12q0-1.346-.952-2.298T12 8.75M12 20q-1.664 0-3.118-.626T6.34 17.66t-1.714-2.542T4 12t.626-3.118T6.34 6.34t2.542-1.714T12 4t3.118.626T17.66 6.34t1.714 2.542T20 12t-.626 3.118t-1.714 2.542t-2.542 1.714T12 20m8 .73q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m2 2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22");
|
|
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="taj_51ch"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:vacuum-2-on" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.taj_51ch) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 11.808q.29 0 .51-.22t.22-.511q0-.31-.22-.52t-.51-.21q-.31 0-.52.21t-.21.52q0 .29.21.51t.52.22m-2.575 5.655h5.137l1.46 1.44q-.899.517-1.908.808Q13.104 20 12 20t-2.11-.29q-1.007-.29-1.906-.808zM12 4q1.644 0 3.099.636q1.455.635 2.542 1.723T19.365 8.9Q20 10.356 20 12q0 1.956-.858 3.591q-.857 1.636-2.284 2.732l-1.818-1.817q1.085-.729 1.744-1.914q.658-1.184.658-2.592q0-2.27-1.586-3.866T12 6.538T8.144 8.134T6.558 12q0 1.408.658 2.592q.659 1.185 1.744 1.914l-1.818 1.817q-1.426-1.096-2.284-2.732Q4 13.956 4 12q0-1.644.626-3.099T6.34 6.359t2.542-1.724Q10.337 4 12 4m0 3.539q1.842 0 3.152 1.309q1.31 1.31 1.31 3.152q0 1.862-1.31 3.162T12 16.462q-1.861 0-3.161-1.3T7.539 12q0-1.842 1.3-3.152T12 7.538M4 20.731q.31 0 .52-.22T4.73 20q0-.31-.21-.52T4 19.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m-2 2q.31 0 .52-.22t.21-.51q0-.31-.21-.52T2 21.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m18-2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m2 2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22");
|
|
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="o94w2abf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:vacuum-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.o94w2abf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 11.808q-.31 0-.52-.22t-.21-.511q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m-1.671 4.443l-1.812 1.812q.771.46 1.65.698q.88.24 1.833.24t1.833-.24q.879-.239 1.65-.699l-1.825-1.811zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.69.724 3.108t1.959 2.367l1.958-1.958q-.858-.565-1.375-1.485q-.516-.92-.516-2.032q0-1.767 1.241-3.009T12 7.75t3.009 1.241Q16.25 10.233 16.25 12q0 1.112-.516 2.041q-.517.93-1.374 1.495l1.957 1.958q1.235-.95 1.959-2.377T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 3.75q-1.365 0-2.308.952T8.75 12q0 1.366.942 2.308T12 15.25q1.346 0 2.298-.942T15.25 12q0-1.346-.952-2.298T12 8.75M12 20q-1.664 0-3.118-.626T6.34 17.66t-1.714-2.542T4 12t.626-3.118T6.34 6.34t2.542-1.714T12 4t3.118.626T17.66 6.34t1.714 2.542T20 12t-.626 3.118t-1.714 2.542t-2.542 1.714T12 20");
|
|
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="mw26v2bx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:vacuum-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.mw26v2bx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 11.808q.29 0 .51-.22t.22-.511q0-.31-.22-.52t-.51-.21q-.31 0-.52.21t-.21.52q0 .29.21.51t.52.22m-2.575 5.655h5.137l1.46 1.44q-.899.517-1.908.808Q13.104 20 12 20t-2.11-.29q-1.007-.29-1.906-.808zM12 4q1.644 0 3.099.636q1.455.635 2.542 1.723T19.365 8.9Q20 10.356 20 12q0 1.956-.858 3.591q-.857 1.636-2.284 2.732l-1.818-1.817q1.085-.729 1.744-1.914q.658-1.184.658-2.592q0-2.27-1.586-3.866T12 6.538T8.144 8.134T6.558 12q0 1.408.658 2.592q.659 1.185 1.744 1.914l-1.818 1.817q-1.426-1.096-2.284-2.732Q4 13.956 4 12q0-1.644.626-3.099T6.34 6.359t2.542-1.724Q10.337 4 12 4m0 3.539q1.842 0 3.152 1.309q1.31 1.31 1.31 3.152q0 1.862-1.31 3.162T12 16.462q-1.861 0-3.161-1.3T7.539 12q0-1.842 1.3-3.152T12 7.538");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols-light",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols Light",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15333,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1775277932
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/material-symbols-light",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.23",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols-light/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -7218,6 +7218,38 @@
|
|
|
7218
7218
|
"types": "./types/gfwqskkx.d.ts",
|
|
7219
7219
|
"svelte": "./components/b/blinds.svelte"
|
|
7220
7220
|
},
|
|
7221
|
+
"./blinds-2": {
|
|
7222
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7223
|
+
"svelte": "./components/b/blinds-2.svelte"
|
|
7224
|
+
},
|
|
7225
|
+
"./blinds-2-closed": {
|
|
7226
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7227
|
+
"svelte": "./components/b/blinds-2-closed.svelte"
|
|
7228
|
+
},
|
|
7229
|
+
"./blinds-2-closed-outline": {
|
|
7230
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7231
|
+
"svelte": "./components/b/blinds-2-closed-outline.svelte"
|
|
7232
|
+
},
|
|
7233
|
+
"./blinds-2-closed-outline-rounded": {
|
|
7234
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7235
|
+
"svelte": "./components/b/blinds-2-closed-outline-rounded.svelte"
|
|
7236
|
+
},
|
|
7237
|
+
"./blinds-2-closed-rounded": {
|
|
7238
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7239
|
+
"svelte": "./components/b/blinds-2-closed-rounded.svelte"
|
|
7240
|
+
},
|
|
7241
|
+
"./blinds-2-outline": {
|
|
7242
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7243
|
+
"svelte": "./components/b/blinds-2-outline.svelte"
|
|
7244
|
+
},
|
|
7245
|
+
"./blinds-2-outline-rounded": {
|
|
7246
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7247
|
+
"svelte": "./components/b/blinds-2-outline-rounded.svelte"
|
|
7248
|
+
},
|
|
7249
|
+
"./blinds-2-rounded": {
|
|
7250
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7251
|
+
"svelte": "./components/b/blinds-2-rounded.svelte"
|
|
7252
|
+
},
|
|
7221
7253
|
"./blinds-closed": {
|
|
7222
7254
|
"types": "./types/gfwqskkx.d.ts",
|
|
7223
7255
|
"svelte": "./components/b/blinds-closed.svelte"
|
|
@@ -25150,6 +25182,22 @@
|
|
|
25150
25182
|
"types": "./types/gfwqskkx.d.ts",
|
|
25151
25183
|
"svelte": "./components/g/garage-door.svelte"
|
|
25152
25184
|
},
|
|
25185
|
+
"./garage-door-open": {
|
|
25186
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25187
|
+
"svelte": "./components/g/garage-door-open.svelte"
|
|
25188
|
+
},
|
|
25189
|
+
"./garage-door-open-outline": {
|
|
25190
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25191
|
+
"svelte": "./components/g/garage-door-open-outline.svelte"
|
|
25192
|
+
},
|
|
25193
|
+
"./garage-door-open-outline-rounded": {
|
|
25194
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25195
|
+
"svelte": "./components/g/garage-door-open-outline-rounded.svelte"
|
|
25196
|
+
},
|
|
25197
|
+
"./garage-door-open-rounded": {
|
|
25198
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25199
|
+
"svelte": "./components/g/garage-door-open-rounded.svelte"
|
|
25200
|
+
},
|
|
25153
25201
|
"./garage-door-outline": {
|
|
25154
25202
|
"types": "./types/gfwqskkx.d.ts",
|
|
25155
25203
|
"svelte": "./components/g/garage-door-outline.svelte"
|
|
@@ -31078,6 +31126,22 @@
|
|
|
31078
31126
|
"types": "./types/gfwqskkx.d.ts",
|
|
31079
31127
|
"svelte": "./components/l/light-group.svelte"
|
|
31080
31128
|
},
|
|
31129
|
+
"./light-group-2": {
|
|
31130
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31131
|
+
"svelte": "./components/l/light-group-2.svelte"
|
|
31132
|
+
},
|
|
31133
|
+
"./light-group-2-outline": {
|
|
31134
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31135
|
+
"svelte": "./components/l/light-group-2-outline.svelte"
|
|
31136
|
+
},
|
|
31137
|
+
"./light-group-2-outline-rounded": {
|
|
31138
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31139
|
+
"svelte": "./components/l/light-group-2-outline-rounded.svelte"
|
|
31140
|
+
},
|
|
31141
|
+
"./light-group-2-rounded": {
|
|
31142
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31143
|
+
"svelte": "./components/l/light-group-2-rounded.svelte"
|
|
31144
|
+
},
|
|
31081
31145
|
"./light-group-outline": {
|
|
31082
31146
|
"types": "./types/gfwqskkx.d.ts",
|
|
31083
31147
|
"svelte": "./components/l/light-group-outline.svelte"
|
|
@@ -31222,6 +31286,22 @@
|
|
|
31222
31286
|
"types": "./types/gfwqskkx.d.ts",
|
|
31223
31287
|
"svelte": "./components/l/lightning-stand-rounded.svelte"
|
|
31224
31288
|
},
|
|
31289
|
+
"./lightstrip": {
|
|
31290
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31291
|
+
"svelte": "./components/l/lightstrip.svelte"
|
|
31292
|
+
},
|
|
31293
|
+
"./lightstrip-outline": {
|
|
31294
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31295
|
+
"svelte": "./components/l/lightstrip-outline.svelte"
|
|
31296
|
+
},
|
|
31297
|
+
"./lightstrip-outline-sharp": {
|
|
31298
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31299
|
+
"svelte": "./components/l/lightstrip-outline-sharp.svelte"
|
|
31300
|
+
},
|
|
31301
|
+
"./lightstrip-sharp": {
|
|
31302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
31303
|
+
"svelte": "./components/l/lightstrip-sharp.svelte"
|
|
31304
|
+
},
|
|
31225
31305
|
"./line-axis": {
|
|
31226
31306
|
"types": "./types/gfwqskkx.d.ts",
|
|
31227
31307
|
"svelte": "./components/l/line-axis.svelte"
|
|
@@ -36694,6 +36774,30 @@
|
|
|
36694
36774
|
"types": "./types/gfwqskkx.d.ts",
|
|
36695
36775
|
"svelte": "./components/m/movie-edit.svelte"
|
|
36696
36776
|
},
|
|
36777
|
+
"./movie-edit-off": {
|
|
36778
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36779
|
+
"svelte": "./components/m/movie-edit-off.svelte"
|
|
36780
|
+
},
|
|
36781
|
+
"./movie-edit-off-outline": {
|
|
36782
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36783
|
+
"svelte": "./components/m/movie-edit-off-outline.svelte"
|
|
36784
|
+
},
|
|
36785
|
+
"./movie-edit-off-outline-rounded": {
|
|
36786
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36787
|
+
"svelte": "./components/m/movie-edit-off-outline-rounded.svelte"
|
|
36788
|
+
},
|
|
36789
|
+
"./movie-edit-off-outline-sharp": {
|
|
36790
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36791
|
+
"svelte": "./components/m/movie-edit-off-outline-sharp.svelte"
|
|
36792
|
+
},
|
|
36793
|
+
"./movie-edit-off-rounded": {
|
|
36794
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36795
|
+
"svelte": "./components/m/movie-edit-off-rounded.svelte"
|
|
36796
|
+
},
|
|
36797
|
+
"./movie-edit-off-sharp": {
|
|
36798
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36799
|
+
"svelte": "./components/m/movie-edit-off-sharp.svelte"
|
|
36800
|
+
},
|
|
36697
36801
|
"./movie-edit-outline": {
|
|
36698
36802
|
"types": "./types/gfwqskkx.d.ts",
|
|
36699
36803
|
"svelte": "./components/m/movie-edit-outline.svelte"
|
|
@@ -47554,6 +47658,30 @@
|
|
|
47554
47658
|
"types": "./types/gfwqskkx.d.ts",
|
|
47555
47659
|
"svelte": "./components/s/sell.svelte"
|
|
47556
47660
|
},
|
|
47661
|
+
"./sell-cloud": {
|
|
47662
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47663
|
+
"svelte": "./components/s/sell-cloud.svelte"
|
|
47664
|
+
},
|
|
47665
|
+
"./sell-cloud-outline": {
|
|
47666
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47667
|
+
"svelte": "./components/s/sell-cloud-outline.svelte"
|
|
47668
|
+
},
|
|
47669
|
+
"./sell-cloud-outline-rounded": {
|
|
47670
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47671
|
+
"svelte": "./components/s/sell-cloud-outline-rounded.svelte"
|
|
47672
|
+
},
|
|
47673
|
+
"./sell-cloud-outline-sharp": {
|
|
47674
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47675
|
+
"svelte": "./components/s/sell-cloud-outline-sharp.svelte"
|
|
47676
|
+
},
|
|
47677
|
+
"./sell-cloud-rounded": {
|
|
47678
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47679
|
+
"svelte": "./components/s/sell-cloud-rounded.svelte"
|
|
47680
|
+
},
|
|
47681
|
+
"./sell-cloud-sharp": {
|
|
47682
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
47683
|
+
"svelte": "./components/s/sell-cloud-sharp.svelte"
|
|
47684
|
+
},
|
|
47557
47685
|
"./sell-outline": {
|
|
47558
47686
|
"types": "./types/gfwqskkx.d.ts",
|
|
47559
47687
|
"svelte": "./components/s/sell-outline.svelte"
|
|
@@ -48594,6 +48722,38 @@
|
|
|
48594
48722
|
"types": "./types/gfwqskkx.d.ts",
|
|
48595
48723
|
"svelte": "./components/s/severe-cold-rounded.svelte"
|
|
48596
48724
|
},
|
|
48725
|
+
"./shades": {
|
|
48726
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48727
|
+
"svelte": "./components/s/shades.svelte"
|
|
48728
|
+
},
|
|
48729
|
+
"./shades-closed": {
|
|
48730
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48731
|
+
"svelte": "./components/s/shades-closed.svelte"
|
|
48732
|
+
},
|
|
48733
|
+
"./shades-closed-outline": {
|
|
48734
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48735
|
+
"svelte": "./components/s/shades-closed-outline.svelte"
|
|
48736
|
+
},
|
|
48737
|
+
"./shades-closed-outline-rounded": {
|
|
48738
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48739
|
+
"svelte": "./components/s/shades-closed-outline-rounded.svelte"
|
|
48740
|
+
},
|
|
48741
|
+
"./shades-closed-rounded": {
|
|
48742
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48743
|
+
"svelte": "./components/s/shades-closed-rounded.svelte"
|
|
48744
|
+
},
|
|
48745
|
+
"./shades-outline": {
|
|
48746
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48747
|
+
"svelte": "./components/s/shades-outline.svelte"
|
|
48748
|
+
},
|
|
48749
|
+
"./shades-outline-rounded": {
|
|
48750
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48751
|
+
"svelte": "./components/s/shades-outline-rounded.svelte"
|
|
48752
|
+
},
|
|
48753
|
+
"./shades-rounded": {
|
|
48754
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
48755
|
+
"svelte": "./components/s/shades-rounded.svelte"
|
|
48756
|
+
},
|
|
48597
48757
|
"./shadow": {
|
|
48598
48758
|
"types": "./types/gfwqskkx.d.ts",
|
|
48599
48759
|
"svelte": "./components/s/shadow.svelte"
|
|
@@ -50666,6 +50826,30 @@
|
|
|
50666
50826
|
"types": "./types/gfwqskkx.d.ts",
|
|
50667
50827
|
"svelte": "./components/s/sound-sampler-rounded.svelte"
|
|
50668
50828
|
},
|
|
50829
|
+
"./soundbar": {
|
|
50830
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50831
|
+
"svelte": "./components/s/soundbar.svelte"
|
|
50832
|
+
},
|
|
50833
|
+
"./soundbar-outline": {
|
|
50834
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50835
|
+
"svelte": "./components/s/soundbar-outline.svelte"
|
|
50836
|
+
},
|
|
50837
|
+
"./soundbar-outline-rounded": {
|
|
50838
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50839
|
+
"svelte": "./components/s/soundbar-outline-rounded.svelte"
|
|
50840
|
+
},
|
|
50841
|
+
"./soundbar-outline-sharp": {
|
|
50842
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50843
|
+
"svelte": "./components/s/soundbar-outline-sharp.svelte"
|
|
50844
|
+
},
|
|
50845
|
+
"./soundbar-rounded": {
|
|
50846
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50847
|
+
"svelte": "./components/s/soundbar-rounded.svelte"
|
|
50848
|
+
},
|
|
50849
|
+
"./soundbar-sharp": {
|
|
50850
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50851
|
+
"svelte": "./components/s/soundbar-sharp.svelte"
|
|
50852
|
+
},
|
|
50669
50853
|
"./soup-kitchen": {
|
|
50670
50854
|
"types": "./types/gfwqskkx.d.ts",
|
|
50671
50855
|
"svelte": "./components/s/soup-kitchen.svelte"
|
|
@@ -50882,6 +51066,30 @@
|
|
|
50882
51066
|
"types": "./types/gfwqskkx.d.ts",
|
|
50883
51067
|
"svelte": "./components/s/speaker.svelte"
|
|
50884
51068
|
},
|
|
51069
|
+
"./speaker-2": {
|
|
51070
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51071
|
+
"svelte": "./components/s/speaker-2.svelte"
|
|
51072
|
+
},
|
|
51073
|
+
"./speaker-2-outline": {
|
|
51074
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51075
|
+
"svelte": "./components/s/speaker-2-outline.svelte"
|
|
51076
|
+
},
|
|
51077
|
+
"./speaker-2-outline-rounded": {
|
|
51078
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51079
|
+
"svelte": "./components/s/speaker-2-outline-rounded.svelte"
|
|
51080
|
+
},
|
|
51081
|
+
"./speaker-2-outline-sharp": {
|
|
51082
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51083
|
+
"svelte": "./components/s/speaker-2-outline-sharp.svelte"
|
|
51084
|
+
},
|
|
51085
|
+
"./speaker-2-rounded": {
|
|
51086
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51087
|
+
"svelte": "./components/s/speaker-2-rounded.svelte"
|
|
51088
|
+
},
|
|
51089
|
+
"./speaker-2-sharp": {
|
|
51090
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
51091
|
+
"svelte": "./components/s/speaker-2-sharp.svelte"
|
|
51092
|
+
},
|
|
50885
51093
|
"./speaker-group": {
|
|
50886
51094
|
"types": "./types/gfwqskkx.d.ts",
|
|
50887
51095
|
"svelte": "./components/s/speaker-group.svelte"
|
|
@@ -53266,6 +53474,30 @@
|
|
|
53266
53474
|
"types": "./types/gfwqskkx.d.ts",
|
|
53267
53475
|
"svelte": "./components/s/subway-walk-rounded.svelte"
|
|
53268
53476
|
},
|
|
53477
|
+
"./subwoofer": {
|
|
53478
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53479
|
+
"svelte": "./components/s/subwoofer.svelte"
|
|
53480
|
+
},
|
|
53481
|
+
"./subwoofer-outline": {
|
|
53482
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53483
|
+
"svelte": "./components/s/subwoofer-outline.svelte"
|
|
53484
|
+
},
|
|
53485
|
+
"./subwoofer-outline-rounded": {
|
|
53486
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53487
|
+
"svelte": "./components/s/subwoofer-outline-rounded.svelte"
|
|
53488
|
+
},
|
|
53489
|
+
"./subwoofer-outline-sharp": {
|
|
53490
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53491
|
+
"svelte": "./components/s/subwoofer-outline-sharp.svelte"
|
|
53492
|
+
},
|
|
53493
|
+
"./subwoofer-rounded": {
|
|
53494
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53495
|
+
"svelte": "./components/s/subwoofer-rounded.svelte"
|
|
53496
|
+
},
|
|
53497
|
+
"./subwoofer-sharp": {
|
|
53498
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
53499
|
+
"svelte": "./components/s/subwoofer-sharp.svelte"
|
|
53500
|
+
},
|
|
53269
53501
|
"./summarize": {
|
|
53270
53502
|
"types": "./types/gfwqskkx.d.ts",
|
|
53271
53503
|
"svelte": "./components/s/summarize.svelte"
|
|
@@ -53954,6 +54186,30 @@
|
|
|
53954
54186
|
"types": "./types/gfwqskkx.d.ts",
|
|
53955
54187
|
"svelte": "./components/s/switch-left-rounded.svelte"
|
|
53956
54188
|
},
|
|
54189
|
+
"./switch-off": {
|
|
54190
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54191
|
+
"svelte": "./components/s/switch-off.svelte"
|
|
54192
|
+
},
|
|
54193
|
+
"./switch-off-outline": {
|
|
54194
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54195
|
+
"svelte": "./components/s/switch-off-outline.svelte"
|
|
54196
|
+
},
|
|
54197
|
+
"./switch-off-outline-rounded": {
|
|
54198
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54199
|
+
"svelte": "./components/s/switch-off-outline-rounded.svelte"
|
|
54200
|
+
},
|
|
54201
|
+
"./switch-off-outline-sharp": {
|
|
54202
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54203
|
+
"svelte": "./components/s/switch-off-outline-sharp.svelte"
|
|
54204
|
+
},
|
|
54205
|
+
"./switch-off-rounded": {
|
|
54206
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54207
|
+
"svelte": "./components/s/switch-off-rounded.svelte"
|
|
54208
|
+
},
|
|
54209
|
+
"./switch-off-sharp": {
|
|
54210
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
54211
|
+
"svelte": "./components/s/switch-off-sharp.svelte"
|
|
54212
|
+
},
|
|
53957
54213
|
"./switch-outline": {
|
|
53958
54214
|
"types": "./types/gfwqskkx.d.ts",
|
|
53959
54215
|
"svelte": "./components/s/switch-outline.svelte"
|
|
@@ -58530,6 +58786,22 @@
|
|
|
58530
58786
|
"types": "./types/gfwqskkx.d.ts",
|
|
58531
58787
|
"svelte": "./components/v/vacuum.svelte"
|
|
58532
58788
|
},
|
|
58789
|
+
"./vacuum-2": {
|
|
58790
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58791
|
+
"svelte": "./components/v/vacuum-2.svelte"
|
|
58792
|
+
},
|
|
58793
|
+
"./vacuum-2-on": {
|
|
58794
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58795
|
+
"svelte": "./components/v/vacuum-2-on.svelte"
|
|
58796
|
+
},
|
|
58797
|
+
"./vacuum-2-on-outline": {
|
|
58798
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58799
|
+
"svelte": "./components/v/vacuum-2-on-outline.svelte"
|
|
58800
|
+
},
|
|
58801
|
+
"./vacuum-2-outline": {
|
|
58802
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
58803
|
+
"svelte": "./components/v/vacuum-2-outline.svelte"
|
|
58804
|
+
},
|
|
58533
58805
|
"./vacuum-outline": {
|
|
58534
58806
|
"types": "./types/gfwqskkx.d.ts",
|
|
58535
58807
|
"svelte": "./components/v/vacuum-outline.svelte"
|