@iconify-react/material-symbols-light 1.0.4 → 1.0.5

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 (68) hide show
  1. package/components/b/blinds-2-closed-outline-rounded.jsx +22 -0
  2. package/components/b/blinds-2-closed-outline.jsx +22 -0
  3. package/components/b/blinds-2-closed-rounded.jsx +22 -0
  4. package/components/b/blinds-2-closed.jsx +22 -0
  5. package/components/b/blinds-2-outline-rounded.jsx +22 -0
  6. package/components/b/blinds-2-outline.jsx +22 -0
  7. package/components/b/blinds-2-rounded.jsx +22 -0
  8. package/components/b/blinds-2.jsx +22 -0
  9. package/components/g/garage-door-open-outline-rounded.jsx +22 -0
  10. package/components/g/garage-door-open-outline.jsx +22 -0
  11. package/components/g/garage-door-open-rounded.jsx +22 -0
  12. package/components/g/garage-door-open.jsx +22 -0
  13. package/components/g/garage-door-outline-rounded.jsx +3 -3
  14. package/components/g/garage-door-outline.jsx +3 -3
  15. package/components/g/garage-door-rounded.jsx +3 -3
  16. package/components/g/garage-door.jsx +3 -3
  17. package/components/l/light-group-2-outline-rounded.jsx +22 -0
  18. package/components/l/light-group-2-outline.jsx +22 -0
  19. package/components/l/light-group-2-rounded.jsx +22 -0
  20. package/components/l/light-group-2.jsx +22 -0
  21. package/components/l/lightstrip-outline-sharp.jsx +22 -0
  22. package/components/l/lightstrip-outline.jsx +22 -0
  23. package/components/l/lightstrip-sharp.jsx +22 -0
  24. package/components/l/lightstrip.jsx +22 -0
  25. package/components/s/shades-closed-outline-rounded.jsx +22 -0
  26. package/components/s/shades-closed-outline.jsx +22 -0
  27. package/components/s/shades-closed-rounded.jsx +22 -0
  28. package/components/s/shades-closed.jsx +22 -0
  29. package/components/s/shades-outline-rounded.jsx +22 -0
  30. package/components/s/shades-outline.jsx +22 -0
  31. package/components/s/shades-rounded.jsx +22 -0
  32. package/components/s/shades.jsx +22 -0
  33. package/components/s/soundbar-outline-rounded.jsx +22 -0
  34. package/components/s/soundbar-outline-sharp.jsx +22 -0
  35. package/components/s/soundbar-outline.jsx +22 -0
  36. package/components/s/soundbar-rounded.jsx +22 -0
  37. package/components/s/soundbar-sharp.jsx +22 -0
  38. package/components/s/soundbar.jsx +22 -0
  39. package/components/s/speaker-2-outline-rounded.jsx +22 -0
  40. package/components/s/speaker-2-outline-sharp.jsx +22 -0
  41. package/components/s/speaker-2-outline.jsx +22 -0
  42. package/components/s/speaker-2-rounded.jsx +22 -0
  43. package/components/s/speaker-2-sharp.jsx +22 -0
  44. package/components/s/speaker-2.jsx +22 -0
  45. package/components/s/subwoofer-outline-rounded.jsx +22 -0
  46. package/components/s/subwoofer-outline-sharp.jsx +22 -0
  47. package/components/s/subwoofer-outline.jsx +22 -0
  48. package/components/s/subwoofer-rounded.jsx +22 -0
  49. package/components/s/subwoofer-sharp.jsx +22 -0
  50. package/components/s/subwoofer.jsx +22 -0
  51. package/components/s/switch-off-outline-rounded.jsx +22 -0
  52. package/components/s/switch-off-outline-sharp.jsx +22 -0
  53. package/components/s/switch-off-outline.jsx +22 -0
  54. package/components/s/switch-off-rounded.jsx +22 -0
  55. package/components/s/switch-off-sharp.jsx +22 -0
  56. package/components/s/switch-off.jsx +22 -0
  57. package/components/s/switch-outline-rounded.jsx +3 -3
  58. package/components/s/switch-outline-sharp.jsx +3 -3
  59. package/components/s/switch-outline.jsx +3 -3
  60. package/components/s/switch-rounded.jsx +3 -3
  61. package/components/s/switch-sharp.jsx +3 -3
  62. package/components/s/switch.jsx +3 -3
  63. package/components/v/vacuum-2-on-outline.jsx +22 -0
  64. package/components/v/vacuum-2-on.jsx +22 -0
  65. package/components/v/vacuum-2-outline.jsx +22 -0
  66. package/components/v/vacuum-2.jsx +22 -0
  67. package/iconify.json +2 -2
  68. package/package.json +225 -1
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.dmp2z3bi {
14
+ fill: currentColor;
15
+ d: path("M4.98 21V3H19v18zm3.732-4.73h6.577V7.711H8.71zm5.577-7.558v4.672H9.712V8.712zM11.98 19.307q.292 0 .482-.201t.19-.469q0-.29-.188-.493q-.19-.203-.479-.203q-.267 0-.472.203q-.206.203-.206.493q0 .268.202.469t.47.2m.017-13.288q.29 0 .483-.2q.193-.202.193-.47q0-.29-.193-.492q-.193-.203-.488-.203q-.273 0-.469.203q-.196.202-.196.493q0 .267.2.468q.202.201.47.201");
16
+ }
17
+ </style><path class="dmp2z3bi"/>`,
18
+ "fallback": "material-symbols-light:switch-off-sharp",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.l5170xbs {
14
+ fill: currentColor;
15
+ d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zm-2.096 4.712H8.73v8.557h6.577zm-1 1v4.673H9.73V8.71zm-2.305 9.25q-.29 0-.483.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m.02-13.288q-.29 0-.484.19t-.193.48t.19.483t.48.193t.483-.19t.193-.48t-.19-.483q-.189-.193-.48-.193");
16
+ }
17
+ </style><path class="l5170xbs"/>`,
18
+ "fallback": "material-symbols-light:switch-off",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.fbx4aacn {
13
+ "content": `<style>.e60bw83j {
14
14
  fill: currentColor;
15
- d: path("M14.692 16.5q.349 0 .578-.23t.23-.578V8.308q0-.348-.23-.578t-.578-.23H9.308q-.348 0-.578.23t-.23.578v7.384q0 .349.23.578t.578.23zm-5.192-1v-7h5v7zM5.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-1h12.769q.23 0 .423-.192t.192-.424V5.616q0-.231-.192-.424T18.384 5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192M5 5v14zm7.578 6.578q.23-.23.23-.578t-.23-.578t-.578-.23t-.578.23t-.23.578t.23.578t.578.23t.578-.23");
15
+ d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.452.173q-.183.173-.183.443v14.769q0 .269.183.442q.182.173.452.173m2.903-3.712h4.959q.35 0 .58-.232t.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-8.75q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 12.288q.29 0 .483-.19t.193-.48t-.19-.492t-.48-.203t-.483.203t-.193.493t.19.48t.48.189M12 12");
16
16
  }
17
- </style><path class="fbx4aacn"/>`,
17
+ </style><path class="e60bw83j"/>`,
18
18
  "fallback": "material-symbols-light:switch-outline-rounded",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.vu4sn0p {
13
+ "content": `<style>.jx7nwqbb {
14
14
  fill: currentColor;
15
- d: path("M8.5 16.5h7v-9h-7zm1-1v-7h5v7zm1.692-3.692h1.616v-1.616h-1.616zM4 20V4h16v16zm1-1h14V5H5zm0 0V5z");
15
+ d: path("M4.98 21V3H19v18zm1-1H18V4H5.98zm2.712-3.712h6.577V7.731H8.692zm1-1v-4.672h4.577v4.673zm2.303-8.73q.267 0 .472-.203q.206-.203.206-.493q0-.268-.202-.469t-.471-.2q-.292 0-.482.2q-.191.201-.191.469q0 .29.189.493q.19.203.479.203m0 12.269q.267 0 .472-.193q.206-.193.206-.489q0-.272-.202-.468T12 17.481q-.292 0-.482.2q-.191.201-.191.47q0 .29.189.483q.19.193.479.193M12 12");
16
16
  }
17
- </style><path class="vu4sn0p"/>`,
17
+ </style><path class="jx7nwqbb"/>`,
18
18
  "fallback": "material-symbols-light:switch-outline-sharp",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.yaztp9bo {
13
+ "content": `<style>.dg51wqbo {
14
14
  fill: currentColor;
15
- d: path("M8.5 16.5h7v-9h-7zm1-1v-7h5v7zm1.692-3.692h1.616v-1.616h-1.616zM5.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-1h12.769q.23 0 .423-.192t.192-.424V5.616q0-.231-.192-.424T18.384 5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192M5 5v14z");
15
+ d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.443.173T6 4.616v14.769q0 .269.173.442t.443.173m2.096-3.712h6.577V7.731H8.71zm1-1v-4.672h4.577v4.673zM12 6.538q.287 0 .48-.193t.193-.48t-.193-.48t-.48-.193t-.48.194t-.193.48t.193.48t.48.193m0 12.288q.287 0 .48-.193t.193-.48t-.193-.49t-.48-.202t-.48.203t-.193.489t.193.48t.48.193M12 12");
16
16
  }
17
- </style><path class="yaztp9bo"/>`,
17
+ </style><path class="dg51wqbo"/>`,
18
18
  "fallback": "material-symbols-light:switch-outline",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.qung0mbm {
13
+ "content": `<style>.oje4zcbr {
14
14
  fill: currentColor;
15
- d: path("M14.692 16.5q.349 0 .578-.23t.23-.578V8.308q0-.348-.23-.578t-.578-.23H9.308q-.348 0-.578.23t-.23.578v7.384q0 .349.23.578t.578.23zm-5.192-1v-7h5v7zM5.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 20zm6.962-8.422q.23-.23.23-.578t-.23-.578t-.578-.23t-.578.23t-.23.578t.23.578t.578.23t.578-.23");
15
+ d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm2.903-4.711h4.959q.35 0 .58-.233q.23-.232.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-9.25q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 13.288q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.193t-.483.19t-.193.48t.19.483t.48.193");
16
16
  }
17
- </style><path class="qung0mbm"/>`,
17
+ </style><path class="oje4zcbr"/>`,
18
18
  "fallback": "material-symbols-light:switch-rounded",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.mymnw-y {
13
+ "content": `<style>.on3e_0is {
14
14
  fill: currentColor;
15
- d: path("M8.5 16.5h7v-9h-7zm1-1v-7h5v7zm1.692-3.692h1.616v-1.616h-1.616zM4 20V4h16v16z");
15
+ d: path("M4.98 21V3H19v18zm3.712-4.711h6.577V7.73H8.692zm1-1v-4.673h4.577v4.673zm2.303-9.231q.267 0 .472-.203q.206-.203.206-.493q0-.268-.202-.469t-.471-.2q-.292 0-.482.2q-.191.201-.191.469q0 .29.189.493q.19.203.479.203m-.006 13.288q.273 0 .469-.203t.196-.493q0-.267-.201-.468q-.2-.201-.469-.201q-.29 0-.483.2q-.193.201-.193.47q0 .29.193.492q.193.203.488.203");
16
16
  }
17
- </style><path class="mymnw-y"/>`,
17
+ </style><path class="on3e_0is"/>`,
18
18
  "fallback": "material-symbols-light:switch-sharp",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.ebg3kyb {
13
+ "content": `<style>.u14p06bk {
14
14
  fill: currentColor;
15
- d: path("M8.5 16.5h7v-9h-7zm1-1v-7h5v7zm1.692-3.692h1.616v-1.616h-1.616zM5.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 20z");
15
+ d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm2.096-4.711h6.577V7.73H8.71zm1-1v-4.673h4.577v4.673zm2.285-9.25q.29 0 .483-.19t.193-.48t-.19-.484t-.48-.193t-.483.19t-.193.48t.19.483t.48.193m0 13.289q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.193t-.483.19t-.193.48t.19.483t.48.193");
16
16
  }
17
- </style><path class="ebg3kyb"/>`,
17
+ </style><path class="u14p06bk"/>`,
18
18
  "fallback": "material-symbols-light:switch",
19
19
  });
20
20
  }
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.p69-_gsf {
14
+ fill: currentColor;
15
+ d: path("M4 20.73q.31 0 .52-.22t.21-.51q0-.31-.21-.52T4 19.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m-2 2q.31 0 .52-.22t.21-.51q0-.31-.21-.52T2 21.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m10-10.922q-.31 0-.52-.22t-.21-.511q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m-1.671 4.443l-1.812 1.812q.771.46 1.65.698q.88.24 1.833.24t1.833-.24q.879-.239 1.65-.699l-1.825-1.811zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.69.724 3.108t1.959 2.367l1.958-1.958q-.858-.565-1.375-1.485q-.516-.92-.516-2.032q0-1.767 1.241-3.009T12 7.75t3.009 1.241Q16.25 10.233 16.25 12q0 1.112-.516 2.041q-.517.93-1.374 1.495l1.957 1.958q1.235-.95 1.959-2.377T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 3.75q-1.365 0-2.308.952T8.75 12q0 1.366.942 2.308T12 15.25q1.346 0 2.298-.942T15.25 12q0-1.346-.952-2.298T12 8.75M12 20q-1.664 0-3.118-.626T6.34 17.66t-1.714-2.542T4 12t.626-3.118T6.34 6.34t2.542-1.714T12 4t3.118.626T17.66 6.34t1.714 2.542T20 12t-.626 3.118t-1.714 2.542t-2.542 1.714T12 20m8 .73q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m2 2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22");
16
+ }
17
+ </style><path class="p69-_gsf"/>`,
18
+ "fallback": "material-symbols-light:vacuum-2-on-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.taj_51ch {
14
+ fill: currentColor;
15
+ d: path("M12 11.808q.29 0 .51-.22t.22-.511q0-.31-.22-.52t-.51-.21q-.31 0-.52.21t-.21.52q0 .29.21.51t.52.22m-2.575 5.655h5.137l1.46 1.44q-.899.517-1.908.808Q13.104 20 12 20t-2.11-.29q-1.007-.29-1.906-.808zM12 4q1.644 0 3.099.636q1.455.635 2.542 1.723T19.365 8.9Q20 10.356 20 12q0 1.956-.858 3.591q-.857 1.636-2.284 2.732l-1.818-1.817q1.085-.729 1.744-1.914q.658-1.184.658-2.592q0-2.27-1.586-3.866T12 6.538T8.144 8.134T6.558 12q0 1.408.658 2.592q.659 1.185 1.744 1.914l-1.818 1.817q-1.426-1.096-2.284-2.732Q4 13.956 4 12q0-1.644.626-3.099T6.34 6.359t2.542-1.724Q10.337 4 12 4m0 3.539q1.842 0 3.152 1.309q1.31 1.31 1.31 3.152q0 1.862-1.31 3.162T12 16.462q-1.861 0-3.161-1.3T7.539 12q0-1.842 1.3-3.152T12 7.538M4 20.731q.31 0 .52-.22T4.73 20q0-.31-.21-.52T4 19.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m-2 2q.31 0 .52-.22t.21-.51q0-.31-.21-.52T2 21.27q-.29 0-.51.21t-.22.52q0 .29.22.51t.51.22m18-2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m2 2q-.31 0-.52-.22t-.21-.51q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22");
16
+ }
17
+ </style><path class="taj_51ch"/>`,
18
+ "fallback": "material-symbols-light:vacuum-2-on",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.o94w2abf {
14
+ fill: currentColor;
15
+ d: path("M12 11.808q-.31 0-.52-.22t-.21-.511q0-.31.21-.52t.52-.21q.29 0 .51.21t.22.52q0 .29-.22.51t-.51.22m-1.671 4.443l-1.812 1.812q.771.46 1.65.698q.88.24 1.833.24t1.833-.24q.879-.239 1.65-.699l-1.825-1.811zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.69.724 3.108t1.959 2.367l1.958-1.958q-.858-.565-1.375-1.485q-.516-.92-.516-2.032q0-1.767 1.241-3.009T12 7.75t3.009 1.241Q16.25 10.233 16.25 12q0 1.112-.516 2.041q-.517.93-1.374 1.495l1.957 1.958q1.235-.95 1.959-2.377T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 3.75q-1.365 0-2.308.952T8.75 12q0 1.366.942 2.308T12 15.25q1.346 0 2.298-.942T15.25 12q0-1.346-.952-2.298T12 8.75M12 20q-1.664 0-3.118-.626T6.34 17.66t-1.714-2.542T4 12t.626-3.118T6.34 6.34t2.542-1.714T12 4t3.118.626T17.66 6.34t1.714 2.542T20 12t-.626 3.118t-1.714 2.542t-2.542 1.714T12 20");
16
+ }
17
+ </style><path class="o94w2abf"/>`,
18
+ "fallback": "material-symbols-light:vacuum-2-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.mw26v2bx {
14
+ fill: currentColor;
15
+ d: path("M12 11.808q.29 0 .51-.22t.22-.511q0-.31-.22-.52t-.51-.21q-.31 0-.52.21t-.21.52q0 .29.21.51t.52.22m-2.575 5.655h5.137l1.46 1.44q-.899.517-1.908.808Q13.104 20 12 20t-2.11-.29q-1.007-.29-1.906-.808zM12 4q1.644 0 3.099.636q1.455.635 2.542 1.723T19.365 8.9Q20 10.356 20 12q0 1.956-.858 3.591q-.857 1.636-2.284 2.732l-1.818-1.817q1.085-.729 1.744-1.914q.658-1.184.658-2.592q0-2.27-1.586-3.866T12 6.538T8.144 8.134T6.558 12q0 1.408.658 2.592q.659 1.185 1.744 1.914l-1.818 1.817q-1.426-1.096-2.284-2.732Q4 13.956 4 12q0-1.644.626-3.099T6.34 6.359t2.542-1.724Q10.337 4 12 4m0 3.539q1.842 0 3.152 1.309q1.31 1.31 1.31 3.152q0 1.862-1.31 3.162T12 16.462q-1.861 0-3.161-1.3T7.539 12q0-1.842 1.3-3.152T12 7.538");
16
+ }
17
+ </style><path class="mw26v2bx"/>`,
18
+ "fallback": "material-symbols-light:vacuum-2",
19
+ });
20
+ }
21
+
22
+ export default Component;
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": 15280,
5
+ "total": 15333,
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": 1774681438
31
+ "lastModified": 1775277932
32
32
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-react/material-symbols-light",
3
3
  "type": "module",
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
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",
@@ -7218,6 +7218,38 @@
7218
7218
  "types": "./types/hqrkovbr.d.ts",
