@iconify-svelte/material-symbols-light 1.0.5 → 1.0.7
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/f/format-image-back-outline-rounded.svelte +16 -0
- package/components/f/format-image-back-outline.svelte +16 -0
- package/components/f/format-image-back-rounded.svelte +16 -0
- package/components/f/format-image-back.svelte +16 -0
- package/components/f/format-image-break-left-outline-rounded.svelte +16 -0
- package/components/f/format-image-break-left-outline.svelte +16 -0
- package/components/f/format-image-break-left-rounded.svelte +16 -0
- package/components/f/format-image-break-left.svelte +16 -0
- package/components/f/format-image-break-right-outline-rounded.svelte +16 -0
- package/components/f/format-image-break-right-outline.svelte +16 -0
- package/components/f/format-image-break-right-rounded.svelte +16 -0
- package/components/f/format-image-break-right.svelte +16 -0
- package/components/f/format-image-front-outline-rounded.svelte +16 -0
- package/components/f/format-image-front-outline.svelte +16 -0
- package/components/f/format-image-front-rounded.svelte +16 -0
- package/components/f/format-image-front.svelte +16 -0
- package/components/f/format-image-inline-left-outline-rounded.svelte +16 -0
- package/components/f/format-image-inline-left-outline.svelte +16 -0
- package/components/f/format-image-inline-left-rounded.svelte +16 -0
- package/components/f/format-image-inline-left.svelte +16 -0
- package/components/f/format-image-inline-right-outline-rounded.svelte +16 -0
- package/components/f/format-image-inline-right-outline.svelte +16 -0
- package/components/f/format-image-inline-right-rounded.svelte +16 -0
- package/components/f/format-image-inline-right.svelte +16 -0
- package/components/h/hourglass-check-outline-rounded.svelte +16 -0
- package/components/h/hourglass-check-outline.svelte +16 -0
- package/components/h/hourglass-check-rounded.svelte +16 -0
- package/components/h/hourglass-check.svelte +16 -0
- package/components/t/thermometer-alert-outline-rounded.svelte +16 -0
- package/components/t/thermometer-alert-outline.svelte +16 -0
- package/components/t/thermometer-alert-rounded.svelte +16 -0
- package/components/t/thermometer-alert.svelte +16 -0
- package/iconify.json +2 -2
- package/package.json +129 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="wt2q3ibq" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-back-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .wt2q3ibq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.5 20h-15q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20m0-3.75h-15q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h3.25V12.5H4.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h3.25V8.75H4.5q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h15q.213 0 .356.144t.144.357t-.144.356t-.356.143h-3.25v2.75h3.25q.213 0 .356.144t.144.357t-.144.356t-.356.143h-3.25v2.75h3.25q.213 0 .356.144t.144.357t-.144.356t-.356.143m-10.75-1h6.5V12.5h-6.5zm0-3.75h6.5V8.75h-6.5zM19.5 5h-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5M12 11.5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="g0r6yfb" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-back-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .g0r6yfb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-1h3.75V12.5H4v-1h3.75V8.75H4v-1h16v1h-3.75v2.75H20v1h-3.75v2.75H20v1zm4.75-1h6.5V12.5h-6.5zm0-3.75h6.5V8.75h-6.5zM4 5V4h16v1zm8 6.5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="ft3td-bv" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-back-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .ft3td-bv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.5 20h-15q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20m0-3.75h-15q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h3.25V12.5H4.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h3.25V8.75H4.5q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h15q.213 0 .356.144t.144.357t-.144.356t-.356.143h-3.25v2.75h3.25q.213 0 .356.144t.144.357t-.144.356t-.356.143h-3.25v2.75h3.25q.213 0 .356.144t.144.357t-.144.356t-.356.143M19.5 5h-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="qy-9ajc" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-back" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .qy-9ajc {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-1h3.75V12.5H4v-1h3.75V8.75H4v-1h16v1h-3.75v2.75H20v1h-3.75v2.75H20v1zM4 5V4h16v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="mpub1xcr" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-left-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .mpub1xcr {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zM4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232H4.808q-.343 0-.576-.232T4 15.442m1-.192h6.5v-6.5H5zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5zm3.75 7");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="gt5bygb" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-left-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .gt5bygb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-8.5h8.5v8.5zm1-1h6.5v-6.5H5zM4 5V4h16v1zm4.25 7");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="cwbhipbm" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-left-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .cwbhipbm {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zM4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232H4.808q-.343 0-.576-.232T4 15.442M4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="yjda7h" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-left" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .yjda7h {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-8.5h8.5v8.5zM4 5V4h16v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="e6b8_4bo" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-right-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .e6b8_4bo {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.5 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232h-6.884q-.343 0-.576-.232t-.232-.576m1-.192H19v-6.5h-6.5zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="ix3-3go" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-right-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .ix3-3go {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 5V4h16v1zm7.5 11.25v-8.5H20v8.5zm1-1H19v-6.5h-6.5zM4 20v-1h16v1zm11.75-8");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="yb0dwy7g" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-right-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .yb0dwy7g {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.5 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232h-6.884q-.343 0-.576-.232t-.232-.576M4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="i9ym_t" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-break-right" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .i9ym_t {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 5V4h16v1zm7.5 11.25v-8.5H20v8.5zM4 20v-1h16v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="a3a0n11p" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-front-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .a3a0n11p {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.5 20h-15q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20M5.866 15.75q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357m2.693.499q-.343 0-.576-.232t-.232-.576V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm10.942 0h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143m-10.75-1h6.5v-6.5h-6.5zM5.866 12q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357M19.5 12.5h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143M5.866 8.25q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357M19.5 8.75h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143m0-3.75h-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5M12 12");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="zky1t7b" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-front-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .zky1t7b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-1h1.866v1zm3.75 0v-8.5h8.5v8.5zm10.385 0v-1H20v1zm-9.385-1h6.5v-6.5h-6.5zM4 12.5v-1h1.866v1zm14.135 0v-1H20v1zM4 8.75v-1h1.866v1zm14.135 0v-1H20v1zM4 5V4h16v1zm8 7");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="a-igd7bl" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-front-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .a-igd7bl {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.5 20h-15q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20M5.866 15.75q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357m2.693.499q-.343 0-.576-.232t-.232-.576V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm10.942 0h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143M5.866 12q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357M19.5 12.5h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143M5.866 8.25q0 .214-.144.357t-.356.143H4.5q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h.865q.213 0 .357.144t.143.357M19.5 8.75h-.865q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h.865q.213 0 .356.144t.144.357t-.144.356t-.356.143m0-3.75h-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="m_46d4q" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-front" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .m_46d4q {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-1h1.866v1zm3.75 0v-8.5h8.5v8.5zm10.385 0v-1H20v1zM4 12.5v-1h1.866v1zm14.135 0v-1H20v1zM4 8.75v-1h1.866v1zm14.135 0v-1H20v1zM4 5V4h16v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="loee18bs" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-left-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .loee18bs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232H4.808q-.343 0-.576-.232T4 15.442m1-.192h6.5v-6.5H5zm10.77 1q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="k4a3gyb" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-left-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .k4a3gyb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-8.5h8.5v8.5zm1-1h6.5v-6.5H5zM4 5V4h16v1zm11.27 11.25v-1H20v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="ysg6mubq" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-left-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .ysg6mubq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232H4.808q-.343 0-.576-.232T4 15.442m11.77.808q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="nhy646b" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-left" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .nhy646b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm0-3.75v-8.5h8.5v8.5zM4 5V4h16v1zm11.27 11.25v-1H20v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="fu2rr-uf" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-right-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .fu2rr-uf {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.5 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232h-6.884q-.343 0-.576-.232t-.232-.576m1-.192H19v-6.5h-6.5zm-8 1q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h3.73q.213 0 .357.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="kkhc2cc" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-right-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .kkhc2cc {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm7.5-3.75v-8.5H20v8.5zm1-1H19v-6.5h-6.5zM4 5V4h16v1zm0 11.25v-1h4.73v1zM15.75 12");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="vsdjufbs" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-right-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .vsdjufbs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.5 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232h-6.884q-.343 0-.576-.232t-.232-.576m-7 .808q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h3.73q.213 0 .357.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-15q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="yl4l7_b" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:format-image-inline-right" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .yl4l7_b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20v-1h16v1zm7.5-3.75v-8.5H20v8.5zM4 5V4h16v1zm0 11.25v-1h4.73v1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="cl_cfqos" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:hourglass-check-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .cl_cfqos {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.808 20v-3q0-1.852 1.135-3.285T10.853 12q-1.774-.3-2.91-1.724T6.808 7V4H5.5q-.213 0-.356-.144T5 3.499t.144-.356T5.5 3h13q.213 0 .356.144t.144.357t-.144.356T18.5 4h-1.308v3q0 1.777-1.075 3.146t-2.746 1.675q.289.02.76.145t.99.451q-.373.154-.679.34t-.576.445q-.404-.223-.882-.347T12 12.73q-1.765 0-2.979 1.254Q7.808 15.239 7.808 17v3h4.108q.078.28.19.521q.113.24.246.479H5.5q-.213 0-.356-.144T5 20.499t.144-.356T5.5 20zM12 11.27q1.766 0 2.979-1.255T16.192 7V4H7.808v3q0 1.766 1.213 3.017Q10.234 11.27 12 11.27m6 10.789q-1.671 0-2.835-1.165Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058m-.7-3.097l-1.121-1.12q-.112-.112-.27-.122q-.157-.01-.288.121t-.13.28t.13.278l1.114 1.113q.242.243.565.243t.566-.243l2.513-2.513q.111-.112.121-.27q.01-.157-.121-.288t-.279-.13t-.279.13z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="x5_h7n0i" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:hourglass-check-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .x5_h7n0i {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 21v-1h1.808v-3q0-1.852 1.135-3.285T10.853 12q-1.774-.3-2.91-1.724T6.808 7V4H5V3h14v1h-1.808v3q0 1.777-1.075 3.146t-2.746 1.675q.289.02.76.145t.99.451q-.373.154-.679.34t-.576.445q-.404-.223-.882-.347T12 12.73q-1.765 0-2.979 1.252Q7.808 15.235 7.808 17v3h4.108q.078.28.19.521q.113.24.246.479zm7-9.73q1.766 0 2.979-1.253T16.192 7V4H7.808v3q0 1.766 1.213 3.017Q10.234 11.27 12 11.27m6 10.789q-1.671 0-2.835-1.165Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058m-.7-1.981l3.358-3.358l-.558-.558l-2.8 2.8l-1.4-1.4l-.558.558z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="nh--ve5t" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:hourglass-check-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .nh--ve5t {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5.5 21q-.213 0-.357-.143T5 20.5t.143-.357T5.5 20h1.308v-3q0-1.852 1.135-3.285T10.853 12q-1.774-.3-2.91-1.724T6.808 7V4H5.5q-.213 0-.357-.143T5 3.5t.143-.357T5.5 3h13q.214 0 .357.143T19 3.5t-.143.357T18.5 4h-1.308v3q0 1.777-1.075 3.146t-2.746 1.675q.018.089.267.36q.249.273.606.808q-1.238.842-1.933 2.182t-.695 2.887q0 .786.19 1.523T12.352 21zM18 22.058q-1.671 0-2.835-1.165Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058m-.7-3.097l-1.121-1.12q-.112-.112-.27-.122q-.157-.01-.288.121t-.13.28t.13.278l1.114 1.113q.242.243.565.243t.566-.243l2.513-2.513q.111-.112.121-.27q.01-.157-.121-.288t-.279-.13t-.279.13z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="oo41yibw" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:hourglass-check" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .oo41yibw {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 21v-1h1.808v-3q0-1.852 1.135-3.285T10.853 12q-1.774-.3-2.91-1.724T6.808 7V4H5V3h14v1h-1.808v3q0 1.777-1.075 3.146t-2.746 1.675q.018.089.267.36q.249.273.606.808q-1.238.842-1.933 2.182t-.695 2.887q0 .786.19 1.523T12.352 21zm13 1.058q-1.671 0-2.835-1.165Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058m-.7-1.981l3.358-3.358l-.558-.558l-2.8 2.8l-1.4-1.4l-.558.558z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="y88wrsbk" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:thermometer-alert-outline-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .y88wrsbk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.764 20q-1.658 0-2.826-1.164Q4.768 17.67 4.768 16q0-1.084.544-1.987t1.456-1.475V6q0-.846.577-1.423T8.77 4t1.423.577T10.77 6v6.539q.912.57 1.446 1.474q.535.903.554 1.987q-.019 1.671-1.184 2.836Q10.422 20 8.764 20m.006-1q1.25 0 2.125-.875T11.77 16q0-.725-.312-1.35t-.888-1.05l-.8-.6V6q0-.425-.287-.712T8.769 5t-.712.288T7.769 6v7l-.8.6q-.575.425-.887 1.05T5.769 16q0 1.25.875 2.125T8.77 19m8.732-7.77q-.31 0-.521-.21q-.21-.209-.21-.52t.21-.52q.209-.21.52-.21t.52.21q.21.209.21.52t-.21.52q-.209.21-.52.21m0-3.23q-.214 0-.357-.144T17 7.5v-3q0-.213.144-.356T17.501 4t.356.144T18 4.5v3q0 .213-.144.356T17.499 8");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="eftuwy2u" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:thermometer-alert-outline" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .eftuwy2u {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.764 20q-1.658 0-2.826-1.164Q4.768 17.67 4.768 16q0-1.084.544-1.987t1.456-1.475V6q0-.846.577-1.423T8.77 4t1.423.577T10.77 6v6.539q.912.57 1.446 1.474q.535.903.554 1.987q-.019 1.671-1.184 2.836Q10.422 20 8.764 20m.006-1q1.25 0 2.125-.875T11.77 16q0-.725-.312-1.35t-.888-1.05l-.8-.6V6q0-.425-.287-.712T8.769 5t-.712.288T7.769 6v7l-.8.6q-.575.425-.887 1.05T5.769 16q0 1.25.875 2.125T8.77 19m8.732-7.77q-.31 0-.521-.21q-.21-.209-.21-.52t.21-.52q.209-.21.52-.21t.52.21q.21.209.21.52t-.21.52q-.209.21-.52.21M17 8V4h1v4z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="zr6ekibo" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:thermometer-alert-rounded" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .zr6ekibo {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.5 11.23q-.31 0-.52-.21q-.21-.209-.21-.52t.21-.52q.209-.21.52-.21t.52.21q.21.209.21.52t-.21.52q-.209.21-.52.21m0-3.23q-.214 0-.357-.144T17 7.5v-3q0-.213.144-.356T17.501 4t.356.144T18 4.5v3q0 .213-.144.356T17.499 8M8.764 20q-1.658 0-2.826-1.164Q4.768 17.67 4.768 16q0-1.084.544-1.987t1.456-1.475V6q0-.846.577-1.423T8.77 4t1.423.577T10.77 6v6.539q.912.57 1.446 1.474q.535.903.554 1.987q-.019 1.671-1.184 2.836Q10.422 20 8.764 20M7.77 10h2V6q0-.425-.287-.712T8.769 5t-.712.288T7.769 6z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
let {width, height, ...props} = $props();
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="tiwsjybk" />`;
|
|
8
|
+
</script>
|
|
9
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:thermometer-alert" {...props}></Icon>
|
|
10
|
+
<style>
|
|
11
|
+
:global .tiwsjybk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.5 11.23q-.31 0-.52-.21q-.21-.209-.21-.52t.21-.52q.209-.21.52-.21t.52.21q.21.209.21.52t-.21.52q-.209.21-.52.21M17 8V4h1v4zM8.764 20q-1.658 0-2.826-1.164Q4.768 17.67 4.768 16q0-1.084.544-1.987t1.456-1.475V6q0-.846.577-1.423T8.77 4t1.423.577T10.77 6v6.539q.912.57 1.446 1.474q.535.903.554 1.987q-.019 1.671-1.184 2.836Q10.422 20 8.764 20M7.77 10h2V6q0-.425-.287-.712T8.769 5t-.712.288T7.769 6z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</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": 15114,
|
|
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": 1763101845
|
|
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.7",
|
|
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",
|
|
@@ -23422,6 +23422,102 @@
|
|
|
23422
23422
|
"types": "./types/gfwqskkx.d.ts",
|
|
23423
23423
|
"svelte": "./components/f/format-h6-rounded.svelte"
|
|
23424
23424
|
},
|
|
23425
|
+
"./format-image-back": {
|
|
23426
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23427
|
+
"svelte": "./components/f/format-image-back.svelte"
|
|
23428
|
+
},
|
|
23429
|
+
"./format-image-back-outline": {
|
|
23430
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23431
|
+
"svelte": "./components/f/format-image-back-outline.svelte"
|
|
23432
|
+
},
|
|
23433
|
+
"./format-image-back-outline-rounded": {
|
|
23434
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23435
|
+
"svelte": "./components/f/format-image-back-outline-rounded.svelte"
|
|
23436
|
+
},
|
|
23437
|
+
"./format-image-back-rounded": {
|
|
23438
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23439
|
+
"svelte": "./components/f/format-image-back-rounded.svelte"
|
|
23440
|
+
},
|
|
23441
|
+
"./format-image-break-left": {
|
|
23442
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23443
|
+
"svelte": "./components/f/format-image-break-left.svelte"
|
|
23444
|
+
},
|
|
23445
|
+
"./format-image-break-left-outline": {
|
|
23446
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23447
|
+
"svelte": "./components/f/format-image-break-left-outline.svelte"
|
|
23448
|
+
},
|
|
23449
|
+
"./format-image-break-left-outline-rounded": {
|
|
23450
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23451
|
+
"svelte": "./components/f/format-image-break-left-outline-rounded.svelte"
|
|
23452
|
+
},
|
|
23453
|
+
"./format-image-break-left-rounded": {
|
|
23454
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23455
|
+
"svelte": "./components/f/format-image-break-left-rounded.svelte"
|
|
23456
|
+
},
|
|
23457
|
+
"./format-image-break-right": {
|
|
23458
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23459
|
+
"svelte": "./components/f/format-image-break-right.svelte"
|
|
23460
|
+
},
|
|
23461
|
+
"./format-image-break-right-outline": {
|
|
23462
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23463
|
+
"svelte": "./components/f/format-image-break-right-outline.svelte"
|
|
23464
|
+
},
|
|
23465
|
+
"./format-image-break-right-outline-rounded": {
|
|
23466
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23467
|
+
"svelte": "./components/f/format-image-break-right-outline-rounded.svelte"
|
|
23468
|
+
},
|
|
23469
|
+
"./format-image-break-right-rounded": {
|
|
23470
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23471
|
+
"svelte": "./components/f/format-image-break-right-rounded.svelte"
|
|
23472
|
+
},
|
|
23473
|
+
"./format-image-front": {
|
|
23474
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23475
|
+
"svelte": "./components/f/format-image-front.svelte"
|
|
23476
|
+
},
|
|
23477
|
+
"./format-image-front-outline": {
|
|
23478
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23479
|
+
"svelte": "./components/f/format-image-front-outline.svelte"
|
|
23480
|
+
},
|
|
23481
|
+
"./format-image-front-outline-rounded": {
|
|
23482
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23483
|
+
"svelte": "./components/f/format-image-front-outline-rounded.svelte"
|
|
23484
|
+
},
|
|
23485
|
+
"./format-image-front-rounded": {
|
|
23486
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23487
|
+
"svelte": "./components/f/format-image-front-rounded.svelte"
|
|
23488
|
+
},
|
|
23489
|
+
"./format-image-inline-left": {
|
|
23490
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23491
|
+
"svelte": "./components/f/format-image-inline-left.svelte"
|
|
23492
|
+
},
|
|
23493
|
+
"./format-image-inline-left-outline": {
|
|
23494
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23495
|
+
"svelte": "./components/f/format-image-inline-left-outline.svelte"
|
|
23496
|
+
},
|
|
23497
|
+
"./format-image-inline-left-outline-rounded": {
|
|
23498
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23499
|
+
"svelte": "./components/f/format-image-inline-left-outline-rounded.svelte"
|
|
23500
|
+
},
|
|
23501
|
+
"./format-image-inline-left-rounded": {
|
|
23502
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23503
|
+
"svelte": "./components/f/format-image-inline-left-rounded.svelte"
|
|
23504
|
+
},
|
|
23505
|
+
"./format-image-inline-right": {
|
|
23506
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23507
|
+
"svelte": "./components/f/format-image-inline-right.svelte"
|
|
23508
|
+
},
|
|
23509
|
+
"./format-image-inline-right-outline": {
|
|
23510
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23511
|
+
"svelte": "./components/f/format-image-inline-right-outline.svelte"
|
|
23512
|
+
},
|
|
23513
|
+
"./format-image-inline-right-outline-rounded": {
|
|
23514
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23515
|
+
"svelte": "./components/f/format-image-inline-right-outline-rounded.svelte"
|
|
23516
|
+
},
|
|
23517
|
+
"./format-image-inline-right-rounded": {
|
|
23518
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23519
|
+
"svelte": "./components/f/format-image-inline-right-rounded.svelte"
|
|
23520
|
+
},
|
|
23425
23521
|
"./format-image-left": {
|
|
23426
23522
|
"types": "./types/gfwqskkx.d.ts",
|
|
23427
23523
|
"svelte": "./components/f/format-image-left.svelte"
|
|
@@ -27546,6 +27642,22 @@
|
|
|
27546
27642
|
"types": "./types/gfwqskkx.d.ts",
|
|
27547
27643
|
"svelte": "./components/h/hourglass-bottom-rounded.svelte"
|
|
27548
27644
|
},
|
|
27645
|
+
"./hourglass-check": {
|
|
27646
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27647
|
+
"svelte": "./components/h/hourglass-check.svelte"
|
|
27648
|
+
},
|
|
27649
|
+
"./hourglass-check-outline": {
|
|
27650
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27651
|
+
"svelte": "./components/h/hourglass-check-outline.svelte"
|
|
27652
|
+
},
|
|
27653
|
+
"./hourglass-check-outline-rounded": {
|
|
27654
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27655
|
+
"svelte": "./components/h/hourglass-check-outline-rounded.svelte"
|
|
27656
|
+
},
|
|
27657
|
+
"./hourglass-check-rounded": {
|
|
27658
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27659
|
+
"svelte": "./components/h/hourglass-check-rounded.svelte"
|
|
27660
|
+
},
|
|
27549
27661
|
"./hourglass-disabled": {
|
|
27550
27662
|
"types": "./types/gfwqskkx.d.ts",
|
|
27551
27663
|
"svelte": "./components/h/hourglass-disabled.svelte"
|
|
@@ -54898,6 +55010,22 @@
|
|
|
54898
55010
|
"types": "./types/gfwqskkx.d.ts",
|
|
54899
55011
|
"svelte": "./components/t/thermometer-add-rounded.svelte"
|
|
54900
55012
|
},
|
|
55013
|
+
"./thermometer-alert": {
|
|
55014
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
55015
|
+
"svelte": "./components/t/thermometer-alert.svelte"
|
|
55016
|
+
},
|
|
55017
|
+
"./thermometer-alert-outline": {
|
|
55018
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
55019
|
+
"svelte": "./components/t/thermometer-alert-outline.svelte"
|
|
55020
|
+
},
|
|
55021
|
+
"./thermometer-alert-outline-rounded": {
|
|
55022
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
55023
|
+
"svelte": "./components/t/thermometer-alert-outline-rounded.svelte"
|
|
55024
|
+
},
|
|
55025
|
+
"./thermometer-alert-rounded": {
|
|
55026
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
55027
|
+
"svelte": "./components/t/thermometer-alert-rounded.svelte"
|
|
55028
|
+
},
|
|
54901
55029
|
"./thermometer-gain": {
|
|
54902
55030
|
"types": "./types/gfwqskkx.d.ts",
|
|
54903
55031
|
"svelte": "./components/t/thermometer-gain.svelte"
|