@iconify-vue/material-symbols-light 1.0.18 → 1.0.20

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 (76) hide show
  1. package/components/b/bus-map-pin-2-outline-rounded.vue +16 -0
  2. package/components/b/bus-map-pin-2-outline-sharp.vue +16 -0
  3. package/components/b/bus-map-pin-2-outline.vue +16 -0
  4. package/components/b/bus-map-pin-2-rounded.vue +16 -0
  5. package/components/b/bus-map-pin-2-sharp.vue +16 -0
  6. package/components/b/bus-map-pin-2.vue +16 -0
  7. package/components/c/code-xml-rounded.vue +16 -0
  8. package/components/c/code-xml.vue +16 -0
  9. package/components/f/fire-check-outline-rounded.vue +16 -0
  10. package/components/f/fire-check-outline.vue +16 -0
  11. package/components/f/fire-check-rounded.vue +16 -0
  12. package/components/f/fire-check.vue +16 -0
  13. package/components/f/fork-chart-outline-sharp.vue +16 -0
  14. package/components/f/fork-chart-outline.vue +16 -0
  15. package/components/f/fork-chart-sharp.vue +16 -0
  16. package/components/f/fork-chart.vue +16 -0
  17. package/components/f/format-image-left-outline-rounded.vue +16 -0
  18. package/components/f/format-image-left-outline.vue +16 -0
  19. package/components/f/format-image-left-rounded.vue +3 -3
  20. package/components/f/format-image-left.vue +3 -3
  21. package/components/f/format-image-right-outline-rounded.vue +16 -0
  22. package/components/f/format-image-right-outline.vue +16 -0
  23. package/components/f/format-image-right-rounded.vue +3 -3
  24. package/components/f/format-image-right.vue +3 -3
  25. package/components/f/format-paint-off-outline-rounded.vue +16 -0
  26. package/components/f/format-paint-off-outline-sharp.vue +16 -0
  27. package/components/f/format-paint-off-outline.vue +16 -0
  28. package/components/f/format-paint-off-rounded.vue +16 -0
  29. package/components/f/format-paint-off-sharp.vue +16 -0
  30. package/components/f/format-paint-off.vue +16 -0
  31. package/components/g/graphic-eq-off-rounded.vue +16 -0
  32. package/components/g/graphic-eq-off.vue +16 -0
  33. package/components/g/grid-layout-side-outline-sharp.vue +16 -0
  34. package/components/g/grid-layout-side-outline.vue +16 -0
  35. package/components/g/grid-layout-side-rounded.vue +16 -0
  36. package/components/g/grid-layout-side-sharp.vue +16 -0
  37. package/components/g/grid-layout-side.vue +16 -0
  38. package/components/s/snowflake-rounded.vue +16 -0
  39. package/components/s/snowflake.vue +16 -0
  40. package/components/s/space-dashboard-2-outline-sharp.vue +16 -0
  41. package/components/s/space-dashboard-2-outline.vue +16 -0
  42. package/components/s/space-dashboard-2-rounded.vue +16 -0
  43. package/components/s/space-dashboard-2-sharp.vue +16 -0
  44. package/components/s/space-dashboard-2.vue +16 -0
  45. package/components/s/sql-rounded.vue +16 -0
  46. package/components/s/sql-sharp.vue +16 -0
  47. package/components/s/sql.vue +16 -0
  48. package/components/s/swipe-left-2-outline-rounded.vue +16 -0
  49. package/components/s/swipe-left-2-outline-sharp.vue +16 -0
  50. package/components/s/swipe-left-2-outline.vue +16 -0
  51. package/components/s/swipe-left-2-rounded.vue +16 -0
  52. package/components/s/swipe-left-2-sharp.vue +16 -0
  53. package/components/s/swipe-left-2.vue +16 -0
  54. package/components/s/swipe-right-2-outline-rounded.vue +16 -0
  55. package/components/s/swipe-right-2-outline-sharp.vue +16 -0
  56. package/components/s/swipe-right-2-outline.vue +16 -0
  57. package/components/s/swipe-right-2-rounded.vue +16 -0
  58. package/components/s/swipe-right-2.vue +16 -0
  59. package/components/t/terminal-2-rounded.vue +16 -0
  60. package/components/t/terminal-2.vue +16 -0
  61. package/components/t/text-ad-off-outline-rounded.vue +16 -0
  62. package/components/t/text-ad-off-outline-sharp.vue +16 -0
  63. package/components/t/text-ad-off-outline.vue +16 -0
  64. package/components/t/text-ad-off-rounded.vue +16 -0
  65. package/components/t/text-ad-off-sharp.vue +16 -0
  66. package/components/t/text-ad-off.vue +16 -0
  67. package/components/w/water-drops-outline-rounded.vue +16 -0
  68. package/components/w/water-drops-outline.vue +16 -0
  69. package/components/w/water-drops-rounded.vue +16 -0
  70. package/components/w/water-drops.vue +16 -0
  71. package/components/y/youtube-activity-outline-rounded.vue +16 -0
  72. package/components/y/youtube-activity-outline.vue +16 -0
  73. package/components/y/youtube-activity-rounded.vue +3 -3
  74. package/components/y/youtube-activity.vue +3 -3
  75. package/iconify.json +2 -2
  76. package/package.json +273 -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="q8i1t0-t"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2-outline-rounded" /></template>
