@iconify-react/material-symbols-light 1.0.7 → 1.0.9

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 (58) hide show
  1. package/components/e/edit-location-alt-rounded.jsx +3 -3
  2. package/components/e/edit-location-outline-rounded.jsx +3 -3
  3. package/components/e/edit-location-rounded.jsx +3 -3
  4. package/components/e/explore-nearby-outline.jsx +22 -0
  5. package/components/e/explore-nearby.jsx +3 -3
  6. package/components/g/globe-location-pin.jsx +3 -3
  7. package/components/h/home-pin-outline-rounded.jsx +3 -3
  8. package/components/h/home-pin-rounded.jsx +3 -3
  9. package/components/l/location-chip-outline.jsx +3 -3
  10. package/components/l/location-chip.jsx +3 -3
  11. package/components/m/map-pin-heart-outline-rounded.jsx +3 -3
  12. package/components/m/map-pin-heart-rounded.jsx +3 -3
  13. package/components/m/mode-of-travel.jsx +3 -3
  14. package/components/m/moved-location.jsx +3 -3
  15. package/components/p/pin-history.jsx +22 -0
  16. package/components/p/pin-road.jsx +22 -0
  17. package/components/s/share-location-outline-rounded.jsx +22 -0
  18. package/components/s/share-location-outline-sharp.jsx +22 -0
  19. package/components/s/share-location-outline.jsx +22 -0
  20. package/components/s/share-location.jsx +3 -3
  21. package/components/s/shield-card-outline-rounded.jsx +22 -0
  22. package/components/s/shield-card-outline-sharp.jsx +22 -0
  23. package/components/s/shield-card-outline.jsx +22 -0
  24. package/components/s/shield-card-rounded.jsx +22 -0
  25. package/components/s/shield-card-sharp.jsx +22 -0
  26. package/components/s/shield-card.jsx +22 -0
  27. package/components/s/shield-radar-outline-rounded.jsx +22 -0
  28. package/components/s/shield-radar-outline-sharp.jsx +22 -0
  29. package/components/s/shield-radar-outline.jsx +22 -0
  30. package/components/s/shield-radar-rounded.jsx +22 -0
  31. package/components/s/shield-radar-sharp.jsx +22 -0
  32. package/components/s/shield-radar.jsx +22 -0
  33. package/components/s/speed-2-outline-rounded.jsx +22 -0
  34. package/components/s/speed-2-outline-sharp.jsx +22 -0
  35. package/components/s/speed-2-outline.jsx +22 -0
  36. package/components/s/speed-2-rounded.jsx +22 -0
  37. package/components/s/speed-2-sharp.jsx +22 -0
  38. package/components/s/speed-2.jsx +22 -0
  39. package/components/s/speed-3-outline-rounded.jsx +22 -0
  40. package/components/s/speed-3-outline-sharp.jsx +22 -0
  41. package/components/s/speed-3-outline.jsx +22 -0
  42. package/components/s/speed-3-rounded.jsx +22 -0
  43. package/components/s/speed-3-sharp.jsx +22 -0
  44. package/components/s/speed-3.jsx +22 -0
  45. package/components/s/speed-4-outline-rounded.jsx +22 -0
  46. package/components/s/speed-4-outline-sharp.jsx +22 -0
  47. package/components/s/speed-4-outline.jsx +22 -0
  48. package/components/s/speed-4-rounded.jsx +22 -0
  49. package/components/s/speed-4-sharp.jsx +22 -0
  50. package/components/s/speed-4.jsx +22 -0
  51. package/components/t/touch-double-2-outline-rounded.jsx +22 -0
  52. package/components/t/touch-double-2-outline-sharp.jsx +22 -0
  53. package/components/t/touch-double-2-outline.jsx +22 -0
  54. package/components/t/touch-double-2-rounded.jsx +22 -0
  55. package/components/t/touch-double-2-sharp.jsx +22 -0
  56. package/components/t/touch-double-2.jsx +22 -0
  57. package/iconify.json +2 -2
  58. package/package.json +173 -5
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.b6qim-bn {
14
+ fill: currentColor;
15
+ d: path("M10.402 20.304q-2.396-1.267-3.899-3.746T5 11.1V5.692l7-2.615l7 2.615v4.216q-.238-.083-.488-.135T18 9.691V6.375l-6-2.23l-6 2.23V11.1q0 2.344 1.046 4.387t2.779 3.284q.087.414.229.794t.348.739M17 22q-2.083 0-3.542-1.457T12 17.005t1.457-3.543T16.996 12t3.543 1.458T22 17q0 .391-.061.749t-.166.684q-.012-.018-.026-.035t-.031-.034l-.76-.785q.025-.145.034-.29T21 17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.144 0 .29-.01q.144-.01.289-.034l.765.779l.035.034q.017.018.034.029q-.332.108-.681.155T17 22m3.589-1.412q-.166.166-.357.166t-.357-.166l-2.311-2.317q-.081.044-.564.133q-.579 0-.991-.412q-.413-.411-.413-.989t.412-.993t.989-.414t.993.413t.414.991q0 .08-.133.564l2.317 2.317q.166.165.166.354t-.166.354");
16
+ }
17
+ </style><path class="b6qim-bn"/>`,
18
+ "fallback": "material-symbols-light:shield-radar-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.o6yo74wo {
14
+ fill: currentColor;
15
+ d: path("M20.589 20.589q-.166.165-.357.165t-.357-.166l-2.311-2.317q-.081.044-.564.133q-.579 0-.991-.412q-.413-.411-.413-.989t.412-.993t.989-.414t.993.413t.414.991q0 .08-.133.564l2.317 2.317q.166.165.166.354t-.166.354M5 11.1V6.817q0-.514.293-.926q.292-.412.757-.597l5.385-2q.292-.106.565-.106t.566.106l5.384 2q.464.186.757.597q.293.412.293.926v1.931q0 .46-.344.724q-.344.265-.798.197q-.221-.036-.426-.045q-.205-.008-.432-.008q-3.08 0-5.233 2.151Q9.616 13.92 9.616 17q0 .573.095 1.138q.095.564.26 1.116q.087.28-.122.436q-.208.154-.42.024q-2.081-1.46-3.255-3.769Q5 13.637 5 11.1m7 5.905q0-2.082 1.457-3.543T16.996 12t3.543 1.458T22 17q0 .213-.144.356t-.357.144t-.356-.144T21 17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.214 0 .357.144t.143.357t-.144.356T17 22q-2.083 0-3.542-1.457T12 17.005");
16
+ }
17
+ </style><path class="o6yo74wo"/>`,
18
+ "fallback": "material-symbols-light:shield-radar-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.vzpb968g {
14
+ fill: currentColor;
15
+ d: path("M17 22q-2.077 0-3.538-1.461T12 17t1.462-3.538T17 12t3.539 1.462T22 17q0 .383-.061.744t-.166.689l-.817-.854q.025-.144.034-.29q.01-.145.01-.289q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.144 0 .29-.01q.144-.01.289-.034l.829.842q-.327.104-.68.153Q17.378 22 17 22m-.99-5.99q.415-.414.99-.414t.99.415t.414.989q0 .075-.133.564l2.671 2.67l-.713.708l-2.666-2.67q-.075.044-.563.132q-.575 0-.99-.414q-.414-.415-.414-.99t.415-.99M5 11.1V5.692l7-2.615l7 2.615v4.216q-.494-.14-.994-.217T17 9.615q-3.08 0-5.233 2.152Q9.616 13.92 9.616 17q0 .867.193 1.704q.193.836.593 1.6q-2.396-1.267-3.899-3.746T5 11.1");
16
+ }
17
+ </style><path class="vzpb968g"/>`,
18
+ "fallback": "material-symbols-light:shield-radar-sharp",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.ram-k2mv {
14
+ fill: currentColor;
15
+ d: path("M17 22q-2.083 0-3.542-1.457T12 17.005t1.457-3.543T16.996 12t3.543 1.458T22 17q0 .391-.061.749t-.166.684q-.012-.018-.026-.035t-.031-.034l-.76-.785q.025-.145.034-.29T21 17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.144 0 .29-.01q.144-.01.289-.034l.765.779l.035.034q.017.018.034.029q-.332.108-.681.155T17 22m3.589-1.412q-.166.166-.357.166t-.357-.166l-2.311-2.317q-.081.044-.564.133q-.579 0-.991-.412q-.413-.411-.413-.989t.412-.993t.989-.414t.993.413t.414.991q0 .08-.133.564l2.317 2.317q.166.165.166.354t-.166.354M5 11.1V5.692l7-2.615l7 2.615v4.216q-.494-.14-.99-.217q-.497-.076-1.01-.076q-3.08 0-5.233 2.152Q9.616 13.92 9.616 17q0 .872.193 1.706t.593 1.598q-2.396-1.267-3.899-3.746T5 11.1");
16
+ }
17
+ </style><path class="ram-k2mv"/>`,
18
+ "fallback": "material-symbols-light:shield-radar",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.fml_aabu {
14
+ fill: currentColor;
15
+ d: path("M13.208 15.175q.476-.477.436-1.147t-.586-1.06q-1.327-.964-2.666-1.907T7.715 9.183q-.298-.21-.54.031t-.03.54q.947 1.342 1.893 2.672t1.912 2.65q.404.552 1.083.574t1.175-.474M5.106 19q-.278 0-.511-.112q-.233-.113-.393-.338q-.604-1.076-.906-2.252q-.302-1.177-.302-2.41q0-.868.166-1.712q.165-.843.515-1.643q.074-.175.272-.24q.197-.064.374.02q.177.085.247.29t-.002.393q-.302.696-.437 1.422q-.135.727-.135 1.482q0 1.1.268 2.138T5.108 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.655 0-1.286.11q-.63.11-1.237.307q-.208.068-.4-.012T8.8 6.133t-.003-.387t.286-.269q.729-.229 1.45-.353Q11.253 5 11.962 5q1.863 0 3.512.701t2.877 1.92t1.939 2.867q.71 1.649.71 3.503q0 1.207-.302 2.346t-.894 2.136q-.142.264-.387.395T18.9 19zm7.023-4.854");
16
+ }
17
+ </style><path class="fml_aabu"/>`,
18
+ "fallback": "material-symbols-light:speed-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.gr18y0ur {
14
+ fill: currentColor;
15
+ d: path("M13.208 15.175q.476-.477.436-1.144t-.586-1.064q-1.822-1.338-3.716-2.673T5.63 7.662q1.292 1.825 2.646 3.716t2.675 3.697q.404.552 1.083.574t1.175-.474M4.458 19q-.702-1.287-1.086-2.454q-.383-1.167-.378-2.657q.006-1.112.29-2.168q.283-1.055.808-2.044l.681.862q-.406.8-.592 1.643T3.994 13.9q0 1.1.269 2.138T5.107 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.803.206q-.878.205-1.697.605l-.9-.642Q8.608 5.6 9.72 5.3T12 5q1.872 0 3.507.71q1.635.711 2.853 1.93t1.93 2.853T21 14q0 1.466-.397 2.599T19.503 19zm7.67-4.854");
16
+ }
17
+ </style><path class="gr18y0ur"/>`,
18
+ "fallback": "material-symbols-light:speed-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.ivmjulbt {
14
+ fill: currentColor;
15
+ d: path("M13.208 15.175q.476-.477.436-1.144t-.586-1.064q-1.822-1.338-3.716-2.673T5.63 7.662q1.292 1.825 2.646 3.716t2.675 3.697q.404.552 1.083.574t1.175-.474M5.106 19q-.278 0-.511-.112q-.233-.113-.393-.338q-.604-1.076-.906-2.252q-.302-1.177-.302-2.41q.006-1.111.29-2.167q.283-1.055.808-2.044l.681.862q-.406.8-.592 1.643T3.994 13.9q0 1.1.269 2.138T5.107 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.803.206q-.878.205-1.697.605l-.9-.642Q8.608 5.6 9.72 5.3T12 5q1.872 0 3.507.71q1.635.711 2.853 1.93t1.93 2.853T21 14q0 1.204-.302 2.34q-.302 1.137-.894 2.133q-.142.264-.387.395T18.9 19zm7.023-4.854");
16
+ }
17
+ </style><path class="ivmjulbt"/>`,
18
+ "fallback": "material-symbols-light:speed-2-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.vak625ae {
14
+ fill: currentColor;
15
+ d: path("M13.242 15.192q.477-.476.44-1.15q-.038-.673-.59-1.057q-1.344-.935-2.686-1.89L7.72 9.188q-.298-.204-.54.035q-.242.24-.034.537q.97 1.339 1.93 2.67t1.908 2.663q.398.552 1.074.577t1.183-.477M5.106 19q-.278 0-.511-.112q-.233-.113-.393-.338q-.604-1.076-.906-2.252q-.302-1.177-.302-2.41q.006-1.826.735-3.45t1.96-2.83T8.546 5.7T12 5q1.872 0 3.507.71q1.635.711 2.853 1.93t1.93 2.853T21 14q0 1.204-.302 2.34q-.302 1.137-.894 2.133q-.142.264-.387.395T18.9 19z");
16
+ }
17
+ </style><path class="vak625ae"/>`,
18
+ "fallback": "material-symbols-light:speed-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.t41kff6z {
14
+ fill: currentColor;
15
+ d: path("M13.208 15.175q.476-.477.436-1.144t-.586-1.064q-1.822-1.338-3.716-2.673T5.63 7.662q1.292 1.825 2.646 3.716t2.675 3.697q.404.552 1.083.574t1.175-.474M4.458 19q-.702-1.287-1.086-2.454q-.383-1.167-.378-2.657q0-1.847.732-3.47t1.965-2.83t2.87-1.898T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.466-.397 2.599T19.503 19z");
16
+ }
17
+ </style><path class="t41kff6z"/>`,
18
+ "fallback": "material-symbols-light:speed-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.o7-j-k0b {
14
+ fill: currentColor;
15
+ d: path("M13.208 15.175q.476-.477.436-1.144t-.586-1.064q-1.822-1.338-3.716-2.673T5.63 7.662q1.292 1.825 2.646 3.716t2.675 3.697q.404.552 1.083.574t1.175-.474M5.106 19q-.281 0-.513-.112t-.391-.338q-.604-1.084-.906-2.253q-.302-1.168-.302-2.408q.006-1.804.684-3.38q.678-1.574 1.95-2.847Q6.895 6.396 8.55 5.698T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.196-.302 2.337q-.302 1.14-.894 2.136q-.14.264-.385.395T18.9 19z");
16
+ }
17
+ </style><path class="o7-j-k0b"/>`,
18
+ "fallback": "material-symbols-light:speed-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.np_zrsbq {
14
+ fill: currentColor;
15
+ d: path("M12.729 15.492q.596-.292.814-.93t-.172-1.196q-.927-1.364-1.876-2.698T9.608 7.97q-.218-.292-.534-.143t-.216.484q.438 1.594.878 3.173q.441 1.579.914 3.16q.192.663.835.902q.644.24 1.244-.053M5.106 19q-.294 0-.551-.122t-.353-.328q-.643-1.13-.92-2.235Q3.007 15.21 3.007 14q0-1.706.597-3.27t1.718-2.786q.164-.194.377-.191q.214.003.373.157q.16.154.168.346t-.139.369q-.988 1.07-1.541 2.446T4.006 14q0 1.025.263 2.038T5.107 18h13.792q.525-.9.813-1.925T20 14q0-1.875-.812-3.475T17.025 7.8q-1.165-.933-2.548-1.398t-2.854-.383q-.19 0-.338-.128q-.148-.127-.18-.335t.093-.36q.123-.152.312-.177q1.69-.113 3.312.42q1.622.532 2.932 1.63q1.502 1.247 2.374 3.039T21 14q0 1.4-.35 2.509t-.846 1.964q-.16.264-.395.395q-.234.132-.509.132zm6.977-4.871");
16
+ }
17
+ </style><path class="np_zrsbq"/>`,
18
+ "fallback": "material-symbols-light:speed-3-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.ywgqedbp {
14
+ fill: currentColor;
15
+ d: path("M3.006 14q0-1.966.797-3.726t2.268-3.051l.314 1.098q-1.162 1.125-1.77 2.594q-.61 1.469-.61 3.085q0 1.05.276 2.075T5.107 18h13.792q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.215 0-.42.01t-.42.046l-.652-.916q.383-.067.746-.104T12 5q1.868 0 3.51.709t2.858 1.924t1.923 2.857T21 14q0 1.333-.416 2.582Q20.17 17.83 19.51 19H4.445q-.627-1.17-1.035-2.416Q3 15.337 3.006 14m9.723 1.492q.619-.298.823-.936t-.18-1.19q-1.31-1.897-2.59-3.76q-1.278-1.862-2.597-3.735q.59 2.22 1.194 4.401q.604 2.182 1.271 4.37q.194.65.823.896t1.256-.046m-.646-1.363");
16
+ }
17
+ </style><path class="ywgqedbp"/>`,
18
+ "fallback": "material-symbols-light:speed-3-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.qxfjt-3x {
14
+ fill: currentColor;
15
+ d: path("M5.106 19q-.285 0-.524-.103t-.38-.347q-.579-1.054-.89-2.194T3.006 14q0-1.966.797-3.726t2.268-3.051l.314 1.098q-1.162 1.125-1.77 2.594q-.61 1.469-.61 3.085q0 1.05.276 2.075T5.107 18h13.792q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.215 0-.42.01t-.42.046l-.652-.916q.383-.067.746-.104T12 5q1.868 0 3.51.709t2.858 1.924t1.923 2.857T21 14q0 1.177-.302 2.315t-.894 2.158q-.14.244-.38.386q-.24.141-.524.141zm7.623-3.508q.619-.298.823-.936t-.18-1.19q-1.316-1.903-2.602-3.768T8.16 5.854q.59 2.225 1.206 4.41q.617 2.184 1.284 4.378q.194.65.823.896t1.256-.046m-.646-1.363");
16
+ }
17
+ </style><path class="qxfjt-3x"/>`,
18
+ "fallback": "material-symbols-light:speed-3-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.u6ru7hot {
14
+ fill: currentColor;
15
+ d: path("M12.729 15.492q.596-.292.814-.93t-.172-1.196q-.927-1.364-1.876-2.698T9.608 7.97q-.218-.292-.534-.143t-.216.484q.438 1.594.878 3.173q.441 1.579.914 3.16q.192.663.835.902q.644.24 1.244-.053M5.106 19q-.281 0-.513-.112t-.391-.338q-.604-1.084-.906-2.253q-.302-1.168-.302-2.408q.006-1.827.735-3.451t1.96-2.83T8.546 5.7T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.196-.302 2.337q-.302 1.14-.894 2.136q-.14.264-.385.395T18.9 19z");
16
+ }
17
+ </style><path class="u6ru7hot"/>`,
18
+ "fallback": "material-symbols-light:speed-3-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.je1dbqbd {
14
+ fill: currentColor;
15
+ d: path("M12.729 15.492q.619-.298.823-.936t-.18-1.19q-1.316-1.897-2.602-3.762T8.16 5.86q.601 2.225 1.212 4.406q.61 2.182 1.278 4.376q.192.652.822.898q.63.245 1.257-.048M4.458 19q-.702-1.287-1.086-2.454q-.383-1.167-.378-2.657q0-1.847.732-3.47t1.965-2.83t2.87-1.898T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.466-.397 2.599T19.503 19z");
16
+ }
17
+ </style><path class="je1dbqbd"/>`,
18
+ "fallback": "material-symbols-light:speed-3-sharp",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.rd1zshyc {
14
+ fill: currentColor;
15
+ d: path("M12.729 15.492q.619-.298.823-.936t-.18-1.19q-1.316-1.902-2.602-3.768T8.16 5.854q.59 2.225 1.206 4.41q.617 2.184 1.284 4.378q.192.652.822.898q.63.245 1.257-.048M5.106 19q-.281 0-.513-.112t-.391-.338q-.604-1.084-.906-2.253q-.302-1.168-.302-2.408q.006-1.827.735-3.451t1.96-2.83T8.546 5.7T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.196-.302 2.337q-.302 1.14-.894 2.136q-.14.264-.385.395T18.9 19z");
16
+ }
17
+ </style><path class="rd1zshyc"/>`,
18
+ "fallback": "material-symbols-light:speed-3",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.b-9jifbp {
14
+ fill: currentColor;
15
+ d: path("M11.277 15.492q.6.293 1.243.053t.836-.903q.473-1.58.913-3.16q.44-1.578.879-3.172q.1-.335-.216-.484t-.534.143q-.938 1.366-1.888 2.7t-1.875 2.697q-.39.557-.173 1.196t.815.93M5.106 19q-.275 0-.51-.132q-.234-.131-.394-.395q-.496-.856-.846-1.964T3.006 14q0-2.1.872-3.892q.872-1.793 2.374-3.039q1.31-1.098 2.932-1.63q1.622-.533 3.312-.42q.188.025.312.177q.123.152.092.36t-.179.335t-.338.128q-1.471-.083-2.854.383Q8.146 6.867 6.98 7.8q-1.35 1.125-2.163 2.725T4.006 14q0 1.05.287 2.075T5.106 18H18.9q.575-.95.838-1.963T20 14q0-1.552-.553-2.929t-1.541-2.446q-.147-.177-.139-.37t.167-.345q.16-.154.374-.157q.213-.003.376.191q1.122 1.222 1.719 2.786T21 14q0 1.21-.277 2.315t-.92 2.235q-.095.206-.352.328T18.9 19zm6.817-4.871");
16
+ }
17
+ </style><path class="b-9jifbp"/>`,
18
+ "fallback": "material-symbols-light:speed-4-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.tmxl87by {
14
+ fill: currentColor;
15
+ d: path("M4.496 19q-.66-1.17-1.075-2.418q-.415-1.25-.415-2.582q0-1.868.709-3.51t1.923-2.857t2.858-1.924T12.006 5q.383 0 .746.037t.746.104l-.652.915q-.215-.037-.42-.047T12.006 6Q8.656 6 6.33 8.325T4.006 14q0 1.05.287 2.063T5.106 18H18.9q.55-.9.825-1.925T20 14q0-1.616-.609-3.085q-.608-1.469-1.77-2.594l.314-1.098q1.47 1.29 2.265 3.051T21 14q0 1.337-.406 2.584T19.561 19zm6.781-3.508q.627.292 1.256.046q.63-.246.823-.896q.667-2.188 1.271-4.37t1.194-4.4q-1.319 1.872-2.598 3.735t-2.589 3.759q-.384.551-.18 1.19t.823.936m.646-1.363");
16
+ }
17
+ </style><path class="tmxl87by"/>`,
18
+ "fallback": "material-symbols-light:speed-4-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.qvynx55j {
14
+ fill: currentColor;
15
+ d: path("M5.1 19q-.285 0-.524-.141q-.24-.142-.38-.386q-.592-1.021-.894-2.158T3 14q0-1.868.709-3.51t1.924-2.857T8.49 5.709T12 5q.383 0 .746.037q.363.036.746.104l-.652.915q-.215-.037-.42-.047T12 6Q8.65 6 6.325 8.325T4 14q0 1.05.287 2.063T5.1 18h13.794q.55-.9.825-1.925T19.994 14q0-1.616-.609-3.085q-.608-1.469-1.77-2.594l.314-1.098q1.471 1.29 2.268 3.051q.797 1.76.797 3.726q.006 1.216-.306 2.356q-.311 1.14-.89 2.194q-.14.244-.38.347q-.239.103-.524.103zm6.171-3.508q.627.292 1.256.046q.63-.246.823-.896q.667-2.194 1.284-4.378q.616-2.185 1.207-4.41q-1.325 1.879-2.611 3.744t-2.601 3.768q-.385.551-.181 1.19t.823.936m.646-1.363");
16
+ }
17
+ </style><path class="qvynx55j"/>`,
18
+ "fallback": "material-symbols-light:speed-4-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.hhaay8bc {
14
+ fill: currentColor;
15
+ d: path("M11.277 15.492q.6.293 1.243.053t.836-.903q.473-1.58.913-3.16q.44-1.578.879-3.172q.1-.335-.216-.484t-.534.143q-.938 1.366-1.888 2.7t-1.875 2.697q-.39.557-.173 1.196t.815.93M5.106 19q-.281 0-.513-.112t-.391-.338q-.604-1.084-.906-2.253q-.302-1.168-.302-2.408q.006-1.827.735-3.451t1.96-2.83T8.546 5.7T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.196-.302 2.337q-.302 1.14-.894 2.136q-.14.264-.385.395T18.9 19z");
16
+ }
17
+ </style><path class="hhaay8bc"/>`,
18
+ "fallback": "material-symbols-light:speed-4-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.n4aeoyby {
14
+ fill: currentColor;
15
+ d: path("M11.277 15.492q.627.293 1.257.048q.63-.246.822-.898q.667-2.194 1.278-4.376q.61-2.181 1.212-4.406q-1.325 1.879-2.61 3.744q-1.286 1.865-2.601 3.762q-.385.551-.181 1.19t.823.936M4.457 19q-.701-1.287-1.085-2.454q-.383-1.167-.378-2.657q0-1.847.732-3.47t1.965-2.83t2.87-1.898T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.466-.397 2.599T19.503 19z");
16
+ }
17
+ </style><path class="n4aeoyby"/>`,
18
+ "fallback": "material-symbols-light:speed-4-sharp",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.phb_9vek {
14
+ fill: currentColor;
15
+ d: path("M11.271 15.492q.627.293 1.257.048q.63-.246.822-.898q.667-2.194 1.284-4.378q.616-2.185 1.207-4.41q-1.325 1.879-2.611 3.744t-2.601 3.768q-.385.551-.181 1.19t.823.936M5.106 19q-.281 0-.513-.112t-.391-.338q-.604-1.084-.906-2.253q-.302-1.168-.302-2.408q.006-1.827.735-3.451t1.96-2.83T8.546 5.7T12 5q1.864 0 3.503.71q1.64.711 2.858 1.93t1.929 2.857Q21 12.137 21 14q0 1.196-.302 2.337q-.302 1.14-.894 2.136q-.14.264-.385.395T18.9 19z");
16
+ }
17
+ </style><path class="phb_9vek"/>`,
18
+ "fallback": "material-symbols-light:speed-4",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.h4b9pc-t {
14
+ fill: currentColor;
15
+ d: path("M10.412 21q-.547 0-1.04-.215q-.495-.214-.824-.668l-4.636-5.929q-.11-.165-.104-.35t.146-.327q.31-.309.755-.355q.445-.047.841.182l2.508 1.54V8.193q0-.194.144-.347q.143-.153.356-.153q.194 0 .347.153t.153.347v7.05q0 .47-.407.704q-.407.235-.81-.007l-2.483-1.5l3.97 5.055q.184.258.478.381t.606.123h5.242q.979 0 1.662-.675q.684-.674.684-1.671v-3.788q0-.589-.398-.987t-.986-.398h-1.52q-.212 0-.356-.144t-.144-.357t.144-.356t.356-.143h1.52q.98 0 1.682.702T19 13.866v3.788q0 1.401-.983 2.374q-.983.972-2.363.972zm1.058-8.663q-.143-.144-.143-.356V6.519q0-.194.144-.347t.356-.153q.194 0 .347.153t.153.347v5.462q0 .212-.144.356t-.357.144t-.356-.144M10.46 3q-1.087 0-2.019.41T6.796 4.533q-.765.765-1.191 1.823t-.341 2.136q.013.214-.119.388t-.326.204t-.361-.1t-.187-.326q-.102-1.32.389-2.61q.49-1.29 1.429-2.229q.835-.843 1.956-1.331T10.462 2t2.417.488q1.12.488 1.956 1.331q.967.968 1.41 2.179t.346 2.579q-.02.214-.16.339t-.352.094t-.336-.183t-.134-.36q.027-1.142-.325-2.124q-.353-.981-1.163-1.81q-.713-.714-1.644-1.123T10.459 3m1.22 12.98");
16
+ }
17
+ </style><path class="h4b9pc-t"/>`,
18
+ "fallback": "material-symbols-light:touch-double-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.qfrdp4ba {
14
+ fill: currentColor;
15
+ d: path("m9.244 21l-5.613-7.165L4.666 12.8l3.392 2.079V7.692h1v8.98l-3.7-2.231L9.719 20H18v-7.52h-3.404v-1H19V21zm2.083-8.52V6.02h1v6.46zM4.344 9.159q-.055-.237-.065-.473q-.01-.237-.01-.493q0-2.565 1.797-4.379Q7.864 2 10.46 2q2.575 0 4.375 1.814t1.8 4.378q0 .218-.038.551l-.038.334l-.98-.11l.028-.287q.028-.288.028-.488q0-2.154-1.515-3.673T10.46 3Q8.285 3 6.777 4.517T5.269 8.185v.407q0 .2.05.4zm7.335 6.823");
16
+ }
17
+ </style><path class="qfrdp4ba"/>`,
18
+ "fallback": "material-symbols-light:touch-double-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.jmc-gjbb {
14
+ fill: currentColor;
15
+ d: path("M10.412 21q-.547 0-1.04-.215q-.495-.214-.824-.668l-4.917-6.283l.323-.322q.31-.31.755-.356q.445-.047.841.182l2.508 1.54V8.193q0-.194.143-.347q.144-.153.357-.153q.194 0 .347.153t.153.347v8.48l-3.7-2.231l3.97 5.055q.184.258.478.381t.606.123h5.242q.979 0 1.662-.675q.684-.674.684-1.671v-3.788q0-.589-.398-.987t-.986-.398h-2.02v-1h2.02q.98 0 1.682.702T19 13.866v3.788q0 1.401-.983 2.374q-.983.972-2.363.972zm.915-8.52V6.52q0-.195.144-.348t.356-.153q.194 0 .347.153t.153.347v5.962zM4.344 9.159q-.055-.237-.065-.473q-.01-.237-.01-.493q0-2.565 1.797-4.379Q7.864 2 10.46 2q2.575 0 4.375 1.814t1.8 4.378q0 .218-.038.551l-.038.334l-.98-.11l.028-.287q.028-.288.028-.488q0-2.154-1.515-3.673T10.46 3Q8.285 3 6.777 4.517T5.269 8.185v.407q0 .2.05.4zM11.68 16");
16
+ }
17
+ </style><path class="jmc-gjbb"/>`,
18
+ "fallback": "material-symbols-light:touch-double-2-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.gj16luhu {
14
+ fill: currentColor;
15
+ d: path("M10.412 21q-.547 0-1.04-.215q-.495-.214-.824-.668l-4.636-5.929q-.11-.165-.104-.35t.146-.327q.31-.309.755-.355q.445-.047.841.182l2.508 1.54V8.193q0-.194.143-.347t.357-.153q.194 0 .347.153t.153.347v3.789h2.269V6.519q0-.194.143-.347t.357-.153q.194 0 .347.153t.153.347v5.462h4.289q.98 0 1.682.702T19 14.366v3.288q0 1.406-.983 2.376t-2.363.97zm.05-18q-1.089 0-2.02.41q-.933.41-1.646 1.123q-.765.765-1.191 1.823t-.341 2.136q.013.214-.119.388t-.326.204t-.361-.1t-.187-.326q-.102-1.32.389-2.61q.49-1.29 1.429-2.229q.834-.835 1.955-1.327T10.462 2t2.417.492t1.956 1.327q.967.968 1.41 2.179t.346 2.579q-.02.214-.16.339t-.352.094t-.339-.18t-.13-.363q.026-1.142-.326-2.124t-1.163-1.81q-.713-.714-1.642-1.124Q11.55 3 10.462 3");
16
+ }
17
+ </style><path class="gj16luhu"/>`,
18
+ "fallback": "material-symbols-light:touch-double-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
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.ew5dkwen {
14
+ fill: currentColor;
15
+ d: path("m9.244 21l-5.613-7.165L4.666 12.8l3.392 2.079V7.692h1v4.289h2.269V6.019h1v5.962H19V21zm-4.9-11.842q-.056-.237-.065-.473q-.01-.237-.01-.493q0-2.565 1.797-4.379Q7.864 2 10.46 2q2.575 0 4.375 1.814t1.8 4.378q0 .218-.038.551l-.038.334l-.98-.11l.028-.287q.028-.288.028-.488q0-2.154-1.515-3.673T10.46 3Q8.285 3 6.777 4.517T5.269 8.185v.407q0 .2.05.4z");
16
+ }
17
+ </style><path class="ew5dkwen"/>`,
18
+ "fallback": "material-symbols-light:touch-double-2-sharp",
19
+ });
20
+ }
21
+
22
+ export default Component;