adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
43 lines (42 loc) • 1.5 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkCellularGprsSymbolic = (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 3.031h4c.833 0 1.525.564 1.769 1.053s.23.947.23.947v1h-2v-1h-4v6h4v-2H8v-2h4.063v4s.013.459-.231.948c-.244.488-.936 1.052-1.77 1.052h-4s-.458.014-.947-.23c-.488-.244-1.053-.936-1.053-1.77v-6s-.013-.459.231-.947c.244-.489.936-1.053 1.77-1.053z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible",
fill: "#2e3436"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkCellularGprsSymbolic);
var network_cellular_gprs_symbolic_default = Memo;
export {
network_cellular_gprs_symbolic_default as default
};