@iconify-svelte/material-symbols-light 1.0.51 → 1.0.52
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/d/device-swoosh-star-outline-rounded.svelte +17 -0
- package/components/d/device-swoosh-star-outline-sharp.svelte +17 -0
- package/components/d/device-swoosh-star-outline.svelte +17 -0
- package/components/d/device-swoosh-star-rounded.svelte +17 -0
- package/components/d/device-swoosh-star-sharp.svelte +17 -0
- package/components/d/device-swoosh-star.svelte +17 -0
- package/components/m/mobile-tap-outline-rounded.svelte +17 -0
- package/components/m/mobile-tap-outline-sharp.svelte +17 -0
- package/components/m/mobile-tap-outline.svelte +17 -0
- package/components/m/mobile-tap-rounded.svelte +17 -0
- package/components/m/mobile-tap-sharp.svelte +17 -0
- package/components/m/mobile-tap.svelte +17 -0
- package/components/p/people-size-decrease-outline-rounded.svelte +17 -0
- package/components/p/people-size-decrease-outline-sharp.svelte +17 -0
- package/components/p/people-size-decrease-outline.svelte +17 -0
- package/components/p/people-size-decrease-rounded.svelte +17 -0
- package/components/p/people-size-decrease-sharp.svelte +17 -0
- package/components/p/people-size-decrease.svelte +17 -0
- package/components/p/people-size-increase-outline-rounded.svelte +17 -0
- package/components/p/people-size-increase-outline-sharp.svelte +17 -0
- package/components/p/people-size-increase-outline.svelte +17 -0
- package/components/p/people-size-increase-rounded.svelte +17 -0
- package/components/p/people-size-increase-sharp.svelte +17 -0
- package/components/p/people-size-increase.svelte +17 -0
- package/components/s/spatial-gallery-outline-rounded.svelte +17 -0
- package/components/s/spatial-gallery-outline-sharp.svelte +17 -0
- package/components/s/spatial-gallery-outline.svelte +17 -0
- package/components/s/spatial-gallery-rounded.svelte +17 -0
- package/components/s/spatial-gallery-sharp.svelte +17 -0
- package/components/s/spatial-gallery.svelte +17 -0
- package/components/s/speaker-3-outline-rounded.svelte +17 -0
- package/components/s/speaker-3-outline-sharp.svelte +17 -0
- package/components/s/speaker-3-outline.svelte +17 -0
- package/components/s/speaker-3-rounded.svelte +17 -0
- package/components/s/speaker-3-sharp.svelte +17 -0
- package/components/s/speaker-3.svelte +17 -0
- package/components/t/target-check-outline-rounded.svelte +17 -0
- package/components/t/target-check-outline-sharp.svelte +17 -0
- package/components/t/target-check-outline.svelte +17 -0
- package/components/t/target-check-rounded.svelte +17 -0
- package/components/t/target-check-sharp.svelte +17 -0
- package/components/t/target-check.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +169 -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="qcl54aczg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.qcl54aczg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M14.674 20H9.308q-.962 0-1.74-.486q-.78-.485-1.191-1.278q.244-.078.473-.176q.229-.096.467-.206q.302.517.822.832q.519.314 1.169.314h5.365q.96 0 1.643-.674q.684-.674.684-1.634v-4.378h1v4.378q0 1.381-.973 2.345q-.973.963-2.354.963M4.262 16.316q-.585 0-.901-.295q-.317-.294-.317-.873q0-1.265.908-2.854Q4.86 10.706 6 9.392V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.448v1H9.308q-.96 0-1.634.684Q7 6.367 7 7.327v7.096q.289-.154.567-.317q.28-.164.548-.337q1.473-.892 2.844-1.953q1.372-1.06 2.664-2.197q.148-.111.288-.083t.225.139t.084.273q-.003.162-.164.318q-1.602 1.425-3.419 2.814T7 15.467q-.587.321-1.329.585t-1.41.264m-.05-1.047q.462-.019.904-.119q.443-.1.885-.275v-3.667q-.685.76-1.24 1.88t-.549 2.181");
|
|
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="qcl54aczg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.qcl54aczg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M14.674 20H9.308q-.962 0-1.74-.486q-.78-.485-1.191-1.278q.244-.078.473-.176q.229-.096.467-.206q.302.517.822.832q.519.314 1.169.314h5.365q.96 0 1.643-.674q.684-.674.684-1.634v-4.378h1v4.378q0 1.381-.973 2.345q-.973.963-2.354.963M4.262 16.316q-.585 0-.901-.295q-.317-.294-.317-.873q0-1.265.908-2.854Q4.86 10.706 6 9.392V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.448v1H9.308q-.96 0-1.634.684Q7 6.367 7 7.327v7.096q.289-.154.567-.317q.28-.164.548-.337q1.473-.892 2.844-1.953q1.372-1.06 2.664-2.197q.148-.111.288-.083t.225.139t.084.273q-.003.162-.164.318q-1.602 1.425-3.419 2.814T7 15.467q-.587.321-1.329.585t-1.41.264m-.05-1.047q.462-.019.904-.119q.443-.1.885-.275v-3.667q-.685.76-1.24 1.88t-.549 2.181");
|
|
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="qcl54aczg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.qcl54aczg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M14.674 20H9.308q-.962 0-1.74-.486q-.78-.485-1.191-1.278q.244-.078.473-.176q.229-.096.467-.206q.302.517.822.832q.519.314 1.169.314h5.365q.96 0 1.643-.674q.684-.674.684-1.634v-4.378h1v4.378q0 1.381-.973 2.345q-.973.963-2.354.963M4.262 16.316q-.585 0-.901-.295q-.317-.294-.317-.873q0-1.265.908-2.854Q4.86 10.706 6 9.392V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.448v1H9.308q-.96 0-1.634.684Q7 6.367 7 7.327v7.096q.289-.154.567-.317q.28-.164.548-.337q1.473-.892 2.844-1.953q1.372-1.06 2.664-2.197q.148-.111.288-.083t.225.139t.084.273q-.003.162-.164.318q-1.602 1.425-3.419 2.814T7 15.467q-.587.321-1.329.585t-1.41.264m-.05-1.047q.462-.019.904-.119q.443-.1.885-.275v-3.667q-.685.76-1.24 1.88t-.549 2.181");
|
|
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="gly912qwt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.gly912qwt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M4.262 16.34q-.584 0-.913-.305q-.329-.303-.329-.882q0-1.252.91-2.84q.912-1.588 2.07-2.901V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.654q-.16.466-.215.917q-.055.452-.055.91q0 1.404.546 2.621q.545 1.218 1.499 2.098q-1.02.887-1.933 1.631t-1.75 1.35q-.835.606-1.616 1.116t-1.582.93q-.552.298-1.26.533q-.708.234-1.335.234M9.308 20q-.967 0-1.743-.476t-1.188-1.263q.36-.136.704-.281t.717-.332q.9-.436 1.806-.996t1.879-1.256t2.04-1.569t2.302-1.95q.527.217 1.072.31q.545.094 1.103.12v4.385q0 1.381-.973 2.345q-.973.963-2.354.963zm-5.096-4.73q.461-.02.904-.12q.442-.1.884-.275v-3.667q-.684.76-1.24 1.88q-.554 1.12-.548 2.181");
|
|
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="gly912qwt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.gly912qwt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M4.262 16.34q-.584 0-.913-.305q-.329-.303-.329-.882q0-1.252.91-2.84q.912-1.588 2.07-2.901V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.654q-.16.466-.215.917q-.055.452-.055.91q0 1.404.546 2.621q.545 1.218 1.499 2.098q-1.02.887-1.933 1.631t-1.75 1.35q-.835.606-1.616 1.116t-1.582.93q-.552.298-1.26.533q-.708.234-1.335.234M9.308 20q-.967 0-1.743-.476t-1.188-1.263q.36-.136.704-.281t.717-.332q.9-.436 1.806-.996t1.879-1.256t2.04-1.569t2.302-1.95q.527.217 1.072.31q.545.094 1.103.12v4.385q0 1.381-.973 2.345q-.973.963-2.354.963zm-5.096-4.73q.461-.02.904-.12q.442-.1.884-.275v-3.667q-.684.76-1.24 1.88q-.554 1.12-.548 2.181");
|
|
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="gly912qwt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:device-swoosh-star" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.gly912qwt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.712 7.879l-1.466.758q-.217.13-.429-.028q-.211-.159-.161-.401l.292-1.596q.025-.106-.022-.202t-.109-.152L14.625 5.12q-.186-.187-.099-.407q.088-.22.336-.27l1.632-.242q.043-.006.318-.217l.738-1.46q.13-.217.376-.217t.351.217l.733 1.46q.025.056.298.217l1.646.242q.248.05.329.27q.08.22-.106.407l-1.173 1.137q-.012.011-.131.354l.273 1.596q.05.242-.155.4q-.204.16-.422.029l-1.478-.758q-.031-.025-.38 0M4.262 16.34q-.584 0-.913-.305q-.329-.303-.329-.882q0-1.252.91-2.84q.912-1.588 2.07-2.901V7.327q0-1.38.964-2.354Q7.927 4 9.308 4h2.654q-.16.466-.215.917q-.055.452-.055.91q0 1.404.546 2.621q.545 1.218 1.499 2.098q-1.02.887-1.933 1.631t-1.75 1.35q-.835.606-1.616 1.116t-1.582.93q-.552.298-1.26.533q-.708.234-1.335.234M9.308 20q-.967 0-1.743-.476t-1.188-1.263q.36-.136.704-.281t.717-.332q.9-.436 1.806-.996t1.879-1.256t2.04-1.569t2.302-1.95q.527.217 1.072.31q.545.094 1.103.12v4.385q0 1.381-.973 2.345q-.973.963-2.354.963zm-5.096-4.73q.461-.02.904-.12q.442-.1.884-.275v-3.667q-.684.76-1.24 1.88q-.554 1.12-.548 2.181");
|
|
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="wctzljbyc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wctzljbyc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.558 3H20zM4.414 6.339q-.304.628-.372 1.351q-.042.189-.192.326t-.35.138q-.214 0-.354-.14t-.129-.324q.074-.93.463-1.745q.39-.814 1.02-1.445t1.445-1.02t1.745-.463q.183-.011.323.13q.14.14.14.357q0 .204-.137.35t-.325.188q-.724.068-1.352.372q-.63.303-1.125.8q-.497.495-.8 1.124m.202 4.22h7.211q.666 0 1.14.474t.475 1.141V20.5q0 .213-.144.356q-.143.144-.356.144t-.356-.144t-.144-.356v-8.327q0-.27-.173-.442t-.442-.173H4.616q-.27 0-.443.173T4 12.173V20.5q0 .213-.144.356T3.499 21t-.356-.144T3 20.5v-8.327q0-.666.475-1.14t1.14-.475m3.54-2.808q0 .162-.121.283t-.283.12h-.673q-.154 0-.27-.12q-.115-.121-.07-.261q.111-.349.358-.608q.247-.26.574-.391q.187-.056.336.064t.149.34zm.578 6.656q.21-.21.21-.52t-.21-.521t-.52-.211t-.52.21t-.211.52t.21.52q.21.212.52.212t.52-.21m1.97-6.396q-.143-.144-.143-.356V3.5q0-.213.144-.356q.143-.144.356-.144t.356.144t.144.356v4.154q0 .212-.144.356t-.357.144t-.356-.144M19.5 19.5q-.63.63-1.445 1.02t-1.746.463q-.182.011-.323-.13q-.14-.14-.14-.357q0-.204.138-.35q.137-.146.325-.188q.724-.068 1.352-.372q.63-.303 1.125-.8q.497-.496.8-1.125q.305-.628.372-1.352q.042-.188.192-.325t.35-.138q.214 0 .354.14t.129.323q-.073.931-.463 1.746q-.39.814-1.02 1.445m-3.272-2.237q-.14.045-.26-.07q-.122-.116-.122-.27v-.673q0-.161.121-.283q.122-.12.283-.12h.573q.202 0 .328.15q.126.152.076.334q-.13.327-.39.574t-.609.358m3.157-3.82h-3.039q-.212 0-.356-.145q-.144-.143-.144-.356t.144-.356t.356-.144h3.039q.269 0 .442-.173t.173-.442V3.5q0-.213.144-.356T20.501 3t.356.144T21 3.5v8.327q0 .666-.475 1.14t-1.14.475M12.442 21H4z");
|
|
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="u-xdmc_mu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.u-xdmc_mu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.558 3H20zM3 8.154Q3 6.019 4.51 4.51T8.154 3v1q-1.727 0-2.94 1.214T4 8.153zM3 21V10.558h10.442V21h-1v-9.442H4V21zM6.692 8.154q0-.614.424-1.038q.425-.424 1.038-.424v1.462zm2.04 6.251q.21-.21.21-.52t-.21-.52t-.52-.211t-.52.21t-.211.52t.21.52t.52.212t.52-.21m1.827-6.252V3h1v5.154zM15.846 21v-1q1.727 0 2.94-1.213T20 15.847h1q0 2.134-1.51 3.644Q17.98 21 15.847 21m0-3.692v-1.462h1.462q0 .613-.424 1.038q-.424.424-1.038.424m0-3.866v-1H20V3h1v10.442zM12.442 21H4z");
|
|
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="h-492-b4x"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.h-492-b4x) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.558 3H20zM3 8.154Q3 6.019 4.51 4.51T8.154 3v1q-1.727 0-2.94 1.214T4 8.153zM3 21v-8.827q0-.666.475-1.14t1.14-.475h7.212q.666 0 1.14.474t.475 1.141V21h-1v-8.827q0-.27-.173-.442t-.442-.173H4.616q-.27 0-.443.173T4 12.173V21zM6.692 8.154q0-.614.424-1.038q.425-.424 1.038-.424v1.462zm2.04 6.251q.21-.21.21-.52t-.21-.52t-.52-.211t-.52.21t-.211.52t.21.52t.52.212t.52-.21m1.827-6.252V3h1v5.154zM15.846 21v-1q1.727 0 2.94-1.213T20 15.847h1q0 2.134-1.51 3.644Q17.98 21 15.847 21m0-3.692v-1.462h1.462q0 .613-.424 1.038q-.424.424-1.038.424m0-3.866v-1h3.539q.269 0 .442-.173t.173-.442V3h1v8.827q0 .666-.475 1.14t-1.14.475zM12.442 21H4z");
|
|
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="ilw00_r0t"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ilw00_r0t) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.5 21q-.213 0-.356-.144T3 20.5v-8.327q0-.666.475-1.14t1.14-.475h7.212q.666 0 1.14.474t.475 1.141V20.5q0 .213-.143.356t-.357.144zm0-12.846q-.214 0-.354-.14t-.129-.324Q3.183 5.817 4.5 4.5t3.19-1.483q.183-.011.323.13q.14.14.14.357q0 .204-.137.35t-.325.188q-1.452.16-2.47 1.178t-1.18 2.47q-.041.19-.191.327t-.35.138m3.577 0q-.154 0-.27-.121q-.115-.122-.07-.261q.111-.349.358-.609t.574-.39q.187-.056.336.064t.149.34v.573q0 .162-.121.283t-.283.12zm1.655 6.251q.21-.21.21-.52t-.21-.52t-.52-.211t-.52.21t-.211.52t.21.52t.52.212t.52-.21m7.615-.964q-.212 0-.356-.144t-.144-.356v-.5q0-1.784-1.252-3.036t-3.036-1.252h-.5q-.213 0-.356-.144t-.144-.356V3.5q0-.213.144-.356T11.058 3H20.5q.213 0 .356.144T21 3.5v8.327q0 .666-.475 1.14t-1.14.475zm-.036 7.54q-.183.012-.323-.128t-.14-.358q0-.204.137-.35t.325-.188q1.452-.16 2.47-1.178t1.179-2.47q.042-.189.192-.326t.35-.138q.214 0 .354.14t.129.323q-.166 1.874-1.483 3.191t-3.19 1.483m-.082-3.72q-.14.045-.26-.07q-.122-.116-.122-.27v-.673q0-.161.121-.283q.122-.12.283-.12h.573q.202 0 .328.15q.126.152.076.334q-.13.327-.39.574t-.609.358");
|
|
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="joq97bfog"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.joq97bfog) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 21V10.558h10.442V21zM3 8.154q0-2.135 1.503-3.645Q6.006 3 8.153 3v1Q6.422 4 5.21 5.22Q4 6.44 4 8.154zm3.692 0q0-.603.42-1.032t1.042-.43v1.462zm1.519 6.462q.31 0 .52-.21t.211-.52t-.21-.521t-.52-.211t-.52.21t-.211.52t.21.52q.21.212.52.212m7.635-1.174V8.154h-5.288V3H21v10.442zm0 7.558v-1q1.713 0 2.934-1.207T20 15.846h1Q21 18 19.49 19.5T15.847 21m0-3.692v-1.462h1.462q0 .62-.43 1.04q-.429.422-1.032.422");
|
|
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="ba4dfgs-k"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:mobile-tap" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ba4dfgs-k) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 21v-8.827q0-.666.464-1.14q.465-.475 1.152-.475h7.211q.666 0 1.14.474t.475 1.141V21zM3 8.154q0-2.135 1.503-3.645Q6.006 3 8.153 3v1Q6.422 4 5.21 5.22Q4 6.44 4 8.154zm3.692 0q0-.603.42-1.032t1.042-.43v1.462zm1.519 6.462q.31 0 .52-.21t.211-.52t-.21-.521t-.52-.211t-.52.21t-.211.52t.21.52q.21.212.52.212M15.846 21v-1q1.714 0 2.934-1.207T20 15.846h1Q21 18 19.49 19.5T15.847 21m0-3.692v-1.462h1.462q0 .62-.43 1.04q-.429.422-1.032.422m-5.288-9.135V3H21v8.827q0 .687-.475 1.151q-.474.464-1.14.464h-3.558v-1.269q0-1.65-1.175-2.825t-2.825-1.175z");
|
|
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="kydtm9mst"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.kydtm9mst) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.595 8.716q.467.08.784.261q.317.18.488.422q.172.24.172.555v3.255q0 .35-.233.58q-.232.23-.575.23h-.596v3.865q0 .465-.327.79q-.327.326-.793.326q-.467 0-.789-.325q-.322-.326-.322-.79v-3.866h-.596q-.344 0-.576-.232T3 13.212V9.947q0-.31.171-.55t.489-.42t.787-.261t1.076-.081t1.072.08m-1.072-1.08q-.556 0-.953-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.388m6.934 1.827q-.466 0-.789-.313q-.322-.312-.322-.783t.327-.784t.793-.313t.789.313t.322.784t-.327.783t-.793.313m6.466 1.423q-.371 0-.628-.251t-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.619t-.628.247m-6.466-.423q.54 0 .972.078q.432.077.721.233t.434.372q.147.216.147.505v2.475q0 .339-.233.568t-.575.23h-.577v3.192q0 .372-.256.628t-.628.257t-.628-.256t-.257-.628v-3.193h-.596q-.343 0-.576-.23t-.232-.568V11.65q0-.288.146-.505q.147-.216.437-.372t.726-.233t.975-.078m6.466 1.365q.494 0 .875.075t.648.212t.401.338t.134.458v2.129q0 .343-.233.575t-.575.232h-.596v2.5q0 .278-.187.466q-.186.188-.462.188t-.468-.188t-.19-.466v-2.5h-.597q-.343 0-.575-.232q-.233-.232-.233-.575v-2.13q0-.255.134-.457t.401-.338t.649-.212t.874-.075");
|
|
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="t80bxbbhw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.t80bxbbhw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.404 19v-4.98H3V9.944q0-.308.171-.548t.489-.42t.787-.261t1.076-.081t1.072.08t.784.262q.317.18.488.422q.172.24.172.555v4.065H6.635V19zm1.12-11.365q-.557 0-.954-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.387m6.934 1.827q-.466 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313q.322.312.322.783t-.327.784q-.326.312-.793.312m6.466 1.423q-.371 0-.628-.25q-.257-.251-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.618t-.628.247M11.577 19v-4.077h-1.404V11.65q0-.288.146-.505q.146-.216.437-.372q.29-.156.726-.233t.975-.078q.54 0 .972.078q.433.077.721.233t.435.372q.146.217.146.505v3.273h-1.385V19zm6.692 0v-3.154h-1.403V12.91q0-.256.133-.458q.134-.202.401-.338t.649-.212t.874-.075t.875.075t.648.212t.401.338t.134.458v2.936h-1.404V19z");
|
|
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="t80bxbbhw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.t80bxbbhw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.404 19v-4.98H3V9.944q0-.308.171-.548t.489-.42t.787-.261t1.076-.081t1.072.08t.784.262q.317.18.488.422q.172.24.172.555v4.065H6.635V19zm1.12-11.365q-.557 0-.954-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.387m6.934 1.827q-.466 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313q.322.312.322.783t-.327.784q-.326.312-.793.312m6.466 1.423q-.371 0-.628-.25q-.257-.251-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.618t-.628.247M11.577 19v-4.077h-1.404V11.65q0-.288.146-.505q.146-.216.437-.372q.29-.156.726-.233t.975-.078q.54 0 .972.078q.433.077.721.233t.435.372q.146.217.146.505v3.273h-1.385V19zm6.692 0v-3.154h-1.403V12.91q0-.256.133-.458q.134-.202.401-.338t.649-.212t.874-.075t.875.075t.648.212t.401.338t.134.458v2.936h-1.404V19z");
|
|
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="kydtm9mst"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.kydtm9mst) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.595 8.716q.467.08.784.261q.317.18.488.422q.172.24.172.555v3.255q0 .35-.233.58q-.232.23-.575.23h-.596v3.865q0 .465-.327.79q-.327.326-.793.326q-.467 0-.789-.325q-.322-.326-.322-.79v-3.866h-.596q-.344 0-.576-.232T3 13.212V9.947q0-.31.171-.55t.489-.42t.787-.261t1.076-.081t1.072.08m-1.072-1.08q-.556 0-.953-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.388m6.934 1.827q-.466 0-.789-.313q-.322-.312-.322-.783t.327-.784t.793-.313t.789.313t.322.784t-.327.783t-.793.313m6.466 1.423q-.371 0-.628-.251t-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.619t-.628.247m-6.466-.423q.54 0 .972.078q.432.077.721.233t.434.372q.147.216.147.505v2.475q0 .339-.233.568t-.575.23h-.577v3.192q0 .372-.256.628t-.628.257t-.628-.256t-.257-.628v-3.193h-.596q-.343 0-.576-.23t-.232-.568V11.65q0-.288.146-.505q.147-.216.437-.372t.726-.233t.975-.078m6.466 1.365q.494 0 .875.075t.648.212t.401.338t.134.458v2.129q0 .343-.233.575t-.575.232h-.596v2.5q0 .278-.187.466q-.186.188-.462.188t-.468-.188t-.19-.466v-2.5h-.597q-.343 0-.575-.232q-.233-.232-.233-.575v-2.13q0-.255.134-.457t.401-.338t.649-.212t.874-.075");
|
|
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="t80bxbbhw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.t80bxbbhw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.404 19v-4.98H3V9.944q0-.308.171-.548t.489-.42t.787-.261t1.076-.081t1.072.08t.784.262q.317.18.488.422q.172.24.172.555v4.065H6.635V19zm1.12-11.365q-.557 0-.954-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.387m6.934 1.827q-.466 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313q.322.312.322.783t-.327.784q-.326.312-.793.312m6.466 1.423q-.371 0-.628-.25q-.257-.251-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.618t-.628.247M11.577 19v-4.077h-1.404V11.65q0-.288.146-.505q.146-.216.437-.372q.29-.156.726-.233t.975-.078q.54 0 .972.078q.433.077.721.233t.435.372q.146.217.146.505v3.273h-1.385V19zm6.692 0v-3.154h-1.403V12.91q0-.256.133-.458q.134-.202.401-.338t.649-.212t.874-.075t.875.075t.648.212t.401.338t.134.458v2.936h-1.404V19z");
|
|
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="t80bxbbhw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-decrease" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.t80bxbbhw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.404 19v-4.98H3V9.944q0-.308.171-.548t.489-.42t.787-.261t1.076-.081t1.072.08t.784.262q.317.18.488.422q.172.24.172.555v4.065H6.635V19zm1.12-11.365q-.557 0-.954-.39q-.397-.389-.397-.939t.393-.938t.95-.387t.952.389q.398.389.398.94t-.394.937t-.949.387m6.934 1.827q-.466 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313q.322.312.322.783t-.327.784q-.326.312-.793.312m6.466 1.423q-.371 0-.628-.25q-.257-.251-.257-.615t.257-.614t.628-.251t.628.247t.257.618t-.257.618t-.628.247M11.577 19v-4.077h-1.404V11.65q0-.288.146-.505q.146-.216.437-.372q.29-.156.726-.233t.975-.078q.54 0 .972.078q.433.077.721.233t.435.372q.146.217.146.505v3.273h-1.385V19zm6.692 0v-3.154h-1.403V12.91q0-.256.133-.458q.134-.202.401-.338t.649-.212t.874-.075t.875.075t.648.212t.401.338t.134.458v2.936h-1.404V19z");
|
|
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="wpav6mhtr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wpav6mhtr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19.538 8.716q.466.08.783.261q.318.18.489.422q.17.24.17.555v3.255q0 .35-.231.58q-.233.23-.576.23h-.596v3.865q0 .465-.327.79q-.326.326-.793.326q-.466 0-.789-.325q-.322-.326-.322-.79v-3.866h-.596q-.343 0-.575-.232t-.233-.576V9.946q0-.31.171-.549t.489-.42t.787-.262t1.076-.08t1.072.08m-1.072-1.08q-.556 0-.953-.39t-.397-.939t.394-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25m6.46-.423q.536 0 .974.078q.439.078.731.234q.293.156.439.372t.146.505v2.475q0 .339-.232.568t-.576.23h-.596v3.193q0 .371-.256.628q-.257.256-.628.256t-.629-.256t-.256-.628v-3.193h-.577q-.343 0-.576-.23t-.232-.568V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078m-6.461 1.365q.494 0 .875.075t.648.212t.4.338t.134.458v2.129q0 .343-.232.575t-.575.232H5.71v2.5q0 .278-.186.466q-.187.188-.463.188t-.467-.188t-.191-.466v-2.5h-.596q-.344 0-.576-.232T3 15.038V12.91q0-.255.134-.457q.133-.202.4-.339q.269-.136.65-.211t.874-.075");
|
|
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="lt5jnvbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lt5jnvbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.346 19v-4.98h-1.404V9.944q0-.308.172-.548q.17-.24.488-.42t.787-.261t1.076-.081t1.073.08t.783.262t.489.422q.17.24.17.555v4.065h-1.403V19zm1.12-11.365q-.556 0-.953-.39t-.397-.939t.393-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25M10.635 19v-4.077H9.25V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078t.973.078q.439.077.731.233q.293.156.439.372q.146.217.146.505v3.273h-1.404V19zm-6.231 0v-3.154H3V12.91q0-.256.134-.458q.133-.202.4-.338q.269-.137.65-.212t.874-.075t.875.075t.648.212t.4.338q.135.202.135.458v2.936H5.712V19z");
|
|
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="lt5jnvbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lt5jnvbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.346 19v-4.98h-1.404V9.944q0-.308.172-.548q.17-.24.488-.42t.787-.261t1.076-.081t1.073.08t.783.262t.489.422q.17.24.17.555v4.065h-1.403V19zm1.12-11.365q-.556 0-.953-.39t-.397-.939t.393-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25M10.635 19v-4.077H9.25V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078t.973.078q.439.077.731.233q.293.156.439.372q.146.217.146.505v3.273h-1.404V19zm-6.231 0v-3.154H3V12.91q0-.256.134-.458q.133-.202.4-.338q.269-.137.65-.212t.874-.075t.875.075t.648.212t.4.338q.135.202.135.458v2.936H5.712V19z");
|
|
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="wpav6mhtr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wpav6mhtr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19.538 8.716q.466.08.783.261q.318.18.489.422q.17.24.17.555v3.255q0 .35-.231.58q-.233.23-.576.23h-.596v3.865q0 .465-.327.79q-.326.326-.793.326q-.466 0-.789-.325q-.322-.326-.322-.79v-3.866h-.596q-.343 0-.575-.232t-.233-.576V9.946q0-.31.171-.549t.489-.42t.787-.262t1.076-.08t1.072.08m-1.072-1.08q-.556 0-.953-.39t-.397-.939t.394-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25m6.46-.423q.536 0 .974.078q.439.078.731.234q.293.156.439.372t.146.505v2.475q0 .339-.232.568t-.576.23h-.596v3.193q0 .371-.256.628q-.257.256-.628.256t-.629-.256t-.256-.628v-3.193h-.577q-.343 0-.576-.23t-.232-.568V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078m-6.461 1.365q.494 0 .875.075t.648.212t.4.338t.134.458v2.129q0 .343-.232.575t-.575.232H5.71v2.5q0 .278-.186.466q-.187.188-.463.188t-.467-.188t-.191-.466v-2.5h-.596q-.344 0-.576-.232T3 15.038V12.91q0-.255.134-.457q.133-.202.4-.339q.269-.136.65-.211t.874-.075");
|
|
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="lt5jnvbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lt5jnvbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.346 19v-4.98h-1.404V9.944q0-.308.172-.548q.17-.24.488-.42t.787-.261t1.076-.081t1.073.08t.783.262t.489.422q.17.24.17.555v4.065h-1.403V19zm1.12-11.365q-.556 0-.953-.39t-.397-.939t.393-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25M10.635 19v-4.077H9.25V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078t.973.078q.439.077.731.233q.293.156.439.372q.146.217.146.505v3.273h-1.404V19zm-6.231 0v-3.154H3V12.91q0-.256.134-.458q.133-.202.4-.338q.269-.137.65-.212t.874-.075t.875.075t.648.212t.4.338q.135.202.135.458v2.936H5.712V19z");
|
|
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="lt5jnvbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:people-size-increase" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lt5jnvbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.346 19v-4.98h-1.404V9.944q0-.308.172-.548q.17-.24.488-.42t.787-.261t1.076-.081t1.073.08t.783.262t.489.422q.17.24.17.555v4.065h-1.403V19zm1.12-11.365q-.556 0-.953-.39t-.397-.939t.393-.938t.949-.387t.953.389t.397.94t-.393.937t-.95.387m-6.95 1.827q-.467 0-.789-.312q-.322-.313-.322-.784q0-.47.327-.783t.793-.313q.467 0 .789.313t.322.783t-.327.784t-.793.312m-6.457 1.423q-.371 0-.628-.247t-.257-.618t.257-.618t.628-.247q.37 0 .628.25t.256.615t-.256.615t-.628.25M10.635 19v-4.077H9.25V11.65q0-.288.146-.505q.146-.216.434-.372t.721-.233t.968-.078t.973.078q.439.077.731.233q.293.156.439.372q.146.217.146.505v3.273h-1.404V19zm-6.231 0v-3.154H3V12.91q0-.256.134-.458q.133-.202.4-.338q.269-.137.65-.212t.874-.075t.875.075t.648.212t.4.338q.135.202.135.458v2.936H5.712V19z");
|
|
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="l7lyx7bed"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.l7lyx7bed) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.673 16.337h4.654V12.5H9.673zm0-4.837h4.654V7.727H9.673zM4 11.5h4.673V7.71L4 6.323zm0 6.183l4.673-1.293V12.5H4zm16 0V12.5h-4.673v3.89zM15.327 11.5H20V6.423l-4.673 1.204zm-.442 5.837h-5.77L4.02 18.733q-.378.106-.699-.137Q3 18.354 3 17.95V6.075q0-.404.32-.653t.705-.124L9.096 6.75h5.789l5.096-1.377q.379-.106.699.137q.32.242.32.646V17.95q0 .404-.32.646t-.7.137z");
|
|
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="v-we0p3to"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v-we0p3to) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m13.404 16.337l.923-3.116l-3.73-.721l-.924 3.115zM9.673 11.5h4.654V7.727H9.673zM4 11.5h4.673V7.71L4 6.323zm0 6.183l4.673-1.293V12.5H4zm16 0V12.5h-4.673v3.89zM15.327 11.5H20V6.423l-4.673 1.204zM3 19V5l6.096 1.75h5.789L21 5.106V19l-6.116-1.664H9.116z");
|
|
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="v-we0p3to"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v-we0p3to) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m13.404 16.337l.923-3.116l-3.73-.721l-.924 3.115zM9.673 11.5h4.654V7.727H9.673zM4 11.5h4.673V7.71L4 6.323zm0 6.183l4.673-1.293V12.5H4zm16 0V12.5h-4.673v3.89zM15.327 11.5H20V6.423l-4.673 1.204zM3 19V5l6.096 1.75h5.789L21 5.106V19l-6.116-1.664H9.116z");
|
|
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="zy2to1b8d"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.zy2to1b8d) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.808 17.625q-.343 0-.576-.232T9 16.817v-3.51q0-.343.232-.575t.576-.232h4.384q.344 0 .576.232t.232.576v3.51q0 .342-.232.575t-.576.232zm0-6.096q-.343 0-.576-.232Q9 11.064 9 10.72V7.385q0-.344.232-.576q.233-.232.576-.232h4.384q.344 0 .576.232t.232.576v3.336q0 .344-.232.576t-.576.232zm-6.5 0q-.343 0-.576-.232q-.232-.233-.232-.576V5.748q0-.41.32-.647t.705-.13L7.41 6.086q.264.084.427.294T8 6.863v3.858q0 .343-.232.576t-.576.232zm.211 7.569q-.378.106-.699-.136t-.32-.646v-5.008q0-.344.232-.576t.576-.232h3.884q.343 0 .576.232t.232.576v3.967q0 .292-.159.498t-.437.285zm17.981-.782q0 .403-.32.646t-.7.136l-3.884-1.04q-.278-.079-.437-.285T16 17.275v-3.967q0-.344.232-.576t.576-.232h3.884q.344 0 .576.232t.232.576zm-4.692-6.787q-.344 0-.576-.232T16 10.72V6.875q0-.292.169-.498t.427-.285l3.885-1.04q.378-.106.699.13t.32.647v4.892q0 .344-.232.576q-.233.232-.576.232z");
|
|
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="bhmhl7bnr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bhmhl7bnr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9 17.625V12.5h6v5.125zm0-6.096V6.577h6v4.952zm-6.5 0V4.673L8 6.248v5.28zm0 7.837V12.5H8v5.396zm19 0l-5.5-1.47V12.5h5.5zM16 11.529V6.254l5.5-1.475v6.75z");
|
|
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="bhmhl7bnr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:spatial-gallery" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bhmhl7bnr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9 17.625V12.5h6v5.125zm0-6.096V6.577h6v4.952zm-6.5 0V4.673L8 6.248v5.28zm0 7.837V12.5H8v5.396zm19 0l-5.5-1.47V12.5h5.5zM16 11.529V6.254l5.5-1.475v6.75z");
|
|
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="ci96dry8o"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ci96dry8o) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.346 19h9.289q.56 0 .962-.403q.403-.403.403-.982V5.386q0-.58-.403-.982Q17.194 4 16.634 4H7.346q-.56 0-.962.403q-.403.403-.403.982v12.23q0 .58.403.982q.402.403.962.403m0 1q-.98 0-1.673-.702q-.692-.702-.692-1.682V5.385q0-.981.692-1.683Q6.366 3 7.346 3h9.289q.98 0 1.673.702q.692.702.692 1.683v12.23q0 .981-.692 1.683T16.634 20H15.27v.192q0 .349-.23.578q-.23.23-.577.23H9.5q-.348 0-.578-.23t-.23-.578V20zM12 11.5");
|
|
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="b3ydiqi0s"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.b3ydiqi0s) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.98 19H18V4H5.98zm2.712 2v-1H4.981V3H19v17h-3.73v1zM12 11.5");
|
|
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="f4uv6bcyu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.f4uv6bcyu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.346 19h9.289q.56 0 .962-.403q.403-.403.403-.982V5.386q0-.58-.403-.982Q17.194 4 16.634 4H7.346q-.56 0-.962.403q-.403.403-.403.982v12.23q0 .58.403.982q.402.403.962.403m1.346 2v-1H7.346q-.98 0-1.673-.702q-.692-.702-.692-1.682V5.385q0-.981.692-1.683Q6.366 3 7.346 3h9.289q.98 0 1.673.702q.692.702.692 1.683v12.23q0 .981-.692 1.683T16.634 20H15.27v1zM12 11.5");
|
|
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="zl_9klezh"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.zl_9klezh) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.346 20q-.98 0-1.673-.702q-.692-.702-.692-1.682V5.385q0-.981.692-1.683Q6.366 3 7.346 3h9.289q.98 0 1.673.702q.692.702.692 1.683v12.23q0 .981-.692 1.683T16.634 20H15.27v.192q0 .349-.24.578q-.238.23-.567.23H9.5q-.348 0-.578-.23t-.23-.578V20z");
|
|
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="alppr7vxf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.alppr7vxf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.692 21v-1H4.981V3H19v17h-3.73v1z");
|
|
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="jmw1eeq_a"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speaker-3" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jmw1eeq_a) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.692 21v-1H7.346q-.98 0-1.673-.702q-.692-.702-.692-1.682V5.385q0-.981.692-1.683Q6.366 3 7.346 3h9.289q.98 0 1.673.702q.692.702.692 1.683v12.23q0 .981-.692 1.683T16.634 20H15.27v1z");
|
|
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="ap91bsbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ap91bsbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.07 0 2.06.229q.992.229 1.873.661q.183.073.237.281q.055.208-.049.385t-.296.247t-.38-.022q-.772-.39-1.654-.586T12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.548-.066-1.061q-.067-.514-.213-1.018q-.055-.213.048-.393t.293-.247t.377.036q.19.104.245.292q.177.577.247 1.174Q21 11.379 21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-1.096.417-2.042q.418-.946 1.122-1.65q.869-.889 2.04-1.268q1.171-.38 2.36-.194q.25.039.349.195q.099.155.08.338t-.151.335t-.401.113q-.987-.154-1.92.165q-.934.32-1.644 1.03q-.569.569-.91 1.342T7.769 12q0 1.766 1.233 2.998T12 16.231q.8 0 1.509-.274t1.283-.792q.506-.448.853-1.01t.478-1.24q.06-.182.233-.277t.355-.055q.203.06.307.223t.046.365q-.168.814-.586 1.513t-1.016 1.239q-.685.627-1.573.968q-.889.34-1.889.34m0-4.977l7.779-7.785q.146-.146.347-.136t.347.155t.146.347t-.146.348l-7.908 7.902q-.242.242-.565.242t-.566-.242l-1.292-1.287q-.146-.146-.156-.357q-.009-.21.156-.357q.146-.145.357-.136q.21.01.357.156z");
|
|
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="v787d5evq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v787d5evq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.277 0 2.441.33q1.165.33 2.18.94l-.744.738q-.87-.489-1.848-.749Q13.05 4 12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.683-.11-1.321t-.304-1.252l.787-.78q.304.77.466 1.614T21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-2.173 1.52-3.702Q9.808 6.769 12 6.769q.471 0 .921.084t.879.232l-.812.811q-.251-.069-.491-.098T12 7.769q-1.766 0-2.998 1.242Q7.769 10.255 7.769 12q0 1.766 1.233 2.998q1.232 1.233 2.998 1.233q.839 0 1.615-.322q.775-.322 1.37-.917q.429-.428.718-.952q.29-.524.42-1.124l1.096-1.122q.04 1.125-.371 2.14q-.411 1.014-1.156 1.758q-.703.704-1.65 1.122q-.946.417-2.042.417m0-3.581l-2.211-2.211l.707-.689L12 12.254l8.12-8.12l.688.689z");
|
|
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="v787d5evq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v787d5evq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.277 0 2.441.33q1.165.33 2.18.94l-.744.738q-.87-.489-1.848-.749Q13.05 4 12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.683-.11-1.321t-.304-1.252l.787-.78q.304.77.466 1.614T21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-2.173 1.52-3.702Q9.808 6.769 12 6.769q.471 0 .921.084t.879.232l-.812.811q-.251-.069-.491-.098T12 7.769q-1.766 0-2.998 1.242Q7.769 10.255 7.769 12q0 1.766 1.233 2.998q1.232 1.233 2.998 1.233q.839 0 1.615-.322q.775-.322 1.37-.917q.429-.428.718-.952q.29-.524.42-1.124l1.096-1.122q.04 1.125-.371 2.14q-.411 1.014-1.156 1.758q-.703.704-1.65 1.122q-.946.417-2.042.417m0-3.581l-2.211-2.211l.707-.689L12 12.254l8.12-8.12l.688.689z");
|
|
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="ap91bsbjt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ap91bsbjt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.07 0 2.06.229q.992.229 1.873.661q.183.073.237.281q.055.208-.049.385t-.296.247t-.38-.022q-.772-.39-1.654-.586T12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.548-.066-1.061q-.067-.514-.213-1.018q-.055-.213.048-.393t.293-.247t.377.036q.19.104.245.292q.177.577.247 1.174Q21 11.379 21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-1.096.417-2.042q.418-.946 1.122-1.65q.869-.889 2.04-1.268q1.171-.38 2.36-.194q.25.039.349.195q.099.155.08.338t-.151.335t-.401.113q-.987-.154-1.92.165q-.934.32-1.644 1.03q-.569.569-.91 1.342T7.769 12q0 1.766 1.233 2.998T12 16.231q.8 0 1.509-.274t1.283-.792q.506-.448.853-1.01t.478-1.24q.06-.182.233-.277t.355-.055q.203.06.307.223t.046.365q-.168.814-.586 1.513t-1.016 1.239q-.685.627-1.573.968q-.889.34-1.889.34m0-4.977l7.779-7.785q.146-.146.347-.136t.347.155t.146.347t-.146.348l-7.908 7.902q-.242.242-.565.242t-.566-.242l-1.292-1.287q-.146-.146-.156-.357q-.009-.21.156-.357q.146-.145.357-.136q.21.01.357.156z");
|
|
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="v787d5evq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v787d5evq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.277 0 2.441.33q1.165.33 2.18.94l-.744.738q-.87-.489-1.848-.749Q13.05 4 12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.683-.11-1.321t-.304-1.252l.787-.78q.304.77.466 1.614T21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-2.173 1.52-3.702Q9.808 6.769 12 6.769q.471 0 .921.084t.879.232l-.812.811q-.251-.069-.491-.098T12 7.769q-1.766 0-2.998 1.242Q7.769 10.255 7.769 12q0 1.766 1.233 2.998q1.232 1.233 2.998 1.233q.839 0 1.615-.322q.775-.322 1.37-.917q.429-.428.718-.952q.29-.524.42-1.124l1.096-1.122q.04 1.125-.371 2.14q-.411 1.014-1.156 1.758q-.703.704-1.65 1.122q-.946.417-2.042.417m0-3.581l-2.211-2.211l.707-.689L12 12.254l8.12-8.12l.688.689z");
|
|
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="v787d5evq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:target-check" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v787d5evq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12 21q-1.864 0-3.506-.701t-2.857-1.926t-1.926-2.867T3 12t.71-3.506t1.927-2.857T8.494 3.71Q10.137 3 12 3q1.277 0 2.441.33q1.165.33 2.18.94l-.744.738q-.87-.489-1.848-.749Q13.05 4 12 4Q8.65 4 6.325 6.335T4 12q0 3.35 2.325 5.675T12 20q3.33 0 5.666-2.325Q20 15.35 20 12q0-.683-.11-1.321t-.304-1.252l.787-.78q.304.77.466 1.614T21 12q0 1.864-.701 3.506t-1.926 2.867t-2.867 1.926T12 21m0-3.77q-2.192 0-3.712-1.519T6.77 12q0-2.173 1.52-3.702Q9.808 6.769 12 6.769q.471 0 .921.084t.879.232l-.812.811q-.251-.069-.491-.098T12 7.769q-1.766 0-2.998 1.242Q7.769 10.255 7.769 12q0 1.766 1.233 2.998q1.232 1.233 2.998 1.233q.839 0 1.615-.322q.775-.322 1.37-.917q.429-.428.718-.952q.29-.524.42-1.124l1.096-1.122q.04 1.125-.371 2.14q-.411 1.014-1.156 1.758q-.703.704-1.65 1.122q-.946.417-2.042.417m0-3.581l-2.211-2.211l.707-.689L12 12.254l8.12-8.12l.688.689z");
|
|
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": 15707,
|
|
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": 1789034376
|
|
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.52",
|
|
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",
|
|
@@ -16590,6 +16590,14 @@
|
|
|
16590
16590
|
"types": "./types/gfwqskkx.d.ts",
|
|
16591
16591
|
"svelte": "./components/d/device-hub-rounded.svelte"
|
|
16592
16592
|
},
|
|
16593
|
+
"./device-swoosh-star": {
|
|
16594
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
16595
|
+
"svelte": "./components/d/device-swoosh-star.svelte"
|
|
16596
|
+
},
|
|
16597
|
+
"./device-swoosh-star-outline": {
|
|
16598
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
16599
|
+
"svelte": "./components/d/device-swoosh-star-outline.svelte"
|
|
16600
|
+
},
|
|
16593
16601
|
"./device-thermostat": {
|
|
16594
16602
|
"types": "./types/gfwqskkx.d.ts",
|
|
16595
16603
|
"svelte": "./components/d/device-thermostat.svelte"
|
|
@@ -36342,6 +36350,30 @@
|
|
|
36342
36350
|
"types": "./types/gfwqskkx.d.ts",
|
|
36343
36351
|
"svelte": "./components/m/mobile-speaker-sharp.svelte"
|
|
36344
36352
|
},
|
|
36353
|
+
"./mobile-tap": {
|
|
36354
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36355
|
+
"svelte": "./components/m/mobile-tap.svelte"
|
|
36356
|
+
},
|
|
36357
|
+
"./mobile-tap-outline": {
|
|
36358
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36359
|
+
"svelte": "./components/m/mobile-tap-outline.svelte"
|
|
36360
|
+
},
|
|
36361
|
+
"./mobile-tap-outline-rounded": {
|
|
36362
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36363
|
+
"svelte": "./components/m/mobile-tap-outline-rounded.svelte"
|
|
36364
|
+
},
|
|
36365
|
+
"./mobile-tap-outline-sharp": {
|
|
36366
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36367
|
+
"svelte": "./components/m/mobile-tap-outline-sharp.svelte"
|
|
36368
|
+
},
|
|
36369
|
+
"./mobile-tap-rounded": {
|
|
36370
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36371
|
+
"svelte": "./components/m/mobile-tap-rounded.svelte"
|
|
36372
|
+
},
|
|
36373
|
+
"./mobile-tap-sharp": {
|
|
36374
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
36375
|
+
"svelte": "./components/m/mobile-tap-sharp.svelte"
|
|
36376
|
+
},
|
|
36345
36377
|
"./mobile-text": {
|
|
36346
36378
|
"types": "./types/gfwqskkx.d.ts",
|
|
36347
36379
|
"svelte": "./components/m/mobile-text.svelte"
|
|
@@ -41794,6 +41826,22 @@
|
|
|
41794
41826
|
"types": "./types/gfwqskkx.d.ts",
|
|
41795
41827
|
"svelte": "./components/p/pentagon-rounded.svelte"
|
|
41796
41828
|
},
|
|
41829
|
+
"./people-size-decrease": {
|
|
41830
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
41831
|
+
"svelte": "./components/p/people-size-decrease.svelte"
|
|
41832
|
+
},
|
|
41833
|
+
"./people-size-decrease-rounded": {
|
|
41834
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
41835
|
+
"svelte": "./components/p/people-size-decrease-rounded.svelte"
|
|
41836
|
+
},
|
|
41837
|
+
"./people-size-increase": {
|
|
41838
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
41839
|
+
"svelte": "./components/p/people-size-increase.svelte"
|
|
41840
|
+
},
|
|
41841
|
+
"./people-size-increase-rounded": {
|
|
41842
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
41843
|
+
"svelte": "./components/p/people-size-increase-rounded.svelte"
|
|
41844
|
+
},
|
|
41797
41845
|
"./percent": {
|
|
41798
41846
|
"types": "./types/gfwqskkx.d.ts",
|
|
41799
41847
|
"svelte": "./components/p/percent.svelte"
|
|
@@ -52090,6 +52138,22 @@
|
|
|
52090
52138
|
"types": "./types/gfwqskkx.d.ts",
|
|
52091
52139
|
"svelte": "./components/s/spatial-audio-rounded.svelte"
|
|
52092
52140
|
},
|
|
52141
|
+
"./spatial-gallery": {
|
|
52142
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52143
|
+
"svelte": "./components/s/spatial-gallery.svelte"
|
|
52144
|
+
},
|
|
52145
|
+
"./spatial-gallery-outline": {
|
|
52146
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52147
|
+
"svelte": "./components/s/spatial-gallery-outline.svelte"
|
|
52148
|
+
},
|
|
52149
|
+
"./spatial-gallery-outline-rounded": {
|
|
52150
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52151
|
+
"svelte": "./components/s/spatial-gallery-outline-rounded.svelte"
|
|
52152
|
+
},
|
|
52153
|
+
"./spatial-gallery-rounded": {
|
|
52154
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52155
|
+
"svelte": "./components/s/spatial-gallery-rounded.svelte"
|
|
52156
|
+
},
|
|
52093
52157
|
"./spatial-speaker": {
|
|
52094
52158
|
"types": "./types/gfwqskkx.d.ts",
|
|
52095
52159
|
"svelte": "./components/s/spatial-speaker.svelte"
|
|
@@ -52158,6 +52222,30 @@
|
|
|
52158
52222
|
"types": "./types/gfwqskkx.d.ts",
|
|
52159
52223
|
"svelte": "./components/s/speaker-2-sharp.svelte"
|
|
52160
52224
|
},
|
|
52225
|
+
"./speaker-3": {
|
|
52226
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52227
|
+
"svelte": "./components/s/speaker-3.svelte"
|
|
52228
|
+
},
|
|
52229
|
+
"./speaker-3-outline": {
|
|
52230
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52231
|
+
"svelte": "./components/s/speaker-3-outline.svelte"
|
|
52232
|
+
},
|
|
52233
|
+
"./speaker-3-outline-rounded": {
|
|
52234
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52235
|
+
"svelte": "./components/s/speaker-3-outline-rounded.svelte"
|
|
52236
|
+
},
|
|
52237
|
+
"./speaker-3-outline-sharp": {
|
|
52238
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52239
|
+
"svelte": "./components/s/speaker-3-outline-sharp.svelte"
|
|
52240
|
+
},
|
|
52241
|
+
"./speaker-3-rounded": {
|
|
52242
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52243
|
+
"svelte": "./components/s/speaker-3-rounded.svelte"
|
|
52244
|
+
},
|
|
52245
|
+
"./speaker-3-sharp": {
|
|
52246
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52247
|
+
"svelte": "./components/s/speaker-3-sharp.svelte"
|
|
52248
|
+
},
|
|
52161
52249
|
"./speaker-group": {
|
|
52162
52250
|
"types": "./types/gfwqskkx.d.ts",
|
|
52163
52251
|
"svelte": "./components/s/speaker-group.svelte"
|
|
@@ -56518,6 +56606,14 @@
|
|
|
56518
56606
|
"types": "./types/gfwqskkx.d.ts",
|
|
56519
56607
|
"svelte": "./components/t/target.svelte"
|
|
56520
56608
|
},
|
|
56609
|
+
"./target-check": {
|
|
56610
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
56611
|
+
"svelte": "./components/t/target-check.svelte"
|
|
56612
|
+
},
|
|
56613
|
+
"./target-check-rounded": {
|
|
56614
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
56615
|
+
"svelte": "./components/t/target-check-rounded.svelte"
|
|
56616
|
+
},
|
|
56521
56617
|
"./task": {
|
|
56522
56618
|
"types": "./types/gfwqskkx.d.ts",
|
|
56523
56619
|
"svelte": "./components/t/task.svelte"
|
|
@@ -71894,6 +71990,22 @@
|
|
|
71894
71990
|
"types": "./types/gfwqskkx.d.ts",
|
|
71895
71991
|
"svelte": "./components/d/device-reset.svelte"
|
|
71896
71992
|
},
|
|
71993
|
+
"./device-swoosh-star-outline-rounded": {
|
|
71994
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
71995
|
+
"svelte": "./components/d/device-swoosh-star-outline-rounded.svelte"
|
|
71996
|
+
},
|
|
71997
|
+
"./device-swoosh-star-outline-sharp": {
|
|
71998
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
71999
|
+
"svelte": "./components/d/device-swoosh-star-outline-sharp.svelte"
|
|
72000
|
+
},
|
|
72001
|
+
"./device-swoosh-star-rounded": {
|
|
72002
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72003
|
+
"svelte": "./components/d/device-swoosh-star-rounded.svelte"
|
|
72004
|
+
},
|
|
72005
|
+
"./device-swoosh-star-sharp": {
|
|
72006
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72007
|
+
"svelte": "./components/d/device-swoosh-star-sharp.svelte"
|
|
72008
|
+
},
|
|
71897
72009
|
"./device-thermostat-outline": {
|
|
71898
72010
|
"types": "./types/gfwqskkx.d.ts",
|
|
71899
72011
|
"svelte": "./components/d/device-thermostat-outline.svelte"
|
|
@@ -84302,6 +84414,38 @@
|
|
|
84302
84414
|
"types": "./types/gfwqskkx.d.ts",
|
|
84303
84415
|
"svelte": "./components/p/pentagon-sharp.svelte"
|
|
84304
84416
|
},
|
|
84417
|
+
"./people-size-decrease-outline": {
|
|
84418
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84419
|
+
"svelte": "./components/p/people-size-decrease-outline.svelte"
|
|
84420
|
+
},
|
|
84421
|
+
"./people-size-decrease-outline-rounded": {
|
|
84422
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84423
|
+
"svelte": "./components/p/people-size-decrease-outline-rounded.svelte"
|
|
84424
|
+
},
|
|
84425
|
+
"./people-size-decrease-outline-sharp": {
|
|
84426
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84427
|
+
"svelte": "./components/p/people-size-decrease-outline-sharp.svelte"
|
|
84428
|
+
},
|
|
84429
|
+
"./people-size-decrease-sharp": {
|
|
84430
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84431
|
+
"svelte": "./components/p/people-size-decrease-sharp.svelte"
|
|
84432
|
+
},
|
|
84433
|
+
"./people-size-increase-outline": {
|
|
84434
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84435
|
+
"svelte": "./components/p/people-size-increase-outline.svelte"
|
|
84436
|
+
},
|
|
84437
|
+
"./people-size-increase-outline-rounded": {
|
|
84438
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84439
|
+
"svelte": "./components/p/people-size-increase-outline-rounded.svelte"
|
|
84440
|
+
},
|
|
84441
|
+
"./people-size-increase-outline-sharp": {
|
|
84442
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84443
|
+
"svelte": "./components/p/people-size-increase-outline-sharp.svelte"
|
|
84444
|
+
},
|
|
84445
|
+
"./people-size-increase-sharp": {
|
|
84446
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
84447
|
+
"svelte": "./components/p/people-size-increase-sharp.svelte"
|
|
84448
|
+
},
|
|
84305
84449
|
"./percent-discount-outline-sharp": {
|
|
84306
84450
|
"types": "./types/gfwqskkx.d.ts",
|
|
84307
84451
|
"svelte": "./components/p/percent-discount-outline-sharp.svelte"
|
|
@@ -89610,6 +89754,14 @@
|
|
|
89610
89754
|
"types": "./types/gfwqskkx.d.ts",
|
|
89611
89755
|
"svelte": "./components/s/spatial-audio-sharp.svelte"
|
|
89612
89756
|
},
|
|
89757
|
+
"./spatial-gallery-outline-sharp": {
|
|
89758
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
89759
|
+
"svelte": "./components/s/spatial-gallery-outline-sharp.svelte"
|
|
89760
|
+
},
|
|
89761
|
+
"./spatial-gallery-sharp": {
|
|
89762
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
89763
|
+
"svelte": "./components/s/spatial-gallery-sharp.svelte"
|
|
89764
|
+
},
|
|
89613
89765
|
"./spatial-tracking-outline-sharp": {
|
|
89614
89766
|
"types": "./types/gfwqskkx.d.ts",
|
|
89615
89767
|
"svelte": "./components/s/spatial-tracking-outline-sharp.svelte"
|
|
@@ -91618,6 +91770,22 @@
|
|
|
91618
91770
|
"types": "./types/gfwqskkx.d.ts",
|
|
91619
91771
|
"svelte": "./components/t/tapas-sharp.svelte"
|
|
91620
91772
|
},
|
|
91773
|
+
"./target-check-outline": {
|
|
91774
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
91775
|
+
"svelte": "./components/t/target-check-outline.svelte"
|
|
91776
|
+
},
|
|
91777
|
+
"./target-check-outline-rounded": {
|
|
91778
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
91779
|
+
"svelte": "./components/t/target-check-outline-rounded.svelte"
|
|
91780
|
+
},
|
|
91781
|
+
"./target-check-outline-sharp": {
|
|
91782
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
91783
|
+
"svelte": "./components/t/target-check-outline-sharp.svelte"
|
|
91784
|
+
},
|
|
91785
|
+
"./target-check-sharp": {
|
|
91786
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
91787
|
+
"svelte": "./components/t/target-check-sharp.svelte"
|
|
91788
|
+
},
|
|
91621
91789
|
"./target-outline": {
|
|
91622
91790
|
"types": "./types/gfwqskkx.d.ts",
|
|
91623
91791
|
"svelte": "./components/t/target-outline.svelte"
|