UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

72 lines (71 loc) 3 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkWirelessNoRouteSymbolic = (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: "#000", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M8.152 4.006A2.992 2.992 0 005 7h2c0-.408.24-.768.617-.924a.994.994 0 011.09.217.994.994 0 01.217 1.09A.994.994 0 018 8a1 1 0 00-1 1v2h2V9.82a2.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 12a1 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 }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M8 2C5.186 2 2.828 3 1 4.586V6h1.48a8.659 8.659 0 012.354-1.426 3.983 3.983 0 011.635-1.27 4.004 4.004 0 014.736 1.305c.84.344 1.599.816 2.315 1.391H15V4.62C13.36 3.152 10.814 2 8 2zm.096 3.004a1.994 1.994 0 00-.862.148c.317-.13.656-.133.987-.095-.043-.005-.074-.05-.117-.053h-.008zm-1.399.498A2.227 2.227 0 006.305 6h.002c.108-.184.238-.353.392-.498h-.002zm-2.56.502A4.38 4.38 0 003 7v1h1V7c0-.342.054-.674.137-.996zm7.732.027c.16.64.17 1.316.002 1.969H13V7c-.3-.369-.688-.69-1.13-.969zm-2.103.031c.213.407.263.878.173 1.33a1.994 1.994 0 00-.173-1.33zM6.254 8.273c-.465.164-.881.4-1.254.727v1h1V9c0-.275.119-.504.254-.727zm2.539.483C8.539 8.87 8.287 9 8 9v.115l.664-.236c.058-.02.073-.098.129-.123zM11 9.578a4.233 4.233 0 01-.47.422H11z", style: { marker: "none" }, overflow: "visible", opacity: 0.35 })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkWirelessNoRouteSymbolic); var network_wireless_no_route_symbolic_default = Memo; export { network_wireless_no_route_symbolic_default as default };