UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

92 lines (91 loc) 3.39 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkCellularNoRouteSymbolic = (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", fontWeight: 400, fontFamily: "sans-serif", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M12 1v14h3V1zM8 4v.018c.068 0 .137-.016.205-.012a4 4 0 012.623 1.166c.063.063.114.133.172.2V4zm.102 2.004c-.034-.002-.068.006-.102.006v.039c.074.003.15 0 .223.008-.045-.005-.077-.05-.121-.053zM4 7v1c0-.343.053-.677.137-1zm5.959.61zM4 9v6h2.281A1.962 1.962 0 016 14c0-.387.222-.691.418-1H6v-3c0-.387.222-.691.418-1zm4.793.758C8.539 9.873 8.286 10 8 10v.113l.666-.236c.057-.02.073-.094.127-.12zM0 10v5h3v-5zm11 .578a4.693 4.693 0 01-1 .78V13h-.418c.196.309.418.613.418 1 0 .364-.106.704-.281 1H11v-1.5z", 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 }, overflow: "visible", opacity: 0.35, fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M8.153 5.005A2.992 2.992 0 005 7.999h2c0-.407.24-.768.617-.924a.994.994 0 011.09.217.994.994 0 01.216 1.09.994.994 0 01-.923.617 1 1 0 00-1 1v2h2v-1.18a2.998 2.998 0 001.771-1.671 3.006 3.006 0 00-.65-3.27 3.001 3.001 0 00-1.97-.873zM8 12.999a1 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 }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkCellularNoRouteSymbolic); var network_cellular_no_route_symbolic_default = Memo; export { network_cellular_no_route_symbolic_default as default };