@iconify-react/material-symbols-light 1.0.0 → 1.0.2

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 (52) hide show
  1. package/components/b/bus-map-pin-2-outline-rounded.jsx +22 -0
  2. package/components/b/bus-map-pin-2-outline-sharp.jsx +22 -0
  3. package/components/b/bus-map-pin-2-outline.jsx +22 -0
  4. package/components/b/bus-map-pin-2-rounded.jsx +22 -0
  5. package/components/b/bus-map-pin-2-sharp.jsx +22 -0
  6. package/components/b/bus-map-pin-2.jsx +22 -0
  7. package/components/c/check-alert-rounded.jsx +22 -0
  8. package/components/c/check-alert.jsx +22 -0
  9. package/components/c/code-xml-rounded.jsx +22 -0
  10. package/components/c/code-xml.jsx +22 -0
  11. package/components/f/fire-check-outline-rounded.jsx +22 -0
  12. package/components/f/fire-check-outline.jsx +22 -0
  13. package/components/f/fire-check-rounded.jsx +22 -0
  14. package/components/f/fire-check.jsx +22 -0
  15. package/components/f/fork-chart-outline-sharp.jsx +22 -0
  16. package/components/f/fork-chart-outline.jsx +22 -0
  17. package/components/f/fork-chart-sharp.jsx +22 -0
  18. package/components/f/fork-chart.jsx +22 -0
  19. package/components/g/grid-layout-side-outline-sharp.jsx +22 -0
  20. package/components/g/grid-layout-side-outline.jsx +22 -0
  21. package/components/g/grid-layout-side-rounded.jsx +22 -0
  22. package/components/g/grid-layout-side-sharp.jsx +22 -0
  23. package/components/g/grid-layout-side.jsx +22 -0
  24. package/components/s/signal-cellular-alt-off-rounded.jsx +22 -0
  25. package/components/s/signal-cellular-alt-off.jsx +22 -0
  26. package/components/s/snowflake-rounded.jsx +22 -0
  27. package/components/s/snowflake.jsx +22 -0
  28. package/components/s/space-dashboard-2-outline-sharp.jsx +22 -0
  29. package/components/s/space-dashboard-2-outline.jsx +22 -0
  30. package/components/s/space-dashboard-2-rounded.jsx +22 -0
  31. package/components/s/space-dashboard-2-sharp.jsx +22 -0
  32. package/components/s/space-dashboard-2.jsx +22 -0
  33. package/components/t/terminal-2-rounded.jsx +22 -0
  34. package/components/t/terminal-2.jsx +22 -0
  35. package/components/w/water-drops-outline-rounded.jsx +22 -0
  36. package/components/w/water-drops-outline.jsx +22 -0
  37. package/components/w/water-drops-rounded.jsx +22 -0
  38. package/components/w/water-drops.jsx +22 -0
  39. package/components/y/youtube-activity-2-outline-rounded.jsx +22 -0
  40. package/components/y/youtube-activity-2-outline.jsx +22 -0
  41. package/components/y/youtube-activity-2-rounded.jsx +22 -0
  42. package/components/y/youtube-activity-2.jsx +22 -0
  43. package/components/y/youtube-activity-outline-rounded.jsx +22 -0
  44. package/components/y/youtube-activity-outline.jsx +22 -0
  45. package/components/y/youtube-activity-rounded.jsx +3 -3
  46. package/components/y/youtube-activity.jsx +3 -3
  47. package/components/y/youtube-video-outline-rounded.jsx +22 -0
  48. package/components/y/youtube-video-outline.jsx +22 -0
  49. package/components/y/youtube-video-rounded.jsx +22 -0
  50. package/components/y/youtube-video.jsx +22 -0
  51. package/iconify.json +2 -2
  52. package/package.json +197 -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>.p9ejy_b {
14
+ fill: currentColor;
15
+ d: path("M4 20V4h16v16zm1-1h8.5V5H5zm9.5 0H19v-6.5h-4.5zm0-7.5H19V5h-4.5z");
16
+ }
17
+ </style><path class="p9ejy_b"/>`,
18
+ "fallback": "material-symbols-light:space-dashboard-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>.bw2zuacb {
14
+ fill: currentColor;
15
+ d: path("M5.616 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h12.769q.69 0 1.153.463T20 5.616v12.769q0 .69-.462 1.153T18.384 20zm0-1H13.5V5H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192m8.885 0h3.885q.23 0 .423-.192t.192-.424V12.5h-4.5zm0-7.5H19V5.616q0-.231-.192-.424T18.384 5H14.5z");
16
+ }
17
+ </style><path class="bw2zuacb"/>`,
18
+ "fallback": "material-symbols-light:space-dashboard-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>.yxfmxt-v {
14
+ fill: currentColor;
15
+ d: path("M20 20V4zM5.615 20h6.27q.67 0 1.143-.472q.472-.472.472-1.143V5.615q0-.67-.472-1.143Q12.556 4 11.885 4h-6.27q-.67 0-1.143.472Q4 4.944 4 5.616v12.769q0 .67.472 1.143q.472.472 1.144.472m10.5 0h2.269q.67 0 1.143-.472q.472-.472.472-1.143v-4.27q0-.67-.472-1.143q-.472-.472-1.143-.472h-2.27q-.67 0-1.143.472q-.472.472-.472 1.144v4.269q0 .67.472 1.143q.472.472 1.144.472m0-8.5h2.269q.67 0 1.143-.472q.472-.472.472-1.143v-4.27q0-.67-.472-1.143Q19.056 4 18.385 4h-2.27q-.67 0-1.143.472q-.472.472-.472 1.144v4.269q0 .67.472 1.143q.472.472 1.144.472");
16
+ }
17
+ </style><path class="yxfmxt-v"/>`,
18
+ "fallback": "material-symbols-light:space-dashboard-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>.fhht-ib {
14
+ fill: currentColor;
15
+ d: path("M20 20V4zM4 20h9.5V4H4zm10.5 0H20v-7.5h-5.5zm0-8.5H20V4h-5.5z");
16
+ }
17
+ </style><path class="fhht-ib"/>`,
18
+ "fallback": "material-symbols-light:space-dashboard-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>.cwbtdpy {
14
+ fill: currentColor;
15
+ d: path("M20 20V4zM5.615 20H13.5V4H5.616q-.691 0-1.153.463T4 5.616v12.769q0 .69.463 1.153T5.616 20m8.884 0h3.885q.69 0 1.152-.462T20 18.385V12.5h-5.5zm0-8.5H20V5.616q0-.691-.462-1.153T18.384 4H14.5z");
16
+ }
17
+ </style><path class="cwbtdpy"/>`,
18
+ "fallback": "material-symbols-light:space-dashboard-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>.dmqx-bwd {
14
+ fill: currentColor;
15
+ d: path("M13 19q-.213 0-.356-.144t-.144-.357t.144-.356T13 18h6q.213 0 .356.144t.144.357t-.144.356T19 19zm-3.671-9L5.377 6.048q-.146-.146-.146-.347t.146-.347t.35-.146t.358.146l4.08 4.08q.243.243.243.566t-.242.566l-4.081 4.08q-.153.146-.358.146t-.35-.146t-.146-.347t.146-.347z");
16
+ }
17
+ </style><path class="dmqx-bwd"/>`,
18
+ "fallback": "material-symbols-light:terminal-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>.sl009tv {
14
+ fill: currentColor;
15
+ d: path("M12.5 19v-1h7v1zm-6.77-4l-.707-.688L9.329 10L5.023 5.689L5.731 5l5 5z");
16
+ }
17
+ </style><path class="sl009tv"/>`,
18
+ "fallback": "material-symbols-light:terminal-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>.gqd5zmbf {
14
+ fill: currentColor;
15
+ d: path("M17.5 6.044q-.963 1.033-1.482 1.874t-.518 1.39q0 .87.566 1.531q.565.661 1.43.661q.866 0 1.435-.661q.569-.66.569-1.531q0-.548-.518-1.39T17.5 6.044M11.997 21q-2.999 0-4.998-2.064T5 13.8q0-2.042 1.551-4.472t4.697-5.336q.323-.292.749-.302t.75.283q.953.873 1.738 1.703q.784.83 1.457 1.628q-.078.11-.326.394q-.247.286-.316.377q-.675-.8-1.487-1.662T12 4.65Q9.025 7.375 7.513 9.675T6 13.8q0 2.675 1.7 4.438T12 20q1.3 0 2.4-.475t1.9-1.3t1.25-1.963T18 13.8q0-.425-.088-.9t-.262-.975q.108-.074.426-.283t.426-.282q.256.648.377 1.256T19 13.8q0 3.073-2.002 5.137Q14.994 21 11.996 21m.22-2.308q.224-.025.35-.153q.125-.13.125-.311q0-.212-.143-.329q-.144-.116-.368-.091q-1.025.075-2.29-.64q-1.266-.714-1.566-2.39q-.05-.236-.166-.353q-.117-.117-.295-.117q-.197 0-.335.147t-.083.44q.387 2.082 1.923 2.98t2.848.817m3.149-7.138q-.866-.946-.866-2.258q0-.83.618-1.85T17.04 5.14q.202-.186.465-.186t.455.186q1.34 1.318 1.94 2.294t.6 1.868q0 1.306-.865 2.252q-.866.946-2.135.946t-2.134-.946m-3.397.771");
16
+ }
17
+ </style><path class="gqd5zmbf"/>`,
18
+ "fallback": "material-symbols-light:water-drops-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>.taz76dbe {
14
+ fill: currentColor;
15
+ d: path("M17.5 4.692q1.596 1.493 2.298 2.574q.702 1.082.702 2.034q0 1.308-.865 2.254q-.866.946-2.135.946t-2.134-.948q-.866-.95-.866-2.243q0-.905.742-2.045q.742-1.141 2.258-2.572m0 1.352q-.963 1.033-1.482 1.874t-.518 1.39q0 .87.566 1.531q.565.661 1.43.661q.866 0 1.435-.661q.569-.66.569-1.531q0-.548-.518-1.39T17.5 6.044M11.997 21q-2.999 0-4.998-2.064T5 13.8q0-2.154 1.738-4.765T12 3.308q1.196 1.073 2.177 2.062q.98.99 1.765 1.934q-.079.11-.326.395t-.316.376q-.675-.8-1.487-1.662T12 4.65Q9.025 7.375 7.513 9.675T6 13.8q0 2.675 1.7 4.438T12 20q1.3 0 2.4-.475t1.9-1.3t1.25-1.963T18 13.8q0-.425-.088-.9t-.262-.975q.108-.074.426-.283t.426-.282q.256.648.377 1.256T19 13.8q0 3.073-2.002 5.137Q14.994 21 11.996 21m.22-2.308q.224-.025.35-.153q.125-.13.125-.311q0-.212-.143-.329q-.144-.116-.368-.091q-1.025.075-2.29-.64q-1.266-.714-1.566-2.39q-.05-.236-.166-.353q-.117-.117-.295-.117q-.197 0-.335.147t-.083.44q.387 2.082 1.923 2.98t2.848.817M17.5 8.76");
16
+ }
17
+ </style><path class="taz76dbe"/>`,
18
+ "fallback": "material-symbols-light:water-drops-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>.di-ptibp {
14
+ fill: currentColor;
15
+ d: path("M12 21q-3.002 0-5.001-2.061T5 13.8q0-2.042 1.56-4.484t4.713-5.349q.298-.292.715-.304t.714.28q.31.298.61.576t.6.571q-.703.885-1.25 1.969q-.546 1.083-.546 2.241q0 2.356 1.583 3.97q1.584 1.615 3.801 1.615q.362 0 .734-.061q.372-.06.722-.174q-.296 2.756-2.229 4.553T12 21m3.366-9.446Q14.5 10.608 14.5 9.3q0-.835.618-1.854t1.922-2.305q.193-.187.46-.187t.46.187q1.34 1.317 1.94 2.293t.6 1.866q0 1.308-.865 2.254q-.866.946-2.135.946t-2.134-.946m-3.149 7.138q.223-.025.35-.15q.125-.127.125-.311q0-.216-.148-.332t-.363-.091q-1.025.075-2.29-.64q-1.266-.714-1.566-2.39q-.05-.236-.166-.353q-.117-.117-.295-.117q-.197 0-.335.147t-.083.44q.387 2.082 1.923 2.98t2.848.817");
16
+ }
17
+ </style><path class="di-ptibp"/>`,
18
+ "fallback": "material-symbols-light:water-drops-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>.x3v5ifsy {
14
+ fill: currentColor;
15
+ d: path("M12 21q-3.002 0-5.001-2.061T5 13.8q0-2.154 1.738-4.765T12 3.308q.521.46.987.894q.465.435.924.889q-.701.884-1.248 1.968q-.548 1.083-.548 2.241q0 2.356 1.584 3.97t3.801 1.615q.362 0 .734-.061q.372-.06.722-.174q-.296 2.756-2.229 4.553T12 21m3.366-9.446Q14.5 10.608 14.5 9.3q0-.896.742-2.036T17.5 4.692q1.596 1.493 2.298 2.574q.702 1.082.702 2.034q0 1.308-.865 2.254q-.866.946-2.135.946t-2.134-.946m-3.149 7.138q.223-.025.35-.15q.125-.127.125-.311q0-.216-.148-.332t-.363-.091q-1.025.075-2.29-.64q-1.266-.714-1.566-2.39q-.05-.236-.166-.353q-.117-.117-.295-.117q-.197 0-.335.147t-.083.44q.387 2.082 1.923 2.98t2.848.817");
16
+ }
17
+ </style><path class="x3v5ifsy"/>`,
18
+ "fallback": "material-symbols-light:water-drops",
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>.r1rtqtbo {
14
+ fill: currentColor;
15
+ d: path("M19.154 17.5h-1.5q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h1.5V15q0-.213.144-.356t.356-.144t.356.144t.144.356v1.5h1.5q.212 0 .356.144t.144.357t-.144.356t-.356.143h-1.5V19q0 .213-.144.356q-.144.144-.357.144t-.356-.144t-.143-.356zM12 6.02l.933.002q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.494t.505.833q.2.781.278 1.83t.084 1.995q0 .213-.135.357t-.345.143t-.349-.143t-.152-.357q-.025-.855-.1-1.92q-.075-1.066-.244-1.649q-.07-.24-.237-.395t-.407-.224q-.578-.142-2.745-.236T12 7.019q-2.084 0-4.25.095t-2.742.236q-.24.07-.415.246q-.174.177-.224.379q-.2.683-.275 1.942Q4.02 11.177 4.02 12q0 .817.075 2.1t.275 1.95q.07.24.234.395t.405.224q.561.15 2.734.24Q9.916 17 12 17h1.058q.538 0 1.077-.02q.212 0 .356.135t.144.35t-.144.364t-.356.146q-.434 0-.828.012T12.63 18H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04m1.989 5.633l-3.297-1.843q-.211-.13-.404.001t-.192.353v3.693q0 .222.192.353t.404 0l3.296-1.861q.212-.121.212-.343t-.212-.353");
16
+ }
17
+ </style><path class="r1rtqtbo"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-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>.gmpd0bcm {
14
+ fill: currentColor;
15
+ d: path("M19.154 19.5v-2h-2v-1h2v-2h1v2h2v1h-2v2zM12 6.02l.933.002q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.494t.505.833q.237.88.309 2.098q.072 1.22.053 2.227H20q-.02-.829-.085-2.118q-.065-1.29-.265-1.95q-.07-.241-.236-.396t-.408-.224q-.578-.142-2.745-.236T12 7.019q-2.084 0-4.25.095t-2.742.236q-.24.07-.415.246q-.174.177-.224.379q-.2.683-.275 1.942Q4.02 11.177 4.02 12q0 .817.075 2.1t.275 1.95q.07.24.234.395t.405.224q.561.15 2.734.24Q9.916 17 12 17h1.297q.664 0 1.337-.025v.994q-.505.025-.98.028q-.476.003-.852.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04m-1.904 8.539L14.604 12l-4.508-2.539z");
16
+ }
17
+ </style><path class="gmpd0bcm"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-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>.oosuftag {
14
+ fill: currentColor;
15
+ d: path("M19.154 17.5h-1.5q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h1.5V15q0-.213.144-.356t.356-.144t.356.144t.144.356v1.5h1.5q.212 0 .356.144t.144.357t-.144.356t-.356.143h-1.5V19q0 .213-.144.356q-.144.144-.357.144t-.356-.144t-.143-.356zm-5.165-5.848L10.692 9.81q-.211-.131-.404 0t-.192.354v3.692q0 .222.192.353t.404 0l3.296-1.861q.212-.121.212-.343t-.212-.353M12 6.019l.933.003q.933.003 2.149.04t2.417.106t1.763.219q.476.136.846.491t.505.841q.212.76.287 1.81t.075 1.987q0 .276-.195.425q-.196.15-.463.088q-1.115-.185-2.276.233q-1.16.417-1.933 1.188q-.794.771-1.151 1.793q-.357 1.023-.274 2.124q.017.243-.127.435t-.391.192q-.453 0-.85.003q-.395.003-.673.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04");
16
+ }
17
+ </style><path class="oosuftag"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-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>.sv_sybbt {
14
+ fill: currentColor;
15
+ d: path("M19.154 19.5v-2h-2v-1h2v-2h1v2h2v1h-2v2zm-9.058-4.942L14.604 12l-4.508-2.539zM12 6.019l.933.003q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.492t.505.841q.262.927.324 2.207t.038 2.287q-.296-.104-.642-.158t-.68-.055q-2.093 0-3.546 1.45t-1.453 3.525q-.02.27.01.513t.096.481q-.56.025-1.051.028t-.88.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04");
16
+ }
17
+ </style><path class="sv_sybbt"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-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>.r1rtqtbo {
14
+ fill: currentColor;
15
+ d: path("M19.154 17.5h-1.5q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h1.5V15q0-.213.144-.356t.356-.144t.356.144t.144.356v1.5h1.5q.212 0 .356.144t.144.357t-.144.356t-.356.143h-1.5V19q0 .213-.144.356q-.144.144-.357.144t-.356-.144t-.143-.356zM12 6.02l.933.002q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.494t.505.833q.2.781.278 1.83t.084 1.995q0 .213-.135.357t-.345.143t-.349-.143t-.152-.357q-.025-.855-.1-1.92q-.075-1.066-.244-1.649q-.07-.24-.237-.395t-.407-.224q-.578-.142-2.745-.236T12 7.019q-2.084 0-4.25.095t-2.742.236q-.24.07-.415.246q-.174.177-.224.379q-.2.683-.275 1.942Q4.02 11.177 4.02 12q0 .817.075 2.1t.275 1.95q.07.24.234.395t.405.224q.561.15 2.734.24Q9.916 17 12 17h1.058q.538 0 1.077-.02q.212 0 .356.135t.144.35t-.144.364t-.356.146q-.434 0-.828.012T12.63 18H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04m1.989 5.633l-3.297-1.843q-.211-.13-.404.001t-.192.353v3.693q0 .222.192.353t.404 0l3.296-1.861q.212-.121.212-.343t-.212-.353");
16
+ }
17
+ </style><path class="r1rtqtbo"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-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>.gmpd0bcm {
14
+ fill: currentColor;
15
+ d: path("M19.154 19.5v-2h-2v-1h2v-2h1v2h2v1h-2v2zM12 6.02l.933.002q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.494t.505.833q.237.88.309 2.098q.072 1.22.053 2.227H20q-.02-.829-.085-2.118q-.065-1.29-.265-1.95q-.07-.241-.236-.396t-.408-.224q-.578-.142-2.745-.236T12 7.019q-2.084 0-4.25.095t-2.742.236q-.24.07-.415.246q-.174.177-.224.379q-.2.683-.275 1.942Q4.02 11.177 4.02 12q0 .817.075 2.1t.275 1.95q.07.24.234.395t.405.224q.561.15 2.734.24Q9.916 17 12 17h1.297q.664 0 1.337-.025v.994q-.505.025-.98.028q-.476.003-.852.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04m-1.904 8.539L14.604 12l-4.508-2.539z");
16
+ }
17
+ </style><path class="gmpd0bcm"/>`,
18
+ "fallback": "material-symbols-light:youtube-activity-outline",
19
+ });
20
+ }
21
+
22
+ export default Component;
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.gquhdkyn {
13
+ "content": `<style>.oosuftag {
14
14
  fill: currentColor;
15
- d: path("M5.474 16.655q-.559-.148-.966-.552q-.408-.403-.552-.961q-.123-.494-.191-1.184q-.069-.69-.1-1.344q-.05-.747-.05-1.537t.05-1.537q.031-.653.1-1.344q.068-.69.195-1.184q.149-.558.552-.966q.404-.408.962-.552q.493-.123 1.579-.191q1.086-.069 2.218-.1q1.308-.05 2.806-.05t2.806.05q1.133.031 2.218.1q1.086.068 1.58.195q.557.15.965.552t.545.958q.205.734.264 1.612t.084 1.724q0 .385-.314.627t-.717.156q-.166-.025-.32-.038t-.342-.012q-1.756 0-2.993 1.238t-1.238 2.993q0 .185.01.358q.009.174.046.359q.056.373-.152.662t-.556.288q-.394 0-.745.013t-.593.012h-.548q-1.498 0-2.806-.05q-1.133-.03-2.218-.099q-1.086-.068-1.58-.196m5.53-3.386l3.175-1.846q.214-.129.214-.351t-.211-.343l-3.178-1.844q-.215-.13-.417-.005t-.202.361v3.672q0 .237.202.361t.417-.005m6.991 2.89h-.843q-.359 0-.601-.241q-.242-.243-.242-.61t.242-.61t.6-.242h.844v-.843q0-.359.242-.601q.243-.243.61-.243t.61.243t.242.6v.844h.843q.359 0 .601.242t.243.61t-.243.61q-.242.242-.6.242h-.844v.843q0 .358-.242.6q-.243.243-.61.243t-.61-.242t-.242-.601z");
15
+ d: path("M19.154 17.5h-1.5q-.213 0-.357-.144t-.143-.357t.143-.356t.357-.143h1.5V15q0-.213.144-.356t.356-.144t.356.144t.144.356v1.5h1.5q.212 0 .356.144t.144.357t-.144.356t-.356.143h-1.5V19q0 .213-.144.356q-.144.144-.357.144t-.356-.144t-.143-.356zm-5.165-5.848L10.692 9.81q-.211-.131-.404 0t-.192.354v3.692q0 .222.192.353t.404 0l3.296-1.861q.212-.121.212-.343t-.212-.353M12 6.019l.933.003q.933.003 2.149.04t2.417.106t1.763.219q.476.136.846.491t.505.841q.212.76.287 1.81t.075 1.987q0 .276-.195.425q-.196.15-.463.088q-1.115-.185-2.276.233q-1.16.417-1.933 1.188q-.794.771-1.151 1.793q-.357 1.023-.274 2.124q.017.243-.127.435t-.391.192q-.453 0-.85.003q-.395.003-.673.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04");
16
16
  }
17
- </style><path class="gquhdkyn"/>`,
17
+ </style><path class="oosuftag"/>`,
18
18
  "fallback": "material-symbols-light:youtube-activity-rounded",
19
19
  });
20
20
  }
@@ -10,11 +10,11 @@ function Component({width, height, ...props}) {
10
10
  width,
11
11
  height,
12
12
  viewBox,
13
- "content": `<style>.ogkli3bf {
13
+ "content": `<style>.sv_sybbt {
14
14
  fill: currentColor;
15
- d: path("M14.939 16.95q-.58.025-1.086.038t-.908.012h-.866q-1.499 0-2.808-.05q-1.133-.03-2.218-.099q-1.086-.068-1.58-.196q-.557-.148-.965-.552q-.408-.403-.552-.961q-.123-.494-.191-1.184q-.069-.69-.1-1.344q-.05-.747-.05-1.537t.05-1.537q.031-.653.1-1.344q.068-.69.195-1.184q.149-.558.552-.966q.404-.408.962-.552q.493-.123 1.579-.191q1.086-.069 2.218-.1q1.308-.05 2.806-.05t2.806.05q1.133.031 2.218.1q1.086.068 1.58.195q.557.15.965.552t.552.962q.123.494.191 1.184q.069.69.1 1.344q.05.754.05 1.529v.356q-.398-.18-.821-.264t-.866-.084q-1.754 0-2.995 1.239t-1.241 2.995q0 .445.08.853q.081.409.243.786m-4.554-3.334l4.392-2.539l-4.392-2.539zM18 17.846v-1.692h-1.692v-1.692H18v-1.693h1.692v1.693h1.693v1.692h-1.693v1.692z");
15
+ d: path("M19.154 19.5v-2h-2v-1h2v-2h1v2h2v1h-2v2zm-9.058-4.942L14.604 12l-4.508-2.539zM12 6.019l.933.003q.933.003 2.149.04t2.417.106t1.763.218q.476.137.846.492t.505.841q.262.927.324 2.207t.038 2.287q-.296-.104-.642-.158t-.68-.055q-2.093 0-3.546 1.45t-1.453 3.525q-.02.27.01.513t.096.481q-.56.025-1.051.028t-.88.003H12q-1.641 0-3.075-.05q-1.248-.025-2.44-.103q-1.19-.078-1.733-.209q-.516-.136-.865-.496q-.35-.36-.487-.836q-.15-.523-.229-1.262q-.08-.738-.102-1.409q-.05-.805-.05-1.632t.05-1.61q.023-.689.102-1.41q.079-.722.229-1.264q.137-.477.497-.838q.361-.361.855-.495q.562-.15 1.753-.219q1.192-.069 2.418-.108q1.434-.04 3.077-.04");
16
16
  }
17
- </style><path class="ogkli3bf"/>`,
17
+ </style><path class="sv_sybbt"/>`,
18
18
  "fallback": "material-symbols-light:youtube-activity",
19
19
  });
20
20
  }
@@ -0,0 +1,22 @@
1
+ import { Icon } from '@iconify/css-react';
2
+ import { createElement } from 'react';
3
+
4
+ const viewBox = {"width":24,"height":24};
5
+
6
+ /** @type {{width?: string; height?: string;}} */
7
+ function Component({width, height, ...props}) {
8
+ return createElement(Icon, {
9
+ ...props,
10
+ width,
11
+ height,
12
+ viewBox,
13
+ "content": `<style>.fnzlhv3r {
14
+ fill: currentColor;
15
+ d: path("M12.008 18q-1.648 0-3.083-.043q-1.227-.043-2.42-.118t-1.747-.206q-.494-.133-.855-.495q-.36-.361-.497-.838q-.15-.517-.226-1.256t-.118-1.41Q3.02 12.828 3.02 12t.05-1.613q.031-.673.113-1.413q.083-.74.224-1.255q.136-.477.497-.838t.855-.494q.555-.15 1.747-.22q1.191-.069 2.418-.108q1.434-.04 3.077-.04l.933.003q.933.003 2.158.04q1.226.038 2.43.106q1.204.069 1.74.219q.494.133.855.494t.498.838q.14.516.223 1.255q.082.74.113 1.413Q21 11.17 21 12t-.043 1.634q-.043.671-.118 1.41t-.225 1.256q-.137.477-.498.838q-.36.361-.854.495q-.534.132-1.74.209t-2.43.115t-2.155.04zm-.001-1q2.085 0 4.255-.088t2.75-.243q.24-.069.414-.233q.174-.165.224-.386q.2-.667.275-1.95T20 11.995t-.075-2.09t-.275-1.936q-.07-.24-.234-.395t-.404-.224q-.581-.156-2.75-.243t-4.255-.088t-4.255.088t-2.744.243q-.24.07-.415.234q-.174.164-.224.385q-.2.668-.275 1.936t-.075 2.09t.075 2.105t.275 1.95q.07.24.234.395t.405.224q.575.156 2.744.244t4.255.087m1.982-5.348L10.692 9.81q-.211-.131-.404 0t-.192.354v3.692q0 .222.192.353t.404 0l3.296-1.861q.212-.121.212-.343t-.212-.353m-1.969.367");
16
+ }
17
+ </style><path class="fnzlhv3r"/>`,
18
+ "fallback": "material-symbols-light:youtube-video-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>.l_ise4bm {
14
+ fill: currentColor;
15
+ d: path("M12.008 18q-1.648 0-3.083-.043q-1.227-.043-2.42-.118t-1.747-.206q-.494-.133-.855-.495q-.36-.361-.497-.838q-.15-.517-.226-1.256t-.118-1.41Q3.02 12.828 3.02 12t.05-1.613q.031-.673.113-1.413q.083-.74.224-1.255q.136-.477.497-.838t.855-.494q.555-.15 1.747-.22q1.191-.069 2.418-.108q1.434-.04 3.077-.04l.933.003q.933.003 2.158.04q1.226.038 2.43.106q1.204.069 1.74.219q.494.133.855.494t.498.838q.14.516.223 1.255q.082.74.113 1.413Q21 11.17 21 12t-.043 1.634q-.043.671-.118 1.41t-.225 1.256q-.137.477-.498.838q-.36.361-.854.495q-.534.132-1.74.209t-2.43.115t-2.155.04zm-.001-1q2.085 0 4.255-.088t2.75-.243q.24-.069.414-.233q.174-.165.224-.386q.2-.667.275-1.95T20 11.995t-.075-2.09t-.275-1.936q-.07-.24-.234-.395t-.404-.224q-.581-.156-2.75-.243t-4.255-.088t-4.255.088t-2.744.243q-.24.07-.415.234q-.174.164-.224.385q-.2.668-.275 1.936t-.075 2.09t.075 2.105t.275 1.95q.07.24.234.395t.405.224q.575.156 2.744.244t4.255.087m-1.91-2.442L14.603 12l-4.508-2.539zm1.922-2.539");
16
+ }
17
+ </style><path class="l_ise4bm"/>`,
18
+ "fallback": "material-symbols-light:youtube-video-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>.pro9vliz {
14
+ fill: currentColor;
15
+ d: path("M12.008 18q-1.648 0-3.083-.043q-1.227-.043-2.42-.118t-1.747-.206q-.494-.133-.855-.495q-.36-.361-.497-.838q-.15-.517-.226-1.256t-.118-1.41Q3.02 12.828 3.02 12t.05-1.613q.031-.673.113-1.413q.083-.74.224-1.255q.136-.477.497-.838t.855-.494q.555-.15 1.747-.22q1.191-.069 2.418-.108q1.434-.04 3.077-.04l.933.003q.933.003 2.158.04q1.226.038 2.43.106q1.204.069 1.74.219q.494.133.855.494t.498.838q.14.516.223 1.255q.082.74.113 1.413Q21 11.17 21 12t-.043 1.634q-.043.671-.118 1.41t-.225 1.256q-.137.477-.498.838q-.36.361-.854.495q-.534.132-1.74.209t-2.43.115t-2.155.04zm1.98-6.348L10.693 9.81q-.211-.131-.403 0t-.193.354v3.692q0 .222.193.353t.403 0l3.297-1.861q.211-.121.211-.343t-.211-.353");
16
+ }
17
+ </style><path class="pro9vliz"/>`,
18
+ "fallback": "material-symbols-light:youtube-video-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>.y938j6bz {
14
+ fill: currentColor;
15
+ d: path("M12.008 18q-1.648 0-3.083-.043q-1.227-.043-2.42-.118t-1.747-.206q-.494-.133-.855-.495q-.36-.361-.497-.838q-.15-.517-.226-1.256t-.118-1.41Q3.02 12.828 3.02 12t.05-1.613q.031-.673.113-1.413q.083-.74.224-1.255q.136-.477.497-.838t.855-.494q.555-.15 1.747-.22q1.191-.069 2.418-.108q1.434-.04 3.077-.04l.933.003q.933.003 2.158.04q1.226.038 2.43.106q1.204.069 1.74.219q.494.133.855.494t.498.838q.14.516.223 1.255q.082.74.113 1.413Q21 11.17 21 12t-.043 1.634q-.043.671-.118 1.41t-.225 1.256q-.137.477-.498.838q-.36.361-.854.495q-.534.132-1.74.209t-2.43.115t-2.155.04zm-1.912-3.442L14.604 12l-4.508-2.539z");
16
+ }
17
+ </style><path class="y938j6bz"/>`,
18
+ "fallback": "material-symbols-light:youtube-video",
19
+ });
20
+ }
21
+
22
+ export default Component;
package/iconify.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "prefix": "material-symbols-light",
3
3
  "info": {
4
4
  "name": "Material Symbols Light",
5
- "total": 15232,
5
+ "total": 15270,
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": 1771997959
31
+ "lastModified": 1773295288
32
32
  }