@iconify-vue/material-symbols 1.0.19 → 1.0.21
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/bus-map-pin-2-outline-rounded.vue +16 -0
- package/components/b/bus-map-pin-2-outline-sharp.vue +16 -0
- package/components/b/bus-map-pin-2-outline.vue +16 -0
- package/components/b/bus-map-pin-2-rounded.vue +16 -0
- package/components/b/bus-map-pin-2-sharp.vue +16 -0
- package/components/b/bus-map-pin-2.vue +16 -0
- package/components/c/check-alert-rounded.vue +16 -0
- package/components/c/check-alert.vue +16 -0
- package/components/c/code-xml-rounded.vue +16 -0
- package/components/c/code-xml.vue +16 -0
- package/components/f/fire-check-outline-rounded.vue +16 -0
- package/components/f/fire-check-outline.vue +16 -0
- package/components/f/fire-check-rounded.vue +16 -0
- package/components/f/fire-check.vue +16 -0
- package/components/f/fork-chart-outline-sharp.vue +16 -0
- package/components/f/fork-chart-outline.vue +16 -0
- package/components/f/fork-chart-sharp.vue +16 -0
- package/components/f/fork-chart.vue +16 -0
- package/components/g/grid-layout-side-outline-sharp.vue +16 -0
- package/components/g/grid-layout-side-outline.vue +16 -0
- package/components/g/grid-layout-side-rounded.vue +16 -0
- package/components/g/grid-layout-side-sharp.vue +16 -0
- package/components/g/grid-layout-side.vue +16 -0
- package/components/s/signal-cellular-alt-off-rounded.vue +16 -0
- package/components/s/signal-cellular-alt-off.vue +16 -0
- package/components/s/snowflake-rounded.vue +16 -0
- package/components/s/snowflake.vue +16 -0
- package/components/s/space-dashboard-2-outline-sharp.vue +16 -0
- package/components/s/space-dashboard-2-outline.vue +16 -0
- package/components/s/space-dashboard-2-rounded.vue +16 -0
- package/components/s/space-dashboard-2-sharp.vue +16 -0
- package/components/s/space-dashboard-2.vue +16 -0
- package/components/t/terminal-2-rounded.vue +16 -0
- package/components/t/terminal-2.vue +16 -0
- package/components/w/water-drops-outline-rounded.vue +16 -0
- package/components/w/water-drops-outline.vue +16 -0
- package/components/w/water-drops-rounded.vue +16 -0
- package/components/w/water-drops.vue +16 -0
- package/components/y/youtube-activity-2-outline-rounded.vue +16 -0
- package/components/y/youtube-activity-2-outline.vue +16 -0
- package/components/y/youtube-activity-2-rounded.vue +16 -0
- package/components/y/youtube-activity-2.vue +16 -0
- package/components/y/youtube-activity-outline-rounded.vue +16 -0
- package/components/y/youtube-activity-outline.vue +16 -0
- package/components/y/youtube-activity-rounded.vue +3 -3
- package/components/y/youtube-activity-sharp.vue +3 -3
- package/components/y/youtube-activity.vue +3 -3
- package/components/y/youtube-video-outline-rounded.vue +16 -0
- package/components/y/youtube-video-outline.vue +16 -0
- package/components/y/youtube-video-rounded.vue +16 -0
- package/components/y/youtube-video.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +197 -5
|
@@ -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="g6v3urtp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:water-drops-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.g6v3urtp {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.5 4q1.75 1.55 2.625 2.863T21 9.3q0 1.5-1 2.6T17.5 13T15 11.9t-1-2.6q0-1.05.925-2.45T17.5 4m0 2.775q-.675.725-1.088 1.413T16 9.3q0 .675.425 1.188T17.5 11t1.075-.513T19 9.3q0-.425-.413-1.112T17.5 6.775M12 22q-3.425 0-5.712-2.35T4 13.8q0-2.5 1.988-5.437T12 2q1.35 1.15 2.475 2.25T16.5 6.4q-.175.225-.625.85t-.575.825q-.675-.8-1.487-1.662T12 4.65Q9.025 7.375 7.513 9.675T6 13.8q0 2.675 1.7 4.438T12 20q1.3 0 2.4-.475t1.9-1.3t1.25-1.963T18 13.8q0-.425-.088-.9t-.262-.975q.225-.125.888-.475t.887-.475q.275.725.425 1.438T20 13.8q0 3.5-2.287 5.85T12 22m.275-3q.3-.025.513-.238T13 18.25q0-.35-.225-.562T12.2 17.5q-1.025.075-2.175-.562t-1.45-2.313q-.05-.275-.262-.45T7.825 14q-.35 0-.575.263t-.15.612q.425 2.275 2 3.25t3.175.875M17.5 8.875");
|
|
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="wjtcydri"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:water-drops-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wjtcydri {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 22q-3.425 0-5.712-2.35T4 13.8q0-2.35 1.763-5.1T11.1 2.775q.375-.35.888-.362t.887.337q.425.375.813.75t.762.725q-.875 1-1.662 2.363T12 9.3q0 2.375 1.613 4.038T17.5 15q.65 0 1.263-.137t1.212-.463q-.2 3.275-2.45 5.438T12 22m3-10.1q-1-1.1-1-2.6q0-.95.763-2.2t2.162-2.575q.25-.225.575-.225t.575.225q1.475 1.375 2.2 2.563T21 9.3q0 1.5-1 2.6T17.5 13T15 11.9M12.275 19q.3-.025.513-.238T13 18.25q0-.35-.225-.562T12.2 17.5q-1.025.075-2.175-.562t-1.45-2.313q-.05-.275-.262-.45T7.825 14q-.35 0-.575.263t-.15.612q.425 2.275 2 3.25t3.175.875");
|
|
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="yiqhc7rz"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:water-drops" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.yiqhc7rz {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 22q-3.425 0-5.712-2.35T4 13.8q0-2.5 1.988-5.437T12 2q.675.575 1.275 1.125t1.175 1.1q-.875 1-1.662 2.363T12 9.3q0 2.375 1.613 4.038T17.5 15q.65 0 1.263-.137t1.212-.463q-.2 3.275-2.45 5.438T12 22m3-10.1q-1-1.1-1-2.6q0-1.05.925-2.45T17.5 4q1.75 1.55 2.625 2.862T21 9.3q0 1.5-1 2.6T17.5 13T15 11.9M12.275 19q.3-.025.513-.238T13 18.25q0-.35-.225-.562T12.2 17.5q-1.025.075-2.175-.562t-1.45-2.313q-.05-.275-.262-.45T7.825 14q-.35 0-.575.263t-.15.612q.425 2.275 2 3.25t3.175.875");
|
|
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="h-lee-bg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h-lee-bg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 18h-1q-.425 0-.712-.288T17 17t.288-.712T18 16h1v-1q0-.425.288-.712T20 14t.713.288T21 15v1h1q.425 0 .713.288T23 17t-.288.713T22 18h-1v1q0 .425-.288.713T20 20t-.712-.288T19 19zM12 5l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.638t.65 1.112q.2.8.288 1.8T21.975 11q0 .425-.275.713T21 12t-.712-.288t-.313-.712q-.025-.875-.1-1.825T19.65 7.7q-.05-.125-.15-.212t-.225-.138q-.6-.15-2.85-.25T12 7q-2.2 0-4.45.1t-2.85.25q-.125.05-.213.15t-.137.225q-.2.725-.275 2.063T4 12t.075 2.225t.275 2.075q.05.125.137.213t.213.137q.6.15 2.85.25T12 17h2q.425 0 .712.263t.288.687t-.288.725t-.712.3q-.4 0-.763.013T12.6 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5m2.45 6.575l-3.7-2.15q-.25-.15-.5.013t-.25.437v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425");
|
|
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="j34b2sbj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j34b2sbj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 20v-2h-2v-2h2v-2h2v2h2v2h-2v2zM12 5l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.638t.65 1.112q.275.975.338 2.3T21.975 12H20q0-.925-.075-2.262T19.65 7.7q-.05-.125-.15-.213t-.225-.137q-.6-.15-2.85-.25T12 7q-2.2 0-4.45.1t-2.85.25q-.125.05-.213.15t-.137.225q-.2.725-.275 2.063T4 12t.075 2.225t.275 2.075q.05.125.137.213t.213.137q.6.15 2.85.25T12 17h1.488q.762 0 1.512-.025v1.975q-.525.025-1.062.038t-.963.012H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5m-2 10l5.2-3L10 9z");
|
|
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="kod8gr3c"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kod8gr3c {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 18h-1q-.425 0-.712-.288T17 17t.288-.712T18 16h1v-1q0-.425.288-.712T20 14t.713.288T21 15v1h1q.425 0 .713.288T23 17t-.288.713T22 18h-1v1q0 .425-.288.713T20 20t-.712-.288T19 19zm-4.55-6.425l-3.7-2.15q-.25-.15-.5.013t-.25.437v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425M12 5l1 .012q1 .013 2.313.05t2.6.125t1.887.238q.65.175 1.125.65t.65 1.125q.25.875.325 2.05t.075 2.275q0 .325-.263.513t-.587.087q-1.25-.3-2.488.05t-2.162 1.275q-.95.925-1.287 2.188t-.063 2.537q.075.3-.1.55t-.475.25q-.55 0-1.012.013T12.75 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="ioxx4hac"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ioxx4hac {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 20v-2h-2v-2h2v-2h2v2h2v2h-2v2zm-9-5l5.2-3L10 9zm2-10l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.65t.65 1.125q.3 1.1.363 2.563t.037 2.662q-.45-.2-.95-.312T20 12q-2.075 0-3.537 1.45T15 16.975q0 .5.088 1.013t.287.962q-.675.025-1.275.038T13.025 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="h-lee-bg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h-lee-bg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 18h-1q-.425 0-.712-.288T17 17t.288-.712T18 16h1v-1q0-.425.288-.712T20 14t.713.288T21 15v1h1q.425 0 .713.288T23 17t-.288.713T22 18h-1v1q0 .425-.288.713T20 20t-.712-.288T19 19zM12 5l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.638t.65 1.112q.2.8.288 1.8T21.975 11q0 .425-.275.713T21 12t-.712-.288t-.313-.712q-.025-.875-.1-1.825T19.65 7.7q-.05-.125-.15-.212t-.225-.138q-.6-.15-2.85-.25T12 7q-2.2 0-4.45.1t-2.85.25q-.125.05-.213.15t-.137.225q-.2.725-.275 2.063T4 12t.075 2.225t.275 2.075q.05.125.137.213t.213.137q.6.15 2.85.25T12 17h2q.425 0 .712.263t.288.687t-.288.725t-.712.3q-.4 0-.763.013T12.6 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5m2.45 6.575l-3.7-2.15q-.25-.15-.5.013t-.25.437v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425");
|
|
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="j34b2sbj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j34b2sbj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 20v-2h-2v-2h2v-2h2v2h2v2h-2v2zM12 5l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.638t.65 1.112q.275.975.338 2.3T21.975 12H20q0-.925-.075-2.262T19.65 7.7q-.05-.125-.15-.213t-.225-.137q-.6-.15-2.85-.25T12 7q-2.2 0-4.45.1t-2.85.25q-.125.05-.213.15t-.137.225q-.2.725-.275 2.063T4 12t.075 2.225t.275 2.075q.05.125.137.213t.213.137q.6.15 2.85.25T12 17h1.488q.762 0 1.512-.025v1.975q-.525.025-1.062.038t-.963.012H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5m-2 10l5.2-3L10 9z");
|
|
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="kod8gr3c"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.kod8gr3c {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M19 18h-1q-.425 0-.712-.288T17 17t.288-.712T18 16h1v-1q0-.425.288-.712T20 14t.713.288T21 15v1h1q.425 0 .713.288T23 17t-.288.713T22 18h-1v1q0 .425-.288.713T20 20t-.712-.288T19 19zm-4.55-6.425l-3.7-2.15q-.25-.15-.5.013t-.25.437v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425M12 5l1 .012q1 .013 2.313.05t2.6.125t1.887.238q.65.175 1.125.65t.65 1.125q.25.875.325 2.05t.075 2.275q0 .325-.263.513t-.587.087q-1.25-.3-2.488.05t-2.162 1.275q-.95.925-1.287 2.188t-.063 2.537q.075.3-.1.55t-.475.25q-.55 0-1.012.013T12.75 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
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="ioxx4hac"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ioxx4hac {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M19 20v-2h-2v-2h2v-2h2v2h2v2h-2v2zm-9-5l5.2-3L10 9zm2-10l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.65t.65 1.125q.3 1.1.363 2.563t.037 2.662q-.45-.2-.95-.312T20 12q-2.075 0-3.537 1.45T15 16.975q0 .5.088 1.013t.287.962q-.675.025-1.275.038T13.025 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
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="ioxx4hac"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-activity" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ioxx4hac {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M19 20v-2h-2v-2h2v-2h2v2h2v2h-2v2zm-9-5l5.2-3L10 9zm2-10l1 .013q1 .012 2.313.05t2.6.125t1.887.237q.65.175 1.125.65t.65 1.125q.3 1.1.363 2.563t.037 2.662q-.45-.2-.95-.312T20 12q-2.075 0-3.537 1.45T15 16.975q0 .5.088 1.013t.287.962q-.675.025-1.275.038T13.025 19H12q-1.775 0-3.325-.05q-1.325-.025-2.613-.112T4.176 18.6q-.65-.175-1.125-.65t-.65-1.125q-.15-.6-.238-1.425t-.112-1.575Q2 12.925 2 12t.05-1.8q.025-.775.113-1.588T2.4 7.2q.175-.65.65-1.125t1.125-.65q.6-.15 1.888-.238t2.612-.137Q10.225 5 12 5");
|
|
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="uuvnvlbo"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-video-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.uuvnvlbo {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 19q-1.775 0-3.325-.05q-1.325-.05-2.613-.137T4.2 18.575q-.65-.175-1.125-.65t-.65-1.125q-.15-.575-.237-1.4t-.138-1.575Q2 12.925 2 12t.05-1.825q.05-.75.138-1.575t.237-1.4q.175-.65.65-1.125t1.125-.65q.575-.15 1.863-.237t2.612-.138Q10.225 5 12 5l1 .013q1 .012 2.313.05t2.612.125t1.875.237q.65.175 1.125.65t.65 1.125q.15.575.238 1.4t.137 1.575q.05.9.05 1.825t-.05 1.825q-.05.75-.137 1.575t-.238 1.4q-.175.65-.65 1.125t-1.125.65q-.575.15-1.875.237t-2.613.125t-2.312.05zm0-2q2.175 0 4.438-.088t2.862-.262q.125-.05.213-.137t.137-.213q.2-.725.275-2.075T20 12t-.075-2.225T19.65 7.7q-.05-.125-.137-.212T19.3 7.35q-.6-.175-2.863-.262T12 7t-4.437.088T4.7 7.35q-.125.05-.213.138T4.35 7.7q-.2.725-.275 2.075T4 12t.075 2.225t.275 2.075q.05.125.138.213t.212.137q.6.175 2.863.263T12 17m2.45-5.425l-3.7-2.15q-.25-.15-.5.012t-.25.438v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425M12 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="tewepebl"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-video-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.tewepebl {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 19q-1.775 0-3.325-.05q-1.325-.05-2.613-.137T4.2 18.575q-.65-.175-1.125-.65t-.65-1.125q-.15-.575-.237-1.4t-.138-1.575Q2 12.925 2 12t.05-1.825q.05-.75.138-1.575t.237-1.4q.175-.65.65-1.125t1.125-.65q.575-.15 1.863-.237t2.612-.138Q10.225 5 12 5l1 .013q1 .012 2.313.05t2.612.125t1.875.237q.65.175 1.125.65t.65 1.125q.15.575.238 1.4t.137 1.575q.05.9.05 1.825t-.05 1.825q-.05.75-.137 1.575t-.238 1.4q-.175.65-.65 1.125t-1.125.65q-.575.15-1.875.237t-2.613.125t-2.312.05zm0-2q2.175 0 4.438-.088t2.862-.262q.125-.05.213-.137t.137-.213q.2-.725.275-2.075T20 12t-.075-2.225T19.65 7.7q-.05-.125-.137-.212T19.3 7.35q-.6-.175-2.863-.262T12 7t-4.437.088T4.7 7.35q-.125.05-.213.138T4.35 7.7q-.2.725-.275 2.075T4 12t.075 2.225t.275 2.075q.05.125.138.213t.212.137q.6.175 2.863.263T12 17m-2-2l5.2-3L10 9zm2-3");
|
|
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="h9f_e-_z"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-video-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h9f_e-_z {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 19q-1.775 0-3.325-.05q-1.325-.05-2.613-.137T4.2 18.575q-.65-.175-1.125-.65t-.65-1.125q-.15-.575-.237-1.4t-.138-1.575Q2 12.925 2 12t.05-1.825q.05-.75.138-1.575t.237-1.4q.175-.65.65-1.125t1.125-.65q.575-.15 1.863-.237t2.612-.138Q10.225 5 12 5l1 .013q1 .012 2.313.05t2.612.125t1.875.237q.65.175 1.125.65t.65 1.125q.15.575.238 1.4t.137 1.575q.05.9.05 1.825t-.05 1.825q-.05.75-.137 1.575t-.238 1.4q-.175.65-.65 1.125t-1.125.65q-.575.15-1.875.237t-2.613.125t-2.312.05zm2.45-7.425l-3.7-2.15q-.25-.15-.5.012t-.25.438v4.25q0 .275.25.438t.5.012l3.7-2.15q.25-.15.25-.425t-.25-.425");
|
|
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="u9h1mabf"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:youtube-video" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.u9h1mabf {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 19q-1.775 0-3.325-.05q-1.325-.05-2.613-.137T4.2 18.575q-.65-.175-1.125-.65t-.65-1.125q-.15-.575-.237-1.4t-.138-1.575Q2 12.925 2 12t.05-1.825q.05-.75.138-1.575t.237-1.4q.175-.65.65-1.125t1.125-.65q.575-.15 1.863-.237t2.612-.138Q10.225 5 12 5l1 .013q1 .012 2.313.05t2.612.125t1.875.237q.65.175 1.125.65t.65 1.125q.15.575.238 1.4t.137 1.575q.05.9.05 1.825t-.05 1.825q-.05.75-.137 1.575t-.238 1.4q-.175.65-.65 1.125t-1.125.65q-.575.15-1.875.237t-2.613.125t-2.312.05zm-2-4l5.2-3L10 9z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15197,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
],
|
|
28
28
|
"palette": false
|
|
29
29
|
},
|
|
30
|
-
"lastModified":
|
|
30
|
+
"lastModified": 1773295312
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/material-symbols",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.21",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -9438,6 +9438,30 @@
|
|
|
9438
9438
|
"types": "./types/dd0bq22g.d.ts",
|
|
9439
9439
|
"default": "./components/b/bus-map-pin.vue"
|
|
9440
9440
|
},
|
|
9441
|
+
"./bus-map-pin-2": {
|
|
9442
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9443
|
+
"default": "./components/b/bus-map-pin-2.vue"
|
|
9444
|
+
},
|
|
9445
|
+
"./bus-map-pin-2-outline": {
|
|
9446
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9447
|
+
"default": "./components/b/bus-map-pin-2-outline.vue"
|
|
9448
|
+
},
|
|
9449
|
+
"./bus-map-pin-2-outline-rounded": {
|
|
9450
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9451
|
+
"default": "./components/b/bus-map-pin-2-outline-rounded.vue"
|
|
9452
|
+
},
|
|
9453
|
+
"./bus-map-pin-2-outline-sharp": {
|
|
9454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9455
|
+
"default": "./components/b/bus-map-pin-2-outline-sharp.vue"
|
|
9456
|
+
},
|
|
9457
|
+
"./bus-map-pin-2-rounded": {
|
|
9458
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9459
|
+
"default": "./components/b/bus-map-pin-2-rounded.vue"
|
|
9460
|
+
},
|
|
9461
|
+
"./bus-map-pin-2-sharp": {
|
|
9462
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
9463
|
+
"default": "./components/b/bus-map-pin-2-sharp.vue"
|
|
9464
|
+
},
|
|
9441
9465
|
"./bus-map-pin-outline": {
|
|
9442
9466
|
"types": "./types/dd0bq22g.d.ts",
|
|
9443
9467
|
"default": "./components/b/bus-map-pin-outline.vue"
|
|
@@ -11814,6 +11838,14 @@
|
|
|
11814
11838
|
"types": "./types/dd0bq22g.d.ts",
|
|
11815
11839
|
"default": "./components/c/check.vue"
|
|
11816
11840
|
},
|
|
11841
|
+
"./check-alert": {
|
|
11842
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
11843
|
+
"default": "./components/c/check-alert.vue"
|
|
11844
|
+
},
|
|
11845
|
+
"./check-alert-rounded": {
|
|
11846
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
11847
|
+
"default": "./components/c/check-alert-rounded.vue"
|
|
11848
|
+
},
|
|
11817
11849
|
"./check-box": {
|
|
11818
11850
|
"types": "./types/dd0bq22g.d.ts",
|
|
11819
11851
|
"default": "./components/c/check-box.vue"
|
|
@@ -13150,6 +13182,14 @@
|
|
|
13150
13182
|
"types": "./types/dd0bq22g.d.ts",
|
|
13151
13183
|
"default": "./components/c/code-rounded.vue"
|
|
13152
13184
|
},
|
|
13185
|
+
"./code-xml": {
|
|
13186
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
13187
|
+
"default": "./components/c/code-xml.vue"
|
|
13188
|
+
},
|
|
13189
|
+
"./code-xml-rounded": {
|
|
13190
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
13191
|
+
"default": "./components/c/code-xml-rounded.vue"
|
|
13192
|
+
},
|
|
13153
13193
|
"./coffee": {
|
|
13154
13194
|
"types": "./types/dd0bq22g.d.ts",
|
|
13155
13195
|
"default": "./components/c/coffee.vue"
|
|
@@ -22670,6 +22710,22 @@
|
|
|
22670
22710
|
"types": "./types/dd0bq22g.d.ts",
|
|
22671
22711
|
"default": "./components/f/fingerprint-sharp.vue"
|
|
22672
22712
|
},
|
|
22713
|
+
"./fire-check": {
|
|
22714
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22715
|
+
"default": "./components/f/fire-check.vue"
|
|
22716
|
+
},
|
|
22717
|
+
"./fire-check-outline": {
|
|
22718
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22719
|
+
"default": "./components/f/fire-check-outline.vue"
|
|
22720
|
+
},
|
|
22721
|
+
"./fire-check-outline-rounded": {
|
|
22722
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22723
|
+
"default": "./components/f/fire-check-outline-rounded.vue"
|
|
22724
|
+
},
|
|
22725
|
+
"./fire-check-rounded": {
|
|
22726
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
22727
|
+
"default": "./components/f/fire-check-rounded.vue"
|
|
22728
|
+
},
|
|
22673
22729
|
"./fire-extinguisher": {
|
|
22674
22730
|
"types": "./types/dd0bq22g.d.ts",
|
|
22675
22731
|
"default": "./components/f/fire-extinguisher.vue"
|
|
@@ -24194,6 +24250,22 @@
|
|
|
24194
24250
|
"types": "./types/dd0bq22g.d.ts",
|
|
24195
24251
|
"default": "./components/f/forest-rounded.vue"
|
|
24196
24252
|
},
|
|
24253
|
+
"./fork-chart": {
|
|
24254
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24255
|
+
"default": "./components/f/fork-chart.vue"
|
|
24256
|
+
},
|
|
24257
|
+
"./fork-chart-outline": {
|
|
24258
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24259
|
+
"default": "./components/f/fork-chart-outline.vue"
|
|
24260
|
+
},
|
|
24261
|
+
"./fork-chart-outline-sharp": {
|
|
24262
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24263
|
+
"default": "./components/f/fork-chart-outline-sharp.vue"
|
|
24264
|
+
},
|
|
24265
|
+
"./fork-chart-sharp": {
|
|
24266
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24267
|
+
"default": "./components/f/fork-chart-sharp.vue"
|
|
24268
|
+
},
|
|
24197
24269
|
"./fork-left": {
|
|
24198
24270
|
"types": "./types/dd0bq22g.d.ts",
|
|
24199
24271
|
"default": "./components/f/fork-left.vue"
|
|
@@ -26598,6 +26670,26 @@
|
|
|
26598
26670
|
"types": "./types/dd0bq22g.d.ts",
|
|
26599
26671
|
"default": "./components/g/grid-guides-sharp.vue"
|
|
26600
26672
|
},
|
|
26673
|
+
"./grid-layout-side": {
|
|
26674
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26675
|
+
"default": "./components/g/grid-layout-side.vue"
|
|
26676
|
+
},
|
|
26677
|
+
"./grid-layout-side-outline": {
|
|
26678
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26679
|
+
"default": "./components/g/grid-layout-side-outline.vue"
|
|
26680
|
+
},
|
|
26681
|
+
"./grid-layout-side-outline-sharp": {
|
|
26682
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26683
|
+
"default": "./components/g/grid-layout-side-outline-sharp.vue"
|
|
26684
|
+
},
|
|
26685
|
+
"./grid-layout-side-rounded": {
|
|
26686
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26687
|
+
"default": "./components/g/grid-layout-side-rounded.vue"
|
|
26688
|
+
},
|
|
26689
|
+
"./grid-layout-side-sharp": {
|
|
26690
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26691
|
+
"default": "./components/g/grid-layout-side-sharp.vue"
|
|
26692
|
+
},
|
|
26601
26693
|
"./grid-off": {
|
|
26602
26694
|
"types": "./types/dd0bq22g.d.ts",
|
|
26603
26695
|
"default": "./components/g/grid-off.vue"
|
|
@@ -51026,6 +51118,14 @@
|
|
|
51026
51118
|
"types": "./types/dd0bq22g.d.ts",
|
|
51027
51119
|
"default": "./components/s/signal-cellular-alt-2-bar-rounded.vue"
|
|
51028
51120
|
},
|
|
51121
|
+
"./signal-cellular-alt-off": {
|
|
51122
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
51123
|
+
"default": "./components/s/signal-cellular-alt-off.vue"
|
|
51124
|
+
},
|
|
51125
|
+
"./signal-cellular-alt-off-rounded": {
|
|
51126
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
51127
|
+
"default": "./components/s/signal-cellular-alt-off-rounded.vue"
|
|
51128
|
+
},
|
|
51029
51129
|
"./signal-cellular-alt-rounded": {
|
|
51030
51130
|
"types": "./types/dd0bq22g.d.ts",
|
|
51031
51131
|
"default": "./components/s/signal-cellular-alt-rounded.vue"
|
|
@@ -51994,6 +52094,14 @@
|
|
|
51994
52094
|
"types": "./types/dd0bq22g.d.ts",
|
|
51995
52095
|
"default": "./components/s/snowboarding-sharp.vue"
|
|
51996
52096
|
},
|
|
52097
|
+
"./snowflake": {
|
|
52098
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52099
|
+
"default": "./components/s/snowflake.vue"
|
|
52100
|
+
},
|
|
52101
|
+
"./snowflake-rounded": {
|
|
52102
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52103
|
+
"default": "./components/s/snowflake-rounded.vue"
|
|
52104
|
+
},
|
|
51997
52105
|
"./snowing": {
|
|
51998
52106
|
"types": "./types/dd0bq22g.d.ts",
|
|
51999
52107
|
"default": "./components/s/snowing.vue"
|
|
@@ -52338,6 +52446,26 @@
|
|
|
52338
52446
|
"types": "./types/dd0bq22g.d.ts",
|
|
52339
52447
|
"default": "./components/s/space-dashboard.vue"
|
|
52340
52448
|
},
|
|
52449
|
+
"./space-dashboard-2": {
|
|
52450
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52451
|
+
"default": "./components/s/space-dashboard-2.vue"
|
|
52452
|
+
},
|
|
52453
|
+
"./space-dashboard-2-outline": {
|
|
52454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52455
|
+
"default": "./components/s/space-dashboard-2-outline.vue"
|
|
52456
|
+
},
|
|
52457
|
+
"./space-dashboard-2-outline-sharp": {
|
|
52458
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52459
|
+
"default": "./components/s/space-dashboard-2-outline-sharp.vue"
|
|
52460
|
+
},
|
|
52461
|
+
"./space-dashboard-2-rounded": {
|
|
52462
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52463
|
+
"default": "./components/s/space-dashboard-2-rounded.vue"
|
|
52464
|
+
},
|
|
52465
|
+
"./space-dashboard-2-sharp": {
|
|
52466
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
52467
|
+
"default": "./components/s/space-dashboard-2-sharp.vue"
|
|
52468
|
+
},
|
|
52341
52469
|
"./space-dashboard-outline": {
|
|
52342
52470
|
"types": "./types/dd0bq22g.d.ts",
|
|
52343
52471
|
"default": "./components/s/space-dashboard-outline.vue"
|
|
@@ -56826,6 +56954,14 @@
|
|
|
56826
56954
|
"types": "./types/dd0bq22g.d.ts",
|
|
56827
56955
|
"default": "./components/t/terminal.vue"
|
|
56828
56956
|
},
|
|
56957
|
+
"./terminal-2": {
|
|
56958
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56959
|
+
"default": "./components/t/terminal-2.vue"
|
|
56960
|
+
},
|
|
56961
|
+
"./terminal-2-rounded": {
|
|
56962
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56963
|
+
"default": "./components/t/terminal-2-rounded.vue"
|
|
56964
|
+
},
|
|
56829
56965
|
"./terminal-rounded": {
|
|
56830
56966
|
"types": "./types/dd0bq22g.d.ts",
|
|
56831
56967
|
"default": "./components/t/terminal-rounded.vue"
|
|
@@ -62298,6 +62434,22 @@
|
|
|
62298
62434
|
"types": "./types/dd0bq22g.d.ts",
|
|
62299
62435
|
"default": "./components/w/water-drop-rounded.vue"
|
|
62300
62436
|
},
|
|
62437
|
+
"./water-drops": {
|
|
62438
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62439
|
+
"default": "./components/w/water-drops.vue"
|
|
62440
|
+
},
|
|
62441
|
+
"./water-drops-outline": {
|
|
62442
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62443
|
+
"default": "./components/w/water-drops-outline.vue"
|
|
62444
|
+
},
|
|
62445
|
+
"./water-drops-outline-rounded": {
|
|
62446
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62447
|
+
"default": "./components/w/water-drops-outline-rounded.vue"
|
|
62448
|
+
},
|
|
62449
|
+
"./water-drops-rounded": {
|
|
62450
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
62451
|
+
"default": "./components/w/water-drops-rounded.vue"
|
|
62452
|
+
},
|
|
62301
62453
|
"./water-ec": {
|
|
62302
62454
|
"types": "./types/dd0bq22g.d.ts",
|
|
62303
62455
|
"default": "./components/w/water-ec.vue"
|
|
@@ -63770,13 +63922,21 @@
|
|
|
63770
63922
|
"types": "./types/dd0bq22g.d.ts",
|
|
63771
63923
|
"default": "./components/y/your-trips-sharp.vue"
|
|
63772
63924
|
},
|
|
63773
|
-
"./youtube-activity": {
|
|
63925
|
+
"./youtube-activity-2": {
|
|
63774
63926
|
"types": "./types/dd0bq22g.d.ts",
|
|
63775
|
-
"default": "./components/y/youtube-activity.vue"
|
|
63927
|
+
"default": "./components/y/youtube-activity-2.vue"
|
|
63776
63928
|
},
|
|
63777
|
-
"./youtube-activity-
|
|
63929
|
+
"./youtube-activity-2-outline": {
|
|
63778
63930
|
"types": "./types/dd0bq22g.d.ts",
|
|
63779
|
-
"default": "./components/y/youtube-activity-
|
|
63931
|
+
"default": "./components/y/youtube-activity-2-outline.vue"
|
|
63932
|
+
},
|
|
63933
|
+
"./youtube-activity-2-outline-rounded": {
|
|
63934
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63935
|
+
"default": "./components/y/youtube-activity-2-outline-rounded.vue"
|
|
63936
|
+
},
|
|
63937
|
+
"./youtube-activity-2-rounded": {
|
|
63938
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63939
|
+
"default": "./components/y/youtube-activity-2-rounded.vue"
|
|
63780
63940
|
},
|
|
63781
63941
|
"./youtube-music": {
|
|
63782
63942
|
"types": "./types/dd0bq22g.d.ts",
|
|
@@ -63798,6 +63958,22 @@
|
|
|
63798
63958
|
"types": "./types/dd0bq22g.d.ts",
|
|
63799
63959
|
"default": "./components/y/youtube-tv-outline.vue"
|
|
63800
63960
|
},
|
|
63961
|
+
"./youtube-video": {
|
|
63962
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63963
|
+
"default": "./components/y/youtube-video.vue"
|
|
63964
|
+
},
|
|
63965
|
+
"./youtube-video-outline": {
|
|
63966
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63967
|
+
"default": "./components/y/youtube-video-outline.vue"
|
|
63968
|
+
},
|
|
63969
|
+
"./youtube-video-outline-rounded": {
|
|
63970
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63971
|
+
"default": "./components/y/youtube-video-outline-rounded.vue"
|
|
63972
|
+
},
|
|
63973
|
+
"./youtube-video-rounded": {
|
|
63974
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
63975
|
+
"default": "./components/y/youtube-video-rounded.vue"
|
|
63976
|
+
},
|
|
63801
63977
|
"./zone-person-alert": {
|
|
63802
63978
|
"types": "./types/dd0bq22g.d.ts",
|
|
63803
63979
|
"default": "./components/z/zone-person-alert.vue"
|
|
@@ -73274,6 +73450,22 @@
|
|
|
73274
73450
|
"types": "./types/dd0bq22g.d.ts",
|
|
73275
73451
|
"default": "./components/w/wrong-location-sharp.vue"
|
|
73276
73452
|
},
|
|
73453
|
+
"./youtube-activity": {
|
|
73454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
73455
|
+
"default": "./components/y/youtube-activity.vue"
|
|
73456
|
+
},
|
|
73457
|
+
"./youtube-activity-outline": {
|
|
73458
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
73459
|
+
"default": "./components/y/youtube-activity-outline.vue"
|
|
73460
|
+
},
|
|
73461
|
+
"./youtube-activity-outline-rounded": {
|
|
73462
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
73463
|
+
"default": "./components/y/youtube-activity-outline-rounded.vue"
|
|
73464
|
+
},
|
|
73465
|
+
"./youtube-activity-rounded": {
|
|
73466
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
73467
|
+
"default": "./components/y/youtube-activity-rounded.vue"
|
|
73468
|
+
},
|
|
73277
73469
|
"./youtube-activity-sharp": {
|
|
73278
73470
|
"types": "./types/dd0bq22g.d.ts",
|
|
73279
73471
|
"default": "./components/y/youtube-activity-sharp.vue"
|