7219
7219
  "default": "./components/b/blinds.jsx"
7220
7220
  },
7221
+ "./blinds-2": {
7222
+ "types": "./types/hqrkovbr.d.ts",
7223
+ "default": "./components/b/blinds-2.jsx"
7224
+ },
7225
+ "./blinds-2-closed": {
7226
+ "types": "./types/hqrkovbr.d.ts",
7227
+ "default": "./components/b/blinds-2-closed.jsx"
7228
+ },
7229
+ "./blinds-2-closed-outline": {
7230
+ "types": "./types/hqrkovbr.d.ts",
7231
+ "default": "./components/b/blinds-2-closed-outline.jsx"
7232
+ },
7233
+ "./blinds-2-closed-outline-rounded": {
7234
+ "types": "./types/hqrkovbr.d.ts",
7235
+ "default": "./components/b/blinds-2-closed-outline-rounded.jsx"
7236
+ },
7237
+ "./blinds-2-closed-rounded": {
7238
+ "types": "./types/hqrkovbr.d.ts",
7239
+ "default": "./components/b/blinds-2-closed-rounded.jsx"
7240
+ },
7241
+ "./blinds-2-outline": {
7242
+ "types": "./types/hqrkovbr.d.ts",
7243
+ "default": "./components/b/blinds-2-outline.jsx"
7244
+ },
7245
+ "./blinds-2-outline-rounded": {
7246
+ "types": "./types/hqrkovbr.d.ts",
7247
+ "default": "./components/b/blinds-2-outline-rounded.jsx"
7248
+ },
7249
+ "./blinds-2-rounded": {
7250
+ "types": "./types/hqrkovbr.d.ts",
7251
+ "default": "./components/b/blinds-2-rounded.jsx"
7252
+ },
7221
7253
  "./blinds-closed": {
7222
7254
  "types": "./types/hqrkovbr.d.ts",
7223
7255
  "default": "./components/b/blinds-closed.jsx"
@@ -25150,6 +25182,22 @@
25150
25182
  "types": "./types/hqrkovbr.d.ts",
25151
25183
  "default": "./components/g/garage-door.jsx"
25152
25184
  },
