UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

125 lines (124 loc) 4.25 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgApplicationXApplianceSymbolic = (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.017 16.017", ...props }, /* @__PURE__ */ React.createElement("g", { color: "#000", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M4 2a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2zm0 12a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2zm12 0a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2zm0-12a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2z", style: { marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M1 1v14h14V1zm2 2h10v10H3z", 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", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", marker: "none" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M5 5v6h6V5zm1 1h4v4H6z", 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", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", marker: "none" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M12 10.5a1.5 1.5 0 01-1.5 1.5A1.5 1.5 0 019 10.5 1.5 1.5 0 0110.5 9a1.5 1.5 0 011.5 1.5zm-5 0A1.5 1.5 0 015.5 12 1.5 1.5 0 014 10.5 1.5 1.5 0 015.5 9 1.5 1.5 0 017 10.5zm0-4.984A1.5 1.516 0 015.5 7.03 1.5 1.516 0 014 5.516 1.5 1.516 0 015.5 4 1.5 1.516 0 017 5.516zm5-.016A1.5 1.5 0 0110.5 7 1.5 1.5 0 019 5.5 1.5 1.5 0 0110.5 4 1.5 1.5 0 0112 5.5z", style: { marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M10.854 10.146l-.708.708 3.5 3.5.708-.708zm-5.708 0l-3.5 3.5.708.708 3.5-3.5zm8.52-8.453l-3.5 3.47.703.71 3.5-3.469zm-11.264.002l-.707.707L5.12 5.826l.707-.707z", 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", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", marker: "none" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgApplicationXApplianceSymbolic); var application_x_appliance_symbolic_default = Memo; export { application_x_appliance_symbolic_default as default };