@iconify-vue/material-symbols 1.0.34 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/a/add-task-outline-rounded.vue +16 -0
- package/components/a/add-task-outline-sharp.vue +16 -0
- package/components/a/add-task-outline.vue +16 -0
- package/components/a/add-task-rounded.vue +3 -3
- package/components/a/add-task-sharp.vue +3 -3
- package/components/a/add-task.vue +3 -3
- package/components/a/add-to-drive-outline-rounded.vue +16 -0
- package/components/a/add-to-drive-outline.vue +3 -3
- package/components/a/add-to-drive-rounded.vue +3 -3
- package/components/a/add-to-drive-sharp.vue +3 -3
- package/components/a/add-to-drive.vue +3 -3
- package/components/d/docs-outline-sharp.vue +3 -3
- package/components/d/docs-outline.vue +3 -3
- package/components/d/docs-sharp.vue +3 -3
- package/components/d/docs.vue +3 -3
- package/components/d/drive-export-outline-rounded.vue +16 -0
- package/components/d/drive-export-outline.vue +16 -0
- package/components/d/drive-export-rounded.vue +3 -3
- package/components/d/drive-export.vue +3 -3
- package/components/f/forms-add-on-outline-rounded.vue +16 -0
- package/components/f/forms-add-on-outline.vue +16 -0
- package/components/f/forms-add-on-rounded.vue +3 -3
- package/components/f/forms-add-on-sharp.vue +3 -3
- package/components/f/forms-add-on.vue +3 -3
- package/components/f/forms-apps-script-outline-sharp.vue +3 -3
- package/components/f/forms-apps-script-outline.vue +3 -3
- package/components/f/forms-apps-script-sharp.vue +3 -3
- package/components/f/forms-apps-script.vue +3 -3
- package/components/t/task-alt-outline-sharp.vue +16 -0
- package/components/t/task-alt-outline.vue +16 -0
- package/components/t/task-alt-sharp.vue +3 -3
- package/components/t/task-alt.vue +3 -3
- package/iconify.json +2 -2
- package/package.json +61 -21
|
@@ -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="y50ixccok"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.y50ixccok {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M9.975 4H14q3.35 0 5.688 2.325T22.025 12q0 .425-.287.713t-.713.287t-.712-.288t-.288-.712q0-2.5-1.775-4.25T13.975 6H10Q7.5 6 5.725 7.75T3.95 12t1.775 4.25T10 18h2q.425 0 .7.288t.275.712t-.288.713t-.712.287h-2q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4M19 14q.425 0 .713.288T20 15v2h2q.425 0 .713.288T23 18t-.288.713T22 19h-2v2.025q0 .425-.288.7T19 22t-.712-.288T18 21v-2h-2.025q-.425 0-.7-.288T15 18t.288-.712T16 17h2v-2q0-.425.288-.712T19 14m-3.475-5.275l-4.95 4.95L8.45 11.55q-.3-.275-.7-.288t-.7.288t-.3.713t.3.687l2.475 2.475q.45.45 1.063.45t1.062-.45l5.3-5.3q.275-.275.275-.687t-.275-.713q-.325-.275-.725-.288t-.7.288");
|
|
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="k954bo6di"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.k954bo6di {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m10.575 13.675l-2.8-2.85l-1.45 1.45l4.275 4.2l7.1-7.05L16.25 8zM9.975 20q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4H14q3.35 0 5.688 2.325T22.025 12h-2q0-2.5-1.775-4.25T13.975 6H10Q7.5 6 5.725 7.75T3.95 12t1.775 4.25T10 18h3v2zM18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-6-10");
|
|
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="hfznldbns"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.hfznldbns {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-8.475-6.575q.45.45 1.063.45t1.062-.45l5.3-5.3q.3-.3.3-.712t-.3-.688q-.3-.3-.712-.3t-.713.3l-4.95 4.95L8.45 11.55q-.3-.3-.7-.3t-.7.3t-.3.7t.3.7zM9.975 20q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4H14q3.35 0 5.688 2.325T22.025 12h-2q0-2.5-1.775-4.25T13.975 6H10Q7.5 6 5.725 7.75T3.95 12t1.775 4.25T10 18h3v2zM12 12");
|
|
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="qkq5-abvw"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.qkq5-abvw {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18 19h-2q-.425 0-.712-.288T15 18t.288-.712T16 17h2v-2q0-.425.288-.712T19 14t.713.288T20 15v2h2q.425 0 .713.288T23 18t-.288.713T22 19h-2v2q0 .425-.288.713T19 22t-.712-.288T18 21zm-8.475-3.575q.45.45 1.063.45t1.062-.45l5.3-5.3q.3-.3.3-.712t-.3-.688q-.3-.3-.712-.3t-.713.3l-4.95 4.95L8.45 11.55q-.3-.3-.7-.3t-.7.3t-.3.7t.3.7zM9.975 20q-3.35 0-5.687-2.325T1.95 12q0-3.325 2.338-5.663T9.974 4H14q2.525 0 4.525 1.375t2.9 3.575q.275.65.413 1.338t.187 1.387q.025.4-.325.613t-.75.062q-.45-.15-.95-.237t-1-.088q-1.25 0-2.35.475t-1.9 1.275q-1.025 1.025-1.462 2.35t-.238 2.7q.05.45-.225.813t-.7.362z");
|
|
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="yvbf61b-p"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.yvbf61b-p {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("m10.575 13.675l-2.8-2.85l-1.45 1.45l4.275 4.2l7.1-7.05L16.25 8zM18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-4.675-2h-3.35q-3.35 0-5.687-2.325T1.95 12q0-3.325 2.338-5.663T9.974 4H14q3.35 0 5.688 2.338T22.025 12q0 .2-.012.413t-.038.412q-.65-.375-1.412-.587T19 12.025q-2.5 0-4.25 1.75T13 18.025q0 .525.075 1.013t.25.962");
|
|
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="w9s9ps4ym"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-task" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.w9s9ps4ym {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-8.475-6.575q.45.45 1.063.45t1.062-.45l5.3-5.3q.3-.3.3-.712t-.3-.688q-.3-.3-.712-.3t-.713.3l-4.95 4.95L8.45 11.55q-.3-.3-.7-.3t-.7.3t-.3.7t.3.7zm3.8 4.575h-3.35q-3.35 0-5.687-2.325T1.95 12q0-3.325 2.338-5.663T9.974 4H14q3.35 0 5.688 2.338T22.025 12q0 .2-.012.413t-.038.412q-.65-.375-1.412-.587T19 12.025q-2.5 0-4.25 1.75T13 18.025q0 .525.075 1.013t.25.962");
|
|
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="t0bdhwt6i"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-to-drive-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.t0bdhwt6i {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M6.775 19H11.7l-3.45-6H5.925L4.6 15.275q-.35.575-.337 1.238T4.6 17.75t.913.913T6.775 19M12 15.5l1.45-2.5h-2.9zM7.075 11H14.6l1.15-2l-1.6-2.75q-.35-.575-.912-.913T12 5t-1.25.338t-.925.912zM13.3 21H6.775Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25l5.25-9Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l4.675 8q-.6-.15-1.213-.2t-1.212.05l-1.25-2.125l-2.25 3.9q-.8.8-1.237 1.875t-.438 2.3q0 .5.088 1t.237.95m4.7-1h-2q-.425 0-.712-.288T15 19t.288-.712T16 18h2v-2q0-.425.288-.712T19 15t.713.288T20 16v2h2q.425 0 .713.288T23 19t-.288.713T22 20h-2v2q0 .425-.288.713T19 23t-.712-.288T18 22zm-1.1-9.025");
|
|
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="qo6e-9btv"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-to-drive-outline" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.qo6e-9btv {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M6.775 19H11.7l-3.45-6H5.925L4.6 15.275q-.35.575-.337 1.238T4.6 17.75t.913.913T6.775 19M12 15.5l1.45-2.5h-2.9zM7.075 11H14.6l1.15-2l-1.6-2.75q-.35-.575-.912-.913T12 5t-1.25.338t-.925.912zM13.3 21H6.775Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25l5.25-9Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l4.675 8q-.6-.15-1.213-.2t-1.212.05l-1.25-2.125l-2.25 3.9q-.8.8-1.237 1.875t-.438 2.3q0 .5.088 1t.237.95m4.7 2v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-1.1-12.025");
|
|
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="ijwjx0rwl"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-to-drive-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ijwjx0rwl {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M6.775 21Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25L3.575 13H8.25l4.6 8zM4.75 11L8.1 5.25Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l1 1.725L14.6 11zM18 20h-2q-.425 0-.712-.288T15 19t.288-.712T16 18h2v-2q0-.425.288-.712T19 15t.713.288T20 16v2h2q.425 0 .713.288T23 19t-.288.713T22 20h-2v2q0 .425-.288.713T19 23t-.712-.288T18 22zm-3.325-5.125l3.4-5.925l2.5 4.3q-1.575-.425-3.162 0t-2.738 1.625");
|
|
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="dxbcs3b-g"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-to-drive-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.dxbcs3b-g {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M6.775 21Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25L3.575 13H8.25l4.6 8zM4.75 11L8.1 5.25Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l1 1.725L14.6 11zM18 23v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-3.325-8.125l3.4-5.925l2.5 4.3q-1.575-.425-3.162 0t-2.738 1.625");
|
|
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="dxbcs3b-g"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:add-to-drive" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.dxbcs3b-g {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M6.775 21Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25L3.575 13H8.25l4.6 8zM4.75 11L8.1 5.25Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l1 1.725L14.6 11zM18 23v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-3.325-8.125l3.4-5.925l2.5 4.3q-1.575-.425-3.162 0t-2.738 1.625");
|
|
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="zjptzqr8a"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:docs-outline-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.zjptzqr8a {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("m14 2l5 5v15H5V2zm-3 2H7v16h10V10h-6zm2 0v4h4v-.175L13.175 4zM9 19v-2h4v2zm0-4v-2h6v2z");
|
|
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="zz9z94z6k"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:docs-outline" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.zz9z94z6k {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M7 22q-.825 0-1.412-.587T5 20V4q0-.825.588-1.412T7 2h6.175q.4 0 .763.15t.637.425l3.85 3.85q.275.275.425.638t.15.762V20q0 .825-.587 1.413T17 22zm4-18H7v16h10V10h-3q-1.25 0-2.125-.875T11 7zm2 0v3q0 .425.288.713T14 8h3v-.175L13.175 4zm-3 15q-.425 0-.712-.288T9 18t.288-.712T10 17h2q.425 0 .713.288T13 18t-.288.713T12 19zm0-4q-.425 0-.712-.288T9 14t.288-.712T10 13h4q.425 0 .713.288T15 14t-.288.713T14 15z");
|
|
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="ngma_9qff"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:docs-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ngma_9qff {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M12 2v7h7v13H5V2zm2 0l5 5h-5zM9 19h4v-2H9zm0-4h6v-2H9z");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
</style>
|
package/components/d/docs.vue
CHANGED
|
@@ -4,13 +4,13 @@ import { Icon } from '@iconify/css-vue';
|
|
|
4
4
|
const props = defineProps(["width","height"]);
|
|
5
5
|
|
|
6
6
|
const viewBox = {"width":24,"height":24};
|
|
7
|
-
const content = `<path class="
|
|
7
|
+
const content = `<path class="lu88wbtmr"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:docs" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.lu88wbtmr {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M12 2v4q0 1.25.875 2.125T15 9h4v11q0 .825-.587 1.413T17 22H7q-.825 0-1.412-.587T5 20V4q0-.825.588-1.412T7 2zm2 0l5 5h-4q-.425 0-.712-.288T14 6zm-4 17h2q.425 0 .713-.288T13 18t-.288-.712T12 17h-2q-.425 0-.712.288T9 18t.288.713T10 19m0-4h4q.425 0 .713-.288T15 14t-.288-.712T14 13h-4q-.425 0-.712.288T9 14t.288.713T10 15");
|
|
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="ep084_2fh"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:drive-export-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ep084_2fh {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m20 19.4l-2.4 2.4q-.275.275-.687.288T16.2 21.8q-.275-.275-.275-.7t.275-.7l2.375-2.4H17q-.425 0-.712-.288T16 17t.288-.712T17 16h4q.425 0 .713.288T22 17v4q0 .425-.288.713T21 22t-.712-.288T20 21zM6.775 19H11.7l-3.45-6H5.925L4.6 15.275q-.35.575-.337 1.238T4.6 17.75t.913.913T6.775 19M12 15.5l1.45-2.5h-2.9zM7.075 11H14.6l1.15-2l-1.6-2.75q-.35-.575-.912-.913T12 5t-1.25.338t-.925.912zM13.3 21H6.775Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25l5.25-9Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l4.675 8q-.6-.15-1.213-.2t-1.212.05l-1.25-2.125l-2.25 3.9q-.8.8-1.237 1.875t-.438 2.3q0 .5.088 1t.237.95m3.6-10.025");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="bdvmqrd5f"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:drive-export-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bdvmqrd5f {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m16.9 22.5l-1.4-1.4l3.075-3.1H16v-2h6v6h-2v-2.6zM6.775 19H11.7l-3.45-6H5.925L4.6 15.275q-.35.575-.337 1.238T4.6 17.75t.913.913T6.775 19M12 15.5l1.45-2.5h-2.9zM7.075 11H14.6l1.15-2l-1.6-2.75q-.35-.575-.912-.913T12 5t-1.25.338t-.925.912zM13.3 21H6.775Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25l5.25-9Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l4.675 8q-.6-.15-1.213-.2t-1.212.05l-1.25-2.125l-2.25 3.9q-.8.8-1.237 1.875t-.438 2.3q0 .5.088 1t.237.95m3.6-10.025");
|
|
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="pnb93l7fx"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:drive-export-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.pnb93l7fx {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("m20
|
|
13
|
+
d: path("m20 19.4l-2.4 2.4q-.275.275-.687.288T16.2 21.8q-.275-.275-.275-.7t.275-.7l2.375-2.4H17q-.425 0-.712-.288T16 17t.288-.712T17 16h4q.425 0 .713.288T22 17v4q0 .425-.288.713T21 22t-.712-.288T20 21zM6.775 21Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25L3.575 13H8.25l4.6 8zM4.75 11L8.1 5.25Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l1 1.725L14.6 11zm9.925 3.875l3.4-5.925l2.5 4.3q-1.575-.425-3.162 0t-2.738 1.625");
|
|
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="g44uqpbor"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:drive-export" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.g44uqpbor {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("m16.9
|
|
13
|
+
d: path("m16.9 22.5l-1.4-1.4l3.075-3.1H16v-2h6v6h-2v-2.6zM6.775 21Q5.55 21 4.5 20.4t-1.65-1.65t-.6-2.25t.6-2.25L3.575 13H8.25l4.6 8zM4.75 11L8.1 5.25Q8.7 4.2 9.75 3.6T12 3t2.25.6t1.65 1.65l1 1.725L14.6 11zm9.925 3.875l3.4-5.925l2.5 4.3q-1.575-.425-3.162 0t-2.738 1.625");
|
|
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="qfhy1tigi"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-add-on-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.qfhy1tigi {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.288 21.713Q18 21.425 18 21v-2h-2q-.425 0-.712-.288T15 18t.288-.712T16 17h2v-2q0-.425.288-.712T19 14t.713.288T20 15v2h2q.425 0 .713.288T23 18t-.288.713T22 19h-2v2q0 .425-.288.713T19 22t-.712-.288M6.5 20.5q-1.45 0-2.475-1.025T3 17q0-.725.275-1.362T4.05 14.5q-.5-.475-.775-1.125T3 12t.275-1.362T4.05 9.5q-.5-.475-.775-1.125T3 7q0-1.425 1.025-2.463T6.5 3.5q.725 0 1.363.287T9 4.576q.475-.5 1.125-.788T11.5 3.5h6q1.425 0 2.463 1.038T21 7q0 .725-.288 1.375T19.926 9.5q.575.575.85 1.313t.2 1.537q-.475-.175-.975-.25t-1-.075q0-.625-.437-1.075T17.5 10.5h-6q-.625 0-1.062.438T10 12t.438 1.063t1.062.437h3.575q-.475.425-.862.925T13.55 15.5H11.5q-.625 0-1.062.438T10 17t.438 1.063t1.062.437h1.525q.05.525.175 1.025t.325.975H11.5q-.725 0-1.375-.275T9 19.45q-.5.5-1.137.775T6.5 20.5m0-2q.625 0 1.063-.437T8 17t-.437-1.062T6.5 15.5t-1.062.438T5 17t.438 1.063T6.5 18.5m0-5q.625 0 1.063-.437T8 12t-.437-1.062T6.5 10.5t-1.062.438T5 12t.438 1.063T6.5 13.5m0-5q.625 0 1.063-.437T8 7t-.437-1.062T6.5 5.5t-1.062.438T5 7t.438 1.063T6.5 8.5m5 0h6q.625 0 1.063-.437T19 7t-.437-1.062T17.5 5.5h-6q-.625 0-1.062.438T10 7t.438 1.063T11.5 8.5m-2.475 1");
|
|
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="vb16-v22u"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-add-on-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.vb16-v22u {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zM6.5 20.5q-1.45 0-2.475-1.025T3 17q0-.725.275-1.362T4.05 14.5q-.5-.475-.775-1.125T3 12t.275-1.362T4.05 9.5q-.5-.475-.775-1.125T3 7q0-1.425 1.025-2.463T6.5 3.5q.725 0 1.363.287T9 4.576q.475-.5 1.125-.788T11.5 3.5h6q1.425 0 2.463 1.038T21 7q0 .725-.288 1.375T19.926 9.5q.575.575.85 1.313t.2 1.537q-.475-.175-.975-.25t-1-.075q0-.625-.437-1.075T17.5 10.5h-6q-.625 0-1.062.438T10 12t.438 1.063t1.062.437h3.575q-.475.425-.862.925T13.55 15.5H11.5q-.625 0-1.062.438T10 17t.438 1.063t1.062.437h1.525q.05.525.175 1.025t.325.975H11.5q-.725 0-1.375-.275T9 19.45q-.5.5-1.137.775T6.5 20.5m0-2q.625 0 1.063-.437T8 17t-.437-1.062T6.5 15.5t-1.062.438T5 17t.438 1.063T6.5 18.5m0-5q.625 0 1.063-.437T8 12t-.437-1.062T6.5 10.5t-1.062.438T5 12t.438 1.063T6.5 13.5m0-5q.625 0 1.063-.437T8 7t-.437-1.062T6.5 5.5t-1.062.438T5 7t.438 1.063T6.5 8.5m5 0h6q.625 0 1.063-.437T19 7t-.437-1.062T17.5 5.5h-6q-.625 0-1.062.438T10 7t.438 1.063T11.5 8.5m-2.475 1");
|
|
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="zm7ly6b4z"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-add-on-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.zm7ly6b4z {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18.288 21.713Q18 21.425 18 21v-2h-2q-.425 0-.712-.288T15 18t.288-.712T16 17h2v-2q0-.425.288-.712T19 14t.713.288T20 15v2h2q.425 0 .713.288T23 18t-.288.713T22 19h-2v2q0 .425-.288.713T19 22t-.712-.288m-12.263-.687q-1.25 0-2.125-.875t-.875-2.125T3.9 15.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125T3.9 9.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125q0-1.275.875-2.15T6.025 3t2.125.888t.875 2.137q0-1.25.875-2.137T12.025 3h5.95q1.275 0 2.15.875T21 6.025q0 1.25-.875 2.125t-2.15.875q1.35.025 2.25 1t.75 2.325q-.475-.175-.95-.25t-.975-.075q-2.5 0-4.275 1.725T13 17.975q0 .8.2 1.6t.6 1.45h-1.775q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875M6.025 7q.425 0 .712-.287T7.025 6t-.288-.712T6.026 5t-.712.288T5.025 6t.288.713t.712.287m5.5 0H18.5V5h-6.975zm-2.5 11.025q0-1.25.875-2.125t2.125-.875q-1.25 0-2.125-.887T9.025 12q0 1.25-.875 2.138t-2.125.887q1.25 0 2.125.875t.875 2.125m0-6.025q0-1.25.875-2.113t2.125-.862q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875q1.25 0 2.125.862T9.025 12");
|
|
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="ygnc6hbap"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-add-on-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ygnc6hbap {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-11.975-.975q-1.25 0-2.125-.875t-.875-2.125T3.9 15.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125T3.9 9.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125q0-1.275.875-2.15T6.025 3t2.125.887t.875 2.138q0-1.25.875-2.138T12.025 3h5.95q1.275 0 2.15.875T21 6.025q0 1.25-.875 2.125t-2.15.875q1.35.025 2.25 1t.75 2.325q-.475-.175-.95-.25t-.975-.075q-2.5 0-4.275 1.725T13 17.975q0 .8.2 1.6t.6 1.45h-1.775q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875M6.025 7q.425 0 .712-.288T7.025 6t-.288-.712T6.026 5t-.712.288T5.025 6t.288.713t.712.287m5.5 0H18.5V5h-6.975zm-2.5 11.025q0-1.25.875-2.125t2.125-.875q-1.25 0-2.125-.887T9.025 12q0 1.25-.875 2.138t-2.125.887q1.25 0 2.125.875t.875 2.125m0-6.025q0-1.25.875-2.113t2.125-.862q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875q1.25 0 2.125.862T9.025 12");
|
|
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="ygnc6hbap"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-add-on" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.ygnc6hbap {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18 22v-3h-3v-2h3v-3h2v3h3v2h-3v3zm-11.975-.975q-1.25 0-2.125-.875t-.875-2.125T3.9 15.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125T3.9 9.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125q0-1.275.875-2.15T6.025 3t2.125.887t.875 2.138q0-1.25.875-2.138T12.025 3h5.95q1.275 0 2.15.875T21 6.025q0 1.25-.875 2.125t-2.15.875q1.35.025 2.25 1t.75 2.325q-.475-.175-.95-.25t-.975-.075q-2.5 0-4.275 1.725T13 17.975q0 .8.2 1.6t.6 1.45h-1.775q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875M6.025 7q.425 0 .712-.288T7.025 6t-.288-.712T6.026 5t-.712.288T5.025 6t.288.713t.712.287m5.5 0H18.5V5h-6.975zm-2.5 11.025q0-1.25.875-2.125t2.125-.875q-1.25 0-2.125-.887T9.025 12q0 1.25-.875 2.138t-2.125.887q1.25 0 2.125.875t.875 2.125m0-6.025q0-1.25.875-2.113t2.125-.862q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875q1.25 0 2.125.862T9.025 12");
|
|
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="akbwb9f0s"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-apps-script-outline-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.akbwb9f0s {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("m18.8 20.05l-3.175-2.475l.8-1.125l3.125 2.4l-1.3-3.9l1.25-.525l1.3 3.925l1.025-4l1.325.375L21.4 21.5h-6.45v-1.45zm-12.3.45q-1.45 0-2.475-1.025T3 17q0-.725.275-1.362T4.05 14.5q-.5-.475-.775-1.125T3 12t.275-1.362T4.05 9.5q-.5-.475-.775-1.125T3 7q0-1.425 1.025-2.463T6.5 3.5q.725 0 1.363.287T9 4.576q.475-.5 1.125-.788T11.5 3.5h6q1.425 0 2.463 1.038T21 7q0 .725-.288 1.375T19.926 9.5q.575.575.85 1.313t.2 1.537q-.475-.175-.975-.25t-1-.075q0-.625-.437-1.075T17.5 10.5h-6q-.625 0-1.062.438T10 12t.438 1.063t1.062.437h3.575q-.475.425-.862.925T13.55 15.5H11.5q-.625 0-1.062.438T10 17t.438 1.063t1.062.437h1.525q.05.525.175 1.025t.325.975H11.5q-.725 0-1.375-.275T9 19.45q-.5.5-1.137.775T6.5 20.5m0-2q.625 0 1.063-.437T8 17t-.437-1.062T6.5 15.5t-1.062.438T5 17t.438 1.063T6.5 18.5m0-5q.625 0 1.063-.437T8 12t-.437-1.062T6.5 10.5t-1.062.438T5 12t.438 1.063T6.5 13.5m0-5q.625 0 1.063-.437T8 7t-.437-1.062T6.5 5.5t-1.062.438T5 7t.438 1.063T6.5 8.5m5 0h6q.625 0 1.063-.437T19 7t-.437-1.062T17.5 5.5h-6q-.625 0-1.062.438T10 7t.438 1.063T11.5 8.5m-2.475 1");
|
|
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="z604d7bjk"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-apps-script-outline" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.z604d7bjk {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M20.625 21.5h-4.95q-.3 0-.513-.213t-.212-.512t.213-.512t.512-.213H18.8L16.15 18q-.225-.175-.275-.45t.125-.5q.175-.25.462-.3t.538.15l2.55 1.95l-1.1-3.325q-.075-.25.025-.475t.35-.35q.275-.125.538.013t.362.412L20.8 18.35l.85-3.325q.075-.275.325-.412t.525-.063t.413.313t.062.512L21.6 20.75q-.1.35-.363.55t-.612.2M6.5 20.5q-1.45 0-2.475-1.025T3 17q0-.725.275-1.362T4.05 14.5q-.5-.475-.775-1.125T3 12t.275-1.362T4.05 9.5q-.5-.475-.775-1.125T3 7q0-1.425 1.025-2.463T6.5 3.5q.725 0 1.363.287T9 4.576q.475-.5 1.125-.788T11.5 3.5h6q1.425 0 2.463 1.038T21 7q0 .725-.288 1.375T19.926 9.5q.575.575.85 1.313t.2 1.537q-.475-.175-.975-.25t-1-.075q0-.625-.437-1.075T17.5 10.5h-6q-.625 0-1.062.438T10 12t.438 1.063t1.062.437h3.575q-.475.425-.862.925T13.55 15.5H11.5q-.625 0-1.062.438T10 17t.438 1.063t1.062.437h1.525q.05.525.175 1.025t.325.975H11.5q-.725 0-1.375-.275T9 19.45q-.5.5-1.137.775T6.5 20.5m0-2q.625 0 1.063-.437T8 17t-.437-1.062T6.5 15.5t-1.062.438T5 17t.438 1.063T6.5 18.5m0-5q.625 0 1.063-.437T8 12t-.437-1.062T6.5 10.5t-1.062.438T5 12t.438 1.063T6.5 13.5m0-5q.625 0 1.063-.437T8 7t-.437-1.062T6.5 5.5t-1.062.438T5 7t.438 1.063T6.5 8.5m5 0h6q.625 0 1.063-.437T19 7t-.437-1.062T17.5 5.5h-6q-.625 0-1.062.438T10 7t.438 1.063T11.5 8.5m-2.475 1");
|
|
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="smii20b8f"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-apps-script-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.smii20b8f {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("m18.8 20.05l-3.175-2.475l.8-1.125l3.125 2.4l-1.3-3.9l1.25-.525l1.3 3.925l1.025-4l1.325.375L21.4 21.5h-6.45v-1.45zm-12.775.975q-1.25 0-2.125-.875t-.875-2.125T3.9 15.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125T3.9 9.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125q0-1.275.875-2.15T6.025 3t2.125.888t.875 2.137q0-1.25.875-2.137T12.025 3h5.95q1.275 0 2.15.875T21 6.025q0 1.25-.875 2.125t-2.15.875q1.35.025 2.25 1t.75 2.325q-.475-.175-.95-.25t-.975-.075q-2.5 0-4.275 1.725T13 17.975q0 .8.2 1.6t.6 1.45h-1.775q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875M6.025 7q.425 0 .712-.287T7.025 6t-.288-.712T6.026 5t-.712.288T5.025 6t.288.713t.712.287m5.5 0H18.5V5h-6.975zm-2.5 11.025q0-1.25.875-2.125t2.125-.875q-1.25 0-2.125-.887T9.025 12q0 1.25-.875 2.138t-2.125.887q1.25 0 2.125.875t.875 2.125m0-6.025q0-1.25.875-2.113t2.125-.862q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875q1.25 0 2.125.862T9.025 12");
|
|
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="t2bjdsb2s"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:forms-apps-script" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.t2bjdsb2s {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M18.8 20.05L16.15 18q-.225-.175-.275-.45t.125-.5q.175-.25.462-.3t.538.15l2.55 1.95l-1.1-3.325q-.075-.25.025-.475t.35-.35q.275-.125.538.013t.362.412L20.8 18.35l.85-3.325q.075-.275.325-.412t.525-.063t.413.313t.062.512L21.6 20.75q-.1.35-.363.55t-.612.2h-4.95q-.3 0-.513-.213t-.212-.512t.213-.512t.512-.213zm-12.775.975q-1.25 0-2.125-.875t-.875-2.125T3.9 15.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125T3.9 9.9t2.125-.875q-1.25 0-2.125-.875t-.875-2.125q0-1.275.875-2.15T6.025 3t2.125.888t.875 2.137q0-1.25.875-2.137T12.025 3h5.95q1.275 0 2.15.875T21 6.025q0 1.25-.875 2.125t-2.15.875q1.35.025 2.25 1t.75 2.325q-.475-.175-.95-.25t-.975-.075q-2.5 0-4.275 1.725T13 17.975q0 .8.2 1.6t.6 1.45h-1.775q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875M6.025 7q.425 0 .712-.287T7.025 6t-.288-.712T6.026 5t-.712.288T5.025 6t.288.713t.712.287m5.5 0H18.5V5h-6.975zm-2.5 11.025q0-1.25.875-2.125t2.125-.875q-1.25 0-2.125-.887T9.025 12q0 1.25-.875 2.138t-2.125.887q1.25 0 2.125.875t.875 2.125m0-6.025q0-1.25.875-2.113t2.125-.862q-1.25 0-2.125-.875t-.875-2.125q0 1.25-.875 2.125t-2.125.875q1.25 0 2.125.862T9.025 12");
|
|
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="jw3yjfj9x"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:task-alt-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.jw3yjfj9x {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M9.975 20q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4H14q3.35 0 5.688 2.325T22.025 12t-2.337 5.675T14 20zM10 18h3.975q2.5 0 4.275-1.75T20.025 12T18.25 7.75T13.975 6H10Q7.5 6 5.725 7.75T3.95 12t1.775 4.25T10 18m.575-4.325l-2.8-2.85l-1.45 1.45l4.275 4.2l7.1-7.05L16.25 8zM12 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="b-9qbc65s"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:task-alt-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.b-9qbc65s {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M9.975 20q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4H14q3.35 0 5.688 2.325T22.025 12t-2.337 5.675T14 20zM10 18h3.975q2.5 0 4.275-1.75T20.025 12T18.25 7.75T13.975 6H10Q7.5 6 5.725 7.75T3.95 12t1.775 4.25T10 18m.575-4.325L8.45 11.55q-.275-.3-.687-.3t-.713.3t-.3.713t.3.687l2.475 2.475q.45.45 1.075.45t1.05-.45l5.3-5.3q.3-.275.3-.7t-.3-.7q-.3-.3-.712-.3t-.713.3zM12 12");
|
|
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="dnd-eqxdd"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:task-alt-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.dnd-eqxdd {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M9.975 20q-3.35 0-5.687-2.325T1.95 12q0-3.325 2.338-5.663T9.974 4H14q3.35 0 5.688 2.338T22.025 12q0 3.35-2.337 5.675T14 20zm.6-6.325l-2.8-2.85l-1.45 1.45l4.275 4.2l7.1-7.05L16.25 8z");
|
|
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="gf9mbxqsy"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:task-alt" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.gf9mbxqsy {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("
|
|
13
|
+
d: path("M9.975 20q-3.35 0-5.687-2.325T1.95 12t2.338-5.675T9.974 4H14q3.35 0 5.688 2.325T22.025 12t-2.337 5.675T14 20zm.6-6.325L8.45 11.55q-.275-.3-.687-.3t-.713.3t-.3.713t.3.687l2.475 2.475q.45.45 1.075.45t1.05-.45l5.3-5.3q.3-.275.3-.7t-.3-.7q-.3-.3-.712-.3t-.713.3z");
|
|
14
14
|
}
|
|
15
15
|
|
|
16
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": 15399,
|
|
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": 1779514363
|
|
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.35",
|
|
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",
|
|
@@ -2270,14 +2270,38 @@
|
|
|
2270
2270
|
"types": "./types/dd0bq22g.d.ts",
|
|
2271
2271
|
"default": "./components/a/add-task.vue"
|
|
2272
2272
|
},
|
|
2273
|
+
"./add-task-outline": {
|
|
2274
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2275
|
+
"default": "./components/a/add-task-outline.vue"
|
|
2276
|
+
},
|
|
2277
|
+
"./add-task-outline-rounded": {
|
|
2278
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2279
|
+
"default": "./components/a/add-task-outline-rounded.vue"
|
|
2280
|
+
},
|
|
2281
|
+
"./add-task-outline-sharp": {
|
|
2282
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2283
|
+
"default": "./components/a/add-task-outline-sharp.vue"
|
|
2284
|
+
},
|
|
2273
2285
|
"./add-task-rounded": {
|
|
2274
2286
|
"types": "./types/dd0bq22g.d.ts",
|
|
2275
2287
|
"default": "./components/a/add-task-rounded.vue"
|
|
2276
2288
|
},
|
|
2289
|
+
"./add-task-sharp": {
|
|
2290
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2291
|
+
"default": "./components/a/add-task-sharp.vue"
|
|
2292
|
+
},
|
|
2277
2293
|
"./add-to-drive": {
|
|
2278
2294
|
"types": "./types/dd0bq22g.d.ts",
|
|
2279
2295
|
"default": "./components/a/add-to-drive.vue"
|
|
2280
2296
|
},
|
|
2297
|
+
"./add-to-drive-outline": {
|
|
2298
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2299
|
+
"default": "./components/a/add-to-drive-outline.vue"
|
|
2300
|
+
},
|
|
2301
|
+
"./add-to-drive-outline-rounded": {
|
|
2302
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2303
|
+
"default": "./components/a/add-to-drive-outline-rounded.vue"
|
|
2304
|
+
},
|
|
2281
2305
|
"./add-to-drive-rounded": {
|
|
2282
2306
|
"types": "./types/dd0bq22g.d.ts",
|
|
2283
2307
|
"default": "./components/a/add-to-drive-rounded.vue"
|
|
@@ -18706,6 +18730,14 @@
|
|
|
18706
18730
|
"types": "./types/dd0bq22g.d.ts",
|
|
18707
18731
|
"default": "./components/d/drive-export.vue"
|
|
18708
18732
|
},
|
|
18733
|
+
"./drive-export-outline": {
|
|
18734
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18735
|
+
"default": "./components/d/drive-export-outline.vue"
|
|
18736
|
+
},
|
|
18737
|
+
"./drive-export-outline-rounded": {
|
|
18738
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
18739
|
+
"default": "./components/d/drive-export-outline-rounded.vue"
|
|
18740
|
+
},
|
|
18709
18741
|
"./drive-export-rounded": {
|
|
18710
18742
|
"types": "./types/dd0bq22g.d.ts",
|
|
18711
18743
|
"default": "./components/d/drive-export-rounded.vue"
|
|
@@ -25170,6 +25202,14 @@
|
|
|
25170
25202
|
"types": "./types/dd0bq22g.d.ts",
|
|
25171
25203
|
"default": "./components/f/forms-add-on.vue"
|
|
25172
25204
|
},
|
|
25205
|
+
"./forms-add-on-outline": {
|
|
25206
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
25207
|
+
"default": "./components/f/forms-add-on-outline.vue"
|
|
25208
|
+
},
|
|
25209
|
+
"./forms-add-on-outline-rounded": {
|
|
25210
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
25211
|
+
"default": "./components/f/forms-add-on-outline-rounded.vue"
|
|
25212
|
+
},
|
|
25173
25213
|
"./forms-add-on-rounded": {
|
|
25174
25214
|
"types": "./types/dd0bq22g.d.ts",
|
|
25175
25215
|
"default": "./components/f/forms-add-on-rounded.vue"
|
|
@@ -25186,10 +25226,18 @@
|
|
|
25186
25226
|
"types": "./types/dd0bq22g.d.ts",
|
|
25187
25227
|
"default": "./components/f/forms-apps-script-outline-rounded.vue"
|
|
25188
25228
|
},
|
|
25229
|
+
"./forms-apps-script-outline-sharp": {
|
|
25230
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
25231
|
+
"default": "./components/f/forms-apps-script-outline-sharp.vue"
|
|
25232
|
+
},
|
|
25189
25233
|
"./forms-apps-script-rounded": {
|
|
25190
25234
|
"types": "./types/dd0bq22g.d.ts",
|
|
25191
25235
|
"default": "./components/f/forms-apps-script-rounded.vue"
|
|
25192
25236
|
},
|
|
25237
|
+
"./forms-apps-script-sharp": {
|
|
25238
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
25239
|
+
"default": "./components/f/forms-apps-script-sharp.vue"
|
|
25240
|
+
},
|
|
25193
25241
|
"./fort": {
|
|
25194
25242
|
"types": "./types/dd0bq22g.d.ts",
|
|
25195
25243
|
"default": "./components/f/fort.vue"
|
|
@@ -57466,10 +57514,22 @@
|
|
|
57466
57514
|
"types": "./types/dd0bq22g.d.ts",
|
|
57467
57515
|
"default": "./components/t/task-alt.vue"
|
|
57468
57516
|
},
|
|
57517
|
+
"./task-alt-outline": {
|
|
57518
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
57519
|
+
"default": "./components/t/task-alt-outline.vue"
|
|
57520
|
+
},
|
|
57521
|
+
"./task-alt-outline-sharp": {
|
|
57522
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
57523
|
+
"default": "./components/t/task-alt-outline-sharp.vue"
|
|
57524
|
+
},
|
|
57469
57525
|
"./task-alt-rounded": {
|
|
57470
57526
|
"types": "./types/dd0bq22g.d.ts",
|
|
57471
57527
|
"default": "./components/t/task-alt-rounded.vue"
|
|
57472
57528
|
},
|
|
57529
|
+
"./task-alt-sharp": {
|
|
57530
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
57531
|
+
"default": "./components/t/task-alt-sharp.vue"
|
|
57532
|
+
},
|
|
57473
57533
|
"./task-outline": {
|
|
57474
57534
|
"types": "./types/dd0bq22g.d.ts",
|
|
57475
57535
|
"default": "./components/t/task-outline.vue"
|
|
@@ -65098,14 +65158,6 @@
|
|
|
65098
65158
|
"types": "./types/dd0bq22g.d.ts",
|
|
65099
65159
|
"default": "./components/a/add-sharp.vue"
|
|
65100
65160
|
},
|
|
65101
|
-
"./add-task-sharp": {
|
|
65102
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
65103
|
-
"default": "./components/a/add-task-sharp.vue"
|
|
65104
|
-
},
|
|
65105
|
-
"./add-to-drive-outline": {
|
|
65106
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
65107
|
-
"default": "./components/a/add-to-drive-outline.vue"
|
|
65108
|
-
},
|
|
65109
65161
|
"./add-to-drive-sharp": {
|
|
65110
65162
|
"types": "./types/dd0bq22g.d.ts",
|
|
65111
65163
|
"default": "./components/a/add-to-drive-sharp.vue"
|
|
@@ -68250,14 +68302,6 @@
|
|
|
68250
68302
|
"types": "./types/dd0bq22g.d.ts",
|
|
68251
68303
|
"default": "./components/f/forms-add-on-sharp.vue"
|
|
68252
68304
|
},
|
|
68253
|
-
"./forms-apps-script-outline-sharp": {
|
|
68254
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
68255
|
-
"default": "./components/f/forms-apps-script-outline-sharp.vue"
|
|
68256
|
-
},
|
|
68257
|
-
"./forms-apps-script-sharp": {
|
|
68258
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
68259
|
-
"default": "./components/f/forms-apps-script-sharp.vue"
|
|
68260
|
-
},
|
|
68261
68305
|
"./forward-circle-outline-sharp": {
|
|
68262
68306
|
"types": "./types/dd0bq22g.d.ts",
|
|
68263
68307
|
"default": "./components/f/forward-circle-outline-sharp.vue"
|
|
@@ -73082,10 +73126,6 @@
|
|
|
73082
73126
|
"types": "./types/dd0bq22g.d.ts",
|
|
73083
73127
|
"default": "./components/t/tapas-sharp.vue"
|
|
73084
73128
|
},
|
|
73085
|
-
"./task-alt-sharp": {
|
|
73086
|
-
"types": "./types/dd0bq22g.d.ts",
|
|
73087
|
-
"default": "./components/t/task-alt-sharp.vue"
|
|
73088
|
-
},
|
|
73089
73129
|
"./taunt-sharp": {
|
|
73090
73130
|
"types": "./types/dd0bq22g.d.ts",
|
|
73091
73131
|
"default": "./components/t/taunt-sharp.vue"
|