25185
+ "./garage-door-open": {
25186
+ "types": "./types/hqrkovbr.d.ts",
25187
+ "default": "./components/g/garage-door-open.jsx"
25188
+ },
25189
+ "./garage-door-open-outline": {
25190
+ "types": "./types/hqrkovbr.d.ts",
25191
+ "default": "./components/g/garage-door-open-outline.jsx"
25192
+ },
25193
+ "./garage-door-open-outline-rounded": {
25194
+ "types": "./types/hqrkovbr.d.ts",
25195
+ "default": "./components/g/garage-door-open-outline-rounded.jsx"
25196
+ },
25197
+ "./garage-door-open-rounded": {
25198
+ "types": "./types/hqrkovbr.d.ts",
25199
+ "default": "./components/g/garage-door-open-rounded.jsx"
25200
+ },
25153
25201
  "./garage-door-outline": {
25154
25202
  "types": "./types/hqrkovbr.d.ts",
25155
25203
  "default": "./components/g/garage-door-outline.jsx"
@@ -31078,6 +31126,22 @@
31078
31126
  "types": "./types/hqrkovbr.d.ts",
31079
31127
  "default": "./components/l/light-group.jsx"
31080
31128
  },
31129
+ "./light-group-2": {
31130
+ "types": "./types/hqrkovbr.d.ts",
31131
+ "default": "./components/l/light-group-2.jsx"
31132
+ },
31133
+ "./light-group-2-outline": {
31134
+ "types": "./types/hqrkovbr.d.ts",
31135
+ "default": "./components/l/light-group-2-outline.jsx"
31136
+ },
31137
+ "./light-group-2-outline-rounded": {
31138
+ "types": "./types/hqrkovbr.d.ts",
31139
+ "default": "./components/l/light-group-2-outline-rounded.jsx"
31140
+ },
31141
+ "./light-group-2-rounded": {
31142
+ "types": "./types/hqrkovbr.d.ts",
31143
+ "default": "./components/l/light-group-2-rounded.jsx"
31144
+ },
31081
31145
  "./light-group-outline": {
31082
31146
  "types": "./types/hqrkovbr.d.ts",
31083
31147
  "default": "./components/l/light-group-outline.jsx"
@@ -31222,6 +31286,22 @@
31222
31286
  "types": "./types/hqrkovbr.d.ts",
31223
31287
  "default": "./components/l/lightning-stand-rounded.jsx"
31224
31288
  },
