@iconify-react/material-symbols 1.0.17 → 1.0.18

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 (46) hide show
  1. package/components/c/car-spark-outline-rounded.jsx +22 -0
  2. package/components/c/car-spark-outline-sharp.jsx +22 -0
  3. package/components/c/car-spark-outline.jsx +22 -0
  4. package/components/c/car-spark-rounded.jsx +22 -0
  5. package/components/c/car-spark-sharp.jsx +22 -0
  6. package/components/c/car-spark.jsx +22 -0
  7. package/components/c/credit-card-spark-outline-rounded.jsx +22 -0
  8. package/components/c/credit-card-spark-outline-sharp.jsx +22 -0
  9. package/components/c/credit-card-spark-outline.jsx +22 -0
  10. package/components/c/credit-card-spark-rounded.jsx +22 -0
  11. package/components/c/credit-card-spark-sharp.jsx +22 -0
  12. package/components/c/credit-card-spark.jsx +22 -0
  13. package/components/f/flight-spark-rounded.jsx +22 -0
  14. package/components/f/flight-spark.jsx +22 -0
  15. package/components/l/local-shipping-spark-outline-rounded.jsx +22 -0
  16. package/components/l/local-shipping-spark-outline.jsx +22 -0
  17. package/components/l/local-shipping-spark-rounded.jsx +22 -0
  18. package/components/l/local-shipping-spark.jsx +22 -0
  19. package/components/m/mail-spark-outline-rounded.jsx +22 -0
  20. package/components/m/mail-spark-outline-sharp.jsx +22 -0
  21. package/components/m/mail-spark-outline.jsx +22 -0
  22. package/components/m/mail-spark-rounded.jsx +22 -0
  23. package/components/m/mail-spark-sharp.jsx +22 -0
  24. package/components/m/mail-spark.jsx +22 -0
  25. package/components/p/passport-spark-outline-rounded.jsx +22 -0
  26. package/components/p/passport-spark-outline-sharp.jsx +22 -0
  27. package/components/p/passport-spark-outline.jsx +22 -0
  28. package/components/p/passport-spark-rounded.jsx +22 -0
  29. package/components/p/passport-spark-sharp.jsx +22 -0
  30. package/components/p/passport-spark.jsx +22 -0
  31. package/components/s/screen-spark-pause-outline-rounded.jsx +22 -0
  32. package/components/s/screen-spark-pause-outline-sharp.jsx +22 -0
  33. package/components/s/screen-spark-pause-outline.jsx +22 -0
  34. package/components/s/screen-spark-pause-rounded.jsx +22 -0
  35. package/components/s/screen-spark-pause-sharp.jsx +22 -0
  36. package/components/s/screen-spark-pause.jsx +22 -0
  37. package/components/s/split-scene-2-outline-rounded.jsx +22 -0
  38. package/components/s/split-scene-2-outline-sharp.jsx +22 -0
  39. package/components/s/split-scene-2-outline.jsx +22 -0
  40. package/components/s/split-scene-2-rounded.jsx +22 -0
  41. package/components/s/split-scene-2-sharp.jsx +22 -0
  42. package/components/s/split-scene-2.jsx +22 -0
  43. package/components/w/workspace-studio-outline.jsx +22 -0
  44. package/components/w/workspace-studio.jsx +22 -0
  45. package/iconify.json +2 -2
  46. package/package.json +189 -13
