@iconify-vue/material-symbols-light 1.0.44 → 1.0.45
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/a/android.vue +3 -3
- package/components/j/jewelry-outline-rounded.vue +16 -0
- package/components/j/jewelry-outline.vue +16 -0
- package/components/j/jewelry-rounded.vue +16 -0
- package/components/j/jewelry.vue +16 -0
- package/components/s/seat-read.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +21 -1
package/components/a/android.vue
CHANGED
|
@@ -4,13 +4,13 @@ import { Icon } from '@iconify/css-vue';
|
|
|
4
4
|
const props = defineProps(["width","height"]);
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":24,"height":24};
|
|
7
|
-
const content = `<path class="
|
|
7
|
+
const content = `<path class="h88hzqbqb"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:android" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.h88hzqbqb {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M2.692
|
|
13
|
+
d: path("M2.692 16.98q.212-2.22 1.35-4.044T6.98 9.975L5.36 7.269q-.186-.292-.093-.634q.093-.343.386-.523q.292-.187.634-.096q.343.09.523.382l1.673 2.806q.816-.342 1.7-.513q.883-.172 1.816-.172t1.816.172q.884.17 1.7.513l1.672-2.806q.181-.292.523-.382q.343-.091.635.096q.292.18.383.523q.09.342-.09.634L17.02 9.975q1.798 1.139 2.937 2.962t1.35 4.044zm14.388-3.19q.028-.361-.19-.728q-.217-.368-.56-.473t-.628.08t-.318.554q-.03.367.187.735q.217.367.563.466q.345.099.631-.088q.287-.186.315-.547m-9.21.622q.341-.105.559-.473q.217-.348.19-.718q-.029-.37-.315-.557q-.287-.186-.632-.087t-.563.466q-.217.348-.186.725q.03.377.317.564t.63.08");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="dh_vt9vyg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:jewelry-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.dh_vt9vyg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21.75q-.313 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.209-.211.522-.211q.308 0 .52.211t.21.52q0 .313-.21.521q-.212.209-.52.209m-3.98-.923q-.314 0-.523-.209q-.209-.208-.209-.522q0-.307.209-.519t.522-.212q.308 0 .52.212t.211.52q0 .313-.212.521t-.519.209m7.962 0q-.314 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.208-.212.522-.212q.308 0 .519.212t.212.52q0 .313-.212.521t-.52.209M5.443 18.038q-.313 0-.522-.208q-.208-.209-.208-.522q0-.308.208-.52q.209-.211.522-.211q.308 0 .52.212t.211.519q0 .313-.211.522q-.212.209-.52.209m6.558 0q-1.948 0-3.33-1.334Q7.29 15.37 7.29 13.442q0-1.892 1.302-3.67q1.301-1.78 2.798-3.166q.263-.25.608-.247q.345.002.615.247q1.496 1.386 2.797 3.165t1.302 3.671q0 1.93-1.381 3.263T12 18.038m6.558 0q-.314 0-.523-.208q-.208-.209-.208-.522q0-.308.208-.52q.21-.211.523-.211q.307 0 .519.212t.211.519q0 .313-.211.522q-.212.209-.52.209m-3.938-2.042q1.092-1.041 1.092-2.549q0-1.646-1.261-3.23T12 7.377q-1.194 1.258-2.453 2.841t-1.259 3.23q0 1.508 1.093 2.549T12 17.038t2.62-1.041M12 15.25q.787 0 1.345-.546q.559-.546.559-1.339q0-.806-.559-1.355T12 11.462q-.773 0-1.32.55t-.545 1.354q0 .793.546 1.339T12 15.25m0-11q-.313 0-.522-.209q-.209-.208-.209-.522q0-.308.209-.519T12 2.788q.308 0 .52.212t.21.52q0 .313-.21.521q-.212.209-.52.209");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="qlemilb3t"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:jewelry-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.qlemilb3t {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21.75q-.313 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.209-.211.522-.211q.308 0 .52.211t.21.52q0 .313-.21.521q-.212.209-.52.209m-3.98-.923q-.314 0-.523-.209q-.209-.208-.209-.522q0-.307.209-.519t.522-.212q.308 0 .52.212t.211.52q0 .313-.212.521t-.519.209m7.962 0q-.314 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.208-.212.522-.212q.308 0 .519.212t.212.52q0 .313-.212.521t-.52.209M5.443 18.038q-.313 0-.522-.208q-.208-.209-.208-.522q0-.308.208-.52q.209-.211.522-.211q.308 0 .52.212t.211.519q0 .313-.211.522q-.212.209-.52.209m6.558 0q-1.948 0-3.33-1.334Q7.29 15.37 7.29 13.442q0-2.083 1.55-4.032T12 6.04q1.612 1.423 3.162 3.372t1.55 4.031q0 1.93-1.382 3.263Q13.948 18.04 12 18.04m6.558 0q-.314 0-.523-.21q-.208-.208-.208-.521q0-.308.208-.52q.21-.211.523-.211q.307 0 .519.212t.211.519q0 .313-.211.522q-.212.209-.52.209m-3.938-2.042q1.092-1.041 1.092-2.549q0-1.646-1.261-3.23T12 7.377q-1.194 1.258-2.453 2.841t-1.259 3.23q0 1.508 1.093 2.549T12 17.038t2.62-1.041M12 15.25q.787 0 1.345-.546q.559-.546.559-1.339q0-.806-.559-1.355T12 11.462q-.773 0-1.32.55t-.545 1.354q0 .793.546 1.339T12 15.25m0-11q-.313 0-.522-.209q-.209-.208-.209-.522q0-.308.209-.519T12 2.788q.308 0 .52.212t.21.52q0 .313-.21.521q-.212.209-.52.209m0 9.116");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="xzvxwebal"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:jewelry-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xzvxwebal {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21.75q-.313 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.209-.211.522-.211q.308 0 .52.211t.21.52q0 .313-.21.521q-.212.209-.52.209m-3.98-.923q-.314 0-.523-.209q-.209-.208-.209-.522q0-.307.209-.519t.522-.212q.308 0 .52.212t.211.52q0 .313-.212.521t-.519.209m7.962 0q-.314 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.208-.212.522-.212q.308 0 .519.212t.212.52q0 .313-.212.521t-.52.209M5.443 18.038q-.313 0-.522-.208q-.208-.209-.208-.522q0-.308.208-.52q.209-.211.522-.211q.308 0 .52.212t.211.519q0 .313-.211.522q-.212.209-.52.209m6.558 0q-1.948 0-3.33-1.334Q7.29 15.37 7.29 13.442q0-1.892 1.302-3.67q1.301-1.78 2.798-3.166q.263-.25.608-.247q.345.002.615.247q1.496 1.386 2.797 3.165t1.302 3.671q0 1.93-1.381 3.263T12 18.038m6.558 0q-.314 0-.523-.208q-.208-.209-.208-.522q0-.308.208-.52q.21-.211.523-.211q.307 0 .519.212t.211.519q0 .313-.211.522q-.212.209-.52.209M12 15.25q.787 0 1.345-.546q.559-.546.559-1.339q0-.806-.559-1.355T12 11.462q-.773 0-1.32.55t-.545 1.354q0 .793.546 1.339T12 15.25m0-11q-.313 0-.522-.209q-.209-.208-.209-.522q0-.308.209-.519T12 2.788q.308 0 .52.212t.21.52q0 .313-.21.521q-.212.209-.52.209");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="k305ppb_r"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:jewelry" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.k305ppb_r {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21.75q-.313 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.209-.211.522-.211q.308 0 .52.211t.21.52q0 .313-.21.521q-.212.209-.52.209m-3.98-.923q-.314 0-.523-.209q-.209-.208-.209-.522q0-.307.209-.519t.522-.212q.308 0 .52.212t.211.52q0 .313-.212.521t-.519.209m7.962 0q-.314 0-.522-.209q-.209-.208-.209-.522q0-.307.209-.519q.208-.212.522-.212q.308 0 .519.212t.212.52q0 .313-.212.521t-.52.209M5.443 18.038q-.313 0-.522-.208q-.208-.209-.208-.522q0-.308.208-.52q.209-.211.522-.211q.308 0 .52.212t.211.519q0 .313-.211.522q-.212.209-.52.209m6.558 0q-1.948 0-3.33-1.334Q7.29 15.37 7.29 13.442q0-2.083 1.55-4.032T12 6.04q1.612 1.423 3.162 3.372t1.55 4.031q0 1.93-1.382 3.263Q13.948 18.04 12 18.04m6.558 0q-.314 0-.523-.21q-.208-.208-.208-.521q0-.308.208-.52q.21-.211.523-.211q.307 0 .519.212t.211.519q0 .313-.211.522q-.212.209-.52.209M12 15.25q.787 0 1.345-.546q.559-.546.559-1.339q0-.806-.559-1.355T12 11.462q-.773 0-1.32.55t-.545 1.354q0 .793.546 1.339T12 15.25m0-11q-.313 0-.522-.209q-.209-.208-.209-.522q0-.308.209-.519T12 2.788q.308 0 .52.212t.21.52q0 .313-.21.521q-.212.209-.52.209");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="kyodg3b9l"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:seat-read" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kyodg3b9l {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7.23 7.577q-.69 0-1.19-.501t-.501-1.191t.5-1.192t1.192-.5t1.191.5t.501 1.191q0 .691-.501 1.192q-.5.501-1.191.501m10.808 14.807L15.484 18H8.267q-.552 0-.946-.332t-.504-.845l-1.172-5.644q-.205-.95.413-1.69q.618-.739 1.587-.739q.504 0 .941.209q.438.208.774.587l2.743 3.018l2.692-2.058l-.794-.414q-.142-.08-.185-.236t.018-.298l.904-1.994q.08-.162.239-.218t.32.025l1.062.529q.142.08.188.24q.046.158-.015.3l-.81 1.802l.412.544l-4.05 3.255l-1.79-1.395l.773 3.354h3.6q.39 0 .724.198q.335.198.552.571l2.962 5.116zM12.96 20H7.01q-.69 0-1.243-.443q-.552-.443-.69-1.134L3 8h1.012l2.084 10.385q.038.23.27.423q.23.192.461.192h6.134z");
|
|
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": 15536,
|
|
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": 1783920424
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/material-symbols-light",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.45",
|
|
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",
|
|
@@ -30062,6 +30062,22 @@
|
|
|
30062
30062
|
"types": "./types/dd0bq22g.d.ts",
|
|
30063
30063
|
"default": "./components/j/javascript-sharp.vue"
|
|
30064
30064
|
},
|
|
30065
|
+
"./jewelry": {
|
|
30066
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
30067
|
+
"default": "./components/j/jewelry.vue"
|
|
30068
|
+
},
|
|
30069
|
+
"./jewelry-outline": {
|
|
30070
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
30071
|
+
"default": "./components/j/jewelry-outline.vue"
|
|
30072
|
+
},
|
|
30073
|
+
"./jewelry-outline-rounded": {
|
|
30074
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
30075
|
+
"default": "./components/j/jewelry-outline-rounded.vue"
|
|
30076
|
+
},
|
|
30077
|
+
"./jewelry-rounded": {
|
|
30078
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
30079
|
+
"default": "./components/j/jewelry-rounded.vue"
|
|
30080
|
+
},
|
|
30065
30081
|
"./join": {
|
|
30066
30082
|
"types": "./types/dd0bq22g.d.ts",
|
|
30067
30083
|
"default": "./components/j/join.vue"
|
|
@@ -48046,6 +48062,10 @@
|
|
|
48046
48062
|
"types": "./types/dd0bq22g.d.ts",
|
|
48047
48063
|
"default": "./components/s/seat-heat-right-sharp.vue"
|
|
48048
48064
|
},
|
|
48065
|
+
"./seat-read": {
|
|
48066
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
48067
|
+
"default": "./components/s/seat-read.vue"
|
|
48068
|
+
},
|
|
48049
48069
|
"./seat-vent-left": {
|
|
48050
48070
|
"types": "./types/dd0bq22g.d.ts",
|
|
48051
48071
|
"default": "./components/s/seat-vent-left.vue"
|