31289
+ "./lightstrip": {
31290
+ "types": "./types/hqrkovbr.d.ts",
31291
+ "default": "./components/l/lightstrip.jsx"
31292
+ },
31293
+ "./lightstrip-outline": {
31294
+ "types": "./types/hqrkovbr.d.ts",
31295
+ "default": "./components/l/lightstrip-outline.jsx"
31296
+ },
31297
+ "./lightstrip-outline-sharp": {
31298
+ "types": "./types/hqrkovbr.d.ts",
31299
+ "default": "./components/l/lightstrip-outline-sharp.jsx"
31300
+ },
31301
+ "./lightstrip-sharp": {
31302
+ "types": "./types/hqrkovbr.d.ts",
31303
+ "default": "./components/l/lightstrip-sharp.jsx"
31304
+ },
31225
31305
  "./line-axis": {
31226
31306
  "types": "./types/hqrkovbr.d.ts",
31227
31307
  "default": "./components/l/line-axis.jsx"
@@ -48642,6 +48722,38 @@
48642
48722
  "types": "./types/hqrkovbr.d.ts",
48643
48723
  "default": "./components/s/severe-cold-rounded.jsx"
48644
48724
  },
48725
+ "./shades": {
48726
+ "types": "./types/hqrkovbr.d.ts",
48727
+ "default": "./components/s/shades.jsx"
48728
+ },
48729
+ "./shades-closed": {
48730
+ "types": "./types/hqrkovbr.d.ts",
48731
+ "default": "./components/s/shades-closed.jsx"
48732
+ },
48733
+ "./shades-closed-outline": {
48734
+ "types": "./types/hqrkovbr.d.ts",
48735
+ "default": "./components/s/shades-closed-outline.jsx"
48736
+ },
48737
+ "./shades-closed-outline-rounded": {
48738
+ "types": "./types/hqrkovbr.d.ts",
48739
+ "default": "./components/s/shades-closed-outline-rounded.jsx"
48740
+ },
48741
+ "./shades-closed-rounded": {
48742
+ "types": "./types/hqrkovbr.d.ts",
48743
+ "default": "./components/s/shades-closed-rounded.jsx"
48744
+ },
48745
+ "./shades-outline": {
48746
+ "types": "./types/hqrkovbr.d.ts",
48747
+ "default": "./components/s/shades-outline.jsx"
48748
+ },
48749
+ "./shades-outline-rounded": {
48750
+ "types": "./types/hqrkovbr.d.ts",
48751
+ "default": "./components/s/shades-outline-rounded.jsx"
48752
+ },
48753
+ "./shades-rounded": {
48754
+ "types": "./types/hqrkovbr.d.ts",
48755
+ "default": "./components/s/shades-rounded.jsx"
48756
+ },
48645
48757
  "./shadow": {
48646
48758
  "types": "./types/hqrkovbr.d.ts",
48647
48759
  "default": "./components/s/shadow.jsx"
@@ -50714,6 +50826,30 @@
50714
50826
  "types": "./types/hqrkovbr.d.ts",
50715
50827
  "default": "./components/s/sound-sampler-rounded.jsx"
50716
50828
  },
