UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

77 lines (76 loc) 2.67 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkWiredNoRouteSymbolic = (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: "M5 1v4.361c.396-.45.893-.818 1.469-1.056a3.99 3.99 0 011.734-.297c.63.032 1.244.227 1.797.547V1zm3 5.01c-.26 0-.52.04-.766.142.247-.102.507-.115.766-.103zM2.031 8v3H0v4.938h5V11H3.031V9H4V8zM9.98 8a1.96 1.96 0 01.001 0zm2.011 0c0 .334-.034.67-.119 1h1.098v2H11v4.938h5V11h-2.031V9.984H14V8z", style: { isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1, marker: "none" }, color: "#bebebe", overflow: "visible", opacity: 0.35 }), /* @__PURE__ */ React.createElement("path", { d: "M8.152 5.006A2.992 2.992 0 005 8h2c0-.408.24-.768.617-.924a.994.994 0 011.09.217.994.994 0 01.217 1.09A.994.994 0 018 9a1 1 0 00-1 1v2h2v-1.18a2.998 2.998 0 001.771-1.672 3.006 3.006 0 00-.65-3.27 3.001 3.001 0 00-1.969-.872zM8 13a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1z", 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" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkWiredNoRouteSymbolic); var network_wired_no_route_symbolic_default = Memo; export { network_wired_no_route_symbolic_default as default };