UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

166 lines (165 loc) 5.69 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgAuthFingerprintSymbolic = (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.01", ...props }, /* @__PURE__ */ React.createElement("g", { fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M2.955 2.818a1 1 0 00-.899.483A7.004 7.004 0 001 7a1 1 0 102 0c0-.934.262-1.85.755-2.643a1 1 0 00-.8-1.539z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M1.984 5.986A1 1 0 001 7v5.063a1 1 0 102 0V7a1 1 0 00-1.016-1.014z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M8 3C5.802 3 4 4.803 4 7a1 1 0 102 0c0-1.116.883-2 2-2 1.116 0 2 .884 2 2a1 1 0 102 0c0-2.197-1.803-4-4-4z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M7.984 5.986A1 1 0 007 7v5s-.001.595.144 1.32c.145.726.413 1.651 1.149 2.387a1 1 0 101.414-1.414c-.265-.264-.497-.839-.602-1.363C9 12.405 9 12 9 12V7a1 1 0 00-1.016-1.014zm-3 0A1 1 0 004 7v1a1 1 0 102 0V7a1 1 0 00-1.016-1.014zm0 4A1 1 0 004 11v3a1 1 0 102 0v-3a1 1 0 00-1.016-1.014zm6-4A1 1 0 0010 7v5s.009.44.175.941a4.56 4.56 0 001.118 1.766 1 1 0 101.414-1.414c-.383-.382-.55-.736-.633-.984C11.99 12.06 12 12 12 12V7a1 1 0 00-1.016-1.014zm3 0A1 1 0 0013 7v1a1 1 0 102 0V7a1 1 0 00-1.016-1.014z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M8.072 0a6.996 6.996 0 00-3.488.89 1 1 0 10.974 1.747 4.997 4.997 0 014.97.05A4.996 4.996 0 0113 7a1 1 0 102 0A7.006 7.006 0 0011.54.961 6.993 6.993 0 008.073 0z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M15 11a1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1 1 1 0 011 1z" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgAuthFingerprintSymbolic); var auth_fingerprint_symbolic_default = Memo; export { auth_fingerprint_symbolic_default as default };