@iconify-react/material-symbols 1.0.4 → 1.0.6

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 (70) 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/b/bolt-boost-rounded.jsx +22 -0
  10. package/components/b/bolt-boost.jsx +22 -0
  11. package/components/g/garage-door-open-outline-rounded.jsx +22 -0
  12. package/components/g/garage-door-open-outline.jsx +22 -0
  13. package/components/g/garage-door-open-rounded.jsx +22 -0
  14. package/components/g/garage-door-open.jsx +22 -0
  15. package/components/g/garage-door-outline-rounded.jsx +3 -3
  16. package/components/g/garage-door-outline.jsx +3 -3
  17. package/components/g/garage-door-rounded.jsx +3 -3
  18. package/components/g/garage-door.jsx +3 -3
  19. package/components/l/light-group-2-outline-rounded.jsx +22 -0
  20. package/components/l/light-group-2-outline.jsx +22 -0
  21. package/components/l/light-group-2-rounded.jsx +22 -0
  22. package/components/l/light-group-2.jsx +22 -0
  23. package/components/l/lightstrip-outline-sharp.jsx +22 -0
  24. package/components/l/lightstrip-outline.jsx +22 -0
  25. package/components/l/lightstrip-sharp.jsx +22 -0
  26. package/components/l/lightstrip.jsx +22 -0
  27. package/components/s/shades-closed-outline-rounded.jsx +22 -0
  28. package/components/s/shades-closed-outline.jsx +22 -0
  29. package/components/s/shades-closed-rounded.jsx +22 -0
  30. package/components/s/shades-closed.jsx +22 -0
  31. package/components/s/shades-outline-rounded.jsx +22 -0
  32. package/components/s/shades-outline.jsx +22 -0
  33. package/components/s/shades-rounded.jsx +22 -0
  34. package/components/s/shades.jsx +22 -0
  35. package/components/s/soundbar-outline-rounded.jsx +22 -0
  36. package/components/s/soundbar-outline-sharp.jsx +22 -0
  37. package/components/s/soundbar-outline.jsx +22 -0
  38. package/components/s/soundbar-rounded.jsx +22 -0
  39. package/components/s/soundbar-sharp.jsx +22 -0
  40. package/components/s/soundbar.jsx +22 -0
  41. package/components/s/speaker-2-outline-rounded.jsx +22 -0
  42. package/components/s/speaker-2-outline-sharp.jsx +22 -0
  43. package/components/s/speaker-2-outline.jsx +22 -0
  44. package/components/s/speaker-2-rounded.jsx +22 -0
  45. package/components/s/speaker-2-sharp.jsx +22 -0
  46. package/components/s/speaker-2.jsx +22 -0
  47. package/components/s/subwoofer-outline-rounded.jsx +22 -0
  48. package/components/s/subwoofer-outline-sharp.jsx +22 -0
  49. package/components/s/subwoofer-outline.jsx +22 -0
  50. package/components/s/subwoofer-rounded.jsx +22 -0
  51. package/components/s/subwoofer-sharp.jsx +22 -0
  52. package/components/s/subwoofer.jsx +22 -0
  53. package/components/s/switch-off-outline-rounded.jsx +22 -0
  54. package/components/s/switch-off-outline-sharp.jsx +22 -0
  55. package/components/s/switch-off-outline.jsx +22 -0
  56. package/components/s/switch-off-rounded.jsx +22 -0
  57. package/components/s/switch-off-sharp.jsx +22 -0
  58. package/components/s/switch-off.jsx +22 -0
  59. package/components/s/switch-outline-rounded.jsx +3 -3
  60. package/components/s/switch-outline-sharp.jsx +3 -3
  61. package/components/s/switch-outline.jsx +3 -3
  62. package/components/s/switch-rounded.jsx +3 -3
  63. package/components/s/switch-sharp.jsx +3 -3
  64. package/components/s/switch.jsx +3 -3
  65. package/components/v/vacuum-2-on-outline.jsx +22 -0
  66. package/components/v/vacuum-2-on.jsx +22 -0
  67. package/components/v/vacuum-2-outline.jsx +22 -0
  68. package/components/v/vacuum-2.jsx +22 -0
  69. package/iconify.json +2 -2
  70. package/package.json +233 -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>.izqyy-bc {
14
+ fill: currentColor;
15
+ d: path("M4 22V2h16v20zm4-5h8V7H8zm6-8v4h-4V9zm-2 11.25q.325 0 .538-.225t.212-.525q0-.325-.213-.537T12 18.75q-.3 0-.525.213t-.225.537q0 .3.225.525t.525.225m0-15q.325 0 .538-.225t.212-.525q0-.325-.213-.537T12 3.75q-.3 0-.525.213t-.225.537q0 .3.225.525T12 5.25");
16
+ }
17
+ </style><path class="izqyy-bc"/>`,
18
+ "fallback": "material-symbols: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>.d3vwkhbo {
14
+ fill: currentColor;
15
+ d: path("M18 2q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22H6q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2zm-2 5H8v10h8zm-2 2v4h-4V9zm-2 9.75q-.325 0-.537.213t-.213.537t.213.538t.537.212t.538-.213t.212-.537t-.213-.537T12 18.75m0-15q-.325 0-.537.213t-.213.537t.213.538t.537.212t.538-.213t.212-.537t-.213-.537T12 3.75");
16
+ }
17
+ </style><path class="d3vwkhbo"/>`,
18
+ "fallback": "material-symbols: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>.ztw--nbr {
13
+ "content": `<style>.vphdpeby {
14
14
  fill: currentColor;
15
- d: path("M15 17q.425 0 .713-.288T16 16V8q0-.425-.288-.712T15 7H9q-.425 0-.712.288T8 8v8q0 .425.288.713T9 17zm-5-2V9h4v6zm-5 6q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm0-2h14V5H5zM5 5v14zm7.713 6.713Q13 11.425 13 11t-.288-.712T12 10t-.712.288T11 11t.288.713T12 12t.713-.288");
15
+ d: path("M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm0-2h12V4H6zm3-3h6q.425 0 .713-.288T16 16V8q0-.425-.288-.712T15 7H9q-.425 0-.712.288T8 8v8q0 .425.288.713T9 17m1-2v-4h4v4zm2-8.75q.325 0 .538-.213t.212-.537t-.213-.537T12 4.75t-.537.213t-.213.537t.213.538t.537.212m0 13q.325 0 .538-.213t.212-.537t-.213-.537T12 17.75t-.537.213t-.213.537t.213.538t.537.212M12 12");
16
16
  }
17
- </style><path class="ztw--nbr"/>`,
17
+ </style><path class="vphdpeby"/>`,
18
18
  "fallback": "material-symbols: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>.z1q270b {
13
+ "content": `<style>.ol-woebh {
14
14
  fill: currentColor;
15
- d: path("M8 17h8V7H8zm2-2V9h4v6zm1-3h2v-2h-2zm-8 9V3h18v18zm2-2h14V5H5zm0 0V5z");
15
+ d: path("M4 22V2h16v20zm2-2h12V4H6zm2-3h8V7H8zm2-2v-4h4v4zm2-8.75q.3 0 .525-.213t.225-.537q0-.3-.225-.525T12 4.75q-.325 0-.537.225t-.213.525q0 .325.213.538T12 6.25m0 13q.3 0 .525-.213t.225-.537q0-.3-.225-.525T12 17.75q-.325 0-.537.225t-.213.525q0 .325.213.538t.537.212M12 12");
16
16
  }
