@iconify-svelte/material-symbols-light 1.0.46 → 1.0.48
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/h/high-quality-off-outline-rounded.svelte +17 -0
- package/components/h/high-quality-off-outline-sharp.svelte +17 -0
- package/components/h/high-quality-off-outline.svelte +17 -0
- package/components/h/high-quality-off-rounded.svelte +17 -0
- package/components/h/high-quality-off-sharp.svelte +17 -0
- package/components/h/high-quality-off.svelte +17 -0
- package/components/s/single-arrow-outline-rounded.svelte +17 -0
- package/components/s/single-arrow-outline-sharp.svelte +17 -0
- package/components/s/single-arrow-outline.svelte +17 -0
- package/components/s/single-arrow-rounded.svelte +17 -0
- package/components/s/single-arrow-sharp.svelte +17 -0
- package/components/s/single-arrow.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +49 -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="ass-uijgf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ass-uijgf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M21 6.616v10.519q0 .25-.159.375q-.158.125-.341.125q-.194 0-.347-.137q-.153-.136-.153-.37V6.617q0-.27-.173-.443T19.385 6H8.87q-.25 0-.375-.159q-.125-.158-.125-.341q0-.194.134-.347T8.87 5h10.514q.69 0 1.153.463T21 6.616M7.5 12.692v1.558q0 .19-.126.316t-.316.126t-.317-.126t-.126-.316v-4.5q0-.19.126-.316t.317-.126t.316.126t.126.316v2.058h2.616v-1.5l.884.884v3.058q0 .19-.126.316t-.316.126t-.317-.126q-.125-.126-.125-.316v-1.558zM4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h.193l1 1H4.616q-.231 0-.424.192T4 6.616v10.769q0 .269.173.442t.443.173H16.38L2.6 4.208q-.14-.14-.153-.342q-.013-.2.153-.366q.16-.16.354-.16t.354.16l16.557 16.558q.14.14.153.341t-.153.366q-.16.16-.35.163q-.192.003-.357-.157L17.38 19zm12.769-8.615v3.273q0 .288-.27.408t-.486-.095q-.068-.067-.098-.144q-.031-.077-.031-.17V10.5q0-.115-.096-.212t-.212-.096h-2q-.115 0-.211.096q-.097.096-.097.212v.285q0 .19-.125.316q-.126.126-.317.126q-.19 0-.316-.126T13 10.785v-.475q.039-.42.345-.711q.307-.291.732-.291h2.23q.445 0 .761.316q.316.317.316.76");
|
|
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="apllqu2gn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.apllqu2gn) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.385 14.727l-.885-.885v-3.65h-2.615v1.035L13 10.361V9.308h4.385zm-10.77-.035V9.308H7.5v2.5h2.616v-1.5l.884.884v3.5h-.885v-2H7.5v2zm12.897 6.427L17.38 19H3V5h1.808l1 1H4v12h12.38L2.363 3.97l.707-.708l17.15 17.15zM21 18.342l-1-1V6H8.658l-1-1H21zm-10.521-6.244");
|
|
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="ucwd6cyij"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.ucwd6cyij) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m17.385 14.727l-.885-.885V10.5q0-.115-.096-.212t-.212-.096h-2q-.115 0-.211.096q-.097.096-.097.212v.727L13 10.361v-.052q.039-.418.345-.71q.307-.291.732-.291h2.23q.445 0 .761.316q.316.317.316.76zm-10.77-.035V9.308H7.5v2.5h2.616v-1.5l.884.884v3.5h-.885v-2H7.5v2zm-2 4.308q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h.193l1 1H4.616q-.231 0-.424.192T4 6.616v10.769q0 .269.173.442t.443.173H16.38L2.36 3.97l.708-.708l17.15 17.15l-.707.707L17.38 19zm16.173-.87L20 17.343V6.616q0-.27-.173-.443T19.385 6H8.658l-1-1h11.727q.69 0 1.153.463T21 6.616v10.746q0 .217-.04.41t-.172.359m-10.31-6.033");
|
|
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="icn5lxb2h"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.icn5lxb2h) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M7.5 12.692h2.616v1.558q0 .19.125.316q.126.126.317.126q.19 0 .316-.126T11 14.25v-3.058l-.885-.884v1.5H7.5V9.75q0-.19-.126-.316t-.316-.126t-.317.126t-.126.316v4.5q0 .19.126.316t.317.126t.316-.126t.126-.316zm9.885 2.035v-4.342q0-.444-.317-.761q-.316-.316-.76-.316h-2.231q-.425 0-.732.311t-.345.742l.885.866V10.5q0-.115.096-.212t.211-.096h2q.116 0 .212.096q.096.097.096.212v3.342zM21 6.616v9.782q0 .54-.497.745t-.876-.174L9.031 6.373q-.379-.379-.174-.876T9.602 5h9.783q.69 0 1.153.463T21 6.616M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h.193l9.692 9.692h-1.415L2.6 4.208q-.14-.14-.15-.344T2.6 3.5t.354-.16t.354.16l16.557 16.558q.14.14.153.341t-.153.366q-.16.16-.35.163q-.192.003-.357-.157L17.38 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="nfu7lgbgr"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.nfu7lgbgr) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.385 14.727v-5.42H13v1.055l.885.865v-1.035H16.5v3.65zm-10.77-.035H7.5v-2h2.616v2H11v-3.5l-.885-.884v1.5H7.5v-2.5h-.885zM21 18.342L7.658 5H21zM3 19V5h1.808l9.692 9.692h-1.415L2.36 3.97l.708-.707l17.15 17.15l-.707.707L17.38 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="be6kk-bsf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:high-quality-off" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.be6kk-bsf) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M17.385 14.727v-4.342q0-.444-.317-.761q-.316-.316-.76-.316h-2.231q-.425 0-.732.311t-.345.742l.885.866V10.5q0-.115.096-.212t.211-.096h2q.116 0 .212.096q.096.097.096.212v3.342zm-10.77-.035H7.5v-2h2.616v2H11v-3.5l-.885-.884v1.5H7.5v-2.5h-.885zm14.173 3.439L7.658 5h11.727q.69 0 1.153.463T21 6.616v10.746q0 .217-.04.41t-.172.359M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h.193l9.692 9.692h-1.415L2.36 3.97l.708-.707l17.15 17.15l-.707.707L17.38 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="fpi1t4bfg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.fpi1t4bfg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m14.352 12l-4.086-5.713q-.177-.25-.04-.519t.44-.268q.12 0 .228.056q.109.057.17.157L15.57 12l-4.507 6.287q-.061.1-.171.157t-.231.056q-.293 0-.433-.268t.037-.518z");
|
|
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="m1yj47bwu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.m1yj47bwu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m9.698 18.5l4.654-6.5l-4.654-6.5h1.22L15.57 12l-4.654 6.5z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="m1yj47bwu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.m1yj47bwu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m9.698 18.5l4.654-6.5l-4.654-6.5h1.22L15.57 12l-4.654 6.5z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="fpi1t4bfg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.fpi1t4bfg) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m14.352 12l-4.086-5.713q-.177-.25-.04-.519t.44-.268q.12 0 .228.056q.109.057.17.157L15.57 12l-4.507 6.287q-.061.1-.171.157t-.231.056q-.293 0-.433-.268t.037-.518z");
|
|
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="m1yj47bwu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.m1yj47bwu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m9.698 18.5l4.654-6.5l-4.654-6.5h1.22L15.57 12l-4.654 6.5z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="m1yj47bwu"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:single-arrow" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.m1yj47bwu) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m9.698 18.5l4.654-6.5l-4.654-6.5h1.22L15.57 12l-4.654 6.5z");
|
|
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": 15650,
|
|
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": 1785497202
|
|
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.48",
|
|
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",
|
|
@@ -27914,6 +27914,30 @@
|
|
|
27914
27914
|
"types": "./types/gfwqskkx.d.ts",
|
|
27915
27915
|
"svelte": "./components/h/high-quality.svelte"
|
|
27916
27916
|
},
|
|
27917
|
+
"./high-quality-off": {
|
|
27918
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27919
|
+
"svelte": "./components/h/high-quality-off.svelte"
|
|
27920
|
+
},
|
|
27921
|
+
"./high-quality-off-outline": {
|
|
27922
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27923
|
+
"svelte": "./components/h/high-quality-off-outline.svelte"
|
|
27924
|
+
},
|
|
27925
|
+
"./high-quality-off-outline-rounded": {
|
|
27926
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27927
|
+
"svelte": "./components/h/high-quality-off-outline-rounded.svelte"
|
|
27928
|
+
},
|
|
27929
|
+
"./high-quality-off-outline-sharp": {
|
|
27930
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27931
|
+
"svelte": "./components/h/high-quality-off-outline-sharp.svelte"
|
|
27932
|
+
},
|
|
27933
|
+
"./high-quality-off-rounded": {
|
|
27934
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27935
|
+
"svelte": "./components/h/high-quality-off-rounded.svelte"
|
|
27936
|
+
},
|
|
27937
|
+
"./high-quality-off-sharp": {
|
|
27938
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
27939
|
+
"svelte": "./components/h/high-quality-off-sharp.svelte"
|
|
27940
|
+
},
|
|
27917
27941
|
"./high-quality-outline": {
|
|
27918
27942
|
"types": "./types/gfwqskkx.d.ts",
|
|
27919
27943
|
"svelte": "./components/h/high-quality-outline.svelte"
|
|
@@ -50862,6 +50886,14 @@
|
|
|
50862
50886
|
"types": "./types/gfwqskkx.d.ts",
|
|
50863
50887
|
"svelte": "./components/s/simulation-rounded.svelte"
|
|
50864
50888
|
},
|
|
50889
|
+
"./single-arrow": {
|
|
50890
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50891
|
+
"svelte": "./components/s/single-arrow.svelte"
|
|
50892
|
+
},
|
|
50893
|
+
"./single-arrow-rounded": {
|
|
50894
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
50895
|
+
"svelte": "./components/s/single-arrow-rounded.svelte"
|
|
50896
|
+
},
|
|
50865
50897
|
"./single-bed": {
|
|
50866
50898
|
"types": "./types/gfwqskkx.d.ts",
|
|
50867
50899
|
"svelte": "./components/s/single-bed.svelte"
|
|
@@ -88778,6 +88810,22 @@
|
|
|
88778
88810
|
"types": "./types/gfwqskkx.d.ts",
|
|
88779
88811
|
"svelte": "./components/s/simulation-sharp.svelte"
|
|
88780
88812
|
},
|
|
88813
|
+
"./single-arrow-outline": {
|
|
88814
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
88815
|
+
"svelte": "./components/s/single-arrow-outline.svelte"
|
|
88816
|
+
},
|
|
88817
|
+
"./single-arrow-outline-rounded": {
|
|
88818
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
88819
|
+
"svelte": "./components/s/single-arrow-outline-rounded.svelte"
|
|
88820
|
+
},
|
|
88821
|
+
"./single-arrow-outline-sharp": {
|
|
88822
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
88823
|
+
"svelte": "./components/s/single-arrow-outline-sharp.svelte"
|
|
88824
|
+
},
|
|
88825
|
+
"./single-arrow-sharp": {
|
|
88826
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
88827
|
+
"svelte": "./components/s/single-arrow-sharp.svelte"
|
|
88828
|
+
},
|
|
88781
88829
|
"./skateboarding-outline": {
|
|
88782
88830
|
"types": "./types/gfwqskkx.d.ts",
|
|
88783
88831
|
"svelte": "./components/s/skateboarding-outline.svelte"
|