@iconify-svelte/material-symbols-light 1.0.31 → 1.0.33
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/2/2d-2-outline-rounded.svelte +17 -0
- package/components/2/2d-2-rounded.svelte +17 -0
- package/components/2/2d-2.svelte +17 -0
- package/components/3/3d-2-rounded.svelte +17 -0
- package/components/3/3d-2.svelte +17 -0
- package/components/c/crop-2-3-outline-sharp.svelte +17 -0
- package/components/c/crop-2-3-outline.svelte +17 -0
- package/components/c/crop-2-3-sharp.svelte +17 -0
- package/components/c/crop-2-3.svelte +17 -0
- package/components/c/crop-21-9-outline-sharp.svelte +17 -0
- package/components/c/crop-21-9-outline.svelte +17 -0
- package/components/c/crop-21-9-sharp.svelte +17 -0
- package/components/c/crop-21-9.svelte +17 -0
- package/components/v/video-frame-copy-rounded.svelte +17 -0
- package/components/v/video-frame-copy-sharp.svelte +17 -0
- package/components/v/video-frame-copy.svelte +17 -0
- package/components/v/video-frame-save-rounded.svelte +17 -0
- package/components/v/video-frame-save-sharp.svelte +17 -0
- package/components/v/video-frame-save.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +77 -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="nx30a79cc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:2d-2-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.nx30a79cc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.073 16.217H5.838q-.16 0-.257-.098t-.098-.257v-.454q0-.067.018-.138t.086-.126q.967-.736 1.67-1.356t1.235-1.276q.477-.589.735-1.124t.258-1.172q0-.787-.454-1.286t-1.092-.5q-.56 0-.96.354q-.398.353-.54.876q-.06.17-.234.248t-.345.004q-.216-.08-.281-.3q-.065-.221.008-.456q.196-.762.906-1.2t1.465-.437q1.19 0 1.841.656t.651 1.798q0 .868-.34 1.629q-.34.762-.89 1.429q-.518.66-1.173 1.224t-1.264 1.037l.011.018h3.298q.196 0 .316.129q.119.128.119.325q0 .196-.129.325q-.129.128-.325.128m2.877-.005q-.348 0-.578-.23t-.23-.578v-6.89q0-.348.23-.578t.578-.23h2.042q1.887 0 2.876 1.155t.99 3.1t-.993 3.098t-2.873 1.153zm.17-.954h1.85q1.457 0 2.187-.89q.73-.891.73-2.406t-.73-2.409t-2.188-.894h-1.85z");
|
|
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="nv4ywebam"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:2d-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.nv4ywebam) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M10.073 16.217H5.838q-.16 0-.257-.098t-.098-.257v-.454q0-.067.018-.138t.086-.126q.967-.736 1.67-1.356t1.235-1.276q.477-.589.735-1.119t.258-1.126q0-.826-.454-1.331T7.939 8.43q-.56 0-.96.353q-.398.353-.54.876q-.06.17-.234.248t-.345.004q-.216-.08-.281-.3q-.065-.221.008-.456q.196-.762.906-1.2t1.465-.437q1.19 0 1.841.656t.651 1.798q0 .868-.34 1.629q-.34.762-.89 1.429q-.518.66-1.173 1.224t-1.264 1.037l.011.018h3.298q.196 0 .316.129q.119.128.119.325q0 .196-.129.325q-.129.128-.325.128m2.877-.005q-.348 0-.578-.23t-.23-.578v-6.89q0-.348.23-.578t.578-.23h2.042q1.887 0 2.876 1.155t.99 3.1t-.993 3.098t-2.873 1.153zm.17-.954h1.85q1.457 0 2.187-.89q.73-.891.73-2.406t-.73-2.409t-2.188-.894h-1.85z");
|
|
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="za1qhvbvn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:2d-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.za1qhvbvn) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.483 16.217v-.969q.967-.736 1.722-1.408q.755-.673 1.287-1.328q.427-.539.71-1.153q.283-.615.283-1.293q0-.777-.413-1.206q-.412-.43-1.133-.43q-.697 0-1.11.446q-.413.445-.481 1.159l-.917-.106q.054-1.023.734-1.716t1.793-.694q1.19 0 1.841.656t.651 1.798q0 .868-.34 1.629q-.34.762-.89 1.429q-.518.66-1.173 1.224t-1.264 1.037l.011.018h3.733v.907zm6.66-.005V7.706h2.85q1.886 0 2.875 1.156t.99 3.1t-.993 3.097t-2.873 1.153zm.976-.954h1.85q1.458 0 2.188-.89q.73-.891.73-2.406t-.73-2.409t-2.188-.893h-1.85z");
|
|
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="je57mqbno"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:3d-2-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.je57mqbno) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.962 16.217q-.348 0-.578-.23t-.23-.577V8.52q0-.349.23-.579t.578-.23h2.036q1.887 0 2.876 1.153q.99 1.153.99 3.097t-.993 3.1t-2.873 1.156zm.163-.953h1.856q1.458 0 2.185-.894q.726-.893.726-2.408q0-1.516-.726-2.409q-.727-.893-2.185-.893h-1.856zm-5.263 1.14q-.875 0-1.489-.341t-.917-1.005q-.079-.177-.006-.389t.25-.29t.376-.009t.303.247q.2.42.582.642t.92.222q.758 0 1.192-.445q.435-.445.435-1.197q0-.708-.498-1.172t-1.304-.463h-.05q-.196 0-.315-.129q-.12-.129-.12-.325t.129-.325t.325-.129q.692 0 1.125-.407t.433-1.041t-.401-1.028t-1.078-.395q-.488 0-.833.22t-.544.626q-.079.177-.265.229t-.364-.027t-.229-.265t.027-.364q.131-.261.295-.47q.165-.208.382-.37q.304-.237.685-.358q.38-.121.852-.121q1.067 0 1.756.61q.69.611.69 1.61q0 .653-.318 1.137t-.869.776v.061q.673.256 1.064.831q.39.575.39 1.323q0 1.187-.707 1.859q-.706.672-1.904.672");
|
|
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="jnd7gg67n"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:3d-2" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jnd7gg67n) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M12.154 16.217V7.712h2.844q1.887 0 2.876 1.153q.99 1.152.99 3.097t-.993 3.1t-2.873 1.155zm.971-.953h1.856q1.458 0 2.185-.894q.726-.893.726-2.408q0-1.516-.726-2.409q-.727-.894-2.185-.894h-1.856zm-5.264 1.14q-1.128 0-1.823-.58t-.825-1.678l.916-.254q.125.745.566 1.167t1.186.422q.757 0 1.192-.445t.435-1.197q0-.708-.498-1.172q-.499-.463-1.304-.463H7.02v-.908h.654q.692 0 1.125-.408t.433-1.04t-.401-1.028t-1.078-.395q-.613 0-1.005.348t-.522.962l-.91-.123q.123-.98.79-1.533q.668-.554 1.652-.554q1.068 0 1.757.61q.69.611.69 1.61q0 .653-.318 1.137t-.869.776v.061q.673.256 1.064.831q.39.575.39 1.323q0 1.187-.707 1.859q-.706.672-1.904.672");
|
|
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="ak1734bru"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-2-3-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ak1734bru) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7 21V3h10v18zm1-1h8V4H8zm0 0V4z");
|
|
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="qhugidcnd"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-2-3-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.qhugidcnd) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.616 21q-.691 0-1.153-.462T7 19.385V4.615q0-.69.463-1.152T8.616 3h6.769q.69 0 1.153.463T17 4.616v14.769q0 .69-.462 1.153T15.385 21zm0-1h6.769q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T15.385 4h-6.77q-.269 0-.442.173T8 4.616v14.769q0 .269.173.442t.443.173M8 20V4z");
|
|
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="zm19ufxjq"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-2-3-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.zm19ufxjq) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7 21V3h10v18z");
|
|
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="lhxy32tfz"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-2-3" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.lhxy32tfz) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M8.616 21q-.691 0-1.153-.462T7 19.385V4.615q0-.69.463-1.152T8.616 3h6.769q.69 0 1.153.463T17 4.616v14.769q0 .69-.462 1.153T15.385 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="koymt7bfv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-21-9-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.koymt7bfv) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 16V8h18v8zm1-1h16V9H4zm0 0V9z");
|
|
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="h0xxjgbtg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-21-9-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.h0xxjgbtg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.616 16q-.691 0-1.153-.462T3 14.385v-4.77q0-.69.463-1.152T4.615 8h14.77q.69 0 1.152.463T21 9.616v4.769q0 .69-.463 1.153T19.385 16zm0-1h14.769q.269 0 .442-.173t.173-.442v-4.77q0-.269-.173-.442T19.385 9H4.615q-.269 0-.442.173T4 9.616v4.769q0 .269.173.442t.443.173M4 15V9z");
|
|
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="cytol_8_c"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-21-9-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.cytol_8_c) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3 16V8h18v8z");
|
|
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="u5ubt8i7s"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:crop-21-9" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.u5ubt8i7s) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M4.616 16q-.691 0-1.153-.462T3 14.385v-4.77q0-.69.463-1.152T4.615 8h14.77q.69 0 1.152.463T21 9.616v4.769q0 .69-.463 1.153T19.385 16z");
|
|
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="sjmdk7bkx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-copy-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.sjmdk7bkx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.616 19.77q-.672 0-1.144-.473Q2 18.825 2 18.154V8.577q0-.213.143-.357t.357-.143t.357.143t.143.357v9.577q0 .269.173.442t.443.173H17.5q.214 0 .357.144t.143.356t-.143.357t-.357.143zM21.143 7.856Q21 7.714 21 7.5V5.616q0-.231-.192-.424T20.385 5H18.5q-.213 0-.357-.143T18 4.5t.143-.357T18.5 4h1.885q.69 0 1.152.463T22 5.616V7.5q0 .214-.143.357T21.5 8t-.357-.143m-16 0Q5 7.714 5 7.5V5.616q0-.691.463-1.153T6.616 4H8.5q.214 0 .357.143T9 4.5t-.143.357T8.5 5H6.616q-.231 0-.424.192T6 5.616V7.5q0 .214-.143.357T5.5 8t-.357-.143M18.5 16.769q-.213 0-.357-.143T18 16.269t.143-.356t.357-.144h1.885q.23 0 .423-.192t.192-.423v-1.885q0-.213.143-.357t.357-.143t.357.143t.143.357v1.885q0 .69-.462 1.153t-1.153.462zm-11.885 0q-.69 0-1.153-.462T5 15.154v-1.885q0-.213.143-.357t.357-.143t.357.143t.143.357v1.885q0 .23.192.423t.423.192H8.5q.214 0 .357.143T9 16.27t-.143.357t-.357.143zm6.198-3.692l3.704-2.344q.187-.131.187-.349t-.187-.348l-3.703-2.344q-.212-.136-.417-.015t-.205.363v4.689q0 .242.205.363t.417-.015");
|
|
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="zi660qb7d"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-copy-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.zi660qb7d) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M2 19.77V8.076h1v10.692h15v1zM21 8V5h-3V4h4v4zM5 8V4h4v1H6v3zm13 8.77v-1h3v-3h1v4zm-13 0v-4h1v3h3v1zm7.192-3.309l4.86-3.077l-4.86-3.076z");
|
|
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="g717scbmi"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-copy" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.g717scbmi) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M3.616 19.77q-.672 0-1.144-.473Q2 18.825 2 18.154V8.077h1v10.077q0 .269.173.442t.443.173H18v1zM21 8V5.616q0-.231-.192-.424T20.385 5H18V4h2.385q.69 0 1.152.463T22 5.616V8zM5 8V5.616q0-.691.463-1.153T6.616 4H9v1H6.616q-.231 0-.424.192T6 5.616V8zm13 8.77v-1h2.385q.23 0 .423-.193q.192-.192.192-.423v-2.385h1v2.385q0 .69-.462 1.153t-1.153.462zm-11.385 0q-.69 0-1.153-.463T5 15.154v-2.385h1v2.385q0 .23.192.423t.423.192H9v1zm5.577-3.309l4.86-3.077l-4.86-3.076z");
|
|
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="wy3vrac9p"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-save-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.wy3vrac9p) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M20.143 9.857Q20 9.714 20 9.5V6.616q0-.231-.192-.424T19.385 6H16.5q-.213 0-.357-.143T16 5.5t.143-.357T16.5 5h2.885q.69 0 1.152.463T21 6.616V9.5q0 .214-.143.357T20.5 10t-.357-.143M3.5 10q-.213 0-.357-.143T3 9.5V6.616q0-.691.463-1.153T4.615 5H7.5q.214 0 .357.143T8 5.5t-.143.357T7.5 6H4.616q-.231 0-.424.192T4 6.616V9.5q0 .214-.143.357T3.5 10m1.116 9q-.691 0-1.153-.462T3 17.384V14.5q0-.213.143-.357T3.5 14t.357.143T4 14.5v2.885q0 .23.192.423t.423.192H7.5q.214 0 .357.143T8 18.5t-.143.357T7.5 19zM10 14.844V9.156q0-.242.205-.354t.416.025l4.421 2.825q.187.13.187.348t-.187.348l-4.42 2.825q-.213.137-.417.025T10 14.844m6.27 8.65q-.214 0-.358-.143t-.143-.357t.143-.356t.357-.144h6q.214 0 .357.144t.143.356t-.143.357t-.357.143zm2.5-4.652v-4.38q0-.214.143-.357t.356-.143t.357.143t.143.357v4.38l1.747-1.74q.14-.14.34-.15q.202-.01.367.156q.16.16.16.354t-.16.354l-2.661 2.661q-.131.13-.293.13t-.292-.13l-2.661-2.661q-.141-.141-.153-.342t.153-.366q.159-.16.35-.163q.192-.003.357.157z");
|
|
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="hm03oybxc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-save-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.hm03oybxc) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M20 10V6h-4V5h5v5zM3 10V5h5v1H4v4zm0 9v-5h1v4h4v1zm7-3.423V8.423L15.577 12zm5.77 7.917v-1h7v1zm3.5-2.725l-3.308-3.307l.707-.708l2.1 2.088v-4.88h1v4.88l2.1-2.088l.708.707z");
|
|
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="v4fd--bea"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:video-frame-save" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v4fd--bea) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M20 10V6.616q0-.231-.192-.424T19.385 6H16V5h3.385q.69 0 1.152.463T21 6.616V10zM3 10V6.616q0-.691.463-1.153T4.615 5H8v1H4.616q-.231 0-.424.192T4 6.616V10zm1.616 9q-.691 0-1.153-.462T3 17.384V14h1v3.385q0 .23.192.423t.423.192H8v1zM10 15.577V8.423L15.577 12zm5.77 7.917v-1h7v1zm3.5-2.725l-3.308-3.307l.707-.708l2.1 2.088v-4.88h1v4.88l2.1-2.088l.708.707z");
|
|
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": 15466,
|
|
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": 1778908408
|
|
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.33",
|
|
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",
|
|
@@ -522,6 +522,18 @@
|
|
|
522
522
|
"types": "./types/gfwqskkx.d.ts",
|
|
523
523
|
"svelte": "./components/2/2d.svelte"
|
|
524
524
|
},
|
|
525
|
+
"./2d-2": {
|
|
526
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
527
|
+
"svelte": "./components/2/2d-2.svelte"
|
|
528
|
+
},
|
|
529
|
+
"./2d-2-outline-rounded": {
|
|
530
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
531
|
+
"svelte": "./components/2/2d-2-outline-rounded.svelte"
|
|
532
|
+
},
|
|
533
|
+
"./2d-2-rounded": {
|
|
534
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
535
|
+
"svelte": "./components/2/2d-2-rounded.svelte"
|
|
536
|
+
},
|
|
525
537
|
"./2d-outline": {
|
|
526
538
|
"types": "./types/gfwqskkx.d.ts",
|
|
527
539
|
"svelte": "./components/2/2d-outline.svelte"
|
|
@@ -646,6 +658,14 @@
|
|
|
646
658
|
"types": "./types/gfwqskkx.d.ts",
|
|
647
659
|
"svelte": "./components/3/3d.svelte"
|
|
648
660
|
},
|
|
661
|
+
"./3d-2": {
|
|
662
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
663
|
+
"svelte": "./components/3/3d-2.svelte"
|
|
664
|
+
},
|
|
665
|
+
"./3d-2-rounded": {
|
|
666
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
667
|
+
"svelte": "./components/3/3d-2-rounded.svelte"
|
|
668
|
+
},
|
|
649
669
|
"./3d-outline": {
|
|
650
670
|
"types": "./types/gfwqskkx.d.ts",
|
|
651
671
|
"svelte": "./components/3/3d-outline.svelte"
|
|
@@ -14502,6 +14522,38 @@
|
|
|
14502
14522
|
"types": "./types/gfwqskkx.d.ts",
|
|
14503
14523
|
"svelte": "./components/c/crop-16-9-sharp.svelte"
|
|
14504
14524
|
},
|
|
14525
|
+
"./crop-2-3": {
|
|
14526
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14527
|
+
"svelte": "./components/c/crop-2-3.svelte"
|
|
14528
|
+
},
|
|
14529
|
+
"./crop-2-3-outline": {
|
|
14530
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14531
|
+
"svelte": "./components/c/crop-2-3-outline.svelte"
|
|
14532
|
+
},
|
|
14533
|
+
"./crop-2-3-outline-sharp": {
|
|
14534
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14535
|
+
"svelte": "./components/c/crop-2-3-outline-sharp.svelte"
|
|
14536
|
+
},
|
|
14537
|
+
"./crop-2-3-sharp": {
|
|
14538
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14539
|
+
"svelte": "./components/c/crop-2-3-sharp.svelte"
|
|
14540
|
+
},
|
|
14541
|
+
"./crop-21-9": {
|
|
14542
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14543
|
+
"svelte": "./components/c/crop-21-9.svelte"
|
|
14544
|
+
},
|
|
14545
|
+
"./crop-21-9-outline": {
|
|
14546
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14547
|
+
"svelte": "./components/c/crop-21-9-outline.svelte"
|
|
14548
|
+
},
|
|
14549
|
+
"./crop-21-9-outline-sharp": {
|
|
14550
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14551
|
+
"svelte": "./components/c/crop-21-9-outline-sharp.svelte"
|
|
14552
|
+
},
|
|
14553
|
+
"./crop-21-9-sharp": {
|
|
14554
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14555
|
+
"svelte": "./components/c/crop-21-9-sharp.svelte"
|
|
14556
|
+
},
|
|
14505
14557
|
"./crop-3-2": {
|
|
14506
14558
|
"types": "./types/gfwqskkx.d.ts",
|
|
14507
14559
|
"svelte": "./components/c/crop-3-2.svelte"
|
|
@@ -59622,6 +59674,30 @@
|
|
|
59622
59674
|
"types": "./types/gfwqskkx.d.ts",
|
|
59623
59675
|
"svelte": "./components/v/video-file-sharp.svelte"
|
|
59624
59676
|
},
|
|
59677
|
+
"./video-frame-copy": {
|
|
59678
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59679
|
+
"svelte": "./components/v/video-frame-copy.svelte"
|
|
59680
|
+
},
|
|
59681
|
+
"./video-frame-copy-rounded": {
|
|
59682
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59683
|
+
"svelte": "./components/v/video-frame-copy-rounded.svelte"
|
|
59684
|
+
},
|
|
59685
|
+
"./video-frame-copy-sharp": {
|
|
59686
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59687
|
+
"svelte": "./components/v/video-frame-copy-sharp.svelte"
|
|
59688
|
+
},
|
|
59689
|
+
"./video-frame-save": {
|
|
59690
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59691
|
+
"svelte": "./components/v/video-frame-save.svelte"
|
|
59692
|
+
},
|
|
59693
|
+
"./video-frame-save-rounded": {
|
|
59694
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59695
|
+
"svelte": "./components/v/video-frame-save-rounded.svelte"
|
|
59696
|
+
},
|
|
59697
|
+
"./video-frame-save-sharp": {
|
|
59698
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59699
|
+
"svelte": "./components/v/video-frame-save-sharp.svelte"
|
|
59700
|
+
},
|
|
59625
59701
|
"./video-label": {
|
|
59626
59702
|
"types": "./types/gfwqskkx.d.ts",
|
|
59627
59703
|
"svelte": "./components/v/video-label.svelte"
|