@iconify-vue/material-symbols 1.0.25 → 1.0.27

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.
Files changed (67) hide show
  1. package/components/b/battery-charging-20-2-rounded.vue +16 -0
  2. package/components/b/battery-charging-20-2-sharp.vue +16 -0
  3. package/components/b/battery-charging-20-2.vue +16 -0
  4. package/components/b/battery-charging-30-2-rounded.vue +16 -0
  5. package/components/b/battery-charging-30-2-sharp.vue +16 -0
  6. package/components/b/battery-charging-30-2.vue +16 -0
  7. package/components/b/battery-charging-50-2-rounded.vue +16 -0
  8. package/components/b/battery-charging-50-2-sharp.vue +16 -0
  9. package/components/b/battery-charging-50-2.vue +16 -0
  10. package/components/b/battery-charging-60-2-rounded.vue +16 -0
  11. package/components/b/battery-charging-60-2-sharp.vue +16 -0
  12. package/components/b/battery-charging-60-2.vue +16 -0
  13. package/components/b/battery-charging-80-2-rounded.vue +16 -0
  14. package/components/b/battery-charging-80-2-sharp.vue +16 -0
  15. package/components/b/battery-charging-80-2.vue +16 -0
  16. package/components/b/battery-charging-full-2-outline-rounded.vue +16 -0
  17. package/components/b/battery-charging-full-2-outline-sharp.vue +16 -0
  18. package/components/b/battery-charging-full-2-outline.vue +16 -0
  19. package/components/b/battery-charging-full-2-rounded.vue +16 -0
  20. package/components/b/battery-charging-full-2-sharp.vue +16 -0
  21. package/components/b/battery-charging-full-2.vue +16 -0
  22. package/components/c/car-fan-recirculate-2-outline-rounded.vue +16 -0
  23. package/components/c/car-fan-recirculate-2-outline-sharp.vue +16 -0
  24. package/components/c/car-fan-recirculate-2-outline.vue +16 -0
  25. package/components/c/car-fan-recirculate-2-rounded.vue +16 -0
  26. package/components/c/car-fan-recirculate-2-sharp.vue +16 -0
  27. package/components/c/car-fan-recirculate-2.vue +16 -0
  28. package/components/c/car-fan-recirculate-outline-rounded.vue +16 -0
  29. package/components/c/car-fan-recirculate-outline-sharp.vue +16 -0
  30. package/components/c/car-fan-recirculate-outline.vue +16 -0
  31. package/components/c/car-fan-recirculate-rounded.vue +3 -3
  32. package/components/c/car-fan-recirculate-sharp.vue +16 -0
  33. package/components/c/car-fan-recirculate.vue +3 -3
  34. package/components/l/list-arrow-rounded.vue +16 -0
  35. package/components/l/list-arrow.vue +16 -0
  36. package/components/s/speed-2-outline-rounded.vue +16 -0
  37. package/components/s/speed-2-outline-sharp.vue +16 -0
  38. package/components/s/speed-2-outline.vue +16 -0
  39. package/components/s/speed-2-rounded.vue +16 -0
  40. package/components/s/speed-2-sharp.vue +16 -0
  41. package/components/s/speed-2.vue +16 -0
  42. package/components/s/speed-3-outline-rounded.vue +16 -0
  43. package/components/s/speed-3-outline-sharp.vue +16 -0
  44. package/components/s/speed-3-outline.vue +16 -0
  45. package/components/s/speed-3-rounded.vue +16 -0
  46. package/components/s/speed-3-sharp.vue +16 -0
  47. package/components/s/speed-3.vue +16 -0
  48. package/components/s/speed-4-outline-rounded.vue +16 -0
  49. package/components/s/speed-4-outline-sharp.vue +16 -0
  50. package/components/s/speed-4-outline.vue +16 -0
  51. package/components/s/speed-4-rounded.vue +16 -0
  52. package/components/s/speed-4-sharp.vue +16 -0
  53. package/components/s/speed-4.vue +16 -0
  54. package/components/t/touch-double-2-outline-rounded.vue +16 -0
  55. package/components/t/touch-double-2-outline-sharp.vue +16 -0
  56. package/components/t/touch-double-2-outline.vue +16 -0
  57. package/components/t/touch-double-2-rounded.vue +16 -0
  58. package/components/t/touch-double-2-sharp.vue +16 -0
  59. package/components/t/touch-double-2.vue +16 -0
  60. package/components/w/wifi-device-outline-rounded.vue +16 -0
  61. package/components/w/wifi-device-outline-sharp.vue +16 -0
  62. package/components/w/wifi-device-outline.vue +16 -0
  63. package/components/w/wifi-device-rounded.vue +16 -0
  64. package/components/w/wifi-device-sharp.vue +16 -0
  65. package/components/w/wifi-device.vue +16 -0
  66. package/iconify.json +2 -2
  67. package/package.json +253 -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="b7xop0b"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:list-arrow" /></template>
