adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
41 lines (40 loc) • 1.7 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkWirelessDisabledSymbolic = (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: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M8 2c-1.817 0-3.44.42-4.857 1.143l1.51 1.51C5.632 4.232 6.72 4 8 4c2.3 0 4 .78 5.52 2H15V4.62C13.36 3.152 10.814 2 8 2zM1.62 4.092c-.212.158-.42.321-.62.494V6h1.48c.194-.161.39-.313.59-.457zM8 5c-.94 0-1.815.148-2.592.408L7.08 7.08C7.37 7.03 7.674 7 8 7c1.241 0 2.22.394 3 1h2V7c-.995-1.223-2.873-2-5-2zM3.777 6.25A4.196 4.196 0 003 7v1h2c.1-.077.212-.14.318-.209zM8 8l2 2h1V9c-.837-.672-1.743-1-3-1zm-2.06.412A3.773 3.773 0 005 9v1h2.527zM8 11a2 2 0 101.896 1.37l-1.263-1.265A2 2 0 008 11z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M1.531.469L.47 1.53l14 14 1.062-1.062z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkWirelessDisabledSymbolic);
var network_wireless_disabled_symbolic_default = Memo;
export {
network_wireless_disabled_symbolic_default as default
};