@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="p3cfbd1q"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sell-cloud-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.p3cfbd1q) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.635 21h1.667q-.152-.213-.272-.463T7.844 20h-1.21q-.269 0-.451-.192t-.202-.462L5.975 9.133q0-.116.048-.231t.15-.212l4.512-4.517q.173-.173.423-.163t.461.182l4.483 4.518q.096.096.135.201t.038.241v2.527q.275.038.515.087q.24.05.504.134V9.166q.006-.331-.114-.633q-.12-.301-.34-.55l-4.488-4.517q-.242-.243-.543-.354T11.127 3q-.298 0-.615.121q-.318.121-.535.344L5.46 7.983q-.237.236-.348.526Q5 8.8 5 9.153v10.214q0 .701.466 1.168q.467.466 1.168.466m4.482-12.629q-.414 0-.711-.303t-.309-.716q.012-.414.309-.717q.297-.302.71-.302q.414 0 .708.302q.294.303.312.717q-.018.413-.312.716t-.707.303M12.5 21q-1.044 0-1.772-.728T10 18.5q0-1.006.72-1.73q.719-.722 1.765-.764q.361-.9 1.18-1.453q.818-.553 1.827-.553q1.185 0 2.118.682q.934.682 1.1 1.818h.25q.875 0 1.457.678T21 18.759t-.57 1.573T19 21zm0-1h6.25q.512 0 .88-.366q.37-.367.37-.884q0-.512-.37-.88t-.88-.37h-.906l-.098-.521q-.029-.846-.698-1.413q-.67-.566-1.554-.566q-.688 0-1.274.366q-.587.365-.8 1.009l-.232.625H12.5q-.638 0-1.069.441Q11 17.883 11 18.51q0 .626.431 1.058T12.5 20m3 0");
|
|
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="juzxcbcu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sell-cloud-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.juzxcbcu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.635 21h.6q.373 0 .56-.31q.186-.311.044-.66q-.131-.367-.177-.756q-.046-.39-.046-.774q0-1.579.913-2.834t2.412-1.749q.768-1.063 1.963-1.68t2.59-.616h.413q.212 0 .412.05q.373.056.65-.159t.275-.562V9.158q.006-.324-.115-.628q-.121-.305-.339-.547l-4.488-4.517q-.242-.243-.547-.354T11.127 3q-.298 0-.615.121q-.318.121-.535.344L5.46 7.983q-.237.236-.348.528T5 9.153v10.214q0 .701.466 1.168q.467.466 1.168.466m4.482-12.629q-.414 0-.711-.303t-.309-.716q.012-.414.309-.717q.297-.302.71-.302q.414 0 .708.302q.294.303.312.717q-.018.413-.312.716t-.707.303M12.5 21q-1.044 0-1.772-.728T10 18.5q0-1.008.72-1.726t1.765-.768q.361-.9 1.18-1.453q.818-.553 1.818-.553q1.194 0 2.127.682q.934.682 1.1 1.818h.25q.874 0 1.457.678T21 18.75q0 .914-.568 1.582T19 21z");
|
|
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="k_tiazbe"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sell-cloud-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.k_tiazbe) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.302 21q-.365-.546-.526-1.204q-.16-.657-.16-1.296q0-1.579.913-2.834t2.412-1.749q.768-1.063 1.963-1.68t2.59-.616q.448 0 .881.068t.87.211V8.442l-6.093-6.151L5 8.442V21zm2.814-12.629q-.414 0-.711-.303t-.309-.716q.012-.414.309-.717q.297-.302.71-.302q.414 0 .708.302q.294.303.312.717q-.018.413-.312.716t-.707.303M12.5 21q-1.044 0-1.772-.728T10 18.5q0-1.008.72-1.726t1.765-.768q.361-.9 1.18-1.453q.818-.553 1.818-.553q1.194 0 2.127.682q.934.682 1.1 1.818h.25q.874 0 1.457.678T21 18.75q0 .914-.568 1.582T19 21z");
|
|
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="pcx4a6bh"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sell-cloud" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.pcx4a6bh) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.302 21q-.365-.546-.526-1.204q-.16-.657-.16-1.296q0-1.579.913-2.834t2.412-1.749q.768-1.063 1.963-1.68t2.59-.616q.448 0 .881.068t.87.211V9.158q.005-.323-.116-.628t-.339-.547l-4.488-4.517q-.242-.243-.547-.354T11.127 3q-.298 0-.615.121q-.318.121-.535.344L5.46 7.983q-.237.236-.348.528T5 9.153v10.214q0 .701.466 1.168q.467.466 1.168.466zm2.814-12.629q-.414 0-.711-.303t-.309-.716q.012-.414.309-.717q.297-.302.71-.302q.414 0 .708.302q.294.303.312.717q-.018.413-.312.716t-.707.303M12.5 21q-1.044 0-1.772-.728T10 18.5q0-1.008.72-1.726t1.765-.768q.361-.9 1.18-1.453q.818-.553 1.818-.553q1.194 0 2.127.682q.934.682 1.1 1.818h.25q.874 0 1.457.678T21 18.75q0 .914-.568 1.582T19 21z");
|
|
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="d9ups7aw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-closed-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.d9ups7aw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.84 21.02q-.236 0-.435-.135q-.2-.133-.31-.345q-.42-.784-1.175-1.268q-.754-.483-1.69-.483q-.984 0-1.787.486q-.802.487-1.227 1.29q-.112.212-.311.333q-.2.121-.416.121h-.104q-.194 0-.309-.114t-.114-.309L3.98 4h-.506q-.194 0-.334-.143Q3 3.713 3 3.5q0-.194.143-.347Q3.287 3 3.5 3h17q.194 0 .347.153T21 3.5q0 .214-.153.357T20.5 4h-.48v16.577q0 .194-.125.318t-.318.124h-.115q-.218 0-.42-.133q-.202-.134-.313-.345q-.425-.804-1.225-1.278t-1.754-.475q-.965 0-1.727.484t-1.186 1.269q-.112.211-.302.344q-.189.134-.426.134zm-6.86-1.745q.484-.575 1.195-.954t1.537-.465V4H4.98zm3.732-1.413q.857.086 1.579.513q.72.427 1.209 1.098V4H8.711zm3.788 1.573q.483-.658 1.194-1.072t1.575-.501V4H12.5zm6.52-.135V4h-2.75v13.862q.819.086 1.53.462t1.22.976M7.711 4H4.98zM11.5 4H8.711zm3.77 0H12.5zm3.75 0h-2.75zM12.5 4h-1z");
|
|
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="te4iupks"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-closed-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.te4iupks) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.98 21.02V4H3V3h18v1h-.98v17.02h-1.068q-.344-.991-1.216-1.611q-.87-.62-1.967-.62q-1.102 0-1.941.62q-.84.62-1.184 1.61h-1.313q-.339-.99-1.171-1.61t-1.93-.62q-1.12 0-1.992.62q-.87.62-1.215 1.61zm1-1.77q.503-.575 1.208-.951t1.524-.462V4H4.98zm3.732-1.413q.863.086 1.584.513t1.204 1.104V4H8.711zM12.5 19.41q.483-.658 1.194-1.072t1.575-.501V4H12.5zm6.52-.116V4h-2.75v13.837q.824.086 1.536.472q.711.385 1.213.985M7.712 4H4.98zM11.5 4H8.711zm3.77 0H12.5zm3.75 0h-2.75zM12.5 4h-1z");
|
|
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="n4uwgnbb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-closed-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.n4uwgnbb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.84 21.02q-.236 0-.435-.135q-.2-.133-.31-.345q-.42-.784-1.175-1.268q-.754-.483-1.69-.483q-.984 0-1.787.486q-.802.487-1.227 1.29q-.112.212-.311.333q-.2.121-.416.121h-.104q-.194 0-.309-.114t-.114-.309L3.98 4h-.506q-.194 0-.334-.143Q3 3.713 3 3.5q0-.194.143-.347Q3.287 3 3.5 3h17q.194 0 .347.153T21 3.5q0 .214-.153.357T20.5 4h-.48v16.577q0 .194-.125.318t-.318.124h-.115q-.218 0-.42-.133q-.202-.134-.313-.345q-.425-.804-1.225-1.278t-1.754-.475q-.965 0-1.727.484t-1.186 1.269q-.112.211-.302.344q-.189.134-.426.134zM12.5 4h-1v13.862h1z");
|
|
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="m931pkb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-closed" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.m931pkb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.98 21.02V4H3V3h18v1h-.98v17.02h-1.068q-.344-.991-1.216-1.611q-.87-.62-1.967-.62q-1.102 0-1.941.62q-.84.62-1.184 1.61h-1.313q-.339-.99-1.171-1.61t-1.93-.62q-1.12 0-1.992.62q-.87.62-1.215 1.61zM12.5 4h-1v13.837h1z");
|
|
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="mjsrx_zk"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.mjsrx_zk) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.79 20.98q-.348 0-.569-.201Q4 20.577 4 20.134V4h-.5q-.213 0-.357-.143T3 3.5t.143-.357T3.5 3h17q.214 0 .357.143T21 3.5t-.143.357T20.5 4H20v16.135q-.025.442-.246.644t-.57.202q-1.694 0-3.1-1.468q-1.405-1.467-1.694-3.013H9.585q-.289 1.546-1.695 3.014q-1.405 1.467-3.1 1.467M5 19.908q1.58-.35 2.656-1.562Q8.73 17.135 8.73 15.5V4H5zM9.73 15.5h4.54V4H9.73zM19 19.889V4h-3.73v11.5q0 1.616 1.059 2.83q1.06 1.214 2.671 1.559M8.73 4H5zM19 4h-3.73z");
|
|
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="ee0uxuby"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ee0uxuby) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4 20.98V4H3V3h18v1h-1v17q-2.061 0-3.655-1.24t-1.954-3.26H9.584q-.368 2-1.958 3.24T4 20.98m1-1.072q1.58-.35 2.656-1.562Q8.73 17.135 8.73 15.5V4H5zM9.73 15.5h4.54V4H9.73zM19 19.889V4h-3.73v11.5q0 1.616 1.059 2.83q1.06 1.214 2.671 1.559M8.73 4H5zM19 4h-3.73z");
|
|
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="mwm1n0bz"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.mwm1n0bz) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.79 20.98q-.348 0-.569-.201Q4 20.577 4 20.134V4h-.5q-.213 0-.357-.143T3 3.5t.143-.357T3.5 3h17q.214 0 .357.143T21 3.5t-.143.357T20.5 4H20v16.135q-.025.442-.246.644t-.57.202q-1.694 0-3.1-1.468q-1.405-1.467-1.694-3.013H9.585q-.289 1.546-1.695 3.014q-1.405 1.467-3.1 1.467M9.73 15.5h4.54V3.98H9.73z");
|
|
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="u1e94tb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:shades" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.u1e94tb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4 20.98V4H3V3h18v1h-1v17q-2.061 0-3.655-1.24t-1.954-3.26H9.584q-.368 2-1.958 3.24T4 20.98m5.73-5.48h4.54V4H9.73z");
|
|
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="dl2py4bt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.dl2py4bt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.643 9.836q-.143.144-.143.356v1.904q0 .204.144.343t.357.138t.356-.144t.143-.356v-1.885q0-.212-.144-.356t-.357-.144t-.356.144m-2.787 8.02Q8.713 18 8.5 18H6.27q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H8.5q.213 0 .356.144t.144.357t-.144.356m9.231 0q-.144.143-.356.143h-2.25q-.204 0-.343-.144T15 17.499t.144-.356T15.5 17h2.23q.213 0 .357.144t.144.357t-.144.356m-10.818-5.28q.614 0 1.028-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462zm0-1h14.77q.269 0 .442-.173t.173-.442V8.616q0-.27-.173-.443T19.385 8H4.615q-.269 0-.442.173T4 8.616v5.038q0 .269.173.442t.443.173M12 11.135");
|
|
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="lxwfhhes"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lxwfhhes) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M3 15.27V7h18v8.27zm1-1h16V8H4zm8-3.135");
|
|
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="e--6l4ft"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.e--6l4ft) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462zm0-1h14.77q.269 0 .442-.173t.173-.442V8.616q0-.27-.173-.443T19.385 8H4.615q-.269 0-.442.173T4 8.616v5.038q0 .269.173.442t.443.173M12 11.135");
|
|
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="tq_wzwbo"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.tq_wzwbo) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.643 9.836q-.143.144-.143.356v1.904q0 .204.144.343t.357.138t.356-.144t.143-.356v-1.885q0-.212-.144-.356t-.357-.144t-.356.144m-2.787 8.02Q8.713 18 8.5 18H6.27q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H8.5q.213 0 .356.144t.144.357t-.144.356m9.231 0q-.144.143-.356.143h-2.25q-.204 0-.343-.144T15 17.499t.144-.356T15.5 17h2.23q.213 0 .357.144t.144.357t-.144.356m-10.818-5.28q.614 0 1.028-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462z");
|
|
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="bxa6qx0e"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bxa6qx0e) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M3 15.27V7h18v8.27z");
|
|
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="r9pgotby"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:soundbar" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.r9pgotby) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462z");
|
|
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="dsds1vfe"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.dsds1vfe) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.616 17.366h8.769q.269 0 .442-.174q.173-.173.173-.442V4.616q0-.27-.173-.443T16.385 4h-8.77q-.269 0-.442.173T7 4.616V16.75q0 .27.173.442q.173.174.443.174M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M8.827 21q-.213 0-.357-.143t-.143-.357q0-.208.16-.322q.161-.114.34-.178h.423q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.404q.213 0 .357.143t.143.357t-.143.357t-.357.143zM12 9.173");
|
|
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="wgtphacj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wgtphacj) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7 17.366h10V4H7zm5-4.962q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.928 0-1.589-.655t-.661-1.58t.661-1.586T12 6.923t1.589.66t.661 1.585t-.661 1.581t-1.589.655m0 4.154q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H6V3h12v15.366h-5.379q.218.719.794 1.176T14.75 20h.904zM12 9.173");
|
|
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="wql634bg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wql634bg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.616 17.366h8.769q.269 0 .442-.174q.173-.173.173-.442V4.616q0-.27-.173-.443T16.385 4h-8.77q-.269 0-.442.173T7 4.616V16.75q0 .27.173.442q.173.174.443.174M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.904zM12 9.173");
|
|
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="fdc-onkr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.fdc-onkr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M8.827 21q-.213 0-.357-.143t-.143-.357q0-.208.16-.322q.161-.114.34-.178h.423q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.404q.213 0 .357.143t.143.357t-.143.357t-.357.143z");
|
|
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="g3iykbbh"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.g3iykbbh) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.928 0-1.589-.655t-.661-1.58t.661-1.586T12 6.923t1.589.66t.661 1.585t-.661 1.581t-1.589.655m0 4.154q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H6V3h12v15.366h-5.379q.218.719.794 1.176T14.75 20h.904z");
|
|
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="grga7wbi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.grga7wbi) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.904z");
|
|
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="vuy0_shx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.vuy0_shx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.308 21.5H6q-.213 0-.356-.144t-.144-.357t.144-.356T6 20.5h3.308q.212 0 .356.144t.144.357t-.144.356t-.356.143m8.692 0h-3.308q-.212 0-.356-.144t-.144-.357t.144-.356t.356-.143H18q.213 0 .356.144t.144.357t-.144.356T18 21.5M5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zm.11-1h11.82q.29 0 .462-.221t.135-.49l-2.07-12.77q-.038-.23-.211-.375Q16.05 4 15.819 4H8.156q-.231 0-.394.144t-.202.375L5.47 17.29q-.038.269.145.49q.182.221.47.221M12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
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="a02zlobx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.a02zlobx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zm-10-2.5L6.796 3h10.416l2.596 16zm1.164-1h13.263L16.34 4H7.637zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
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="sldababb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.sldababb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zM5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zm.11-1h11.82q.29 0 .462-.221t.135-.49l-2.07-12.77q-.038-.23-.211-.375Q16.05 4 15.819 4H8.156q-.231 0-.394.144t-.202.375L5.47 17.29q-.038.269.145.49q.182.221.47.221M12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
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="g4vqa2vk"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.g4vqa2vk) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.308 21.5H6q-.213 0-.356-.144t-.144-.357t.144-.356T6 20.5h3.308q.212 0 .356.144t.144.357t-.144.356t-.356.143m8.692 0h-3.308q-.212 0-.356-.144t-.144-.357t.144-.356t.356-.143H18q.213 0 .356.144t.144.357t-.144.356T18 21.5M5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
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="os0t5xby"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.os0t5xby) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zm-10-2.5L6.796 3h10.416l2.596 16zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
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="bhhffllb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:subwoofer" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bhhffllb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zM5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
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="uz8yy7ba"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.uz8yy7ba) {
|
|
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-.02 1H6.596q-.269 0-.442.173t-.173.443v14.769q0 .269.173.442t.442.173h10.789q.269 0 .452-.173q.182-.173.182-.443L18 4.616q0-.27-.173-.443T17.385 4M14.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 8.75q-.29 0-.484.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m0-12.288q-.29 0-.483.19t-.193.48t.19.493t.48.203t.483-.203t.193-.493t-.19-.48t-.48-.19M12 12");
|
|
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="r9l4q2nd"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.r9l4q2nd) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.98 21V3H19v18zm1-1H18V4H5.98zm2.732-3.73h6.577V7.711H8.71zm5.577-7.558v4.672H9.712V8.712zM11.98 18.807q.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.2m0-12.288q.293 0 .483-.2q.19-.202.19-.47q0-.29-.188-.483q-.19-.193-.479-.193q-.267 0-.472.193q-.206.193-.206.488q0 .273.202.469t.47.196m0 5.481");
|
|
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="kms9x3br"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:switch-off-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.kms9x3br) {
|
|
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-.02 1H6.596q-.269 0-.442.173t-.173.443v14.769q0 .269.173.442t.442.173h10.789q.269 0 .452-.173q.182-.173.182-.443L18 4.616q0-.27-.173-.443T17.385 4m-2.077 3.712H8.73v8.557h6.577zm-1 1v4.673H9.73V8.71zM12 17.462q-.286 0-.48.193t-.193.48t.193.48t.48.193t.48-.194t.193-.48q0-.286-.193-.48t-.48-.192m0-12.289q-.287 0-.48.193t-.193.48t.193.49t.48.202t.48-.203t.193-.489t-.193-.48t-.48-.193M12 12");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|