17
- </style><path class="z1q270b"/>`,
17
+ </style><path class="ol-woebh"/>`,
18
18
  "fallback": "material-symbols: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>.gbcyjbc {
13
+ "content": `<style>.q5phdxbp {
14
14
  fill: currentColor;
15
- d: path("M8 17h8V7H8zm2-2V9h4v6zm1-3h2v-2h-2zm-6 9q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm0-2h14V5H5zM5 5v14z");
15
+ d: path("M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm0-2h12V4H6zm2-3h8V7H8zm2-2v-4h4v4zm2-8.75q.325 0 .538-.213t.212-.537t-.213-.537T12 4.75t-.537.213t-.213.537t.213.538t.537.212m0 13q.325 0 .538-.213t.212-.537t-.213-.537T12 17.75t-.537.213t-.213.537t.213.538t.537.212M12 12");
16
16
  }
17
- </style><path class="gbcyjbc"/>`,
17
+ </style><path class="q5phdxbp"/>`,
18
18
  "fallback": "material-symbols: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>.vco4_9bb {
13
+ "content": `<style>.zfj734kn {
14
14
  fill: currentColor;
15
- d: path("M15 17q.425 0 .713-.288T16 16V8q0-.425-.288-.712T15 7H9q-.425 0-.712.288T8 8v8q0 .425.288.713T9 17zm-5-2V9h4v6zm-5 6q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21zm7.713-9.287Q13 11.425 13 11t-.288-.712T12 10t-.712.288T11 11t.288.713T12 12t.713-.288");
15
+ d: path("M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm3-5h6q.425 0 .713-.288T16 16V8q0-.425-.288-.712T15 7H9q-.425 0-.712.288T8 8v8q0 .425.288.713T9 17m1-2v-4h4v4zm2-9.75q.325 0 .538-.213t.212-.537t-.213-.537T12 3.75t-.537.213t-.213.537t.213.538t.537.212m0 15q.325 0 .538-.213t.212-.537t-.213-.537T12 18.75t-.537.213t-.213.537t.213.538t.537.212");
16
16
  }
