UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

53 lines (52 loc) 1.57 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkWiredOfflineSymbolic = (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", { color: "#bebebe", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M5 1v5h2v2H2.031v3H0v4.938h5V11H3.031V9H12v.984h1V8H8V6h2V1z", style: { isolation: "auto", mixBlendMode: "normal", marker: "none" }, overflow: "visible", opacity: 0.35 }), /* @__PURE__ */ React.createElement("path", { d: "M11 11h1.375l1.125 1.094L14.594 11H16v1.469l-1.094 1.062L16 14.594V16h-1.438L13.5 14.937 12.437 16H11v-1.406l1.063-1.063L11 12.47z", style: { marker: "none" }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkWiredOfflineSymbolic); var network_wired_offline_symbolic_default = Memo; export { network_wired_offline_symbolic_default as default };