@iconify-solid/material-symbols-light 1.0.16 → 1.0.17

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 +18 -0
  2. package/components/c/car-spark-outline-sharp.jsx +18 -0
  3. package/components/c/car-spark-outline.jsx +18 -0
  4. package/components/c/car-spark-rounded.jsx +18 -0
  5. package/components/c/car-spark-sharp.jsx +18 -0
  6. package/components/c/car-spark.jsx +18 -0
  7. package/components/c/credit-card-spark-outline-rounded.jsx +18 -0
  8. package/components/c/credit-card-spark-outline-sharp.jsx +18 -0
  9. package/components/c/credit-card-spark-outline.jsx +18 -0
  10. package/components/c/credit-card-spark-rounded.jsx +18 -0
  11. package/components/c/credit-card-spark-sharp.jsx +18 -0
  12. package/components/c/credit-card-spark.jsx +18 -0
  13. package/components/f/flight-spark-rounded.jsx +18 -0
  14. package/components/f/flight-spark.jsx +18 -0
  15. package/components/l/local-shipping-spark-outline-rounded.jsx +18 -0
  16. package/components/l/local-shipping-spark-outline.jsx +18 -0
  17. package/components/l/local-shipping-spark-rounded.jsx +18 -0
  18. package/components/l/local-shipping-spark.jsx +18 -0
  19. package/components/m/mail-spark-outline-rounded.jsx +18 -0
  20. package/components/m/mail-spark-outline-sharp.jsx +18 -0
  21. package/components/m/mail-spark-outline.jsx +18 -0
  22. package/components/m/mail-spark-rounded.jsx +18 -0
  23. package/components/m/mail-spark-sharp.jsx +18 -0
  24. package/components/m/mail-spark.jsx +18 -0
  25. package/components/p/passport-spark-outline-rounded.jsx +18 -0
  26. package/components/p/passport-spark-outline-sharp.jsx +18 -0
  27. package/components/p/passport-spark-outline.jsx +18 -0
  28. package/components/p/passport-spark-rounded.jsx +18 -0
  29. package/components/p/passport-spark-sharp.jsx +18 -0
  30. package/components/p/passport-spark.jsx +18 -0
  31. package/components/s/screen-spark-pause-outline-rounded.jsx +18 -0
  32. package/components/s/screen-spark-pause-outline-sharp.jsx +18 -0
  33. package/components/s/screen-spark-pause-outline.jsx +18 -0
  34. package/components/s/screen-spark-pause-rounded.jsx +18 -0
  35. package/components/s/screen-spark-pause-sharp.jsx +18 -0
  36. package/components/s/screen-spark-pause.jsx +18 -0
  37. package/components/s/split-scene-2-outline-rounded.jsx +18 -0
  38. package/components/s/split-scene-2-outline-sharp.jsx +18 -0
  39. package/components/s/split-scene-2-outline.jsx +18 -0
  40. package/components/s/split-scene-2-rounded.jsx +18 -0
  41. package/components/s/split-scene-2-sharp.jsx +18 -0
  42. package/components/s/split-scene-2.jsx +18 -0
  43. package/components/w/workspace-studio-outline.jsx +18 -0
  44. package/components/w/workspace-studio.jsx +18 -0
  45. package/iconify.json +2 -2
  46. package/package.json +189 -13
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.a4j9w2b-t {
6
+ fill: currentColor;
7
+ d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h9.22q.213 0 .357.144t.144.357t-.144.356t-.356.143H5V17h14v-4.083q0-.22.144-.37q.144-.149.357-.149t.356.15t.143.37V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="a4j9w2b-t"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.yznl2r02u {
6
+ fill: currentColor;
7
+ d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V20h-1.23v-2H5.23v2zm13.98-9.885q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="yznl2r02u"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.rw_-ukqvt {
6
+ fill: currentColor;
7
+ d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="rw_-ukqvt"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.gwzhy3bib {
6
+ fill: currentColor;
7
+ d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4.732 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h8.678q.829.662 1.827 1.004t2.06.342q.292-.006.55-.024t.544-.068q.373-.062.649.159t.276.562V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20");
8
+ }
9
+ </style><path class="gwzhy3bib"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.bhmil1blk {
6
+ fill: currentColor;
7
+ d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V20h-1.23v-2H5.23v2z");
8
+ }
9
+ </style><path class="bhmil1blk"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.t40nynbke {
6
+ fill: currentColor;
7
+ d: path("M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m2.697-4.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m1.399-5.576q-.15 0-.2-.15q-.362-1.391-1.359-2.388t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15");
8
+ }
9
+ </style><path class="t40nynbke"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:car-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.d563b2_ke {
6
+ fill: currentColor;
7
+ d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.367q0 .373-.301.584t-.649.089q-.396-.104-.808-.168t-.838-.065q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.045q.213 0 .354.143q.14.144.14.357t-.143.357t-.357.143zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="d563b2_ke"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.fm38c737p {
6
+ fill: currentColor;
7
+ d: path("M4 18v-7.577v.194V6zm-1 1V5h18v6q-.608-.263-1.252-.42q-.645-.157-1.344-.157q-.828 0-1.591.195t-1.436.574H4V18h8.025q.05.275.115.516q.064.24.148.484zM4 8.808h16V6H4zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="fm38c737p"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.of-371bmh {
6
+ fill: currentColor;
7
+ d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616V11q-.608-.263-1.252-.42t-1.344-.157q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.41q.05.275.115.516q.064.24.148.484zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="of-371bmh"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.zt2l_pbjy {
6
+ fill: currentColor;
7
+ d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.89q0 .213-.143.357t-.357.143t-.357-.143t-.143-.357V8.808H4v2.384h9.34q.46 0 .627.445t-.2.784q-1.13 1.181-1.584 2.724t-.098 3.147q.061.274-.098.49t-.431.218z");
8
+ }
9
+ </style><path class="zt2l_pbjy"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.mlhhai70i {
6
+ fill: currentColor;
7
+ d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15m-6.115-2H3V5h18v6.006q-.238-.127-.479-.224q-.24-.098-.521-.165v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03");
8
+ }
9
+ </style><path class="mlhhai70i"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.n7n5fbcvr {
6
+ fill: currentColor;
7
+ d: path("M12.289 19H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.39q-.239-.127-.479-.224T20 10.617v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03m6.115 2q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359t-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="n7n5fbcvr"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:credit-card-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.on6p3ibal {
6
+ fill: currentColor;
7
+ d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-8.422 3.011l-6.46 2.602q-.407.154-.753-.083T2 14.983v-.36q0-.196.087-.369t.246-.283l7.225-5.09V4.442q0-.595.423-1.018Q10.405 3 11 3t1.018.424t.424 1.018v4.439l7.225 5.09q.159.11.246.283t.087.37v.359q0 .425-.345.663t-.753.083l-6.46-2.602v4.33l2.575 1.82q.128.094.2.227t.072.29v.35q0 .327-.25.515t-.556.095L11 19.692l-3.483 1.062q-.308.092-.557-.095t-.249-.515v-.355q0-.149.072-.283t.2-.229l2.575-1.82z");
8
+ }
9
+ </style><path class="on6p3ibal"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:flight-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.l2nhcxbkq {
6
+ fill: currentColor;
7
+ d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15M6.713 21v-1.538l2.846-2.004v-4.331L2 16.173v-1.961L9.558 8.88V4.442q0-.594.424-1.018T11 3t1.018.424t.424 1.018v4.439L20 14.21v1.962l-7.558-3.046v4.33l2.827 2.005V21L11 19.692z");
8
+ }
9
+ </style><path class="l2nhcxbkq"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:flight-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.x_fkorbme {
6
+ fill: currentColor;
7
+ d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-5.401q0-.213.144-.357t.357-.143t.356.143t.143.357V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6h-1.985q-.206 0-.347-.137q-.142-.138-.153-.342q-.012-.217.14-.369t.36-.152h2.177q.343 0 .575.232t.232.576v2.807h1.5q.384 0 .727.172q.344.172.566.474l2.653 3.58q.162.222.243.464t.08.505v1.882q0 .343-.232.576t-.575.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763m2.76-8.66q-.15 0-.2-.15q-.362-1.391-1.359-2.388T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2Q4.04 5.04 5.037 4.04t1.36-2.39q.05-.15.2-.15q.168 0 .2.15q.36 1.39 1.358 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
8
+ }
9
+ </style><path class="x_fkorbme"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:local-shipping-spark-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.giyhsnbwf {
6
+ fill: currentColor;
7
+ d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zm-3.5-8.5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763t-.759-1.853H1.692V9.79q.233.252.474.472t.526.411V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6H13.07q.031-.25.013-.5t-.048-.5m-6.44 4.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
8
+ }
9
+ </style><path class="giyhsnbwf"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:local-shipping-spark-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.huyaljqyt {
6
+ fill: currentColor;
7
+ d: path("M6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.388-1.358T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m.241 7.953q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-4.638q0-.348.324-.484q.323-.135.601.101q.847.662 1.86 1.034t2.12.372q1.35 0 2.524-.52t2.05-1.386q.921-.921 1.409-2.106q.487-1.186.486-2.488q-.012-.223.148-.4t.38-.177h2.137q.343 0 .575.232t.233.576v2.808h1.5q.383 0 .727.171t.565.475l2.654 3.579q.161.222.242.464t.08.505v1.882q0 .344-.231.576t-.576.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763");
8
+ }
9
+ </style><path class="huyaljqyt"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:local-shipping-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.iqt2v1poc {
6
+ fill: currentColor;
7
+ d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m-2.76 8.664q-.759-.76-.759-1.856H1.692V9.79q.92 1.068 2.198 1.677q1.277.61 2.706.61q2.675 0 4.578-1.9t1.903-4.58q0-.145-.009-.299T13.037 5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.096-.76 1.856q-.759.76-1.855.76t-1.856-.76t-.76-1.856H8.308q0 1.096-.76 1.856t-1.856.76t-1.856-.76");
8
+ }
9
+ </style><path class="iqt2v1poc"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:local-shipping-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.j9u66cb4x {
6
+ fill: currentColor;
7
+ d: path("m12 11l7.692-5H4.308zm-7.384 8q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.196q0 .213-.143.356t-.357.144t-.357-.144t-.143-.356V6.904l-7.123 4.638q-.404.262-.877.262t-.877-.262L4 6.904v10.48q0 .27.173.443t.443.173h6.813q.213 0 .357.143t.143.357t-.143.357t-.357.143zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="j9u66cb4x"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.v01drvbcs {
6
+ fill: currentColor;
7
+ d: path("m12 11l7.692-5H4.308zm-.083 8H3V5h18v7.077h-1V6.904l-8 5.212l-8-5.212V18h7.917zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="v01drvbcs"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.zb2chubtb {
6
+ fill: currentColor;
7
+ d: path("m12 11l7.692-5H4.308zm-.083 8H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.461h-1V6.904l-8 5.212l-8-5.212v10.48q0 .27.173.443t.443.173h7.301zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="zb2chubtb"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.jlzjzn_rv {
6
+ fill: currentColor;
7
+ d: path("M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.201q0 .243-.195.383t-.432.054q-1.71-.562-3.466-.154t-3.078 1.729q-.921.921-1.409 2.107q-.487 1.185-.486 2.487q.012.223-.15.4q-.161.177-.378.177zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M12 11L4.82 6.32q-.195-.122-.402-.045t-.264.289q-.058.148-.015.306q.042.159.184.246l7.108 4.638q.269.165.569.165t.57-.165l7.107-4.638q.142-.087.194-.246t-.025-.307q-.057-.211-.264-.279q-.207-.067-.401.054z");
8
+ }
9
+ </style><path class="jlzjzn_rv"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.biw0robjw {
6
+ fill: currentColor;
7
+ d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H3V5h18v7.506q-.602-.27-1.251-.426t-1.345-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .16.009.309t.031.288m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="biw0robjw"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.oh6nuheqp {
6
+ fill: currentColor;
7
+ d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H4.615q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.89q-.602-.27-1.249-.426q-.647-.157-1.347-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .15.009.305q.008.154.031.292m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="oh6nuheqp"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:mail-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.dd56a1byr {
6
+ fill: currentColor;
7
+ d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5.808 21q-.348 0-.578-.23T5 20.192V3.808q0-.349.23-.578T5.808 3h6.004q.213 0 .356.143t.144.357t-.144.357t-.356.143H6v16h11.385q.23 0 .423-.192t.192-.424v-6.847q0-.214.143-.357t.357-.143t.357.143t.143.357v6.848q0 .67-.472 1.143q-.472.472-1.143.472zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96m-4.069 4.23h6.116q.19 0 .316-.126q.126-.125.126-.316t-.126-.316q-.126-.126-.316-.126H8.942q-.19 0-.316.126q-.126.125-.126.316t.126.316t.316.126m9.462-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.388 1.358q-.997.997-1.358 2.387q-.025.15-.2.15");
8
+ }
9
+ </style><path class="dd56a1byr"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.oyo3pdbxs {
6
+ fill: currentColor;
7
+ d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h12v-7.923q.25.03.49.02q.24-.013.51-.06V21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="oyo3pdbxs"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.xxxp1ebbn {
6
+ fill: currentColor;
7
+ d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h11.385q.23 0 .423-.192t.192-.424v-7.307q.25.03.49.02q.24-.013.51-.06v7.347q0 .672-.472 1.144T17.385 21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
8
+ }
9
+ </style><path class="xxxp1ebbn"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.uv47stb3i {
6
+ fill: currentColor;
7
+ d: path("M8.942 18.192h6.116q.19 0 .316-.126q.126-.125.126-.316t-.126-.316q-.126-.126-.316-.126H8.942q-.19 0-.316.126q-.126.125-.126.316t.126.316t.316.126m2.064-8.134q.075-.987.328-1.778q.254-.791.666-1.374q.411.582.665 1.374q.254.791.33 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5.809 21q-.348 0-.578-.23T5 20.192V3.808q0-.349.23-.578T5.808 3h5.7q.354 0 .553.282t.095.63q-.142.511-.197 1.028q-.055.518-.017 1.021Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.453.15.936.228q.483.08.975.087q.304.007.515.2q.21.192.21.49v6.617q0 .672-.472 1.144T17.385 21z");
8
+ }
9
+ </style><path class="uv47stb3i"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.h79en8bgz {
6
+ fill: currentColor;
7
+ d: path("M8.5 18.192h7v-.884h-7zm2.506-8.134q.075-.987.329-1.778q.253-.791.665-1.374q.412.582.666 1.374q.253.791.328 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496q-.113.49-.163.98q-.05.491-.012.982Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.39.132.796.211t.84.104q.25.03.49.02q.24-.013.51-.06V21z");
8
+ }
9
+ </style><path class="h79en8bgz"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.eb-x7yb9r {
6
+ fill: currentColor;
7
+ d: path("M8.5 18.192h7v-.884h-7zm2.506-8.134q.075-.987.329-1.778q.253-.791.665-1.374q.412.582.666 1.374q.253.791.328 1.778zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m2.139 0q.367-.731.592-1.496q.225-.764.275-1.524h1.752q-.189 1.09-.892 1.897q-.704.805-1.727 1.123m-4.643-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm10.035-.366q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.362 2.387-1.359t1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496q-.113.49-.163.98q-.05.491-.012.982Q10.08 6 8.78 7.318T7.48 10.5q0 1.883 1.319 3.201T12 15.019q1.552 0 2.745-.915t1.619-2.342q.39.132.796.211t.84.104q.25.03.49.02q.24-.013.51-.06v7.347q0 .672-.472 1.144T17.385 21z");
8
+ }
9
+ </style><path class="eb-x7yb9r"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:passport-spark"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.ju0yr0x7g {
6
+ fill: currentColor;
7
+ d: path("M4 18V6v5.627v-.32zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.511q0 .214-.143.357t-.357.143t-.357-.143t-.143-.357V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192h6.224q.213 0 .356.143t.143.357t-.143.357t-.357.143zm10.549 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.777-1.143q.162 0 .274-.111q.111-.112.111-.273V16.75q0-.161-.111-.273q-.112-.111-.274-.111t-.273.111t-.111.273v2.616q0 .161.111.273t.273.111m2.116 0q.161 0 .273-.111t.111-.273V16.75q0-.161-.111-.273t-.273-.111t-.273.111t-.112.273v2.616q0 .161.112.273q.111.111.273.111m-7.352-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
8
+ }
9
+ </style><path class="ju0yr0x7g"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.gonz1hbgd {
6
+ fill: currentColor;
7
+ d: path("M4 18V6v5.627v-.32zm7.339 1H3V5h18v7.044q-.238-.133-.479-.235q-.24-.103-.521-.182V6H4v12h7.25q0 .256.017.506t.072.494m3.825 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zm-6.967-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
8
+ }
9
+ </style><path class="gonz1hbgd"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.e2b4g5bsv {
6
+ fill: currentColor;
7
+ d: path("M4 18V6v5.627v-.32zm7.339 1H4.615q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.428q-.239-.132-.479-.235T20 11.627V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616v10.769q0 .23.192.423t.423.192h6.635q0 .256.017.506t.072.494m3.825 1.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zm-6.967-4.108q.53-1.375 1.575-2.39t2.419-1.527q-1.244-.373-2.191-1.327T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.39.362 2.325 1.299t1.327 2.143");
8
+ }
9
+ </style><path class="e2b4g5bsv"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.bzcq0zb9u {
6
+ fill: currentColor;
7
+ d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m2.05-1.255q.112-.111.112-.273V16.75q0-.161-.111-.273q-.112-.111-.274-.111t-.273.111t-.111.273v2.616q0 .161.111.273t.273.111t.274-.111m2.115 0q.111-.112.111-.273V16.75q0-.161-.111-.273t-.273-.111t-.273.111t-.112.273v2.616q0 .161.112.273q.111.111.273.111t.273-.111M3 6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.4q0 .353-.301.55q-.301.196-.649.073q-.496-.16-1.004-.246T18 11.308q-.598 0-1.178.106q-.58.105-1.122.311q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.254.62-.364 1.295t-.075 1.344q.012.298-.175.509q-.186.21-.478.21H4.615q-.69 0-1.153-.463T3 17.385z");
8
+ }
9
+ </style><path class="bzcq0zb9u"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.c697rwbjm {
6
+ fill: currentColor;
7
+ d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zM3 19V5h18v7.044q-.677-.35-1.43-.543T18 11.308q-.598 0-1.178.105q-.58.106-1.122.312q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.225.562-.34 1.17q-.116.61-.116 1.246q0 .236.017.476q.018.241.072.466z");
8
+ }
9
+ </style><path class="c697rwbjm"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.fgqao58ui {
6
+ fill: currentColor;
7
+ d: path("M15.165 20.893Q14 19.73 14 18.058t1.165-2.836T18 14.058t2.836 1.164T22 18.058q0 1.67-1.164 2.835Q19.67 22.058 18 22.058t-2.835-1.165m1.393-1.143h.769v-3.384h-.77zm2.115 0h.77v-3.384h-.77zM4.616 19q-.691 0-1.154-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.428q-.677-.35-1.43-.543T18 11.308q-.598 0-1.178.106q-.58.105-1.122.311q-1.315-.396-2.233-1.364T12.2 8.054q-.05-.15-.2-.15t-.2.15q-.361 1.39-1.359 2.387q-.997.997-2.387 1.359q-.15.03-.15.2q0 .15.15.2q1.319.35 2.278 1.248t1.374 2.194q-.225.562-.34 1.17q-.116.61-.116 1.246q0 .236.017.476q.018.241.072.466z");
8
+ }
9
+ </style><path class="fgqao58ui"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:screen-spark-pause"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.i4iacgb1v {
6
+ fill: currentColor;
7
+ d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3q0-.213.143-.356q.144-.144.357-.144t.357.144q.143.143.143.356v3q0 .231.192.424t.423.192h10.77q.23 0 .423-.192t.192-.424v-3q0-.213.143-.356q.143-.144.357-.144t.357.144t.143.356v3q0 .691-.462 1.153T17.384 20zM3.5 12.5q-.213 0-.357-.143T3 12t.143-.357t.357-.143H5V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h1.5q.214 0 .357.143T21 12t-.143.357t-.357.143zm2.5-1h12V5.616q0-.231-.192-.424T17.384 5H6.616q-.231 0-.424.192T6 5.616zM18 19H6zm0-14H6z");
8
+ }
9
+ </style><path class="i4iacgb1v"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2-outline-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.ounswac7d {
6
+ fill: currentColor;
7
+ d: path("M5 20v-5.115h1V19h12v-4.115h1V20zm-2-7.5v-1h2V4h14v7.5h2v1zm3-1h12V5H6zM18 19H6zm0-14H6z");
8
+ }
9
+ </style><path class="ounswac7d"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2-outline-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.nop0-f7ne {
6
+ fill: currentColor;
7
+ d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3.5h1v3.5q0 .231.192.424t.423.192h10.77q.23 0 .423-.192t.192-.424v-3.5h1v3.5q0 .691-.462 1.153T17.384 20zM3 12.5v-1h2V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h2v1zm3-1h12V5.616q0-.231-.192-.424T17.384 5H6.616q-.231 0-.424.192T6 5.616zM18 19H6zm0-14H6z");
8
+ }
9
+ </style><path class="nop0-f7ne"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.k34qr1a1d {
6
+ fill: currentColor;
7
+ d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3q0-.213.143-.356q.144-.144.357-.144h13q.214 0 .357.144q.143.143.143.356v3q0 .691-.462 1.153T17.384 20zM3.5 12.5q-.213 0-.357-.143T3 12t.143-.357t.357-.143H5V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h1.5q.214 0 .357.143T21 12t-.143.357t-.357.143z");
8
+ }
9
+ </style><path class="k34qr1a1d"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2-rounded"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.bg5nmnbrk {
6
+ fill: currentColor;
7
+ d: path("M5 20v-5.115h14V20zm-2-7.5v-1h2V4h14v7.5h2v1z");
8
+ }
9
+ </style><path class="bg5nmnbrk"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2-sharp"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.vfiw6-bmw {
6
+ fill: currentColor;
7
+ d: path("M6.616 20q-.691 0-1.153-.462T5 18.384v-3.5h14v3.5q0 .691-.462 1.153T17.384 20zM3 12.5v-1h2V5.616q0-.691.463-1.153T6.616 4h10.769q.69 0 1.153.463T19 5.616V11.5h2v1z");
8
+ }
9
+ </style><path class="vfiw6-bmw"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:split-scene-2"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.rt54yhb8w {
6
+ fill: currentColor;
7
+ d: path("M12 21q-1.363 0-2.323-.942t-1.004-2.304q-.025-.685.226-1.322q.25-.636.732-1.116l3.335-3.31l-3.335-3.31q-.454-.448-.695-1.024q-.242-.576-.263-1.214q-.05-1.431.919-2.444T11.998 3q.668 0 1.275.246q.608.246 1.09.718l5.649 5.653q.473.478.73 1.091Q21 11.321 21 12t-.242 1.294t-.721 1.075l-5.673 5.654q-.48.479-1.087.728T12 21m-.004-1.025q.473 0 .9-.166q.429-.167.754-.5l5.748-5.748q.287-.323.444-.736q.158-.412.158-.854t-.157-.84t-.464-.731L13.65 4.677q-.333-.333-.757-.502q-.425-.17-.893-.17q-.979 0-1.653.675q-.674.674-.674 1.647q0 .489.17.906t.501.75l4.023 3.998l-4.023 4.023q-.332.333-.502.757t-.169.893q0 .97.674 1.645q.674.676 1.649.676m2.835-4.667q.1 0 .187-.037q.088-.036.163-.11l2.165-2.159q.218-.198.32-.458q.101-.26.101-.563t-.101-.554t-.32-.467L15.181 8.8q-.146-.146-.347-.146t-.367.146q-.146.166-.146.366q0 .201.146.348l2.05 2.044q.193.192.193.433q0 .24-.193.432l-2.05 2.03q-.146.166-.146.369t.15.338q.074.074.167.11q.094.038.193.038M5.86 20.006q-1.205 0-2.032-.864Q3 18.28 3 17.066q0-.61.227-1.15q.227-.541.656-.964l3.04-2.946l-3.04-2.947q-.43-.422-.656-.963T3 6.946q0-1.212.827-2.076t2.032-.864q.572 0 1.08.195t.915.607l1.261 1.255v1.421l-1.95-1.938q-.257-.258-.592-.399t-.7-.141q-.792 0-1.323.574q-.53.575-.53 1.383q0 .404.144.762t.427.621l3.74 3.66l-3.74 3.66q-.283.263-.427.624t-.145.77q0 .804.531 1.375q.53.57 1.323.57q.365 0 .7-.14q.335-.142.593-.4l1.95-1.836v1.41l-1.262 1.14q-.385.404-.904.615t-1.091.212m8.508-8.025");
8
+ }
9
+ </style><path class="rt54yhb8w"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:workspace-studio-outline"} {...others} />);
16
+ }
17
+
18
+ export default Component;
@@ -0,0 +1,18 @@
1
+ import { Icon } from '@iconify/css-solid';
2
+ import { splitProps } from 'solid-js';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+ const content = `<style>.rmcziz5_n {
6
+ fill: currentColor;
7
+ d: path("M12 21q-1.362 0-2.322-.942q-.96-.943-1.005-2.304q-.025-.685.227-1.322t.73-1.116l3.335-3.31l-3.334-3.31q-.454-.448-.693-1.023t-.265-1.215q-.05-1.431.92-2.444T12 3q.666 0 1.275.242t1.089.721l5.647 5.654q.48.48.734 1.092T21 12.006q0 .665-.242 1.285t-.721 1.078l-5.673 5.654q-.48.479-1.089.728T12 21m-6.134-.994q-1.206 0-2.036-.868T3 17.066q0-.61.227-1.15t.656-.963l3.04-2.946l-3.04-2.947q-.43-.422-.656-.963T3 6.946q0-1.212.83-2.076t2.035-.864q.23 0 .452.04q.223.04.44.102q-.234.565-.364 1.161T6.29 6.527q.05 1.079.458 2.087t1.19 1.77l1.64 1.622l-1.64 1.621q-.856.83-1.275 1.927t-.374 2.263q.025.527.13 1.042q.105.514.32 1.004q-.217.062-.43.102q-.214.04-.443.04m8.602-4.844q.152.147.37.156q.217.01.344-.156l2.165-2.159q.218-.198.32-.458q.101-.26.101-.563t-.101-.554t-.32-.467L15.181 8.8q-.146-.146-.347-.146t-.367.146q-.146.166-.146.366q0 .201.146.348l2.05 2.044q.193.192.193.433q0 .24-.193.432l-2.05 2.03q-.146.166-.146.367t.146.342");
8
+ }
9
+ </style><path class="rmcziz5_n"/>`;
10
+
11
+ /** @param props {{width?: string; height?: string;}} */
12
+ function Component(props) {
13
+ const [local, others] = splitProps(props, ["width","height"]);
14
+
15
+ return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:workspace-studio"} {...others} />);
16
+ }
17
+
18
+ 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": 15483,
5
+ "total": 15524,
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": 1779951053
31
+ "lastModified": 1780375090
32
32
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iconify-solid/material-symbols-light",
3
3
  "type": "module",
4
- "version": "1.0.16",
4
+ "version": "1.0.17",
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",
@@ -10502,6 +10502,30 @@
10502
10502
  "types": "./types/vn2rmosy.d.ts",
10503
10503
  "default": "./components/c/car-repair-sharp.jsx"
10504
10504
  },
10505
+ "./car-spark": {
10506
+ "types": "./types/vn2rmosy.d.ts",
10507
+ "default": "./components/c/car-spark.jsx"
10508
+ },
10509
+ "./car-spark-outline": {
10510
+ "types": "./types/vn2rmosy.d.ts",
10511
+ "default": "./components/c/car-spark-outline.jsx"
10512
+ },
10513
+ "./car-spark-outline-rounded": {
10514
+ "types": "./types/vn2rmosy.d.ts",
10515
+ "default": "./components/c/car-spark-outline-rounded.jsx"
10516
+ },
10517
+ "./car-spark-outline-sharp": {
10518
+ "types": "./types/vn2rmosy.d.ts",
10519
+ "default": "./components/c/car-spark-outline-sharp.jsx"
10520
+ },
10521
+ "./car-spark-rounded": {
10522
+ "types": "./types/vn2rmosy.d.ts",
10523
+ "default": "./components/c/car-spark-rounded.jsx"
10524
+ },
10525
+ "./car-spark-sharp": {
10526
+ "types": "./types/vn2rmosy.d.ts",
10527
+ "default": "./components/c/car-spark-sharp.jsx"
10528
+ },
10505
10529
  "./car-tag": {
10506
10530
  "types": "./types/vn2rmosy.d.ts",
10507
10531
  "default": "./components/c/car-tag.jsx"
@@ -14474,6 +14498,30 @@
14474
14498
  "types": "./types/vn2rmosy.d.ts",
14475
14499
  "default": "./components/c/credit-card-sharp.jsx"
14476
14500
  },
14501
+ "./credit-card-spark": {
14502
+ "types": "./types/vn2rmosy.d.ts",
14503
+ "default": "./components/c/credit-card-spark.jsx"
14504
+ },
14505
+ "./credit-card-spark-outline": {
14506
+ "types": "./types/vn2rmosy.d.ts",
14507
+ "default": "./components/c/credit-card-spark-outline.jsx"
14508
+ },
14509
+ "./credit-card-spark-outline-rounded": {
14510
+ "types": "./types/vn2rmosy.d.ts",
14511
+ "default": "./components/c/credit-card-spark-outline-rounded.jsx"
14512
+ },
14513
+ "./credit-card-spark-outline-sharp": {
14514
+ "types": "./types/vn2rmosy.d.ts",
14515
+ "default": "./components/c/credit-card-spark-outline-sharp.jsx"
14516
+ },
14517
+ "./credit-card-spark-rounded": {
14518
+ "types": "./types/vn2rmosy.d.ts",
14519
+ "default": "./components/c/credit-card-spark-rounded.jsx"
14520
+ },
14521
+ "./credit-card-spark-sharp": {
14522
+ "types": "./types/vn2rmosy.d.ts",
14523
+ "default": "./components/c/credit-card-spark-sharp.jsx"
14524
+ },
14477
14525
  "./credit-score": {
14478
14526
  "types": "./types/vn2rmosy.d.ts",
14479
14527
  "default": "./components/c/credit-score.jsx"
@@ -22786,6 +22834,14 @@
22786
22834
  "types": "./types/vn2rmosy.d.ts",
22787
22835
  "default": "./components/f/flight-rounded.jsx"
22788
22836
  },
22837
+ "./flight-spark": {
22838
+ "types": "./types/vn2rmosy.d.ts",
22839
+ "default": "./components/f/flight-spark.jsx"
22840
+ },
22841
+ "./flight-spark-rounded": {
22842
+ "types": "./types/vn2rmosy.d.ts",
22843
+ "default": "./components/f/flight-spark-rounded.jsx"
22844
+ },
22789
22845
  "./flight-takeoff": {
22790
22846
  "types": "./types/vn2rmosy.d.ts",
22791
22847
  "default": "./components/f/flight-takeoff.jsx"
@@ -32474,6 +32530,22 @@
32474
32530
  "types": "./types/vn2rmosy.d.ts",
32475
32531
  "default": "./components/l/local-shipping-sharp.jsx"
32476
32532
  },
32533
+ "./local-shipping-spark": {
32534
+ "types": "./types/vn2rmosy.d.ts",
32535
+ "default": "./components/l/local-shipping-spark.jsx"
32536
+ },
32537
+ "./local-shipping-spark-outline": {
32538
+ "types": "./types/vn2rmosy.d.ts",
32539
+ "default": "./components/l/local-shipping-spark-outline.jsx"
32540
+ },
32541
+ "./local-shipping-spark-outline-rounded": {
32542
+ "types": "./types/vn2rmosy.d.ts",
32543
+ "default": "./components/l/local-shipping-spark-outline-rounded.jsx"
32544
+ },
32545
+ "./local-shipping-spark-rounded": {
32546
+ "types": "./types/vn2rmosy.d.ts",
32547
+ "default": "./components/l/local-shipping-spark-rounded.jsx"
32548
+ },
32477
32549
  "./local-taxi": {
32478
32550
  "types": "./types/vn2rmosy.d.ts",
32479
32551
  "default": "./components/l/local-taxi.jsx"
@@ -33406,6 +33478,30 @@
33406
33478
  "types": "./types/vn2rmosy.d.ts",
33407
33479
  "default": "./components/m/mail-shield-sharp.jsx"
33408
33480
  },
33481
+ "./mail-spark": {
33482
+ "types": "./types/vn2rmosy.d.ts",
33483
+ "default": "./components/m/mail-spark.jsx"
33484
+ },
33485
+ "./mail-spark-outline": {
33486
+ "types": "./types/vn2rmosy.d.ts",
33487
+ "default": "./components/m/mail-spark-outline.jsx"
33488
+ },
33489
+ "./mail-spark-outline-rounded": {
33490
+ "types": "./types/vn2rmosy.d.ts",
33491
+ "default": "./components/m/mail-spark-outline-rounded.jsx"
33492
+ },
33493
+ "./mail-spark-outline-sharp": {
33494
+ "types": "./types/vn2rmosy.d.ts",
33495
+ "default": "./components/m/mail-spark-outline-sharp.jsx"
33496
+ },
33497
+ "./mail-spark-rounded": {
33498
+ "types": "./types/vn2rmosy.d.ts",
33499
+ "default": "./components/m/mail-spark-rounded.jsx"
33500
+ },
33501
+ "./mail-spark-sharp": {
33502
+ "types": "./types/vn2rmosy.d.ts",
33503
+ "default": "./components/m/mail-spark-sharp.jsx"
33504
+ },
33409
33505
  "./male": {
33410
33506
  "types": "./types/vn2rmosy.d.ts",
33411
33507
  "default": "./components/m/male.jsx"
@@ -40982,6 +41078,30 @@
40982
41078
  "types": "./types/vn2rmosy.d.ts",
40983
41079
  "default": "./components/p/passport-sharp.jsx"
40984
41080
  },
41081
+ "./passport-spark": {
41082
+ "types": "./types/vn2rmosy.d.ts",
41083
+ "default": "./components/p/passport-spark.jsx"
41084
+ },
41085
+ "./passport-spark-outline": {
41086
+ "types": "./types/vn2rmosy.d.ts",
41087
+ "default": "./components/p/passport-spark-outline.jsx"
41088
+ },
41089
+ "./passport-spark-outline-rounded": {
41090
+ "types": "./types/vn2rmosy.d.ts",
41091
+ "default": "./components/p/passport-spark-outline-rounded.jsx"
41092
+ },
41093
+ "./passport-spark-outline-sharp": {
41094
+ "types": "./types/vn2rmosy.d.ts",
41095
+ "default": "./components/p/passport-spark-outline-sharp.jsx"
41096
+ },
41097
+ "./passport-spark-rounded": {
41098
+ "types": "./types/vn2rmosy.d.ts",
41099
+ "default": "./components/p/passport-spark-rounded.jsx"
41100
+ },
41101
+ "./passport-spark-sharp": {
41102
+ "types": "./types/vn2rmosy.d.ts",
41103
+ "default": "./components/p/passport-spark-sharp.jsx"
41104
+ },
40985
41105
  "./password": {
40986
41106
  "types": "./types/vn2rmosy.d.ts",
40987
41107
  "default": "./components/p/password.jsx"
@@ -47390,6 +47510,30 @@
47390
47510
  "types": "./types/vn2rmosy.d.ts",
47391
47511
  "default": "./components/s/screen-share-sharp.jsx"
47392
47512
  },
47513
+ "./screen-spark-pause": {
47514
+ "types": "./types/vn2rmosy.d.ts",
47515
+ "default": "./components/s/screen-spark-pause.jsx"
47516
+ },
47517
+ "./screen-spark-pause-outline": {
47518
+ "types": "./types/vn2rmosy.d.ts",
47519
+ "default": "./components/s/screen-spark-pause-outline.jsx"
47520
+ },
47521
+ "./screen-spark-pause-outline-rounded": {
47522
+ "types": "./types/vn2rmosy.d.ts",
47523
+ "default": "./components/s/screen-spark-pause-outline-rounded.jsx"
47524
+ },
47525
+ "./screen-spark-pause-outline-sharp": {
47526
+ "types": "./types/vn2rmosy.d.ts",
47527
+ "default": "./components/s/screen-spark-pause-outline-sharp.jsx"
47528
+ },
47529
+ "./screen-spark-pause-rounded": {
47530
+ "types": "./types/vn2rmosy.d.ts",
47531
+ "default": "./components/s/screen-spark-pause-rounded.jsx"
47532
+ },
47533
+ "./screen-spark-pause-sharp": {
47534
+ "types": "./types/vn2rmosy.d.ts",
47535
+ "default": "./components/s/screen-spark-pause-sharp.jsx"
47536
+ },
47393
47537
  "./screenshot": {
47394
47538
  "types": "./types/vn2rmosy.d.ts",
47395
47539
  "default": "./components/s/screenshot.jsx"
@@ -51906,6 +52050,30 @@
51906
52050
  "types": "./types/vn2rmosy.d.ts",
51907
52051
  "default": "./components/s/split-scene.jsx"
51908
52052
  },
52053
+ "./split-scene-2": {
52054
+ "types": "./types/vn2rmosy.d.ts",
52055
+ "default": "./components/s/split-scene-2.jsx"
52056
+ },
52057
+ "./split-scene-2-outline": {
52058
+ "types": "./types/vn2rmosy.d.ts",
52059
+ "default": "./components/s/split-scene-2-outline.jsx"
52060
+ },
52061
+ "./split-scene-2-outline-rounded": {
52062
+ "types": "./types/vn2rmosy.d.ts",
52063
+ "default": "./components/s/split-scene-2-outline-rounded.jsx"
52064
+ },
52065
+ "./split-scene-2-outline-sharp": {
52066
+ "types": "./types/vn2rmosy.d.ts",
52067
+ "default": "./components/s/split-scene-2-outline-sharp.jsx"
52068
+ },
52069
+ "./split-scene-2-rounded": {
52070
+ "types": "./types/vn2rmosy.d.ts",
52071
+ "default": "./components/s/split-scene-2-rounded.jsx"
52072
+ },
52073
+ "./split-scene-2-sharp": {
52074
+ "types": "./types/vn2rmosy.d.ts",
52075
+ "default": "./components/s/split-scene-2-sharp.jsx"
52076
+ },
51909
52077
  "./split-scene-down": {
51910
52078
  "types": "./types/vn2rmosy.d.ts",
51911
52079
  "default": "./components/s/split-scene-down.jsx"
@@ -51986,10 +52154,6 @@
51986
52154
  "types": "./types/vn2rmosy.d.ts",
51987
52155
  "default": "./components/s/split-scene-sharp.jsx"
51988
52156
  },
51989
- "./split-scene-up": {
51990
- "types": "./types/vn2rmosy.d.ts",
51991
- "default": "./components/s/split-scene-up.jsx"
51992
- },
51993
52157
  "./split-scene-up-outline": {
51994
52158
  "types": "./types/vn2rmosy.d.ts",
51995
52159
  "default": "./components/s/split-scene-up-outline.jsx"
@@ -52002,14 +52166,6 @@
52002
52166
  "types": "./types/vn2rmosy.d.ts",
52003
52167
  "default": "./components/s/split-scene-up-outline-sharp.jsx"
52004
52168
  },
52005
- "./split-scene-up-rounded": {
52006
- "types": "./types/vn2rmosy.d.ts",
52007
- "default": "./components/s/split-scene-up-rounded.jsx"
52008
- },
52009
- "./split-scene-up-sharp": {
52010
- "types": "./types/vn2rmosy.d.ts",
52011
- "default": "./components/s/split-scene-up-sharp.jsx"
52012
- },
52013
52169
  "./splitscreen": {
52014
52170
  "types": "./types/vn2rmosy.d.ts",
52015
52171
  "default": "./components/s/splitscreen.jsx"
@@ -62830,6 +62986,14 @@
62830
62986
  "types": "./types/vn2rmosy.d.ts",
62831
62987
  "default": "./components/w/workspace-premium-rounded.jsx"
62832
62988
  },
62989
+ "./workspace-studio": {
62990
+ "types": "./types/vn2rmosy.d.ts",
62991
+ "default": "./components/w/workspace-studio.jsx"
62992
+ },
62993
+ "./workspace-studio-outline": {
62994
+ "types": "./types/vn2rmosy.d.ts",
62995
+ "default": "./components/w/workspace-studio-outline.jsx"
62996
+ },
62833
62997
  "./workspaces": {
62834
62998
  "types": "./types/vn2rmosy.d.ts",
62835
62999
  "default": "./components/w/workspaces.jsx"
@@ -63954,6 +64118,18 @@
63954
64118
  "types": "./types/vn2rmosy.d.ts",
63955
64119
  "default": "./components/s/split-scene-right-sharp.jsx"
63956
64120
  },
64121
+ "./split-scene-up": {
64122
+ "types": "./types/vn2rmosy.d.ts",
64123
+ "default": "./components/s/split-scene-up.jsx"
64124
+ },
64125
+ "./split-scene-up-rounded": {
64126
+ "types": "./types/vn2rmosy.d.ts",
64127
+ "default": "./components/s/split-scene-up-rounded.jsx"
64128
+ },
64129
+ "./split-scene-up-sharp": {
64130
+ "types": "./types/vn2rmosy.d.ts",
64131
+ "default": "./components/s/split-scene-up-sharp.jsx"
64132
+ },
63957
64133
  "./stay-current-landscape": {
63958
64134
  "types": "./types/vn2rmosy.d.ts",
63959
64135
  "default": "./components/s/stay-current-landscape.jsx"