17
- </style><path class="vco4_9bb"/>`,
17
+ </style><path class="zfj734kn"/>`,
18
18
  "fallback": "material-symbols: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>.j45sik {
13
+ "content": `<style>.oxzne37y {
14
14
  fill: currentColor;
15
- d: path("M8 17h8V7H8zm2-2V9h4v6zm1-3h2v-2h-2zm-8 9V3h18v18z");
15
+ d: path("M4 22V2h16v20zm4-5h8V7H8zm2-2v-4h4v4zm2-9.75q.3 0 .525-.213t.225-.537q0-.3-.225-.525T12 3.75q-.325 0-.537.225t-.213.525q0 .325.213.538T12 5.25m0 15q.3 0 .525-.213t.225-.537q0-.3-.225-.525T12 18.75q-.325 0-.537.225t-.213.525q0 .325.213.538t.537.212");
16
16
  }
17
- </style><path class="j45sik"/>`,
17
+ </style><path class="oxzne37y"/>`,
18
18
  "fallback": "material-symbols: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>.cn49_jj {
13
+ "content": `<style>.v61hjeae {
14
14
  fill: currentColor;
15
- d: path("M8 17h8V7H8zm2-2V9h4v6zm1-3h2v-2h-2zm-6 9q-.825 0-1.412-.587T3 19V5q0-.825.588-1.412T5 3h14q.825 0 1.413.588T21 5v14q0 .825-.587 1.413T19 21z");
15
+ d: path("M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm2-5h8V7H8zm2-2v-4h4v4zm2-9.75q.325 0 .538-.213t.212-.537t-.213-.537T12 3.75t-.537.213t-.213.537t.213.538t.537.212m0 15q.325 0 .538-.213t.212-.537t-.213-.537T12 18.75t-.537.213t-.213.537t.213.538t.537.212");
16
16
  }
17
- </style><path class="cn49_jj"/>`,
17
+ </style><path class="v61hjeae"/>`,
18
18
  "fallback": "material-symbols: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>.wk561hbr {
