@iconify-svelte/material-symbols-light 1.0.30 → 1.0.32
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/bitbucket.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/g/gitlab.svelte +17 -0
- package/components/i/ink-highlighter-off-outline-rounded.svelte +17 -0
- package/components/i/ink-highlighter-off-outline-sharp.svelte +17 -0
- package/components/i/ink-highlighter-off-outline.svelte +17 -0
- package/components/i/ink-highlighter-off-rounded.svelte +17 -0
- package/components/i/ink-highlighter-off-sharp.svelte +17 -0
- package/components/i/ink-highlighter-off.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 +89 -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="q97iszbiv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bitbucket" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.q97iszbiv) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M6.662 19.616q-.359 0-.59-.191q-.232-.19-.296-.55L3.564 5.15q-.05-.34.122-.553q.173-.212.49-.212h15.651q.333 0 .499.211q.166.212.104.551l-.597 3.63q-.062.362-.287.548q-.226.187-.59.187h-9.42q-.017 0-.205.242l.74 4.542q.02.07.212.193h3.409q.085 0 .212-.193l.536-3.275q.043-.296.223-.44t.476-.142h3.705q.333 0 .5.211t.123.529l-1.243 7.696q-.063.36-.295.55t-.59.19z");
|
|
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="fbref9o6w"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:gitlab" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.fbref9o6w) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m11.577 19.485l-5.898-4.443q-1.083-.815-1.44-2.115t.128-2.57l2.158-5.612q.064-.17.212-.265t.317-.095q.173 0 .336.103t.225.313L9.071 9.25h5.866l1.448-4.449q.063-.21.226-.313t.335-.103q.17 0 .317.095q.148.095.211.265l2.134 5.611q.486 1.271.129 2.571t-1.44 2.115l-5.905 4.443q-.18.13-.407.13t-.408-.13");
|
|
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="kewj8accx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.kewj8accx) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m18.223 4.716l1.754 1.753q.485.485.485 1.131t-.485 1.13l-3.844 3.845q-.147.146-.348.156t-.366-.156q-.165-.165-.165-.354t.165-.354l3.831-3.825q.173-.173.173-.442t-.173-.442l-1.716-1.716q-.172-.173-.442-.173t-.442.173l-3.825 3.825q-.146.147-.347.156t-.366-.156t-.166-.353t.166-.354l3.85-3.844q.484-.485 1.13-.485q.647 0 1.131.485m1.898 16.101q-.165.166-.356.166q-.192 0-.357-.166l-5.762-5.755l-4.223 4.229q-.484.484-1.133.484t-1.134-.484l-.192-.193l-.683.677q-.217.206-.514.33q-.296.126-.607.126H4.014q-.273 0-.373-.252t.094-.444l1.838-1.833l-.154-.154q-.484-.484-.49-1.14q-.006-.654.479-1.139l4.223-4.223l-6.454-6.454q-.146-.146-.156-.347t.156-.366t.357-.166t.357.166l16.23 16.23q.146.147.156.345t-.156.363M6.116 16.823l1.753 1.754q.173.173.423.173t.424-.173l4.223-4.223l-2.6-2.6l-4.223 4.223q-.174.173-.174.423t.174.423m5.523-3.77");
|
|
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="d_c-fw0-w"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.d_c-fw0-w) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m15.773 12.935l-.707-.714L19.692 7.6l-2.6-2.6l-4.626 4.627l-.708-.713l5.334-5.33L21.108 7.6zM8.293 19l4.646-4.646l-2.6-2.6L5.692 16.4zm11.469 2.177l-6.116-6.115l-4.788 4.788H7.727l-.77-.77l-1.15 1.15H3.04l2.534-2.534l-.73-.73v-1.132l4.788-4.788l-6.808-6.808l.714-.713l16.938 16.938z");
|
|
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="bzavuab4w"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.bzavuab4w) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m15.773 12.935l-.707-.714l4.184-4.179q.173-.173.173-.442t-.173-.442l-1.716-1.716q-.172-.173-.442-.173t-.442.173l-4.184 4.185l-.708-.713l4.204-4.198q.484-.485 1.13-.485q.647 0 1.131.485l1.754 1.753q.485.485.485 1.131t-.485 1.13zm3.989 8.242l-6.116-6.115l-4.223 4.223q-.484.484-1.13.484q-.647 0-1.131-.484l-.204-.204l-1.15 1.15h-2.77l2.535-2.535l-.165-.165q-.485-.485-.485-1.131t.485-1.13l4.223-4.224L2.823 4.24l.714-.714l16.938 16.938zM6.115 16.823l1.753 1.754q.173.173.423.173t.424-.173l4.223-4.223l-2.6-2.6l-4.223 4.223q-.174.173-.174.423t.174.423m5.523-3.77");
|
|
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="v190iccfn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.v190iccfn) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m18.223 4.716l1.754 1.753q.485.485.485 1.131t-.485 1.13l-3.646 3.653q-.223.223-.552.223t-.552-.223L12.31 9.466q-.223-.224-.223-.552q0-.33.223-.552l3.652-3.646q.484-.485 1.13-.485q.647 0 1.131.485m1.898 16.101q-.165.166-.356.166q-.192 0-.357-.166l-5.762-5.755l-4.223 4.229q-.484.484-1.133.484t-1.134-.484l-.192-.193l-.683.677q-.217.206-.514.33q-.296.126-.607.126H4.014q-.273 0-.373-.252t.094-.444l1.838-1.833l-.154-.154q-.484-.484-.49-1.14q-.006-.654.479-1.139l4.223-4.223l-6.454-6.454q-.146-.146-.156-.347t.156-.366t.357-.166t.357.166l16.23 16.23q.146.147.156.345t-.156.363");
|
|
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="jjlv7pr_s"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.jjlv7pr_s) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m15.779 12.935l-4.021-4.021l5.334-5.33L21.108 7.6zm3.983 8.242l-6.116-6.115l-4.788 4.788H7.727l-.77-.77l-1.15 1.15H3.04l2.534-2.534l-.73-.73v-1.132l4.788-4.788l-6.808-6.808l.714-.713l16.938 16.938z");
|
|
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="xceafjmjk"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:ink-highlighter-off" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.xceafjmjk) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m15.779 12.935l-4.021-4.021l4.204-4.198q.484-.485 1.13-.485q.647 0 1.131.485l1.754 1.753q.485.485.485 1.131t-.485 1.13zm3.983 8.242l-6.116-6.115l-4.223 4.223q-.484.484-1.13.484q-.647 0-1.131-.484l-.204-.204l-1.15 1.15h-2.77l2.535-2.535l-.165-.165q-.485-.485-.485-1.131t.485-1.13l4.223-4.224L2.823 4.24l.714-.714l16.938 16.938z");
|
|
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": 15461,
|
|
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": 1778731445
|
|
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.32",
|
|
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",
|
|
@@ -7270,6 +7270,10 @@
|
|
|
7270
7270
|
"types": "./types/gfwqskkx.d.ts",
|
|
7271
7271
|
"svelte": "./components/b/biotech-rounded.svelte"
|
|
7272
7272
|
},
|
|
7273
|
+
"./bitbucket": {
|
|
7274
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7275
|
+
"svelte": "./components/b/bitbucket.svelte"
|
|
7276
|
+
},
|
|
7273
7277
|
"./blanket": {
|
|
7274
7278
|
"types": "./types/gfwqskkx.d.ts",
|
|
7275
7279
|
"svelte": "./components/b/blanket.svelte"
|
|
@@ -14498,6 +14502,38 @@
|
|
|
14498
14502
|
"types": "./types/gfwqskkx.d.ts",
|
|
14499
14503
|
"svelte": "./components/c/crop-16-9-sharp.svelte"
|
|
14500
14504
|
},
|
|
14505
|
+
"./crop-2-3": {
|
|
14506
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14507
|
+
"svelte": "./components/c/crop-2-3.svelte"
|
|
14508
|
+
},
|
|
14509
|
+
"./crop-2-3-outline": {
|
|
14510
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14511
|
+
"svelte": "./components/c/crop-2-3-outline.svelte"
|
|
14512
|
+
},
|
|
14513
|
+
"./crop-2-3-outline-sharp": {
|
|
14514
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14515
|
+
"svelte": "./components/c/crop-2-3-outline-sharp.svelte"
|
|
14516
|
+
},
|
|
14517
|
+
"./crop-2-3-sharp": {
|
|
14518
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14519
|
+
"svelte": "./components/c/crop-2-3-sharp.svelte"
|
|
14520
|
+
},
|
|
14521
|
+
"./crop-21-9": {
|
|
14522
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14523
|
+
"svelte": "./components/c/crop-21-9.svelte"
|
|
14524
|
+
},
|
|
14525
|
+
"./crop-21-9-outline": {
|
|
14526
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14527
|
+
"svelte": "./components/c/crop-21-9-outline.svelte"
|
|
14528
|
+
},
|
|
14529
|
+
"./crop-21-9-outline-sharp": {
|
|
14530
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14531
|
+
"svelte": "./components/c/crop-21-9-outline-sharp.svelte"
|
|
14532
|
+
},
|
|
14533
|
+
"./crop-21-9-sharp": {
|
|
14534
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14535
|
+
"svelte": "./components/c/crop-21-9-sharp.svelte"
|
|
14536
|
+
},
|
|
14501
14537
|
"./crop-3-2": {
|
|
14502
14538
|
"types": "./types/gfwqskkx.d.ts",
|
|
14503
14539
|
"svelte": "./components/c/crop-3-2.svelte"
|
|
@@ -25666,6 +25702,10 @@
|
|
|
25666
25702
|
"types": "./types/gfwqskkx.d.ts",
|
|
25667
25703
|
"svelte": "./components/g/gite-rounded.svelte"
|
|
25668
25704
|
},
|
|
25705
|
+
"./gitlab": {
|
|
25706
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25707
|
+
"svelte": "./components/g/gitlab.svelte"
|
|
25708
|
+
},
|
|
25669
25709
|
"./glass-cup": {
|
|
25670
25710
|
"types": "./types/gfwqskkx.d.ts",
|
|
25671
25711
|
"svelte": "./components/g/glass-cup.svelte"
|
|
@@ -29314,6 +29354,30 @@
|
|
|
29314
29354
|
"types": "./types/gfwqskkx.d.ts",
|
|
29315
29355
|
"svelte": "./components/i/ink-highlighter-move-sharp.svelte"
|
|
29316
29356
|
},
|
|
29357
|
+
"./ink-highlighter-off": {
|
|
29358
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29359
|
+
"svelte": "./components/i/ink-highlighter-off.svelte"
|
|
29360
|
+
},
|
|
29361
|
+
"./ink-highlighter-off-outline": {
|
|
29362
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29363
|
+
"svelte": "./components/i/ink-highlighter-off-outline.svelte"
|
|
29364
|
+
},
|
|
29365
|
+
"./ink-highlighter-off-outline-rounded": {
|
|
29366
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29367
|
+
"svelte": "./components/i/ink-highlighter-off-outline-rounded.svelte"
|
|
29368
|
+
},
|
|
29369
|
+
"./ink-highlighter-off-outline-sharp": {
|
|
29370
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29371
|
+
"svelte": "./components/i/ink-highlighter-off-outline-sharp.svelte"
|
|
29372
|
+
},
|
|
29373
|
+
"./ink-highlighter-off-rounded": {
|
|
29374
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29375
|
+
"svelte": "./components/i/ink-highlighter-off-rounded.svelte"
|
|
29376
|
+
},
|
|
29377
|
+
"./ink-highlighter-off-sharp": {
|
|
29378
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
29379
|
+
"svelte": "./components/i/ink-highlighter-off-sharp.svelte"
|
|
29380
|
+
},
|
|
29317
29381
|
"./ink-highlighter-outline": {
|
|
29318
29382
|
"types": "./types/gfwqskkx.d.ts",
|
|
29319
29383
|
"svelte": "./components/i/ink-highlighter-outline.svelte"
|
|
@@ -59590,6 +59654,30 @@
|
|
|
59590
59654
|
"types": "./types/gfwqskkx.d.ts",
|
|
59591
59655
|
"svelte": "./components/v/video-file-sharp.svelte"
|
|
59592
59656
|
},
|
|
59657
|
+
"./video-frame-copy": {
|
|
59658
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59659
|
+
"svelte": "./components/v/video-frame-copy.svelte"
|
|
59660
|
+
},
|
|
59661
|
+
"./video-frame-copy-rounded": {
|
|
59662
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59663
|
+
"svelte": "./components/v/video-frame-copy-rounded.svelte"
|
|
59664
|
+
},
|
|
59665
|
+
"./video-frame-copy-sharp": {
|
|
59666
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59667
|
+
"svelte": "./components/v/video-frame-copy-sharp.svelte"
|
|
59668
|
+
},
|
|
59669
|
+
"./video-frame-save": {
|
|
59670
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59671
|
+
"svelte": "./components/v/video-frame-save.svelte"
|
|
59672
|
+
},
|
|
59673
|
+
"./video-frame-save-rounded": {
|
|
59674
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59675
|
+
"svelte": "./components/v/video-frame-save-rounded.svelte"
|
|
59676
|
+
},
|
|
59677
|
+
"./video-frame-save-sharp": {
|
|
59678
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
59679
|
+
"svelte": "./components/v/video-frame-save-sharp.svelte"
|
|
59680
|
+
},
|
|
59593
59681
|
"./video-label": {
|
|
59594
59682
|
"types": "./types/gfwqskkx.d.ts",
|
|
59595
59683
|
"svelte": "./components/v/video-label.svelte"
|