50829
+ "./soundbar": {
50830
+ "types": "./types/hqrkovbr.d.ts",
50831
+ "default": "./components/s/soundbar.jsx"
50832
+ },
50833
+ "./soundbar-outline": {
50834
+ "types": "./types/hqrkovbr.d.ts",
50835
+ "default": "./components/s/soundbar-outline.jsx"
50836
+ },
50837
+ "./soundbar-outline-rounded": {
50838
+ "types": "./types/hqrkovbr.d.ts",
50839
+ "default": "./components/s/soundbar-outline-rounded.jsx"
50840
+ },
50841
+ "./soundbar-outline-sharp": {
50842
+ "types": "./types/hqrkovbr.d.ts",
50843
+ "default": "./components/s/soundbar-outline-sharp.jsx"
50844
+ },
50845
+ "./soundbar-rounded": {
50846
+ "types": "./types/hqrkovbr.d.ts",
50847
+ "default": "./components/s/soundbar-rounded.jsx"
50848
+ },
50849
+ "./soundbar-sharp": {
50850
+ "types": "./types/hqrkovbr.d.ts",
50851
+ "default": "./components/s/soundbar-sharp.jsx"
50852
+ },
50717
50853
  "./soup-kitchen": {
50718
50854
  "types": "./types/hqrkovbr.d.ts",
50719
50855
  "default": "./components/s/soup-kitchen.jsx"
@@ -50930,6 +51066,30 @@
50930
51066
  "types": "./types/hqrkovbr.d.ts",
50931
51067
  "default": "./components/s/speaker.jsx"
50932
51068
  },