14
+ fill: currentColor;
15
+ d: path("M4 21q.425 0 .713-.288T5 20t-.288-.712T4 19t-.712.288T3 20t.288.713T4 21m-2 2q.425 0 .713-.288T3 22t-.288-.712T2 21t-.712.288T1 22t.288.713T2 23m10-11q-.425 0-.712-.288T11 11t.288-.712T12 10t.713.288T13 11t-.288.713T12 12m-1.575 5l-1.35 1.35q.675.325 1.4.488T12 19t1.525-.162t1.4-.488L13.6 17zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.575.638 2.925t1.737 2.3l1.4-1.4q-.8-.7-1.287-1.687T7 12q0-2.075 1.463-3.537T12 7t3.538 1.463T17 12q0 1.15-.488 2.138t-1.287 1.687l1.4 1.4q1.1-.95 1.738-2.3T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 4q-1.25 0-2.125.875T9 12t.875 2.125T12 15t2.125-.875T15 12t-.875-2.125T12 9m0 12q-1.875 0-3.512-.712t-2.85-1.925t-1.925-2.85T3 12t.713-3.512t1.924-2.85t2.85-1.925T12 3t3.513.713t2.85 1.924t1.925 2.85T21 12t-.712 3.513t-1.925 2.85t-2.85 1.925T12 21m8 0q-.425 0-.712-.288T19 20t.288-.712T20 19t.713.288T21 20t-.288.713T20 21m2 2q-.425 0-.712-.288T21 22t.288-.712T22 21t.713.288T23 22t-.288.713T22 23");
16
+ }
17
+ </style><path class="wk561hbr"/>`,
18
+ "fallback": "material-symbols: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>.d037zhvv {
14
+ fill: currentColor;
15
+ d: path("M12 12q.425 0 .713-.288T13 11t-.288-.712T12 10t-.712.288T11 11t.288.713T12 12m-2.575 6H14.6l1.825 1.825q-.975.575-2.1.875T12 21t-2.312-.3t-2.088-.875zM12 3q1.875 0 3.513.713t2.85 1.924t1.925 2.85T21 12q0 1.975-.8 3.688t-2.15 2.962l-2.125-2.125q.95-.825 1.513-2T18 12q0-2.5-1.75-4.25T12 6T7.75 7.75T6 12q0 1.35.563 2.525t1.512 2L5.95 18.65Q4.6 17.4 3.8 15.687T3 12q0-1.875.713-3.512t1.924-2.85t2.85-1.925T12 3m0 5q1.65 0 2.825 1.175T16 12t-1.175 2.825T12 16t-2.825-1.175T8 12t1.175-2.825T12 8M4 21q.425 0 .713-.288T5 20t-.288-.712T4 19t-.712.288T3 20t.288.713T4 21m-2 2q.425 0 .713-.288T3 22t-.288-.712T2 21t-.712.288T1 22t.288.713T2 23m18-2q-.425 0-.712-.288T19 20t.288-.712T20 19t.713.288T21 20t-.288.713T20 21m2 2q-.425 0-.712-.288T21 22t.288-.712T22 21t.713.288T23 22t-.288.713T22 23");
16
+ }
17
+ </style><path class="d037zhvv"/>`,
18
+ "fallback": "material-symbols: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>.lky9_wdi {
14
+ fill: currentColor;
15
+ d: path("M12 12q-.425 0-.712-.288T11 11t.288-.712T12 10t.713.288T13 11t-.288.713T12 12m-1.575 5l-1.35 1.35q.675.325 1.4.488T12 19t1.525-.162t1.4-.488L13.6 17zM12 5q-1.45 0-2.725.55T7.05 7.05t-1.5 2.225T5 12q0 1.575.638 2.925t1.737 2.3l1.4-1.4q-.8-.7-1.287-1.687T7 12q0-2.075 1.463-3.537T12 7t3.538 1.463T17 12q0 1.15-.488 2.138t-1.287 1.687l1.4 1.4q1.1-.95 1.738-2.3T19 12q0-1.45-.55-2.725t-1.5-2.225t-2.225-1.5T12 5m0 4q-1.25 0-2.125.875T9 12t.875 2.125T12 15t2.125-.875T15 12t-.875-2.125T12 9m0 12q-1.875 0-3.512-.712t-2.85-1.925t-1.925-2.85T3 12t.713-3.512t1.924-2.85t2.85-1.925T12 3t3.513.713t2.85 1.924t1.925 2.85T21 12t-.712 3.513t-1.925 2.85t-2.85 1.925T12 21");
16
+ }
17
+ </style><path class="lky9_wdi"/>`,
18
+ "fallback": "material-symbols: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>.ymd5b9kb {
14
+ fill: currentColor;
15
+ d: path("M12 12q.425 0 .713-.288T13 11t-.288-.712T12 10t-.712.288T11 11t.288.713T12 12m-2.575 6H14.6l1.825 1.825q-.975.575-2.1.875T12 21t-2.312-.3t-2.088-.875zM12 3q1.875 0 3.513.713t2.85 1.924t1.925 2.85T21 12q0 1.975-.8 3.688t-2.15 2.962l-2.125-2.125q.95-.825 1.513-2T18 12q0-2.5-1.75-4.25T12 6T7.75 7.75T6 12q0 1.35.563 2.525t1.512 2L5.95 18.65Q4.6 17.4 3.8 15.687T3 12q0-1.875.713-3.512t1.924-2.85t2.85-1.925T12 3m0 5q1.65 0 2.825 1.175T16 12t-1.175 2.825T12 16t-2.825-1.175T8 12t1.175-2.825T12 8");
16
+ }
17
+ </style><path class="ymd5b9kb"/>`,
18
+ "fallback": "material-symbols:vacuum-2",
19
+ });
20
+ }
21
+
22
+ export default Component;
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "material-symbols",
3
3
  "info": {
4
4
  "name": "Material Symbols",
5
- "total": 15207,
5
+ "total": 15262,
6
6
  "author": {
7
7
  "name": "Google",
8
8
  "url": "https://github.com/google/material-design-icons"
@@ -27,5 +27,5 @@
27
27
  ],
28
28
  "palette": false
29
29
  },
