UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

71 lines (70 loc) 2.31 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkCellularHardwareDisabledSymbolic = (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 164,249 v 1.5 4.5 h 3 v -4.5 -1.5 z m -4,3 v 1.5 1.5 h 3 v -1.5 -1.5 z m -8,8 v 1.5 1.5 h 3 v -1.5 -1.5 z m 4,0 v 1.5 1.5 h 3 v -1.5 -1.5 z m 4,0 v 1.5 1.5 h 3 v -1.5 -1.5 z m 4,0 v 1.5 1.5 h 3 v -1.5 -1.5 z", style: { lineHeight: "normal", fontVariantLigatures: "normal", fontVariantPosition: "normal", fontVariantCaps: "normal", fontVariantNumeric: "normal", fontVariantAlternates: "normal", fontFeatureSettings: "normal", textIndent: 0, textAlign: "start", textDecorationLine: "none", textDecorationStyle: "solid", textDecorationColor: "#000", textTransform: "none", textOrientation: "mixed", whiteSpace: "normal", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1 }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", opacity: 0.35, fillRule: "evenodd", transform: "translate(-152 -248)" }), /* @__PURE__ */ React.createElement("path", { d: "M 151.99995,256.00012 H 168 V 259 h -16.00005 z", transform: "translate(-152 -248)" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkCellularHardwareDisabledSymbolic); var network_cellular_hardware_disabled_symbolic_default = Memo; export { network_cellular_hardware_disabled_symbolic_default as default };