adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
59 lines (58 loc) • 2.08 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkCellularConnectedSymbolic = (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: "M6 1c-1.01.005-1 1-1 1v11c0 1 1 1 1 1h4c1 0 1-1 1-1V5c0-.554-.446-1-1-1H7V2s-.009-.994-1-1zm0 4h4v3.031L6 8zm0 4h1v1h1V9h1v1h1v1H9v1h1v1H9v-1H8v1H7v-1H6v-1h1v-1H6zm1 2v1h1v-1zm1 0h1v-1H8z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M16 5v1c0 .257-.13.528-.313.719L14.408 8l1.28 1.281c.183.19.313.462.313.719v1h-1c-.31 0-.552-.09-.75-.281L11.594 8l2.656-2.719c.198-.19.44-.281.75-.281zM0 5v1c0 .257.13.528.313.719L1.593 8 .314 9.281C.13 9.471 0 9.743 0 10v1h1c.31 0 .552-.09.75-.281L4.406 8 1.75 5.281C1.552 5.091 1.31 5 1 5z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "Bitstream Vera Sans",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkCellularConnectedSymbolic);
var network_cellular_connected_symbolic_default = Memo;
export {
network_cellular_connected_symbolic_default as default
};