@iconify-svelte/material-symbols-light 1.0.49 → 1.0.50
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/bullet-chart-outline-rounded.svelte +17 -0
- package/components/b/bullet-chart-outline-sharp.svelte +17 -0
- package/components/b/bullet-chart-outline.svelte +17 -0
- package/components/b/bullet-chart-rounded.svelte +17 -0
- package/components/b/bullet-chart-sharp.svelte +17 -0
- package/components/b/bullet-chart.svelte +17 -0
- package/components/d/domain-disabled-check-outline-rounded.svelte +17 -0
- package/components/d/domain-disabled-check-outline-sharp.svelte +17 -0
- package/components/d/domain-disabled-check-outline.svelte +17 -0
- package/components/d/domain-disabled-check-rounded.svelte +17 -0
- package/components/d/domain-disabled-check-sharp.svelte +17 -0
- package/components/d/domain-disabled-check.svelte +17 -0
- package/components/l/list-2-outline-rounded.svelte +17 -0
- package/components/l/list-2-outline-sharp.svelte +17 -0
- package/components/l/list-2-outline.svelte +17 -0
- package/components/l/list-2-rounded.svelte +17 -0
- package/components/l/list-2-sharp.svelte +17 -0
- package/components/l/list-2.svelte +17 -0
- package/components/s/sim-card-lock-outline-rounded.svelte +17 -0
- package/components/s/sim-card-lock-outline-sharp.svelte +17 -0
- package/components/s/sim-card-lock-outline.svelte +17 -0
- package/components/s/sim-card-lock-rounded.svelte +17 -0
- package/components/s/sim-card-lock-sharp.svelte +17 -0
- package/components/s/sim-card-lock.svelte +17 -0
- package/components/s/speech-to-text-2-outline-rounded.svelte +17 -0
- package/components/s/speech-to-text-2-outline-sharp.svelte +17 -0
- package/components/s/speech-to-text-2-outline.svelte +17 -0
- package/components/s/speech-to-text-2-rounded.svelte +17 -0
- package/components/s/speech-to-text-2-sharp.svelte +17 -0
- package/components/s/speech-to-text-2.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +145 -25
|
@@ -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="tosmjtl5r"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.tosmjtl5r) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 18.135H4.616q-.667 0-1.141-.475T3 16.52V7.5q0-.666.475-1.14q.474-.476 1.14-.476H11.5V4.5q0-.213.144-.356T12.001 4t.356.144t.143.356v1.385h6.885q.666 0 1.14.474Q21 6.834 21 7.5v9.02q0 .666-.475 1.14t-1.14.475H12.5V19.5q0 .213-.144.356t-.357.144t-.356-.144t-.143-.356zm0-1v-2.75H4v2.134q0 .27.173.443t.443.173zM4 9.635h7.5v-2.75H4.616q-.27 0-.443.173T4 7.5zm0 3.75h9.712q.269 0 .442-.174q.173-.173.173-.442V11.25q0-.27-.173-.442q-.173-.173-.442-.173H4zm8.5 3.75h6.885q.269 0 .442-.174q.173-.172.173-.442V7.5q0-.27-.173-.442q-.173-.173-.442-.173H12.5v2.75h1.212q.666 0 1.14.474q.475.475.475 1.141v1.52q0 .666-.474 1.14t-1.141.475H12.5zM4 13.385v-2.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="nkw2qhbmg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.nkw2qhbmg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 18.135V5.884h8.5V4h1v1.885H21v12.25h-8.5V20h-1v-1.866zm1-1h7.5v-2.75H4zm0-7.5h7.5v-2.75H4zm0 3.75h10.327v-2.75H4zm8.5 3.75H20V6.884h-7.5v2.75h2.827v4.75H12.5zM4 13.385v-2.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="nkw2qhbmg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.nkw2qhbmg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 18.135V5.884h8.5V4h1v1.885H21v12.25h-8.5V20h-1v-1.866zm1-1h7.5v-2.75H4zm0-7.5h7.5v-2.75H4zm0 3.75h10.327v-2.75H4zm8.5 3.75H20V6.884h-7.5v2.75h2.827v4.75H12.5zM4 13.385v-2.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="z2hqo9n7g"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.z2hqo9n7g) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 18.135H4.616q-.667 0-1.141-.475T3 16.52V7.5q0-.666.475-1.14q.474-.476 1.14-.476H11.5V4.5q0-.213.144-.356T12.001 4t.356.144t.143.356v1.385h6.885q.666 0 1.14.474Q21 6.834 21 7.5v9.02q0 .666-.475 1.14t-1.14.475H12.5V19.5q0 .213-.144.356t-.357.144t-.356-.144t-.143-.356zm0-1v-2.75H4v2.134q0 .27.173.443t.443.173zM4 9.635h7.5v-2.75H4.616q-.27 0-.443.173T4 7.5zm8.5 7.5h6.885q.269 0 .442-.174q.173-.172.173-.442V7.5q0-.27-.173-.442q-.173-.173-.442-.173H12.5v2.75h1.212q.666 0 1.14.474q.475.475.475 1.141v1.52q0 .666-.474 1.14t-1.141.475H12.5z");
|
|
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="e2d97abtw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.e2d97abtw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 18.135V5.884h8.5V4h1v1.885H21v12.25h-8.5V20h-1v-1.866zm1-1h7.5v-2.75H4zm0-7.5h7.5v-2.75H4zm8.5 7.5H20V6.884h-7.5v2.75h2.827v4.75H12.5z");
|
|
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="e2d97abtw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bullet-chart" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.e2d97abtw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 18.135V5.884h8.5V4h1v1.885H21v12.25h-8.5V20h-1v-1.866zm1-1h7.5v-2.75H4zm0-7.5h7.5v-2.75H4zm8.5 7.5H20V6.884h-7.5v2.75h2.827v4.75H12.5z");
|
|
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="gvvw4cvgc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.gvvw4cvgc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19.266 20.154H3.539q-.349 0-.579-.23t-.23-.578V3.608L1.517 2.392q-.141-.14-.15-.344t.15-.363t.353-.16t.354.16l19.9 19.9q.14.14.153.341t-.153.366q-.16.16-.351.163t-.357-.157zm-15.535-1h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.534l-3-3h-3.534zm4.877-12.54l-.94-.935q-.112-.112-.264-.121q-.152-.01-.283.12t-.13.274t.13.273l.916.916q.242.242.565.245t.565-.24l2.135-2.134q.112-.112.121-.264q.01-.152-.121-.282q-.13-.131-.273-.131t-.273.13zm3.535-3.757q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165m.27 14.65q-.144-.144-.144-.357v-4.573q0-.213.144-.357t.356-.143t.357.143t.143.357v4.573q0 .214-.143.357t-.357.143t-.356-.143m-9.539-9.539q-.143-.143-.143-.356V4.154H7.235q-.214 0-.357-.143q-.144-.144-.144-.357t.144-.357q.143-.143.357-.143h3.688q.348 0 .578.23t.23.578v3.65q0 .213-.144.356t-.356.144t-.357-.144");
|
|
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="s6jse0t1l"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.s6jse0t1l) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m21.77 22.646l-2.504-2.492H2.73V3.608l-1.57-1.57l.708-.707l20.608 20.608zM3.73 19.154h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.535l-3-3h-3.534zm4.872-11.442l2.973-2.973l-.546-.547l-2.421 2.422L15.394 5.4l-.546.552zm3.541-4.855q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165M21.27 18.15l-1-1v-5.073h1zm-9.538-9.538l-1-1V4.153H7.235l-1-1h5.496z");
|
|
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="s6jse0t1l"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.s6jse0t1l) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m21.77 22.646l-2.504-2.492H2.73V3.608l-1.57-1.57l.708-.707l20.608 20.608zM3.73 19.154h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.535l-3-3h-3.534zm4.872-11.442l2.973-2.973l-.546-.547l-2.421 2.422L15.394 5.4l-.546.552zm3.541-4.855q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165M21.27 18.15l-1-1v-5.073h1zm-9.538-9.538l-1-1V4.153H7.235l-1-1h5.496z");
|
|
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="gvvw4cvgc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.gvvw4cvgc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19.266 20.154H3.539q-.349 0-.579-.23t-.23-.578V3.608L1.517 2.392q-.141-.14-.15-.344t.15-.363t.353-.16t.354.16l19.9 19.9q.14.14.153.341t-.153.366q-.16.16-.351.163t-.357-.157zm-15.535-1h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.534l-3-3h-3.534zm4.877-12.54l-.94-.935q-.112-.112-.264-.121q-.152-.01-.283.12t-.13.274t.13.273l.916.916q.242.242.565.245t.565-.24l2.135-2.134q.112-.112.121-.264q.01-.152-.121-.282q-.13-.131-.273-.131t-.273.13zm3.535-3.757q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165m.27 14.65q-.144-.144-.144-.357v-4.573q0-.213.144-.357t.356-.143t.357.143t.143.357v4.573q0 .214-.143.357t-.357.143t-.356-.143m-9.539-9.539q-.143-.143-.143-.356V4.154H7.235q-.214 0-.357-.143q-.144-.144-.144-.357t.144-.357q.143-.143.357-.143h3.688q.348 0 .578.23t.23.578v3.65q0 .213-.144.356t-.356.144t-.357-.144");
|
|
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="s6jse0t1l"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.s6jse0t1l) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m21.77 22.646l-2.504-2.492H2.73V3.608l-1.57-1.57l.708-.707l20.608 20.608zM3.73 19.154h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.535l-3-3h-3.534zm4.872-11.442l2.973-2.973l-.546-.547l-2.421 2.422L15.394 5.4l-.546.552zm3.541-4.855q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165M21.27 18.15l-1-1v-5.073h1zm-9.538-9.538l-1-1V4.153H7.235l-1-1h5.496z");
|
|
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="s6jse0t1l"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:domain-disabled-check" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.s6jse0t1l) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m21.77 22.646l-2.504-2.492H2.73V3.608l-1.57-1.57l.708-.707l20.608 20.608zM3.73 19.154h3v-3h-3zm0-4h3v-3h-3zm0-4h3v-3h-3zm4 8h3v-3h-3zm0-4h3v-3h-3zm4 4h6.535l-3-3h-3.534zm4.872-11.442l2.973-2.973l-.546-.547l-2.421 2.422L15.394 5.4l-.546.552zm3.541-4.855q1.165 1.164 1.165 2.835t-1.165 2.836t-2.835 1.164t-2.836-1.164t-1.164-2.836q0-1.67 1.164-2.835q1.165-1.165 2.836-1.165t2.835 1.165M21.27 18.15l-1-1v-5.073h1zm-9.538-9.538l-1-1V4.153H7.235l-1-1h5.496z");
|
|
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="aqcz6qbuj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.aqcz6qbuj) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.25 17q-.213 0-.356-.144t-.144-.357t.144-.356T8.25 16h7.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 12.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h15q.213 0 .356.144t.144.357t-.144.356t-.356.143zM8.25 8q-.213 0-.356-.144t-.144-.357t.144-.356T8.25 7h7.5q.213 0 .356.144t.144.357t-.144.356T15.75 8z");
|
|
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="c2drsmbzt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.c2drsmbzt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.75 17v-1h8.5v1zM4 12.5v-1h16v1zM7.75 8V7h8.5v1z");
|
|
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="c2drsmbzt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.c2drsmbzt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.75 17v-1h8.5v1zM4 12.5v-1h16v1zM7.75 8V7h8.5v1z");
|
|
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="aqcz6qbuj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.aqcz6qbuj) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.25 17q-.213 0-.356-.144t-.144-.357t.144-.356T8.25 16h7.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 12.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h15q.213 0 .356.144t.144.357t-.144.356t-.356.143zM8.25 8q-.213 0-.356-.144t-.144-.357t.144-.356T8.25 7h7.5q.213 0 .356.144t.144.357t-.144.356T15.75 8z");
|
|
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="c2drsmbzt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.c2drsmbzt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.75 17v-1h8.5v1zM4 12.5v-1h16v1zM7.75 8V7h8.5v1z");
|
|
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="c2drsmbzt"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.c2drsmbzt) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.75 17v-1h8.5v1zM4 12.5v-1h16v1zM7.75 8V7h8.5v1z");
|
|
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="bi_0-0bii"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bi_0-0bii) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10 15.77h4q.367 0 .626-.26q.259-.258.259-.625v-3q0-.368-.288-.626q-.288-.259-.712-.259V9.885q0-.787-.55-1.336T12 8t-1.336.549t-.548 1.336V11q-.425 0-.713.259q-.288.258-.288.625v3q0 .368.259.626q.259.26.626.26m.885-4.77V9.885q0-.464.326-.79T12 8.77t.79.326t.326.79V11zm-4.27 10q-.69 0-1.152-.462T5 19.385V9.095q0-.324.13-.629q.132-.304.349-.522L9.944 3.48q.217-.218.522-.348q.305-.131.628-.131h6.29q.691 0 1.154.463T19 4.615v14.77q0 .69-.462 1.152T17.384 21zm0-1h10.77q.23 0 .423-.192t.192-.424V4.616q0-.231-.192-.424T17.384 4H10.85L6 8.85v10.535q0 .23.192.423t.423.192m0 0H6h12z");
|
|
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="f1v67yb1n"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.f1v67yb1n) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.116 15.77h5.769V11h-1V9.885q0-.778-.55-1.332Q12.787 8 12 8t-1.336.554t-.548 1.33V11h-1zM10.885 11V9.892q0-.47.326-.797T12 8.77t.79.326t.326.797V11zM5 21V8.423L10.423 3H19v18zm1-1h12V4h-7.15L6 8.85zm0 0h12z");
|
|
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="pgrsfebyl"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.pgrsfebyl) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V8.423L10.423 3h6.962q.69 0 1.153.463T19 4.615v14.77q0 .69-.462 1.152T17.384 21zm0-1h10.769q.23 0 .423-.192t.192-.424V4.616q0-.231-.192-.424T17.384 4H10.85L6 8.85v10.535q0 .23.192.423t.423.192m0 0H6h12zM10 15.77h4q.367 0 .626-.26q.259-.258.259-.625v-3q0-.368-.288-.626q-.288-.259-.712-.259V9.885q0-.787-.55-1.336T12 8t-1.336.549t-.548 1.336V11q-.425 0-.713.259q-.288.258-.288.625v3q0 .368.259.626q.259.26.626.26m.885-4.77V9.885q0-.464.326-.79T12 8.77t.79.326t.326.79V11z");
|
|
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="yg__cebgb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.yg__cebgb) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10 15.77h4q.367 0 .626-.26q.259-.258.259-.625v-3q0-.368-.288-.626q-.288-.259-.712-.259V9.885q0-.787-.55-1.336T12 8t-1.336.549t-.548 1.336V11q-.425 0-.713.259q-.288.258-.288.625v3q0 .368.259.626q.259.26.626.26m.885-4.77V9.885q0-.464.326-.79T12 8.77t.79.326t.326.79V11zm-4.27 10q-.69 0-1.152-.462T5 19.385V9.095q0-.324.13-.629q.132-.304.349-.522L9.944 3.48q.217-.218.522-.348q.305-.131.628-.131h6.29q.691 0 1.154.463T19 4.615v14.77q0 .69-.462 1.152T17.384 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="hhx0ppbbx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.hhx0ppbbx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M9.116 15.77h5.769V11h-1V9.885q0-.778-.55-1.332Q12.787 8 12 8t-1.336.554t-.548 1.33V11h-1zM10.885 11V9.892q0-.47.326-.797T12 8.77t.79.326t.326.797V11zM5 21V8.423L10.423 3H19v18z");
|
|
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="ckwemzb0v"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:sim-card-lock" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ckwemzb0v) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V8.423L10.423 3h6.962q.69 0 1.153.463T19 4.615v14.77q0 .69-.462 1.152T17.384 21zM10 15.77h4q.367 0 .626-.26q.259-.258.259-.625v-3q0-.368-.288-.626q-.288-.259-.712-.259V9.885q0-.787-.55-1.336T12 8t-1.336.549t-.548 1.336V11q-.425 0-.713.259q-.288.258-.288.625v3q0 .368.259.626q.259.26.626.26m.885-4.77V9.885q0-.464.326-.79T12 8.77t.79.326t.326.79V11z");
|
|
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="be0expq8s"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.be0expq8s) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19 4v16zM8.616 21q-.667 0-1.141-.475T7 19.386V18.23q0-.213.144-.356t.357-.144t.356.144t.143.356v1.154q0 .269.173.442t.443.173h9.769q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T18.385 4H12q-.213 0-.356-.144t-.144-.357t.144-.356T12 3h6.385q.666 0 1.14.475T20 4.615v14.77q0 .666-.475 1.14t-1.14.475zM7.499 9.885q-.637 0-1.068-.432T6 8.385V4q0-.638.43-1.069T7.496 2.5q.618 0 1.06.431T9 4v4.385q0 .637-.44 1.068q-.442.431-1.06.431M7.5 12q1.48 0 2.591-.878t1.27-2.25q.055-.288.225-.391t.347-.092t.324.136t.116.346q-.154 1.665-1.399 2.806q-1.245 1.14-2.974 1.3V15q0 .213-.144.356t-.357.144t-.356-.144T7 15v-2.023q-1.729-.165-2.986-1.306q-1.258-1.14-1.387-2.811q-.03-.227.116-.352q.148-.125.324-.137q.177-.011.343.096q.166.108.223.387q.154 1.385 1.27 2.265Q6.022 12 7.5 12m8.5 5.73q.213 0 .356-.143q.144-.144.144-.357t-.144-.356t-.356-.143h-5q-.213 0-.356.144t-.144.357t.144.356t.356.143zm-2-3q.213 0 .356-.143q.144-.144.144-.357t-.144-.356t-.356-.143h-3q-.213 0-.356.144t-.144.357t.144.356t.356.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="a1kgi7btp"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.a1kgi7btp) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19 4v16zM7 21v-3.27h1V20h11V4h-7.5V3H20v18zm.5-11.115q-.639 0-1.07-.431T6 8.384V4q0-.639.43-1.07T7.5 2.5q.614 0 1.057.43T9 4v4.385q0 .638-.443 1.069t-1.057.43M7 15.5v-2.523q-1.833-.171-3.109-1.424Q2.616 10.3 2.616 8.5h1q0 1.52 1.163 2.51T7.5 12t2.721-.99t1.163-2.51h1q0 1.8-1.275 3.053Q9.833 12.806 8 12.977V15.5zm3.5 2.23h6v-1h-6zm0-3h4v-1h-4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="jxawh12vs"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jxawh12vs) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M19 4v16zM8.616 21q-.672 0-1.144-.472T7 19.385V17.73h1v1.654q0 .269.173.442t.443.173h9.769q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T18.385 4H11.5V3h6.885q.67 0 1.143.472q.472.472.472 1.144v14.769q0 .67-.472 1.143q-.472.472-1.143.472zM7.5 9.885q-.639 0-1.07-.431T6 8.384V4q0-.639.43-1.07T7.5 2.5q.614 0 1.057.43T9 4v4.385q0 .638-.443 1.069t-1.057.43M7 15.5v-2.523q-1.833-.171-3.109-1.424Q2.616 10.3 2.616 8.5h1q0 1.52 1.163 2.51T7.5 12t2.721-.99t1.163-2.51h1q0 1.8-1.275 3.053Q9.833 12.806 8 12.977V15.5zm3.5 2.23h6v-1h-6zm0-3h4v-1h-4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="jvcf9tb1k"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jvcf9tb1k) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.5 9.885q-.638 0-1.07-.432T6 8.385V4q0-.638.43-1.069T7.496 2.5q.618 0 1.06.431T9 4v4.385q0 .637-.44 1.068q-.442.431-1.06.431m-.357 5.472Q7 15.213 7 15v-2.023q-1.729-.165-2.986-1.306q-1.258-1.14-1.387-2.811q-.03-.227.116-.352q.148-.125.324-.137q.177-.011.343.096q.166.108.223.387q.154 1.385 1.27 2.265Q6.022 12 7.5 12q1.48 0 2.591-.878t1.27-2.25q.055-.288.225-.391t.347-.092t.324.136t.116.346q-.154 1.665-1.399 2.806q-1.245 1.14-2.974 1.3V15q0 .213-.144.356t-.357.144t-.356-.144M8.616 21q-.667 0-1.141-.475T7 19.386v-.838q0-.356.232-.586t.576-.23H16q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143h-4.615q-.412 0-.706-.295t-.294-.705t.294-.706t.706-.294H14q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143h-.571q-.17 0-.246-.15q-.077-.148.023-.29q.783-1.204 1.124-2.862q.342-1.657.414-3.281q.025-.421-.27-.727t-.738-.305h-1.428q-.344 0-.576-.233t-.232-.575v-1.5q0-.343.232-.576T12.308 3h6.077q.666 0 1.14.475T20 4.615v14.77q0 .666-.475 1.14t-1.14.475z");
|
|
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="jyjpndbru"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jyjpndbru) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.5 9.885q-.638 0-1.07-.432T6 8.385V4q0-.638.43-1.069T7.496 2.5q.618 0 1.06.431T9 4v4.385q0 .637-.44 1.068q-.442.431-1.06.431M7 15.5v-2.523q-1.833-.171-3.109-1.424Q2.616 10.3 2.616 8.5h1q0 1.52 1.163 2.51T7.5 12t2.721-.99t1.163-2.51h1q0 1.8-1.275 3.053Q9.833 12.806 8 12.977V15.5zM7 21v-3.27h9.5v-1h-6.115v-2H14.5v-1h-1.608q1.102-1.35 1.49-3.512t.387-4.102H11.5V3H20v18z");
|
|
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="w-5i72mel"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:speech-to-text-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.w-5i72mel) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.5 9.885q-.638 0-1.07-.432T6 8.385V4q0-.638.43-1.069T7.496 2.5q.618 0 1.06.431T9 4v4.385q0 .637-.44 1.068q-.442.431-1.06.431M7 15.5v-2.523q-1.833-.171-3.109-1.424Q2.616 10.3 2.616 8.5h1q0 1.52 1.163 2.51T7.5 12t2.721-.99t1.163-2.51h1q0 1.8-1.275 3.053Q9.833 12.806 8 12.977V15.5zM18.385 21h-9.77q-.666 0-1.14-.475T7 19.386V17.73h9.5v-1h-6.115v-2H14.5v-1h-1.608q1.102-1.35 1.49-3.513t.387-4.102H11.5V3h6.885q.666 0 1.14.475T20 4.615v14.77q0 .666-.475 1.14t-1.14.475");
|
|
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": 15676,
|
|
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": 1787805357
|
|
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.50",
|
|
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",
|
|
@@ -9102,6 +9102,22 @@
|
|
|
9102
9102
|
"types": "./types/gfwqskkx.d.ts",
|
|
9103
9103
|
"svelte": "./components/b/build-sharp.svelte"
|
|
9104
9104
|
},
|
|
9105
|
+
"./bullet-chart": {
|
|
9106
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9107
|
+
"svelte": "./components/b/bullet-chart.svelte"
|
|
9108
|
+
},
|
|
9109
|
+
"./bullet-chart-outline": {
|
|
9110
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9111
|
+
"svelte": "./components/b/bullet-chart-outline.svelte"
|
|
9112
|
+
},
|
|
9113
|
+
"./bullet-chart-outline-rounded": {
|
|
9114
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9115
|
+
"svelte": "./components/b/bullet-chart-outline-rounded.svelte"
|
|
9116
|
+
},
|
|
9117
|
+
"./bullet-chart-rounded": {
|
|
9118
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9119
|
+
"svelte": "./components/b/bullet-chart-rounded.svelte"
|
|
9120
|
+
},
|
|
9105
9121
|
"./bungalow": {
|
|
9106
9122
|
"types": "./types/gfwqskkx.d.ts",
|
|
9107
9123
|
"svelte": "./components/b/bungalow.svelte"
|
|
@@ -17830,6 +17846,14 @@
|
|
|
17830
17846
|
"types": "./types/gfwqskkx.d.ts",
|
|
17831
17847
|
"svelte": "./components/d/domain-disabled.svelte"
|
|
17832
17848
|
},
|
|
17849
|
+
"./domain-disabled-check": {
|
|
17850
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
17851
|
+
"svelte": "./components/d/domain-disabled-check.svelte"
|
|
17852
|
+
},
|
|
17853
|
+
"./domain-disabled-check-rounded": {
|
|
17854
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
17855
|
+
"svelte": "./components/d/domain-disabled-check-rounded.svelte"
|
|
17856
|
+
},
|
|
17833
17857
|
"./domain-disabled-rounded": {
|
|
17834
17858
|
"types": "./types/gfwqskkx.d.ts",
|
|
17835
17859
|
"svelte": "./components/d/domain-disabled-rounded.svelte"
|
|
@@ -18418,30 +18442,6 @@
|
|
|
18418
18442
|
"types": "./types/gfwqskkx.d.ts",
|
|
18419
18443
|
"svelte": "./components/d/drive-folder-upload-sharp.svelte"
|
|
18420
18444
|
},
|
|
18421
|
-
"./drive-fusiontable": {
|
|
18422
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18423
|
-
"svelte": "./components/d/drive-fusiontable.svelte"
|
|
18424
|
-
},
|
|
18425
|
-
"./drive-fusiontable-outline": {
|
|
18426
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18427
|
-
"svelte": "./components/d/drive-fusiontable-outline.svelte"
|
|
18428
|
-
},
|
|
18429
|
-
"./drive-fusiontable-outline-rounded": {
|
|
18430
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18431
|
-
"svelte": "./components/d/drive-fusiontable-outline-rounded.svelte"
|
|
18432
|
-
},
|
|
18433
|
-
"./drive-fusiontable-outline-sharp": {
|
|
18434
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18435
|
-
"svelte": "./components/d/drive-fusiontable-outline-sharp.svelte"
|
|
18436
|
-
},
|
|
18437
|
-
"./drive-fusiontable-rounded": {
|
|
18438
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18439
|
-
"svelte": "./components/d/drive-fusiontable-rounded.svelte"
|
|
18440
|
-
},
|
|
18441
|
-
"./drive-fusiontable-sharp": {
|
|
18442
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
18443
|
-
"svelte": "./components/d/drive-fusiontable-sharp.svelte"
|
|
18444
|
-
},
|
|
18445
18445
|
"./drone": {
|
|
18446
18446
|
"types": "./types/gfwqskkx.d.ts",
|
|
18447
18447
|
"svelte": "./components/d/drone.svelte"
|
|
@@ -32278,6 +32278,14 @@
|
|
|
32278
32278
|
"types": "./types/gfwqskkx.d.ts",
|
|
32279
32279
|
"svelte": "./components/l/list.svelte"
|
|
32280
32280
|
},
|
|
32281
|
+
"./list-2": {
|
|
32282
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
32283
|
+
"svelte": "./components/l/list-2.svelte"
|
|
32284
|
+
},
|
|
32285
|
+
"./list-2-rounded": {
|
|
32286
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
32287
|
+
"svelte": "./components/l/list-2-rounded.svelte"
|
|
32288
|
+
},
|
|
32281
32289
|
"./list-alt": {
|
|
32282
32290
|
"types": "./types/gfwqskkx.d.ts",
|
|
32283
32291
|
"svelte": "./components/l/list-alt.svelte"
|
|
@@ -50910,6 +50918,30 @@
|
|
|
50910
50918
|
"types": "./types/gfwqskkx.d.ts",
|
|
50911
50919
|
"svelte": "./components/s/sim-card-download-sharp.svelte"
|
|
50912
50920
|
},
|
|
50921
|
+
"./sim-card-lock": {
|
|
50922
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50923
|
+
"svelte": "./components/s/sim-card-lock.svelte"
|
|
50924
|
+
},
|
|
50925
|
+
"./sim-card-lock-outline": {
|
|
50926
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50927
|
+
"svelte": "./components/s/sim-card-lock-outline.svelte"
|
|
50928
|
+
},
|
|
50929
|
+
"./sim-card-lock-outline-rounded": {
|
|
50930
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50931
|
+
"svelte": "./components/s/sim-card-lock-outline-rounded.svelte"
|
|
50932
|
+
},
|
|
50933
|
+
"./sim-card-lock-outline-sharp": {
|
|
50934
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50935
|
+
"svelte": "./components/s/sim-card-lock-outline-sharp.svelte"
|
|
50936
|
+
},
|
|
50937
|
+
"./sim-card-lock-rounded": {
|
|
50938
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50939
|
+
"svelte": "./components/s/sim-card-lock-rounded.svelte"
|
|
50940
|
+
},
|
|
50941
|
+
"./sim-card-lock-sharp": {
|
|
50942
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50943
|
+
"svelte": "./components/s/sim-card-lock-sharp.svelte"
|
|
50944
|
+
},
|
|
50913
50945
|
"./sim-card-outline": {
|
|
50914
50946
|
"types": "./types/gfwqskkx.d.ts",
|
|
50915
50947
|
"svelte": "./components/s/sim-card-outline.svelte"
|
|
@@ -52254,6 +52286,30 @@
|
|
|
52254
52286
|
"types": "./types/gfwqskkx.d.ts",
|
|
52255
52287
|
"svelte": "./components/s/speech-to-text.svelte"
|
|
52256
52288
|
},
|
|
52289
|
+
"./speech-to-text-2": {
|
|
52290
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52291
|
+
"svelte": "./components/s/speech-to-text-2.svelte"
|
|
52292
|
+
},
|
|
52293
|
+
"./speech-to-text-2-outline": {
|
|
52294
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52295
|
+
"svelte": "./components/s/speech-to-text-2-outline.svelte"
|
|
52296
|
+
},
|
|
52297
|
+
"./speech-to-text-2-outline-rounded": {
|
|
52298
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52299
|
+
"svelte": "./components/s/speech-to-text-2-outline-rounded.svelte"
|
|
52300
|
+
},
|
|
52301
|
+
"./speech-to-text-2-outline-sharp": {
|
|
52302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52303
|
+
"svelte": "./components/s/speech-to-text-2-outline-sharp.svelte"
|
|
52304
|
+
},
|
|
52305
|
+
"./speech-to-text-2-rounded": {
|
|
52306
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52307
|
+
"svelte": "./components/s/speech-to-text-2-rounded.svelte"
|
|
52308
|
+
},
|
|
52309
|
+
"./speech-to-text-2-sharp": {
|
|
52310
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
52311
|
+
"svelte": "./components/s/speech-to-text-2-sharp.svelte"
|
|
52312
|
+
},
|
|
52257
52313
|
"./speech-to-text-rounded": {
|
|
52258
52314
|
"types": "./types/gfwqskkx.d.ts",
|
|
52259
52315
|
"svelte": "./components/s/speech-to-text-rounded.svelte"
|
|
@@ -68858,6 +68914,14 @@
|
|
|
68858
68914
|
"types": "./types/gfwqskkx.d.ts",
|
|
68859
68915
|
"svelte": "./components/b/bug-report-sharp.svelte"
|
|
68860
68916
|
},
|
|
68917
|
+
"./bullet-chart-outline-sharp": {
|
|
68918
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
68919
|
+
"svelte": "./components/b/bullet-chart-outline-sharp.svelte"
|
|
68920
|
+
},
|
|
68921
|
+
"./bullet-chart-sharp": {
|
|
68922
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
68923
|
+
"svelte": "./components/b/bullet-chart-sharp.svelte"
|
|
68924
|
+
},
|
|
68861
68925
|
"./bungalow-outline-sharp": {
|
|
68862
68926
|
"types": "./types/gfwqskkx.d.ts",
|
|
68863
68927
|
"svelte": "./components/b/bungalow-outline-sharp.svelte"
|
|
@@ -72210,6 +72274,22 @@
|
|
|
72210
72274
|
"types": "./types/gfwqskkx.d.ts",
|
|
72211
72275
|
"svelte": "./components/d/domain-add-sharp.svelte"
|
|
72212
72276
|
},
|
|
72277
|
+
"./domain-disabled-check-outline": {
|
|
72278
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72279
|
+
"svelte": "./components/d/domain-disabled-check-outline.svelte"
|
|
72280
|
+
},
|
|
72281
|
+
"./domain-disabled-check-outline-rounded": {
|
|
72282
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72283
|
+
"svelte": "./components/d/domain-disabled-check-outline-rounded.svelte"
|
|
72284
|
+
},
|
|
72285
|
+
"./domain-disabled-check-outline-sharp": {
|
|
72286
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72287
|
+
"svelte": "./components/d/domain-disabled-check-outline-sharp.svelte"
|
|
72288
|
+
},
|
|
72289
|
+
"./domain-disabled-check-sharp": {
|
|
72290
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72291
|
+
"svelte": "./components/d/domain-disabled-check-sharp.svelte"
|
|
72292
|
+
},
|
|
72213
72293
|
"./domain-disabled-outline": {
|
|
72214
72294
|
"types": "./types/gfwqskkx.d.ts",
|
|
72215
72295
|
"svelte": "./components/d/domain-disabled-outline.svelte"
|
|
@@ -72534,6 +72614,30 @@
|
|
|
72534
72614
|
"types": "./types/gfwqskkx.d.ts",
|
|
72535
72615
|
"svelte": "./components/d/drive-folder-upload-outline-sharp.svelte"
|
|
72536
72616
|
},
|
|
72617
|
+
"./drive-fusiontable": {
|
|
72618
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72619
|
+
"svelte": "./components/d/drive-fusiontable.svelte"
|
|
72620
|
+
},
|
|
72621
|
+
"./drive-fusiontable-outline": {
|
|
72622
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72623
|
+
"svelte": "./components/d/drive-fusiontable-outline.svelte"
|
|
72624
|
+
},
|
|
72625
|
+
"./drive-fusiontable-outline-rounded": {
|
|
72626
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72627
|
+
"svelte": "./components/d/drive-fusiontable-outline-rounded.svelte"
|
|
72628
|
+
},
|
|
72629
|
+
"./drive-fusiontable-outline-sharp": {
|
|
72630
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72631
|
+
"svelte": "./components/d/drive-fusiontable-outline-sharp.svelte"
|
|
72632
|
+
},
|
|
72633
|
+
"./drive-fusiontable-rounded": {
|
|
72634
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72635
|
+
"svelte": "./components/d/drive-fusiontable-rounded.svelte"
|
|
72636
|
+
},
|
|
72637
|
+
"./drive-fusiontable-sharp": {
|
|
72638
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
72639
|
+
"svelte": "./components/d/drive-fusiontable-sharp.svelte"
|
|
72640
|
+
},
|
|
72537
72641
|
"./drone-2-outline": {
|
|
72538
72642
|
"types": "./types/gfwqskkx.d.ts",
|
|
72539
72643
|
"svelte": "./components/d/drone-2-outline.svelte"
|
|
@@ -79966,6 +80070,22 @@
|
|
|
79966
80070
|
"types": "./types/gfwqskkx.d.ts",
|
|
79967
80071
|
"svelte": "./components/l/lips-sharp.svelte"
|
|
79968
80072
|
},
|
|
80073
|
+
"./list-2-outline": {
|
|
80074
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
80075
|
+
"svelte": "./components/l/list-2-outline.svelte"
|
|
80076
|
+
},
|
|
80077
|
+
"./list-2-outline-rounded": {
|
|
80078
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
80079
|
+
"svelte": "./components/l/list-2-outline-rounded.svelte"
|
|
80080
|
+
},
|
|
80081
|
+
"./list-2-outline-sharp": {
|
|
80082
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
80083
|
+
"svelte": "./components/l/list-2-outline-sharp.svelte"
|
|
80084
|
+
},
|
|
80085
|
+
"./list-2-sharp": {
|
|
80086
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
80087
|
+
"svelte": "./components/l/list-2-sharp.svelte"
|
|
80088
|
+
},
|
|
79969
80089
|
"./list-arrow-outline": {
|
|
79970
80090
|
"types": "./types/gfwqskkx.d.ts",
|
|
79971
80091
|
"svelte": "./components/l/list-arrow-outline.svelte"
|