@iconify-vue/material-symbols-light 1.0.36 → 1.0.37
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/c/car-spark-outline-rounded.vue +16 -0
- package/components/c/car-spark-outline-sharp.vue +16 -0
- package/components/c/car-spark-outline.vue +16 -0
- package/components/c/car-spark-rounded.vue +16 -0
- package/components/c/car-spark-sharp.vue +16 -0
- package/components/c/car-spark.vue +16 -0
- package/components/c/credit-card-spark-outline-rounded.vue +16 -0
- package/components/c/credit-card-spark-outline-sharp.vue +16 -0
- package/components/c/credit-card-spark-outline.vue +16 -0
- package/components/c/credit-card-spark-rounded.vue +16 -0
- package/components/c/credit-card-spark-sharp.vue +16 -0
- package/components/c/credit-card-spark.vue +16 -0
- package/components/f/flight-spark-rounded.vue +16 -0
- package/components/f/flight-spark.vue +16 -0
- package/components/l/local-shipping-spark-outline-rounded.vue +16 -0
- package/components/l/local-shipping-spark-outline.vue +16 -0
- package/components/l/local-shipping-spark-rounded.vue +16 -0
- package/components/l/local-shipping-spark.vue +16 -0
- package/components/m/mail-spark-outline-rounded.vue +16 -0
- package/components/m/mail-spark-outline-sharp.vue +16 -0
- package/components/m/mail-spark-outline.vue +16 -0
- package/components/m/mail-spark-rounded.vue +16 -0
- package/components/m/mail-spark-sharp.vue +16 -0
- package/components/m/mail-spark.vue +16 -0
- package/components/p/passport-spark-outline-rounded.vue +16 -0
- package/components/p/passport-spark-outline-sharp.vue +16 -0
- package/components/p/passport-spark-outline.vue +16 -0
- package/components/p/passport-spark-rounded.vue +16 -0
- package/components/p/passport-spark-sharp.vue +16 -0
- package/components/p/passport-spark.vue +16 -0
- package/components/s/screen-spark-pause-outline-rounded.vue +16 -0
- package/components/s/screen-spark-pause-outline-sharp.vue +16 -0
- package/components/s/screen-spark-pause-outline.vue +16 -0
- package/components/s/screen-spark-pause-rounded.vue +16 -0
- package/components/s/screen-spark-pause-sharp.vue +16 -0
- package/components/s/screen-spark-pause.vue +16 -0
- package/components/s/split-scene-2-outline-rounded.vue +16 -0
- package/components/s/split-scene-2-outline-sharp.vue +16 -0
- package/components/s/split-scene-2-outline.vue +16 -0
- package/components/s/split-scene-2-rounded.vue +16 -0
- package/components/s/split-scene-2-sharp.vue +16 -0
- package/components/s/split-scene-2.vue +16 -0
- package/components/w/workspace-studio-outline.vue +16 -0
- package/components/w/workspace-studio.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +189 -13
|
@@ -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="a4j9w2b-t"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.a4j9w2b-t {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h9.22q.213 0 .357.144t.144.357t-.144.356t-.356.143H5V17h14v-4.083q0-.22.144-.37q.144-.149.357-.149t.356.15t.143.37V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
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="yznl2r02u"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.yznl2r02u {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V20h-1.23v-2H5.23v2zm13.98-9.885q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
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="rw_-ukqvt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rw_-ukqvt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
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="gwzhy3bib"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.gwzhy3bib {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4.732 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h8.678q.829.662 1.827 1.004t2.06.342q.292-.006.55-.024t.544-.068q.373-.062.649.159t.276.562V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20");
|
|
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="bhmil1blk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bhmil1blk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V20h-1.23v-2H5.23v2z");
|
|
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="t40nynbke"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.t40nynbke {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m2.697-4.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m1.399-5.576q-.15 0-.2-.15q-.362-1.391-1.359-2.388t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15");
|
|
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="d563b2_ke"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.d563b2_ke {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.367q0 .373-.301.584t-.649.089q-.396-.104-.808-.168t-.838-.065q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.045q.213 0 .354.143q.14.144.14.357t-.143.357t-.357.143zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="fm38c737p"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fm38c737p {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18v-7.577v.194V6zm-1 1V5h18v6q-.608-.263-1.252-.42q-.645-.157-1.344-.157q-.828 0-1.591.195t-1.436.574H4V18h8.025q.05.275.115.516q.064.24.148.484zM4 8.808h16V6H4zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="of-371bmh"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.of-371bmh {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616V11q-.608-.263-1.252-.42t-1.344-.157q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.41q.05.275.115.516q.064.24.148.484zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="zt2l_pbjy"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.zt2l_pbjy {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.89q0 .213-.143.357t-.357.143t-.357-.143t-.143-.357V8.808H4v2.384h9.34q.46 0 .627.445t-.2.784q-1.13 1.181-1.584 2.724t-.098 3.147q.061.274-.098.49t-.431.218z");
|
|
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="mlhhai70i"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.mlhhai70i {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15m-6.115-2H3V5h18v6.006q-.238-.127-.479-.224q-.24-.098-.521-.165v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03");
|
|
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="n7n5fbcvr"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:credit-card-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.n7n5fbcvr {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12.289 19H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.39q-.239-.127-.479-.224T20 10.617v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03m6.115 2q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359t-1.36 2.387q-.024.15-.2.15");
|
|
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="on6p3ibal"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:flight-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.on6p3ibal {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-8.422 3.011l-6.46 2.602q-.407.154-.753-.083T2 14.983v-.36q0-.196.087-.369t.246-.283l7.225-5.09V4.442q0-.595.423-1.018Q10.405 3 11 3t1.018.424t.424 1.018v4.439l7.225 5.09q.159.11.246.283t.087.37v.359q0 .425-.345.663t-.753.083l-6.46-2.602v4.33l2.575 1.82q.128.094.2.227t.072.29v.35q0 .327-.25.515t-.556.095L11 19.692l-3.483 1.062q-.308.092-.557-.095t-.249-.515v-.355q0-.149.072-.283t.2-.229l2.575-1.82z");
|
|
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="l2nhcxbkq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:flight-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.l2nhcxbkq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15M6.713 21v-1.538l2.846-2.004v-4.331L2 16.173v-1.961L9.558 8.88V4.442q0-.594.424-1.018T11 3t1.018.424t.424 1.018v4.439L20 14.21v1.962l-7.558-3.046v4.33l2.827 2.005V21L11 19.692z");
|
|
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="x_fkorbme"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:local-shipping-spark-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x_fkorbme {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-5.401q0-.213.144-.357t.357-.143t.356.143t.143.357V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6h-1.985q-.206 0-.347-.137q-.142-.138-.153-.342q-.012-.217.14-.369t.36-.152h2.177q.343 0 .575.232t.232.576v2.807h1.5q.384 0 .727.172q.344.172.566.474l2.653 3.58q.162.222.243.464t.08.505v1.882q0 .343-.232.576t-.575.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763m2.76-8.66q-.15 0-.2-.15q-.362-1.391-1.359-2.388T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2Q4.04 5.04 5.037 4.04t1.36-2.39q.05-.15.2-.15q.168 0 .2.15q.36 1.39 1.358 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
|
|
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="giyhsnbwf"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:local-shipping-spark-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.giyhsnbwf {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zm-3.5-8.5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763t-.759-1.853H1.692V9.79q.233.252.474.472t.526.411V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6H13.07q.031-.25.013-.5t-.048-.5m-6.44 4.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
|
|
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="huyaljqyt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:local-shipping-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.huyaljqyt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.388-1.358T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m.241 7.953q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-4.638q0-.348.324-.484q.323-.135.601.101q.847.662 1.86 1.034t2.12.372q1.35 0 2.524-.52t2.05-1.386q.921-.921 1.409-2.106q.487-1.186.486-2.488q-.012-.223.148-.4t.38-.177h2.137q.343 0 .575.232t.233.576v2.808h1.5q.383 0 .727.171t.565.475l2.654 3.579q.161.222.242.464t.08.505v1.882q0 .344-.231.576t-.576.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763");
|
|
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="iqt2v1poc"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:local-shipping-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.iqt2v1poc {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m-2.76 8.664q-.759-.76-.759-1.856H1.692V9.79q.92 1.068 2.198 1.677q1.277.61 2.706.61q2.675 0 4.578-1.9t1.903-4.58q0-.145-.009-.299T13.037 5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.096-.76 1.856q-.759.76-1.855.76t-1.856-.76t-.76-1.856H8.308q0 1.096-.76 1.856t-1.856.76t-1.856-.76");
|
|
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="j9u66cb4x"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j9u66cb4x {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m12 11l7.692-5H4.308zm-7.384 8q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.196q0 .213-.143.356t-.357.144t-.357-.144t-.143-.356V6.904l-7.123 4.638q-.404.262-.877.262t-.877-.262L4 6.904v10.48q0 .27.173.443t.443.173h6.813q.213 0 .357.143t.143.357t-.143.357t-.357.143zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="v01drvbcs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.v01drvbcs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m12 11l7.692-5H4.308zm-.083 8H3V5h18v7.077h-1V6.904l-8 5.212l-8-5.212V18h7.917zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="zb2chubtb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.zb2chubtb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m12 11l7.692-5H4.308zm-.083 8H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.461h-1V6.904l-8 5.212l-8-5.212v10.48q0 .27.173.443t.443.173h7.301zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="jlzjzn_rv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.jlzjzn_rv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.201q0 .243-.195.383t-.432.054q-1.71-.562-3.466-.154t-3.078 1.729q-.921.921-1.409 2.107q-.487 1.185-.486 2.487q.012.223-.15.4q-.161.177-.378.177zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M12 11L4.82 6.32q-.195-.122-.402-.045t-.264.289q-.058.148-.015.306q.042.159.184.246l7.108 4.638q.269.165.569.165t.57-.165l7.107-4.638q.142-.087.194-.246t-.025-.307q-.057-.211-.264-.279q-.207-.067-.401.054z");
|
|
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="biw0robjw"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.biw0robjw {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H3V5h18v7.506q-.602-.27-1.251-.426t-1.345-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .16.009.309t.031.288m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="oh6nuheqp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:mail-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.oh6nuheqp {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H4.615q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.89q-.602-.27-1.249-.426q-.647-.157-1.347-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .15.009.305q.008.154.031.292m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
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="dd56a1byr"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.dd56a1byr {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5.808 21q-.348 0-.578-.23T5 20.192V3.808q0-.349.23-.578T5.808 3h6.004q.213 0 .356.143t.144.357t-.144.357t-.356.143H6v16h11.385q.23 0 .423-.192t.192-.424v-6.847q0-.214.143-.357t.357-.143t.357.143t.143.357v6.848q0 .67-.472 1.143q-.472.472-1.143.472zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96m-4.069 4.23h6.116q.19 0 .316-.126q.126-.125.126-.316t-.126-.316q-.126-.126-.316-.126H8.942q-.19 0-.316.126q-.126.125-.126.316t.126.316t.316.126m9.462-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.388 1.358q-.997.997-1.358 2.387q-.025.15-.2.15");
|
|
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="oyo3pdbxs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.oyo3pdbxs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h12v-7.923q.25.03.49.02q.24-.013.51-.06V21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
|
|
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="xxxp1ebbn"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xxxp1ebbn {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h11.385q.23 0 .423-.192t.192-.424v-7.307q.25.03.49.02q.24-.013.51-.06v7.347q0 .672-.472 1.144T17.385 21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
|
|
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="uv47stb3i"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.uv47stb3i {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.942 18.192h6.116q.19 0 .316-.126q.126-.125.126-.316t-.126-.316q-.126-.126-.316-.126H8.942q-.19 0-.316.126q-.126.125-.126.316t.126.316t.316.126m2.064-8.134q.075-.987.328-1.778q.254-.791.666-1.374q.411.582.665 1.374q.254.791.33 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5.809 21q-.348 0-.578-.23T5 20.192V3.808q0-.349.23-.578T5.808 3h5.7q.354 0 .553.282t.095.63q-.142.511-.197 1.028q-.055.518-.017 1.021Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.453.15.936.228q.483.08.975.087q.304.007.515.2q.21.192.21.49v6.617q0 .672-.472 1.144T17.385 21z");
|
|
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="h79en8bgz"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h79en8bgz {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.5 18.192h7v-.884h-7zm2.506-8.134q.075-.987.329-1.778q.253-.791.665-1.374q.412.582.666 1.374q.253.791.328 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496q-.113.49-.163.98q-.05.491-.012.982Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.39.132.796.211t.84.104q.25.03.49.02q.24-.013.51-.06V21z");
|
|
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="eb-x7yb9r"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:passport-spark" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.eb-x7yb9r {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M8.5 18.192h7v-.884h-7zm2.506-8.134q.075-.987.329-1.778q.253-.791.665-1.374q.412.582.666 1.374q.253.791.328 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496q-.113.49-.163.98q-.05.491-.012.982Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.39.132.796.211t.84.104q.25.03.49.02q.24-.013.51-.06v7.347q0 .672-.472 1.144T17.385 21z");
|
|
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="ju0yr0x7g"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ju0yr0x7g {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18V6v5.627v-.32zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.511q0 .214-.143.357t-.357.143t-.357-.143t-.143-.357V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192h6.224q.213 0 .356.143t.143.357t-.143.357t-.357.143zm10.549 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.777-1.143q.162 0 .274-.111q.111-.112.111-.273V16.75q0-.161-.111-.273q-.112-.111-.274-.111t-.273.111t-.111.273v2.616q0 .161.111.273t.273.111m2.116 0q.161 0 .273-.111t.111-.273V16.75q0-.161-.111-.273t-.273-.111t-.273.111t-.112.273v2.616q0 .161.112.273q.111.111.273.111m-7.352-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
|
|
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="gonz1hbgd"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.gonz1hbgd {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18V6v5.627v-.32zm7.339 1H3V5h18v7.044q-.238-.133-.479-.235q-.24-.103-.521-.182V6H4v12h7.25q0 .256.017.506t.072.494m3.825 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zm-6.967-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
|
|
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="e2b4g5bsv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.e2b4g5bsv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 18V6v5.627v-.32zm7.339 1H4.615q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.428q-.239-.132-.479-.235T20 11.627V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192h6.635q0 .256.017.506t.072.494m3.825 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zm-6.967-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
|
|
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="bzcq0zb9u"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bzcq0zb9u {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m2.05-1.255q.112-.111.112-.273V16.75q0-.161-.111-.273q-.112-.111-.274-.111t-.273.111t-.111.273v2.616q0 .161.111.273t.273.111t.274-.111m2.115 0q.111-.112.111-.273V16.75q0-.161-.111-.273t-.273-.111t-.273.111t-.112.273v2.616q0 .161.112.273q.111.111.273.111t.273-.111M3 6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.4q0 .353-.301.55q-.301.196-.649.073q-.496-.16-1.004-.246T18 11.308q-.598 0-1.178.106q-.58.105-1.122.311q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.254.62-.364 1.295t-.075 1.344q.012.298-.175.509q-.186.21-.478.21H4.615q-.69 0-1.153-.463T3 17.385z");
|
|
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="c697rwbjm"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.c697rwbjm {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zM3 19V5h18v7.044q-.677-.35-1.43-.543T18 11.308q-.598 0-1.178.105q-.58.106-1.122.312q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.225.562-.34 1.17q-.116.61-.116 1.246q0 .236.017.476q.018.241.072.466z");
|
|
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="fgqao58ui"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:screen-spark-pause" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fgqao58ui {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zM4.616 19q-.691 0-1.154-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.428q-.677-.35-1.43-.543T18 11.308q-.598 0-1.178.106q-.58.105-1.122.311q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.225.562-.34 1.17q-.116.61-.116 1.246q0 .236.017.476q.018.241.072.466z");
|
|
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="i4iacgb1v"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.i4iacgb1v {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3q0-.213.143-.356q.144-.144.357-.144t.357.144q.143.143.143.356v3q0 .231.192.424t.423.192h10.77q.23 0 .423-.192t.192-.424v-3q0-.213.143-.356q.143-.144.357-.144t.357.144t.143.356v3q0 .691-.462 1.153T17.384 20zM3.5 12.5q-.213 0-.357-.143T3 12t.143-.357t.357-.143H5V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h1.5q.214 0 .357.143T21 12t-.143.357t-.357.143zm2.5-1h12V5.616q0-.231-.192-.424T17.384 5H6.616q-.231 0-.424.192T6 5.616zM18 19H6zm0-14H6z");
|
|
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="ounswac7d"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ounswac7d {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 20v-5.115h1V19h12v-4.115h1V20zm-2-7.5v-1h2V4h14v7.5h2v1zm3-1h12V5H6zM18 19H6zm0-14H6z");
|
|
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="nop0-f7ne"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.nop0-f7ne {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3.5h1v3.5q0 .231.192.424t.423.192h10.77q.23 0 .423-.192t.192-.424v-3.5h1v3.5q0 .691-.462 1.153T17.384 20zM3 12.5v-1h2V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h2v1zm3-1h12V5.616q0-.231-.192-.424T17.384 5H6.616q-.231 0-.424.192T6 5.616zM18 19H6zm0-14H6z");
|
|
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="k34qr1a1d"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.k34qr1a1d {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3q0-.213.143-.356q.144-.144.357-.144h13q.214 0 .357.144q.143.143.143.356v3q0 .691-.462 1.153T17.384 20zM3.5 12.5q-.213 0-.357-.143T3 12t.143-.357t.357-.143H5V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h1.5q.214 0 .357.143T21 12t-.143.357t-.357.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="bg5nmnbrk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bg5nmnbrk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 20v-5.115h14V20zm-2-7.5v-1h2V4h14v7.5h2v1z");
|
|
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="vfiw6-bmw"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:split-scene-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.vfiw6-bmw {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3.5h14v3.5q0 .691-.462 1.153T17.384 20zM3 12.5v-1h2V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h2v1z");
|
|
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="rt54yhb8w"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:workspace-studio-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rt54yhb8w {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21q-1.363 0-2.323-.942t-1.004-2.304q-.025-.685.226-1.322q.25-.636.732-1.116l3.335-3.31l-3.335-3.31q-.454-.448-.695-1.024q-.242-.576-.263-1.214q-.05-1.431.919-2.444T11.998 3q.668 0 1.275.246q.608.246 1.09.718l5.649 5.653q.473.478.73 1.091Q21 11.321 21 12t-.242 1.294t-.721 1.075l-5.673 5.654q-.48.479-1.087.728T12 21m-.004-1.025q.473 0 .9-.166q.429-.167.754-.5l5.748-5.748q.287-.323.444-.736q.158-.412.158-.854t-.157-.84t-.464-.731L13.65 4.677q-.333-.333-.757-.502q-.425-.17-.893-.17q-.979 0-1.653.675q-.674.674-.674 1.647q0 .489.17.906t.501.75l4.023 3.998l-4.023 4.023q-.332.333-.502.757t-.169.893q0 .97.674 1.645q.674.676 1.649.676m2.835-4.667q.1 0 .187-.037q.088-.036.163-.11l2.165-2.159q.218-.198.32-.458q.101-.26.101-.563t-.101-.554t-.32-.467L15.181 8.8q-.146-.146-.347-.146t-.367.146q-.146.166-.146.366q0 .201.146.348l2.05 2.044q.193.192.193.433q0 .24-.193.432l-2.05 2.03q-.146.166-.146.369t.15.338q.074.074.167.11q.094.038.193.038M5.86 20.006q-1.205 0-2.032-.864Q3 18.28 3 17.066q0-.61.227-1.15q.227-.541.656-.964l3.04-2.946l-3.04-2.947q-.43-.422-.656-.963T3 6.946q0-1.212.827-2.076t2.032-.864q.572 0 1.08.195t.915.607l1.261 1.255v1.421l-1.95-1.938q-.257-.258-.592-.399t-.7-.141q-.792 0-1.323.574q-.53.575-.53 1.383q0 .404.144.762t.427.621l3.74 3.66l-3.74 3.66q-.283.263-.427.624t-.145.77q0 .804.531 1.375q.53.57 1.323.57q.365 0 .7-.14q.335-.142.593-.4l1.95-1.836v1.41l-1.262 1.14q-.385.404-.904.615t-1.091.212m8.508-8.025");
|
|
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="rmcziz5_n"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:workspace-studio" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rmcziz5_n {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 21q-1.362 0-2.322-.942q-.96-.943-1.005-2.304q-.025-.685.227-1.322t.73-1.116l3.335-3.31l-3.334-3.31q-.454-.448-.693-1.023t-.265-1.215q-.05-1.431.92-2.444T12 3q.666 0 1.275.242t1.089.721l5.647 5.654q.48.48.734 1.092T21 12.006q0 .665-.242 1.285t-.721 1.078l-5.673 5.654q-.48.479-1.089.728T12 21m-6.134-.994q-1.206 0-2.036-.868T3 17.066q0-.61.227-1.15t.656-.963l3.04-2.946l-3.04-2.947q-.43-.422-.656-.963T3 6.946q0-1.212.83-2.076t2.035-.864q.23 0 .452.04q.223.04.44.102q-.234.565-.364 1.161T6.29 6.527q.05 1.079.458 2.087t1.19 1.77l1.64 1.622l-1.64 1.621q-.856.83-1.275 1.927t-.374 2.263q.025.527.13 1.042q.105.514.32 1.004q-.217.062-.43.102q-.214.04-.443.04m8.602-4.844q.152.147.37.156q.217.01.344-.156l2.165-2.159q.218-.198.32-.458q.101-.26.101-.563t-.101-.554t-.32-.467L15.181 8.8q-.146-.146-.347-.146t-.367.146q-.146.166-.146.366q0 .201.146.348l2.05 2.044q.193.192.193.433q0 .24-.193.432l-2.05 2.03q-.146.166-.146.367t.146.342");
|
|
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": 15524,
|
|
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": 1780375090
|
|
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.37",
|
|
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",
|
|
@@ -10502,6 +10502,30 @@
|
|
|
10502
10502
|
"types": "./types/dd0bq22g.d.ts",
|
|
10503
10503
|
"default": "./components/c/car-repair-sharp.vue"
|
|
10504
10504
|
},
|
|
10505
|
+
"./car-spark": {
|
|
10506
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10507
|
+
"default": "./components/c/car-spark.vue"
|
|
10508
|
+
},
|
|
10509
|
+
"./car-spark-outline": {
|
|
10510
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10511
|
+
"default": "./components/c/car-spark-outline.vue"
|
|
10512
|
+
},
|
|
10513
|
+
"./car-spark-outline-rounded": {
|
|
10514
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10515
|
+
"default": "./components/c/car-spark-outline-rounded.vue"
|
|
10516
|
+
},
|
|
10517
|
+
"./car-spark-outline-sharp": {
|
|
10518
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10519
|
+
"default": "./components/c/car-spark-outline-sharp.vue"
|
|
10520
|
+
},
|
|
10521
|
+
"./car-spark-rounded": {
|
|
10522
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10523
|
+
"default": "./components/c/car-spark-rounded.vue"
|
|
10524
|
+
},
|
|
10525
|
+
"./car-spark-sharp": {
|
|
10526
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10527
|
+
"default": "./components/c/car-spark-sharp.vue"
|
|
10528
|
+
},
|
|
10505
10529
|
"./car-tag": {
|
|
10506
10530
|
"types": "./types/dd0bq22g.d.ts",
|
|
10507
10531
|
"default": "./components/c/car-tag.vue"
|
|
@@ -14474,6 +14498,30 @@
|
|
|
14474
14498
|
"types": "./types/dd0bq22g.d.ts",
|
|
14475
14499
|
"default": "./components/c/credit-card-sharp.vue"
|
|
14476
14500
|
},
|
|
14501
|
+
"./credit-card-spark": {
|
|
14502
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14503
|
+
"default": "./components/c/credit-card-spark.vue"
|
|
14504
|
+
},
|
|
14505
|
+
"./credit-card-spark-outline": {
|
|
14506
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14507
|
+
"default": "./components/c/credit-card-spark-outline.vue"
|
|
14508
|
+
},
|
|
14509
|
+
"./credit-card-spark-outline-rounded": {
|
|
14510
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14511
|
+
"default": "./components/c/credit-card-spark-outline-rounded.vue"
|
|
14512
|
+
},
|
|
14513
|
+
"./credit-card-spark-outline-sharp": {
|
|
14514
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14515
|
+
"default": "./components/c/credit-card-spark-outline-sharp.vue"
|
|
14516
|
+
},
|
|
14517
|
+
"./credit-card-spark-rounded": {
|
|
14518
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14519
|
+
"default": "./components/c/credit-card-spark-rounded.vue"
|
|
14520
|
+
},
|
|
14521
|
+
"./credit-card-spark-sharp": {
|
|
14522
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
14523
|
+
"default": "./components/c/credit-card-spark-sharp.vue"
|
|
14524
|
+
},
|
|
14477
14525
|
"./credit-score": {
|
|
14478
14526
|
"types": "./types/dd0bq22g.d.ts",
|
|
14479
14527
|
"default": "./components/c/credit-score.vue"
|
|
@@ -22786,6 +22834,14 @@
|
|
|
22786
22834
|
"types": "./types/dd0bq22g.d.ts",
|
|
22787
22835
|
"default": "./components/f/flight-rounded.vue"
|
|
22788
22836
|
},
|
|
22837
|
+
"./flight-spark": {
|
|
22838
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22839
|
+
"default": "./components/f/flight-spark.vue"
|
|
22840
|
+
},
|
|
22841
|
+
"./flight-spark-rounded": {
|
|
22842
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22843
|
+
"default": "./components/f/flight-spark-rounded.vue"
|
|
22844
|
+
},
|
|
22789
22845
|
"./flight-takeoff": {
|
|
22790
22846
|
"types": "./types/dd0bq22g.d.ts",
|
|
22791
22847
|
"default": "./components/f/flight-takeoff.vue"
|
|
@@ -32474,6 +32530,22 @@
|
|
|
32474
32530
|
"types": "./types/dd0bq22g.d.ts",
|
|
32475
32531
|
"default": "./components/l/local-shipping-sharp.vue"
|
|
32476
32532
|
},
|
|
32533
|
+
"./local-shipping-spark": {
|
|
32534
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
32535
|
+
"default": "./components/l/local-shipping-spark.vue"
|
|
32536
|
+
},
|
|
32537
|
+
"./local-shipping-spark-outline": {
|
|
32538
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
32539
|
+
"default": "./components/l/local-shipping-spark-outline.vue"
|
|
32540
|
+
},
|
|
32541
|
+
"./local-shipping-spark-outline-rounded": {
|
|
32542
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
32543
|
+
"default": "./components/l/local-shipping-spark-outline-rounded.vue"
|
|
32544
|
+
},
|
|
32545
|
+
"./local-shipping-spark-rounded": {
|
|
32546
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
32547
|
+
"default": "./components/l/local-shipping-spark-rounded.vue"
|
|
32548
|
+
},
|
|
32477
32549
|
"./local-taxi": {
|
|
32478
32550
|
"types": "./types/dd0bq22g.d.ts",
|
|
32479
32551
|
"default": "./components/l/local-taxi.vue"
|
|
@@ -33406,6 +33478,30 @@
|
|
|
33406
33478
|
"types": "./types/dd0bq22g.d.ts",
|
|
33407
33479
|
"default": "./components/m/mail-shield-sharp.vue"
|
|
33408
33480
|
},
|
|
33481
|
+
"./mail-spark": {
|
|
33482
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33483
|
+
"default": "./components/m/mail-spark.vue"
|
|
33484
|
+
},
|
|
33485
|
+
"./mail-spark-outline": {
|
|
33486
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33487
|
+
"default": "./components/m/mail-spark-outline.vue"
|
|
33488
|
+
},
|
|
33489
|
+
"./mail-spark-outline-rounded": {
|
|
33490
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33491
|
+
"default": "./components/m/mail-spark-outline-rounded.vue"
|
|
33492
|
+
},
|
|
33493
|
+
"./mail-spark-outline-sharp": {
|
|
33494
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33495
|
+
"default": "./components/m/mail-spark-outline-sharp.vue"
|
|
33496
|
+
},
|
|
33497
|
+
"./mail-spark-rounded": {
|
|
33498
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33499
|
+
"default": "./components/m/mail-spark-rounded.vue"
|
|
33500
|
+
},
|
|
33501
|
+
"./mail-spark-sharp": {
|
|
33502
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
33503
|
+
"default": "./components/m/mail-spark-sharp.vue"
|
|
33504
|
+
},
|
|
33409
33505
|
"./male": {
|
|
33410
33506
|
"types": "./types/dd0bq22g.d.ts",
|
|
33411
33507
|
"default": "./components/m/male.vue"
|
|
@@ -40982,6 +41078,30 @@
|
|
|
40982
41078
|
"types": "./types/dd0bq22g.d.ts",
|
|
40983
41079
|
"default": "./components/p/passport-sharp.vue"
|
|
40984
41080
|
},
|
|
41081
|
+
"./passport-spark": {
|
|
41082
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41083
|
+
"default": "./components/p/passport-spark.vue"
|
|
41084
|
+
},
|
|
41085
|
+
"./passport-spark-outline": {
|
|
41086
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41087
|
+
"default": "./components/p/passport-spark-outline.vue"
|
|
41088
|
+
},
|
|
41089
|
+
"./passport-spark-outline-rounded": {
|
|
41090
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41091
|
+
"default": "./components/p/passport-spark-outline-rounded.vue"
|
|
41092
|
+
},
|
|
41093
|
+
"./passport-spark-outline-sharp": {
|
|
41094
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41095
|
+
"default": "./components/p/passport-spark-outline-sharp.vue"
|
|
41096
|
+
},
|
|
41097
|
+
"./passport-spark-rounded": {
|
|
41098
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41099
|
+
"default": "./components/p/passport-spark-rounded.vue"
|
|
41100
|
+
},
|
|
41101
|
+
"./passport-spark-sharp": {
|
|
41102
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41103
|
+
"default": "./components/p/passport-spark-sharp.vue"
|
|
41104
|
+
},
|
|
40985
41105
|
"./password": {
|
|
40986
41106
|
"types": "./types/dd0bq22g.d.ts",
|
|
40987
41107
|
"default": "./components/p/password.vue"
|
|
@@ -47390,6 +47510,30 @@
|
|
|
47390
47510
|
"types": "./types/dd0bq22g.d.ts",
|
|
47391
47511
|
"default": "./components/s/screen-share-sharp.vue"
|
|
47392
47512
|
},
|
|
47513
|
+
"./screen-spark-pause": {
|
|
47514
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47515
|
+
"default": "./components/s/screen-spark-pause.vue"
|
|
47516
|
+
},
|
|
47517
|
+
"./screen-spark-pause-outline": {
|
|
47518
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47519
|
+
"default": "./components/s/screen-spark-pause-outline.vue"
|
|
47520
|
+
},
|
|
47521
|
+
"./screen-spark-pause-outline-rounded": {
|
|
47522
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47523
|
+
"default": "./components/s/screen-spark-pause-outline-rounded.vue"
|
|
47524
|
+
},
|
|
47525
|
+
"./screen-spark-pause-outline-sharp": {
|
|
47526
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47527
|
+
"default": "./components/s/screen-spark-pause-outline-sharp.vue"
|
|
47528
|
+
},
|
|
47529
|
+
"./screen-spark-pause-rounded": {
|
|
47530
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47531
|
+
"default": "./components/s/screen-spark-pause-rounded.vue"
|
|
47532
|
+
},
|
|
47533
|
+
"./screen-spark-pause-sharp": {
|
|
47534
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
47535
|
+
"default": "./components/s/screen-spark-pause-sharp.vue"
|
|
47536
|
+
},
|
|
47393
47537
|
"./screenshot": {
|
|
47394
47538
|
"types": "./types/dd0bq22g.d.ts",
|
|
47395
47539
|
"default": "./components/s/screenshot.vue"
|
|
@@ -51906,6 +52050,30 @@
|
|
|
51906
52050
|
"types": "./types/dd0bq22g.d.ts",
|
|
51907
52051
|
"default": "./components/s/split-scene.vue"
|
|
51908
52052
|
},
|
|
52053
|
+
"./split-scene-2": {
|
|
52054
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52055
|
+
"default": "./components/s/split-scene-2.vue"
|
|
52056
|
+
},
|
|
52057
|
+
"./split-scene-2-outline": {
|
|
52058
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52059
|
+
"default": "./components/s/split-scene-2-outline.vue"
|
|
52060
|
+
},
|
|
52061
|
+
"./split-scene-2-outline-rounded": {
|
|
52062
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52063
|
+
"default": "./components/s/split-scene-2-outline-rounded.vue"
|
|
52064
|
+
},
|
|
52065
|
+
"./split-scene-2-outline-sharp": {
|
|
52066
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52067
|
+
"default": "./components/s/split-scene-2-outline-sharp.vue"
|
|
52068
|
+
},
|
|
52069
|
+
"./split-scene-2-rounded": {
|
|
52070
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52071
|
+
"default": "./components/s/split-scene-2-rounded.vue"
|
|
52072
|
+
},
|
|
52073
|
+
"./split-scene-2-sharp": {
|
|
52074
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52075
|
+
"default": "./components/s/split-scene-2-sharp.vue"
|
|
52076
|
+
},
|
|
51909
52077
|
"./split-scene-down": {
|
|
51910
52078
|
"types": "./types/dd0bq22g.d.ts",
|
|
51911
52079
|
"default": "./components/s/split-scene-down.vue"
|
|
@@ -51986,10 +52154,6 @@
|
|
|
51986
52154
|
"types": "./types/dd0bq22g.d.ts",
|
|
51987
52155
|
"default": "./components/s/split-scene-sharp.vue"
|
|
51988
52156
|
},
|
|
51989
|
-
"./split-scene-up": {
|
|
51990
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
51991
|
-
"default": "./components/s/split-scene-up.vue"
|
|
51992
|
-
},
|
|
51993
52157
|
"./split-scene-up-outline": {
|
|
51994
52158
|
"types": "./types/dd0bq22g.d.ts",
|
|
51995
52159
|
"default": "./components/s/split-scene-up-outline.vue"
|
|
@@ -52002,14 +52166,6 @@
|
|
|
52002
52166
|
"types": "./types/dd0bq22g.d.ts",
|
|
52003
52167
|
"default": "./components/s/split-scene-up-outline-sharp.vue"
|
|
52004
52168
|
},
|
|
52005
|
-
"./split-scene-up-rounded": {
|
|
52006
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
52007
|
-
"default": "./components/s/split-scene-up-rounded.vue"
|
|
52008
|
-
},
|
|
52009
|
-
"./split-scene-up-sharp": {
|
|
52010
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
52011
|
-
"default": "./components/s/split-scene-up-sharp.vue"
|
|
52012
|
-
},
|
|
52013
52169
|
"./splitscreen": {
|
|
52014
52170
|
"types": "./types/dd0bq22g.d.ts",
|
|
52015
52171
|
"default": "./components/s/splitscreen.vue"
|
|
@@ -62830,6 +62986,14 @@
|
|
|
62830
62986
|
"types": "./types/dd0bq22g.d.ts",
|
|
62831
62987
|
"default": "./components/w/workspace-premium-rounded.vue"
|
|
62832
62988
|
},
|
|
62989
|
+
"./workspace-studio": {
|
|
62990
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62991
|
+
"default": "./components/w/workspace-studio.vue"
|
|
62992
|
+
},
|
|
62993
|
+
"./workspace-studio-outline": {
|
|
62994
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62995
|
+
"default": "./components/w/workspace-studio-outline.vue"
|
|
62996
|
+
},
|
|
62833
62997
|
"./workspaces": {
|
|
62834
62998
|
"types": "./types/dd0bq22g.d.ts",
|
|
62835
62999
|
"default": "./components/w/workspaces.vue"
|
|
@@ -63954,6 +64118,18 @@
|
|
|
63954
64118
|
"types": "./types/dd0bq22g.d.ts",
|
|
63955
64119
|
"default": "./components/s/split-scene-right-sharp.vue"
|
|
63956
64120
|
},
|
|
64121
|
+
"./split-scene-up": {
|
|
64122
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
64123
|
+
"default": "./components/s/split-scene-up.vue"
|
|
64124
|
+
},
|
|
64125
|
+
"./split-scene-up-rounded": {
|
|
64126
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
64127
|
+
"default": "./components/s/split-scene-up-rounded.vue"
|
|
64128
|
+
},
|
|
64129
|
+
"./split-scene-up-sharp": {
|
|
64130
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
64131
|
+
"default": "./components/s/split-scene-up-sharp.vue"
|
|
64132
|
+
},
|
|
63957
64133
|
"./stay-current-landscape": {
|
|
63958
64134
|
"types": "./types/dd0bq22g.d.ts",
|
|
63959
64135
|
"default": "./components/s/stay-current-landscape.vue"
|