UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

62 lines (61 loc) 2.2 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkWirelessHardwareDisabledSymbolic = (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: "M 178.26953,260 A 1.9999995,1.9999995 0 0 0 178,261 a 1.9999995,1.9999995 0 0 0 2,2 1.9999995,1.9999995 0 0 0 2,-2 1.9999995,1.9999995 0 0 0 -0.27148,-1 z", opacity: 0.35, transform: "translate(-172 -248)" }), /* @__PURE__ */ React.createElement("path", { d: "m 179.99999,250.00027 c -2.81422,0 -5.17173,1 -7,2.58557 v 1.41443 h 1.48072 c 1.51928,-1.26466 3.21936,-2 5.51928,-2 2.29992,0 4,0.77953 5.51928,2 h 1.48072 v -1.38128 c -1.64044,-1.46575 -4.18578,-2.61872 -7,-2.61872 z", style: { marker: "none" }, color: "#000", overflow: "visible", opacity: 0.35, transform: "translate(-172 -248)" }), /* @__PURE__ */ React.createElement("path", { d: "m 180,253 c -2.16664,0 -4.01982,0.73878 -5,2 h 5 5 c -0.99478,-1.2229 -2.8734,-2 -5,-2 z", style: { marker: "none" }, color: "#000", overflow: "visible", opacity: 0.35, transform: "translate(-172 -248)" }), /* @__PURE__ */ React.createElement("path", { d: "m 172,256 h 16 v 3 h -16 z", transform: "translate(-172 -248)" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkWirelessHardwareDisabledSymbolic); var network_wireless_hardware_disabled_symbolic_default = Memo; export { network_wireless_hardware_disabled_symbolic_default as default };