@iconify-react/material-symbols-light 1.0.5 → 1.0.7
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.
- package/components/b/battery-charging-20-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-20-2-rounded.jsx +22 -0
- package/components/b/battery-charging-20-2-sharp.jsx +22 -0
- package/components/b/battery-charging-20-2.jsx +22 -0
- package/components/b/battery-charging-30-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-30-2-rounded.jsx +22 -0
- package/components/b/battery-charging-30-2-sharp.jsx +22 -0
- package/components/b/battery-charging-30-2.jsx +22 -0
- package/components/b/battery-charging-50-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-50-2-rounded.jsx +22 -0
- package/components/b/battery-charging-50-2-sharp.jsx +22 -0
- package/components/b/battery-charging-50-2.jsx +22 -0
- package/components/b/battery-charging-60-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-60-2-rounded.jsx +22 -0
- package/components/b/battery-charging-60-2-sharp.jsx +22 -0
- package/components/b/battery-charging-60-2.jsx +22 -0
- package/components/b/battery-charging-80-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-80-2-rounded.jsx +22 -0
- package/components/b/battery-charging-80-2-sharp.jsx +22 -0
- package/components/b/battery-charging-80-2.jsx +22 -0
- package/components/b/battery-charging-full-2-outline-rounded.jsx +22 -0
- package/components/b/battery-charging-full-2-outline-sharp.jsx +22 -0
- package/components/b/battery-charging-full-2-outline.jsx +22 -0
- package/components/b/battery-charging-full-2-rounded.jsx +22 -0
- package/components/b/battery-charging-full-2-sharp.jsx +22 -0
- package/components/b/battery-charging-full-2.jsx +22 -0
- package/components/b/bolt-boost-rounded.jsx +22 -0
- package/components/b/bolt-boost.jsx +22 -0
- package/components/c/car-fan-recirculate-2-outline-rounded.jsx +22 -0
- package/components/c/car-fan-recirculate-2-outline-sharp.jsx +22 -0
- package/components/c/car-fan-recirculate-2-outline.jsx +22 -0
- package/components/c/car-fan-recirculate-2-rounded.jsx +22 -0
- package/components/c/car-fan-recirculate-2-sharp.jsx +22 -0
- package/components/c/car-fan-recirculate-2.jsx +22 -0
- package/components/c/car-fan-recirculate-outline-rounded.jsx +22 -0
- package/components/c/car-fan-recirculate-outline-sharp.jsx +22 -0
- package/components/c/car-fan-recirculate-outline.jsx +22 -0
- package/components/c/car-fan-recirculate-rounded.jsx +3 -3
- package/components/c/car-fan-recirculate-sharp.jsx +22 -0
- package/components/c/car-fan-recirculate.jsx +3 -3
- package/components/l/list-arrow-rounded.jsx +22 -0
- package/components/l/list-arrow.jsx +22 -0
- package/components/w/wifi-device-outline-rounded.jsx +22 -0
- package/components/w/wifi-device-outline-sharp.jsx +22 -0
- package/components/w/wifi-device-outline.jsx +22 -0
- package/components/w/wifi-device-rounded.jsx +22 -0
- package/components/w/wifi-device-sharp.jsx +22 -0
- package/components/w/wifi-device.jsx +22 -0
- package/iconify.json +2 -2
- package/package.json +185 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @type {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.kd25c0br {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="kd25c0br"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-20-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>.tejo3rbr {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H5.5v7h8.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="tejo3rbr"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-20-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>.lx65sbb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H5.5v7h9.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="lx65sbb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-20-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>.w0pet7y {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H5.5v7h9.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="w0pet7y"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-20-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>.ypfyq_ay {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="ypfyq_ay"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-30-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>.wlgjghuj {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H7.5v7h6.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="wlgjghuj"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-30-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>.jo83gef {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H7.5v7h7.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="jo83gef"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-30-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>.jzshhhb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H7.5v7h7.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="jzshhhb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-30-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>.yw1jvwbu {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="yw1jvwbu"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-50-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>.v1bjliif {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H9.5v7h4.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="v1bjliif"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-50-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>.x4-z3vs {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H9.5v7h5.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="x4-z3vs"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-50-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>.anftz8b {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H9.5v7h5.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="anftz8b"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-50-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>.kg4moabd {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="kg4moabd"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-60-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>.ddbolv0r {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H10.5v7h3.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="ddbolv0r"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-60-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>.yxvqafb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H10.5v7h4.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="yxvqafb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-60-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>.pikbk3b {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H10.5v7h4.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="pikbk3b"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-60-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>.n--lxcbq {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="n--lxcbq"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-80-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>.n_6y9hbp {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H12.5v7h1.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="n_6y9hbp"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-80-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>.x1bobsb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H12.5v7h2.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="x1bobsb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-80-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>.t6ovf3b {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H12.5v7h2.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="t6ovf3b"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-80-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>.xe2cugpg {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.5 15.5v-7zm-.192 1q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .357.143q.143.144.143.357t-.143.357t-.357.143H3.5v7h10.556q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.581-4.063q.067-.092.153-.108q.086-.015.159.016t.134.103t.031.177l-.467 2.925h2.19q.248 0 .366.208t-.024.42l-2.58 4.063q-.068.092-.153.108q-.086.015-.159-.016t-.135-.103t-.03-.177z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="xe2cugpg"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.dqyiiib {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-.812 1H3.5v7h11.154l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="dqyiiib"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.ne7lx8f {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-.812 1H3.5v7h11.154l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5zM3.5 15.5v-7z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="ne7lx8f"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.tj60ue5j {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h11.238q.214 0 .338.143q.124.144.124.357l-2.78 4.048q-.75 1.104-.131 2.278t1.959 1.174q.213 0 .357.143t.143.357t-.143.357t-.357.143zm14.663-3.712h-2.19q-.248 0-.367-.207t.024-.42l2.196-3.39q.087-.13.22-.175q.134-.044.265.006t.212.171q.08.121.05.283l-.352 2.155h2.19q.248 0 .366.208t-.024.42l-2.196 3.39q-.086.13-.22.175t-.264-.006t-.212-.171q-.08-.121-.05-.283z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="tj60ue5j"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.fko9l_b {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.5 16.5v-9h12.962l-4 5.742V15.5h3.192l-.177 1zm14.867 0l.604-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="fko9l_b"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.op256cq {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.308 16.5q-.348 0-.578-.23t-.23-.578V8.308q0-.348.23-.578t.578-.23h12.154l-4 5.742V15.5h3.192l-.177 1zm14.06 0l.603-3.712h-2.933L18.417 7.5h.217l-.604 3.712h2.933L17.585 16.5z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="op256cq"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:battery-charging-full-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>.waox7ihg {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.69 19.379q-.069-.11-.044-.27l.816-5.648h-3.877q-.49 0-.727-.444t.055-.848l5.502-7.571q.106-.13.23-.159t.255.022t.199.16t.043.27l-.815 5.667h3.877q.49 0 .717.444t-.065.848l-5.483 7.552q-.106.13-.23.159t-.255-.022t-.198-.16M4.5 17.25q-.213 0-.356-.144T4 16.749t.144-.356t.356-.143h6.646q.25 0 .375.155t.125.341t-.125.345t-.375.159zm-1-4.75q-.213 0-.356-.144T3 11.999t.144-.356t.356-.143h3q.25 0 .375.155t.125.342t-.125.344t-.375.159zm1.98-4.75q-.212 0-.355-.144t-.144-.357t.144-.356t.356-.143h4.548q.25 0 .375.155t.125.341t-.125.345t-.375.159z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="waox7ihg"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:bolt-boost-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>.y8sp8nb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m13.52 20l.942-6.539H8.994L15.846 4h.423l-.942 6.558h5.448L13.942 20zM4 17.25v-1h7.72l-.147 1zM3 12.5v-1h4.489l-.739 1zm1.98-4.75v-1h6.024l-.72 1z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="y8sp8nb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:bolt-boost",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|