10
+ <style>
11
+ .q8i1t0-t {
12
+ fill: currentColor;
13
+ d: path("M7.039 21h-.923q-.213 0-.357-.153q-.143-.153-.143-.347v-1.115q-.691 0-1.153-.463T4 17.769V7.423q0-.666.475-1.14t1.14-.475v-.192q0-.667.475-1.141T7.23 4h6.26q-.048.216-.068.434t-.031.45H7.23q-.27 0-.442.174q-.173.173-.173.442v1.327h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.138.115q.313.27.708.27t.7-.27q.084-.079.19-.024t.106.157v5.444q0 .667-.475 1.141t-1.14.475V20.5q0 .194-.144.347t-.357.153h-.942q-.212 0-.356-.153t-.144-.347v-1.115H7.54V20.5q0 .194-.144.347T7.039 21M18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234m2.237-2.21q.687.711.687 1.713q0 .746-.579 1.631q-.58.885-1.761 1.965q-1.179-1.085-1.766-1.967q-.586-.882-.586-1.625q0-.999.686-1.713q.687-.714 1.66-.714t1.66.71M5.02 13.078v4.692q0 .27.172.443q.173.173.442.173h12.77q.269 0 .442-.173t.173-.443v-4.692zm2.307 3.154h1.865q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143H7.327q-.213 0-.356.144t-.144.357t.144.356t.356.143m7.5 0h1.865q.213 0 .357-.144q.143-.144.143-.357t-.143-.356t-.357-.143h-1.865q-.212 0-.356.144t-.144.357t.144.356t.356.143M5.019 17.77v-4.692v5.308zM19 1.596q-1.367 0-2.299.967T15.769 4.9q0 .927.69 2.012t2.09 2.361q.203.183.451.18t.46-.184q1.395-1.272 2.083-2.352t.688-2.01q0-1.372-.932-2.341T19 1.596");
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="bxfrikbl"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2-outline-sharp" /></template>
10
+ <style>
11
+ .bxfrikbl {
12
+ fill: currentColor;
13
+ d: path("M5.616 21v-1.616H4V5.81h1.616V4h7.875q-.049.216-.069.434t-.031.45H6.616v1.943h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.842.721l1-.834v7.42h-1.616V21h-1.942v-1.616H7.54V21zM18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234m2.237-2.21q.687.711.687 1.713q0 .746-.579 1.631q-.58.885-1.761 1.965q-1.179-1.085-1.766-1.967q-.586-.882-.586-1.625q0-.999.686-1.713q.687-.714 1.66-.714t1.66.71M19 9.674q1.621-1.379 2.426-2.572t.805-2.2q0-1.37-.932-2.338T19 1.596t-2.299.967t-.932 2.337q0 1.008.805 2.201T19 9.673M5.02 13.077v5.308h14v-5.308zm1.807 3.154h2.865v-1H6.827zm7.5 0h2.865v-1h-2.865zm-9.308 2.153v-5.307z");
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="qxjv6abb"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2-outline" /></template>
10
+ <style>
11
+ .qxjv6abb {
12
+ fill: currentColor;
13
+ d: path("M7.039 21h-.923q-.213 0-.357-.153q-.143-.153-.143-.347v-1.115q-.691 0-1.153-.463T4 17.769V7.423q0-.666.475-1.14t1.14-.475v-.192q0-.667.475-1.141T7.23 4h6.26q-.048.216-.068.434t-.031.45H7.23q-.27 0-.442.174q-.173.173-.173.442v1.327h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.842.721l1-.834v5.805q0 .667-.475 1.141t-1.14.475V20.5q0 .194-.144.347t-.357.153h-.942q-.212 0-.356-.153t-.144-.347v-1.115H7.54V20.5q0 .194-.144.347T7.039 21M18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234m2.237-2.21q.687.711.687 1.713q0 .746-.579 1.631q-.58.885-1.761 1.965q-1.179-1.085-1.766-1.967q-.586-.882-.586-1.625q0-.999.686-1.713q.687-.714 1.66-.714t1.66.71M19 9.674q1.621-1.379 2.426-2.572t.805-2.2q0-1.37-.932-2.338T19 1.596t-2.299.967t-.932 2.337q0 1.008.805 2.201T19 9.673M5.02 13.077v4.692q0 .27.172.443q.173.173.442.173h12.77q.269 0 .442-.173t.173-.443v-4.692zm2.307 3.154h1.865q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143H7.327q-.213 0-.356.144t-.144.357t.144.356t.356.143m7.5 0h1.865q.213 0 .357-.144q.143-.144.143-.357t-.143-.356t-.357-.143h-1.865q-.212 0-.356.144t-.144.357t.144.356t.356.143m-9.808 1.538v-4.692v5.308zM19 4.908");
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="nodh4obw"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2-rounded" /></template>
10
+ <style>
11
+ .nodh4obw {
12
+ fill: currentColor;
13
+ d: path("M7.039 21h-.923q-.213 0-.357-.153q-.143-.153-.143-.347v-1.115q-.691 0-1.153-.463T4 17.769V7.423q0-.666.475-1.14t1.14-.475v-.192q0-.667.475-1.141T7.23 4h6.26q-.048.216-.068.434t-.031.45H7.23q-.27 0-.442.174q-.173.173-.173.442v1.327h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.138.115q.313.27.708.27t.7-.27q.084-.079.19-.024t.106.157v5.444q0 .667-.475 1.141t-1.14.475V20.5q0 .194-.144.347t-.357.153h-.942q-.212 0-.356-.153t-.144-.347v-1.115H7.54V20.5q0 .194-.144.347T7.039 21M18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234M7.327 16.231h1.865q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143H7.327q-.213 0-.356.144t-.144.357t.144.356t.356.143m7.5 0h1.865q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143h-1.865q-.213 0-.356.144t-.144.357t.144.356t.356.143M19 1.596q-1.367 0-2.299.967T15.769 4.9q0 .927.69 2.011t2.09 2.362q.203.183.451.18t.46-.184q1.395-1.272 2.083-2.352t.688-2.01q0-1.372-.932-2.341T19 1.596");
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="lu2h69du"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2-sharp" /></template>
10
+ <style>
11
+ .lu2h69du {
12
+ fill: currentColor;
13
+ d: path("M5.616 21v-1.616H4V5.81h1.616V4h7.875q-.049.216-.069.434t-.031.45H6.616v1.943h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.842.721l1-.834v7.42h-1.616V21h-1.942v-1.616H7.54V21zM18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234M19 9.673q1.621-1.379 2.426-2.572t.805-2.2q0-1.37-.932-2.338T19 1.596t-2.299.967t-.932 2.337q0 1.008.805 2.201T19 9.673M6.827 16.231h2.865v-1H6.827zm7.5 0h2.865v-1h-2.865z");
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="k4j2w6bk"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:bus-map-pin-2" /></template>
10
+ <style>
11
+ .k4j2w6bk {
12
+ fill: currentColor;
13
+ d: path("M7.039 21h-.923q-.213 0-.357-.153q-.143-.153-.143-.347v-1.115q-.691 0-1.153-.463T4 17.769V7.423q0-.666.475-1.14t1.14-.475v-.192q0-.667.475-1.141T7.23 4h6.26q-.048.216-.068.434t-.031.45H7.23q-.27 0-.442.174q-.173.173-.173.442v1.327h7.19q.08.244.188.485q.108.24.268.515H5.019v4.25h13.139l.842.721l1-.834v5.805q0 .667-.475 1.141t-1.14.475V20.5q0 .194-.144.347t-.357.153h-.942q-.212 0-.356-.153t-.144-.347v-1.115H7.54V20.5q0 .194-.144.347T7.039 21M18.422 5.401q-.23-.233-.23-.578t.234-.574t.577-.23t.575.233t.23.578t-.233.575t-.578.23t-.575-.234M19 9.673q1.621-1.379 2.426-2.572t.805-2.2q0-1.37-.932-2.338T19 1.596t-2.299.967t-.932 2.337q0 1.008.805 2.201T19 9.673M7.327 16.231h1.865q.213 0 .356-.144q.144-.144.144-.357t-.144-.356t-.356-.143H7.327q-.213 0-.356.144t-.144.357t.144.356t.356.143m7.5 0h1.865q.213 0 .357-.144q.143-.144.143-.357t-.143-.356t-.357-.143h-1.865q-.212 0-.356.144t-.144.357t.144.356t.356.143");
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="sz9zd6qn"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:code-xml-rounded" /></template>
10
+ <style>
11
+ .sz9zd6qn {
12
+ fill: currentColor;
13
+ d: path("m3.114 12l3.24 3.24q.14.147.143.348t-.143.347T6 16.08t-.354-.147l-3.369-3.368q-.242-.243-.242-.566t.242-.565l3.37-3.37Q5.791 7.92 6 7.92t.354.147q.146.145.146.346t-.146.347zm6.25 7.263q-.1-.19-.033-.379l4.4-14.08q.067-.189.247-.29t.368-.033t.3.247t.042.368l-4.419 14.1q-.067.188-.247.29q-.18.1-.368.033t-.29-.256M20.888 12l-3.24-3.24q-.147-.146-.147-.348t.146-.347T18 7.92t.354.147l3.369 3.368q.243.243.243.566t-.243.566l-3.37 3.368q-.145.147-.353.147t-.354-.147t-.146-.346t.146-.347z");
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="ms8n33b"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:code-xml" /></template>
10
+ <style>
11
+ .ms8n33b {
12
+ fill: currentColor;
13
+ d: path("M6 16.289L1.712 12L6 7.712l.708.688L3.114 12l3.594 3.6zm4.123 3.376l-.938-.292l4.692-15.038l.958.292zM18 16.29l-.708-.689l3.595-3.6l-3.595-3.6l.708-.689L22.288 12z");
14
+ }
15
+
16
+ </style>
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+
4
+ const props = defineProps(["width","height"]);
5
+
6
+ const viewBox = {"width":24,"height":24};
7
+ const content = `<path class="nwz42hba"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fire-check-outline-rounded" /></template>
10
+ <style>
11
+ .nwz42hba {
12
+ fill: currentColor;
13
+ d: path("m16.235 19.598l3.704-3.704q.146-.146.344-.153t.363.159q.16.165.16.354t-.16.354l-3.84 3.826q-.243.243-.566.243t-.565-.242l-1.823-1.804q-.16-.14-.16-.345q0-.203.16-.363t.354-.16t.354.16zM5 13q0-2.348 1.352-4.607t3.721-3.984q.29-.217.609-.05q.318.166.318.537V5.3q0 1.273.876 2.137t2.149.863q.47 0 .915-.159q.445-.158.84-.456l.04-.039q.18-.154.39-.136t.39.154q1.054.917 1.679 2.186t.71 2.687q.011.232-.139.357t-.333.137t-.34-.101q-.158-.113-.194-.393q-.037-.558-.177-1.088t-.363-1.022t-.538-.94q-.317-.448-.705-.837q-.5.325-1.05.488t-1.125.162q-1.57 0-2.707-1.025t-1.293-2.563q-1.95 1.63-2.988 3.522Q6 11.125 6 13q0 2.166 1.328 3.779t3.357 2.067q.15.24.09.507q-.06.266-.3.416t-.507.09q-.266-.059-.416-.3q-1.025-.374-1.853-1.04q-.828-.667-1.455-1.542q-.584-.84-.914-1.855Q5 14.108 5 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="h2l05qkz"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fire-check-outline" /></template>
10
+ <style>
11
+ .h2l05qkz {
12
+ fill: currentColor;
13
+ d: path("m16.24 21l-2.742-2.723l.708-.708l2.029 2.029l4.057-4.057l.708.713zm-5.555-2.154l1.148 1.148q-.03 0-.061.003t-.06.003Q8.9 19.885 6.95 17.867T5 13q0-2.571 1.615-5.029T11 3.79V5.3q0 1.275.878 2.138q.877.862 2.147.862q.47 0 .915-.159q.445-.158.84-.456l.432-.339q1.311.973 2.05 2.473T19 13h-1q0-.625-.125-1.213t-.35-1.15t-.562-1.062t-.763-.925q-.5.325-1.052.487q-.552.163-1.129.163q-1.555 0-2.697-1.025t-1.297-2.563q-1.95 1.63-2.988 3.522Q6 11.125 6 13q0 2.166 1.328 3.779t3.357 2.067");
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="qa3_n-bw"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fire-check-rounded" /></template>
10
+ <style>
11
+ .qa3_n-bw {
12
+ fill: currentColor;
13
+ d: path("m16.235 19.598l3.704-3.704q.146-.146.344-.153t.363.159q.16.165.16.354t-.16.354l-3.84 3.826q-.243.243-.566.243t-.565-.242l-1.823-1.804q-.16-.14-.16-.345q0-.203.16-.363t.354-.16t.354.16zm-4.308-3.6q-.65.612-.894 1.517t.21 1.739q.105.18.22.336q.116.156.272.312l.098.092q-1.287-.015-2.41-.48q-1.123-.466-2.034-1.255q-1.114-.97-1.751-2.325Q5 14.581 5 13q0-2.273 1.274-4.471t3.51-3.912q.377-.292.797-.077q.419.216.419.708q0 1.265.883 2.159t2.142.893q.489 0 .927-.161t.829-.454q.2-.154.432-.146t.425.163q1.106.989 1.719 2.364q.612 1.376.626 2.884q.011.254-.094.495q-.106.241-.298.434l-2.356 2.356l-.006-.006q-1.127-1.127-2.314-1.05t-1.988.819");
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="d-9yseby"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fire-check" /></template>
10
+ <style>
11
+ .d-9yseby {
12
+ fill: currentColor;
13
+ d: path("m16.235 19.598l4.057-4.057l.708.713L16.24 21l-2.742-2.723l.708-.708zM5 13q0-2.571 1.615-5.029T11 3.79V5.3q0 1.273.876 2.137t2.149.863q.47 0 .915-.159q.445-.158.84-.456l.432-.339q1.396 1.064 2.141 2.697t.609 3.446l-2.727 2.746l-2.03-2.03l-4.09 4.072l1.718 1.717q-.03 0-.061.003t-.06.003Q8.9 19.885 6.95 17.867T5 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="pux2chzd"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fork-chart-outline-sharp" /></template>
10
+ <style>
11
+ .pux2chzd {
12
+ fill: currentColor;
13
+ d: path("M3.692 19v-7.404q-.573-.098-.94-.542t-.367-1.023V6h.769v3.23h.588V6h.785v3.23h.589V6h.769v4.03q0 .58-.368 1.024t-.94.542V19zm10.893 0q-2.935 0-4.981-2.037t-2.046-4.971q0-2.913 2.046-4.953Q11.65 5 14.585 5q2.913 0 4.953 2.04q2.039 2.039 2.039 4.952q0 2.934-2.04 4.971T14.586 19M19.15 8.14L15.266 12l3.859 3.879q.679-.783 1.066-1.776q.386-.993.386-2.113q0-1.119-.373-2.088T19.15 8.14m-4.073-2.124v4.775l3.36-3.384q-.685-.592-1.54-.958t-1.82-.433M14.577 18q1.104 0 2.088-.365q.983-.364 1.766-1.043l-4.354-4.371V6.017q-2.323.177-3.921 1.89t-1.598 4.074q0 2.508 1.755 4.264Q12.07 18 14.577 18");
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="f73vc4_o"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fork-chart-outline" /></template>
10
+ <style>
11
+ .f73vc4_o {
12
+ fill: currentColor;
13
+ d: path("M3.692 19v-7.404q-.534-.098-.92-.479q-.388-.38-.388-1.086V6.38q0-.153.112-.267T2.77 6t.273.116t.112.269V9.23h.596V6.386q0-.163.116-.275Q3.98 6 4.134 6t.27.115t.115.27V9.23h.597V6.386q0-.163.111-.275T5.5 6t.273.114t.112.266v3.65q0 .707-.387 1.087t-.921.48V19zm10.893 0q-2.935 0-4.981-2.037t-2.046-4.971q0-2.913 2.046-4.953Q11.65 5 14.585 5q2.913 0 4.953 2.04q2.039 2.039 2.039 4.952q0 2.934-2.04 4.971T14.586 19M19.15 8.14L15.266 12l3.859 3.879q.679-.783 1.066-1.776q.386-.993.386-2.113q0-1.119-.373-2.088T19.15 8.14m-4.073-2.124v4.775l3.36-3.384q-.685-.592-1.54-.958t-1.82-.433M14.577 18q1.104 0 2.088-.365q.983-.364 1.766-1.043l-4.354-4.371V6.017q-2.323.177-3.921 1.89t-1.598 4.074q0 2.508 1.755 4.264Q12.07 18 14.577 18");
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="nxx0o5be"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fork-chart-sharp" /></template>
10
+ <style>
11
+ .nxx0o5be {
12
+ fill: currentColor;
13
+ d: path("M3.692 19v-7.404q-.573-.098-.94-.54q-.367-.44-.367-1.025V6h.769v3.23h.596V6h.77v3.23h.596V6h.769v4.03q0 .586-.368 1.027t-.94.54V19zM19.806 7.35q.838.929 1.304 2.109T21.577 12q0 1.342-.47 2.503q-.468 1.16-1.269 2.09L15.267 12zm-4.729-2.333q1.138.067 2.155.49q1.016.422 1.841 1.13l-3.996 4.155zM14.577 19q-2.927 0-4.973-2.037T7.558 12q0-2.786 1.887-4.796t4.632-2.192v7.202l5.067 5.092q-.91.8-2.08 1.247T14.578 19");
14
+ }
15
+
16
+ </style>
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+
4
+ const props = defineProps(["width","height"]);
5
+
6
+ const viewBox = {"width":24,"height":24};
7
+ const content = `<path class="gz5yzsbk"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:fork-chart" /></template>
10
+ <style>
11
+ .gz5yzsbk {
12
+ fill: currentColor;
13
+ d: path("M3.692 19v-7.404q-.534-.098-.92-.479q-.388-.38-.388-1.086V6.384q0-.161.112-.273Q2.608 6 2.77 6t.273.112t.112.273V9.23h.596V6.385q0-.162.112-.273T4.134 6t.274.112t.111.273V9.23h.597V6.385q0-.162.111-.273T5.5 6t.273.112t.112.273v3.646q0 .706-.387 1.086t-.921.48V19zM19.806 7.35q.838.929 1.304 2.109T21.577 12q0 1.342-.47 2.503q-.468 1.16-1.269 2.09L15.267 12zm-4.729-2.333q1.138.067 2.155.49q1.016.422 1.841 1.13l-3.996 4.155zM14.577 19q-2.927 0-4.973-2.037T7.558 12q0-2.786 1.887-4.796t4.632-2.192v7.202l5.067 5.092q-.91.8-2.08 1.247T14.578 19");
14
+ }
15
+
16
+ </style>
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { Icon } from '@iconify/css-vue';
3
+
4
+ const props = defineProps(["width","height"]);
5
+
6
+ const viewBox = {"width":24,"height":24};
7
+ const content = `<path class="fckc0gma"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-left-outline-rounded" /></template>
10
+ <style>
11
+ .fckc0gma {
12
+ fill: currentColor;
13
+ d: path("M4.808 16.25q-.343 0-.576-.232T4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm.192-1h6.5v-6.5H5zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5zm10.885 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm3.75-8");
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="xidp2ab"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-left-outline" /></template>
10
+ <style>
11
+ .xidp2ab {
12
+ fill: currentColor;
13
+ d: path("M4 16.25v-8.5h8.5v8.5zm1-1h6.5v-6.5H5zM4 5V4h16v1zm10.885 3.75v-1H20v1zm0 3.75v-1H20v1zm0 3.75v-1H20v1zM4 20v-1h16v1zm4.25-8");
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="ad9__jbn"/>`;
7
+ const content = `<path class="rgtbo7hk"/>`;
8
8
  </script>
9
9
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-left-rounded" /></template>
10
10
  <style>
11
- .ad9__jbn {
11
+ .rgtbo7hk {
12
12
  fill: currentColor;
13
- d: path("M4.808 16.25q-.343 0-.576-.232T4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm.192-1h6.5v-6.5H5zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5zm10.885 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20z");
13
+ d: path("M4.808 16.25q-.343 0-.576-.232T4 15.442V8.558q0-.343.232-.576t.576-.232h6.884q.343 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5zm10.885 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zm0 3.75q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143H19.5q.213 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20z");
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="myig8yb"/>`;
7
+ const content = `<path class="x5_675b"/>`;
8
8
  </script>
9
9
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-left" /></template>
10
10
  <style>
11
- .myig8yb {
11
+ .x5_675b {
12
12
  fill: currentColor;
13
- d: path("M4 16.25v-8.5h8.5v8.5zm1-1h6.5v-6.5H5zM4 5V4h16v1zm10.885 3.75v-1H20v1zm0 3.75v-1H20v1zm0 3.75v-1H20v1zM4 20v-1h16v1z");
13
+ d: path("M4 16.25v-8.5h8.5v8.5zM4 5V4h16v1zm10.885 3.75v-1H20v1zm0 3.75v-1H20v1zm0 3.75v-1H20v1zM4 20v-1h16v1z");
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="tyb9amcv"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-right-outline-rounded" /></template>
10
+ <style>
11
+ .tyb9amcv {
12
+ fill: currentColor;
13
+ d: path("M12.308 16.25q-.343 0-.576-.232t-.232-.576V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm.192-1H19v-6.5h-6.5zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-3.75q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5zm11.25 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="qkto8vb"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-right-outline" /></template>
10
+ <style>
11
+ .qkto8vb {
12
+ fill: currentColor;
13
+ d: path("M11.5 16.25v-8.5H20v8.5zm1-1H19v-6.5h-6.5zM4 20v-1h16v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zM4 5V4h16v1zm11.75 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="bkyciabi"/>`;
7
+ const content = `<path class="p0wtppba"/>`;
8
8
  </script>
9
9
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-right-rounded" /></template>
10
10
  <style>
11
- .bkyciabi {
11
+ .p0wtppba {
12
12
  fill: currentColor;
13
- d: path("M12.308 16.25q-.343 0-.576-.232t-.232-.576V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zm.192-1H19v-6.5h-6.5zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-3.75q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 5z");
13
+ d: path("M12.308 16.25q-.343 0-.576-.232t-.232-.576V8.558q0-.343.232-.576t.576-.232h6.884q.344 0 .576.232t.232.576v6.884q0 .344-.232.576t-.576.232zM4.5 20q-.213 0-.356-.144T4 19.499t.144-.356T4.5 19h15q.213 0 .356.144t.144.357t-.144.356T19.5 20zm0-3.75q-.213 0-.356-.144T4 15.749t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 11.999t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zm0-3.75q-.213 0-.356-.144T4 8.249t.144-.356t.356-.143h4.116q.212 0 .356.144t.144.357t-.144.356t-.356.143zM4.5 5q-.213 0-.356-.144T4 4.499t.144-.356T4.5 4h15q.213 0 .356.144t.144.357t-.144.356T19.5 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="zpv__6t"/>`;
7
+ const content = `<path class="u21a95f"/>`;
8
8
  </script>
9
9
  <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-image-right" /></template>
10
10
  <style>
11
- .zpv__6t {
11
+ .u21a95f {
12
12
  fill: currentColor;
13
- d: path("M11.5 16.25v-8.5H20v8.5zm1-1H19v-6.5h-6.5zM4 20v-1h16v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zM4 5V4h16v1z");
13
+ d: path("M11.5 16.25v-8.5H20v8.5zM4 20v-1h16v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zm0-3.75v-1h5.116v1zM4 5V4h16v1z");
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="e9324hbg"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off-outline-rounded" /></template>
10
+ <style>
11
+ .e9324hbg {
12
+ fill: currentColor;
13
+ d: path("M12.663 6.818q-.144-.143-.144-.356V5H7.811l-.888-.889q.17-.065.347-.088Q7.448 4 7.635 4h10.557q.349 0 .578.23t.23.578v8.384q0 .612-.398 1.054t-1.03.514l-.972-.972h.746q.27 0 .462-.173t.192-.423v-1.73h-3.727l-1-1H18V5h-1.634v3.212q0 .213-.144.356q-.143.144-.357.144q-.213 0-.356-.144t-.143-.356V5h-1.847v1.462q0 .213-.143.356t-.357.144t-.356-.144M10.962 21q-.421 0-.711-.29q-.29-.289-.29-.71v-5.212H6.635q-.69 0-1.162-.462Q5 13.863 5 13.192V6.427L3.094 4.521q-.146-.146-.153-.347t.159-.366t.357-.166t.356.166l16.38 16.384q.145.146.155.344t-.156.364q-.165.165-.356.165q-.192 0-.357-.165l-5.46-5.454V20q0 .421-.29.71q-.288.29-.71.29zm-4.327-7.212h5.727l-2.328-2.327H6v1.731q0 .25.183.424q.183.173.452.173M6 10.462h3.035L6 7.427zm6.362 3.327H6zm4.238 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="ui2t3sbm"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off-outline-sharp" /></template>
10
+ <style>
11
+ .ui2t3sbm {
12
+ fill: currentColor;
13
+ d: path("M19 4v10.76h-1.429l-.971-.972H18v-2.327h-3.727l-1-1H18V5h-1.634v3.712h-1V5h-1.847v1.962h-1V5H7.811l-.888-.889q.17-.065.345-.088Q7.444 4 7.635 4zm.833 17.26l-5.814-5.814V21H9.962v-6.212H5V6.427l-2.26-2.26l.714-.713l17.092 17.092zM6 13.787h6.362l-2.328-2.327H6zm0-3.327h3.035L6 7.427zm6.362 3.327H6zm4.238 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="wsqmktqr"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off-outline" /></template>
10
+ <style>
11
+ .wsqmktqr {
12
+ fill: currentColor;
13
+ d: path("M19 4v9.192q0 .612-.398 1.054t-1.03.513l-.972-.97h.746q.27 0 .462-.174q.192-.173.192-.423v-1.73h-3.727l-1-1H18V5h-1.634v3.712h-1V5h-1.847v1.962h-1V5H7.811l-.888-.889q.17-.065.347-.088Q7.448 4 7.635 4zm.833 17.26l-5.814-5.814V20q0 .421-.29.71q-.288.29-.71.29h-2.058q-.42 0-.71-.29q-.29-.289-.29-.71v-5.212H6.635q-.69 0-1.162-.462Q5 13.863 5 13.192V6.427l-2.26-2.26l.714-.713l17.092 17.092zM6.635 13.787h5.727l-2.328-2.327H6v1.731q0 .25.183.424q.183.173.452.173M6 10.462h3.035L6 7.427zm6.362 3.327H6zm4.238 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="hw51n_br"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off-rounded" /></template>
10
+ <style>
11
+ .hw51n_br {
12
+ fill: currentColor;
13
+ d: path("M12.663 6.818q-.144-.144-.144-.356V5H7.811l-.888-.889q.17-.065.345-.088Q7.444 4 7.635 4h10.557q.344 0 .576.232t.232.576v8.384q0 .612-.398 1.054t-1.03.514l-4.299-4.298H18V5h-1.634v3.212q0 .212-.144.356t-.357.144t-.356-.144t-.143-.356V5h-1.847v1.462q0 .212-.144.356t-.356.144t-.356-.144M10.962 21q-.413 0-.707-.294T9.962 20v-5.212H6.635q-.69 0-1.163-.462Q5 13.863 5 13.192V6.427L3.094 4.521q-.146-.146-.153-.347t.159-.366t.357-.166t.356.166l16.38 16.384q.145.146.155.344t-.156.364q-.165.165-.356.165q-.192 0-.357-.165l-5.46-5.454V20q0 .413-.294.706T13.02 21zM6 10.462h3.035L6 7.427z");
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="c1sg0sbv"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off-sharp" /></template>
10
+ <style>
11
+ .c1sg0sbv {
12
+ fill: currentColor;
13
+ d: path("M19 4v10.76h-1.429l-4.298-4.298H18V5h-1.634v3.712h-1V5h-1.847v1.962h-1V5H7.811l-.888-.889q.17-.065.345-.088Q7.444 4 7.635 4zm.833 17.26l-5.814-5.814V21H9.962v-6.212H5V6.427l-2.26-2.26l.714-.713l17.092 17.092zM6 10.462h3.035L6 7.427z");
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="k0n_kgfs"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:format-paint-off" /></template>
10
+ <style>
11
+ .k0n_kgfs {
12
+ fill: currentColor;
13
+ d: path("M19 4v9.192q0 .612-.398 1.054t-1.03.513l-4.299-4.297H18V5h-1.634v3.712h-1V5h-1.847v1.962h-1V5H7.811l-.888-.889q.17-.065.345-.088Q7.444 4 7.635 4zm.833 17.26l-5.814-5.814V20q0 .413-.294.706T13.02 21h-2.058q-.412 0-.706-.294T9.962 20v-5.212H6.635q-.69 0-1.163-.462Q5 13.863 5 13.192V6.427l-2.26-2.26l.714-.713l17.092 17.092zM6 10.462h3.035L6 7.427z");
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="rch8cabd"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:graphic-eq-off-rounded" /></template>
10
+ <style>
11
+ .rch8cabd {
12
+ fill: currentColor;
13
+ d: path("M11.643 20.856q-.143-.143-.143-.356v-7.573l-2.75-2.75v6.439q0 .212-.144.356t-.357.144t-.356-.144t-.143-.356V9.177L3.094 4.521q-.146-.146-.155-.347t.155-.366t.357-.166t.357.166l16.384 16.384q.147.147.156.345t-.156.363t-.356.166t-.357-.166L12.5 13.927V20.5q0 .213-.144.356t-.357.144t-.356-.144m-7.5-7.692Q4 13.02 4 12.808v-1.616q0-.212.144-.356t.357-.144t.356.144t.143.356v1.616q0 .212-.144.356t-.357.144t-.356-.144m7.86-4.183q-.186 0-.344-.13q-.159-.13-.159-.376V3.5q0-.213.144-.356T12.001 3t.356.144t.143.356v4.98q0 .25-.155.376q-.155.125-.342.125m3.75 3.75q-.186 0-.344-.13q-.159-.13-.159-.376v-4.84q0-.213.144-.357t.357-.143t.356.143t.143.357v4.846q0 .25-.155.375t-.341.125m3.39.433Q19 13.02 19 12.808v-1.616q0-.212.144-.356t.357-.144t.356.144t.143.356v1.616q0 .212-.144.356t-.357.144t-.356-.144");
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="ik_4ype"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:graphic-eq-off" /></template>
10
+ <style>
11
+ .ik_4ype {
12
+ fill: currentColor;
13
+ d: path("M19.833 21.26L12.5 13.927V21h-1v-8.073l-2.75-2.75v6.939h-1V9.177l-5.01-5.01l.714-.713l17.092 17.092zM4 13.308v-2.616h1v2.616zm8.5-3.62l-1-1V3h1zm3.75 3.75l-1-1V6.884h1zm2.75-.13v-2.616h1v2.616z");
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="azusqs"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:grid-layout-side-outline-sharp" /></template>
10
+ <style>
11
+ .azusqs {
12
+ fill: currentColor;
13
+ d: path("M4 20V4h16v16zm1-1h8.5V5H5zm14 0V5h-4.5v14z");
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="paww7r7a"/>`;
8
+ </script>
9
+ <template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:grid-layout-side-outline" /></template>
10
+ <style>
11
+ .paww7r7a {
12
+ fill: currentColor;
13
+ d: path("M5.616 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20zm0-1H13.5V5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192M19 18.384V5.616q0-.231-.192-.424T18.384 5H14.5v14h3.885q.23 0 .423-.192t.192-.424");
14
+ }
15
+
16
+ </style>