51069
+ "./speaker-2": {
51070
+ "types": "./types/hqrkovbr.d.ts",
51071
+ "default": "./components/s/speaker-2.jsx"
51072
+ },
51073
+ "./speaker-2-outline": {
51074
+ "types": "./types/hqrkovbr.d.ts",
51075
+ "default": "./components/s/speaker-2-outline.jsx"
51076
+ },
51077
+ "./speaker-2-outline-rounded": {
51078
+ "types": "./types/hqrkovbr.d.ts",
51079
+ "default": "./components/s/speaker-2-outline-rounded.jsx"
51080
+ },
51081
+ "./speaker-2-outline-sharp": {
51082
+ "types": "./types/hqrkovbr.d.ts",
51083
+ "default": "./components/s/speaker-2-outline-sharp.jsx"
51084
+ },
51085
+ "./speaker-2-rounded": {
51086
+ "types": "./types/hqrkovbr.d.ts",
51087
+ "default": "./components/s/speaker-2-rounded.jsx"
51088
+ },
51089
+ "./speaker-2-sharp": {
51090
+ "types": "./types/hqrkovbr.d.ts",
51091
+ "default": "./components/s/speaker-2-sharp.jsx"
51092
+ },
50933
51093
  "./speaker-group": {
50934
51094
  "types": "./types/hqrkovbr.d.ts",
50935
51095
  "default": "./components/s/speaker-group.jsx"
@@ -53314,6 +53474,30 @@
53314
53474
  "types": "./types/hqrkovbr.d.ts",
53315
53475
  "default": "./components/s/subway-walk-rounded.jsx"
53316
53476
  },