30
- "lastModified": 1774681461
30
+ "lastModified": 1775804607
31
31
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-react/material-symbols",
3
3
  "type": "module",
4
- "version": "1.0.4",
4
+ "version": "1.0.6",
5
5
  "homepage": "https://icon-sets.iconify.design/material-symbols/",
6
6
  "bugs": "https://github.com/iconify/icon-sets/issues",
7
7
  "license": "Apache-2.0",
@@ -7686,6 +7686,38 @@
7686
7686
  "types": "./types/hqrkovbr.d.ts",
7687
7687
  "default": "./components/b/blinds.jsx"
7688
7688
  },
7689
+ "./blinds-2": {
7690
+ "types": "./types/hqrkovbr.d.ts",
7691
+ "default": "./components/b/blinds-2.jsx"
7692
+ },
7693
+ "./blinds-2-closed": {
7694
+ "types": "./types/hqrkovbr.d.ts",
7695
+ "default": "./components/b/blinds-2-closed.jsx"
7696
+ },
7697
+ "./blinds-2-closed-outline": {
7698
+ "types": "./types/hqrkovbr.d.ts",
7699
+ "default": "./components/b/blinds-2-closed-outline.jsx"
7700
+ },
7701
+ "./blinds-2-closed-outline-rounded": {
7702
+ "types": "./types/hqrkovbr.d.ts",
7703
+ "default": "./components/b/blinds-2-closed-outline-rounded.jsx"
7704
+ },
7705
+ "./blinds-2-closed-rounded": {
7706
+ "types": "./types/hqrkovbr.d.ts",
7707
+ "default": "./components/b/blinds-2-closed-rounded.jsx"
7708
+ },
7709
+ "./blinds-2-outline": {
7710
+ "types": "./types/hqrkovbr.d.ts",
7711
+ "default": "./components/b/blinds-2-outline.jsx"
7712
+ },
7713
+ "./blinds-2-outline-rounded": {
7714
+ "types": "./types/hqrkovbr.d.ts",
7715
+ "default": "./components/b/blinds-2-outline-rounded.jsx"
7716
+ },
7717
+ "./blinds-2-rounded": {
7718
+ "types": "./types/hqrkovbr.d.ts",
7719
+ "default": "./components/b/blinds-2-rounded.jsx"
7720
+ },
7689
7721
  "./blinds-closed": {
7690
7722
  "types": "./types/hqrkovbr.d.ts",
7691
7723
  "default": "./components/b/blinds-closed.jsx"
@@ -7958,6 +7990,14 @@
7958
7990
  "types": "./types/hqrkovbr.d.ts",
7959
7991
  "default": "./components/b/bolt.jsx"
7960
7992
  },
7993
+ "./bolt-boost": {
7994
+ "types": "./types/hqrkovbr.d.ts",
7995
+ "default": "./components/b/bolt-boost.jsx"
7996
+ },
7997
+ "./bolt-boost-rounded": {
7998
+ "types": "./types/hqrkovbr.d.ts",
7999
+ "default": "./components/b/bolt-boost-rounded.jsx"
8000
+ },
7961
8001
  "./bolt-outline": {
7962
8002
  "types": "./types/hqrkovbr.d.ts",
7963
8003
  "default": "./components/b/bolt-outline.jsx"
@@ -25946,6 +25986,22 @@
25946
25986
  "types": "./types/hqrkovbr.d.ts",
25947
25987
  "default": "./components/g/garage-door.jsx"
25948
25988
  },
