@iconify-vue/material-symbols-light 1.0.37 → 1.0.39
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/d/dashboard-2-add-outline-rounded.vue +16 -0
- package/components/d/dashboard-2-add-outline.vue +16 -0
- package/components/d/dashboard-2-add-rounded.vue +16 -0
- package/components/d/dashboard-2-add.vue +16 -0
- package/components/d/drive-file-rename-outline-rounded.vue +16 -0
- package/components/d/drive-file-rename-outline-sharp.vue +16 -0
- package/components/d/drive-file-rename-outline.vue +16 -0
- package/components/d/drive-file-rename-rounded.vue +16 -0
- package/components/d/drive-file-rename-sharp.vue +16 -0
- package/components/d/drive-file-rename.vue +16 -0
- package/components/i/id-card-2-outline-rounded.vue +16 -0
- package/components/i/id-card-2-outline-sharp.vue +16 -0
- package/components/i/id-card-2-outline.vue +16 -0
- package/components/i/id-card-2-rounded.vue +16 -0
- package/components/i/id-card-2-sharp.vue +16 -0
- package/components/i/id-card-2.vue +16 -0
- package/components/m/mobile-dock-outline-rounded.vue +16 -0
- package/components/m/mobile-dock-outline-sharp.vue +16 -0
- package/components/m/mobile-dock-outline.vue +16 -0
- package/components/m/mobile-dock-rounded.vue +16 -0
- package/components/m/mobile-dock-sharp.vue +16 -0
- package/components/m/mobile-dock.vue +16 -0
- package/components/p/pin-road-2.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +93 -1
|
@@ -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="lyvuww__m"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:dashboard-2-add-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.lyvuww__m {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.808 19h4.185q.355 0 .585-.232q.23-.233.23-.576v-4.184q0-.356-.232-.586q-.233-.23-.576-.23H3.815q-.355 0-.585.232T3 14v4.185q0 .356.232.585t.576.23M4 9.808V6h6.808v3.808zm-.192 1H11q.343 0 .576-.232t.232-.576V5.815q0-.355-.232-.585T11 5H3.808q-.343 0-.576.232T3 5.808v4.185q0 .355.232.585t.576.23M12.192 18v-3.808H20V18zM12 19h8.192q.344 0 .576-.232t.232-.576v-4.184q0-.356-.232-.586q-.233-.23-.576-.23H12q-.343 0-.575.232t-.233.576v4.185q0 .356.233.585T12 19m-8-1v-3.808h3.808V18zm14-7.192q-1.671 0-2.835-1.165Q14 8.48 14 6.808t1.165-2.836T18 2.808t2.836 1.164T22 6.808q0 1.67-1.164 2.835Q19.67 10.808 18 10.808m-.385-3.616v2.116q0 .154.116.269q.115.115.269.115t.27-.115t.114-.27V7.193H20.5q.154 0 .27-.111q.114-.112.114-.273t-.115-.273t-.269-.112h-2.116V4.308q0-.154-.115-.27q-.115-.115-.269-.115t-.27.116t-.114.269v2.115H15.5q-.154 0-.27.112q-.114.111-.114.273t.115.273t.269.111zm-5.423 7");
|
|
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="d5fc5-bjz"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:dashboard-2-add-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.d5fc5-bjz {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3 19h5.808v-5.808H3zm1-9.192V6h6.808v3.808zm-1 1h8.808V5H3zM12.192 18v-3.808H20V18zm-1 1H21v-5.808h-9.808zM4 18v-3.808h3.808V18zm14-7.192q-1.671 0-2.835-1.165Q14 8.48 14 6.808t1.165-2.836T18 2.808t2.836 1.164T22 6.808q0 1.67-1.164 2.835Q19.67 10.808 18 10.808m-.385-1.116h.77v-2.5h2.5v-.769h-2.5v-2.5h-.77v2.5h-2.5v.77h2.5zm-9.807 4.5");
|
|
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="yf1axp80z"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:dashboard-2-add-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.yf1axp80z {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.808 19h4.185q.355 0 .585-.232q.23-.233.23-.576v-4.184q0-.356-.232-.586q-.233-.23-.576-.23H3.815q-.355 0-.585.232T3 14v4.185q0 .356.232.585t.576.23m0-8.192H11q.343 0 .576-.232t.232-.576V5.815q0-.355-.232-.585T11 5H3.808q-.343 0-.576.232T3 5.808v4.185q0 .355.232.585t.576.23M12 19h8.192q.344 0 .576-.232t.232-.576v-4.184q0-.356-.232-.586q-.233-.23-.576-.23H12q-.343 0-.575.232t-.233.576v4.185q0 .356.233.585T12 19m6-8.192q-1.671 0-2.835-1.165Q14 8.48 14 6.808t1.165-2.836T18 2.808t2.836 1.164T22 6.808q0 1.67-1.164 2.835Q19.67 10.808 18 10.808m-.385-3.616v2.116q0 .154.116.269q.115.115.269.115t.27-.115t.114-.27V7.193H20.5q.154 0 .27-.111q.114-.112.114-.273t-.115-.273t-.269-.112h-2.116V4.308q0-.154-.115-.27q-.115-.115-.269-.115t-.27.116t-.114.269v2.115H15.5q-.154 0-.27.112q-.114.111-.114.273t.115.273t.269.111z");
|
|
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="ccoea-90k"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:dashboard-2-add" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ccoea-90k {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3 19h5.808v-5.808H3zm0-8.192h8.808V5H3zM11.192 19H21v-5.808h-9.808zM18 10.808q-1.671 0-2.835-1.165Q14 8.48 14 6.808t1.165-2.836T18 2.808t2.836 1.164T22 6.808q0 1.67-1.164 2.835Q19.67 10.808 18 10.808m-.385-1.116h.77v-2.5h2.5v-.769h-2.5v-2.5h-.77v2.5h-2.5v.77h2.5z");
|
|
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="lp6kmgftl"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.lp6kmgftl {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h5.833q.213 0 .356-.143q.144-.143.144-.357t-.144-.357t-.357-.143h-4.832zm-4.09 0h1.073q.161 0 .3-.056q.14-.055.27-.186L15.095 10q.129-.148.19-.31q.062-.163.062-.323t-.064-.319t-.188-.308l-.925-.944q-.129-.129-.298-.193t-.335-.064q-.159 0-.319.052q-.16.051-.308.2l-6.282 6.257q-.13.13-.187.27t-.056.301v1.073q0 .349.23.578q.23.23.578.23m7.27-7.133l-.926-.944zM7.27 15.616v-.95l4.685-4.68l.456.489l.469.475l-4.66 4.666zm5.14-5.141l.47.475l-.925-.963zM5.617 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20zm0-1h12.769q.23 0 .423-.192t.192-.424V5.616q0-.231-.192-.424T18.384 5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192M5 5v14z");
|
|
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="ss-dbrboq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ss-dbrboq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h6.333v-1h-5.333zm-4.898 0h2.21l7.132-7.127l-2.19-2.21l-7.153 7.128zm8.076-7.133l-.925-.944zM7.27 15.616v-.95l4.685-4.68l.456.489l.469.475l-4.66 4.666zm5.14-5.141l.47.475l-.925-.963zM4 20V4h16v16zm1-1h14V5H5zM5 5v14z");
|
|
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="w9n3_jbxy"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.w9n3_jbxy {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h6.333v-1h-5.333zm-4.898 0h2.21l6.5-6.5q.128-.148.19-.31q.061-.163.061-.323t-.064-.319t-.188-.308l-.925-.944q-.129-.129-.298-.193t-.335-.064q-.159 0-.319.052q-.16.051-.308.2l-6.525 6.5zm8.076-7.133l-.925-.944zM7.27 15.616v-.95l4.685-4.68l.456.489l.469.475l-4.66 4.666zm5.14-5.141l.47.475l-.925-.963zM5.617 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20zm0-1h12.769q.23 0 .423-.192t.192-.424V5.616q0-.231-.192-.424T18.384 5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192M5 5v14z");
|
|
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="hy-vizpgk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.hy-vizpgk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h5.833q.213 0 .356-.143q.144-.143.144-.357t-.144-.357t-.357-.143h-4.832zm-4.09 0h1.073q.161 0 .3-.056q.14-.055.27-.186L15.095 10q.148-.148.2-.31t.052-.323t-.064-.319t-.188-.308l-.925-.944q-.129-.129-.298-.193t-.335-.064q-.159 0-.319.061q-.16.062-.308.19l-6.282 6.258q-.13.13-.187.27t-.056.301v1.073q0 .349.23.578q.23.23.578.23m6.344-6.177l-.95-.95l.95-.95l.925.944zM5.616 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20z");
|
|
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="fp3s7xb9g"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fp3s7xb9g {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h6.333v-1h-5.333zm-4.898 0h2.21l7.132-7.127l-2.19-2.21l-7.153 7.128zm7.151-6.177l-.95-.95l.95-.95l.926.944zM4 20V4h16v16z");
|
|
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="gt318-b_b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:drive-file-rename" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.gt318-b_b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.283 16.5h6.333v-1h-5.333zm-4.898 0h2.21l6.5-6.5q.147-.148.2-.31t.051-.323t-.064-.319q-.065-.16-.188-.308l-.925-.944q-.129-.129-.298-.193t-.335-.064q-.159 0-.319.061q-.16.062-.308.19l-6.525 6.5zm7.151-6.177l-.95-.95l.95-.95l.926.944zM5.617 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20z");
|
|
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="bm649zb0s"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bm649zb0s {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.425 11.192l-1.036-1.055q-.13-.13-.314-.13t-.313.13q-.13.129-.13.316t.13.316l1.123 1.093q.242.236.565.239t.566-.24l2.222-2.222q.13-.13.139-.304q.01-.176-.138-.324q-.13-.128-.314-.128t-.313.129zm-1.483 4.116h3.616q.19 0 .316-.126t.126-.316t-.126-.317t-.316-.126H5.942q-.19 0-.316.126t-.126.317t.126.316t.316.126m10.048-4.05q.433-.433.433-1.066t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.066-.433M4.615 19q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v10.769q0 .69-.463 1.153T19.385 19zm0-1h14.77q.23 0 .423-.192t.192-.424V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192M4 18V6zm10.923-4.692q-.823 0-1.394.124t-1.025.358q-.39.23-.588.469q-.199.239-.199.522q0 .223.177.375t.445.152h5.169q.267 0 .444-.165q.177-.164.177-.393q0-.252-.189-.489q-.188-.236-.598-.47q-.453-.255-1.025-.369q-.57-.114-1.394-.114");
|
|
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="bdcad8bgv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bdcad8bgv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.45 12.427l3.102-3.102l-.627-.633l-2.5 2.5l-1.35-1.35l-.627.608zm-1.95 2.88H10v-.884H5.5zm6.116 0h6.615v-.165q0-.875-.879-1.354t-2.429-.48t-2.429.48t-.879 1.354zm4.374-4.048q.433-.434.433-1.067t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.067-.433M3 19V5h18v14zm1-1h16V6H4zm0 0V6z");
|
|
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="fjixv4b1i"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fjixv4b1i {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.45 12.427l3.102-3.102l-.627-.633l-2.5 2.5l-1.35-1.35l-.627.608zm-1.95 2.88H10v-.884H5.5zm6.116 0h6.615v-.165q0-.875-.879-1.354t-2.429-.48t-2.429.48t-.879 1.354zm4.374-4.048q.433-.434.433-1.067t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.067-.433M4.615 19q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v10.769q0 .69-.463 1.153T19.385 19zm0-1h14.77q.23 0 .423-.192t.192-.424V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192M4 18V6z");
|
|
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="ybdx2gb-f"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ybdx2gb-f {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.425 11.192l-1.036-1.055q-.13-.13-.314-.13t-.313.13q-.13.129-.13.316t.13.316l1.123 1.093q.242.236.565.239t.566-.24l2.222-2.222q.13-.13.139-.304q.01-.176-.138-.324q-.13-.128-.314-.128t-.313.129zm-1.483 4.116h3.616q.19 0 .316-.126t.126-.316t-.126-.317t-.316-.126H5.942q-.19 0-.316.126t-.126.317t.126.316t.316.126m10.048-4.05q.433-.433.433-1.066t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.066-.433M4.615 19q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v10.769q0 .69-.463 1.153T19.385 19zm10.308-5.692q-.823 0-1.394.124t-1.025.358q-.39.23-.588.469q-.199.239-.199.522q0 .223.177.375t.444.152h5.17q.267 0 .444-.165q.177-.164.177-.393q0-.252-.189-.489q-.188-.236-.598-.47q-.453-.255-1.025-.369q-.57-.114-1.394-.114");
|
|
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="id27e_b7l"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.id27e_b7l {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.45 12.427l3.102-3.102l-.627-.633l-2.5 2.5l-1.35-1.35l-.627.608zm-1.95 2.88H10v-.884H5.5zm6.116 0h6.615v-.165q0-.875-.879-1.354t-2.429-.48t-2.429.48t-.879 1.354zm4.374-4.048q.433-.434.433-1.067t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.067-.433M3 19V5h18v14z");
|
|
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="f6bkbobwd"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:id-card-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.f6bkbobwd {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m7.45 12.427l3.102-3.102l-.627-.633l-2.5 2.5l-1.35-1.35l-.627.608zm-1.95 2.88H10v-.884H5.5zm6.116 0h6.615v-.165q0-.875-.879-1.354t-2.429-.48t-2.429.48t-.879 1.354zm4.374-4.048q.433-.434.433-1.067t-.433-1.066t-1.067-.434t-1.066.434t-.434 1.066t.434 1.067t1.066.433t1.067-.433M4.615 19q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v10.769q0 .69-.463 1.153T19.385 19z");
|
|
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="wa3htac5u"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wa3htac5u {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M16.192 16.385V3.614q0-.269-.173-.442T15.577 3H8.423q-.27 0-.442.173q-.173.173-.173.443v12.769q0 .269.173.442t.442.173h7.154q.27 0 .442-.173q.173-.173.173-.443M12.588 6.086q.22-.222.22-.549t-.222-.547t-.549-.22t-.548.22t-.22.55t.222.547t.549.22t.548-.22m-4.78 10.298V17V3zM8.423 18q-.666 0-1.14-.475t-.475-1.14V3.615q0-.666.474-1.14T8.423 2h7.154q.666 0 1.14.475t.475 1.14v2.127q.31-.001.52.242t.211.549v1.28q0 .307-.21.55q-.211.243-.52.24v7.782q0 .666-.475 1.14T15.577 18zM9 21.52q-.213 0-.356-.145T8.5 21.02t.144-.356T9 20.52h6q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143z");
|
|
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="t52si_s1w"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.t52si_s1w {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.5 21.52v-1h7v1zM16.192 17V3H7.808v14zM12.588 6.086q.22-.222.22-.549t-.222-.547t-.549-.22t-.548.22t-.22.55t.222.547t.549.22t.548-.22M7.808 3v14zm-1 15V2h10.384v3.723h.731v2.9h-.73V18z");
|
|
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="au1b6v6pg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.au1b6v6pg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M16.192 16.385V3.614q0-.269-.173-.442T15.577 3H8.423q-.27 0-.442.173q-.173.173-.173.443v12.769q0 .269.173.442t.442.173h7.154q.27 0 .442-.173q.173-.173.173-.443M12.588 6.089q.22-.22.22-.55q0-.329-.22-.549t-.55-.22t-.548.22t-.22.55t.22.549t.549.22t.549-.22m-4.78 10.296V17V3zm9.384-12.769v2.127q.31-.002.52.24t.211.55v1.281q0 .31-.21.551q-.211.242-.52.24v7.78q0 .672-.473 1.144q-.472.472-1.143.472H8.423q-.671 0-1.143-.472t-.472-1.144V3.616q0-.672.472-1.144T8.423 2h7.154q.671 0 1.143.472t.472 1.144M8.5 21.519v-1h7v1z");
|
|
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="eeaw7aciq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.eeaw7aciq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12.588 6.086q.22-.222.22-.549t-.222-.547t-.549-.22t-.548.22t-.22.55t.222.547t.549.22t.548-.22M8.423 18q-.666 0-1.14-.475t-.475-1.14V3.615q0-.666.474-1.14T8.423 2h7.154q.666 0 1.14.475t.475 1.14v2.127q.31-.001.52.242t.211.549v1.28q0 .307-.21.55q-.211.243-.52.24v7.782q0 .666-.475 1.14T15.577 18zM9 21.52q-.213 0-.356-.145T8.5 21.02t.144-.356T9 20.52h6q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143z");
|
|
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="prbei6b4s"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.prbei6b4s {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.5 21.52v-1h7v1zm4.088-15.434q.22-.222.22-.549t-.222-.548t-.549-.22t-.548.222t-.22.549t.222.547t.549.22t.548-.22M6.808 18V2h10.384v3.723h.731v2.9h-.73V18z");
|
|
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="ldwngebjg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mobile-dock" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ldwngebjg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12.588 6.086q.22-.222.22-.549t-.222-.547t-.549-.22t-.548.22t-.22.55t.222.547t.549.22t.548-.22m4.604-2.472v2.127q.31-.002.52.241t.211.55v1.28q0 .306-.21.55q-.211.243-.52.24v7.782q0 .666-.475 1.14T15.577 18H8.423q-.666 0-1.14-.475t-.475-1.14V3.615q0-.666.474-1.14T8.423 2h7.154q.666 0 1.14.475t.475 1.14M8.5 21.52v-1h7v1z");
|
|
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="fh3stxb-q"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:pin-road-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fh3stxb-q {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M14.135 20v-2.866h1V20zm0-6.558v-2.865h1v2.865zm0-6.558V4h1v2.885zM20.019 20L17.673 4h1L21 20zm-13.61-.064q-.113-.064-.175-.192l-.083-.193q-.455-1.026-1.336-1.747q-.88-.722-1.496-1.642q-.342-.495-.513-1.076q-.171-.58-.171-1.191q0-1.664 1.154-2.844t2.807-1.18q1.675 0 2.879 1.109t1.204 2.756q0 .633-.152 1.262t-.52 1.164q-.615.925-1.486 1.651t-1.36 1.736l-.084.19q-.064.13-.181.196Q6.779 20 6.65 20t-.241-.064m1.435-4.88q.501-.5.501-1.19q0-.691-.5-1.192t-1.192-.501t-1.192.501t-.5 1.192t.5 1.19t1.192.502t1.191-.501m3.016-6.051q-.207-.194-.417-.346t-.46-.312L10.617 4h.98z");
|
|
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": 15507,
|
|
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": 1781326547
|
|
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.39",
|
|
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",
|
|
@@ -15018,6 +15018,22 @@
|
|
|
15018
15018
|
"types": "./types/dd0bq22g.d.ts",
|
|
15019
15019
|
"default": "./components/d/dashboard-2.vue"
|
|
15020
15020
|
},
|
|
15021
|
+
"./dashboard-2-add": {
|
|
15022
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
15023
|
+
"default": "./components/d/dashboard-2-add.vue"
|
|
15024
|
+
},
|
|
15025
|
+
"./dashboard-2-add-outline": {
|
|
15026
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
15027
|
+
"default": "./components/d/dashboard-2-add-outline.vue"
|
|
15028
|
+
},
|
|
15029
|
+
"./dashboard-2-add-outline-rounded": {
|
|
15030
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
15031
|
+
"default": "./components/d/dashboard-2-add-outline-rounded.vue"
|
|
15032
|
+
},
|
|
15033
|
+
"./dashboard-2-add-rounded": {
|
|
15034
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
15035
|
+
"default": "./components/d/dashboard-2-add-rounded.vue"
|
|
15036
|
+
},
|
|
15021
15037
|
"./dashboard-2-edit": {
|
|
15022
15038
|
"types": "./types/dd0bq22g.d.ts",
|
|
15023
15039
|
"default": "./components/d/dashboard-2-edit.vue"
|
|
@@ -18230,6 +18246,30 @@
|
|
|
18230
18246
|
"types": "./types/dd0bq22g.d.ts",
|
|
18231
18247
|
"default": "./components/d/drive-file-move-sharp.vue"
|
|
18232
18248
|
},
|
|
18249
|
+
"./drive-file-rename": {
|
|
18250
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18251
|
+
"default": "./components/d/drive-file-rename.vue"
|
|
18252
|
+
},
|
|
18253
|
+
"./drive-file-rename-outline": {
|
|
18254
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18255
|
+
"default": "./components/d/drive-file-rename-outline.vue"
|
|
18256
|
+
},
|
|
18257
|
+
"./drive-file-rename-outline-rounded": {
|
|
18258
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18259
|
+
"default": "./components/d/drive-file-rename-outline-rounded.vue"
|
|
18260
|
+
},
|
|
18261
|
+
"./drive-file-rename-outline-sharp": {
|
|
18262
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18263
|
+
"default": "./components/d/drive-file-rename-outline-sharp.vue"
|
|
18264
|
+
},
|
|
18265
|
+
"./drive-file-rename-rounded": {
|
|
18266
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18267
|
+
"default": "./components/d/drive-file-rename-rounded.vue"
|
|
18268
|
+
},
|
|
18269
|
+
"./drive-file-rename-sharp": {
|
|
18270
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18271
|
+
"default": "./components/d/drive-file-rename-sharp.vue"
|
|
18272
|
+
},
|
|
18233
18273
|
"./drive-folder-upload": {
|
|
18234
18274
|
"types": "./types/dd0bq22g.d.ts",
|
|
18235
18275
|
"default": "./components/d/drive-folder-upload.vue"
|
|
@@ -28814,6 +28854,30 @@
|
|
|
28814
28854
|
"types": "./types/dd0bq22g.d.ts",
|
|
28815
28855
|
"default": "./components/i/id-card.vue"
|
|
28816
28856
|
},
|
|
28857
|
+
"./id-card-2": {
|
|
28858
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28859
|
+
"default": "./components/i/id-card-2.vue"
|
|
28860
|
+
},
|
|
28861
|
+
"./id-card-2-outline": {
|
|
28862
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28863
|
+
"default": "./components/i/id-card-2-outline.vue"
|
|
28864
|
+
},
|
|
28865
|
+
"./id-card-2-outline-rounded": {
|
|
28866
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28867
|
+
"default": "./components/i/id-card-2-outline-rounded.vue"
|
|
28868
|
+
},
|
|
28869
|
+
"./id-card-2-outline-sharp": {
|
|
28870
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28871
|
+
"default": "./components/i/id-card-2-outline-sharp.vue"
|
|
28872
|
+
},
|
|
28873
|
+
"./id-card-2-rounded": {
|
|
28874
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28875
|
+
"default": "./components/i/id-card-2-rounded.vue"
|
|
28876
|
+
},
|
|
28877
|
+
"./id-card-2-sharp": {
|
|
28878
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
28879
|
+
"default": "./components/i/id-card-2-sharp.vue"
|
|
28880
|
+
},
|
|
28817
28881
|
"./id-card-outline": {
|
|
28818
28882
|
"types": "./types/dd0bq22g.d.ts",
|
|
28819
28883
|
"default": "./components/i/id-card-outline.vue"
|
|
@@ -35318,6 +35382,30 @@
|
|
|
35318
35382
|
"types": "./types/dd0bq22g.d.ts",
|
|
35319
35383
|
"default": "./components/m/mobile-code-sharp.vue"
|
|
35320
35384
|
},
|
|
35385
|
+
"./mobile-dock": {
|
|
35386
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35387
|
+
"default": "./components/m/mobile-dock.vue"
|
|
35388
|
+
},
|
|
35389
|
+
"./mobile-dock-outline": {
|
|
35390
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35391
|
+
"default": "./components/m/mobile-dock-outline.vue"
|
|
35392
|
+
},
|
|
35393
|
+
"./mobile-dock-outline-rounded": {
|
|
35394
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35395
|
+
"default": "./components/m/mobile-dock-outline-rounded.vue"
|
|
35396
|
+
},
|
|
35397
|
+
"./mobile-dock-outline-sharp": {
|
|
35398
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35399
|
+
"default": "./components/m/mobile-dock-outline-sharp.vue"
|
|
35400
|
+
},
|
|
35401
|
+
"./mobile-dock-rounded": {
|
|
35402
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35403
|
+
"default": "./components/m/mobile-dock-rounded.vue"
|
|
35404
|
+
},
|
|
35405
|
+
"./mobile-dock-sharp": {
|
|
35406
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
35407
|
+
"default": "./components/m/mobile-dock-sharp.vue"
|
|
35408
|
+
},
|
|
35321
35409
|
"./mobile-dots": {
|
|
35322
35410
|
"types": "./types/dd0bq22g.d.ts",
|
|
35323
35411
|
"default": "./components/m/mobile-dots.vue"
|
|
@@ -43018,6 +43106,10 @@
|
|
|
43018
43106
|
"types": "./types/dd0bq22g.d.ts",
|
|
43019
43107
|
"default": "./components/p/pin-road.vue"
|
|
43020
43108
|
},
|
|
43109
|
+
"./pin-road-2": {
|
|
43110
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
43111
|
+
"default": "./components/p/pin-road-2.vue"
|
|
43112
|
+
},
|
|
43021
43113
|
"./pin-rounded": {
|
|
43022
43114
|
"types": "./types/dd0bq22g.d.ts",
|
|
43023
43115
|
"default": "./components/p/pin-rounded.vue"
|