53477
+ "./subwoofer": {
53478
+ "types": "./types/hqrkovbr.d.ts",
53479
+ "default": "./components/s/subwoofer.jsx"
53480
+ },
53481
+ "./subwoofer-outline": {
53482
+ "types": "./types/hqrkovbr.d.ts",
53483
+ "default": "./components/s/subwoofer-outline.jsx"
53484
+ },
53485
+ "./subwoofer-outline-rounded": {
53486
+ "types": "./types/hqrkovbr.d.ts",
53487
+ "default": "./components/s/subwoofer-outline-rounded.jsx"
53488
+ },
53489
+ "./subwoofer-outline-sharp": {
53490
+ "types": "./types/hqrkovbr.d.ts",
53491
+ "default": "./components/s/subwoofer-outline-sharp.jsx"
53492
+ },
53493
+ "./subwoofer-rounded": {
53494
+ "types": "./types/hqrkovbr.d.ts",
53495
+ "default": "./components/s/subwoofer-rounded.jsx"
53496
+ },
53497
+ "./subwoofer-sharp": {
53498
+ "types": "./types/hqrkovbr.d.ts",
53499
+ "default": "./components/s/subwoofer-sharp.jsx"
53500
+ },
53317
53501
  "./summarize": {
53318
53502
  "types": "./types/hqrkovbr.d.ts",
53319
53503
  "default": "./components/s/summarize.jsx"
@@ -54002,6 +54186,30 @@
54002
54186
  "types": "./types/hqrkovbr.d.ts",
54003
54187
  "default": "./components/s/switch-left-rounded.jsx"
54004
54188
  },
