@iconify-vue/material-symbols 1.0.18 → 1.0.19
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/f/format-image-left-outline-rounded.vue +16 -0
- package/components/f/format-image-left-outline.vue +16 -0
- package/components/f/format-image-left-rounded.vue +3 -3
- package/components/f/format-image-left-sharp.vue +3 -3
- package/components/f/format-image-left.vue +3 -3
- package/components/f/format-image-right-outline-rounded.vue +16 -0
- package/components/f/format-image-right-outline.vue +16 -0
- package/components/f/format-image-right-rounded.vue +3 -3
- package/components/f/format-image-right-sharp.vue +3 -3
- package/components/f/format-image-right.vue +3 -3
- package/components/f/format-paint-off-outline-rounded.vue +16 -0
- package/components/f/format-paint-off-outline-sharp.vue +16 -0
- package/components/f/format-paint-off-outline.vue +16 -0
- package/components/f/format-paint-off-rounded.vue +16 -0
- package/components/f/format-paint-off-sharp.vue +16 -0
- package/components/f/format-paint-off.vue +16 -0
- package/components/g/graphic-eq-off-rounded.vue +16 -0
- package/components/g/graphic-eq-off.vue +16 -0
- package/components/s/sql-rounded.vue +16 -0
- package/components/s/sql-sharp.vue +16 -0
- package/components/s/sql.vue +16 -0
- package/components/s/swipe-left-2-outline-rounded.vue +16 -0
- package/components/s/swipe-left-2-outline-sharp.vue +16 -0
- package/components/s/swipe-left-2-outline.vue +16 -0
- package/components/s/swipe-left-2-rounded.vue +16 -0
- package/components/s/swipe-left-2-sharp.vue +16 -0
- package/components/s/swipe-left-2.vue +16 -0
- package/components/s/swipe-right-2-outline-rounded.vue +16 -0
- package/components/s/swipe-right-2-outline-sharp.vue +16 -0
- package/components/s/swipe-right-2-outline.vue +16 -0
- package/components/s/swipe-right-2-rounded.vue +16 -0
- package/components/s/swipe-right-2.vue +16 -0
- package/components/t/text-ad-off-outline-rounded.vue +16 -0
- package/components/t/text-ad-off-outline-sharp.vue +16 -0
- package/components/t/text-ad-off-outline.vue +16 -0
- package/components/t/text-ad-off-rounded.vue +16 -0
- package/components/t/text-ad-off-sharp.vue +16 -0
- package/components/t/text-ad-off.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +129 -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="vpjrjlol"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-left-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.vpjrjlol {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 17q-.425 0-.712-.288T3 16V8q0-.425.288-.712T4 7h8q.425 0 .713.288T13 8v8q0 .425-.288.713T12 17zm1-2h6V9H5zM4 5q-.425 0-.712-.288T3 4t.288-.712T4 3h16q.425 0 .713.288T21 4t-.288.713T20 5zm12 4q-.425 0-.712-.288T15 8t.288-.712T16 7h4q.425 0 .713.288T21 8t-.288.713T20 9zm0 4q-.425 0-.712-.288T15 12t.288-.712T16 11h4q.425 0 .713.288T21 12t-.288.713T20 13zm0 4q-.425 0-.712-.288T15 16t.288-.712T16 15h4q.425 0 .713.288T21 16t-.288.713T20 17zM4 21q-.425 0-.712-.288T3 20t.288-.712T4 19h16q.425 0 .713.288T21 20t-.288.713T20 21zm4-9");
|
|
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="z5173gv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-left-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.z5173gv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3 17V7h10v10zm2-2h6V9H5zM3 5V3h18v2zm12 4V7h6v2zm0 4v-2h6v2zm0 4v-2h6v2zM3 21v-2h18v2zm5-9");
|
|
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="jrk2339l"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-left-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.jrk2339l {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M4 17q-.425 0-.712-.288T3 16V8q0-.425.288-.712T4 7h8q.425 0 .713.288T13 8v8q0 .425-.288.713T12
|
|
13
|
+
d: path("M4 17q-.425 0-.712-.288T3 16V8q0-.425.288-.712T4 7h8q.425 0 .713.288T13 8v8q0 .425-.288.713T12 17zM4 5q-.425 0-.712-.288T3 4t.288-.712T4 3h16q.425 0 .713.288T21 4t-.288.713T20 5zm12 4q-.425 0-.712-.288T15 8t.288-.712T16 7h4q.425 0 .713.288T21 8t-.288.713T20 9zm0 4q-.425 0-.712-.288T15 12t.288-.712T16 11h4q.425 0 .713.288T21 12t-.288.713T20 13zm0 4q-.425 0-.712-.288T15 16t.288-.712T16 15h4q.425 0 .713.288T21 16t-.288.713T20 17zM4 21q-.425 0-.712-.288T3 20t.288-.712T4 19h16q.425 0 .713.288T21 20t-.288.713T20 21z");
|
|
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="weugfgb"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-left-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.weugfgb {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M3
|
|
13
|
+
d: path("M3 17V7h10v10zM3 5V3h18v2zm12 4V7h6v2zm0 4v-2h6v2zm0 4v-2h6v2zM3 21v-2h18v2z");
|
|
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="weugfgb"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-left" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.weugfgb {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M3
|
|
13
|
+
d: path("M3 17V7h10v10zM3 5V3h18v2zm12 4V7h6v2zm0 4v-2h6v2zm0 4v-2h6v2zM3 21v-2h18v2z");
|
|
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="cklr-bcz"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-right-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.cklr-bcz {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12 17q-.425 0-.712-.288T11 16V8q0-.425.288-.712T12 7h8q.425 0 .713.288T21 8v8q0 .425-.288.713T20 17zm1-2h6V9h-6zm-9 6q-.425 0-.712-.288T3 20t.288-.712T4 19h16q.425 0 .713.288T21 20t-.288.713T20 21zm0-4q-.425 0-.712-.288T3 16t.288-.712T4 15h4q.425 0 .713.288T9 16t-.288.713T8 17zm0-4q-.425 0-.712-.288T3 12t.288-.712T4 11h4q.425 0 .713.288T9 12t-.288.713T8 13zm0-4q-.425 0-.712-.288T3 8t.288-.712T4 7h4q.425 0 .713.288T9 8t-.288.713T8 9zm0-4q-.425 0-.712-.288T3 4t.288-.712T4 3h16q.425 0 .713.288T21 4t-.288.713T20 5zm12 7");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="xyndqgv"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-right-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xyndqgv {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11 17V7h10v10zm2-2h6V9h-6zM3 21v-2h18v2zm0-4v-2h6v2zm0-4v-2h6v2zm0-4V7h6v2zm0-4V3h18v2zm13 7");
|
|
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="hipr87mp"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-right-rounded" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.hipr87mp {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M12 17q-.425 0-.712-.288T11 16V8q0-.425.288-.712T12 7h8q.425 0 .713.288T21 8v8q0 .425-.288.713T20
|
|
13
|
+
d: path("M12 17q-.425 0-.712-.288T11 16V8q0-.425.288-.712T12 7h8q.425 0 .713.288T21 8v8q0 .425-.288.713T20 17zm-8 4q-.425 0-.712-.288T3 20t.288-.712T4 19h16q.425 0 .713.288T21 20t-.288.713T20 21zm0-4q-.425 0-.712-.288T3 16t.288-.712T4 15h4q.425 0 .713.288T9 16t-.288.713T8 17zm0-4q-.425 0-.712-.288T3 12t.288-.712T4 11h4q.425 0 .713.288T9 12t-.288.713T8 13zm0-4q-.425 0-.712-.288T3 8t.288-.712T4 7h4q.425 0 .713.288T9 8t-.288.713T8 9zm0-4q-.425 0-.712-.288T3 4t.288-.712T4 3h16q.425 0 .713.288T21 4t-.288.713T20 5z");
|
|
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="o5j3c_s"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-right-sharp" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.o5j3c_s {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M11
|
|
13
|
+
d: path("M11 17V7h10v10zm-8 4v-2h18v2zm0-4v-2h6v2zm0-4v-2h6v2zm0-4V7h6v2zm0-4V3h18v2z");
|
|
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="o5j3c_s"/>`;
|
|
8
8
|
</script>
|
|
9
9
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-image-right" /></template>
|
|
10
10
|
<style>
|
|
11
|
-
.
|
|
11
|
+
.o5j3c_s {
|
|
12
12
|
fill: currentColor;
|
|
13
|
-
d: path("M11
|
|
13
|
+
d: path("M11 17V7h10v10zm-8 4v-2h18v2zm0-4v-2h6v2zm0-4v-2h6v2zm0-4V7h6v2zm0-4V3h18v2z");
|
|
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="gm0b6pbu"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.gm0b6pbu {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12.288 6.713Q12 6.425 12 6V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3h11q.425 0 .713.287T20 4v10q0 .65-.35 1.15t-.925.725L16.85 14H18v-2h-3.15l-2-2H18V5h-1v3q0 .425-.288.713T16 9t-.712-.288T15 8V5h-1v1q0 .425-.288.713T13 7t-.712-.288M11 22q-.825 0-1.412-.587T9 20v-4H6q-.825 0-1.412-.587T4 14V6.85L2.075 4.925q-.3-.3-.288-.712T2.1 3.5t.713-.3t.712.3l16.975 17q.3.3.3.7t-.3.7t-.712.3t-.713-.3L15 17.85V20q0 .825-.587 1.413T13 22zm-5-8h5.15l-2-2H6zm0-4h1.15L6 8.85zm5.15 4H6zm5.7 0H18z");
|
|
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="d6o_m1bp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.d6o_m1bp {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M20 3v12.875h-1.275L16.85 14H18v-2h-3.15l-2-2H18V5h-1v4h-2V5h-1v2h-2V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3zm-.225 19.625L15 17.85V22H9v-6H4V6.85L1.375 4.225L2.8 2.8l18.4 18.4zM6 14h5.15l-2-2H6zm0-4h1.15L6 8.85zm5.15 4H6zm5.7 0H18z");
|
|
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="h3j1or4q"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.h3j1or4q {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M20 3v11q0 .65-.35 1.15t-.925.725L16.85 14H18v-2h-3.15l-2-2H18V5h-1v4h-2V5h-1v2h-2V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3zm-.225 19.625L15 17.85V20q0 .825-.587 1.413T13 22h-2q-.825 0-1.412-.587T9 20v-4H6q-.825 0-1.412-.587T4 14V6.85L1.375 4.225L2.8 2.8l18.4 18.4zM6 14h5.15l-2-2H6zm0-4h1.15L6 8.85zm5.15 4H6zm5.7 0H18z");
|
|
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="jc3sp-vs"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.jc3sp-vs {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M12.288 6.713Q12 6.425 12 6V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3h11q.425 0 .713.287T20 4v10q0 .65-.35 1.15t-.925.725L12.85 10H18V5h-1v3q0 .425-.288.713T16 9t-.712-.288T15 8V5h-1v1q0 .425-.288.713T13 7t-.712-.288M11 22q-.825 0-1.412-.587T9 20v-4H6q-.825 0-1.412-.587T4 14V6.85L2.075 4.925q-.3-.3-.288-.712T2.1 3.5t.713-.3t.712.3l16.975 17q.3.3.3.7t-.3.7t-.712.3t-.713-.3L15 17.85V20q0 .825-.587 1.413T13 22zM6 10h1.15L6 8.85z");
|
|
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="wdyqzuo"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wdyqzuo {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M20 3v12.875h-1.275L12.85 10H18V5h-1v4h-2V5h-1v2h-2V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3zm-.225 19.625L15 17.85V22H9v-6H4V6.85L1.375 4.225L2.8 2.8l18.4 18.4zM6 10h1.15L6 8.85z");
|
|
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="y6ydydbu"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:format-paint-off" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.y6ydydbu {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M20 3v11q0 .65-.35 1.15t-.925.725L12.85 10H18V5h-1v4h-2V5h-1v2h-2V5H7.85l-1.6-1.6q.4-.2.838-.3T8 3zm-.225 19.625L15 17.85V20q0 .825-.587 1.413T13 22h-2q-.825 0-1.412-.587T9 20v-4H6q-.825 0-1.412-.587T4 14V6.85L1.375 4.225L2.8 2.8l18.4 18.4zM6 10h1.15L6 8.85z");
|
|
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="klw528js"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:graphic-eq-off-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.klw528js {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.288 21.713Q11 21.425 11 21v-7.15l-2-2V17q0 .425-.288.713T8 18t-.712-.288T7 17V9.85L2.075 4.925q-.3-.3-.3-.712t.3-.713t.713-.3t.712.3l17 17q.3.3.3.7t-.3.7t-.712.3t-.713-.3L13 15.85V21q0 .425-.288.713T12 22t-.712-.288m-8-8Q3 13.425 3 13v-2q0-.425.288-.712T4 10t.713.288T5 11v2q0 .425-.288.713T4 14t-.712-.288M12 8.75q-.375 0-.687-.262T11 7.725V3q0-.425.288-.712T12 2t.713.288T13 3v4.75q0 .5-.312.75T12 8.75m4 4q-.375 0-.687-.262T15 11.725V7q0-.425.288-.712T16 6t.713.288T17 7v4.75q0 .5-.312.75t-.688.25m3.288.963Q19 13.425 19 13v-2q0-.425.288-.712T20 10t.713.288T21 11v2q0 .425-.288.713T20 14t-.712-.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="ef5izeb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:graphic-eq-off" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ef5izeb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.775 22.625L13 15.85V22h-2v-8.15l-2-2V18H7V9.85L1.375 4.225L2.8 2.8l18.4 18.4zM3 14v-4h2v4zm10-3.85l-2-2V2h2zm4 4l-2-2V6h2zm2-.15v-4h2v4z");
|
|
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="wrr0jwyw"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:sql-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.wrr0jwyw {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M7 9q.425 0 .713.288T8 10v.5q0 .2-.15.35T7.5 11H7q-.2 0-.35-.15t-.15-.35h-2v1H7q.425 0 .713.288T8 12.5V14q0 .425-.288.713T7 15H4q-.425 0-.712-.288T3 14v-.5q0-.2.15-.35T3.5 13H4q.2 0 .35.15t.15.35h2v-1H4q-.425 0-.712-.288T3 11.5V10q0-.425.288-.712T4 9zm7 0q.425 0 .713.288T15 10v4q0 .425-.288.713T14 15h-.75v.75q0 .325-.213.538t-.537.212t-.537-.213t-.213-.537V15H11q-.425 0-.712-.288T10 14v-4q0-.425.288-.712T11 9zm-.5 1.5h-2v3h2zm4.788-1.287q.212.212.212.537v3.75h1.75q.325 0 .538.213t.212.537t-.213.538t-.537.212H18q-.425 0-.712-.288T17 14V9.75q0-.325.213-.537T17.75 9t.538.213");
|
|
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="ttcey-b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:sql-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ttcey-b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M3 15v-2h1.5v.5h2v-1H3V9h5v2H6.5v-.5h-2v1H8V15zm8.75 1.5V15H10V9h5v6h-1.75v1.5zm-.25-3h2v-3h-2zM17 15V9h1.5v4.5H21V15z");
|
|
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="x0mkzccn"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:sql" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x0mkzccn {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 15q-.425 0-.712-.288T3 14v-1h1.5v.5h2v-1H4q-.425 0-.712-.288T3 11.5V10q0-.425.288-.712T4 9h3q.425 0 .713.288T8 10v1H6.5v-.5h-2v1H7q.425 0 .713.288T8 12.5V14q0 .425-.288.713T7 15zm7.75 1.5V15H11q-.425 0-.712-.288T10 14v-4q0-.425.288-.712T11 9h3q.425 0 .713.288T15 10v4q0 .425-.288.713T14 15h-.75v1.5zm-.25-3h2v-3h-2zM17 9h1.5v4.5H21V15h-4z");
|
|
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="lq0s671g"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.lq0s671g {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L5.3 16.7q-.275-.275-.3-.687t.275-.713l.075-.075q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v9.5q0 .5-.4.8t-.875.175l-1.15-.325l2.55 2.55q.125.125.313.213t.387.087H16q.825 0 1.413-.587T18 18v-4q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zm1.888-17.713Q14 4.575 14 5v9q0 .425-.288.713T13 15t-.712-.288T12 14V5q0-.425.288-.712T13 4t.713.288m3 7Q17 11.575 17 12v2q0 .425-.288.713T16 15t-.712-.288T15 14v-2q0-.425.288-.712T16 11t.713.288M4.1 5.5h2.15q.325 0 .538.213T7 6.25t-.213.538T6.25 7H3q-.425 0-.712-.288T2 6V2.75q0-.325.213-.537T2.75 2t.538.213t.212.537v1.275q1.8-1.475 3.975-2.25T12 1q3.2 0 5.738 1.275t3.712 3.4q.15.275.038.575t-.388.425t-.562.025t-.463-.375q-1.1-1.8-3.225-2.812T12 2.5q-2.2 0-4.225.775T4.1 5.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="o2ts5hae"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.o2ts5hae {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2 7V2h1.5v2.025q1.8-1.475 3.975-2.25T12 1q3.65 0 6.45 1.675T22 7h-1.575q-.95-2.1-3.213-3.3T12 2.5q-2.2 0-4.225.775T4.1 5.5H7V7zm8.575 15L4.6 16l1.575-1.625l2.825.8V6h2v11.825l-2.425-.675l2.85 2.85H18v-7h2v9zM12 15V4h2v11zm3 0v-4h2v4zm-.475 2");
|
|
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="oxsje1bt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.oxsje1bt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L4.6 16l.75-.775q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v10.825l-2.425-.675l2.55 2.55q.125.125.313.213t.387.087H16q.825 0 1.413-.587T18 18v-4q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM12 15V5q0-.425.288-.712T13 4t.713.288T14 5v10zm3 0v-3q0-.425.288-.712T16 11t.713.288T17 12v3zM2 7V2h1.5v2.025q1.8-1.475 3.975-2.25T12 1q3.65 0 6.45 1.675T22 7h-1.575q-.95-2.1-3.213-3.3T12 2.5q-2.2 0-4.225.775T4.1 5.5H7V7zm12.5 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="x06tu35a"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x06tu35a {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L5.3 16.7q-.275-.275-.3-.687t.275-.713l.075-.075q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v7h1V5q0-.425.288-.712T13 4t.713.288T14 5v9h1v-2q0-.425.288-.712T16 11t.713.288T17 12v2h1q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM4.1 5.5h2.15q.325 0 .538.213T7 6.25t-.213.538T6.25 7H3q-.425 0-.712-.288T2 6V2.75q0-.325.213-.537T2.75 2t.538.213t.212.537v1.275q1.8-1.475 3.975-2.25T12 1q3.2 0 5.738 1.275t3.712 3.4q.15.275.038.575t-.388.425t-.562.025t-.463-.375q-1.1-1.8-3.225-2.812T12 2.5q-2.2 0-4.225.775T4.1 5.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="fy-7zim"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.fy-7zim {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M2 7V2h1.5v2.025q1.8-1.475 3.975-2.25T12 1q3.65 0 6.45 1.675T22 7h-1.575q-.95-2.1-3.213-3.3T12 2.5q-2.2 0-4.225.775T4.1 5.5H7V7zm8.575 15L4.6 16l1.575-1.625l2.825.8V6h2v8h1V4h2v10h1v-3h2v3h1v-1h2v9z");
|
|
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="kv-p4kbr"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-left-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.kv-p4kbr {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L4.6 16l.75-.775q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v7h1V5q0-.425.288-.712T13 4t.713.288T14 5v9h1v-2q0-.425.288-.712T16 11t.713.288T17 12v2h1q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM2 7V2h1.5v2.025q1.8-1.475 3.975-2.25T12 1q3.65 0 6.45 1.675T22 7h-1.575q-.95-2.1-3.213-3.3T12 2.5q-2.2 0-4.225.775T4.1 5.5H7V7z");
|
|
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="x3x_rkhb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-right-2-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.x3x_rkhb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L5.3 16.7q-.275-.275-.3-.687t.275-.713l.075-.075q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v9.5q0 .5-.4.8t-.875.175l-1.15-.325l2.55 2.55q.125.125.313.213t.387.087H16q.825 0 1.413-.587T18 18v-4q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zm1.888-17.713Q14 4.575 14 5v9q0 .425-.288.713T13 15t-.712-.288T12 14V5q0-.425.288-.712T13 4t.713.288m3 7Q17 11.575 17 12v2q0 .425-.288.713T16 15t-.712-.288T15 14v-2q0-.425.288-.712T16 11t.713.288M17.75 7q-.325 0-.537-.213T17 6.25t.213-.537t.537-.213h2.15q-1.65-1.45-3.675-2.225T12 2.5q-2.725 0-4.85 1.013T3.925 6.325q-.175.275-.462.375T2.9 6.675t-.387-.425t.037-.575q1.175-2.125 3.713-3.4T12 1q2.35 0 4.525.775t3.975 2.25V2.75q0-.325.213-.537T21.25 2t.538.213t.212.537V6q0 .425-.288.713T21 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="sfe_zobt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-right-2-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.sfe_zobt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M10.575 22L4.6 16l1.575-1.625l2.825.8V6h2v11.825l-2.425-.675l2.85 2.85H18v-7h2v9zM12 15V4h2v11zm3 0v-4h2v4zM2 7q.75-2.65 3.55-4.325T12 1q2.35 0 4.525.775t3.975 2.25V2H22v5h-5V5.5h2.9q-1.65-1.45-3.675-2.225T12 2.5q-2.95 0-5.213 1.2T3.575 7zm12.525 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="m128m2bk"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-right-2-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.m128m2bk {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L4.6 16l.75-.775q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v10.825l-2.425-.675l2.55 2.55q.125.125.313.213t.387.087H16q.825 0 1.413-.587T18 18v-4q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM12 15V5q0-.425.288-.712T13 4t.713.288T14 5v10zm3 0v-3q0-.425.288-.712T16 11t.713.288T17 12v3zM2 7q.75-2.65 3.55-4.325T12 1q2.35 0 4.525.775t3.975 2.25V2H22v5h-5V5.5h2.9q-1.65-1.45-3.675-2.225T12 2.5q-2.95 0-5.213 1.2T3.575 7zm12.5 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="ptdz70bb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-right-2-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ptdz70bb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L5.3 16.7q-.275-.275-.3-.687t.275-.713l.075-.075q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v7h1v-3q0-.425.288-.712T13 10t.713.288T14 11v3h1v-2q0-.425.288-.712T16 11t.713.288T17 12v2h1q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM17.75 7q-.325 0-.537-.213T17 6.25t.213-.537t.537-.213h2.15q-1.65-1.45-3.675-2.225T12 2.5q-2.725 0-4.85 1.013T3.925 6.325q-.175.275-.462.375T2.9 6.675t-.387-.425t.037-.575q1.175-2.125 3.713-3.4T12 1q2.35 0 4.525.775t3.975 2.25V2.75q0-.325.213-.537T21.25 2t.538.213t.212.537V6q0 .425-.288.713T21 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="v4g68qwb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:swipe-right-2" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.v4g68qwb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M11.825 22q-.6 0-1.15-.225t-.975-.65L4.6 16l.75-.775q.4-.4.938-.537t1.062.012l1.65.475V7q0-.425.288-.712T10 6t.713.288T11 7v7h1v-3q0-.425.288-.712T13 10t.713.288T14 11v3h1v-2q0-.425.288-.712T16 11t.713.288T17 12v2h1q0-.425.288-.712T19 13t.713.288T20 14v4q0 1.65-1.175 2.825T16 22zM2 7q.75-2.65 3.55-4.325T12 1q2.35 0 4.525.775t3.975 2.25V2H22v5h-5V5.5h2.9q-1.65-1.45-3.675-2.225T12 2.5q-2.95 0-5.213 1.2T3.575 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="zpzl15ue"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.zpzl15ue {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M21 18q-.375 0-.687-.262T20 16.975V6H9.025q-.5 0-.75-.312T8.025 5t.25-.687t.75-.313H20q.825 0 1.413.588T22 6v11q0 .5-.312.75T21 18m-1.25 4.575L17.15 20H4q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4l2 2H4v12h11.15L1.35 4.2q-.3-.3-.3-.713t.3-.712t.713-.3t.712.3l18.4 18.4q.3.3.3.7t-.3.7t-.712.3t-.713-.3M17 17H6q-.425 0-.712-.288T5 16t.288-.712T6 15h9zm-4-4H6q-.425 0-.712-.288T5 12t.288-.712T6 11h5zM9 9H6q-.425 0-.712-.288T5 8t.288-.712T6 7h1zm9 4q.425 0 .713-.288T19 12t-.288-.712T18 11h-1.725q-.5 0-.75.313t-.25.687t.25.688t.75.312zm-4-4q.425 0 .713-.288T15 8t-.288-.712T14 7h-1.725q-.5 0-.75.313t-.25.687t.25.688t.75.312z");
|
|
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="z3ukrzj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.z3ukrzj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M20 17.15V6H8.85l-2-2H22v15.15zm.45 6.15l-3.3-3.3H2V4h2l2 2H4v12h11.15L.65 3.5l1.425-1.425l19.8 19.8zM5 17v-2h10l2 2zm0-4v-2h6l2 2zm0-4V7h2l2 2zm10.85 4H19v-2h-5.15zm-4-4H15V7H9.85z");
|
|
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="nvl7v8bg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.nvl7v8bg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 17v-2h10l2 2zm0-4v-2h6l2 2zm0-4V7h2l2 2zm10.85 4H19v-2h-5.15zm-4-4H15V7H9.85zm9.925 9.925L20 17.15V6H8.85l-2-2H20q.825 0 1.413.588T22 6v12q0 .25-.05.488t-.175.437M20.45 23.3l-3.3-3.3H4q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4l2 2H4v12h11.15L.65 3.5l1.425-1.425l19.8 19.8z");
|
|
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="v4x1urbw"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.v4x1urbw {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4l2 2H3.15l-1.8-1.8q-.3-.3-.3-.712t.3-.713t.713-.3t.712.3l18.4 18.4q.3.3.3.7t-.3.7t-.712.3t-.713-.3L17.15 20zm11.85-7H18q.425 0 .713-.288T19 12t-.288-.712T18 11h-4.15l-2-2H14q.425 0 .713-.288T15 8t-.288-.712T14 7H9.85l-1.3-1.3q-.475-.475-.213-1.088T9.276 4H20q.825 0 1.413.588T22 6v10.725q0 .675-.612.938T20.3 17.45zM5.288 16.713Q5.575 17 6 17h8.15l-2-2H6q-.425 0-.712.288T5 16t.288.713m0-4Q5.575 13 6 13h4.15l-2-2H6q-.425 0-.712.288T5 12t.288.713m0-5.425Q5.575 7 6 7H4.15l2 2H6q-.425 0-.712-.288T5 8t.288-.712");
|
|
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="pq_bt8b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.pq_bt8b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m20.45 23.3l-3.3-3.3H2V4h2l2 2H3.15L.65 3.5l1.425-1.425l19.8 19.8zM5 17h9.15l-2-2H5zm0-4h5.15l-2-2H5zm0-4h1.15l-2-2H5zm1.85-5H22v15.15L15.85 13H19v-2h-5.15l-2-2H15V7H9.85z");
|
|
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="qerhysbj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:text-ad-off" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.qerhysbj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M5 17h9.15l-2-2H5zm0-4h5.15l-2-2H5zm0-4h1.15l-2-2H5zm15.45 14.3l-3.3-3.3H4q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4l2 2H3.15L.65 3.5l1.425-1.425l19.8 19.8zm1.325-4.375L15.85 13H19v-2h-5.15l-2-2H15V7H9.85l-3-3H20q.825 0 1.413.588T22 6v12q0 .25-.05.488t-.175.437");
|
|
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": 15159,
|
|
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": 1771997986
|
|
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.19",
|
|
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",
|
|
@@ -24470,6 +24470,14 @@
|
|
|
24470
24470
|
"types": "./types/dd0bq22g.d.ts",
|
|
24471
24471
|
"default": "./components/f/format-image-left.vue"
|
|
24472
24472
|
},
|
|
24473
|
+
"./format-image-left-outline": {
|
|
24474
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24475
|
+
"default": "./components/f/format-image-left-outline.vue"
|
|
24476
|
+
},
|
|
24477
|
+
"./format-image-left-outline-rounded": {
|
|
24478
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24479
|
+
"default": "./components/f/format-image-left-outline-rounded.vue"
|
|
24480
|
+
},
|
|
24473
24481
|
"./format-image-left-rounded": {
|
|
24474
24482
|
"types": "./types/dd0bq22g.d.ts",
|
|
24475
24483
|
"default": "./components/f/format-image-left-rounded.vue"
|
|
@@ -24478,6 +24486,14 @@
|
|
|
24478
24486
|
"types": "./types/dd0bq22g.d.ts",
|
|
24479
24487
|
"default": "./components/f/format-image-right.vue"
|
|
24480
24488
|
},
|
|
24489
|
+
"./format-image-right-outline": {
|
|
24490
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24491
|
+
"default": "./components/f/format-image-right-outline.vue"
|
|
24492
|
+
},
|
|
24493
|
+
"./format-image-right-outline-rounded": {
|
|
24494
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24495
|
+
"default": "./components/f/format-image-right-outline-rounded.vue"
|
|
24496
|
+
},
|
|
24481
24497
|
"./format-image-right-rounded": {
|
|
24482
24498
|
"types": "./types/dd0bq22g.d.ts",
|
|
24483
24499
|
"default": "./components/f/format-image-right-rounded.vue"
|
|
@@ -24634,6 +24650,30 @@
|
|
|
24634
24650
|
"types": "./types/dd0bq22g.d.ts",
|
|
24635
24651
|
"default": "./components/f/format-paint.vue"
|
|
24636
24652
|
},
|
|
24653
|
+
"./format-paint-off": {
|
|
24654
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24655
|
+
"default": "./components/f/format-paint-off.vue"
|
|
24656
|
+
},
|
|
24657
|
+
"./format-paint-off-outline": {
|
|
24658
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24659
|
+
"default": "./components/f/format-paint-off-outline.vue"
|
|
24660
|
+
},
|
|
24661
|
+
"./format-paint-off-outline-rounded": {
|
|
24662
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24663
|
+
"default": "./components/f/format-paint-off-outline-rounded.vue"
|
|
24664
|
+
},
|
|
24665
|
+
"./format-paint-off-outline-sharp": {
|
|
24666
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24667
|
+
"default": "./components/f/format-paint-off-outline-sharp.vue"
|
|
24668
|
+
},
|
|
24669
|
+
"./format-paint-off-rounded": {
|
|
24670
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24671
|
+
"default": "./components/f/format-paint-off-rounded.vue"
|
|
24672
|
+
},
|
|
24673
|
+
"./format-paint-off-sharp": {
|
|
24674
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24675
|
+
"default": "./components/f/format-paint-off-sharp.vue"
|
|
24676
|
+
},
|
|
24637
24677
|
"./format-paint-outline": {
|
|
24638
24678
|
"types": "./types/dd0bq22g.d.ts",
|
|
24639
24679
|
"default": "./components/f/format-paint-outline.vue"
|
|
@@ -26498,6 +26538,14 @@
|
|
|
26498
26538
|
"types": "./types/dd0bq22g.d.ts",
|
|
26499
26539
|
"default": "./components/g/graphic-eq.vue"
|
|
26500
26540
|
},
|
|
26541
|
+
"./graphic-eq-off": {
|
|
26542
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26543
|
+
"default": "./components/g/graphic-eq-off.vue"
|
|
26544
|
+
},
|
|
26545
|
+
"./graphic-eq-off-rounded": {
|
|
26546
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
26547
|
+
"default": "./components/g/graphic-eq-off-rounded.vue"
|
|
26548
|
+
},
|
|
26501
26549
|
"./graphic-eq-rounded": {
|
|
26502
26550
|
"types": "./types/dd0bq22g.d.ts",
|
|
26503
26551
|
"default": "./components/g/graphic-eq-rounded.vue"
|
|
@@ -53398,6 +53446,18 @@
|
|
|
53398
53446
|
"types": "./types/dd0bq22g.d.ts",
|
|
53399
53447
|
"default": "./components/s/sprint-rounded.vue"
|
|
53400
53448
|
},
|
|
53449
|
+
"./sql": {
|
|
53450
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
53451
|
+
"default": "./components/s/sql.vue"
|
|
53452
|
+
},
|
|
53453
|
+
"./sql-rounded": {
|
|
53454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
53455
|
+
"default": "./components/s/sql-rounded.vue"
|
|
53456
|
+
},
|
|
53457
|
+
"./sql-sharp": {
|
|
53458
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
53459
|
+
"default": "./components/s/sql-sharp.vue"
|
|
53460
|
+
},
|
|
53401
53461
|
"./square": {
|
|
53402
53462
|
"types": "./types/dd0bq22g.d.ts",
|
|
53403
53463
|
"default": "./components/s/square.vue"
|
|
@@ -55142,6 +55202,30 @@
|
|
|
55142
55202
|
"types": "./types/dd0bq22g.d.ts",
|
|
55143
55203
|
"default": "./components/s/swipe-left.vue"
|
|
55144
55204
|
},
|
|
55205
|
+
"./swipe-left-2": {
|
|
55206
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55207
|
+
"default": "./components/s/swipe-left-2.vue"
|
|
55208
|
+
},
|
|
55209
|
+
"./swipe-left-2-outline": {
|
|
55210
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55211
|
+
"default": "./components/s/swipe-left-2-outline.vue"
|
|
55212
|
+
},
|
|
55213
|
+
"./swipe-left-2-outline-rounded": {
|
|
55214
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55215
|
+
"default": "./components/s/swipe-left-2-outline-rounded.vue"
|
|
55216
|
+
},
|
|
55217
|
+
"./swipe-left-2-outline-sharp": {
|
|
55218
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55219
|
+
"default": "./components/s/swipe-left-2-outline-sharp.vue"
|
|
55220
|
+
},
|
|
55221
|
+
"./swipe-left-2-rounded": {
|
|
55222
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55223
|
+
"default": "./components/s/swipe-left-2-rounded.vue"
|
|
55224
|
+
},
|
|
55225
|
+
"./swipe-left-2-sharp": {
|
|
55226
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55227
|
+
"default": "./components/s/swipe-left-2-sharp.vue"
|
|
55228
|
+
},
|
|
55145
55229
|
"./swipe-left-alt": {
|
|
55146
55230
|
"types": "./types/dd0bq22g.d.ts",
|
|
55147
55231
|
"default": "./components/s/swipe-left-alt.vue"
|
|
@@ -55194,6 +55278,22 @@
|
|
|
55194
55278
|
"types": "./types/dd0bq22g.d.ts",
|
|
55195
55279
|
"default": "./components/s/swipe-right.vue"
|
|
55196
55280
|
},
|
|
55281
|
+
"./swipe-right-2-outline": {
|
|
55282
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55283
|
+
"default": "./components/s/swipe-right-2-outline.vue"
|
|
55284
|
+
},
|
|
55285
|
+
"./swipe-right-2-outline-rounded": {
|
|
55286
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55287
|
+
"default": "./components/s/swipe-right-2-outline-rounded.vue"
|
|
55288
|
+
},
|
|
55289
|
+
"./swipe-right-2-outline-sharp": {
|
|
55290
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55291
|
+
"default": "./components/s/swipe-right-2-outline-sharp.vue"
|
|
55292
|
+
},
|
|
55293
|
+
"./swipe-right-2-rounded": {
|
|
55294
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
55295
|
+
"default": "./components/s/swipe-right-2-rounded.vue"
|
|
55296
|
+
},
|
|
55197
55297
|
"./swipe-right-alt": {
|
|
55198
55298
|
"types": "./types/dd0bq22g.d.ts",
|
|
55199
55299
|
"default": "./components/s/swipe-right-alt.vue"
|
|
@@ -56738,6 +56838,30 @@
|
|
|
56738
56838
|
"types": "./types/dd0bq22g.d.ts",
|
|
56739
56839
|
"default": "./components/t/text-ad.vue"
|
|
56740
56840
|
},
|
|
56841
|
+
"./text-ad-off": {
|
|
56842
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56843
|
+
"default": "./components/t/text-ad-off.vue"
|
|
56844
|
+
},
|
|
56845
|
+
"./text-ad-off-outline": {
|
|
56846
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56847
|
+
"default": "./components/t/text-ad-off-outline.vue"
|
|
56848
|
+
},
|
|
56849
|
+
"./text-ad-off-outline-rounded": {
|
|
56850
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56851
|
+
"default": "./components/t/text-ad-off-outline-rounded.vue"
|
|
56852
|
+
},
|
|
56853
|
+
"./text-ad-off-outline-sharp": {
|
|
56854
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56855
|
+
"default": "./components/t/text-ad-off-outline-sharp.vue"
|
|
56856
|
+
},
|
|
56857
|
+
"./text-ad-off-rounded": {
|
|
56858
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56859
|
+
"default": "./components/t/text-ad-off-rounded.vue"
|
|
56860
|
+
},
|
|
56861
|
+
"./text-ad-off-sharp": {
|
|
56862
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
56863
|
+
"default": "./components/t/text-ad-off-sharp.vue"
|
|
56864
|
+
},
|
|
56741
56865
|
"./text-ad-outline": {
|
|
56742
56866
|
"types": "./types/dd0bq22g.d.ts",
|
|
56743
56867
|
"default": "./components/t/text-ad-outline.vue"
|
|
@@ -71746,6 +71870,10 @@
|
|
|
71746
71870
|
"types": "./types/dd0bq22g.d.ts",
|
|
71747
71871
|
"default": "./components/s/swipe-left-alt-sharp.vue"
|
|
71748
71872
|
},
|
|
71873
|
+
"./swipe-right-2": {
|
|
71874
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
71875
|
+
"default": "./components/s/swipe-right-2.vue"
|
|
71876
|
+
},
|
|
71749
71877
|
"./swipe-right-alt-outline-sharp": {
|
|
71750
71878
|
"types": "./types/dd0bq22g.d.ts",
|
|
71751
71879
|
"default": "./components/s/swipe-right-alt-outline-sharp.vue"
|