25989
+ "./garage-door-open": {
25990
+ "types": "./types/hqrkovbr.d.ts",
25991
+ "default": "./components/g/garage-door-open.jsx"
25992
+ },
25993
+ "./garage-door-open-outline": {
25994
+ "types": "./types/hqrkovbr.d.ts",
25995
+ "default": "./components/g/garage-door-open-outline.jsx"
25996
+ },
25997
+ "./garage-door-open-outline-rounded": {
25998
+ "types": "./types/hqrkovbr.d.ts",
25999
+ "default": "./components/g/garage-door-open-outline-rounded.jsx"
26000
+ },
26001
+ "./garage-door-open-rounded": {
26002
+ "types": "./types/hqrkovbr.d.ts",
26003
+ "default": "./components/g/garage-door-open-rounded.jsx"
26004
+ },
25949
26005
  "./garage-door-outline": {
25950
26006
  "types": "./types/hqrkovbr.d.ts",
25951
26007
  "default": "./components/g/garage-door-outline.jsx"
@@ -32090,6 +32146,22 @@
32090
32146
  "types": "./types/hqrkovbr.d.ts",
32091
32147
  "default": "./components/l/light-group.jsx"
32092
32148
  },
32149
+ "./light-group-2": {
32150
+ "types": "./types/hqrkovbr.d.ts",
32151
+ "default": "./components/l/light-group-2.jsx"
32152
+ },
32153
+ "./light-group-2-outline": {
32154
+ "types": "./types/hqrkovbr.d.ts",
32155
+ "default": "./components/l/light-group-2-outline.jsx"
32156
+ },
32157
+ "./light-group-2-outline-rounded": {
32158
+ "types": "./types/hqrkovbr.d.ts",
32159
+ "default": "./components/l/light-group-2-outline-rounded.jsx"
32160
+ },
32161
+ "./light-group-2-rounded": {
32162
+ "types": "./types/hqrkovbr.d.ts",
32163
+ "default": "./components/l/light-group-2-rounded.jsx"
32164
+ },
32093
32165
  "./light-group-outline": {
32094
32166
  "types": "./types/hqrkovbr.d.ts",
32095
32167
  "default": "./components/l/light-group-outline.jsx"
@@ -32234,6 +32306,22 @@
32234
32306
  "types": "./types/hqrkovbr.d.ts",
32235
32307
  "default": "./components/l/lightning-stand-rounded.jsx"
32236
32308
  },
32309
+ "./lightstrip": {
32310
+ "types": "./types/hqrkovbr.d.ts",
32311
+ "default": "./components/l/lightstrip.jsx"
32312
+ },
32313
+ "./lightstrip-outline": {
32314
+ "types": "./types/hqrkovbr.d.ts",
32315
+ "default": "./components/l/lightstrip-outline.jsx"
32316
+ },
32317
+ "./lightstrip-outline-sharp": {
32318
+ "types": "./types/hqrkovbr.d.ts",
32319
+ "default": "./components/l/lightstrip-outline-sharp.jsx"
32320
+ },
32321
+ "./lightstrip-sharp": {
32322
+ "types": "./types/hqrkovbr.d.ts",
32323
+ "default": "./components/l/lightstrip-sharp.jsx"
32324
+ },
32237
32325
  "./line-axis": {
32238
32326
  "types": "./types/hqrkovbr.d.ts",
32239
32327
  "default": "./components/l/line-axis.jsx"
@@ -50254,6 +50342,38 @@
50254
50342
  "types": "./types/hqrkovbr.d.ts",
50255
50343
  "default": "./components/s/severe-cold-rounded.jsx"
50256
50344
  },
