@iconify-vue/material-symbols-light 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/b/battery-charging-20-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-20-2-rounded.vue +16 -0
- package/components/b/battery-charging-20-2-sharp.vue +16 -0
- package/components/b/battery-charging-20-2.vue +16 -0
- package/components/b/battery-charging-30-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-30-2-rounded.vue +16 -0
- package/components/b/battery-charging-30-2-sharp.vue +16 -0
- package/components/b/battery-charging-30-2.vue +16 -0
- package/components/b/battery-charging-50-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-50-2-rounded.vue +16 -0
- package/components/b/battery-charging-50-2-sharp.vue +16 -0
- package/components/b/battery-charging-50-2.vue +16 -0
- package/components/b/battery-charging-60-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-60-2-rounded.vue +16 -0
- package/components/b/battery-charging-60-2-sharp.vue +16 -0
- package/components/b/battery-charging-60-2.vue +16 -0
- package/components/b/battery-charging-80-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-80-2-rounded.vue +16 -0
- package/components/b/battery-charging-80-2-sharp.vue +16 -0
- package/components/b/battery-charging-80-2.vue +16 -0
- package/components/b/battery-charging-full-2-outline-rounded.vue +16 -0
- package/components/b/battery-charging-full-2-outline-sharp.vue +16 -0
- package/components/b/battery-charging-full-2-outline.vue +16 -0
- package/components/b/battery-charging-full-2-rounded.vue +16 -0
- package/components/b/battery-charging-full-2-sharp.vue +16 -0
- package/components/b/battery-charging-full-2.vue +16 -0
- package/components/b/bolt-boost-rounded.vue +16 -0
- package/components/b/bolt-boost.vue +16 -0
- package/components/c/car-fan-recirculate-2-outline-rounded.vue +16 -0
- package/components/c/car-fan-recirculate-2-outline-sharp.vue +16 -0
- package/components/c/car-fan-recirculate-2-outline.vue +16 -0
- package/components/c/car-fan-recirculate-2-rounded.vue +16 -0
- package/components/c/car-fan-recirculate-2-sharp.vue +16 -0
- package/components/c/car-fan-recirculate-2.vue +16 -0
- package/components/c/car-fan-recirculate-outline-rounded.vue +16 -0
- package/components/c/car-fan-recirculate-outline-sharp.vue +16 -0
- package/components/c/car-fan-recirculate-outline.vue +16 -0
- package/components/c/car-fan-recirculate-rounded.vue +3 -3
- package/components/c/car-fan-recirculate-sharp.vue +16 -0
- package/components/c/car-fan-recirculate.vue +3 -3
- package/components/l/list-arrow-rounded.vue +16 -0
- package/components/l/list-arrow.vue +16 -0
- package/components/w/wifi-device-outline-rounded.vue +16 -0
- package/components/w/wifi-device-outline-sharp.vue +16 -0
- package/components/w/wifi-device-outline.vue +16 -0
- package/components/w/wifi-device-rounded.vue +16 -0
- package/components/w/wifi-device-sharp.vue +16 -0
- package/components/w/wifi-device.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +185 -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="kd25c0br"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-20-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kd25c0br {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="tejo3rbr"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-20-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.tejo3rbr {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="lx65sbb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-20-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.lx65sbb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H5.5v7h9.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="w0pet7y"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-20-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.w0pet7y {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H5.5v7h9.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="ypfyq_ay"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-30-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ypfyq_ay {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="wlgjghuj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-30-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wlgjghuj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="jo83gef"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-30-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.jo83gef {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H7.5v7h7.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="jzshhhb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-30-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.jzshhhb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H7.5v7h7.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="yw1jvwbu"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-50-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.yw1jvwbu {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="v1bjliif"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-50-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.v1bjliif {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="x4-z3vs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-50-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x4-z3vs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H9.5v7h5.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="anftz8b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-50-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.anftz8b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H9.5v7h5.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="kg4moabd"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-60-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kg4moabd {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="ddbolv0r"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-60-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ddbolv0r {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="yxvqafb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-60-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.yxvqafb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H10.5v7h4.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="pikbk3b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-60-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.pikbk3b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H10.5v7h4.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="n--lxcbq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-80-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.n--lxcbq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="n_6y9hbp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-80-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.n_6y9hbp {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="x1bobsb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-80-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x1bobsb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H12.5v7h2.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="t6ovf3b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-80-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.t6ovf3b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H12.5v7h2.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="xe2cugpg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xe2cugpg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.5 15.5v-7zm-.192 1q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H3.5v7h10.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
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="dqyiiib"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.dqyiiib {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H3.5v7h11.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
|
|
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="ne7lx8f"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ne7lx8f {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H3.5v7h11.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
|
|
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="tj60ue5j"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.tj60ue5j {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .338.143q.124.144.124.357l-2.78 4.048q-.75 1.104-.131 2.278t1.959 1.174q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
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="fko9l_b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fko9l_b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2.5 16.5v-9h12.962l-4 5.742V15.5h3.192l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="op256cq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:battery-charging-full-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.op256cq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-4 5.742V15.5h3.192l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.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="waox7ihg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bolt-boost-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.waox7ihg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M13.69 19.379q-.069-.11-.044-.27l.816-5.648h-3.877q-.49 0-.727-.444t.055-.848l5.502-7.571q.106-.13.23-.159t.255.022t.199.16t.043.27l-.815 5.667h3.877q.49 0 .717.444t-.065.848l-5.483 7.552q-.106.13-.23.159t-.255-.022t-.198-.16M4.5 17.25q-.213 0-.356-.144T4 16.749t.144-.356t.356-.143h6.646q.25 0 .375.155t.125.341t-.125.345t-.375.159zm-1-4.75q-.213 0-.356-.144T3 11.999t.144-.356t.356-.143h3q.25 0 .375.155t.125.342t-.125.344t-.375.159zm1.98-4.75q-.212 0-.355-.144t-.144-.357t.144-.356t.356-.143h4.548q.25 0 .375.155t.125.341t-.125.345t-.375.159z");
|
|
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="y8sp8nb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bolt-boost" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.y8sp8nb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m13.52 20l.942-6.539H8.994L15.846 4h.423l-.942 6.558h5.448L13.942 20zM4 17.25v-1h7.72l-.147 1zM3 12.5v-1h4.489l-.739 1zm1.98-4.75v-1h6.024l-.72 1z");
|
|
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="wsao2kka"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wsao2kka {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M14.116 10.529q0-1.008-.723-1.71q-.722-.703-1.749-.703H8.173q-.171 0-.297.116t-.126.307q0 .17.126.306t.297.136h3.471q.652 0 1.12.458t.467 1.09t-.467 1.08t-1.12.449H9.048l.63-.612q.13-.129.13-.304t-.13-.303q-.128-.13-.303-.13t-.304.13L7.97 11.916q-.242.242-.242.577t.242.578l1.102 1.077q.129.129.304.12t.304-.14q.129-.147.129-.312q0-.166-.148-.295l-.612-.598h2.596q1.008 0 1.74-.703t.732-1.691M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197q0-.047.035-.091t.081-.044h6.48q.047 0 .091.044t.045.09q0 .683.552 1.198q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197q0-.047.035-.091t.081-.044H22v-4.092q0-.25-.163-.423t-.414-.193l-4.156-.342q-.211-.025-.363-.121t-.258-.258L14.048 6.5H6.342l-1.711 4.58q-.087.243-.298.38q-.212.136-.46.136H2.615q-.269 0-.442.173T2 12.212v3.942h2.73q.047 0 .091.044t.045.09q0 .683.552 1.198Q5.971 18 6.75 18M12 12.25");
|
|
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="stefz8bn"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.stefz8bn {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l2.866 4.616l5.538.442v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.67l-5.142-.411l-2.81-4.573H6.342L4.44 11.596H2v4.558h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18M12 12.25");
|
|
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="j2fz-cca"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j2fz-cca {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.092q0-.25-.163-.423t-.414-.193l-4.565-.373l-2.81-4.573H6.342L4.44 11.596H2.614q-.269 0-.442.173T2 12.212v3.942h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18M12 12.25");
|
|
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="xmvqiibq"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xmvqiibq {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M14.116 10.529q0-1.008-.723-1.71q-.722-.703-1.749-.703H8.173q-.171 0-.297.116t-.126.307q0 .17.126.306t.297.136h3.471q.652 0 1.12.458t.467 1.09t-.467 1.08t-1.12.449H9.048l.63-.612q.13-.129.13-.304t-.13-.303q-.128-.13-.303-.13t-.304.13L7.97 11.916q-.242.242-.242.577t.242.578l1.102 1.077q.129.129.304.12t.304-.14q.129-.147.129-.312q0-.166-.148-.295l-.612-.598h2.596q1.008 0 1.74-.703t.732-1.691M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
|
|
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="c8al4bbh"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.c8al4bbh {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l2.866 4.616l5.538.442v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
|
|
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="mxsu58bk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.mxsu58bk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
|
|
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="daqnkgbx"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.daqnkgbx {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.59.949q.14.213.067.396t-.244.287t-.354.08q-.182-.025-.323-.238L14.048 6.5H6.342l-1.711 4.58q-.087.243-.298.38q-.212.136-.46.136H2.615q-.269 0-.442.173T2 12.212v3.942h2.73q.047 0 .091.044t.045.09q0 .683.552 1.198Q5.971 18 6.75 18t1.332-.514t.552-1.197q0-.047.035-.091t.081-.044h6.48q.047 0 .091.044t.045.09q0 .683.552 1.198q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197q0-.047.035-.091t.081-.044H22v-4.092q0-.25-.163-.423t-.414-.193l-1.72-.15q-.25-.03-.371-.192q-.122-.162-.091-.344q.03-.183.161-.339t.38-.125l1.643.131q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m8.034-7.442H9.625l.689-.689q.128-.128.128-.306t-.129-.307t-.313-.129t-.313.129l-1.18 1.179q-.241.242-.241.565t.242.566l1.179 1.198q.129.128.313.119q.185-.01.314-.139q.128-.128.128-.306t-.128-.307l-.689-.689h5.192q.187 0 .336-.068t.28-.205l5.411-6.311q.123-.154.11-.33t-.165-.297q-.155-.123-.332-.11t-.301.165z");
|
|
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="s4gga3bs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.s4gga3bs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l1.214 1.971l-.683.792l-1.08-1.763H6.342L4.44 11.596H2v4.558h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18t1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.67l-3.284-.267l.811-.946l3.473.287v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
|
|
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="h3kgpx5o"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h3kgpx5o {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.772 1.266l-.682.793L14.048 6.5H6.342L4.44 11.596H2.614q-.269 0-.442.173T2 12.212v3.942h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18t1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.092q0-.25-.163-.423t-.414-.193l-2.707-.229l.811-.946l1.898.156q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -4,13 +4,13 @@ import { Icon } from '@iconify/css-vue';
|
|
|
4
4
|
const props = defineProps(["width","height"]);
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":24,"height":24};
|
|
7
|
-
const content = `<path class="
|
|
7
|
+
const content = `<path class="lffh2c8g"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.lffh2c8g {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M14.785 11.558h-5.16l.689-.689q.128-.128.128-.306t-.129-.307t-.313-.129t-.313.129l-1.18 1.179q-.241.242-.241.565t.242.566l1.179 1.198q.129.128.313.119q.185-.01.314-.139q.128-.128.128-.306t-.128-.307l-.689-.689h5.192q.187 0 .336-.068t.28-.205l5.411-6.311q.123-.154.11-.33t-.165-.297q-.155-.123-.332-.11t-.301.165zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.474.757q.137.217.11.484q-.029.268-.19.479l-1.5 1.748h-1.517l-1.556-1.556Q10.49 7.75 10 7.75t-.858.367l-3.025 3.025q-.367.368-.367.858t.367.858l3.025 3.025q.368.367.858.367t.858-.367l1.555-1.556h3.085q.273 0 .506-.109t.413-.32l2.842-3.31q.131-.142.296-.226t.376-.06l1.494.125q.69.05 1.133.536T23 12.139v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="shbkojes"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.shbkojes {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l1.214 1.971l-1.88 2.202h-1.516L10 7.26L5.26 12L10 16.74l2.414-2.413h3.65l3.463-4.056l3.473.287v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -4,13 +4,13 @@ import { Icon } from '@iconify/css-vue';
|
|
|
4
4
|
const props = defineProps(["width","height"]);
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":24,"height":24};
|
|
7
|
-
const content = `<path class="
|
|
7
|
+
const content = `<path class="zbtydbll"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:car-fan-recirculate" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.zbtydbll {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.772 1.266l-1.878 2.202h-1.517L10 7.26L5.26 12L10 16.74l2.414-2.413h3.65l3.463-4.056l1.898.156q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="eo0bjupd"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:list-arrow-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.eo0bjupd {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5.875 18.522q-.136-.053-.266-.18l-2.255-2.219q-.16-.14-.153-.341t.166-.36q.147-.147.338-.15t.337.138l1.631 1.548V6.404q0-.213.144-.357t.357-.143t.356.143t.143.357v10.554l1.65-1.548q.13-.14.327-.14t.346.146q.137.133.137.34t-.14.348L6.737 18.34q-.13.13-.27.182q-.138.053-.297.053t-.296-.053m6.99-.426q-.212 0-.356-.144t-.143-.356t.143-.356t.357-.144H20.5q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143zm0-5.577q-.212 0-.356-.144t-.143-.357t.143-.356t.357-.143H20.5q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143zm0-5.577q-.212 0-.356-.144q-.143-.144-.143-.356q0-.213.143-.357t.357-.143H20.5q.213 0 .356.144t.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="t_kt0dx"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:list-arrow" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.t_kt0dx {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.173 18.904L3 15.769l.708-.688l1.965 1.877V5.904h1v11.054l1.985-1.877l.688.688zm6.193-.808v-1H21v1zm0-5.577v-1H21v1zm0-5.577v-1H21v1z");
|
|
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="parajnbd"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.parajnbd {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7.308 19q-.96 0-1.634-.674T5 16.692V7.327q0-.96.674-1.643Q6.348 5 7.308 5h9.365q.979 0 1.653.674T19 7.327v9.365q0 .96-.684 1.634q-.683.674-1.643.674zm0 1h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20M12 9.23q-1.221 0-2.333.402t-1.956 1.224q-.17.154-.369.163t-.358-.13q-.165-.147-.168-.348t.143-.36q.98-.989 2.301-1.47q1.323-.48 2.74-.48q1.411 0 2.74.496q1.327.496 2.306 1.484q.14.141.128.336t-.178.341q-.16.14-.358.134t-.344-.141q-.844-.829-1.956-1.24q-1.111-.41-2.338-.41m0 3.75q-.448 0-.874.142q-.426.143-.772.44q-.237.16-.438.121q-.2-.038-.33-.184q-.128-.146-.135-.333t.158-.31q.518-.413 1.13-.644t1.267-.232t1.274.228q.618.23 1.135.643q.166.123.159.312q-.007.19-.136.336t-.33.184q-.2.039-.437-.12q-.365-.28-.794-.431q-.429-.152-.877-.152m-.52 3.54q-.21-.212-.21-.521t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
|
|
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="rnxjslgh"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rnxjslgh {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 5h14v14H5zM4 4v16h16V4zm3.352 7.217l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
|
|
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="m2eezbbc"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.m2eezbbc {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7.308 19q-.96 0-1.634-.674T5 16.692V7.327q0-.96.674-1.643Q6.348 5 7.308 5h9.365q.979 0 1.653.674T19 7.327v9.365q0 .96-.684 1.634q-.683.674-1.643.674zm0 1h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20m.044-8.783l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
|
|
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="r46izmxs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.r46izmxs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7.308 20h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20M12 9.23q-1.221 0-2.333.402t-1.956 1.224q-.17.154-.369.163t-.358-.13q-.165-.147-.168-.348t.143-.36q.98-.989 2.301-1.47q1.323-.48 2.74-.48q1.411 0 2.74.496q1.327.496 2.306 1.484q.14.141.128.336t-.178.341q-.16.14-.358.134t-.344-.141q-.844-.829-1.956-1.24q-1.111-.41-2.338-.41m0 3.75q-.448 0-.874.142q-.426.143-.772.44q-.237.16-.438.121q-.2-.038-.33-.184q-.128-.146-.135-.333t.158-.31q.518-.413 1.13-.644t1.267-.232t1.274.228q.618.23 1.135.643q.166.123.159.312q-.007.19-.136.336t-.33.184q-.2.039-.437-.12q-.365-.28-.794-.431q-.429-.152-.877-.152m-.52 3.54q-.21-.212-.21-.521t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
|
|
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="ivy9bach"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ivy9bach {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 4v16h16V4zm3.352 7.217l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
|
|
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="tcrr3jbj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:wifi-device" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.tcrr3jbj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7.308 20h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20m.044-8.783l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
|
|
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": 15379,
|
|
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": 1776313469
|
|
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.26",
|
|
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",
|
|
@@ -6502,6 +6502,22 @@
|
|
|
6502
6502
|
"types": "./types/dd0bq22g.d.ts",
|
|
6503
6503
|
"default": "./components/b/battery-charging-20.vue"
|
|
6504
6504
|
},
|
|
6505
|
+
"./battery-charging-20-2": {
|
|
6506
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6507
|
+
"default": "./components/b/battery-charging-20-2.vue"
|
|
6508
|
+
},
|
|
6509
|
+
"./battery-charging-20-2-outline-rounded": {
|
|
6510
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6511
|
+
"default": "./components/b/battery-charging-20-2-outline-rounded.vue"
|
|
6512
|
+
},
|
|
6513
|
+
"./battery-charging-20-2-rounded": {
|
|
6514
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6515
|
+
"default": "./components/b/battery-charging-20-2-rounded.vue"
|
|
6516
|
+
},
|
|
6517
|
+
"./battery-charging-20-2-sharp": {
|
|
6518
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6519
|
+
"default": "./components/b/battery-charging-20-2-sharp.vue"
|
|
6520
|
+
},
|
|
6505
6521
|
"./battery-charging-20-rounded": {
|
|
6506
6522
|
"types": "./types/dd0bq22g.d.ts",
|
|
6507
6523
|
"default": "./components/b/battery-charging-20-rounded.vue"
|
|
@@ -6514,6 +6530,22 @@
|
|
|
6514
6530
|
"types": "./types/dd0bq22g.d.ts",
|
|
6515
6531
|
"default": "./components/b/battery-charging-30.vue"
|
|
6516
6532
|
},
|
|
6533
|
+
"./battery-charging-30-2": {
|
|
6534
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6535
|
+
"default": "./components/b/battery-charging-30-2.vue"
|
|
6536
|
+
},
|
|
6537
|
+
"./battery-charging-30-2-outline-rounded": {
|
|
6538
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6539
|
+
"default": "./components/b/battery-charging-30-2-outline-rounded.vue"
|
|
6540
|
+
},
|
|
6541
|
+
"./battery-charging-30-2-rounded": {
|
|
6542
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6543
|
+
"default": "./components/b/battery-charging-30-2-rounded.vue"
|
|
6544
|
+
},
|
|
6545
|
+
"./battery-charging-30-2-sharp": {
|
|
6546
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6547
|
+
"default": "./components/b/battery-charging-30-2-sharp.vue"
|
|
6548
|
+
},
|
|
6517
6549
|
"./battery-charging-30-rounded": {
|
|
6518
6550
|
"types": "./types/dd0bq22g.d.ts",
|
|
6519
6551
|
"default": "./components/b/battery-charging-30-rounded.vue"
|
|
@@ -6526,6 +6558,22 @@
|
|
|
6526
6558
|
"types": "./types/dd0bq22g.d.ts",
|
|
6527
6559
|
"default": "./components/b/battery-charging-50.vue"
|
|
6528
6560
|
},
|
|
6561
|
+
"./battery-charging-50-2": {
|
|
6562
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6563
|
+
"default": "./components/b/battery-charging-50-2.vue"
|
|
6564
|
+
},
|
|
6565
|
+
"./battery-charging-50-2-outline-rounded": {
|
|
6566
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6567
|
+
"default": "./components/b/battery-charging-50-2-outline-rounded.vue"
|
|
6568
|
+
},
|
|
6569
|
+
"./battery-charging-50-2-rounded": {
|
|
6570
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6571
|
+
"default": "./components/b/battery-charging-50-2-rounded.vue"
|
|
6572
|
+
},
|
|
6573
|
+
"./battery-charging-50-2-sharp": {
|
|
6574
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6575
|
+
"default": "./components/b/battery-charging-50-2-sharp.vue"
|
|
6576
|
+
},
|
|
6529
6577
|
"./battery-charging-50-rounded": {
|
|
6530
6578
|
"types": "./types/dd0bq22g.d.ts",
|
|
6531
6579
|
"default": "./components/b/battery-charging-50-rounded.vue"
|
|
@@ -6538,6 +6586,22 @@
|
|
|
6538
6586
|
"types": "./types/dd0bq22g.d.ts",
|
|
6539
6587
|
"default": "./components/b/battery-charging-60.vue"
|
|
6540
6588
|
},
|
|
6589
|
+
"./battery-charging-60-2": {
|
|
6590
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6591
|
+
"default": "./components/b/battery-charging-60-2.vue"
|
|
6592
|
+
},
|
|
6593
|
+
"./battery-charging-60-2-outline-rounded": {
|
|
6594
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6595
|
+
"default": "./components/b/battery-charging-60-2-outline-rounded.vue"
|
|
6596
|
+
},
|
|
6597
|
+
"./battery-charging-60-2-rounded": {
|
|
6598
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6599
|
+
"default": "./components/b/battery-charging-60-2-rounded.vue"
|
|
6600
|
+
},
|
|
6601
|
+
"./battery-charging-60-2-sharp": {
|
|
6602
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6603
|
+
"default": "./components/b/battery-charging-60-2-sharp.vue"
|
|
6604
|
+
},
|
|
6541
6605
|
"./battery-charging-60-rounded": {
|
|
6542
6606
|
"types": "./types/dd0bq22g.d.ts",
|
|
6543
6607
|
"default": "./components/b/battery-charging-60-rounded.vue"
|
|
@@ -6550,6 +6614,22 @@
|
|
|
6550
6614
|
"types": "./types/dd0bq22g.d.ts",
|
|
6551
6615
|
"default": "./components/b/battery-charging-80.vue"
|
|
6552
6616
|
},
|
|
6617
|
+
"./battery-charging-80-2": {
|
|
6618
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6619
|
+
"default": "./components/b/battery-charging-80-2.vue"
|
|
6620
|
+
},
|
|
6621
|
+
"./battery-charging-80-2-outline-rounded": {
|
|
6622
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6623
|
+
"default": "./components/b/battery-charging-80-2-outline-rounded.vue"
|
|
6624
|
+
},
|
|
6625
|
+
"./battery-charging-80-2-rounded": {
|
|
6626
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6627
|
+
"default": "./components/b/battery-charging-80-2-rounded.vue"
|
|
6628
|
+
},
|
|
6629
|
+
"./battery-charging-80-2-sharp": {
|
|
6630
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6631
|
+
"default": "./components/b/battery-charging-80-2-sharp.vue"
|
|
6632
|
+
},
|
|
6553
6633
|
"./battery-charging-80-rounded": {
|
|
6554
6634
|
"types": "./types/dd0bq22g.d.ts",
|
|
6555
6635
|
"default": "./components/b/battery-charging-80-rounded.vue"
|
|
@@ -6574,6 +6654,30 @@
|
|
|
6574
6654
|
"types": "./types/dd0bq22g.d.ts",
|
|
6575
6655
|
"default": "./components/b/battery-charging-full.vue"
|
|
6576
6656
|
},
|
|
6657
|
+
"./battery-charging-full-2": {
|
|
6658
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6659
|
+
"default": "./components/b/battery-charging-full-2.vue"
|
|
6660
|
+
},
|
|
6661
|
+
"./battery-charging-full-2-outline": {
|
|
6662
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6663
|
+
"default": "./components/b/battery-charging-full-2-outline.vue"
|
|
6664
|
+
},
|
|
6665
|
+
"./battery-charging-full-2-outline-rounded": {
|
|
6666
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6667
|
+
"default": "./components/b/battery-charging-full-2-outline-rounded.vue"
|
|
6668
|
+
},
|
|
6669
|
+
"./battery-charging-full-2-outline-sharp": {
|
|
6670
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6671
|
+
"default": "./components/b/battery-charging-full-2-outline-sharp.vue"
|
|
6672
|
+
},
|
|
6673
|
+
"./battery-charging-full-2-rounded": {
|
|
6674
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6675
|
+
"default": "./components/b/battery-charging-full-2-rounded.vue"
|
|
6676
|
+
},
|
|
6677
|
+
"./battery-charging-full-2-sharp": {
|
|
6678
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
6679
|
+
"default": "./components/b/battery-charging-full-2-sharp.vue"
|
|
6680
|
+
},
|
|
6577
6681
|
"./battery-charging-full-outline": {
|
|
6578
6682
|
"types": "./types/dd0bq22g.d.ts",
|
|
6579
6683
|
"default": "./components/b/battery-charging-full-outline.vue"
|
|
@@ -7490,6 +7594,14 @@
|
|
|
7490
7594
|
"types": "./types/dd0bq22g.d.ts",
|
|
7491
7595
|
"default": "./components/b/bolt.vue"
|
|
7492
7596
|
},
|
|
7597
|
+
"./bolt-boost": {
|
|
7598
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7599
|
+
"default": "./components/b/bolt-boost.vue"
|
|
7600
|
+
},
|
|
7601
|
+
"./bolt-boost-rounded": {
|
|
7602
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7603
|
+
"default": "./components/b/bolt-boost-rounded.vue"
|
|
7604
|
+
},
|
|
7493
7605
|
"./bolt-outline": {
|
|
7494
7606
|
"types": "./types/dd0bq22g.d.ts",
|
|
7495
7607
|
"default": "./components/b/bolt-outline.vue"
|
|
@@ -10186,10 +10298,50 @@
|
|
|
10186
10298
|
"types": "./types/dd0bq22g.d.ts",
|
|
10187
10299
|
"default": "./components/c/car-fan-recirculate.vue"
|
|
10188
10300
|
},
|
|
10301
|
+
"./car-fan-recirculate-2": {
|
|
10302
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10303
|
+
"default": "./components/c/car-fan-recirculate-2.vue"
|
|
10304
|
+
},
|
|
10305
|
+
"./car-fan-recirculate-2-outline": {
|
|
10306
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10307
|
+
"default": "./components/c/car-fan-recirculate-2-outline.vue"
|
|
10308
|
+
},
|
|
10309
|
+
"./car-fan-recirculate-2-outline-rounded": {
|
|
10310
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10311
|
+
"default": "./components/c/car-fan-recirculate-2-outline-rounded.vue"
|
|
10312
|
+
},
|
|
10313
|
+
"./car-fan-recirculate-2-outline-sharp": {
|
|
10314
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10315
|
+
"default": "./components/c/car-fan-recirculate-2-outline-sharp.vue"
|
|
10316
|
+
},
|
|
10317
|
+
"./car-fan-recirculate-2-rounded": {
|
|
10318
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10319
|
+
"default": "./components/c/car-fan-recirculate-2-rounded.vue"
|
|
10320
|
+
},
|
|
10321
|
+
"./car-fan-recirculate-2-sharp": {
|
|
10322
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10323
|
+
"default": "./components/c/car-fan-recirculate-2-sharp.vue"
|
|
10324
|
+
},
|
|
10325
|
+
"./car-fan-recirculate-outline": {
|
|
10326
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10327
|
+
"default": "./components/c/car-fan-recirculate-outline.vue"
|
|
10328
|
+
},
|
|
10329
|
+
"./car-fan-recirculate-outline-rounded": {
|
|
10330
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10331
|
+
"default": "./components/c/car-fan-recirculate-outline-rounded.vue"
|
|
10332
|
+
},
|
|
10333
|
+
"./car-fan-recirculate-outline-sharp": {
|
|
10334
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10335
|
+
"default": "./components/c/car-fan-recirculate-outline-sharp.vue"
|
|
10336
|
+
},
|
|
10189
10337
|
"./car-fan-recirculate-rounded": {
|
|
10190
10338
|
"types": "./types/dd0bq22g.d.ts",
|
|
10191
10339
|
"default": "./components/c/car-fan-recirculate-rounded.vue"
|
|
10192
10340
|
},
|
|
10341
|
+
"./car-fan-recirculate-sharp": {
|
|
10342
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
10343
|
+
"default": "./components/c/car-fan-recirculate-sharp.vue"
|
|
10344
|
+
},
|
|
10193
10345
|
"./car-gear": {
|
|
10194
10346
|
"types": "./types/dd0bq22g.d.ts",
|
|
10195
10347
|
"default": "./components/c/car-gear.vue"
|
|
@@ -31674,6 +31826,14 @@
|
|
|
31674
31826
|
"types": "./types/dd0bq22g.d.ts",
|
|
31675
31827
|
"default": "./components/l/list-alt-sharp.vue"
|
|
31676
31828
|
},
|
|
31829
|
+
"./list-arrow": {
|
|
31830
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
31831
|
+
"default": "./components/l/list-arrow.vue"
|
|
31832
|
+
},
|
|
31833
|
+
"./list-arrow-rounded": {
|
|
31834
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
31835
|
+
"default": "./components/l/list-arrow-rounded.vue"
|
|
31836
|
+
},
|
|
31677
31837
|
"./list-rounded": {
|
|
31678
31838
|
"types": "./types/dd0bq22g.d.ts",
|
|
31679
31839
|
"default": "./components/l/list-rounded.vue"
|
|
@@ -61790,6 +61950,30 @@
|
|
|
61790
61950
|
"types": "./types/dd0bq22g.d.ts",
|
|
61791
61951
|
"default": "./components/w/wifi-channel-rounded.vue"
|
|
61792
61952
|
},
|
|
61953
|
+
"./wifi-device": {
|
|
61954
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61955
|
+
"default": "./components/w/wifi-device.vue"
|
|
61956
|
+
},
|
|
61957
|
+
"./wifi-device-outline": {
|
|
61958
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61959
|
+
"default": "./components/w/wifi-device-outline.vue"
|
|
61960
|
+
},
|
|
61961
|
+
"./wifi-device-outline-rounded": {
|
|
61962
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61963
|
+
"default": "./components/w/wifi-device-outline-rounded.vue"
|
|
61964
|
+
},
|
|
61965
|
+
"./wifi-device-outline-sharp": {
|
|
61966
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61967
|
+
"default": "./components/w/wifi-device-outline-sharp.vue"
|
|
61968
|
+
},
|
|
61969
|
+
"./wifi-device-rounded": {
|
|
61970
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61971
|
+
"default": "./components/w/wifi-device-rounded.vue"
|
|
61972
|
+
},
|
|
61973
|
+
"./wifi-device-sharp": {
|
|
61974
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
61975
|
+
"default": "./components/w/wifi-device-sharp.vue"
|
|
61976
|
+
},
|
|
61793
61977
|
"./wifi-find": {
|
|
61794
61978
|
"types": "./types/dd0bq22g.d.ts",
|
|
61795
61979
|
"default": "./components/w/wifi-find.vue"
|