adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
67 lines (66 loc) • 2.33 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkWiredAcquiringSymbolic = (passedProps, ...restArgs) => {
const {
colored,
containerProps = {},
...rest
} = passedProps;
if (colored && typeof colored === "string") {
if (!containerProps.style) {
containerProps.style = {};
}
Object.assign(containerProps.style, {
"--custom-icon-color": colored
});
}
const render = (props) => /* @__PURE__ */ React.createElement("span", {
...containerProps,
className: cx("Icon", containerProps.className, {
colored
})
}, /* @__PURE__ */ React.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16.04 16",
...props
}, /* @__PURE__ */ React.createElement("g", {
fill: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M0 10.988h5.016v4.972H0zm5.024-9.96h5.016V6H5.024zm6 10h5.016V16h-5.016z",
style: {
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
color: "#bebebe",
overflow: "visible",
opacity: 0.35
}), /* @__PURE__ */ React.createElement("path", {
d: "M3.542 7.04c.829 0 1.496.668 1.496 1.497v.005c0 .829-.667 1.496-1.496 1.496a1.493 1.493 0 01-1.496-1.496v-.005c0-.829.667-1.496 1.496-1.496zm4 0c.829 0 1.496.668 1.496 1.497v.005c0 .829-.667 1.496-1.496 1.496a1.493 1.493 0 01-1.496-1.496v-.005c0-.829.667-1.496 1.496-1.496z",
style: {
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
color: "#000",
display: "block",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M7.542 7.04c.829 0 1.496.668 1.496 1.497v.005c0 .829-.667 1.496-1.496 1.496a1.493 1.493 0 01-1.496-1.496v-.005c0-.829.667-1.496 1.496-1.496zm4 0c.829 0 1.496.668 1.496 1.497v.005c0 .829-.667 1.496-1.496 1.496a1.493 1.493 0 01-1.496-1.496v-.005c0-.829.667-1.496 1.496-1.496z",
style: {
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
color: "#000",
display: "block",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkWiredAcquiringSymbolic);
var network_wired_acquiring_symbolic_default = Memo;
export {
network_wired_acquiring_symbolic_default as default
};