50345
+ "./shades": {
50346
+ "types": "./types/hqrkovbr.d.ts",
50347
+ "default": "./components/s/shades.jsx"
50348
+ },
50349
+ "./shades-closed": {
50350
+ "types": "./types/hqrkovbr.d.ts",
50351
+ "default": "./components/s/shades-closed.jsx"
50352
+ },
50353
+ "./shades-closed-outline": {
50354
+ "types": "./types/hqrkovbr.d.ts",
50355
+ "default": "./components/s/shades-closed-outline.jsx"
50356
+ },
50357
+ "./shades-closed-outline-rounded": {
50358
+ "types": "./types/hqrkovbr.d.ts",
50359
+ "default": "./components/s/shades-closed-outline-rounded.jsx"
50360
+ },
50361
+ "./shades-closed-rounded": {
50362
+ "types": "./types/hqrkovbr.d.ts",
50363
+ "default": "./components/s/shades-closed-rounded.jsx"
50364
+ },
50365
+ "./shades-outline": {
50366
+ "types": "./types/hqrkovbr.d.ts",
50367
+ "default": "./components/s/shades-outline.jsx"
50368
+ },
50369
+ "./shades-outline-rounded": {
50370
+ "types": "./types/hqrkovbr.d.ts",
50371
+ "default": "./components/s/shades-outline-rounded.jsx"
50372
+ },
50373
+ "./shades-rounded": {
50374
+ "types": "./types/hqrkovbr.d.ts",
50375
+ "default": "./components/s/shades-rounded.jsx"
50376
+ },
50257
50377
  "./shadow": {
50258
50378
  "types": "./types/hqrkovbr.d.ts",
50259
50379
  "default": "./components/s/shadow.jsx"
@@ -52442,6 +52562,30 @@
52442
52562
  "types": "./types/hqrkovbr.d.ts",
52443
52563
  "default": "./components/s/sound-sensing.jsx"
52444
52564
  },
52565
+ "./soundbar": {
52566
+ "types": "./types/hqrkovbr.d.ts",
52567
+ "default": "./components/s/soundbar.jsx"
52568
+ },
52569
+ "./soundbar-outline": {
52570
+ "types": "./types/hqrkovbr.d.ts",
52571
+ "default": "./components/s/soundbar-outline.jsx"
52572
+ },
52573
+ "./soundbar-outline-rounded": {
52574
+ "types": "./types/hqrkovbr.d.ts",
52575
+ "default": "./components/s/soundbar-outline-rounded.jsx"
52576
+ },
52577
+ "./soundbar-outline-sharp": {
52578
+ "types": "./types/hqrkovbr.d.ts",
52579
+ "default": "./components/s/soundbar-outline-sharp.jsx"
52580
+ },
52581
+ "./soundbar-rounded": {
52582
+ "types": "./types/hqrkovbr.d.ts",
52583
+ "default": "./components/s/soundbar-rounded.jsx"
52584
+ },
52585
+ "./soundbar-sharp": {
52586
+ "types": "./types/hqrkovbr.d.ts",
52587
+ "default": "./components/s/soundbar-sharp.jsx"
52588
+ },
52445
52589
  "./soup-kitchen": {
52446
52590
  "types": "./types/hqrkovbr.d.ts",
52447
52591
  "default": "./components/s/soup-kitchen.jsx"
@@ -52662,6 +52806,30 @@
52662
52806
  "types": "./types/hqrkovbr.d.ts",
52663
52807
  "default": "./components/s/speaker.jsx"
52664
52808
  },
52809
+ "./speaker-2": {
52810
+ "types": "./types/hqrkovbr.d.ts",
52811
+ "default": "./components/s/speaker-2.jsx"
52812
+ },
52813
+ "./speaker-2-outline": {
52814
+ "types": "./types/hqrkovbr.d.ts",
52815
+ "default": "./components/s/speaker-2-outline.jsx"
52816
+ },
52817
+ "./speaker-2-outline-rounded": {
52818
+ "types": "./types/hqrkovbr.d.ts",
52819
+ "default": "./components/s/speaker-2-outline-rounded.jsx"
52820
+ },
52821
+ "./speaker-2-outline-sharp": {
52822
+ "types": "./types/hqrkovbr.d.ts",
52823
+ "default": "./components/s/speaker-2-outline-sharp.jsx"
52824
+ },
52825
+ "./speaker-2-rounded": {
52826
+ "types": "./types/hqrkovbr.d.ts",
52827
+ "default": "./components/s/speaker-2-rounded.jsx"
52828
+ },
52829
+ "./speaker-2-sharp": {
52830
+ "types": "./types/hqrkovbr.d.ts",
52831
+ "default": "./components/s/speaker-2-sharp.jsx"
52832
+ },
52665
52833
  "./speaker-group": {
52666
52834
  "types": "./types/hqrkovbr.d.ts",
52667
52835
  "default": "./components/s/speaker-group.jsx"
@@ -55078,6 +55246,30 @@
55078
55246
  "types": "./types/hqrkovbr.d.ts",
55079
55247
  "default": "./components/s/subway-walk-rounded.jsx"
55080
55248
  },
