@iconify-svelte/material-symbols-light 1.0.23 → 1.0.25

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 (50) hide show
  1. package/components/b/battery-charging-20-2-outline-rounded.svelte +17 -0
  2. package/components/b/battery-charging-20-2-rounded.svelte +17 -0
  3. package/components/b/battery-charging-20-2-sharp.svelte +17 -0
  4. package/components/b/battery-charging-20-2.svelte +17 -0
  5. package/components/b/battery-charging-30-2-outline-rounded.svelte +17 -0
  6. package/components/b/battery-charging-30-2-rounded.svelte +17 -0
  7. package/components/b/battery-charging-30-2-sharp.svelte +17 -0
  8. package/components/b/battery-charging-30-2.svelte +17 -0
  9. package/components/b/battery-charging-50-2-outline-rounded.svelte +17 -0
  10. package/components/b/battery-charging-50-2-rounded.svelte +17 -0
  11. package/components/b/battery-charging-50-2-sharp.svelte +17 -0
  12. package/components/b/battery-charging-50-2.svelte +17 -0
  13. package/components/b/battery-charging-60-2-outline-rounded.svelte +17 -0
  14. package/components/b/battery-charging-60-2-rounded.svelte +17 -0
  15. package/components/b/battery-charging-60-2-sharp.svelte +17 -0
  16. package/components/b/battery-charging-60-2.svelte +17 -0
  17. package/components/b/battery-charging-80-2-outline-rounded.svelte +17 -0
  18. package/components/b/battery-charging-80-2-rounded.svelte +17 -0
  19. package/components/b/battery-charging-80-2-sharp.svelte +17 -0
  20. package/components/b/battery-charging-80-2.svelte +17 -0
  21. package/components/b/battery-charging-full-2-outline-rounded.svelte +17 -0
  22. package/components/b/battery-charging-full-2-outline-sharp.svelte +17 -0
  23. package/components/b/battery-charging-full-2-outline.svelte +17 -0
  24. package/components/b/battery-charging-full-2-rounded.svelte +17 -0
  25. package/components/b/battery-charging-full-2-sharp.svelte +17 -0
  26. package/components/b/battery-charging-full-2.svelte +17 -0
  27. package/components/b/bolt-boost-rounded.svelte +17 -0
  28. package/components/b/bolt-boost.svelte +17 -0
  29. package/components/c/car-fan-recirculate-2-outline-rounded.svelte +17 -0
  30. package/components/c/car-fan-recirculate-2-outline-sharp.svelte +17 -0
  31. package/components/c/car-fan-recirculate-2-outline.svelte +17 -0
  32. package/components/c/car-fan-recirculate-2-rounded.svelte +17 -0
  33. package/components/c/car-fan-recirculate-2-sharp.svelte +17 -0
  34. package/components/c/car-fan-recirculate-2.svelte +17 -0
  35. package/components/c/car-fan-recirculate-outline-rounded.svelte +17 -0
  36. package/components/c/car-fan-recirculate-outline-sharp.svelte +17 -0
  37. package/components/c/car-fan-recirculate-outline.svelte +17 -0
  38. package/components/c/car-fan-recirculate-rounded.svelte +3 -3
  39. package/components/c/car-fan-recirculate-sharp.svelte +17 -0
  40. package/components/c/car-fan-recirculate.svelte +3 -3
  41. package/components/l/list-arrow-rounded.svelte +17 -0
  42. package/components/l/list-arrow.svelte +17 -0
  43. package/components/w/wifi-device-outline-rounded.svelte +17 -0
  44. package/components/w/wifi-device-outline-sharp.svelte +17 -0
  45. package/components/w/wifi-device-outline.svelte +17 -0
  46. package/components/w/wifi-device-rounded.svelte +17 -0
  47. package/components/w/wifi-device-sharp.svelte +17 -0
  48. package/components/w/wifi-device.svelte +17 -0
  49. package/iconify.json +2 -2
  50. package/package.json +185 -1
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="kd25c0br"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-20-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.kd25c0br) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="tejo3rbr"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-20-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.tejo3rbr) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="lx65sbb"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-20-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.lx65sbb) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H5.5v7h9.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="w0pet7y"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-20-2" {...props}></Icon>
11
+ <style>
12
+ :global(.w0pet7y) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H5.5v7h9.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ypfyq_ay"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-30-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.ypfyq_ay) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="wlgjghuj"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-30-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.wlgjghuj) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="jo83gef"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-30-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.jo83gef) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H7.5v7h7.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="jzshhhb"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-30-2" {...props}></Icon>
11
+ <style>
12
+ :global(.jzshhhb) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H7.5v7h7.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="yw1jvwbu"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-50-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.yw1jvwbu) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="v1bjliif"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-50-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.v1bjliif) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="x4-z3vs"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-50-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.x4-z3vs) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H9.5v7h5.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="anftz8b"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-50-2" {...props}></Icon>
11
+ <style>
12
+ :global(.anftz8b) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H9.5v7h5.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="kg4moabd"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-60-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.kg4moabd) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ddbolv0r"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-60-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.ddbolv0r) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="yxvqafb"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-60-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.yxvqafb) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H10.5v7h4.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="pikbk3b"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-60-2" {...props}></Icon>
11
+ <style>
12
+ :global(.pikbk3b) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H10.5v7h4.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="n--lxcbq"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-80-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.n--lxcbq) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="n_6y9hbp"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-80-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.n_6y9hbp) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="x1bobsb"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-80-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.x1bobsb) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H12.5v7h2.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="t6ovf3b"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-80-2" {...props}></Icon>
11
+ <style>
12
+ :global(.t6ovf3b) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H12.5v7h2.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="xe2cugpg"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.xe2cugpg) {
13
+ fill: currentColor;
14
+ d: path("M3.5 15.5v-7zm-.192 1q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H3.5v7h10.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="dqyiiib"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2-outline-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.dqyiiib) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-.812 1H3.5v7h11.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ne7lx8f"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2-outline" {...props}></Icon>
11
+ <style>
12
+ :global(.ne7lx8f) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H3.5v7h11.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="tj60ue5j"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.tj60ue5j) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .338.143q.124.144.124.357l-2.78 4.048q-.75 1.104-.131 2.278t1.959 1.174q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="fko9l_b"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.fko9l_b) {
13
+ fill: currentColor;
14
+ d: path("M2.5 16.5v-9h12.962l-4 5.742V15.5h3.192l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="op256cq"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:battery-charging-full-2" {...props}></Icon>
11
+ <style>
12
+ :global(.op256cq) {
13
+ fill: currentColor;
14
+ d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-4 5.742V15.5h3.192l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="waox7ihg"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bolt-boost-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.waox7ihg) {
13
+ fill: currentColor;
14
+ d: path("M13.69 19.379q-.069-.11-.044-.27l.816-5.648h-3.877q-.49 0-.727-.444t.055-.848l5.502-7.571q.106-.13.23-.159t.255.022t.199.16t.043.27l-.815 5.667h3.877q.49 0 .717.444t-.065.848l-5.483 7.552q-.106.13-.23.159t-.255-.022t-.198-.16M4.5 17.25q-.213 0-.356-.144T4 16.749t.144-.356t.356-.143h6.646q.25 0 .375.155t.125.341t-.125.345t-.375.159zm-1-4.75q-.213 0-.356-.144T3 11.999t.144-.356t.356-.143h3q.25 0 .375.155t.125.342t-.125.344t-.375.159zm1.98-4.75q-.212 0-.355-.144t-.144-.357t.144-.356t.356-.143h4.548q.25 0 .375.155t.125.341t-.125.345t-.375.159z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="y8sp8nb"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:bolt-boost" {...props}></Icon>
11
+ <style>
12
+ :global(.y8sp8nb) {
13
+ fill: currentColor;
14
+ d: path("m13.52 20l.942-6.539H8.994L15.846 4h.423l-.942 6.558h5.448L13.942 20zM4 17.25v-1h7.72l-.147 1zM3 12.5v-1h4.489l-.739 1zm1.98-4.75v-1h6.024l-.72 1z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="wsao2kka"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.wsao2kka) {
13
+ fill: currentColor;
14
+ d: path("M14.116 10.529q0-1.008-.723-1.71q-.722-.703-1.749-.703H8.173q-.171 0-.297.116t-.126.307q0 .17.126.306t.297.136h3.471q.652 0 1.12.458t.467 1.09t-.467 1.08t-1.12.449H9.048l.63-.612q.13-.129.13-.304t-.13-.303q-.128-.13-.303-.13t-.304.13L7.97 11.916q-.242.242-.242.577t.242.578l1.102 1.077q.129.129.304.12t.304-.14q.129-.147.129-.312q0-.166-.148-.295l-.612-.598h2.596q1.008 0 1.74-.703t.732-1.691M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197q0-.047.035-.091t.081-.044h6.48q.047 0 .091.044t.045.09q0 .683.552 1.198q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197q0-.047.035-.091t.081-.044H22v-4.092q0-.25-.163-.423t-.414-.193l-4.156-.342q-.211-.025-.363-.121t-.258-.258L14.048 6.5H6.342l-1.711 4.58q-.087.243-.298.38q-.212.136-.46.136H2.615q-.269 0-.442.173T2 12.212v3.942h2.73q.047 0 .091.044t.045.09q0 .683.552 1.198Q5.971 18 6.75 18M12 12.25");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="stefz8bn"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2-outline-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.stefz8bn) {
13
+ fill: currentColor;
14
+ d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l2.866 4.616l5.538.442v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.67l-5.142-.411l-2.81-4.573H6.342L4.44 11.596H2v4.558h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18M12 12.25");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="j2fz-cca"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2-outline" {...props}></Icon>
11
+ <style>
12
+ :global(.j2fz-cca) {
13
+ fill: currentColor;
14
+ d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m0-1q.779 0 1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.092q0-.25-.163-.423t-.414-.193l-4.565-.373l-2.81-4.573H6.342L4.44 11.596H2.614q-.269 0-.442.173T2 12.212v3.942h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18M12 12.25");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="xmvqiibq"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.xmvqiibq) {
13
+ fill: currentColor;
14
+ d: path("M14.116 10.529q0-1.008-.723-1.71q-.722-.703-1.749-.703H8.173q-.171 0-.297.116t-.126.307q0 .17.126.306t.297.136h3.471q.652 0 1.12.458t.467 1.09t-.467 1.08t-1.12.449H9.048l.63-.612q.13-.129.13-.304t-.13-.303q-.128-.13-.303-.13t-.304.13L7.97 11.916q-.242.242-.242.577t.242.578l1.102 1.077q.129.129.304.12t.304-.14q.129-.147.129-.312q0-.166-.148-.295l-.612-.598h2.596q1.008 0 1.74-.703t.732-1.691M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="c8al4bbh"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.c8al4bbh) {
13
+ fill: currentColor;
14
+ d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l2.866 4.616l5.538.442v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="mxsu58bk"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-2" {...props}></Icon>
11
+ <style>
12
+ :global(.mxsu58bk) {
13
+ fill: currentColor;
14
+ d: path("m9.385 14.442l.607-.626l-.944-.893h2.596q1.008 0 1.74-.703q.731-.703.731-1.691q0-1.008-.722-1.71q-.722-.703-1.749-.703H7.75v.865h3.894q.652 0 1.12.457t.467 1.09t-.467 1.081t-1.12.449H9.048l.944-.906l-.608-.613l-2 1.942zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l2.424 3.91l3.964.312q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="daqnkgbx"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.daqnkgbx) {
13
+ fill: currentColor;
14
+ d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.59.949q.14.213.067.396t-.244.287t-.354.08q-.182-.025-.323-.238L14.048 6.5H6.342l-1.711 4.58q-.087.243-.298.38q-.212.136-.46.136H2.615q-.269 0-.442.173T2 12.212v3.942h2.73q.047 0 .091.044t.045.09q0 .683.552 1.198Q5.971 18 6.75 18t1.332-.514t.552-1.197q0-.047.035-.091t.081-.044h6.48q.047 0 .091.044t.045.09q0 .683.552 1.198q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197q0-.047.035-.091t.081-.044H22v-4.092q0-.25-.163-.423t-.414-.193l-1.72-.15q-.25-.03-.371-.192q-.122-.162-.091-.344q.03-.183.161-.339t.38-.125l1.643.131q.69.056 1.133.539q.442.482.442 1.173v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19m8.034-7.442H9.625l.689-.689q.128-.128.128-.306t-.129-.307t-.313-.129t-.313.129l-1.18 1.179q-.241.242-.241.565t.242.566l1.179 1.198q.129.128.313.119q.185-.01.314-.139q.128-.128.128-.306t-.128-.307l-.689-.689h5.192q.187 0 .336-.068t.28-.205l5.411-6.311q.123-.154.11-.33t-.165-.297q-.155-.123-.332-.11t-.301.165z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="s4gga3bs"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-outline-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.s4gga3bs) {
13
+ fill: currentColor;
14
+ d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l1.214 1.971l-.683.792l-1.08-1.763H6.342L4.44 11.596H2v4.558h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18t1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.67l-3.284-.267l.811-.946l3.473.287v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="h3kgpx5o"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-outline" {...props}></Icon>
11
+ <style>
12
+ :global(.h3kgpx5o) {
13
+ fill: currentColor;
14
+ d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.772 1.266l-.682.793L14.048 6.5H6.342L4.44 11.596H2.614q-.269 0-.442.173T2 12.212v3.942h2.866v.135q0 .682.552 1.197Q5.971 18 6.75 18t1.332-.514q.552-.515.552-1.197v-.135h6.732v.135q0 .682.552 1.197q.553.514 1.332.514q.798 0 1.341-.514q.543-.515.543-1.197v-.135H22v-4.092q0-.25-.163-.423t-.414-.193l-2.707-.229l.811-.946l1.898.156q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
15
+ }
16
+
17
+ </style>
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
5
5
  let {width, height, ...props} = $props();
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="qsq7oebx"/>`;
8
+ const content = `<path class="lffh2c8g"/>`;
9
9
  </script>
10
10
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-rounded" {...props}></Icon>
11
11
  <style>
12
- :global(.qsq7oebx) {
12
+ :global(.lffh2c8g) {
13
13
  fill: currentColor;
14
- d: path("m3.94 11.596l1.606 1.587q.16.146.163.347t-.163.366t-.354.156t-.353-.156l-2.254-2.234q-.243-.243-.243-.566t.243-.565l2.254-2.235q.146-.146.344-.155t.363.155t.163.357t-.163.357l-1.605 1.586h6.494q.134 0 .26-.057t.22-.154l4.045-4.88q.14-.17.341-.179t.372.132q.171.14.18.329q.008.188-.132.36l-4.075 4.878q-.217.292-.54.432t-.696.14zM6.155 5q-.213 0-.357-.143q-.143-.144-.143-.357t.143-.357Q5.941 4 6.154 4h2.021q.323 0 .609.121q.285.121.503.338l1.567 1.51q.14.14.153.326t-.122.351q-.14.177-.357.2q-.216.021-.387-.15L8.598 5.173q-.096-.096-.202-.134T8.175 5zm7.654 15.025q.998 0 1.682-.674t.683-1.653q0-.96-.683-1.643q-.684-.684-1.682-.684t-1.682.684t-.684 1.643q0 .979.684 1.653t1.682.674m0 .975q-1.266 0-2.2-.802t-1.112-2.006H6.154q-.214 0-.357-.143t-.143-.357t.143-.356t.357-.144h4.342q.177-1.198 1.112-2.01q.934-.81 2.2-.81q1.265 0 2.2.81q.934.812 1.111 2.01h2.265q.27 0 .443-.173t.173-.442v-4.033q0-.885-.586-1.543q-.587-.659-1.472-.778l-1.361-.164q-.25-.03-.357-.204t-.076-.357t.174-.323t.393-.11l1.343.158q1.269.161 2.105 1.104q.837.942.837 2.217v4.033q0 .671-.472 1.143t-1.144.472H17.12q-.177 1.204-1.111 2.006q-.935.802-2.2.802");
14
+ d: path("M14.785 11.558h-5.16l.689-.689q.128-.128.128-.306t-.129-.307t-.313-.129t-.313.129l-1.18 1.179q-.241.242-.241.565t.242.566l1.179 1.198q.129.128.313.119q.185-.01.314-.139q.128-.128.128-.306t-.128-.307l-.689-.689h5.192q.187 0 .336-.068t.28-.205l5.411-6.311q.123-.154.11-.33t-.165-.297q-.155-.123-.332-.11t-.301.165zM6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1.808q-.348 0-.578-.23T1 16.346v-4.134q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.474.757q.137.217.11.484q-.029.268-.19.479l-1.5 1.748h-1.517l-1.556-1.556Q10.49 7.75 10 7.75t-.858.367l-3.025 3.025q-.367.368-.367.858t.367.858l3.025 3.025q.368.367.858.367t.858-.367l1.555-1.556h3.085q.273 0 .506-.109t.413-.32l2.842-3.31q.131-.142.296-.226t.376-.06l1.494.125q.69.05 1.133.536T23 12.139v4.207q0 .348-.23.578t-.578.23h-2.234q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19");
15
15
  }
16
16
 
17
17
  </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="shbkojes"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.shbkojes) {
13
+ fill: currentColor;
14
+ d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-6.558h2.73L5.617 5.5h8.98l1.214 1.971l-1.88 2.202h-1.516L10 7.26L5.26 12L10 16.74l2.414-2.413h3.65l3.463-4.056l3.473.287v6.596h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
15
+ }
16
+
17
+ </style>
@@ -5,13 +5,13 @@ import Icon from '@iconify/css-svelte';
5
5
  let {width, height, ...props} = $props();
6
6
 
7
7
  const viewBox = {"width":24,"height":24};
8
- const content = `<path class="tmt1pbcn"/>`;
8
+ const content = `<path class="zbtydbll"/>`;
9
9
  </script>
10
10
  <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:car-fan-recirculate" {...props}></Icon>
11
11
  <style>
12
- :global(.tmt1pbcn) {
12
+ :global(.zbtydbll) {
13
13
  fill: currentColor;
14
- d: path("M5.192 14.25L2.02 11.096l3.173-3.154l.708.708l-1.96 1.946h6.783l4.56-5.48l.756.665l-4.878 5.815h-7.22L5.9 13.542zm5.339-7.177L8.425 5H5.654V4h3.173l2.35 2.292zm3.277 12.952q.998 0 1.681-.674q.684-.674.684-1.653q0-.96-.683-1.643q-.684-.684-1.682-.684q-.999 0-1.682.684q-.684.684-.684 1.643q0 .979.684 1.653t1.682.674m0 .975q-1.266 0-2.2-.802t-1.112-2.006H5.654v-1h4.842q.177-1.198 1.112-2.01q.934-.81 2.2-.81q1.265 0 2.2.81q.934.812 1.111 2.01H20v-4.648q0-.885-.586-1.543q-.587-.659-1.472-.778l-2.258-.273l.75-.921l1.624.194q1.269.162 2.105 1.104T21 12.544v5.648h-3.88q-.178 1.204-1.112 2.006t-2.2.802");
14
+ d: path("M6.75 19q-.89 0-1.606-.518q-.715-.518-1.121-1.328H1v-4.942q0-.69.463-1.153t1.152-.463h1.116l1.538-4.155q.167-.427.545-.684T6.65 5.5h7.123q.39 0 .718.195t.546.51l.772 1.266l-1.878 2.202h-1.517L10 7.26L5.26 12L10 16.74l2.414-2.413h3.65l3.463-4.056l1.898.156q.69.056 1.133.539q.442.482.442 1.173v5.015h-3.042q-.387.81-1.102 1.328T17.25 19t-1.606-.518t-1.121-1.328H9.458q-.387.81-1.102 1.328T6.75 19M10 14.058l.627-.608l-1.002-1.008h5.566l5.936-6.923l-.663-.577l-5.68 6.616H9.626l1.002-1.008L10 9.942L7.942 12z");
15
15
  }
16
16
 
17
17
  </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="eo0bjupd"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-arrow-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.eo0bjupd) {
13
+ fill: currentColor;
14
+ d: path("M5.875 18.522q-.136-.053-.266-.18l-2.255-2.219q-.16-.14-.153-.341t.166-.36q.147-.147.338-.15t.337.138l1.631 1.548V6.404q0-.213.144-.357t.357-.143t.356.143t.143.357v10.554l1.65-1.548q.13-.14.327-.14t.346.146q.137.133.137.34t-.14.348L6.737 18.34q-.13.13-.27.182q-.138.053-.297.053t-.296-.053m6.99-.426q-.212 0-.356-.144t-.143-.356t.143-.356t.357-.144H20.5q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143zm0-5.577q-.212 0-.356-.144t-.143-.357t.143-.356t.357-.143H20.5q.213 0 .356.144q.144.144.144.357t-.144.356t-.356.143zm0-5.577q-.212 0-.356-.144q-.143-.144-.143-.356q0-.213.143-.357t.357-.143H20.5q.213 0 .356.144t.144.357t-.144.356t-.356.143z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="t_kt0dx"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:list-arrow" {...props}></Icon>
11
+ <style>
12
+ :global(.t_kt0dx) {
13
+ fill: currentColor;
14
+ d: path("M6.173 18.904L3 15.769l.708-.688l1.965 1.877V5.904h1v11.054l1.985-1.877l.688.688zm6.193-.808v-1H21v1zm0-5.577v-1H21v1zm0-5.577v-1H21v1z");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="parajnbd"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device-outline-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.parajnbd) {
13
+ fill: currentColor;
14
+ d: path("M7.308 19q-.96 0-1.634-.674T5 16.692V7.327q0-.96.674-1.643Q6.348 5 7.308 5h9.365q.979 0 1.653.674T19 7.327v9.365q0 .96-.684 1.634q-.683.674-1.643.674zm0 1h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20M12 9.23q-1.221 0-2.333.402t-1.956 1.224q-.17.154-.369.163t-.358-.13q-.165-.147-.168-.348t.143-.36q.98-.989 2.301-1.47q1.323-.48 2.74-.48q1.411 0 2.74.496q1.327.496 2.306 1.484q.14.141.128.336t-.178.341q-.16.14-.358.134t-.344-.141q-.844-.829-1.956-1.24q-1.111-.41-2.338-.41m0 3.75q-.448 0-.874.142q-.426.143-.772.44q-.237.16-.438.121q-.2-.038-.33-.184q-.128-.146-.135-.333t.158-.31q.518-.413 1.13-.644t1.267-.232t1.274.228q.618.23 1.135.643q.166.123.159.312q-.007.19-.136.336t-.33.184q-.2.039-.437-.12q-.365-.28-.794-.431q-.429-.152-.877-.152m-.52 3.54q-.21-.212-.21-.521t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="rnxjslgh"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device-outline-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.rnxjslgh) {
13
+ fill: currentColor;
14
+ d: path("M5 5h14v14H5zM4 4v16h16V4zm3.352 7.217l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="m2eezbbc"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device-outline" {...props}></Icon>
11
+ <style>
12
+ :global(.m2eezbbc) {
13
+ fill: currentColor;
14
+ d: path("M7.308 19q-.96 0-1.634-.674T5 16.692V7.327q0-.96.674-1.643Q6.348 5 7.308 5h9.365q.979 0 1.653.674T19 7.327v9.365q0 .96-.684 1.634q-.683.674-1.643.674zm0 1h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20m.044-8.783l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21M12 12");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="r46izmxs"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device-rounded" {...props}></Icon>
11
+ <style>
12
+ :global(.r46izmxs) {
13
+ fill: currentColor;
14
+ d: path("M7.308 20h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20M12 9.23q-1.221 0-2.333.402t-1.956 1.224q-.17.154-.369.163t-.358-.13q-.165-.147-.168-.348t.143-.36q.98-.989 2.301-1.47q1.323-.48 2.74-.48q1.411 0 2.74.496q1.327.496 2.306 1.484q.14.141.128.336t-.178.341q-.16.14-.358.134t-.344-.141q-.844-.829-1.956-1.24q-1.111-.41-2.338-.41m0 3.75q-.448 0-.874.142q-.426.143-.772.44q-.237.16-.438.121q-.2-.038-.33-.184q-.128-.146-.135-.333t.158-.31q.518-.413 1.13-.644t1.267-.232t1.274.228q.618.23 1.135.643q.166.123.159.312q-.007.19-.136.336t-.33.184q-.2.039-.437-.12q-.365-.28-.794-.431q-.429-.152-.877-.152m-.52 3.54q-.21-.212-.21-.521t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="ivy9bach"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device-sharp" {...props}></Icon>
11
+ <style>
12
+ :global(.ivy9bach) {
13
+ fill: currentColor;
14
+ d: path("M4 4v16h16V4zm3.352 7.217l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
15
+ }
16
+
17
+ </style>
@@ -0,0 +1,17 @@
1
+ <script>
2
+ import Icon from '@iconify/css-svelte';
3
+
4
+ /** @type {{width?: string; height?: string;}} */
5
+ let {width, height, ...props} = $props();
6
+
7
+ const viewBox = {"width":24,"height":24};
8
+ const content = `<path class="tcrr3jbj"/>`;
9
+ </script>
10
+ <Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols-light:wifi-device" {...props}></Icon>
11
+ <style>
12
+ :global(.tcrr3jbj) {
13
+ fill: currentColor;
14
+ d: path("M7.308 20h9.365q1.38 0 2.354-.963q.973-.964.973-2.345V7.327q0-1.38-.973-2.354Q18.054 4 16.673 4H7.308q-1.381 0-2.344.973Q4 5.946 4 7.327v9.365q0 1.362.973 2.335T7.308 20m.044-8.783l-.74-.663q.973-1.16 2.404-1.741T12 8.23q1.54 0 2.966.582t2.398 1.74l-.741.664q-.856-.988-2.068-1.487T12 9.23t-2.564.49q-1.223.49-2.084 1.497m2.62 2.677l-.733-.694q.534-.584 1.252-.902q.719-.317 1.515-.317t1.518.317t1.257.902l-.727.694q-.408-.432-.94-.673q-.531-.24-1.114-.24t-1.111.24q-.53.24-.918.673m1.509 2.626q-.21-.21-.21-.52t.21-.52t.52-.21t.52.21t.21.52t-.21.52t-.52.21t-.52-.21");
15
+ }
16
+
17
+ </style>
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "material-symbols-light",
3
3
  "info": {
4
4
  "name": "Material Symbols Light",
5
- "total": 15333,
5
+ "total": 15379,
6
6
  "author": {
7
7
  "name": "Google",
8
8
  "url": "https://github.com/google/material-design-icons"
@@ -28,5 +28,5 @@
28
28
  ],
29
29
  "palette": false
30
30
  },
31
- "lastModified": 1775277932
31
+ "lastModified": 1776313469
32
32
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-svelte/material-symbols-light",
3
3
  "type": "module",
4
- "version": "1.0.23",
4
+ "version": "1.0.25",
5
5
  "homepage": "https://icon-sets.iconify.design/material-symbols-light/",
6
6
  "bugs": "https://github.com/iconify/icon-sets/issues",
7
7
  "license": "Apache-2.0",
@@ -6502,6 +6502,22 @@
6502
6502
  "types": "./types/gfwqskkx.d.ts",
6503
6503
  "svelte": "./components/b/battery-charging-20.svelte"
6504
6504
  },
6505
+ "./battery-charging-20-2": {
6506
+ "types": "./types/gfwqskkx.d.ts",
6507
+ "svelte": "./components/b/battery-charging-20-2.svelte"
6508
+ },
6509
+ "./battery-charging-20-2-outline-rounded": {
6510
+ "types": "./types/gfwqskkx.d.ts",
6511
+ "svelte": "./components/b/battery-charging-20-2-outline-rounded.svelte"
6512
+ },
6513
+ "./battery-charging-20-2-rounded": {
6514
+ "types": "./types/gfwqskkx.d.ts",
6515
+ "svelte": "./components/b/battery-charging-20-2-rounded.svelte"
6516
+ },
6517
+ "./battery-charging-20-2-sharp": {
6518
+ "types": "./types/gfwqskkx.d.ts",
6519
+ "svelte": "./components/b/battery-charging-20-2-sharp.svelte"
6520
+ },
6505
6521
  "./battery-charging-20-rounded": {
6506
6522
  "types": "./types/gfwqskkx.d.ts",
6507
6523
  "svelte": "./components/b/battery-charging-20-rounded.svelte"
@@ -6514,6 +6530,22 @@
6514
6530
  "types": "./types/gfwqskkx.d.ts",
6515
6531
  "svelte": "./components/b/battery-charging-30.svelte"
6516
6532
  },
6533
+ "./battery-charging-30-2": {
6534
+ "types": "./types/gfwqskkx.d.ts",
6535
+ "svelte": "./components/b/battery-charging-30-2.svelte"
6536
+ },
6537
+ "./battery-charging-30-2-outline-rounded": {
6538
+ "types": "./types/gfwqskkx.d.ts",
6539
+ "svelte": "./components/b/battery-charging-30-2-outline-rounded.svelte"
6540
+ },
6541
+ "./battery-charging-30-2-rounded": {
6542
+ "types": "./types/gfwqskkx.d.ts",
6543
+ "svelte": "./components/b/battery-charging-30-2-rounded.svelte"
6544
+ },
6545
+ "./battery-charging-30-2-sharp": {
6546
+ "types": "./types/gfwqskkx.d.ts",
6547
+ "svelte": "./components/b/battery-charging-30-2-sharp.svelte"
6548
+ },
6517
6549
  "./battery-charging-30-rounded": {
6518
6550
  "types": "./types/gfwqskkx.d.ts",
6519
6551
  "svelte": "./components/b/battery-charging-30-rounded.svelte"
@@ -6526,6 +6558,22 @@
6526
6558
  "types": "./types/gfwqskkx.d.ts",
6527
6559
  "svelte": "./components/b/battery-charging-50.svelte"
6528
6560
  },
6561
+ "./battery-charging-50-2": {
6562
+ "types": "./types/gfwqskkx.d.ts",
6563
+ "svelte": "./components/b/battery-charging-50-2.svelte"
6564
+ },
6565
+ "./battery-charging-50-2-outline-rounded": {
6566
+ "types": "./types/gfwqskkx.d.ts",
6567
+ "svelte": "./components/b/battery-charging-50-2-outline-rounded.svelte"
6568
+ },
6569
+ "./battery-charging-50-2-rounded": {
6570
+ "types": "./types/gfwqskkx.d.ts",
6571
+ "svelte": "./components/b/battery-charging-50-2-rounded.svelte"
6572
+ },
6573
+ "./battery-charging-50-2-sharp": {
6574
+ "types": "./types/gfwqskkx.d.ts",
6575
+ "svelte": "./components/b/battery-charging-50-2-sharp.svelte"
6576
+ },
6529
6577
  "./battery-charging-50-rounded": {
6530
6578
  "types": "./types/gfwqskkx.d.ts",
6531
6579
  "svelte": "./components/b/battery-charging-50-rounded.svelte"
@@ -6538,6 +6586,22 @@
6538
6586
  "types": "./types/gfwqskkx.d.ts",
6539
6587
  "svelte": "./components/b/battery-charging-60.svelte"
6540
6588
  },
6589
+ "./battery-charging-60-2": {
6590
+ "types": "./types/gfwqskkx.d.ts",
6591
+ "svelte": "./components/b/battery-charging-60-2.svelte"
6592
+ },
6593
+ "./battery-charging-60-2-outline-rounded": {
6594
+ "types": "./types/gfwqskkx.d.ts",
6595
+ "svelte": "./components/b/battery-charging-60-2-outline-rounded.svelte"
6596
+ },
6597
+ "./battery-charging-60-2-rounded": {
6598
+ "types": "./types/gfwqskkx.d.ts",
6599
+ "svelte": "./components/b/battery-charging-60-2-rounded.svelte"
6600
+ },
6601
+ "./battery-charging-60-2-sharp": {
6602
+ "types": "./types/gfwqskkx.d.ts",
6603
+ "svelte": "./components/b/battery-charging-60-2-sharp.svelte"
6604
+ },
6541
6605
  "./battery-charging-60-rounded": {
6542
6606
  "types": "./types/gfwqskkx.d.ts",
6543
6607
  "svelte": "./components/b/battery-charging-60-rounded.svelte"
@@ -6550,6 +6614,22 @@
6550
6614
  "types": "./types/gfwqskkx.d.ts",
6551
6615
  "svelte": "./components/b/battery-charging-80.svelte"
6552
6616
  },
6617
+ "./battery-charging-80-2": {
6618
+ "types": "./types/gfwqskkx.d.ts",
6619
+ "svelte": "./components/b/battery-charging-80-2.svelte"
6620
+ },
6621
+ "./battery-charging-80-2-outline-rounded": {
6622
+ "types": "./types/gfwqskkx.d.ts",
6623
+ "svelte": "./components/b/battery-charging-80-2-outline-rounded.svelte"
6624
+ },
6625
+ "./battery-charging-80-2-rounded": {
6626
+ "types": "./types/gfwqskkx.d.ts",
6627
+ "svelte": "./components/b/battery-charging-80-2-rounded.svelte"
6628
+ },
6629
+ "./battery-charging-80-2-sharp": {
6630
+ "types": "./types/gfwqskkx.d.ts",
6631
+ "svelte": "./components/b/battery-charging-80-2-sharp.svelte"
6632
+ },
6553
6633
  "./battery-charging-80-rounded": {
6554
6634
  "types": "./types/gfwqskkx.d.ts",
6555
6635
  "svelte": "./components/b/battery-charging-80-rounded.svelte"
@@ -6574,6 +6654,30 @@
6574
6654
  "types": "./types/gfwqskkx.d.ts",
6575
6655
  "svelte": "./components/b/battery-charging-full.svelte"
6576
6656
  },
6657
+ "./battery-charging-full-2": {
6658
+ "types": "./types/gfwqskkx.d.ts",
6659
+ "svelte": "./components/b/battery-charging-full-2.svelte"
6660
+ },
6661
+ "./battery-charging-full-2-outline": {
6662
+ "types": "./types/gfwqskkx.d.ts",
6663
+ "svelte": "./components/b/battery-charging-full-2-outline.svelte"
6664
+ },
6665
+ "./battery-charging-full-2-outline-rounded": {
6666
+ "types": "./types/gfwqskkx.d.ts",
6667
+ "svelte": "./components/b/battery-charging-full-2-outline-rounded.svelte"
6668
+ },
6669
+ "./battery-charging-full-2-outline-sharp": {
6670
+ "types": "./types/gfwqskkx.d.ts",
6671
+ "svelte": "./components/b/battery-charging-full-2-outline-sharp.svelte"
6672
+ },
6673
+ "./battery-charging-full-2-rounded": {
6674
+ "types": "./types/gfwqskkx.d.ts",
6675
+ "svelte": "./components/b/battery-charging-full-2-rounded.svelte"
6676
+ },
6677
+ "./battery-charging-full-2-sharp": {
6678
+ "types": "./types/gfwqskkx.d.ts",
6679
+ "svelte": "./components/b/battery-charging-full-2-sharp.svelte"
6680
+ },
6577
6681
  "./battery-charging-full-outline": {
6578
6682
  "types": "./types/gfwqskkx.d.ts",
6579
6683
  "svelte": "./components/b/battery-charging-full-outline.svelte"
@@ -7490,6 +7594,14 @@
7490
7594
  "types": "./types/gfwqskkx.d.ts",
7491
7595
  "svelte": "./components/b/bolt.svelte"
7492
7596
  },
7597
+ "./bolt-boost": {
7598
+ "types": "./types/gfwqskkx.d.ts",
7599
+ "svelte": "./components/b/bolt-boost.svelte"
7600
+ },
7601
+ "./bolt-boost-rounded": {
7602
+ "types": "./types/gfwqskkx.d.ts",
7603
+ "svelte": "./components/b/bolt-boost-rounded.svelte"
7604
+ },
7493
7605
  "./bolt-outline": {
7494
7606
  "types": "./types/gfwqskkx.d.ts",
7495
7607
  "svelte": "./components/b/bolt-outline.svelte"
@@ -10186,10 +10298,50 @@
10186
10298
  "types": "./types/gfwqskkx.d.ts",
10187
10299
  "svelte": "./components/c/car-fan-recirculate.svelte"
10188
10300
  },
10301
+ "./car-fan-recirculate-2": {
10302
+ "types": "./types/gfwqskkx.d.ts",
10303
+ "svelte": "./components/c/car-fan-recirculate-2.svelte"
10304
+ },
10305
+ "./car-fan-recirculate-2-outline": {
10306
+ "types": "./types/gfwqskkx.d.ts",
10307
+ "svelte": "./components/c/car-fan-recirculate-2-outline.svelte"
10308
+ },
10309
+ "./car-fan-recirculate-2-outline-rounded": {
10310
+ "types": "./types/gfwqskkx.d.ts",
10311
+ "svelte": "./components/c/car-fan-recirculate-2-outline-rounded.svelte"
10312
+ },
10313
+ "./car-fan-recirculate-2-outline-sharp": {
10314
+ "types": "./types/gfwqskkx.d.ts",
10315
+ "svelte": "./components/c/car-fan-recirculate-2-outline-sharp.svelte"
10316
+ },
10317
+ "./car-fan-recirculate-2-rounded": {
10318
+ "types": "./types/gfwqskkx.d.ts",
10319
+ "svelte": "./components/c/car-fan-recirculate-2-rounded.svelte"
10320
+ },
10321
+ "./car-fan-recirculate-2-sharp": {
10322
+ "types": "./types/gfwqskkx.d.ts",
10323
+ "svelte": "./components/c/car-fan-recirculate-2-sharp.svelte"
10324
+ },
10325
+ "./car-fan-recirculate-outline": {
10326
+ "types": "./types/gfwqskkx.d.ts",
10327
+ "svelte": "./components/c/car-fan-recirculate-outline.svelte"
10328
+ },
10329
+ "./car-fan-recirculate-outline-rounded": {
10330
+ "types": "./types/gfwqskkx.d.ts",
10331
+ "svelte": "./components/c/car-fan-recirculate-outline-rounded.svelte"
10332
+ },
10333
+ "./car-fan-recirculate-outline-sharp": {
10334
+ "types": "./types/gfwqskkx.d.ts",
10335
+ "svelte": "./components/c/car-fan-recirculate-outline-sharp.svelte"
10336
+ },
10189
10337
  "./car-fan-recirculate-rounded": {
10190
10338
  "types": "./types/gfwqskkx.d.ts",
10191
10339
  "svelte": "./components/c/car-fan-recirculate-rounded.svelte"
10192
10340
  },
10341
+ "./car-fan-recirculate-sharp": {
10342
+ "types": "./types/gfwqskkx.d.ts",
10343
+ "svelte": "./components/c/car-fan-recirculate-sharp.svelte"
10344
+ },
10193
10345
  "./car-gear": {
10194
10346
  "types": "./types/gfwqskkx.d.ts",
10195
10347
  "svelte": "./components/c/car-gear.svelte"
@@ -31674,6 +31826,14 @@
31674
31826
  "types": "./types/gfwqskkx.d.ts",
31675
31827
  "svelte": "./components/l/list-alt-sharp.svelte"
31676
31828
  },
31829
+ "./list-arrow": {
31830
+ "types": "./types/gfwqskkx.d.ts",
31831
+ "svelte": "./components/l/list-arrow.svelte"
31832
+ },
31833
+ "./list-arrow-rounded": {
31834
+ "types": "./types/gfwqskkx.d.ts",
31835
+ "svelte": "./components/l/list-arrow-rounded.svelte"
31836
+ },
31677
31837
  "./list-rounded": {
31678
31838
  "types": "./types/gfwqskkx.d.ts",
31679
31839
  "svelte": "./components/l/list-rounded.svelte"
@@ -61790,6 +61950,30 @@
61790
61950
  "types": "./types/gfwqskkx.d.ts",
61791
61951
  "svelte": "./components/w/wifi-channel-rounded.svelte"
61792
61952
  },
61953
+ "./wifi-device": {
61954
+ "types": "./types/gfwqskkx.d.ts",
61955
+ "svelte": "./components/w/wifi-device.svelte"
61956
+ },
61957
+ "./wifi-device-outline": {
61958
+ "types": "./types/gfwqskkx.d.ts",
61959
+ "svelte": "./components/w/wifi-device-outline.svelte"
61960
+ },
61961
+ "./wifi-device-outline-rounded": {
61962
+ "types": "./types/gfwqskkx.d.ts",
61963
+ "svelte": "./components/w/wifi-device-outline-rounded.svelte"
61964
+ },
61965
+ "./wifi-device-outline-sharp": {
61966
+ "types": "./types/gfwqskkx.d.ts",
61967
+ "svelte": "./components/w/wifi-device-outline-sharp.svelte"
61968
+ },
61969
+ "./wifi-device-rounded": {
61970
+ "types": "./types/gfwqskkx.d.ts",
61971
+ "svelte": "./components/w/wifi-device-rounded.svelte"
61972
+ },
61973
+ "./wifi-device-sharp": {
61974
+ "types": "./types/gfwqskkx.d.ts",
61975
+ "svelte": "./components/w/wifi-device-sharp.svelte"
61976
+ },
61793
61977
  "./wifi-find": {
61794
61978
  "types": "./types/gfwqskkx.d.ts",
61795
61979
  "svelte": "./components/w/wifi-find.svelte"