10
+ <style>
11
+ .b7xop0b {
12
+ fill: currentColor;
13
+ d: path("m6 20l-4-4l1.4-1.4L5 16.15V5h2v11.15l1.6-1.55L10 16zm6-1v-2h10v2zm0-6v-2h10v2zm0-6V5h10v2z");
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="wj39rjbt"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2-outline-rounded" /></template>
10
+ <style>
11
+ .wj39rjbt {
12
+ fill: currentColor;
13
+ d: path("M13.4 15.425q.65-.65.6-1.513t-.75-1.387q-1.5-1.175-3.05-2.175t-3.125-2q-.35-.225-.65.075t-.075.65q1 1.575 2 3.138t2.1 3.112q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q0-.875.175-1.725t.525-1.65q.15-.375.55-.512t.75.062t.487.588t-.012.787q-.225.6-.35 1.225T3.975 13.9q0 1.1.287 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.675 0-1.325.125t-1.275.35q-.4.125-.775-.012T8.05 5.95T8 5.187t.525-.537q.825-.325 1.7-.488T12 4q2.075 0 3.888.788t3.175 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
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="iy_j1hnc"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2-outline-sharp" /></template>
10
+ <style>
11
+ .iy_j1hnc {
12
+ fill: currentColor;
13
+ d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20zm8.075-5.95");
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="igttgrdl"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2-outline" /></template>
10
+ <style>
11
+ .igttgrdl {
12
+ fill: currentColor;
13
+ d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
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="lz4i5ofp"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2-rounded" /></template>
10
+ <style>
11
+ .lz4i5ofp {
12
+ fill: currentColor;
13
+ d: path("M13.55 15.5q.65-.65.613-1.525T13.4 12.6l-3.15-2.1L7.1 8.4q-.35-.225-.65.063t-.075.637q1.05 1.575 2.112 3.15T10.6 15.4q.475.725 1.375.75t1.575-.65M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="krqtpqbb"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2-sharp" /></template>
10
+ <style>
11
+ .krqtpqbb {
12
+ fill: currentColor;
13
+ d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
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="xks3l7bt"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-2" /></template>
10
+ <style>
11
+ .xks3l7bt {
12
+ fill: currentColor;
13
+ d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.9.838-3.725T4.975 6.95q1.4-1.4 3.238-2.175T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="uhl7_nbh"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3-outline-rounded" /></template>
10
+ <style>
11
+ .uhl7_nbh {
12
+ fill: currentColor;
13
+ d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.525 0-1.012-.238t-.738-.712q-.7-1.15-1.025-2.437T2.025 14q0-1.725.588-3.463t1.862-3.112q.375-.425.8-.412t.7.262t.35.625t-.225.725q-.95 1.05-1.512 2.475T4.025 14q0 1.025.263 2.038T5.125 18H18.9q.525-.9.813-1.925T20 14q0-1.875-.812-3.475T17.025 7.8q-1.05-.875-2.375-1.35T11.95 6q-.4 0-.712-.262t-.363-.663t.15-.725t.6-.35q1.825-.075 3.563.525T18.35 6.3q1.675 1.4 2.663 3.375T22 14q0 1.4-.35 2.663t-1 2.387q-.275.475-.75.713t-1 .237zm6.9-6.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="cpgrg-bn"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3-outline-sharp" /></template>
10
+ <style>
11
+ .cpgrg-bn {
12
+ fill: currentColor;
13
+ d: path("M2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.6-.55 3.1T20.125 20h-16.2q-.8-1.4-1.362-2.887T2.025 14m10.8 1.8q.85-.375 1.15-1.225t-.2-1.575q-1.425-2.05-2.925-4.038T7.8 5.025q.475 2.45 1.05 4.863t1.3 4.812q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
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="uo83dzbd"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3-outline" /></template>
10
+ <style>
11
+ .uo83dzbd {
12
+ fill: currentColor;
13
+ d: path("M5.125 20q-.55 0-1.012-.238t-.738-.712Q2.7 17.9 2.35 16.625T2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.35-.35 2.613t-1 2.437q-.275.475-.737.713T18.9 20zm7.7-4.2q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
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="h9ud6ihr"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3-rounded" /></template>
10
+ <style>
11
+ .h9ud6ihr {
12
+ fill: currentColor;
13
+ d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="kjf0z31o"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3-sharp" /></template>
10
+ <style>
11
+ .kjf0z31o {
12
+ fill: currentColor;
13
+ d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.05-2.937-4.05T7.775 4.975Q8.3 7.45 8.863 9.863T10.15 14.7q.25.825 1.063 1.138t1.612-.038M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
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="y2yzn0lu"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-3" /></template>
10
+ <style>
11
+ .y2yzn0lu {
12
+ fill: currentColor;
13
+ d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="l8mz89wa"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4-outline-rounded" /></template>
10
+ <style>
11
+ .l8mz89wa {
12
+ fill: currentColor;
13
+ d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.525 0-1-.238t-.75-.712q-.65-1.125-1-2.387T2.025 14q0-2.35.988-4.325T5.675 6.3Q7.1 5.125 8.838 4.525T12.4 4q.4.025.6.35t.15.725t-.363.662t-.712.263q-1.375-.025-2.7.45T7 7.8q-1.35 1.125-2.162 2.725T4.025 14q0 1.05.288 2.075T5.125 18H18.9q.575-.95.838-1.963T20 14q0-1.475-.562-2.9t-1.513-2.475q-.3-.35-.225-.725t.35-.625t.7-.262t.8.412q1.275 1.375 1.863 3.113T22 14q0 1.325-.325 2.613T20.65 19.05q-.25.475-.737.713T18.9 20zM12 13.975");
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="jgu6v4bo"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4-outline-sharp" /></template>
10
+ <style>
11
+ .jgu6v4bo {
12
+ fill: currentColor;
13
+ d: path("M3.9 20q-.775-1.4-1.325-2.9t-.55-3.1q0-2.075.788-3.9T4.95 6.925t3.175-2.137t3.9-.788q.575 0 1.15.075t1.15.2L13 6.075q-.25-.05-.488-.062T12.026 6Q8.675 6 6.35 8.325T4.025 14q0 1.05.287 2.063T5.125 18H18.9q.55-.9.825-1.925T20 14q0-1.65-.638-3.15t-1.837-2.625l.525-2.175q1.875 1.425 2.9 3.512T22 14q0 1.625-.55 3.113T20.1 20zm7.3-4.2q.8.35 1.613.038t1.062-1.138q.725-2.4 1.3-4.812t1.05-4.863q-1.55 1.95-3.05 3.938T10.25 13q-.5.725-.2 1.575T11.2 15.8m.8-1.825");
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="hc1623bf"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4-outline" /></template>
10
+ <style>
11
+ .hc1623bf {
12
+ fill: currentColor;
13
+ d: path("M5.1 20q-.55 0-1.012-.238t-.738-.712q-.65-1.175-1-2.437T2 14q0-2.075.788-3.9t2.137-3.175T8.1 4.788T12 4q.575 0 1.15.075t1.15.2l-1.325 1.8q-.25-.05-.487-.062T12 6Q8.65 6 6.325 8.325T4 14q0 1.05.287 2.063T5.1 18h13.775q.55-.9.825-1.925T19.975 14q0-1.65-.638-3.15T17.5 8.225l.525-2.175q1.875 1.425 2.913 3.512T21.975 14q.025 1.35-.325 2.625t-1.025 2.425q-.275.475-.737.713T18.875 20zm6.075-4.2q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225m.8-1.825");
14
+ }
15
+
16
+ </style>
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+
4
+ const props = defineProps(["width","height"]);
5
+
6
+ const viewBox = {"width":24,"height":24};
7
+ const content = `<path class="t_ozkacy"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4-rounded" /></template>
10
+ <style>
11
+ .t_ozkacy {
12
+ fill: currentColor;
13
+ d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="siv4h3xg"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4-sharp" /></template>
10
+ <style>
11
+ .siv4h3xg {
12
+ fill: currentColor;
13
+ d: path("M11.2 15.8q.8.35 1.613.038t1.062-1.138q.725-2.425 1.288-4.837t1.087-4.888Q14.675 6.95 13.188 8.95T10.25 13q-.5.725-.2 1.575T11.2 15.8M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
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="fmvkakbz"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:speed-4" /></template>
10
+ <style>
11
+ .fmvkakbz {
12
+ fill: currentColor;
13
+ d: path("M11.175 15.8q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
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="y6qf54jr"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2-outline-rounded" /></template>
10
+ <style>
11
+ .y6qf54jr {
12
+ fill: currentColor;
13
+ d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L3.2 14.65q-.225-.3-.2-.687t.3-.663q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v8.05q0 .575-.513.863T7.976 16.9l-.925-.575l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-1.5q-.425 0-.712-.288T14.5 12t.288-.712T15.5 11H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.838-9.287Q11 12.425 11 12V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12q0 .425-.288.713T12 13t-.712-.288M10.5 3q-1.05 0-1.963.4T6.95 4.475Q6.3 5.125 5.913 6t-.438 1.8q-.025.425-.262.763t-.663.387t-.775-.187t-.35-.663q-.025-1.3.6-2.725T5.55 3.05q.95-.95 2.225-1.5T10.5 1t2.725.55t2.225 1.5q1.025 1.025 1.525 2.275t.5 2.675q0 .425-.313.675t-.737.2t-.675-.362t-.275-.738q-.05-.95-.413-1.787t-1.037-1.513T12.45 3.4T10.5 3m2.025 13");
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="ghi476bq"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2-outline-sharp" /></template>
10
+ <style>
11
+ .ghi476bq {
12
+ fill: currentColor;
13
+ d: path("M8.975 22L2.65 13.95L4.3 12.3l3.2 1.925V7h2v10.825l-2.45-1.5L9.95 20H18v-7h-3.5v-2H20v11zM11 13V5.25h2V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.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="z24xyxbn"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2-outline" /></template>
10
+ <style>
11
+ .z24xyxbn {
12
+ fill: currentColor;
13
+ d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L2.65 13.95l.65-.65q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v9.825l-2.45-1.5l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-2.5v-2H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.55-9V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.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="s0u-rvbj"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2-rounded" /></template>
10
+ <style>
11
+ .s0u-rvbj {
12
+ fill: currentColor;
13
+ d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L3.2 14.65q-.225-.3-.2-.687t.3-.663q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v4H11V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12h4q1.25 0 2.125.875T20 15v3q0 1.675-1.175 2.838T16 22zm.05-19q-1.05 0-1.962.4T6.95 4.475Q6.3 5.125 5.913 6t-.438 1.8q-.025.425-.262.763t-.663.387t-.775-.187t-.35-.663q-.025-1.3.6-2.725T5.55 3.05q.95-.95 2.225-1.5T10.5 1t2.725.55t2.225 1.5q1.025 1.025 1.525 2.275t.5 2.675q0 .425-.313.675t-.737.2t-.675-.362t-.275-.738q-.05-.95-.413-1.787t-1.037-1.513T12.45 3.4T10.5 3");
14
+ }
15
+
16
+ </style>
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+
4
+ const props = defineProps(["width","height"]);
5
+
6
+ const viewBox = {"width":24,"height":24};
7
+ const content = `<path class="w49u-pbl"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2-sharp" /></template>
10
+ <style>
11
+ .w49u-pbl {
12
+ fill: currentColor;
13
+ d: path("M8.975 22L2.65 13.95L4.3 12.3l3.2 1.925V7h2v5H11V5.25h2V12h7v10zm-5.4-12.9Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.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="ab800ubo"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:touch-double-2" /></template>
10
+ <style>
11
+ .ab800ubo {
12
+ fill: currentColor;
13
+ d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L2.65 13.95l.65-.65q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v4H11V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12h4q1.25 0 2.125.875T20 15v3q0 1.675-1.175 2.838T16 22zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.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="sagdvp3j"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device-outline-rounded" /></template>
10
+ <style>
11
+ .sagdvp3j {
12
+ fill: currentColor;
13
+ d: path("M7 19q-.825 0-1.412-.587T5 17V7q0-.825.588-1.412T7 5h10q.825 0 1.413.588T19 7v10q0 .825-.587 1.413T17 19zm0 2h10q1.65 0 2.825-1.175T21 17V7q0-1.65-1.175-2.825T17 3H7Q5.35 3 4.175 4.175T3 7v10q0 1.65 1.175 2.825T7 21m5-11.5q-1.125 0-2.15.363T8 10.875q-.325.25-.725.25T6.6 10.85q-.3-.3-.312-.712t.287-.688Q7.65 8.5 9.088 8T12 7.5q1.45 0 2.913.525T17.45 9.5q.275.275.263.663t-.313.687q-.275.275-.675.288t-.7-.238q-.825-.675-1.85-1.037T12 9.5m0 4q-.275 0-.537.075t-.513.2q-.525.275-.937.15t-.638-.425t-.213-.65t.313-.55q.575-.375 1.225-.588t1.325-.212t1.312.2t1.213.575q.3.2.312.562t-.212.663t-.638.425t-.937-.15q-.25-.125-.525-.2T12 13.5m-.712 3.213Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.712-.288M12 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="n6_ax-bt"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device-outline-sharp" /></template>
10
+ <style>
11
+ .n6_ax-bt {
12
+ fill: currentColor;
13
+ d: path("M5 5h14v14H5zM3 3v18h18V3zm4.275 8.525L5.9 10.15q1.05-1.275 2.713-1.963T12 7.5q1.675 0 3.35.688t2.725 1.962L16.7 11.525q-.875-.95-2.087-1.487T12 9.5t-2.613.538t-2.112 1.487m2.85 2.85L8.7 12.95q.65-.7 1.513-1.075t1.812-.375t1.787.375T15.3 12.95l-1.4 1.425q-.35-.375-.863-.625T12 13.5t-1.025.25t-.85.625m1.163 2.338Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.712-.288M12 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="hqdtndba"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device-outline" /></template>
10
+ <style>
11
+ .hqdtndba {
12
+ fill: currentColor;
13
+ d: path("M7 19q-.825 0-1.412-.587T5 17V7q0-.825.588-1.412T7 5h10q.825 0 1.413.588T19 7v10q0 .825-.587 1.413T17 19zm0 2h10q1.65 0 2.825-1.175T21 17V7q0-1.65-1.175-2.825T17 3H7Q5.35 3 4.175 4.175T3 7v10q0 1.65 1.175 2.825T7 21m.275-9.475L5.9 10.15q1.05-1.275 2.713-1.963T12 7.5q1.675 0 3.35.688t2.725 1.962L16.7 11.525q-.875-.95-2.087-1.487T12 9.5t-2.613.538t-2.112 1.487m2.85 2.85L8.7 12.95q.65-.7 1.513-1.075t1.812-.375t1.787.375T15.3 12.95l-1.4 1.425q-.35-.375-.863-.625T12 13.5t-1.025.25t-.85.625m1.163 2.338Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.712-.288M12 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="su5913bx"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device-rounded" /></template>
10
+ <style>
11
+ .su5913bx {
12
+ fill: currentColor;
13
+ d: path("M7 21h10q1.65 0 2.825-1.175T21 17V7q0-1.65-1.175-2.825T17 3H7Q5.35 3 4.175 4.175T3 7v10q0 1.65 1.175 2.825T7 21m5-11.5q-1.125 0-2.15.363T8 10.875q-.325.25-.725.25T6.6 10.85q-.3-.3-.312-.712t.287-.688Q7.65 8.5 9.088 8T12 7.5q1.45 0 2.913.525T17.45 9.5q.275.275.263.663t-.313.687q-.275.275-.675.288t-.7-.238q-.825-.675-1.85-1.037T12 9.5m0 4q-.275 0-.537.075t-.513.2q-.525.275-.937.15t-.638-.425t-.213-.65t.313-.55q.575-.375 1.225-.588t1.325-.212t1.312.2t1.213.575q.3.2.312.562t-.212.663t-.638.425t-.937-.15q-.25-.125-.525-.2T12 13.5m-.712 3.213Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.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="ysim0eby"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device-sharp" /></template>
10
+ <style>
11
+ .ysim0eby {
12
+ fill: currentColor;
13
+ d: path("M3 3v18h18V3zm4.275 8.525L5.9 10.15q1.05-1.275 2.713-1.963T12 7.5q1.675 0 3.35.688t2.725 1.962L16.7 11.525q-.875-.95-2.087-1.487T12 9.5t-2.613.538t-2.112 1.487m2.85 2.85L8.7 12.95q.65-.7 1.513-1.075t1.812-.375t1.787.375T15.3 12.95l-1.4 1.425q-.35-.375-.863-.625T12 13.5t-1.025.25t-.85.625m1.163 2.338Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.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="wfjh8n2j"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols:wifi-device" /></template>
10
+ <style>
11
+ .wfjh8n2j {
12
+ fill: currentColor;
13
+ d: path("M7 21h10q1.65 0 2.825-1.175T21 17V7q0-1.65-1.175-2.825T17 3H7Q5.35 3 4.175 4.175T3 7v10q0 1.65 1.175 2.825T7 21m.275-9.475L5.9 10.15q1.05-1.275 2.713-1.963T12 7.5q1.675 0 3.35.688t2.725 1.962L16.7 11.525q-.875-.95-2.087-1.487T12 9.5t-2.613.538t-2.112 1.487m2.85 2.85L8.7 12.95q.65-.7 1.513-1.075t1.812-.375t1.787.375T15.3 12.95l-1.4 1.425q-.35-.375-.863-.625T12 13.5t-1.025.25t-.85.625m1.163 2.338Q11 16.425 11 16t.288-.712T12 15t.713.288T13 16t-.288.713T12 17t-.712-.288");
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": 15262,
5
+ "total": 15325,
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": 1775804607
30
+ "lastModified": 1776830580
31
31
  }