55249
+ "./subwoofer": {
55250
+ "types": "./types/hqrkovbr.d.ts",
55251
+ "default": "./components/s/subwoofer.jsx"
55252
+ },
55253
+ "./subwoofer-outline": {
55254
+ "types": "./types/hqrkovbr.d.ts",
55255
+ "default": "./components/s/subwoofer-outline.jsx"
55256
+ },
55257
+ "./subwoofer-outline-rounded": {
55258
+ "types": "./types/hqrkovbr.d.ts",
55259
+ "default": "./components/s/subwoofer-outline-rounded.jsx"
55260
+ },
55261
+ "./subwoofer-outline-sharp": {
55262
+ "types": "./types/hqrkovbr.d.ts",
55263
+ "default": "./components/s/subwoofer-outline-sharp.jsx"
55264
+ },
55265
+ "./subwoofer-rounded": {
55266
+ "types": "./types/hqrkovbr.d.ts",
55267
+ "default": "./components/s/subwoofer-rounded.jsx"
55268
+ },
55269
+ "./subwoofer-sharp": {
55270
+ "types": "./types/hqrkovbr.d.ts",
55271
+ "default": "./components/s/subwoofer-sharp.jsx"
55272
+ },
55081
55273
  "./summarize": {
55082
55274
  "types": "./types/hqrkovbr.d.ts",
55083
55275
  "default": "./components/s/summarize.jsx"
@@ -55762,6 +55954,30 @@
55762
55954
  "types": "./types/hqrkovbr.d.ts",
55763
55955
  "default": "./components/s/switch-left-rounded.jsx"
55764
55956
  },
55957
+ "./switch-off": {
55958
+ "types": "./types/hqrkovbr.d.ts",
55959
+ "default": "./components/s/switch-off.jsx"
55960
+ },
55961
+ "./switch-off-outline": {
55962
+ "types": "./types/hqrkovbr.d.ts",
55963
+ "default": "./components/s/switch-off-outline.jsx"
55964
+ },
55965
+ "./switch-off-outline-rounded": {
55966
+ "types": "./types/hqrkovbr.d.ts",
55967
+ "default": "./components/s/switch-off-outline-rounded.jsx"
55968
+ },
55969
+ "./switch-off-outline-sharp": {
55970
+ "types": "./types/hqrkovbr.d.ts",
55971
+ "default": "./components/s/switch-off-outline-sharp.jsx"
55972
+ },
55973
+ "./switch-off-rounded": {
55974
+ "types": "./types/hqrkovbr.d.ts",
55975
+ "default": "./components/s/switch-off-rounded.jsx"
55976
+ },
55977
+ "./switch-off-sharp": {
55978
+ "types": "./types/hqrkovbr.d.ts",
55979
+ "default": "./components/s/switch-off-sharp.jsx"
55980
+ },
55765
55981
  "./switch-outline": {
55766
55982
  "types": "./types/hqrkovbr.d.ts",
55767
55983
  "default": "./components/s/switch-outline.jsx"
@@ -60434,6 +60650,22 @@
60434
60650
  "types": "./types/hqrkovbr.d.ts",
60435
60651
  "default": "./components/v/vacuum.jsx"
60436
60652
  },
60653
+ "./vacuum-2": {
60654
+ "types": "./types/hqrkovbr.d.ts",
60655
+ "default": "./components/v/vacuum-2.jsx"
60656
+ },
60657
+ "./vacuum-2-on": {
60658
+ "types": "./types/hqrkovbr.d.ts",
60659
+ "default": "./components/v/vacuum-2-on.jsx"
60660
+ },
60661
+ "./vacuum-2-on-outline": {
60662
+ "types": "./types/hqrkovbr.d.ts",
60663
+ "default": "./components/v/vacuum-2-on-outline.jsx"
60664
+ },
60665
+ "./vacuum-2-outline": {
60666
+ "types": "./types/hqrkovbr.d.ts",
60667
+ "default": "./components/v/vacuum-2-outline.jsx"
60668
+ },
60437
60669
  "./vacuum-outline": {
60438
60670
  "types": "./types/hqrkovbr.d.ts",
60439
60671
  "default": "./components/v/vacuum-outline.jsx"