@@ -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
+ /** @param {{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>.l2jblwbuz {
14
+ fill: currentColor;
15
+ d: path("M9.25 18.5h5.5q.325 0 .538-.213t.212-.537t-.213-.537T14.75 17h-5.5q-.325 0-.537.213t-.213.537t.213.538t.537.212m2.025-8.75q.075-1.025.3-1.662T12 7.175q.2.275.425.913t.3 1.662zM12 13.825q-.2-.275-.425-.913t-.3-1.662h1.45q-.075 1.025-.3 1.663t-.425.912m-1.8-.325q-.6-.375-1.025-.95t-.575-1.3h1.175q.05.625.15 1.188T10.2 13.5m3.6 0q.175-.5.275-1.062t.15-1.188H15.4q-.15.725-.575 1.3t-1.025.95M8.6 9.75q.15-.725.575-1.3T10.2 7.5q-.175.5-.275 1.062t-.15 1.188zm9.9.25q-.15 0-.2-.15q-.4-1.525-1.513-2.637T14.15 5.7Q14 5.65 14 5.5q0-.175.15-.2q1.525-.4 2.638-1.513T18.3 1.15q.05-.15.2-.15t.2.15q.4 1.525 1.513 2.638T22.85 5.3q.15.025.15.2q0 .15-.15.2q-1.525.4-2.637 1.513T18.7 9.85q-.025.15-.2.15M5 22q-.425 0-.712-.288T4 21V3q0-.425.288-.712T5 2h6.7q.45 0 .688.388t.037.812q-.2.55-.312 1.125T12 5.5q-2.075 0-3.537 1.463T7 10.5t1.463 3.538T12 15.5q1.725 0 3.063-1.05t1.762-2.65q.55.15 1.1.2t1.1 0q.4-.05.688.2t.287.625V20q0 .825-.587 1.413T18 22z");
16
+ }
17
+ </style><path class="l2jblwbuz"/>`,
18
+ "fallback": "material-symbols:passport-spark-rounded",
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
+ /** @param {{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>.ajhgv6_hf {
14
+ fill: currentColor;
15
+ d: path("M8.5 18.5h7V17h-7zm2.775-8.75q.075-1.025.3-1.662T12 7.175q.2.275.425.913t.3 1.662zM12 13.825q-.2-.275-.425-.913t-.3-1.662h1.45q-.075 1.025-.3 1.663t-.425.912m-1.8-.325q-.6-.375-1.025-.95t-.575-1.3h1.175q.05.625.15 1.188T10.2 13.5m3.6 0q.175-.5.275-1.062t.15-1.188H15.4q-.15.725-.575 1.3t-1.025.95M8.6 9.75q.15-.725.575-1.3T10.2 7.5q-.175.5-.275 1.062t-.15 1.188zm9.9.25q-.15 0-.2-.15q-.4-1.525-1.513-2.637T14.15 5.7Q14 5.65 14 5.5q0-.175.15-.2q1.525-.4 2.638-1.513T18.3 1.15q.05-.15.2-.15t.2.15q.4 1.525 1.513 2.638T22.85 5.3q.15.025.15.2q0 .15-.15.2q-1.525.4-2.637 1.513T18.7 9.85q-.025.15-.2.15M4 22V2h9.025q-.3.475-.513.975T12.176 4q-.075.375-.125.75T12 5.5q-2.075 0-3.537 1.463T7 10.5t1.463 3.538T12 15.5q1.725 0 3.063-1.05t1.762-2.65q.275.075.575.125T18 12q.5.05 1 0t1-.175V22z");
16
+ }
17
+ </style><path class="ajhgv6_hf"/>`,
18
+ "fallback": "material-symbols:passport-spark-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
+ /** @param {{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>.k10s5vb6i {
14
+ fill: currentColor;
15
+ d: path("M8.5 18.5h7V17h-7zm2.775-8.75q.075-1.025.3-1.662T12 7.175q.2.275.425.913t.3 1.662zM12 13.825q-.2-.275-.425-.913t-.3-1.662h1.45q-.075 1.025-.3 1.663t-.425.912m-1.8-.325q-.6-.375-1.025-.95t-.575-1.3h1.175q.05.625.15 1.188T10.2 13.5m3.6 0q.175-.5.275-1.062t.15-1.188H15.4q-.15.725-.575 1.3t-1.025.95M8.6 9.75q.15-.725.575-1.3T10.2 7.5q-.175.5-.275 1.062t-.15 1.188zm9.9.25q-.15 0-.2-.15q-.4-1.525-1.513-2.637T14.15 5.7Q14 5.65 14 5.5q0-.175.15-.2q1.525-.4 2.638-1.513T18.3 1.15q.05-.15.2-.15t.2.15q.4 1.525 1.513 2.638T22.85 5.3q.15.025.15.2q0 .15-.15.2q-1.525.4-2.637 1.513T18.7 9.85q-.025.15-.2.15M4 22V2h9.025q-.3.475-.513.975T12.176 4q-.075.375-.125.75T12 5.5q-2.075 0-3.537 1.463T7 10.5t1.463 3.538T12 15.5q1.725 0 3.063-1.05t1.762-2.65q.275.075.575.125T18 12q.5.05 1 0t1-.175V20q0 .825-.587 1.413T18 22z");
16
+ }
17
+ </style><path class="k10s5vb6i"/>`,
18
+ "fallback": "material-symbols:passport-spark",
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
+ /** @param {{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>.z1kmllbgp {
14
+ fill: currentColor;
15
+ d: path("M4 18V6v5.3v-.3zm0 2q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v4.3q0 .425-.288.713T21 11.3t-.712-.288T20 10.3V6H4v12h6.3q.425 0 .713.288T11.3 19t-.288.713T10.3 20zm10.463 1.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M16.75 20q.2 0 .35-.15t.15-.35v-3q0-.2-.15-.35t-.35-.15t-.35.15t-.15.35v3q0 .2.15.35t.35.15m2.5 0q.2 0 .35-.15t.15-.35v-3q0-.2-.15-.35t-.35-.15t-.35.15t-.15.35v3q0 .2.15.35t.35.15m-7.775-4.55q.55-1.375 1.575-2.4t2.4-1.575q-.975-.45-1.912-1.375T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.525.4 2.45 1.338t1.375 1.912");
16
+ }
17
+ </style><path class="z1kmllbgp"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause-outline-rounded",
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
+ /** @param {{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>.opw6dz1og {
14
+ fill: currentColor;
15
+ d: path("M4 18V6v5.3v-.3zm7.3 2H2V4h20v8.275q-.45-.325-.95-.562T20 11.3V6H4v12h7q0 .525.075 1.025T11.3 20m3.162 1.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M16.25 20h1v-4h-1zm2.5 0h1v-4h-1zm-7.275-4.55q.55-1.375 1.575-2.4t2.4-1.575q-.975-.45-1.912-1.375T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.525.4 2.45 1.338t1.375 1.912");
16
+ }
17
+ </style><path class="opw6dz1og"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause-outline-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
+ /** @param {{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>.rgvtfzb2r {
14
+ fill: currentColor;
15
+ d: path("M4 18V6v5.3v-.3zm7.3 2H4q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v6.275q-.45-.325-.95-.562T20 11.3V6H4v12h7q0 .525.075 1.025T11.3 20m3.162 1.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M16.25 20h1v-4h-1zm2.5 0h1v-4h-1zm-7.275-4.55q.55-1.375 1.575-2.4t2.4-1.575q-.975-.45-1.912-1.375T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.525.4 2.45 1.338t1.375 1.912");
16
+ }
17
+ </style><path class="rgvtfzb2r"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause-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
+ /** @param {{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>.ed-a7ubrp {
14
+ fill: currentColor;
15
+ d: path("M14.463 21.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M17.1 19.85q.15-.15.15-.35v-3q0-.2-.15-.35t-.35-.15t-.35.15t-.15.35v3q0 .2.15.35t.35.15t.35-.15m2.5 0q.15-.15.15-.35v-3q0-.2-.15-.35t-.35-.15t-.35.15t-.15.35v3q0 .2.15.35t.35.15t.35-.15M2 6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v4.9q0 .45-.387.675t-.813.025q-.65-.275-1.35-.437T18 11q-.675 0-1.312.125t-1.238.35q-1.2-.55-2.05-1.537T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.3.35 2.288 1.2t1.537 2.05q-.35.85-.45 1.775t.05 1.825q.05.375-.175.662t-.575.288H4q-.825 0-1.412-.587T2 18z");
16
+ }
17
+ </style><path class="ed-a7ubrp"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause-rounded",
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
+ /** @param {{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>.t2ja6gjyr {
14
+ fill: currentColor;
15
+ d: path("M14.463 21.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M16.25 20h1v-4h-1zm2.5 0h1v-4h-1zM2 20V4h20v8.275q-.85-.6-1.862-.937T18 11q-.675 0-1.312.125t-1.238.35q-1.2-.55-2.05-1.537T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.3.35 2.288 1.2t1.537 2.05q-.225.6-.35 1.238T11 18q0 .525.075 1.025T11.3 20z");
16
+ }
17
+ </style><path class="t2ja6gjyr"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause-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
+ /** @param {{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>.jnvxlnb6v {
14
+ fill: currentColor;
15
+ d: path("M14.463 21.538Q13 20.075 13 18t1.463-3.537T18 13t3.538 1.463T23 18t-1.463 3.538T18 23t-3.537-1.463M16.25 20h1v-4h-1zm2.5 0h1v-4h-1zM4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v6.275q-.85-.6-1.862-.937T18 11q-.675 0-1.312.125t-1.238.35q-1.2-.55-2.05-1.537T12.2 7.65q-.05-.15-.2-.15t-.2.15q-.4 1.525-1.512 2.638T7.65 11.8q-.15.05-.15.2t.15.2q1.3.35 2.288 1.2t1.537 2.05q-.225.6-.35 1.238T11 18q0 .525.075 1.025T11.3 20z");
16
+ }
17
+ </style><path class="jnvxlnb6v"/>`,
18
+ "fallback": "material-symbols:screen-spark-pause",
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
+ /** @param {{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>.tjxu1ipkw {
14
+ fill: currentColor;
15
+ d: path("M6 21q-.825 0-1.412-.587T4 19v-3q0-.425.288-.712T5 15t.713.288T6 16v3h12v-3q0-.425.288-.712T19 15t.713.288T20 16v3q0 .825-.587 1.413T18 21zm-3-8q-.425 0-.712-.288T2 12t.288-.712T3 11h1V5q0-.825.588-1.412T6 3h12q.825 0 1.413.588T20 5v6h1q.425 0 .713.288T22 12t-.288.713T21 13zm3-2h12V5H6zm12 8H6zm0-14H6z");
16
+ }
17
+ </style><path class="tjxu1ipkw"/>`,
18
+ "fallback": "material-symbols:split-scene-2-outline-rounded",
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
+ /** @param {{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>.mo2mxhbpb {
14
+ fill: currentColor;
15
+ d: path("M4 21v-6h2v4h12v-4h2v6zm-2-8v-2h2V3h16v8h2v2zm4-2h12V5H6zm12 8H6zm0-14H6z");
16
+ }
17
+ </style><path class="mo2mxhbpb"/>`,
18
+ "fallback": "material-symbols:split-scene-2-outline-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
+ /** @param {{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>.b-xjjz1ei {
14
+ fill: currentColor;
15
+ d: path("M6 21q-.825 0-1.412-.587T4 19v-4h2v4h12v-4h2v4q0 .825-.587 1.413T18 21zm-4-8v-2h2V5q0-.825.588-1.412T6 3h12q.825 0 1.413.588T20 5v6h2v2zm4-2h12V5H6zm12 8H6zm0-14H6z");
16
+ }
17
+ </style><path class="b-xjjz1ei"/>`,
18
+ "fallback": "material-symbols:split-scene-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
+ /** @param {{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>.g1q62_blu {
14
+ fill: currentColor;
15
+ d: path("M6 21q-.825 0-1.412-.587T4 19v-3q0-.425.288-.712T5 15h14q.425 0 .713.288T20 16v3q0 .825-.587 1.413T18 21zm-3-8q-.425 0-.712-.288T2 12t.288-.712T3 11h1V5q0-.825.588-1.412T6 3h12q.825 0 1.413.588T20 5v6h1q.425 0 .713.288T22 12t-.288.713T21 13z");
16
+ }
17
+ </style><path class="g1q62_blu"/>`,
18
+ "fallback": "material-symbols:split-scene-2-rounded",
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
+ /** @param {{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>.o3qy9xntt {
14
+ fill: currentColor;
15
+ d: path("M4 21v-6h16v6zm-2-8v-2h2V3h16v8h2v2z");
16
+ }
17
+ </style><path class="o3qy9xntt"/>`,
18
+ "fallback": "material-symbols:split-scene-2-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
+ /** @param {{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>.t23ow0bwt {
14
+ fill: currentColor;
15
+ d: path("M6 21q-.825 0-1.412-.587T4 19v-4h16v4q0 .825-.587 1.413T18 21zm-4-8v-2h2V5q0-.825.588-1.412T6 3h12q.825 0 1.413.588T20 5v6h2v2z");
16
+ }
17
+ </style><path class="t23ow0bwt"/>`,
18
+ "fallback": "material-symbols:split-scene-2",
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
+ /** @param {{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>.zbc6l6bvw {
14
+ fill: currentColor;
15
+ d: path("M12 22q-1.65 0-2.812-1.125T8 18.1q-.025-.8.275-1.562T9.15 15.2l3.2-3.175l-3.2-3.175q-.55-.525-.837-1.225T8 6.15q-.05-1.7 1.113-2.925T12 2q.8 0 1.525.3t1.3.875l5.975 6q.575.575.888 1.313T22 12.025t-.3 1.525t-.875 1.3l-6 6q-.575.575-1.3.863T12 22m0-2.025q.4 0 .763-.137t.637-.413l6.075-6.075q.25-.275.388-.625T20 12t-.137-.725t-.388-.625L13.4 4.6q-.275-.275-.638-.425T12 4.025q-.825 0-1.412.588T10 6q0 .425.15.788t.425.637l4.6 4.575l-4.6 4.6q-.275.275-.425.638T10 18q0 .825.587 1.4t1.413.575M15 16q.2 0 .375-.075t.325-.225l2.3-2.275q.275-.275.425-.65t.15-.775t-.15-.775t-.425-.65L15.7 8.3q-.3-.3-.713-.3t-.712.3t-.3.713t.3.712l2.3 2.275l-2.3 2.3q-.3.3-.3.713t.3.687q.15.15.337.225T15 16m-9.5 5.025q-1.475 0-2.488-1.05T2 17.45q0-.725.275-1.4t.8-1.175L6 12.025l-2.925-2.85q-.525-.5-.8-1.175T2 6.6q0-1.5 1.012-2.537T5.5 3.024q.7 0 1.325.238T7.95 4L9 5.025V7.85l-2.45-2.4q-.2-.2-.475-.312T5.5 5.025q-.65 0-1.075.463T4 6.6q0 .325.125.625t.35.525l4.375 4.275L4.475 16.3q-.225.225-.35.513T4 17.425q0 .65.425 1.125t1.075.475q.3 0 .575-.112t.475-.313L9 16.225V19l-1.05 1.025q-.5.5-1.125.75t-1.325.25M15.175 12");
16
+ }
17
+ </style><path class="zbc6l6bvw"/>`,
18
+ "fallback": "material-symbols:workspace-studio-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
+ /** @param {{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>.cqcfp4-0e {
14
+ fill: currentColor;
15
+ d: path("M12 22q-1.65 0-2.812-1.125T8 18.1q-.025-.8.275-1.562T9.15 15.2l3.2-3.175l-3.2-3.175q-.55-.525-.837-1.225T8 6.15q-.05-1.7 1.113-2.925T12 2q.8 0 1.525.3t1.3.875l5.975 6q.575.575.888 1.313T22 12.025t-.3 1.525t-.875 1.3l-6 6q-.575.575-1.3.863T12 22m-6.5-.975q-1.475 0-2.488-1.05T2 17.45q0-.725.275-1.4t.8-1.175L6 12.025l-2.925-2.85q-.525-.5-.8-1.175T2 6.6q0-1.5 1.012-2.537T5.5 3.024q.325 0 .625.05t.575.15q-.35.7-.537 1.45T6 6.2q.05 1.175.488 2.213t1.237 1.837L9.5 12.025L7.725 13.8q-.875.85-1.312 1.975T6 18.125q.025.7.188 1.388t.512 1.312q-.275.1-.575.15t-.625.05m8.775-5.325q.325.3.725.3t.7-.3l2.3-2.275q.275-.275.425-.65t.15-.775t-.15-.775t-.425-.65L15.7 8.3q-.3-.3-.712-.3t-.713.3t-.3.713t.3.712l2.3 2.275l-2.3 2.3q-.3.3-.3.713t.3.687");
16
+ }
17
+ </style><path class="cqcfp4-0e"/>`,
18
+ "fallback": "material-symbols:workspace-studio",
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": 15409,
5
+ "total": 15450,
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": 1779951075
30
+ "lastModified": 1780375116
31
31
  }