adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
43 lines (42 loc) • 1.64 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkCellular2GSymbolic = (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("path", {
d: "M2.063 0A2.048 2.048 0 000 2.063v11.874C0 15.088.912 16 2.063 16h11.874A2.048 2.048 0 0016 13.937V2.063A2.048 2.048 0 0013.937 0zM4 3h1s.459-.014.947.23C6.436 3.475 7 4.167 7 5v2a1 1 0 01-.2.6L4.25 11H7v2H2v-2a1 1 0 01.2-.6L5 6.666V5H4v2H2V5c0-.833.564-1.525 1.053-1.77C3.54 2.986 4 3 4 3zm6 0h2c.833 0 1.525.564 1.77 1.053.244.488.23.947.23.947v1h-2V5h-2v6h2V9h-1V7h3v4s.014.459-.23.947C13.525 12.436 12.833 13 12 13h-2s-.459.014-.947-.23C8.564 12.525 8 11.833 8 11V5s-.014-.459.23-.947C8.475 3.564 9.167 3 10 3z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible",
fill: "#2e3436"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkCellular2GSymbolic);
var network_cellular_2g_symbolic_default = Memo;
export {
network_cellular_2g_symbolic_default as default
};