UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

68 lines (67 loc) 2.18 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFocusLegacySystraySymbolic = (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.002 16", ...props }, /* @__PURE__ */ React.createElement("g", { color: "#000", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M7.936 2l-7.934.01L0 13.979h9.969l.027-9.918C9.996 2.936 9.06 2 7.936 2zM3.018 5h1c.31 0 .552.09.75.281L7.424 8l-2.656 2.719c-.198.19-.44.281-.75.281h-1v-1c0-.257.13-.528.312-.719L4.611 8l-1.28-1.281c-.184-.19-.313-.462-.313-.719z", style: { lineHeight: "normal", textIndent: 0, textAlign: "start", textDecorationLine: "none", textDecorationStyle: "solid", textDecorationColor: "#000", textTransform: "none", whiteSpace: "normal", isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1, marker: "none" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M9.986 2.031s1.032.484 1.032 1.969v10h.984V4c0-1.25-2.016-1.969-2.016-1.969zM11.97 2.031s1.032.484 1.032 1.969v10h1V4c0-1.25-2.031-1.969-2.031-1.969z", style: { isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1, marker: "none" }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgFocusLegacySystraySymbolic); var focus_legacy_systray_symbolic_default = Memo; export { focus_legacy_systray_symbolic_default as default };