@iconify-solid/material-symbols-light 1.0.3 → 1.0.5
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/blinds-2-closed-outline-rounded.jsx +18 -0
- package/components/b/blinds-2-closed-outline.jsx +18 -0
- package/components/b/blinds-2-closed-rounded.jsx +18 -0
- package/components/b/blinds-2-closed.jsx +18 -0
- package/components/b/blinds-2-outline-rounded.jsx +18 -0
- package/components/b/blinds-2-outline.jsx +18 -0
- package/components/b/blinds-2-rounded.jsx +18 -0
- package/components/b/blinds-2.jsx +18 -0
- package/components/b/bolt-boost-rounded.jsx +18 -0
- package/components/b/bolt-boost.jsx +18 -0
- package/components/g/garage-door-open-outline-rounded.jsx +18 -0
- package/components/g/garage-door-open-outline.jsx +18 -0
- package/components/g/garage-door-open-rounded.jsx +18 -0
- package/components/g/garage-door-open.jsx +18 -0
- package/components/g/garage-door-outline-rounded.jsx +3 -3
- package/components/g/garage-door-outline.jsx +3 -3
- package/components/g/garage-door-rounded.jsx +3 -3
- package/components/g/garage-door.jsx +3 -3
- package/components/l/light-group-2-outline-rounded.jsx +18 -0
- package/components/l/light-group-2-outline.jsx +18 -0
- package/components/l/light-group-2-rounded.jsx +18 -0
- package/components/l/light-group-2.jsx +18 -0
- package/components/l/lightstrip-outline-sharp.jsx +18 -0
- package/components/l/lightstrip-outline.jsx +18 -0
- package/components/l/lightstrip-sharp.jsx +18 -0
- package/components/l/lightstrip.jsx +18 -0
- package/components/s/shades-closed-outline-rounded.jsx +18 -0
- package/components/s/shades-closed-outline.jsx +18 -0
- package/components/s/shades-closed-rounded.jsx +18 -0
- package/components/s/shades-closed.jsx +18 -0
- package/components/s/shades-outline-rounded.jsx +18 -0
- package/components/s/shades-outline.jsx +18 -0
- package/components/s/shades-rounded.jsx +18 -0
- package/components/s/shades.jsx +18 -0
- package/components/s/soundbar-outline-rounded.jsx +18 -0
- package/components/s/soundbar-outline-sharp.jsx +18 -0
- package/components/s/soundbar-outline.jsx +18 -0
- package/components/s/soundbar-rounded.jsx +18 -0
- package/components/s/soundbar-sharp.jsx +18 -0
- package/components/s/soundbar.jsx +18 -0
- package/components/s/speaker-2-outline-rounded.jsx +18 -0
- package/components/s/speaker-2-outline-sharp.jsx +18 -0
- package/components/s/speaker-2-outline.jsx +18 -0
- package/components/s/speaker-2-rounded.jsx +18 -0
- package/components/s/speaker-2-sharp.jsx +18 -0
- package/components/s/speaker-2.jsx +18 -0
- package/components/s/subwoofer-outline-rounded.jsx +18 -0
- package/components/s/subwoofer-outline-sharp.jsx +18 -0
- package/components/s/subwoofer-outline.jsx +18 -0
- package/components/s/subwoofer-rounded.jsx +18 -0
- package/components/s/subwoofer-sharp.jsx +18 -0
- package/components/s/subwoofer.jsx +18 -0
- package/components/s/switch-off-outline-rounded.jsx +18 -0
- package/components/s/switch-off-outline-sharp.jsx +18 -0
- package/components/s/switch-off-outline.jsx +18 -0
- package/components/s/switch-off-rounded.jsx +18 -0
- package/components/s/switch-off-sharp.jsx +18 -0
- package/components/s/switch-off.jsx +18 -0
- package/components/s/switch-outline-rounded.jsx +3 -3
- package/components/s/switch-outline-sharp.jsx +3 -3
- package/components/s/switch-outline.jsx +3 -3
- package/components/s/switch-rounded.jsx +3 -3
- package/components/s/switch-sharp.jsx +3 -3
- package/components/s/switch.jsx +3 -3
- package/components/v/vacuum-2-on-outline.jsx +18 -0
- package/components/v/vacuum-2-on.jsx +18 -0
- package/components/v/vacuum-2-outline.jsx +18 -0
- package/components/v/vacuum-2.jsx +18 -0
- package/iconify.json +2 -2
- package/package.json +233 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.ee0uxuby {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M4 20.98V4H3V3h18v1h-1v17q-2.061 0-3.655-1.24t-1.954-3.26H9.584q-.368 2-1.958 3.24T4 20.98m1-1.072q1.58-.35 2.656-1.562Q8.73 17.135 8.73 15.5V4H5zM9.73 15.5h4.54V4H9.73zM19 19.889V4h-3.73v11.5q0 1.616 1.059 2.83q1.06 1.214 2.671 1.559M8.73 4H5zM19 4h-3.73z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="ee0uxuby"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:shades-outline"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.mwm1n0bz {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M4.79 20.98q-.348 0-.569-.201Q4 20.577 4 20.134V4h-.5q-.213 0-.357-.143T3 3.5t.143-.357T3.5 3h17q.214 0 .357.143T21 3.5t-.143.357T20.5 4H20v16.135q-.025.442-.246.644t-.57.202q-1.694 0-3.1-1.468q-1.405-1.467-1.694-3.013H9.585q-.289 1.546-1.695 3.014q-1.405 1.467-3.1 1.467M9.73 15.5h4.54V3.98H9.73z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="mwm1n0bz"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:shades-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.u1e94tb {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M4 20.98V4H3V3h18v1h-1v17q-2.061 0-3.655-1.24t-1.954-3.26H9.584q-.368 2-1.958 3.24T4 20.98m5.73-5.48h4.54V4H9.73z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="u1e94tb"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:shades"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.dl2py4bt {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.643 9.836q-.143.144-.143.356v1.904q0 .204.144.343t.357.138t.356-.144t.143-.356v-1.885q0-.212-.144-.356t-.357-.144t-.356.144m-2.787 8.02Q8.713 18 8.5 18H6.27q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H8.5q.213 0 .356.144t.144.357t-.144.356m9.231 0q-.144.143-.356.143h-2.25q-.204 0-.343-.144T15 17.499t.144-.356T15.5 17h2.23q.213 0 .357.144t.144.357t-.144.356m-10.818-5.28q.614 0 1.028-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462zm0-1h14.77q.269 0 .442-.173t.173-.442V8.616q0-.27-.173-.443T19.385 8H4.615q-.269 0-.442.173T4 8.616v5.038q0 .269.173.442t.443.173M12 11.135");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="dl2py4bt"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar-outline-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.lxwfhhes {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M3 15.27V7h18v8.27zm1-1h16V8H4zm8-3.135");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="lxwfhhes"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar-outline-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.e--6l4ft {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462zm0-1h14.77q.269 0 .442-.173t.173-.442V8.616q0-.27-.173-.443T19.385 8H4.615q-.269 0-.442.173T4 8.616v5.038q0 .269.173.442t.443.173M12 11.135");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="e--6l4ft"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar-outline"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.tq_wzwbo {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.643 9.836q-.143.144-.143.356v1.904q0 .204.144.343t.357.138t.356-.144t.143-.356v-1.885q0-.212-.144-.356t-.357-.144t-.356.144m-2.787 8.02Q8.713 18 8.5 18H6.27q-.213 0-.357-.144t-.144-.357t.144-.356t.356-.143H8.5q.213 0 .356.144t.144.357t-.144.356m9.231 0q-.144.143-.356.143h-2.25q-.204 0-.343-.144T15 17.499t.144-.356T15.5 17h2.23q.213 0 .357.144t.144.357t-.144.356m-10.818-5.28q.614 0 1.028-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="tq_wzwbo"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.bxa6qx0e {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M3 15.27V7h18v8.27z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="bxa6qx0e"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.r9pgotby {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M11.5 12.577h1V9.692h-1zM5.77 18v-1H9v1zM15 18v-1h3.23v1zm-7.73-5.423q.613 0 1.027-.414q.414-.415.414-1.019t-.414-1.018t-1.018-.414t-1.028.417t-.424 1.005q0 .614.423 1.028q.424.415 1.02.415m9.455.02q.6 0 1.034-.428q.433-.428.433-1.028t-.431-1.025t-1.038-.424t-1.03.424t-.424 1.025t.428 1.028t1.028.427M4.615 15.27q-.69 0-1.152-.462T3 13.652V8.617q0-.692.463-1.155T4.615 7h14.77q.69 0 1.152.463T21 8.617v5.035q0 .692-.463 1.155t-1.153.462z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="r9pgotby"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:soundbar"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.dsds1vfe {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M7.616 17.366h8.769q.269 0 .442-.174q.173-.173.173-.442V4.616q0-.27-.173-.443T16.385 4h-8.77q-.269 0-.442.173T7 4.616V16.75q0 .27.173.442q.173.174.443.174M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M8.827 21q-.213 0-.357-.143t-.143-.357q0-.208.16-.322q.161-.114.34-.178h.423q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.404q.213 0 .357.143t.143.357t-.143.357t-.357.143zM12 9.173");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="dsds1vfe"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2-outline-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.wgtphacj {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M7 17.366h10V4H7zm5-4.962q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.928 0-1.589-.655t-.661-1.58t.661-1.586T12 6.923t1.589.66t.661 1.585t-.661 1.581t-1.589.655m0 4.154q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H6V3h12v15.366h-5.379q.218.719.794 1.176T14.75 20h.904zM12 9.173");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="wgtphacj"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2-outline-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.wql634bg {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M7.616 17.366h8.769q.269 0 .442-.174q.173-.173.173-.442V4.616q0-.27-.173-.443T16.385 4h-8.77q-.269 0-.442.173T7 4.616V16.75q0 .27.173.442q.173.174.443.174M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.904zM12 9.173");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="wql634bg"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2-outline"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.fdc-onkr {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M8.827 21q-.213 0-.357-.143t-.143-.357q0-.208.16-.322q.161-.114.34-.178h.423q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.404q.213 0 .357.143t.143.357t-.143.357t-.357.143z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="fdc-onkr"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.g3iykbbh {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.928 0-1.589-.655t-.661-1.58t.661-1.586T12 6.923t1.589.66t.661 1.585t-.661 1.581t-1.589.655m0 4.154q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H6V3h12v15.366h-5.379q.218.719.794 1.176T14.75 20h.904z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="g3iykbbh"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.grga7wbi {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M12 12.404q1.362 0 2.306-.935q.944-.934.944-2.296t-.944-2.315q-.944-.954-2.306-.954t-2.306.954t-.944 2.315t.944 2.296t2.306.935m0-1q-.921 0-1.586-.655q-.664-.655-.664-1.576q0-.94.665-1.595q.664-.655 1.585-.655t1.586.655t.664 1.595q0 .921-.664 1.576q-.665.655-1.586.655m0 4.154q.29 0 .51-.211q.22-.21.22-.52q0-.29-.22-.51t-.51-.22q-.31 0-.52.22t-.21.51q0 .31.21.52t.52.21M15.654 21H8.327v-1h.923q.748 0 1.33-.458t.799-1.177H7.616q-.691 0-1.153-.462T6 16.75V4.616q0-.691.463-1.153T7.616 3h8.769q.69 0 1.153.463T18 4.616V16.75q0 .69-.462 1.153t-1.153.463H12.62q.218.719.79 1.176q.572.458 1.339.458h.904z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="grga7wbi"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:speaker-2"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.vuy0_shx {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M9.308 21.5H6q-.213 0-.356-.144t-.144-.357t.144-.356T6 20.5h3.308q.212 0 .356.144t.144.357t-.144.356t-.356.143m8.692 0h-3.308q-.212 0-.356-.144t-.144-.357t.144-.356t.356-.143H18q.213 0 .356.144t.144.357t-.144.356T18 21.5M5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zm.11-1h11.82q.29 0 .462-.221t.135-.49l-2.07-12.77q-.038-.23-.211-.375Q16.05 4 15.819 4H8.156q-.231 0-.394.144t-.202.375L5.47 17.29q-.038.269.145.49q.182.221.47.221M12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="vuy0_shx"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer-outline-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.a02zlobx {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zm-10-2.5L6.796 3h10.416l2.596 16zm1.164-1h13.263L16.34 4H7.637zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="a02zlobx"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer-outline-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.sldababb {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zM5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zm.11-1h11.82q.29 0 .462-.221t.135-.49l-2.07-12.77q-.038-.23-.211-.375Q16.05 4 15.819 4H8.156q-.231 0-.394.144t-.202.375L5.47 17.29q-.038.269.145.49q.182.221.47.221M12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21m0 5.366");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="sldababb"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer-outline"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.g4vqa2vk {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M9.308 21.5H6q-.213 0-.356-.144t-.144-.357t.144-.356T6 20.5h3.308q.212 0 .356.144t.144.357t-.144.356t-.356.143m8.692 0h-3.308q-.212 0-.356-.144t-.144-.357t.144-.356t.356-.143H18q.213 0 .356.144t.144.357t-.144.356T18 21.5M5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="g4vqa2vk"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.os0t5xby {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zm-10-2.5L6.796 3h10.416l2.596 16zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="os0t5xby"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.bhhffllb {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M5.5 21.5v-1h4.308v1zm8.692 0v-1H18.5v1zM5.977 19q-.7 0-1.156-.53t-.338-1.224l2.102-13q.092-.548.507-.897T8.06 3h7.88q.545 0 .967.347t.508.9l2.108 13q.117.694-.327 1.223t-1.148.53zM12 15.846q1.362 0 2.306-.944t.944-2.306t-.944-2.305T12 9.346t-2.306.945t-.944 2.305t.944 2.306t2.306.944m0-1q-.928 0-1.589-.663t-.661-1.595t.661-1.587T12 10.346t1.589.66t.661 1.585t-.661 1.59t-1.589.665m0-7.615q.29 0 .51-.21t.22-.521q0-.29-.22-.51t-.52-.22t-.51.22t-.21.52t.21.51t.52.21");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="bhhffllb"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:subwoofer"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.uz8yy7ba {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zm-.02 1H6.596q-.269 0-.442.173t-.173.443v14.769q0 .269.173.442t.442.173h10.789q.269 0 .452-.173q.182-.173.182-.443L18 4.616q0-.27-.173-.443T17.385 4M14.5 7.712H9.542q-.351 0-.581.232t-.23.575v6.943q0 .343.232.575t.576.232h4.958q.351 0 .581-.232t.23-.575V8.519q0-.343-.232-.575t-.576-.232m-.192 1v4.673H9.73V8.71zm-2.304 8.75q-.29 0-.484.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m0-12.288q-.29 0-.483.19t-.193.48t.19.493t.48.203t.483-.203t.193-.493t-.19-.48t-.48-.19M12 12");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="uz8yy7ba"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off-outline-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.r9l4q2nd {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M4.98 21V3H19v18zm1-1H18V4H5.98zm2.732-3.73h6.577V7.711H8.71zm5.577-7.558v4.672H9.712V8.712zM11.98 18.807q.292 0 .482-.201t.19-.469q0-.29-.188-.493q-.19-.203-.479-.203q-.267 0-.472.203q-.206.203-.206.493q0 .268.202.469t.47.2m0-12.288q.293 0 .483-.2q.19-.202.19-.47q0-.29-.188-.483q-.19-.193-.479-.193q-.267 0-.472.193q-.206.193-.206.488q0 .273.202.469t.47.196m0 5.481");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="r9l4q2nd"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off-outline-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.kms9x3br {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zm-.02 1H6.596q-.269 0-.442.173t-.173.443v14.769q0 .269.173.442t.442.173h10.789q.269 0 .452-.173q.182-.173.182-.443L18 4.616q0-.27-.173-.443T17.385 4m-2.077 3.712H8.73v8.557h6.577zm-1 1v4.673H9.73V8.71zM12 17.462q-.286 0-.48.193t-.193.48t.193.48t.48.193t.48-.194t.193-.48q0-.286-.193-.48t-.48-.192m0-12.289q-.287 0-.48.193t-.193.48t.193.49t.48.202t.48-.203t.193-.489t-.193-.48t-.48-.193M12 12");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="kms9x3br"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off-outline"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.y9es4nbd {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zM14.5 7.712H9.542q-.351 0-.581.232t-.23.575v6.943q0 .343.232.575t.576.232h4.958q.351 0 .581-.232t.23-.575V8.519q0-.343-.232-.575t-.576-.232m-.192 1v4.673H9.73V8.71zm-2.304 9.25q-.29 0-.484.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m.02-13.288q-.29 0-.483.19t-.194.48t.19.483t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.193");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="y9es4nbd"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.dmp2z3bi {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M4.98 21V3H19v18zm3.732-4.73h6.577V7.711H8.71zm5.577-7.558v4.672H9.712V8.712zM11.98 19.307q.292 0 .482-.201t.19-.469q0-.29-.188-.493q-.19-.203-.479-.203q-.267 0-.472.203q-.206.203-.206.493q0 .268.202.469t.47.2m.017-13.288q.29 0 .483-.2q.193-.202.193-.47q0-.29-.193-.492q-.193-.203-.488-.203q-.273 0-.469.203q-.196.202-.196.493q0 .267.2.468q.202.201.47.201");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="dmp2z3bi"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off-sharp"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.l5170xbs {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M17.404 3q.69 0 1.153.463t.462 1.152v14.77q0 .69-.462 1.152T17.404 21H6.616q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3zm-2.096 4.712H8.73v8.557h6.577zm-1 1v4.673H9.73V8.71zm-2.305 9.25q-.29 0-.483.19t-.193.479t.19.484t.48.193t.483-.19t.193-.48t-.19-.483t-.48-.194m.02-13.288q-.29 0-.484.19t-.193.48t.19.483t.48.193t.483-.19t.193-.48t-.19-.483q-.189-.193-.48-.193");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="l5170xbs"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:switch-off"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -2,11 +2,11 @@ import { Icon } from '@iconify/css-solid';
|
|
|
2
2
|
import { splitProps } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const viewBox = {"width":24,"height":24};
|
|
5
|
-
const content = `<style>.
|
|
5
|
+
const content = `<style>.e60bw83j {
|
|
6
6
|
fill: currentColor;
|
|
7
|
-
d: path("
|
|
7
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.452.173q-.183.173-.183.443v14.769q0 .269.183.442q.182.173.452.173m2.903-3.712h4.959q.35 0 .58-.232t.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-8.75q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 12.288q.29 0 .483-.19t.193-.48t-.19-.492t-.48-.203t-.483.203t-.193.493t.19.48t.48.189M12 12");
|
|
8
8
|
}
|
|
9
|
-
</style><path class="
|
|
9
|
+
</style><path class="e60bw83j"/>`;
|
|
10
10
|
|
|
11
11
|
/** @param props {{width?: string; height?: string;}} */
|
|
12
12
|
function Component(props) {
|
|
@@ -2,11 +2,11 @@ import { Icon } from '@iconify/css-solid';
|
|
|
2
2
|
import { splitProps } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const viewBox = {"width":24,"height":24};
|
|
5
|
-
const content = `<style>.
|
|
5
|
+
const content = `<style>.jx7nwqbb {
|
|
6
6
|
fill: currentColor;
|
|
7
|
-
d: path("
|
|
7
|
+
d: path("M4.98 21V3H19v18zm1-1H18V4H5.98zm2.712-3.712h6.577V7.731H8.692zm1-1v-4.672h4.577v4.673zm2.303-8.73q.267 0 .472-.203q.206-.203.206-.493q0-.268-.202-.469t-.471-.2q-.292 0-.482.2q-.191.201-.191.469q0 .29.189.493q.19.203.479.203m0 12.269q.267 0 .472-.193q.206-.193.206-.489q0-.272-.202-.468T12 17.481q-.292 0-.482.2q-.191.201-.191.47q0 .29.189.483q.19.193.479.193M12 12");
|
|
8
8
|
}
|
|
9
|
-
</style><path class="
|
|
9
|
+
</style><path class="jx7nwqbb"/>`;
|
|
10
10
|
|
|
11
11
|
/** @param props {{width?: string; height?: string;}} */
|
|
12
12
|
function Component(props) {
|
|
@@ -2,11 +2,11 @@ import { Icon } from '@iconify/css-solid';
|
|
|
2
2
|
import { splitProps } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const viewBox = {"width":24,"height":24};
|
|
5
|
-
const content = `<style>.
|
|
5
|
+
const content = `<style>.dg51wqbo {
|
|
6
6
|
fill: currentColor;
|
|
7
|
-
d: path("
|
|
7
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm0-1h10.788q.269 0 .442-.173t.173-.442V4.615q0-.269-.173-.442T17.404 4H6.616q-.27 0-.443.173T6 4.616v14.769q0 .269.173.442t.443.173m2.096-3.712h6.577V7.731H8.71zm1-1v-4.672h4.577v4.673zM12 6.538q.287 0 .48-.193t.193-.48t-.193-.48t-.48-.193t-.48.194t-.193.48t.193.48t.48.193m0 12.288q.287 0 .48-.193t.193-.48t-.193-.49t-.48-.202t-.48.203t-.193.489t.193.48t.48.193M12 12");
|
|
8
8
|
}
|
|
9
|
-
</style><path class="
|
|
9
|
+
</style><path class="dg51wqbo"/>`;
|
|
10
10
|
|
|
11
11
|
/** @param props {{width?: string; height?: string;}} */
|
|
12
12
|
function Component(props) {
|
|
@@ -2,11 +2,11 @@ import { Icon } from '@iconify/css-solid';
|
|
|
2
2
|
import { splitProps } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const viewBox = {"width":24,"height":24};
|
|
5
|
-
const content = `<style>.
|
|
5
|
+
const content = `<style>.oje4zcbr {
|
|
6
6
|
fill: currentColor;
|
|
7
|
-
d: path("
|
|
7
|
+
d: path("M6.616 21q-.691 0-1.153-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3h10.788q.69 0 1.153.463t.462 1.153v14.769q0 .69-.462 1.153T17.404 21zm2.903-4.711h4.959q.35 0 .58-.233q.23-.232.23-.575V8.539q0-.344-.232-.576t-.575-.232H9.522q-.35 0-.58.232t-.23.576v6.942q0 .343.232.575t.575.233m.193-1v-4.673h4.577v4.673zm2.285-9.25q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.194t-.483.19t-.193.48t.19.483t.48.194m0 13.288q.29 0 .483-.19t.193-.48t-.19-.483t-.48-.193t-.483.19t-.193.48t.19.483t.48.193");
|
|
8
8
|
}
|
|
9
|
-
</style><path class="
|
|
9
|
+
</style><path class="oje4zcbr"/>`;
|
|
10
10
|
|
|
11
11
|
/** @param props {{width?: string; height?: string;}} */
|
|
12
12
|
function Component(props) {
|