54189
+ "./switch-off": {
54190
+ "types": "./types/hqrkovbr.d.ts",
54191
+ "default": "./components/s/switch-off.jsx"
54192
+ },
54193
+ "./switch-off-outline": {
54194
+ "types": "./types/hqrkovbr.d.ts",
54195
+ "default": "./components/s/switch-off-outline.jsx"
54196
+ },
54197
+ "./switch-off-outline-rounded": {
54198
+ "types": "./types/hqrkovbr.d.ts",
54199
+ "default": "./components/s/switch-off-outline-rounded.jsx"
54200
+ },
54201
+ "./switch-off-outline-sharp": {
54202
+ "types": "./types/hqrkovbr.d.ts",
54203
+ "default": "./components/s/switch-off-outline-sharp.jsx"
54204
+ },
54205
+ "./switch-off-rounded": {
54206
+ "types": "./types/hqrkovbr.d.ts",
54207
+ "default": "./components/s/switch-off-rounded.jsx"
54208
+ },
54209
+ "./switch-off-sharp": {
54210
+ "types": "./types/hqrkovbr.d.ts",
54211
+ "default": "./components/s/switch-off-sharp.jsx"
54212
+ },
54005
54213
  "./switch-outline": {
54006
54214
  "types": "./types/hqrkovbr.d.ts",
54007
54215
  "default": "./components/s/switch-outline.jsx"
@@ -58578,6 +58786,22 @@
58578
58786
  "types": "./types/hqrkovbr.d.ts",
58579
58787
  "default": "./components/v/vacuum.jsx"
58580
58788
  },
58789
+ "./vacuum-2": {
58790
+ "types": "./types/hqrkovbr.d.ts",
58791
+ "default": "./components/v/vacuum-2.jsx"
58792
+ },
58793
+ "./vacuum-2-on": {
58794
+ "types": "./types/hqrkovbr.d.ts",
58795
+ "default": "./components/v/vacuum-2-on.jsx"
58796
+ },
58797
+ "./vacuum-2-on-outline": {
58798
+ "types": "./types/hqrkovbr.d.ts",
58799
+ "default": "./components/v/vacuum-2-on-outline.jsx"
58800
+ },
58801
+ "./vacuum-2-outline": {
58802
+ "types": "./types/hqrkovbr.d.ts",
58803
+ "default": "./components/v/vacuum-2-outline.jsx"
58804
+ },
58581
58805
  "./vacuum-outline": {
58582
58806
  "types": "./types/hqrkovbr.d.ts",
58583
58807
  "default": "./components/v/vacuum-outline.jsx"