adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
47 lines (46 loc) • 1.64 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkCellularAcquiringSymbolic = (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 16",
...props
}, /* @__PURE__ */ React.createElement("g", {
fill: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M12 1.01v6h2v5h-2v3h3V.99zM8 3.99v3h3v-3zm-4 2v1h3v-1zm-3.979 4l-.021 5h3.021v-3h-2v-2zm3.979 2v3h3v-3zm4 0v3h3v-3z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible",
opacity: 0.35
}), /* @__PURE__ */ React.createElement("path", {
d: "M5 9.5A1.5 1.5 0 013.5 11 1.5 1.5 0 012 9.5 1.5 1.5 0 013.5 8 1.5 1.5 0 015 9.5zm4 0A1.5 1.5 0 017.5 11 1.5 1.5 0 016 9.5 1.5 1.5 0 017.5 8 1.5 1.5 0 019 9.5zm4 0a1.5 1.5 0 01-1.5 1.5A1.5 1.5 0 0110 9.5 1.5 1.5 0 0111.5 8 1.5 1.5 0 0113 9.5z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkCellularAcquiringSymbolic);
var network_cellular_acquiring_symbolic_default = Memo;
export {
network_cellular_acquiring_symbolic_default as default
};